diff --git a/.gitattributes b/.gitattributes index 11e7f1ffacb90baef96da1cc785bf940f694383f..8bc65c195eee682f28f1ec51f428d3125c3654a1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4083,3 +4083,5 @@ tool_server/.venv/lib/python3.12/site-packages/nvidia/cusolver/lib/libcusolverMg tool_server/.venv/lib/python3.12/site-packages/httptools/parser/parser.cpython-312-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text tool_server/.venv/lib/python3.12/site-packages/httptools/parser/url_parser.cpython-312-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text tool_server/.venv/lib/python3.12/site-packages/dill/__pycache__/_dill.cpython-312.pyc filter=lfs diff=lfs merge=lfs -text +platform/dbops/binaries/go/go/bin/go filter=lfs diff=lfs merge=lfs -text +platform/dbops/binaries/go/go/bin/gofmt filter=lfs diff=lfs merge=lfs -text diff --git a/platform/dbops/binaries/go/go/CONTRIBUTING.md b/platform/dbops/binaries/go/go/CONTRIBUTING.md new file mode 100644 index 0000000000000000000000000000000000000000..4cd76c29503d5dcee45240cd4de94e4f25c78d28 --- /dev/null +++ b/platform/dbops/binaries/go/go/CONTRIBUTING.md @@ -0,0 +1,35 @@ +# Contributing to Go + +Go is an open source project. + +It is the work of hundreds of contributors. We appreciate your help! + +## Before filing an issue + +If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing +list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If +the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker. + +## Filing issues + +Sensitive security-related issues should be reported to [security@golang.org](mailto:security@golang.org). +See the [security policy](https://golang.org/security) for details. + +The recommended way to file an issue is by running `go bug`. +Otherwise, when filing an issue, make sure to answer these five questions: + +1. What version of Go are you using (`go version`)? +2. What operating system and processor architecture are you using? +3. What did you do? +4. What did you expect to see? +5. What did you see instead? + +For change proposals, see [Proposing Changes To Go](https://go.dev/s/proposal-process). + +## Contributing code + +Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending patches. + +Unless otherwise noted, the Go source files are distributed under +the BSD-style license found in the LICENSE file. + diff --git a/platform/dbops/binaries/go/go/LICENSE b/platform/dbops/binaries/go/go/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6a66aea5eafe0ca6a688840c47219556c552488e --- /dev/null +++ b/platform/dbops/binaries/go/go/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/platform/dbops/binaries/go/go/PATENTS b/platform/dbops/binaries/go/go/PATENTS new file mode 100644 index 0000000000000000000000000000000000000000..733099041f84fa1e58611ab2e11af51c1f26d1d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/PATENTS @@ -0,0 +1,22 @@ +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the Go project. + +Google hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer and otherwise run, modify and propagate the contents of this +implementation of Go, where such license applies only to those patent +claims, both currently owned or controlled by Google and acquired in +the future, licensable by Google that are necessarily infringed by this +implementation of Go. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of Go or any code incorporated within this +implementation of Go constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of Go +shall terminate as of the date such litigation is filed. diff --git a/platform/dbops/binaries/go/go/README.md b/platform/dbops/binaries/go/go/README.md new file mode 100644 index 0000000000000000000000000000000000000000..98f968218e542560e2e6d5b4bbf71ee413908a16 --- /dev/null +++ b/platform/dbops/binaries/go/go/README.md @@ -0,0 +1,42 @@ +# The Go Programming Language + +Go is an open source programming language that makes it easy to build simple, +reliable, and efficient software. + +![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg) +*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attributions license][cc4-by].* + +Our canonical Git repository is located at https://go.googlesource.com/go. +There is a mirror of the repository at https://github.com/golang/go. + +Unless otherwise noted, the Go source files are distributed under the +BSD-style license found in the LICENSE file. + +### Download and Install + +#### Binary Distributions + +Official binary distributions are available at https://go.dev/dl/. + +After downloading a binary release, visit https://go.dev/doc/install +for installation instructions. + +#### Install From Source + +If a binary distribution is not available for your combination of +operating system and architecture, visit +https://go.dev/doc/install/source +for source installation instructions. + +### Contributing + +Go is the work of thousands of contributors. We appreciate your help! + +To contribute, please read the contribution guidelines at https://go.dev/doc/contribute. + +Note that the Go project uses the issue tracker for bug reports and +proposals only. See https://go.dev/wiki/Questions for a list of +places to ask questions about the Go language. + +[rf]: https://reneefrench.blogspot.com/ +[cc4-by]: https://creativecommons.org/licenses/by/4.0/ diff --git a/platform/dbops/binaries/go/go/SECURITY.md b/platform/dbops/binaries/go/go/SECURITY.md new file mode 100644 index 0000000000000000000000000000000000000000..e1718f0b012f7cea592027ae7574a6878f05f3fc --- /dev/null +++ b/platform/dbops/binaries/go/go/SECURITY.md @@ -0,0 +1,13 @@ +# Security Policy + +## Supported Versions + +We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release). + +See https://go.dev/wiki/Go-Release-Cycle and in particular the +[Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance) +part of that page. + +## Reporting a Vulnerability + +See https://go.dev/security/policy for how to report a vulnerability. diff --git a/platform/dbops/binaries/go/go/VERSION b/platform/dbops/binaries/go/go/VERSION new file mode 100644 index 0000000000000000000000000000000000000000..33dc5adf643ee094a877094b4453fd8f8c0aa4ad --- /dev/null +++ b/platform/dbops/binaries/go/go/VERSION @@ -0,0 +1,2 @@ +go1.22.5 +time 2024-06-27T20:11:12Z diff --git a/platform/dbops/binaries/go/go/api/README b/platform/dbops/binaries/go/go/api/README new file mode 100644 index 0000000000000000000000000000000000000000..1e52f7a843bbbd61833f1a38dbb82e2e64ed54f7 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/README @@ -0,0 +1,23 @@ +Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api). + +Each file is a list of API features, one per line. + +go1.txt (and similarly named files) are frozen once a version has been +shipped. Each file adds new lines but does not remove any. + +except.txt lists features that may disappear without breaking true +compatibility. + +Starting with go1.19.txt, each API feature line must end in "#nnnnn" +giving the GitHub issue number of the proposal issue that accepted +the new API. This helps with our end-of-cycle audit of new APIs. +The same requirement applies to next/* (described below), which will +become a go1.XX.txt for XX >= 19. + +The next/ directory contains the only files intended to be mutated. +Each file in that directory contains a list of features that may be added +to the next release of Go. The files in this directory only affect the +warning output from the go api tool. Each file should be named +nnnnn.txt, after the issue number for the accepted proposal. +(The #nnnnn suffix must also appear at the end of each line in the file; +that will be preserved when next/*.txt is concatenated into go1.XX.txt.) diff --git a/platform/dbops/binaries/go/go/api/except.txt b/platform/dbops/binaries/go/go/api/except.txt new file mode 100644 index 0000000000000000000000000000000000000000..5acc4d79c7d185f28613db83ecb03f60eaa55aba --- /dev/null +++ b/platform/dbops/binaries/go/go/api/except.txt @@ -0,0 +1,600 @@ +pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated +pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61 +pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error) +pkg math, const MaxFloat64 = 1.79769e+308 // 179769313486231570814527423731704356798100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math, const SmallestNonzeroFloat32 = 1.4013e-45 // 17516230804060213386546619791123951641/12500000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math, const SmallestNonzeroFloat64 = 4.94066e-324 // 4940656458412465441765687928682213723651/1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math/big, const MaxBase = 36 +pkg math/big, type Word uintptr +pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error) +pkg os (linux-arm), const O_SYNC = 1052672 +pkg os (linux-arm), const O_SYNC = 4096 +pkg os (linux-arm-cgo), const O_SYNC = 1052672 +pkg os (linux-arm-cgo), const O_SYNC = 4096 +pkg os, const ModeAppend FileMode +pkg os, const ModeCharDevice FileMode +pkg os, const ModeDevice FileMode +pkg os, const ModeDir FileMode +pkg os, const ModeExclusive FileMode +pkg os, const ModeIrregular FileMode +pkg os, const ModeNamedPipe FileMode +pkg os, const ModePerm FileMode +pkg os, const ModeSetgid FileMode +pkg os, const ModeSetuid FileMode +pkg os, const ModeSocket FileMode +pkg os, const ModeSticky FileMode +pkg os, const ModeSymlink FileMode +pkg os, const ModeTemporary FileMode +pkg os, const ModeType = 2399141888 +pkg os, const ModeType = 2399666176 +pkg os, const ModeType FileMode +pkg os, func Chmod(string, FileMode) error +pkg os, func Lstat(string) (FileInfo, error) +pkg os, func Mkdir(string, FileMode) error +pkg os, func MkdirAll(string, FileMode) error +pkg os, func OpenFile(string, int, FileMode) (*File, error) +pkg os, func SameFile(FileInfo, FileInfo) bool +pkg os, func Stat(string) (FileInfo, error) +pkg os, method (*File) Chmod(FileMode) error +pkg os, method (*File) Readdir(int) ([]FileInfo, error) +pkg os, method (*File) Stat() (FileInfo, error) +pkg os, method (*PathError) Error() string +pkg os, method (*PathError) Timeout() bool +pkg os, method (*PathError) Unwrap() error +pkg os, method (FileMode) IsDir() bool +pkg os, method (FileMode) IsRegular() bool +pkg os, method (FileMode) Perm() FileMode +pkg os, method (FileMode) String() string +pkg os, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys } +pkg os, type FileInfo interface, IsDir() bool +pkg os, type FileInfo interface, ModTime() time.Time +pkg os, type FileInfo interface, Mode() FileMode +pkg os, type FileInfo interface, Name() string +pkg os, type FileInfo interface, Size() int64 +pkg os, type FileInfo interface, Sys() interface{} +pkg os, type FileMode uint32 +pkg os, type PathError struct +pkg os, type PathError struct, Err error +pkg os, type PathError struct, Op string +pkg os, type PathError struct, Path string +pkg syscall (darwin-amd64), const ImplementsGetwd = false +pkg syscall (darwin-amd64), func Fchflags(string, int) error +pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = false +pkg syscall (darwin-amd64-cgo), func Fchflags(string, int) error +pkg syscall (freebsd-386), const AF_MAX = 38 +pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-386), const ELAST = 94 +pkg syscall (freebsd-386), const ImplementsGetwd = false +pkg syscall (freebsd-386), const O_CLOEXEC = 0 +pkg syscall (freebsd-386), func Fchflags(string, int) error +pkg syscall (freebsd-386), func Mknod(string, uint32, int) error +pkg syscall (freebsd-386), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-386), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-386), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-386), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-386), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-386), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-386), type Stat_t struct, Pad_cgo_0 [8]uint8 +pkg syscall (freebsd-386), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-386-cgo), const AF_MAX = 38 +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-386-cgo), const ELAST = 94 +pkg syscall (freebsd-386-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-386-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Pad_cgo_0 [8]uint8 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-amd64), const AF_MAX = 38 +pkg syscall (freebsd-amd64), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-amd64), const ELAST = 94 +pkg syscall (freebsd-amd64), const ImplementsGetwd = false +pkg syscall (freebsd-amd64), const O_CLOEXEC = 0 +pkg syscall (freebsd-amd64), func Fchflags(string, int) error +pkg syscall (freebsd-amd64), func Mknod(string, uint32, int) error +pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-amd64), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-amd64-cgo), const AF_MAX = 38 +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-amd64-cgo), const ELAST = 94 +pkg syscall (freebsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-amd64-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-arm), const AF_MAX = 38 +pkg syscall (freebsd-arm), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (freebsd-arm), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (freebsd-arm), const ELAST = 94 +pkg syscall (freebsd-arm), const ImplementsGetwd = false +pkg syscall (freebsd-arm), const O_CLOEXEC = 0 +pkg syscall (freebsd-arm), const SIOCAIFADDR = 2151967019 +pkg syscall (freebsd-arm), const SIOCGIFSTATUS = 3274991931 +pkg syscall (freebsd-arm), const SIOCSIFPHYADDR = 2151967046 +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SizeofBpfHdr = 24 +pkg syscall (freebsd-arm), const SizeofIfData = 88 +pkg syscall (freebsd-arm), const SizeofIfMsghdr = 104 +pkg syscall (freebsd-arm), const SizeofSockaddrDatalink = 56 +pkg syscall (freebsd-arm), const SizeofSockaddrUnix = 108 +pkg syscall (freebsd-arm), const TIOCTIMESTAMP = 1074558041 +pkg syscall (freebsd-arm), func Fchflags(string, int) error +pkg syscall (freebsd-arm), func Mknod(string, uint32, int) error +pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-arm), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-arm-cgo), const AF_MAX = 38 +pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (freebsd-arm-cgo), const ELAST = 94 +pkg syscall (freebsd-arm-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-arm-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR = 2151967019 +pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS = 3274991931 +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR = 2151967046 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr = 24 +pkg syscall (freebsd-arm-cgo), const SizeofIfData = 88 +pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr = 104 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink = 56 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix = 108 +pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP = 1074558041 +pkg syscall (freebsd-arm-cgo), func Fchflags(string, int) error +pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-amd64), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-amd64-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-arm), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-arm-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (netbsd-386), const ImplementsGetwd = false +pkg syscall (netbsd-386-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-amd64), const ImplementsGetwd = false +pkg syscall (netbsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-arm), const ImplementsGetwd = false +pkg syscall (netbsd-arm), const SizeofIfData = 132 +pkg syscall (netbsd-arm), func Fchflags(string, int) error +pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-arm-cgo), const SizeofIfData = 132 +pkg syscall (netbsd-arm-cgo), func Fchflags(string, int) error +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-386), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (openbsd-386), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (openbsd-386), const ImplementsGetwd = false +pkg syscall (openbsd-386), const RTF_FMASK = 63496 +pkg syscall (openbsd-386), const RTM_VERSION = 4 +pkg syscall (openbsd-386), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-386), const SIOCBRDGGPARAM = 3224922456 +pkg syscall (openbsd-386), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-386), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-386), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-386), const SYS_FSTAT = 292 +pkg syscall (openbsd-386), const SYS_FSTATAT = 316 +pkg syscall (openbsd-386), const SYS_FSTATFS = 308 +pkg syscall (openbsd-386), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-386), const SYS_FUTIMES = 206 +pkg syscall (openbsd-386), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-386), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-386), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-386), const SYS_GETITIMER = 86 +pkg syscall (openbsd-386), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-386), const SYS_KEVENT = 270 +pkg syscall (openbsd-386), const SYS_KILL = 37 +pkg syscall (openbsd-386), const SYS_LSTAT = 293 +pkg syscall (openbsd-386), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-386), const SYS_SELECT = 93 +pkg syscall (openbsd-386), const SYS_SETITIMER = 83 +pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-386), const SYS_STAT = 291 +pkg syscall (openbsd-386), const SYS_STATFS = 307 +pkg syscall (openbsd-386), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-386), const SYS_UTIMES = 138 +pkg syscall (openbsd-386), const SYS_WAIT4 = 7 +pkg syscall (openbsd-386), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-386), const SizeofIfData = 208 +pkg syscall (openbsd-386), const SizeofIfMsghdr = 232 +pkg syscall (openbsd-386), const SizeofRtMetrics = 48 +pkg syscall (openbsd-386), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-386), const TIOCGTSTAMP = 1074295899 +pkg syscall (openbsd-386), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-386), type Kevent_t struct, Data int32 +pkg syscall (openbsd-386), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-386), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-386), type Timespec struct, Sec int32 +pkg syscall (openbsd-386), type Timeval struct, Sec int32 +pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (openbsd-386-cgo), const ImplementsGetwd = false +pkg syscall (openbsd-386-cgo), const RTF_FMASK = 63496 +pkg syscall (openbsd-386-cgo), const RTM_VERSION = 4 +pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM = 3224922456 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-386-cgo), const SYS_FSTAT = 292 +pkg syscall (openbsd-386-cgo), const SYS_FSTATAT = 316 +pkg syscall (openbsd-386-cgo), const SYS_FSTATFS = 308 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMES = 206 +pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-386-cgo), const SYS_GETITIMER = 86 +pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-386-cgo), const SYS_KEVENT = 270 +pkg syscall (openbsd-386-cgo), const SYS_KILL = 37 +pkg syscall (openbsd-386-cgo), const SYS_LSTAT = 293 +pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-386-cgo), const SYS_SELECT = 93 +pkg syscall (openbsd-386-cgo), const SYS_SETITIMER = 83 +pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-386-cgo), const SYS_STAT = 291 +pkg syscall (openbsd-386-cgo), const SYS_STATFS = 307 +pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-386-cgo), const SYS_UTIMES = 138 +pkg syscall (openbsd-386-cgo), const SYS_WAIT4 = 7 +pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-386-cgo), const SizeofIfData = 208 +pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr = 232 +pkg syscall (openbsd-386-cgo), const SizeofRtMetrics = 48 +pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP = 1074295899 +pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int32 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int32 +pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int32 +pkg syscall (openbsd-amd64), const CCR0_FLUSH = 16 +pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int +pkg syscall (openbsd-amd64), const CPUID_CFLUSH = 524288 +pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int +pkg syscall (openbsd-amd64), const EFER_LMA = 1024 +pkg syscall (openbsd-amd64), const EFER_LMA ideal-int +pkg syscall (openbsd-amd64), const EFER_LME = 256 +pkg syscall (openbsd-amd64), const EFER_LME ideal-int +pkg syscall (openbsd-amd64), const EFER_NXE = 2048 +pkg syscall (openbsd-amd64), const EFER_NXE ideal-int +pkg syscall (openbsd-amd64), const EFER_SCE = 1 +pkg syscall (openbsd-amd64), const EFER_SCE ideal-int +pkg syscall (openbsd-amd64), const ImplementsGetwd = false +pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH = 21 +pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH ideal-int +pkg syscall (openbsd-amd64), const RTF_FMASK = 63496 +pkg syscall (openbsd-amd64), const RTM_VERSION = 4 +pkg syscall (openbsd-amd64), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-amd64), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-amd64), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-amd64), const SYS_FSTAT = 292 +pkg syscall (openbsd-amd64), const SYS_FSTATAT = 316 +pkg syscall (openbsd-amd64), const SYS_FSTATFS = 308 +pkg syscall (openbsd-amd64), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-amd64), const SYS_FUTIMES = 206 +pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-amd64), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-amd64), const SYS_GETITIMER = 86 +pkg syscall (openbsd-amd64), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-amd64), const SYS_KEVENT = 270 +pkg syscall (openbsd-amd64), const SYS_KILL = 37 +pkg syscall (openbsd-amd64), const SYS_LSTAT = 293 +pkg syscall (openbsd-amd64), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-amd64), const SYS_SELECT = 93 +pkg syscall (openbsd-amd64), const SYS_SETITIMER = 83 +pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-amd64), const SYS_STAT = 291 +pkg syscall (openbsd-amd64), const SYS_STATFS = 307 +pkg syscall (openbsd-amd64), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-amd64), const SYS_UTIMES = 138 +pkg syscall (openbsd-amd64), const SYS_WAIT4 = 7 +pkg syscall (openbsd-amd64), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-amd64), const SizeofRtMetrics = 48 +pkg syscall (openbsd-amd64), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type Timespec struct, Sec int32 +pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH = 16 +pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH = 524288 +pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_LMA = 1024 +pkg syscall (openbsd-amd64-cgo), const EFER_LMA ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_LME = 256 +pkg syscall (openbsd-amd64-cgo), const EFER_LME ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_NXE = 2048 +pkg syscall (openbsd-amd64-cgo), const EFER_NXE ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_SCE = 1 +pkg syscall (openbsd-amd64-cgo), const EFER_SCE ideal-int +pkg syscall (openbsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH = 21 +pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_FMASK = 63496 +pkg syscall (openbsd-amd64-cgo), const RTM_VERSION = 4 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT = 292 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT = 316 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS = 308 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES = 206 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER = 86 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT = 270 +pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 37 +pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT = 293 +pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-amd64-cgo), const SYS_SELECT = 93 +pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER = 83 +pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-amd64-cgo), const SYS_STAT = 291 +pkg syscall (openbsd-amd64-cgo), const SYS_STATFS = 307 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES = 138 +pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 = 7 +pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics = 48 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int32 +pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983295 +pkg syscall (windows-386), type AddrinfoW struct, Addr uintptr +pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara uintptr +pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr +pkg syscall (windows-386), type CertContext struct, CertInfo uintptr +pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo uintptr +pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo uintptr +pkg syscall (windows-386), type CertSimpleChain struct, TrustListInfo uintptr +pkg syscall (windows-386), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS = 983295 +pkg syscall (windows-amd64), type AddrinfoW struct, Addr uintptr +pkg syscall (windows-amd64), type CertChainPolicyPara struct, ExtraPolicyPara uintptr +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr +pkg syscall (windows-amd64), type CertContext struct, CertInfo uintptr +pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo uintptr +pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo uintptr +pkg syscall (windows-amd64), type CertSimpleChain struct, TrustListInfo uintptr +pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [96]int8 +pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M +pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M +pkg testing, func RegisterCover(Cover) +pkg text/scanner, const GoTokens = 1012 +pkg text/template/parse, type DotNode bool +pkg text/template/parse, type Node interface { Copy, String, Type } +pkg unicode, const Version = "10.0.0" +pkg unicode, const Version = "11.0.0" +pkg unicode, const Version = "12.0.0" +pkg unicode, const Version = "13.0.0" +pkg unicode, const Version = "6.2.0" +pkg unicode, const Version = "6.3.0" +pkg unicode, const Version = "7.0.0" +pkg unicode, const Version = "8.0.0" +pkg unicode, const Version = "9.0.0" +pkg html/template, method (*Template) Funcs(FuncMap) *Template +pkg html/template, type FuncMap map[string]interface{} +pkg syscall (freebsd-386), const SYS_FSTAT = 189 +pkg syscall (freebsd-386), const SYS_FSTATAT = 493 +pkg syscall (freebsd-386), const SYS_FSTATFS = 397 +pkg syscall (freebsd-386), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-386), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-386), const SYS_LSTAT = 190 +pkg syscall (freebsd-386), const SYS_LSTAT ideal-int +pkg syscall (freebsd-386), const SYS_MKNODAT = 498 +pkg syscall (freebsd-386), const SYS_STAT = 188 +pkg syscall (freebsd-386), const SYS_STAT ideal-int +pkg syscall (freebsd-386), const SYS_STATFS = 396 +pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-386-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-386-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-386-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-amd64), const SYS_FSTAT = 189 +pkg syscall (freebsd-amd64), const SYS_FSTATAT = 493 +pkg syscall (freebsd-amd64), const SYS_FSTATFS = 397 +pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-amd64), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-amd64), const SYS_LSTAT = 190 +pkg syscall (freebsd-amd64), const SYS_LSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_MKNODAT = 498 +pkg syscall (freebsd-amd64), const SYS_STAT = 188 +pkg syscall (freebsd-amd64), const SYS_STAT ideal-int +pkg syscall (freebsd-amd64), const SYS_STATFS = 396 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-amd64-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-arm), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm), const SYS_STAT = 188 +pkg syscall (freebsd-arm), const SYS_STAT ideal-int +pkg syscall (freebsd-arm), const SYS_STATFS = 396 +pkg syscall (freebsd-arm-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-arm-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-arm64), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm64), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm64), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm64), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm64), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm64), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm64), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm64), const SYS_STAT = 188 +pkg syscall (freebsd-arm64), const SYS_STAT ideal-int +pkg syscall (freebsd-arm64), const SYS_STATFS = 396 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm64-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm64-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-arm64-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_STATFS = 396 diff --git a/platform/dbops/binaries/go/go/api/go1.1.txt b/platform/dbops/binaries/go/go/api/go1.1.txt new file mode 100644 index 0000000000000000000000000000000000000000..06291faa4b25050152a6ccf8112418233c7842b7 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.1.txt @@ -0,0 +1,50454 @@ +pkg archive/tar, const TypeBlock = 52 +pkg archive/tar, const TypeChar = 51 +pkg archive/tar, const TypeCont = 55 +pkg archive/tar, const TypeDir = 53 +pkg archive/tar, const TypeFifo = 54 +pkg archive/tar, const TypeGNULongLink = 75 +pkg archive/tar, const TypeGNULongLink ideal-char +pkg archive/tar, const TypeGNULongName = 76 +pkg archive/tar, const TypeGNULongName ideal-char +pkg archive/tar, const TypeLink = 49 +pkg archive/tar, const TypeReg = 48 +pkg archive/tar, const TypeRegA = 0 +pkg archive/tar, const TypeSymlink = 50 +pkg archive/tar, const TypeXGlobalHeader = 103 +pkg archive/tar, const TypeXHeader = 120 +pkg archive/tar, func FileInfoHeader(os.FileInfo, string) (*Header, error) +pkg archive/tar, method (*Header) FileInfo() os.FileInfo +pkg archive/zip, const Deflate = 8 +pkg archive/zip, const Store = 0 +pkg archive/zip, type FileHeader struct, CompressedSize64 uint64 +pkg archive/zip, type FileHeader struct, UncompressedSize64 uint64 +pkg bufio, const MaxScanTokenSize = 65536 +pkg bufio, const MaxScanTokenSize ideal-int +pkg bufio, func NewScanner(io.Reader) *Scanner +pkg bufio, func ScanBytes([]uint8, bool) (int, []uint8, error) +pkg bufio, func ScanLines([]uint8, bool) (int, []uint8, error) +pkg bufio, func ScanRunes([]uint8, bool) (int, []uint8, error) +pkg bufio, func ScanWords([]uint8, bool) (int, []uint8, error) +pkg bufio, method (*Reader) WriteTo(io.Writer) (int64, error) +pkg bufio, method (*Scanner) Bytes() []uint8 +pkg bufio, method (*Scanner) Err() error +pkg bufio, method (*Scanner) Scan() bool +pkg bufio, method (*Scanner) Split(SplitFunc) +pkg bufio, method (*Scanner) Text() string +pkg bufio, method (*Writer) ReadFrom(io.Reader) (int64, error) +pkg bufio, method (ReadWriter) ReadFrom(io.Reader) (int64, error) +pkg bufio, method (ReadWriter) WriteTo(io.Writer) (int64, error) +pkg bufio, type Scanner struct +pkg bufio, type SplitFunc func([]uint8, bool) (int, []uint8, error) +pkg bufio, var ErrAdvanceTooFar error +pkg bufio, var ErrNegativeAdvance error +pkg bufio, var ErrTooLong error +pkg bytes, const MinRead = 512 +pkg bytes, func TrimPrefix([]uint8, []uint8) []uint8 +pkg bytes, func TrimSuffix([]uint8, []uint8) []uint8 +pkg bytes, method (*Buffer) Grow(int) +pkg bytes, method (*Reader) WriteTo(io.Writer) (int64, error) +pkg compress/flate, const BestCompression = 9 +pkg compress/flate, const BestSpeed = 1 +pkg compress/flate, const DefaultCompression = -1 +pkg compress/flate, const NoCompression = 0 +pkg compress/gzip, const BestCompression = 9 +pkg compress/gzip, const BestSpeed = 1 +pkg compress/gzip, const DefaultCompression = -1 +pkg compress/gzip, const NoCompression = 0 +pkg compress/gzip, method (*Writer) Flush() error +pkg compress/lzw, const LSB = 0 +pkg compress/lzw, const MSB = 1 +pkg compress/zlib, const BestCompression = 9 +pkg compress/zlib, const BestSpeed = 1 +pkg compress/zlib, const DefaultCompression = -1 +pkg compress/zlib, const NoCompression = 0 +pkg crypto, const MD4 = 1 +pkg crypto, const MD5 = 2 +pkg crypto, const MD5SHA1 = 8 +pkg crypto, const RIPEMD160 = 9 +pkg crypto, const SHA1 = 3 +pkg crypto, const SHA224 = 4 +pkg crypto, const SHA256 = 5 +pkg crypto, const SHA384 = 6 +pkg crypto, const SHA512 = 7 +pkg crypto/aes, const BlockSize = 16 +pkg crypto/des, const BlockSize = 8 +pkg crypto/dsa, const L1024N160 = 0 +pkg crypto/dsa, const L2048N224 = 1 +pkg crypto/dsa, const L2048N256 = 2 +pkg crypto/dsa, const L3072N256 = 3 +pkg crypto/hmac, func Equal([]uint8, []uint8) bool +pkg crypto/md5, const BlockSize = 64 +pkg crypto/md5, const Size = 16 +pkg crypto/sha1, const BlockSize = 64 +pkg crypto/sha1, const Size = 20 +pkg crypto/sha256, const BlockSize = 64 +pkg crypto/sha256, const Size = 32 +pkg crypto/sha256, const Size224 = 28 +pkg crypto/sha512, const BlockSize = 128 +pkg crypto/sha512, const Size = 64 +pkg crypto/sha512, const Size384 = 48 +pkg crypto/tls, const NoClientCert = 0 +pkg crypto/tls, const RequestClientCert = 1 +pkg crypto/tls, const RequireAndVerifyClientCert = 4 +pkg crypto/tls, const RequireAnyClientCert = 2 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA = 49170 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 49171 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 49172 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_RC4_128_SHA = 49169 +pkg crypto/tls, const TLS_RSA_WITH_3DES_EDE_CBC_SHA = 10 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA = 47 +pkg crypto/tls, const TLS_RSA_WITH_AES_256_CBC_SHA = 53 +pkg crypto/tls, const TLS_RSA_WITH_AES_256_CBC_SHA uint16 +pkg crypto/tls, const TLS_RSA_WITH_RC4_128_SHA = 5 +pkg crypto/tls, const VerifyClientCertIfGiven = 3 +pkg crypto/tls, type Config struct, PreferServerCipherSuites bool +pkg crypto/tls, type Config struct, SessionTicketKey [32]uint8 +pkg crypto/tls, type Config struct, SessionTicketsDisabled bool +pkg crypto/tls, type ConnectionState struct, DidResume bool +pkg crypto/x509, const CANotAuthorizedForThisName = 2 +pkg crypto/x509, const DSA = 2 +pkg crypto/x509, const DSAWithSHA1 = 7 +pkg crypto/x509, const DSAWithSHA256 = 8 +pkg crypto/x509, const ECDSA = 3 +pkg crypto/x509, const ECDSA PublicKeyAlgorithm +pkg crypto/x509, const ECDSAWithSHA1 = 9 +pkg crypto/x509, const ECDSAWithSHA1 SignatureAlgorithm +pkg crypto/x509, const ECDSAWithSHA256 = 10 +pkg crypto/x509, const ECDSAWithSHA256 SignatureAlgorithm +pkg crypto/x509, const ECDSAWithSHA384 = 11 +pkg crypto/x509, const ECDSAWithSHA384 SignatureAlgorithm +pkg crypto/x509, const ECDSAWithSHA512 = 12 +pkg crypto/x509, const ECDSAWithSHA512 SignatureAlgorithm +pkg crypto/x509, const Expired = 1 +pkg crypto/x509, const ExtKeyUsageAny = 0 +pkg crypto/x509, const ExtKeyUsageClientAuth = 2 +pkg crypto/x509, const ExtKeyUsageCodeSigning = 3 +pkg crypto/x509, const ExtKeyUsageEmailProtection = 4 +pkg crypto/x509, const ExtKeyUsageIPSECEndSystem = 5 +pkg crypto/x509, const ExtKeyUsageIPSECEndSystem ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageIPSECTunnel = 6 +pkg crypto/x509, const ExtKeyUsageIPSECTunnel ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageIPSECUser = 7 +pkg crypto/x509, const ExtKeyUsageIPSECUser ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageMicrosoftServerGatedCrypto = 10 +pkg crypto/x509, const ExtKeyUsageMicrosoftServerGatedCrypto ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageNetscapeServerGatedCrypto = 11 +pkg crypto/x509, const ExtKeyUsageNetscapeServerGatedCrypto ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageOCSPSigning = 9 +pkg crypto/x509, const ExtKeyUsageServerAuth = 1 +pkg crypto/x509, const ExtKeyUsageTimeStamping = 8 +pkg crypto/x509, const IncompatibleUsage = 4 +pkg crypto/x509, const IncompatibleUsage InvalidReason +pkg crypto/x509, const KeyUsageCRLSign = 64 +pkg crypto/x509, const KeyUsageCertSign = 32 +pkg crypto/x509, const KeyUsageContentCommitment = 2 +pkg crypto/x509, const KeyUsageDataEncipherment = 8 +pkg crypto/x509, const KeyUsageDecipherOnly = 256 +pkg crypto/x509, const KeyUsageDigitalSignature = 1 +pkg crypto/x509, const KeyUsageEncipherOnly = 128 +pkg crypto/x509, const KeyUsageKeyAgreement = 16 +pkg crypto/x509, const KeyUsageKeyEncipherment = 4 +pkg crypto/x509, const MD2WithRSA = 1 +pkg crypto/x509, const MD5WithRSA = 2 +pkg crypto/x509, const NotAuthorizedToSign = 0 +pkg crypto/x509, const PEMCipher3DES = 2 +pkg crypto/x509, const PEMCipher3DES PEMCipher +pkg crypto/x509, const PEMCipherAES128 = 3 +pkg crypto/x509, const PEMCipherAES128 PEMCipher +pkg crypto/x509, const PEMCipherAES192 = 4 +pkg crypto/x509, const PEMCipherAES192 PEMCipher +pkg crypto/x509, const PEMCipherAES256 = 5 +pkg crypto/x509, const PEMCipherAES256 PEMCipher +pkg crypto/x509, const PEMCipherDES = 1 +pkg crypto/x509, const PEMCipherDES PEMCipher +pkg crypto/x509, const RSA = 1 +pkg crypto/x509, const SHA1WithRSA = 3 +pkg crypto/x509, const SHA256WithRSA = 4 +pkg crypto/x509, const SHA384WithRSA = 5 +pkg crypto/x509, const SHA512WithRSA = 6 +pkg crypto/x509, const TooManyIntermediates = 3 +pkg crypto/x509, const UnknownPublicKeyAlgorithm = 0 +pkg crypto/x509, const UnknownSignatureAlgorithm = 0 +pkg crypto/x509, func DecryptPEMBlock(*pem.Block, []uint8) ([]uint8, error) +pkg crypto/x509, func EncryptPEMBlock(io.Reader, string, []uint8, []uint8, PEMCipher) (*pem.Block, error) +pkg crypto/x509, func IsEncryptedPEMBlock(*pem.Block) bool +pkg crypto/x509, func ParseECPrivateKey([]uint8) (*ecdsa.PrivateKey, error) +pkg crypto/x509, method (SystemRootsError) Error() string +pkg crypto/x509, type Certificate struct, IPAddresses []net.IP +pkg crypto/x509, type PEMCipher int +pkg crypto/x509, type SystemRootsError struct +pkg crypto/x509, type VerifyOptions struct, KeyUsages []ExtKeyUsage +pkg crypto/x509, var IncorrectPasswordError error +pkg database/sql, method (*DB) Ping() error +pkg database/sql, method (*DB) SetMaxIdleConns(int) +pkg database/sql/driver, type Queryer interface { Query } +pkg database/sql/driver, type Queryer interface, Query(string, []Value) (Rows, error) +pkg debug/dwarf, const AttrAbstractOrigin = 49 +pkg debug/dwarf, const AttrAccessibility = 50 +pkg debug/dwarf, const AttrAddrClass = 51 +pkg debug/dwarf, const AttrAllocated = 78 +pkg debug/dwarf, const AttrArtificial = 52 +pkg debug/dwarf, const AttrAssociated = 79 +pkg debug/dwarf, const AttrBaseTypes = 53 +pkg debug/dwarf, const AttrBitOffset = 12 +pkg debug/dwarf, const AttrBitSize = 13 +pkg debug/dwarf, const AttrByteSize = 11 +pkg debug/dwarf, const AttrCallColumn = 87 +pkg debug/dwarf, const AttrCallFile = 88 +pkg debug/dwarf, const AttrCallLine = 89 +pkg debug/dwarf, const AttrCalling = 54 +pkg debug/dwarf, const AttrCommonRef = 26 +pkg debug/dwarf, const AttrCompDir = 27 +pkg debug/dwarf, const AttrConstValue = 28 +pkg debug/dwarf, const AttrContainingType = 29 +pkg debug/dwarf, const AttrCount = 55 +pkg debug/dwarf, const AttrDataLocation = 80 +pkg debug/dwarf, const AttrDataMemberLoc = 56 +pkg debug/dwarf, const AttrDeclColumn = 57 +pkg debug/dwarf, const AttrDeclFile = 58 +pkg debug/dwarf, const AttrDeclLine = 59 +pkg debug/dwarf, const AttrDeclaration = 60 +pkg debug/dwarf, const AttrDefaultValue = 30 +pkg debug/dwarf, const AttrDescription = 90 +pkg debug/dwarf, const AttrDiscr = 21 +pkg debug/dwarf, const AttrDiscrList = 61 +pkg debug/dwarf, const AttrDiscrValue = 22 +pkg debug/dwarf, const AttrEncoding = 62 +pkg debug/dwarf, const AttrEntrypc = 82 +pkg debug/dwarf, const AttrExtension = 84 +pkg debug/dwarf, const AttrExternal = 63 +pkg debug/dwarf, const AttrFrameBase = 64 +pkg debug/dwarf, const AttrFriend = 65 +pkg debug/dwarf, const AttrHighpc = 18 +pkg debug/dwarf, const AttrIdentifierCase = 66 +pkg debug/dwarf, const AttrImport = 24 +pkg debug/dwarf, const AttrInline = 32 +pkg debug/dwarf, const AttrIsOptional = 33 +pkg debug/dwarf, const AttrLanguage = 19 +pkg debug/dwarf, const AttrLocation = 2 +pkg debug/dwarf, const AttrLowerBound = 34 +pkg debug/dwarf, const AttrLowpc = 17 +pkg debug/dwarf, const AttrMacroInfo = 67 +pkg debug/dwarf, const AttrName = 3 +pkg debug/dwarf, const AttrNamelistItem = 68 +pkg debug/dwarf, const AttrOrdering = 9 +pkg debug/dwarf, const AttrPriority = 69 +pkg debug/dwarf, const AttrProducer = 37 +pkg debug/dwarf, const AttrPrototyped = 39 +pkg debug/dwarf, const AttrRanges = 85 +pkg debug/dwarf, const AttrReturnAddr = 42 +pkg debug/dwarf, const AttrSegment = 70 +pkg debug/dwarf, const AttrSibling = 1 +pkg debug/dwarf, const AttrSpecification = 71 +pkg debug/dwarf, const AttrStartScope = 44 +pkg debug/dwarf, const AttrStaticLink = 72 +pkg debug/dwarf, const AttrStmtList = 16 +pkg debug/dwarf, const AttrStride = 81 +pkg debug/dwarf, const AttrStrideSize = 46 +pkg debug/dwarf, const AttrStringLength = 25 +pkg debug/dwarf, const AttrTrampoline = 86 +pkg debug/dwarf, const AttrType = 73 +pkg debug/dwarf, const AttrUpperBound = 47 +pkg debug/dwarf, const AttrUseLocation = 74 +pkg debug/dwarf, const AttrUseUTF8 = 83 +pkg debug/dwarf, const AttrVarParam = 75 +pkg debug/dwarf, const AttrVirtuality = 76 +pkg debug/dwarf, const AttrVisibility = 23 +pkg debug/dwarf, const AttrVtableElemLoc = 77 +pkg debug/dwarf, const TagAccessDeclaration = 35 +pkg debug/dwarf, const TagArrayType = 1 +pkg debug/dwarf, const TagBaseType = 36 +pkg debug/dwarf, const TagCatchDwarfBlock = 37 +pkg debug/dwarf, const TagClassType = 2 +pkg debug/dwarf, const TagCommonDwarfBlock = 26 +pkg debug/dwarf, const TagCommonInclusion = 27 +pkg debug/dwarf, const TagCompileUnit = 17 +pkg debug/dwarf, const TagConstType = 38 +pkg debug/dwarf, const TagConstant = 39 +pkg debug/dwarf, const TagDwarfProcedure = 54 +pkg debug/dwarf, const TagEntryPoint = 3 +pkg debug/dwarf, const TagEnumerationType = 4 +pkg debug/dwarf, const TagEnumerator = 40 +pkg debug/dwarf, const TagFileType = 41 +pkg debug/dwarf, const TagFormalParameter = 5 +pkg debug/dwarf, const TagFriend = 42 +pkg debug/dwarf, const TagImportedDeclaration = 8 +pkg debug/dwarf, const TagImportedModule = 58 +pkg debug/dwarf, const TagImportedUnit = 61 +pkg debug/dwarf, const TagInheritance = 28 +pkg debug/dwarf, const TagInlinedSubroutine = 29 +pkg debug/dwarf, const TagInterfaceType = 56 +pkg debug/dwarf, const TagLabel = 10 +pkg debug/dwarf, const TagLexDwarfBlock = 11 +pkg debug/dwarf, const TagMember = 13 +pkg debug/dwarf, const TagModule = 30 +pkg debug/dwarf, const TagMutableType = 62 +pkg debug/dwarf, const TagNamelist = 43 +pkg debug/dwarf, const TagNamelistItem = 44 +pkg debug/dwarf, const TagNamespace = 57 +pkg debug/dwarf, const TagPackedType = 45 +pkg debug/dwarf, const TagPartialUnit = 60 +pkg debug/dwarf, const TagPointerType = 15 +pkg debug/dwarf, const TagPtrToMemberType = 31 +pkg debug/dwarf, const TagReferenceType = 16 +pkg debug/dwarf, const TagRestrictType = 55 +pkg debug/dwarf, const TagSetType = 32 +pkg debug/dwarf, const TagStringType = 18 +pkg debug/dwarf, const TagStructType = 19 +pkg debug/dwarf, const TagSubprogram = 46 +pkg debug/dwarf, const TagSubrangeType = 33 +pkg debug/dwarf, const TagSubroutineType = 21 +pkg debug/dwarf, const TagTemplateTypeParameter = 47 +pkg debug/dwarf, const TagTemplateValueParameter = 48 +pkg debug/dwarf, const TagThrownType = 49 +pkg debug/dwarf, const TagTryDwarfBlock = 50 +pkg debug/dwarf, const TagTypedef = 22 +pkg debug/dwarf, const TagUnionType = 23 +pkg debug/dwarf, const TagUnspecifiedParameters = 24 +pkg debug/dwarf, const TagUnspecifiedType = 59 +pkg debug/dwarf, const TagVariable = 52 +pkg debug/dwarf, const TagVariant = 25 +pkg debug/dwarf, const TagVariantPart = 51 +pkg debug/dwarf, const TagVolatileType = 53 +pkg debug/dwarf, const TagWithStmt = 34 +pkg debug/elf, const ARM_MAGIC_TRAMP_NUMBER = 1543503875 +pkg debug/elf, const DF_BIND_NOW = 8 +pkg debug/elf, const DF_ORIGIN = 1 +pkg debug/elf, const DF_STATIC_TLS = 16 +pkg debug/elf, const DF_SYMBOLIC = 2 +pkg debug/elf, const DF_TEXTREL = 4 +pkg debug/elf, const DT_BIND_NOW = 24 +pkg debug/elf, const DT_DEBUG = 21 +pkg debug/elf, const DT_ENCODING = 32 +pkg debug/elf, const DT_FINI = 13 +pkg debug/elf, const DT_FINI_ARRAY = 26 +pkg debug/elf, const DT_FINI_ARRAYSZ = 28 +pkg debug/elf, const DT_FLAGS = 30 +pkg debug/elf, const DT_HASH = 4 +pkg debug/elf, const DT_HIOS = 1879044096 +pkg debug/elf, const DT_HIPROC = 2147483647 +pkg debug/elf, const DT_INIT = 12 +pkg debug/elf, const DT_INIT_ARRAY = 25 +pkg debug/elf, const DT_INIT_ARRAYSZ = 27 +pkg debug/elf, const DT_JMPREL = 23 +pkg debug/elf, const DT_LOOS = 1610612749 +pkg debug/elf, const DT_LOPROC = 1879048192 +pkg debug/elf, const DT_NEEDED = 1 +pkg debug/elf, const DT_NULL = 0 +pkg debug/elf, const DT_PLTGOT = 3 +pkg debug/elf, const DT_PLTREL = 20 +pkg debug/elf, const DT_PLTRELSZ = 2 +pkg debug/elf, const DT_PREINIT_ARRAY = 32 +pkg debug/elf, const DT_PREINIT_ARRAYSZ = 33 +pkg debug/elf, const DT_REL = 17 +pkg debug/elf, const DT_RELA = 7 +pkg debug/elf, const DT_RELAENT = 9 +pkg debug/elf, const DT_RELASZ = 8 +pkg debug/elf, const DT_RELENT = 19 +pkg debug/elf, const DT_RELSZ = 18 +pkg debug/elf, const DT_RPATH = 15 +pkg debug/elf, const DT_RUNPATH = 29 +pkg debug/elf, const DT_SONAME = 14 +pkg debug/elf, const DT_STRSZ = 10 +pkg debug/elf, const DT_STRTAB = 5 +pkg debug/elf, const DT_SYMBOLIC = 16 +pkg debug/elf, const DT_SYMENT = 11 +pkg debug/elf, const DT_SYMTAB = 6 +pkg debug/elf, const DT_TEXTREL = 22 +pkg debug/elf, const DT_VERNEED = 1879048190 +pkg debug/elf, const DT_VERNEEDNUM = 1879048191 +pkg debug/elf, const DT_VERSYM = 1879048176 +pkg debug/elf, const EI_ABIVERSION = 8 +pkg debug/elf, const EI_CLASS = 4 +pkg debug/elf, const EI_DATA = 5 +pkg debug/elf, const EI_NIDENT = 16 +pkg debug/elf, const EI_OSABI = 7 +pkg debug/elf, const EI_PAD = 9 +pkg debug/elf, const EI_VERSION = 6 +pkg debug/elf, const ELFCLASS32 = 1 +pkg debug/elf, const ELFCLASS64 = 2 +pkg debug/elf, const ELFCLASSNONE = 0 +pkg debug/elf, const ELFDATA2LSB = 1 +pkg debug/elf, const ELFDATA2MSB = 2 +pkg debug/elf, const ELFDATANONE = 0 +pkg debug/elf, const ELFMAG = "\x7fELF" +pkg debug/elf, const ELFOSABI_86OPEN = 5 +pkg debug/elf, const ELFOSABI_AIX = 7 +pkg debug/elf, const ELFOSABI_ARM = 97 +pkg debug/elf, const ELFOSABI_FREEBSD = 9 +pkg debug/elf, const ELFOSABI_HPUX = 1 +pkg debug/elf, const ELFOSABI_HURD = 4 +pkg debug/elf, const ELFOSABI_IRIX = 8 +pkg debug/elf, const ELFOSABI_LINUX = 3 +pkg debug/elf, const ELFOSABI_MODESTO = 11 +pkg debug/elf, const ELFOSABI_NETBSD = 2 +pkg debug/elf, const ELFOSABI_NONE = 0 +pkg debug/elf, const ELFOSABI_NSK = 14 +pkg debug/elf, const ELFOSABI_OPENBSD = 12 +pkg debug/elf, const ELFOSABI_OPENVMS = 13 +pkg debug/elf, const ELFOSABI_SOLARIS = 6 +pkg debug/elf, const ELFOSABI_STANDALONE = 255 +pkg debug/elf, const ELFOSABI_TRU64 = 10 +pkg debug/elf, const EM_386 = 3 +pkg debug/elf, const EM_486 = 6 +pkg debug/elf, const EM_68HC12 = 53 +pkg debug/elf, const EM_68K = 4 +pkg debug/elf, const EM_860 = 7 +pkg debug/elf, const EM_88K = 5 +pkg debug/elf, const EM_960 = 19 +pkg debug/elf, const EM_ALPHA = 36902 +pkg debug/elf, const EM_ALPHA_STD = 41 +pkg debug/elf, const EM_ARC = 45 +pkg debug/elf, const EM_ARM = 40 +pkg debug/elf, const EM_COLDFIRE = 52 +pkg debug/elf, const EM_FR20 = 37 +pkg debug/elf, const EM_H8S = 48 +pkg debug/elf, const EM_H8_300 = 46 +pkg debug/elf, const EM_H8_300H = 47 +pkg debug/elf, const EM_H8_500 = 49 +pkg debug/elf, const EM_IA_64 = 50 +pkg debug/elf, const EM_M32 = 1 +pkg debug/elf, const EM_ME16 = 59 +pkg debug/elf, const EM_MIPS = 8 +pkg debug/elf, const EM_MIPS_RS3_LE = 10 +pkg debug/elf, const EM_MIPS_RS4_BE = 10 +pkg debug/elf, const EM_MIPS_X = 51 +pkg debug/elf, const EM_MMA = 54 +pkg debug/elf, const EM_NCPU = 56 +pkg debug/elf, const EM_NDR1 = 57 +pkg debug/elf, const EM_NONE = 0 +pkg debug/elf, const EM_PARISC = 15 +pkg debug/elf, const EM_PCP = 55 +pkg debug/elf, const EM_PPC = 20 +pkg debug/elf, const EM_PPC64 = 21 +pkg debug/elf, const EM_RCE = 39 +pkg debug/elf, const EM_RH32 = 38 +pkg debug/elf, const EM_S370 = 9 +pkg debug/elf, const EM_S390 = 22 +pkg debug/elf, const EM_SH = 42 +pkg debug/elf, const EM_SPARC = 2 +pkg debug/elf, const EM_SPARC32PLUS = 18 +pkg debug/elf, const EM_SPARCV9 = 43 +pkg debug/elf, const EM_ST100 = 60 +pkg debug/elf, const EM_STARCORE = 58 +pkg debug/elf, const EM_TINYJ = 61 +pkg debug/elf, const EM_TRICORE = 44 +pkg debug/elf, const EM_V800 = 36 +pkg debug/elf, const EM_VPP500 = 17 +pkg debug/elf, const EM_X86_64 = 62 +pkg debug/elf, const ET_CORE = 4 +pkg debug/elf, const ET_DYN = 3 +pkg debug/elf, const ET_EXEC = 2 +pkg debug/elf, const ET_HIOS = 65279 +pkg debug/elf, const ET_HIPROC = 65535 +pkg debug/elf, const ET_LOOS = 65024 +pkg debug/elf, const ET_LOPROC = 65280 +pkg debug/elf, const ET_NONE = 0 +pkg debug/elf, const ET_REL = 1 +pkg debug/elf, const EV_CURRENT = 1 +pkg debug/elf, const EV_NONE = 0 +pkg debug/elf, const NT_FPREGSET = 2 +pkg debug/elf, const NT_PRPSINFO = 3 +pkg debug/elf, const NT_PRSTATUS = 1 +pkg debug/elf, const PF_MASKOS = 267386880 +pkg debug/elf, const PF_MASKPROC = 4026531840 +pkg debug/elf, const PF_R = 4 +pkg debug/elf, const PF_W = 2 +pkg debug/elf, const PF_X = 1 +pkg debug/elf, const PT_DYNAMIC = 2 +pkg debug/elf, const PT_HIOS = 1879048191 +pkg debug/elf, const PT_HIPROC = 2147483647 +pkg debug/elf, const PT_INTERP = 3 +pkg debug/elf, const PT_LOAD = 1 +pkg debug/elf, const PT_LOOS = 1610612736 +pkg debug/elf, const PT_LOPROC = 1879048192 +pkg debug/elf, const PT_NOTE = 4 +pkg debug/elf, const PT_NULL = 0 +pkg debug/elf, const PT_PHDR = 6 +pkg debug/elf, const PT_SHLIB = 5 +pkg debug/elf, const PT_TLS = 7 +pkg debug/elf, const R_386_32 = 1 +pkg debug/elf, const R_386_COPY = 5 +pkg debug/elf, const R_386_GLOB_DAT = 6 +pkg debug/elf, const R_386_GOT32 = 3 +pkg debug/elf, const R_386_GOTOFF = 9 +pkg debug/elf, const R_386_GOTPC = 10 +pkg debug/elf, const R_386_JMP_SLOT = 7 +pkg debug/elf, const R_386_NONE = 0 +pkg debug/elf, const R_386_PC32 = 2 +pkg debug/elf, const R_386_PLT32 = 4 +pkg debug/elf, const R_386_RELATIVE = 8 +pkg debug/elf, const R_386_TLS_DTPMOD32 = 35 +pkg debug/elf, const R_386_TLS_DTPOFF32 = 36 +pkg debug/elf, const R_386_TLS_GD = 18 +pkg debug/elf, const R_386_TLS_GD_32 = 24 +pkg debug/elf, const R_386_TLS_GD_CALL = 26 +pkg debug/elf, const R_386_TLS_GD_POP = 27 +pkg debug/elf, const R_386_TLS_GD_PUSH = 25 +pkg debug/elf, const R_386_TLS_GOTIE = 16 +pkg debug/elf, const R_386_TLS_IE = 15 +pkg debug/elf, const R_386_TLS_IE_32 = 33 +pkg debug/elf, const R_386_TLS_LDM = 19 +pkg debug/elf, const R_386_TLS_LDM_32 = 28 +pkg debug/elf, const R_386_TLS_LDM_CALL = 30 +pkg debug/elf, const R_386_TLS_LDM_POP = 31 +pkg debug/elf, const R_386_TLS_LDM_PUSH = 29 +pkg debug/elf, const R_386_TLS_LDO_32 = 32 +pkg debug/elf, const R_386_TLS_LE = 17 +pkg debug/elf, const R_386_TLS_LE_32 = 34 +pkg debug/elf, const R_386_TLS_TPOFF = 14 +pkg debug/elf, const R_386_TLS_TPOFF32 = 37 +pkg debug/elf, const R_ALPHA_BRADDR = 7 +pkg debug/elf, const R_ALPHA_COPY = 24 +pkg debug/elf, const R_ALPHA_GLOB_DAT = 25 +pkg debug/elf, const R_ALPHA_GPDISP = 6 +pkg debug/elf, const R_ALPHA_GPREL32 = 3 +pkg debug/elf, const R_ALPHA_GPRELHIGH = 17 +pkg debug/elf, const R_ALPHA_GPRELLOW = 18 +pkg debug/elf, const R_ALPHA_GPVALUE = 16 +pkg debug/elf, const R_ALPHA_HINT = 8 +pkg debug/elf, const R_ALPHA_IMMED_BR_HI32 = 22 +pkg debug/elf, const R_ALPHA_IMMED_GP_16 = 19 +pkg debug/elf, const R_ALPHA_IMMED_GP_HI32 = 20 +pkg debug/elf, const R_ALPHA_IMMED_LO32 = 23 +pkg debug/elf, const R_ALPHA_IMMED_SCN_HI32 = 21 +pkg debug/elf, const R_ALPHA_JMP_SLOT = 26 +pkg debug/elf, const R_ALPHA_LITERAL = 4 +pkg debug/elf, const R_ALPHA_LITUSE = 5 +pkg debug/elf, const R_ALPHA_NONE = 0 +pkg debug/elf, const R_ALPHA_OP_PRSHIFT = 15 +pkg debug/elf, const R_ALPHA_OP_PSUB = 14 +pkg debug/elf, const R_ALPHA_OP_PUSH = 12 +pkg debug/elf, const R_ALPHA_OP_STORE = 13 +pkg debug/elf, const R_ALPHA_REFLONG = 1 +pkg debug/elf, const R_ALPHA_REFQUAD = 2 +pkg debug/elf, const R_ALPHA_RELATIVE = 27 +pkg debug/elf, const R_ALPHA_SREL16 = 9 +pkg debug/elf, const R_ALPHA_SREL32 = 10 +pkg debug/elf, const R_ALPHA_SREL64 = 11 +pkg debug/elf, const R_ARM_ABS12 = 6 +pkg debug/elf, const R_ARM_ABS16 = 5 +pkg debug/elf, const R_ARM_ABS32 = 2 +pkg debug/elf, const R_ARM_ABS8 = 8 +pkg debug/elf, const R_ARM_AMP_VCALL9 = 12 +pkg debug/elf, const R_ARM_COPY = 20 +pkg debug/elf, const R_ARM_GLOB_DAT = 21 +pkg debug/elf, const R_ARM_GNU_VTENTRY = 100 +pkg debug/elf, const R_ARM_GNU_VTINHERIT = 101 +pkg debug/elf, const R_ARM_GOT32 = 26 +pkg debug/elf, const R_ARM_GOTOFF = 24 +pkg debug/elf, const R_ARM_GOTPC = 25 +pkg debug/elf, const R_ARM_JUMP_SLOT = 22 +pkg debug/elf, const R_ARM_NONE = 0 +pkg debug/elf, const R_ARM_PC13 = 4 +pkg debug/elf, const R_ARM_PC24 = 1 +pkg debug/elf, const R_ARM_PLT32 = 27 +pkg debug/elf, const R_ARM_RABS32 = 253 +pkg debug/elf, const R_ARM_RBASE = 255 +pkg debug/elf, const R_ARM_REL32 = 3 +pkg debug/elf, const R_ARM_RELATIVE = 23 +pkg debug/elf, const R_ARM_RPC24 = 254 +pkg debug/elf, const R_ARM_RREL32 = 252 +pkg debug/elf, const R_ARM_RSBREL32 = 250 +pkg debug/elf, const R_ARM_SBREL32 = 9 +pkg debug/elf, const R_ARM_SWI24 = 13 +pkg debug/elf, const R_ARM_THM_ABS5 = 7 +pkg debug/elf, const R_ARM_THM_PC22 = 10 +pkg debug/elf, const R_ARM_THM_PC8 = 11 +pkg debug/elf, const R_ARM_THM_RPC22 = 251 +pkg debug/elf, const R_ARM_THM_SWI8 = 14 +pkg debug/elf, const R_ARM_THM_XPC22 = 16 +pkg debug/elf, const R_ARM_XPC25 = 15 +pkg debug/elf, const R_PPC_ADDR14 = 7 +pkg debug/elf, const R_PPC_ADDR14_BRNTAKEN = 9 +pkg debug/elf, const R_PPC_ADDR14_BRTAKEN = 8 +pkg debug/elf, const R_PPC_ADDR16 = 3 +pkg debug/elf, const R_PPC_ADDR16_HA = 6 +pkg debug/elf, const R_PPC_ADDR16_HI = 5 +pkg debug/elf, const R_PPC_ADDR16_LO = 4 +pkg debug/elf, const R_PPC_ADDR24 = 2 +pkg debug/elf, const R_PPC_ADDR32 = 1 +pkg debug/elf, const R_PPC_COPY = 19 +pkg debug/elf, const R_PPC_DTPMOD32 = 68 +pkg debug/elf, const R_PPC_DTPREL16 = 74 +pkg debug/elf, const R_PPC_DTPREL16_HA = 77 +pkg debug/elf, const R_PPC_DTPREL16_HI = 76 +pkg debug/elf, const R_PPC_DTPREL16_LO = 75 +pkg debug/elf, const R_PPC_DTPREL32 = 78 +pkg debug/elf, const R_PPC_EMB_BIT_FLD = 115 +pkg debug/elf, const R_PPC_EMB_MRKREF = 110 +pkg debug/elf, const R_PPC_EMB_NADDR16 = 102 +pkg debug/elf, const R_PPC_EMB_NADDR16_HA = 105 +pkg debug/elf, const R_PPC_EMB_NADDR16_HI = 104 +pkg debug/elf, const R_PPC_EMB_NADDR16_LO = 103 +pkg debug/elf, const R_PPC_EMB_NADDR32 = 101 +pkg debug/elf, const R_PPC_EMB_RELSDA = 116 +pkg debug/elf, const R_PPC_EMB_RELSEC16 = 111 +pkg debug/elf, const R_PPC_EMB_RELST_HA = 114 +pkg debug/elf, const R_PPC_EMB_RELST_HI = 113 +pkg debug/elf, const R_PPC_EMB_RELST_LO = 112 +pkg debug/elf, const R_PPC_EMB_SDA21 = 109 +pkg debug/elf, const R_PPC_EMB_SDA2I16 = 107 +pkg debug/elf, const R_PPC_EMB_SDA2REL = 108 +pkg debug/elf, const R_PPC_EMB_SDAI16 = 106 +pkg debug/elf, const R_PPC_GLOB_DAT = 20 +pkg debug/elf, const R_PPC_GOT16 = 14 +pkg debug/elf, const R_PPC_GOT16_HA = 17 +pkg debug/elf, const R_PPC_GOT16_HI = 16 +pkg debug/elf, const R_PPC_GOT16_LO = 15 +pkg debug/elf, const R_PPC_GOT_TLSGD16 = 79 +pkg debug/elf, const R_PPC_GOT_TLSGD16_HA = 82 +pkg debug/elf, const R_PPC_GOT_TLSGD16_HI = 81 +pkg debug/elf, const R_PPC_GOT_TLSGD16_LO = 80 +pkg debug/elf, const R_PPC_GOT_TLSLD16 = 83 +pkg debug/elf, const R_PPC_GOT_TLSLD16_HA = 86 +pkg debug/elf, const R_PPC_GOT_TLSLD16_HI = 85 +pkg debug/elf, const R_PPC_GOT_TLSLD16_LO = 84 +pkg debug/elf, const R_PPC_GOT_TPREL16 = 87 +pkg debug/elf, const R_PPC_GOT_TPREL16_HA = 90 +pkg debug/elf, const R_PPC_GOT_TPREL16_HI = 89 +pkg debug/elf, const R_PPC_GOT_TPREL16_LO = 88 +pkg debug/elf, const R_PPC_JMP_SLOT = 21 +pkg debug/elf, const R_PPC_LOCAL24PC = 23 +pkg debug/elf, const R_PPC_NONE = 0 +pkg debug/elf, const R_PPC_PLT16_HA = 31 +pkg debug/elf, const R_PPC_PLT16_HI = 30 +pkg debug/elf, const R_PPC_PLT16_LO = 29 +pkg debug/elf, const R_PPC_PLT32 = 27 +pkg debug/elf, const R_PPC_PLTREL24 = 18 +pkg debug/elf, const R_PPC_PLTREL32 = 28 +pkg debug/elf, const R_PPC_REL14 = 11 +pkg debug/elf, const R_PPC_REL14_BRNTAKEN = 13 +pkg debug/elf, const R_PPC_REL14_BRTAKEN = 12 +pkg debug/elf, const R_PPC_REL24 = 10 +pkg debug/elf, const R_PPC_REL32 = 26 +pkg debug/elf, const R_PPC_RELATIVE = 22 +pkg debug/elf, const R_PPC_SDAREL16 = 32 +pkg debug/elf, const R_PPC_SECTOFF = 33 +pkg debug/elf, const R_PPC_SECTOFF_HA = 36 +pkg debug/elf, const R_PPC_SECTOFF_HI = 35 +pkg debug/elf, const R_PPC_SECTOFF_LO = 34 +pkg debug/elf, const R_PPC_TLS = 67 +pkg debug/elf, const R_PPC_TPREL16 = 69 +pkg debug/elf, const R_PPC_TPREL16_HA = 72 +pkg debug/elf, const R_PPC_TPREL16_HI = 71 +pkg debug/elf, const R_PPC_TPREL16_LO = 70 +pkg debug/elf, const R_PPC_TPREL32 = 73 +pkg debug/elf, const R_PPC_UADDR16 = 25 +pkg debug/elf, const R_PPC_UADDR32 = 24 +pkg debug/elf, const R_SPARC_10 = 30 +pkg debug/elf, const R_SPARC_11 = 31 +pkg debug/elf, const R_SPARC_13 = 11 +pkg debug/elf, const R_SPARC_16 = 2 +pkg debug/elf, const R_SPARC_22 = 10 +pkg debug/elf, const R_SPARC_32 = 3 +pkg debug/elf, const R_SPARC_5 = 44 +pkg debug/elf, const R_SPARC_6 = 45 +pkg debug/elf, const R_SPARC_64 = 32 +pkg debug/elf, const R_SPARC_7 = 43 +pkg debug/elf, const R_SPARC_8 = 1 +pkg debug/elf, const R_SPARC_COPY = 19 +pkg debug/elf, const R_SPARC_DISP16 = 5 +pkg debug/elf, const R_SPARC_DISP32 = 6 +pkg debug/elf, const R_SPARC_DISP64 = 46 +pkg debug/elf, const R_SPARC_DISP8 = 4 +pkg debug/elf, const R_SPARC_GLOB_DAT = 20 +pkg debug/elf, const R_SPARC_GLOB_JMP = 42 +pkg debug/elf, const R_SPARC_GOT10 = 13 +pkg debug/elf, const R_SPARC_GOT13 = 14 +pkg debug/elf, const R_SPARC_GOT22 = 15 +pkg debug/elf, const R_SPARC_H44 = 50 +pkg debug/elf, const R_SPARC_HH22 = 34 +pkg debug/elf, const R_SPARC_HI22 = 9 +pkg debug/elf, const R_SPARC_HIPLT22 = 25 +pkg debug/elf, const R_SPARC_HIX22 = 48 +pkg debug/elf, const R_SPARC_HM10 = 35 +pkg debug/elf, const R_SPARC_JMP_SLOT = 21 +pkg debug/elf, const R_SPARC_L44 = 52 +pkg debug/elf, const R_SPARC_LM22 = 36 +pkg debug/elf, const R_SPARC_LO10 = 12 +pkg debug/elf, const R_SPARC_LOPLT10 = 26 +pkg debug/elf, const R_SPARC_LOX10 = 49 +pkg debug/elf, const R_SPARC_M44 = 51 +pkg debug/elf, const R_SPARC_NONE = 0 +pkg debug/elf, const R_SPARC_OLO10 = 33 +pkg debug/elf, const R_SPARC_PC10 = 16 +pkg debug/elf, const R_SPARC_PC22 = 17 +pkg debug/elf, const R_SPARC_PCPLT10 = 29 +pkg debug/elf, const R_SPARC_PCPLT22 = 28 +pkg debug/elf, const R_SPARC_PCPLT32 = 27 +pkg debug/elf, const R_SPARC_PC_HH22 = 37 +pkg debug/elf, const R_SPARC_PC_HM10 = 38 +pkg debug/elf, const R_SPARC_PC_LM22 = 39 +pkg debug/elf, const R_SPARC_PLT32 = 24 +pkg debug/elf, const R_SPARC_PLT64 = 47 +pkg debug/elf, const R_SPARC_REGISTER = 53 +pkg debug/elf, const R_SPARC_RELATIVE = 22 +pkg debug/elf, const R_SPARC_UA16 = 55 +pkg debug/elf, const R_SPARC_UA32 = 23 +pkg debug/elf, const R_SPARC_UA64 = 54 +pkg debug/elf, const R_SPARC_WDISP16 = 40 +pkg debug/elf, const R_SPARC_WDISP19 = 41 +pkg debug/elf, const R_SPARC_WDISP22 = 8 +pkg debug/elf, const R_SPARC_WDISP30 = 7 +pkg debug/elf, const R_SPARC_WPLT30 = 18 +pkg debug/elf, const R_X86_64_16 = 12 +pkg debug/elf, const R_X86_64_32 = 10 +pkg debug/elf, const R_X86_64_32S = 11 +pkg debug/elf, const R_X86_64_64 = 1 +pkg debug/elf, const R_X86_64_8 = 14 +pkg debug/elf, const R_X86_64_COPY = 5 +pkg debug/elf, const R_X86_64_DTPMOD64 = 16 +pkg debug/elf, const R_X86_64_DTPOFF32 = 21 +pkg debug/elf, const R_X86_64_DTPOFF64 = 17 +pkg debug/elf, const R_X86_64_GLOB_DAT = 6 +pkg debug/elf, const R_X86_64_GOT32 = 3 +pkg debug/elf, const R_X86_64_GOTPCREL = 9 +pkg debug/elf, const R_X86_64_GOTTPOFF = 22 +pkg debug/elf, const R_X86_64_JMP_SLOT = 7 +pkg debug/elf, const R_X86_64_NONE = 0 +pkg debug/elf, const R_X86_64_PC16 = 13 +pkg debug/elf, const R_X86_64_PC32 = 2 +pkg debug/elf, const R_X86_64_PC8 = 15 +pkg debug/elf, const R_X86_64_PLT32 = 4 +pkg debug/elf, const R_X86_64_RELATIVE = 8 +pkg debug/elf, const R_X86_64_TLSGD = 19 +pkg debug/elf, const R_X86_64_TLSLD = 20 +pkg debug/elf, const R_X86_64_TPOFF32 = 23 +pkg debug/elf, const R_X86_64_TPOFF64 = 18 +pkg debug/elf, const SHF_ALLOC = 2 +pkg debug/elf, const SHF_EXECINSTR = 4 +pkg debug/elf, const SHF_GROUP = 512 +pkg debug/elf, const SHF_INFO_LINK = 64 +pkg debug/elf, const SHF_LINK_ORDER = 128 +pkg debug/elf, const SHF_MASKOS = 267386880 +pkg debug/elf, const SHF_MASKPROC = 4026531840 +pkg debug/elf, const SHF_MERGE = 16 +pkg debug/elf, const SHF_OS_NONCONFORMING = 256 +pkg debug/elf, const SHF_STRINGS = 32 +pkg debug/elf, const SHF_TLS = 1024 +pkg debug/elf, const SHF_WRITE = 1 +pkg debug/elf, const SHN_ABS = 65521 +pkg debug/elf, const SHN_COMMON = 65522 +pkg debug/elf, const SHN_HIOS = 65343 +pkg debug/elf, const SHN_HIPROC = 65311 +pkg debug/elf, const SHN_HIRESERVE = 65535 +pkg debug/elf, const SHN_LOOS = 65312 +pkg debug/elf, const SHN_LOPROC = 65280 +pkg debug/elf, const SHN_LORESERVE = 65280 +pkg debug/elf, const SHN_UNDEF = 0 +pkg debug/elf, const SHN_XINDEX = 65535 +pkg debug/elf, const SHT_DYNAMIC = 6 +pkg debug/elf, const SHT_DYNSYM = 11 +pkg debug/elf, const SHT_FINI_ARRAY = 15 +pkg debug/elf, const SHT_GNU_ATTRIBUTES = 1879048181 +pkg debug/elf, const SHT_GNU_HASH = 1879048182 +pkg debug/elf, const SHT_GNU_LIBLIST = 1879048183 +pkg debug/elf, const SHT_GNU_VERDEF = 1879048189 +pkg debug/elf, const SHT_GNU_VERNEED = 1879048190 +pkg debug/elf, const SHT_GNU_VERSYM = 1879048191 +pkg debug/elf, const SHT_GROUP = 17 +pkg debug/elf, const SHT_HASH = 5 +pkg debug/elf, const SHT_HIOS = 1879048191 +pkg debug/elf, const SHT_HIPROC = 2147483647 +pkg debug/elf, const SHT_HIUSER = 4294967295 +pkg debug/elf, const SHT_INIT_ARRAY = 14 +pkg debug/elf, const SHT_LOOS = 1610612736 +pkg debug/elf, const SHT_LOPROC = 1879048192 +pkg debug/elf, const SHT_LOUSER = 2147483648 +pkg debug/elf, const SHT_NOBITS = 8 +pkg debug/elf, const SHT_NOTE = 7 +pkg debug/elf, const SHT_NULL = 0 +pkg debug/elf, const SHT_PREINIT_ARRAY = 16 +pkg debug/elf, const SHT_PROGBITS = 1 +pkg debug/elf, const SHT_REL = 9 +pkg debug/elf, const SHT_RELA = 4 +pkg debug/elf, const SHT_SHLIB = 10 +pkg debug/elf, const SHT_STRTAB = 3 +pkg debug/elf, const SHT_SYMTAB = 2 +pkg debug/elf, const SHT_SYMTAB_SHNDX = 18 +pkg debug/elf, const STB_GLOBAL = 1 +pkg debug/elf, const STB_HIOS = 12 +pkg debug/elf, const STB_HIPROC = 15 +pkg debug/elf, const STB_LOCAL = 0 +pkg debug/elf, const STB_LOOS = 10 +pkg debug/elf, const STB_LOPROC = 13 +pkg debug/elf, const STB_WEAK = 2 +pkg debug/elf, const STT_COMMON = 5 +pkg debug/elf, const STT_FILE = 4 +pkg debug/elf, const STT_FUNC = 2 +pkg debug/elf, const STT_HIOS = 12 +pkg debug/elf, const STT_HIPROC = 15 +pkg debug/elf, const STT_LOOS = 10 +pkg debug/elf, const STT_LOPROC = 13 +pkg debug/elf, const STT_NOTYPE = 0 +pkg debug/elf, const STT_OBJECT = 1 +pkg debug/elf, const STT_SECTION = 3 +pkg debug/elf, const STT_TLS = 6 +pkg debug/elf, const STV_DEFAULT = 0 +pkg debug/elf, const STV_HIDDEN = 2 +pkg debug/elf, const STV_INTERNAL = 1 +pkg debug/elf, const STV_PROTECTED = 3 +pkg debug/elf, const Sym32Size = 16 +pkg debug/elf, const Sym64Size = 24 +pkg debug/elf, method (*File) DynString(DynTag) ([]string, error) +pkg debug/elf, type FileHeader struct, Entry uint64 +pkg debug/macho, const Cpu386 = 7 +pkg debug/macho, const CpuAmd64 = 16777223 +pkg debug/macho, const LoadCmdDylib = 12 +pkg debug/macho, const LoadCmdDylinker = 15 +pkg debug/macho, const LoadCmdDysymtab = 11 +pkg debug/macho, const LoadCmdSegment = 1 +pkg debug/macho, const LoadCmdSegment64 = 25 +pkg debug/macho, const LoadCmdSymtab = 2 +pkg debug/macho, const LoadCmdThread = 4 +pkg debug/macho, const LoadCmdUnixThread = 5 +pkg debug/macho, const Magic32 = 4277009102 +pkg debug/macho, const Magic64 = 4277009103 +pkg debug/macho, const TypeExec = 2 +pkg debug/macho, const TypeObj = 1 +pkg debug/pe, const COFFSymbolSize = 18 +pkg debug/pe, const COFFSymbolSize ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_AM33 = 467 +pkg debug/pe, const IMAGE_FILE_MACHINE_AMD64 = 34404 +pkg debug/pe, const IMAGE_FILE_MACHINE_ARM = 448 +pkg debug/pe, const IMAGE_FILE_MACHINE_EBC = 3772 +pkg debug/pe, const IMAGE_FILE_MACHINE_I386 = 332 +pkg debug/pe, const IMAGE_FILE_MACHINE_IA64 = 512 +pkg debug/pe, const IMAGE_FILE_MACHINE_M32R = 36929 +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPS16 = 614 +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU = 870 +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU16 = 1126 +pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPC = 496 +pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPCFP = 497 +pkg debug/pe, const IMAGE_FILE_MACHINE_R4000 = 358 +pkg debug/pe, const IMAGE_FILE_MACHINE_SH3 = 418 +pkg debug/pe, const IMAGE_FILE_MACHINE_SH3DSP = 419 +pkg debug/pe, const IMAGE_FILE_MACHINE_SH4 = 422 +pkg debug/pe, const IMAGE_FILE_MACHINE_SH5 = 424 +pkg debug/pe, const IMAGE_FILE_MACHINE_THUMB = 450 +pkg debug/pe, const IMAGE_FILE_MACHINE_UNKNOWN = 0 +pkg debug/pe, const IMAGE_FILE_MACHINE_WCEMIPSV2 = 361 +pkg debug/pe, type COFFSymbol struct +pkg debug/pe, type COFFSymbol struct, Name [8]uint8 +pkg debug/pe, type COFFSymbol struct, NumberOfAuxSymbols uint8 +pkg debug/pe, type COFFSymbol struct, SectionNumber int16 +pkg debug/pe, type COFFSymbol struct, StorageClass uint8 +pkg debug/pe, type COFFSymbol struct, Type uint16 +pkg debug/pe, type COFFSymbol struct, Value uint32 +pkg debug/pe, type File struct, Symbols []*Symbol +pkg debug/pe, type Symbol struct +pkg debug/pe, type Symbol struct, Name string +pkg debug/pe, type Symbol struct, SectionNumber int16 +pkg debug/pe, type Symbol struct, StorageClass uint8 +pkg debug/pe, type Symbol struct, Type uint16 +pkg debug/pe, type Symbol struct, Value uint32 +pkg encoding/binary, const MaxVarintLen16 = 3 +pkg encoding/binary, const MaxVarintLen32 = 5 +pkg encoding/binary, const MaxVarintLen64 = 10 +pkg encoding/csv, method (*Writer) Error() error +pkg encoding/json, method (*Decoder) Buffered() io.Reader +pkg encoding/json, method (*Decoder) UseNumber() +pkg encoding/json, method (Number) Float64() (float64, error) +pkg encoding/json, method (Number) Int64() (int64, error) +pkg encoding/json, method (Number) String() string +pkg encoding/json, type Number string +pkg encoding/xml, const Header = "\n" +pkg encoding/xml, func EscapeText(io.Writer, []uint8) error +pkg encoding/xml, method (*Encoder) Indent(string, string) +pkg encoding/xml, type Decoder struct, DefaultSpace string +pkg flag, const ContinueOnError = 0 +pkg flag, const ExitOnError = 1 +pkg flag, const PanicOnError = 2 +pkg go/ast, const Bad = 0 +pkg go/ast, const Con = 2 +pkg go/ast, const FilterFuncDuplicates = 1 +pkg go/ast, const FilterImportDuplicates = 4 +pkg go/ast, const FilterUnassociatedComments = 2 +pkg go/ast, const Fun = 5 +pkg go/ast, const Lbl = 6 +pkg go/ast, const Pkg = 1 +pkg go/ast, const RECV = 2 +pkg go/ast, const SEND = 1 +pkg go/ast, const Typ = 3 +pkg go/ast, const Var = 4 +pkg go/ast, func NewCommentMap(*token.FileSet, Node, []*CommentGroup) CommentMap +pkg go/ast, method (CommentMap) Comments() []*CommentGroup +pkg go/ast, method (CommentMap) Filter(Node) CommentMap +pkg go/ast, method (CommentMap) String() string +pkg go/ast, method (CommentMap) Update(Node, Node) Node +pkg go/ast, type ChanType struct, Arrow token.Pos +pkg go/ast, type CommentMap map[Node][]*CommentGroup +pkg go/build, const AllowBinary = 2 +pkg go/build, const FindOnly = 1 +pkg go/build, type Context struct, InstallSuffix string +pkg go/build, type Context struct, ReleaseTags []string +pkg go/build, type Package struct, IgnoredGoFiles []string +pkg go/build, type Package struct, SwigCXXFiles []string +pkg go/build, type Package struct, SwigFiles []string +pkg go/doc, const AllDecls = 1 +pkg go/doc, const AllMethods = 2 +pkg go/doc, type Example struct, EmptyOutput bool +pkg go/doc, type Example struct, Order int +pkg go/doc, type Example struct, Play *ast.File +pkg go/doc, type Note struct +pkg go/doc, type Note struct, Body string +pkg go/doc, type Note struct, End token.Pos +pkg go/doc, type Note struct, Pos token.Pos +pkg go/doc, type Note struct, UID string +pkg go/doc, type Package struct, Notes map[string][]*Note +pkg go/doc, var IllegalPrefixes []string +pkg go/format, func Node(io.Writer, *token.FileSet, interface{}) error +pkg go/format, func Source([]uint8) ([]uint8, error) +pkg go/parser, const AllErrors = 32 +pkg go/parser, const AllErrors Mode +pkg go/parser, const DeclarationErrors = 16 +pkg go/parser, const ImportsOnly = 2 +pkg go/parser, const PackageClauseOnly = 1 +pkg go/parser, const ParseComments = 4 +pkg go/parser, const SpuriousErrors = 32 +pkg go/parser, const Trace = 8 +pkg go/printer, const RawFormat = 1 +pkg go/printer, const SourcePos = 8 +pkg go/printer, const TabIndent = 2 +pkg go/printer, const UseSpaces = 4 +pkg go/printer, type Config struct, Indent int +pkg go/scanner, const ScanComments = 1 +pkg go/token, const ADD = 12 +pkg go/token, const ADD_ASSIGN = 23 +pkg go/token, const AND = 17 +pkg go/token, const AND_ASSIGN = 28 +pkg go/token, const AND_NOT = 22 +pkg go/token, const AND_NOT_ASSIGN = 33 +pkg go/token, const ARROW = 36 +pkg go/token, const ASSIGN = 42 +pkg go/token, const BREAK = 61 +pkg go/token, const CASE = 62 +pkg go/token, const CHAN = 63 +pkg go/token, const CHAR = 8 +pkg go/token, const COLON = 58 +pkg go/token, const COMMA = 52 +pkg go/token, const COMMENT = 2 +pkg go/token, const CONST = 64 +pkg go/token, const CONTINUE = 65 +pkg go/token, const DEC = 38 +pkg go/token, const DEFAULT = 66 +pkg go/token, const DEFER = 67 +pkg go/token, const DEFINE = 47 +pkg go/token, const ELLIPSIS = 48 +pkg go/token, const ELSE = 68 +pkg go/token, const EOF = 1 +pkg go/token, const EQL = 39 +pkg go/token, const FALLTHROUGH = 69 +pkg go/token, const FLOAT = 6 +pkg go/token, const FOR = 70 +pkg go/token, const FUNC = 71 +pkg go/token, const GEQ = 46 +pkg go/token, const GO = 72 +pkg go/token, const GOTO = 73 +pkg go/token, const GTR = 41 +pkg go/token, const HighestPrec = 7 +pkg go/token, const IDENT = 4 +pkg go/token, const IF = 74 +pkg go/token, const ILLEGAL = 0 +pkg go/token, const IMAG = 7 +pkg go/token, const IMPORT = 75 +pkg go/token, const INC = 37 +pkg go/token, const INT = 5 +pkg go/token, const INTERFACE = 76 +pkg go/token, const LAND = 34 +pkg go/token, const LBRACE = 51 +pkg go/token, const LBRACK = 50 +pkg go/token, const LEQ = 45 +pkg go/token, const LOR = 35 +pkg go/token, const LPAREN = 49 +pkg go/token, const LSS = 40 +pkg go/token, const LowestPrec = 0 +pkg go/token, const MAP = 77 +pkg go/token, const MUL = 14 +pkg go/token, const MUL_ASSIGN = 25 +pkg go/token, const NEQ = 44 +pkg go/token, const NOT = 43 +pkg go/token, const NoPos = 0 +pkg go/token, const OR = 18 +pkg go/token, const OR_ASSIGN = 29 +pkg go/token, const PACKAGE = 78 +pkg go/token, const PERIOD = 53 +pkg go/token, const QUO = 15 +pkg go/token, const QUO_ASSIGN = 26 +pkg go/token, const RANGE = 79 +pkg go/token, const RBRACE = 56 +pkg go/token, const RBRACK = 55 +pkg go/token, const REM = 16 +pkg go/token, const REM_ASSIGN = 27 +pkg go/token, const RETURN = 80 +pkg go/token, const RPAREN = 54 +pkg go/token, const SELECT = 81 +pkg go/token, const SEMICOLON = 57 +pkg go/token, const SHL = 20 +pkg go/token, const SHL_ASSIGN = 31 +pkg go/token, const SHR = 21 +pkg go/token, const SHR_ASSIGN = 32 +pkg go/token, const STRING = 9 +pkg go/token, const STRUCT = 82 +pkg go/token, const SUB = 13 +pkg go/token, const SUB_ASSIGN = 24 +pkg go/token, const SWITCH = 83 +pkg go/token, const TYPE = 84 +pkg go/token, const UnaryPrec = 6 +pkg go/token, const VAR = 85 +pkg go/token, const XOR = 19 +pkg go/token, const XOR_ASSIGN = 30 +pkg hash/adler32, const Size = 4 +pkg hash/crc32, const Castagnoli = 2197175160 +pkg hash/crc32, const IEEE = 3988292384 +pkg hash/crc32, const Koopman = 3945912366 +pkg hash/crc32, const Size = 4 +pkg hash/crc64, const ECMA = 14514072000185962306 +pkg hash/crc64, const ISO = 15564440312192434176 +pkg hash/crc64, const Size = 8 +pkg html/template, const ErrAmbigContext = 1 +pkg html/template, const ErrBadHTML = 2 +pkg html/template, const ErrBranchEnd = 3 +pkg html/template, const ErrEndContext = 4 +pkg html/template, const ErrNoSuchTemplate = 5 +pkg html/template, const ErrOutputContext = 6 +pkg html/template, const ErrPartialCharset = 7 +pkg html/template, const ErrPartialEscape = 8 +pkg html/template, const ErrRangeLoopReentry = 9 +pkg html/template, const ErrSlashAmbig = 10 +pkg html/template, const OK = 0 +pkg image, const YCbCrSubsampleRatio420 = 2 +pkg image, const YCbCrSubsampleRatio422 = 1 +pkg image, const YCbCrSubsampleRatio440 = 3 +pkg image, const YCbCrSubsampleRatio440 YCbCrSubsampleRatio +pkg image, const YCbCrSubsampleRatio444 = 0 +pkg image/draw, const Over = 0 +pkg image/draw, const Src = 1 +pkg image/jpeg, const DefaultQuality = 75 +pkg io, type ByteWriter interface { WriteByte } +pkg io, type ByteWriter interface, WriteByte(uint8) error +pkg io, var ErrNoProgress error +pkg log, const Ldate = 1 +pkg log, const Llongfile = 8 +pkg log, const Lmicroseconds = 4 +pkg log, const Lshortfile = 16 +pkg log, const LstdFlags = 3 +pkg log, const Ltime = 2 +pkg log/syslog (darwin-386), const LOG_ALERT = 1 +pkg log/syslog (darwin-386), const LOG_AUTH = 32 +pkg log/syslog (darwin-386), const LOG_AUTH Priority +pkg log/syslog (darwin-386), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-386), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-386), const LOG_CRIT = 2 +pkg log/syslog (darwin-386), const LOG_CRON = 72 +pkg log/syslog (darwin-386), const LOG_CRON Priority +pkg log/syslog (darwin-386), const LOG_DAEMON = 24 +pkg log/syslog (darwin-386), const LOG_DAEMON Priority +pkg log/syslog (darwin-386), const LOG_DEBUG = 7 +pkg log/syslog (darwin-386), const LOG_EMERG = 0 +pkg log/syslog (darwin-386), const LOG_ERR = 3 +pkg log/syslog (darwin-386), const LOG_FTP = 88 +pkg log/syslog (darwin-386), const LOG_FTP Priority +pkg log/syslog (darwin-386), const LOG_INFO = 6 +pkg log/syslog (darwin-386), const LOG_KERN = 0 +pkg log/syslog (darwin-386), const LOG_KERN Priority +pkg log/syslog (darwin-386), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-386), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-386), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-386), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-386), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-386), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-386), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-386), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-386), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-386), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-386), const LOG_LPR = 48 +pkg log/syslog (darwin-386), const LOG_LPR Priority +pkg log/syslog (darwin-386), const LOG_MAIL = 16 +pkg log/syslog (darwin-386), const LOG_MAIL Priority +pkg log/syslog (darwin-386), const LOG_NEWS = 56 +pkg log/syslog (darwin-386), const LOG_NEWS Priority +pkg log/syslog (darwin-386), const LOG_NOTICE = 5 +pkg log/syslog (darwin-386), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-386), const LOG_SYSLOG Priority +pkg log/syslog (darwin-386), const LOG_USER = 8 +pkg log/syslog (darwin-386), const LOG_USER Priority +pkg log/syslog (darwin-386), const LOG_UUCP = 64 +pkg log/syslog (darwin-386), const LOG_UUCP Priority +pkg log/syslog (darwin-386), const LOG_WARNING = 4 +pkg log/syslog (darwin-386-cgo), const LOG_ALERT = 1 +pkg log/syslog (darwin-386-cgo), const LOG_AUTH = 32 +pkg log/syslog (darwin-386-cgo), const LOG_AUTH Priority +pkg log/syslog (darwin-386-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-386-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-386-cgo), const LOG_CRIT = 2 +pkg log/syslog (darwin-386-cgo), const LOG_CRON = 72 +pkg log/syslog (darwin-386-cgo), const LOG_CRON Priority +pkg log/syslog (darwin-386-cgo), const LOG_DAEMON = 24 +pkg log/syslog (darwin-386-cgo), const LOG_DAEMON Priority +pkg log/syslog (darwin-386-cgo), const LOG_DEBUG = 7 +pkg log/syslog (darwin-386-cgo), const LOG_EMERG = 0 +pkg log/syslog (darwin-386-cgo), const LOG_ERR = 3 +pkg log/syslog (darwin-386-cgo), const LOG_FTP = 88 +pkg log/syslog (darwin-386-cgo), const LOG_FTP Priority +pkg log/syslog (darwin-386-cgo), const LOG_INFO = 6 +pkg log/syslog (darwin-386-cgo), const LOG_KERN = 0 +pkg log/syslog (darwin-386-cgo), const LOG_KERN Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-386-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-386-cgo), const LOG_LPR = 48 +pkg log/syslog (darwin-386-cgo), const LOG_LPR Priority +pkg log/syslog (darwin-386-cgo), const LOG_MAIL = 16 +pkg log/syslog (darwin-386-cgo), const LOG_MAIL Priority +pkg log/syslog (darwin-386-cgo), const LOG_NEWS = 56 +pkg log/syslog (darwin-386-cgo), const LOG_NEWS Priority +pkg log/syslog (darwin-386-cgo), const LOG_NOTICE = 5 +pkg log/syslog (darwin-386-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-386-cgo), const LOG_SYSLOG Priority +pkg log/syslog (darwin-386-cgo), const LOG_USER = 8 +pkg log/syslog (darwin-386-cgo), const LOG_USER Priority +pkg log/syslog (darwin-386-cgo), const LOG_UUCP = 64 +pkg log/syslog (darwin-386-cgo), const LOG_UUCP Priority +pkg log/syslog (darwin-386-cgo), const LOG_WARNING = 4 +pkg log/syslog (darwin-amd64), const LOG_ALERT = 1 +pkg log/syslog (darwin-amd64), const LOG_AUTH = 32 +pkg log/syslog (darwin-amd64), const LOG_AUTH Priority +pkg log/syslog (darwin-amd64), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-amd64), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-amd64), const LOG_CRIT = 2 +pkg log/syslog (darwin-amd64), const LOG_CRON = 72 +pkg log/syslog (darwin-amd64), const LOG_CRON Priority +pkg log/syslog (darwin-amd64), const LOG_DAEMON = 24 +pkg log/syslog (darwin-amd64), const LOG_DAEMON Priority +pkg log/syslog (darwin-amd64), const LOG_DEBUG = 7 +pkg log/syslog (darwin-amd64), const LOG_EMERG = 0 +pkg log/syslog (darwin-amd64), const LOG_ERR = 3 +pkg log/syslog (darwin-amd64), const LOG_FTP = 88 +pkg log/syslog (darwin-amd64), const LOG_FTP Priority +pkg log/syslog (darwin-amd64), const LOG_INFO = 6 +pkg log/syslog (darwin-amd64), const LOG_KERN = 0 +pkg log/syslog (darwin-amd64), const LOG_KERN Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-amd64), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-amd64), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-amd64), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-amd64), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-amd64), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-amd64), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-amd64), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-amd64), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-amd64), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-amd64), const LOG_LPR = 48 +pkg log/syslog (darwin-amd64), const LOG_LPR Priority +pkg log/syslog (darwin-amd64), const LOG_MAIL = 16 +pkg log/syslog (darwin-amd64), const LOG_MAIL Priority +pkg log/syslog (darwin-amd64), const LOG_NEWS = 56 +pkg log/syslog (darwin-amd64), const LOG_NEWS Priority +pkg log/syslog (darwin-amd64), const LOG_NOTICE = 5 +pkg log/syslog (darwin-amd64), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-amd64), const LOG_SYSLOG Priority +pkg log/syslog (darwin-amd64), const LOG_USER = 8 +pkg log/syslog (darwin-amd64), const LOG_USER Priority +pkg log/syslog (darwin-amd64), const LOG_UUCP = 64 +pkg log/syslog (darwin-amd64), const LOG_UUCP Priority +pkg log/syslog (darwin-amd64), const LOG_WARNING = 4 +pkg log/syslog (darwin-amd64-cgo), const LOG_ALERT = 1 +pkg log/syslog (darwin-amd64-cgo), const LOG_AUTH = 32 +pkg log/syslog (darwin-amd64-cgo), const LOG_AUTH Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-amd64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_CRIT = 2 +pkg log/syslog (darwin-amd64-cgo), const LOG_CRON = 72 +pkg log/syslog (darwin-amd64-cgo), const LOG_CRON Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (darwin-amd64-cgo), const LOG_DAEMON Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (darwin-amd64-cgo), const LOG_EMERG = 0 +pkg log/syslog (darwin-amd64-cgo), const LOG_ERR = 3 +pkg log/syslog (darwin-amd64-cgo), const LOG_FTP = 88 +pkg log/syslog (darwin-amd64-cgo), const LOG_FTP Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_INFO = 6 +pkg log/syslog (darwin-amd64-cgo), const LOG_KERN = 0 +pkg log/syslog (darwin-amd64-cgo), const LOG_KERN Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-amd64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_LPR = 48 +pkg log/syslog (darwin-amd64-cgo), const LOG_LPR Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_MAIL = 16 +pkg log/syslog (darwin-amd64-cgo), const LOG_MAIL Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_NEWS = 56 +pkg log/syslog (darwin-amd64-cgo), const LOG_NEWS Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (darwin-amd64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-amd64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_USER = 8 +pkg log/syslog (darwin-amd64-cgo), const LOG_USER Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_UUCP = 64 +pkg log/syslog (darwin-amd64-cgo), const LOG_UUCP Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_WARNING = 4 +pkg log/syslog (freebsd-386), const LOG_ALERT = 1 +pkg log/syslog (freebsd-386), const LOG_AUTH = 32 +pkg log/syslog (freebsd-386), const LOG_AUTH Priority +pkg log/syslog (freebsd-386), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-386), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-386), const LOG_CRIT = 2 +pkg log/syslog (freebsd-386), const LOG_CRON = 72 +pkg log/syslog (freebsd-386), const LOG_CRON Priority +pkg log/syslog (freebsd-386), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-386), const LOG_DAEMON Priority +pkg log/syslog (freebsd-386), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-386), const LOG_EMERG = 0 +pkg log/syslog (freebsd-386), const LOG_ERR = 3 +pkg log/syslog (freebsd-386), const LOG_FTP = 88 +pkg log/syslog (freebsd-386), const LOG_FTP Priority +pkg log/syslog (freebsd-386), const LOG_INFO = 6 +pkg log/syslog (freebsd-386), const LOG_KERN = 0 +pkg log/syslog (freebsd-386), const LOG_KERN Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-386), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-386), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-386), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-386), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-386), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-386), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-386), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-386), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-386), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-386), const LOG_LPR = 48 +pkg log/syslog (freebsd-386), const LOG_LPR Priority +pkg log/syslog (freebsd-386), const LOG_MAIL = 16 +pkg log/syslog (freebsd-386), const LOG_MAIL Priority +pkg log/syslog (freebsd-386), const LOG_NEWS = 56 +pkg log/syslog (freebsd-386), const LOG_NEWS Priority +pkg log/syslog (freebsd-386), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-386), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-386), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-386), const LOG_USER = 8 +pkg log/syslog (freebsd-386), const LOG_USER Priority +pkg log/syslog (freebsd-386), const LOG_UUCP = 64 +pkg log/syslog (freebsd-386), const LOG_UUCP Priority +pkg log/syslog (freebsd-386), const LOG_WARNING = 4 +pkg log/syslog (freebsd-386-cgo), const LOG_ALERT = 1 +pkg log/syslog (freebsd-386-cgo), const LOG_AUTH = 32 +pkg log/syslog (freebsd-386-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-386-cgo), const LOG_CRIT = 2 +pkg log/syslog (freebsd-386-cgo), const LOG_CRON = 72 +pkg log/syslog (freebsd-386-cgo), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-386-cgo), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-386-cgo), const LOG_EMERG = 0 +pkg log/syslog (freebsd-386-cgo), const LOG_ERR = 3 +pkg log/syslog (freebsd-386-cgo), const LOG_FTP = 88 +pkg log/syslog (freebsd-386-cgo), const LOG_INFO = 6 +pkg log/syslog (freebsd-386-cgo), const LOG_KERN = 0 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-386-cgo), const LOG_LPR = 48 +pkg log/syslog (freebsd-386-cgo), const LOG_MAIL = 16 +pkg log/syslog (freebsd-386-cgo), const LOG_NEWS = 56 +pkg log/syslog (freebsd-386-cgo), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-386-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-386-cgo), const LOG_USER = 8 +pkg log/syslog (freebsd-386-cgo), const LOG_UUCP = 64 +pkg log/syslog (freebsd-386-cgo), const LOG_WARNING = 4 +pkg log/syslog (freebsd-amd64), const LOG_ALERT = 1 +pkg log/syslog (freebsd-amd64), const LOG_AUTH = 32 +pkg log/syslog (freebsd-amd64), const LOG_AUTH Priority +pkg log/syslog (freebsd-amd64), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-amd64), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-amd64), const LOG_CRIT = 2 +pkg log/syslog (freebsd-amd64), const LOG_CRON = 72 +pkg log/syslog (freebsd-amd64), const LOG_CRON Priority +pkg log/syslog (freebsd-amd64), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-amd64), const LOG_DAEMON Priority +pkg log/syslog (freebsd-amd64), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-amd64), const LOG_EMERG = 0 +pkg log/syslog (freebsd-amd64), const LOG_ERR = 3 +pkg log/syslog (freebsd-amd64), const LOG_FTP = 88 +pkg log/syslog (freebsd-amd64), const LOG_FTP Priority +pkg log/syslog (freebsd-amd64), const LOG_INFO = 6 +pkg log/syslog (freebsd-amd64), const LOG_KERN = 0 +pkg log/syslog (freebsd-amd64), const LOG_KERN Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-amd64), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-amd64), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-amd64), const LOG_LPR = 48 +pkg log/syslog (freebsd-amd64), const LOG_LPR Priority +pkg log/syslog (freebsd-amd64), const LOG_MAIL = 16 +pkg log/syslog (freebsd-amd64), const LOG_MAIL Priority +pkg log/syslog (freebsd-amd64), const LOG_NEWS = 56 +pkg log/syslog (freebsd-amd64), const LOG_NEWS Priority +pkg log/syslog (freebsd-amd64), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-amd64), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-amd64), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-amd64), const LOG_USER = 8 +pkg log/syslog (freebsd-amd64), const LOG_USER Priority +pkg log/syslog (freebsd-amd64), const LOG_UUCP = 64 +pkg log/syslog (freebsd-amd64), const LOG_UUCP Priority +pkg log/syslog (freebsd-amd64), const LOG_WARNING = 4 +pkg log/syslog (freebsd-amd64-cgo), const LOG_ALERT = 1 +pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTH = 32 +pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-amd64-cgo), const LOG_CRIT = 2 +pkg log/syslog (freebsd-amd64-cgo), const LOG_CRON = 72 +pkg log/syslog (freebsd-amd64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-amd64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-amd64-cgo), const LOG_EMERG = 0 +pkg log/syslog (freebsd-amd64-cgo), const LOG_ERR = 3 +pkg log/syslog (freebsd-amd64-cgo), const LOG_FTP = 88 +pkg log/syslog (freebsd-amd64-cgo), const LOG_INFO = 6 +pkg log/syslog (freebsd-amd64-cgo), const LOG_KERN = 0 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-amd64-cgo), const LOG_LPR = 48 +pkg log/syslog (freebsd-amd64-cgo), const LOG_MAIL = 16 +pkg log/syslog (freebsd-amd64-cgo), const LOG_NEWS = 56 +pkg log/syslog (freebsd-amd64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-amd64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-amd64-cgo), const LOG_USER = 8 +pkg log/syslog (freebsd-amd64-cgo), const LOG_UUCP = 64 +pkg log/syslog (freebsd-amd64-cgo), const LOG_WARNING = 4 +pkg log/syslog (freebsd-arm), const LOG_ALERT = 1 +pkg log/syslog (freebsd-arm), const LOG_AUTH = 32 +pkg log/syslog (freebsd-arm), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-arm), const LOG_CRIT = 2 +pkg log/syslog (freebsd-arm), const LOG_CRON = 72 +pkg log/syslog (freebsd-arm), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-arm), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-arm), const LOG_EMERG = 0 +pkg log/syslog (freebsd-arm), const LOG_ERR = 3 +pkg log/syslog (freebsd-arm), const LOG_FTP = 88 +pkg log/syslog (freebsd-arm), const LOG_INFO = 6 +pkg log/syslog (freebsd-arm), const LOG_KERN = 0 +pkg log/syslog (freebsd-arm), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-arm), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-arm), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-arm), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-arm), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-arm), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-arm), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-arm), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-arm), const LOG_LPR = 48 +pkg log/syslog (freebsd-arm), const LOG_MAIL = 16 +pkg log/syslog (freebsd-arm), const LOG_NEWS = 56 +pkg log/syslog (freebsd-arm), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-arm), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-arm), const LOG_USER = 8 +pkg log/syslog (freebsd-arm), const LOG_UUCP = 64 +pkg log/syslog (freebsd-arm), const LOG_WARNING = 4 +pkg log/syslog (freebsd-arm-cgo), const LOG_ALERT = 1 +pkg log/syslog (freebsd-arm-cgo), const LOG_AUTH = 32 +pkg log/syslog (freebsd-arm-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-arm-cgo), const LOG_CRIT = 2 +pkg log/syslog (freebsd-arm-cgo), const LOG_CRON = 72 +pkg log/syslog (freebsd-arm-cgo), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-arm-cgo), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-arm-cgo), const LOG_EMERG = 0 +pkg log/syslog (freebsd-arm-cgo), const LOG_ERR = 3 +pkg log/syslog (freebsd-arm-cgo), const LOG_FTP = 88 +pkg log/syslog (freebsd-arm-cgo), const LOG_INFO = 6 +pkg log/syslog (freebsd-arm-cgo), const LOG_KERN = 0 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-arm-cgo), const LOG_LPR = 48 +pkg log/syslog (freebsd-arm-cgo), const LOG_MAIL = 16 +pkg log/syslog (freebsd-arm-cgo), const LOG_NEWS = 56 +pkg log/syslog (freebsd-arm-cgo), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-arm-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-arm-cgo), const LOG_USER = 8 +pkg log/syslog (freebsd-arm-cgo), const LOG_UUCP = 64 +pkg log/syslog (freebsd-arm-cgo), const LOG_WARNING = 4 +pkg log/syslog (linux-386), const LOG_ALERT = 1 +pkg log/syslog (linux-386), const LOG_AUTH = 32 +pkg log/syslog (linux-386), const LOG_AUTH Priority +pkg log/syslog (linux-386), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-386), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-386), const LOG_CRIT = 2 +pkg log/syslog (linux-386), const LOG_CRON = 72 +pkg log/syslog (linux-386), const LOG_CRON Priority +pkg log/syslog (linux-386), const LOG_DAEMON = 24 +pkg log/syslog (linux-386), const LOG_DAEMON Priority +pkg log/syslog (linux-386), const LOG_DEBUG = 7 +pkg log/syslog (linux-386), const LOG_EMERG = 0 +pkg log/syslog (linux-386), const LOG_ERR = 3 +pkg log/syslog (linux-386), const LOG_FTP = 88 +pkg log/syslog (linux-386), const LOG_FTP Priority +pkg log/syslog (linux-386), const LOG_INFO = 6 +pkg log/syslog (linux-386), const LOG_KERN = 0 +pkg log/syslog (linux-386), const LOG_KERN Priority +pkg log/syslog (linux-386), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-386), const LOG_LOCAL0 Priority +pkg log/syslog (linux-386), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-386), const LOG_LOCAL1 Priority +pkg log/syslog (linux-386), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-386), const LOG_LOCAL2 Priority +pkg log/syslog (linux-386), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-386), const LOG_LOCAL3 Priority +pkg log/syslog (linux-386), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-386), const LOG_LOCAL4 Priority +pkg log/syslog (linux-386), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-386), const LOG_LOCAL5 Priority +pkg log/syslog (linux-386), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-386), const LOG_LOCAL6 Priority +pkg log/syslog (linux-386), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-386), const LOG_LOCAL7 Priority +pkg log/syslog (linux-386), const LOG_LPR = 48 +pkg log/syslog (linux-386), const LOG_LPR Priority +pkg log/syslog (linux-386), const LOG_MAIL = 16 +pkg log/syslog (linux-386), const LOG_MAIL Priority +pkg log/syslog (linux-386), const LOG_NEWS = 56 +pkg log/syslog (linux-386), const LOG_NEWS Priority +pkg log/syslog (linux-386), const LOG_NOTICE = 5 +pkg log/syslog (linux-386), const LOG_SYSLOG = 40 +pkg log/syslog (linux-386), const LOG_SYSLOG Priority +pkg log/syslog (linux-386), const LOG_USER = 8 +pkg log/syslog (linux-386), const LOG_USER Priority +pkg log/syslog (linux-386), const LOG_UUCP = 64 +pkg log/syslog (linux-386), const LOG_UUCP Priority +pkg log/syslog (linux-386), const LOG_WARNING = 4 +pkg log/syslog (linux-386-cgo), const LOG_ALERT = 1 +pkg log/syslog (linux-386-cgo), const LOG_AUTH = 32 +pkg log/syslog (linux-386-cgo), const LOG_AUTH Priority +pkg log/syslog (linux-386-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-386-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-386-cgo), const LOG_CRIT = 2 +pkg log/syslog (linux-386-cgo), const LOG_CRON = 72 +pkg log/syslog (linux-386-cgo), const LOG_CRON Priority +pkg log/syslog (linux-386-cgo), const LOG_DAEMON = 24 +pkg log/syslog (linux-386-cgo), const LOG_DAEMON Priority +pkg log/syslog (linux-386-cgo), const LOG_DEBUG = 7 +pkg log/syslog (linux-386-cgo), const LOG_EMERG = 0 +pkg log/syslog (linux-386-cgo), const LOG_ERR = 3 +pkg log/syslog (linux-386-cgo), const LOG_FTP = 88 +pkg log/syslog (linux-386-cgo), const LOG_FTP Priority +pkg log/syslog (linux-386-cgo), const LOG_INFO = 6 +pkg log/syslog (linux-386-cgo), const LOG_KERN = 0 +pkg log/syslog (linux-386-cgo), const LOG_KERN Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (linux-386-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-386-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (linux-386-cgo), const LOG_LPR = 48 +pkg log/syslog (linux-386-cgo), const LOG_LPR Priority +pkg log/syslog (linux-386-cgo), const LOG_MAIL = 16 +pkg log/syslog (linux-386-cgo), const LOG_MAIL Priority +pkg log/syslog (linux-386-cgo), const LOG_NEWS = 56 +pkg log/syslog (linux-386-cgo), const LOG_NEWS Priority +pkg log/syslog (linux-386-cgo), const LOG_NOTICE = 5 +pkg log/syslog (linux-386-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (linux-386-cgo), const LOG_SYSLOG Priority +pkg log/syslog (linux-386-cgo), const LOG_USER = 8 +pkg log/syslog (linux-386-cgo), const LOG_USER Priority +pkg log/syslog (linux-386-cgo), const LOG_UUCP = 64 +pkg log/syslog (linux-386-cgo), const LOG_UUCP Priority +pkg log/syslog (linux-386-cgo), const LOG_WARNING = 4 +pkg log/syslog (linux-amd64), const LOG_ALERT = 1 +pkg log/syslog (linux-amd64), const LOG_AUTH = 32 +pkg log/syslog (linux-amd64), const LOG_AUTH Priority +pkg log/syslog (linux-amd64), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-amd64), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-amd64), const LOG_CRIT = 2 +pkg log/syslog (linux-amd64), const LOG_CRON = 72 +pkg log/syslog (linux-amd64), const LOG_CRON Priority +pkg log/syslog (linux-amd64), const LOG_DAEMON = 24 +pkg log/syslog (linux-amd64), const LOG_DAEMON Priority +pkg log/syslog (linux-amd64), const LOG_DEBUG = 7 +pkg log/syslog (linux-amd64), const LOG_EMERG = 0 +pkg log/syslog (linux-amd64), const LOG_ERR = 3 +pkg log/syslog (linux-amd64), const LOG_FTP = 88 +pkg log/syslog (linux-amd64), const LOG_FTP Priority +pkg log/syslog (linux-amd64), const LOG_INFO = 6 +pkg log/syslog (linux-amd64), const LOG_KERN = 0 +pkg log/syslog (linux-amd64), const LOG_KERN Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-amd64), const LOG_LOCAL0 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-amd64), const LOG_LOCAL1 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-amd64), const LOG_LOCAL2 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-amd64), const LOG_LOCAL3 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-amd64), const LOG_LOCAL4 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-amd64), const LOG_LOCAL5 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-amd64), const LOG_LOCAL6 Priority +pkg log/syslog (linux-amd64), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-amd64), const LOG_LOCAL7 Priority +pkg log/syslog (linux-amd64), const LOG_LPR = 48 +pkg log/syslog (linux-amd64), const LOG_LPR Priority +pkg log/syslog (linux-amd64), const LOG_MAIL = 16 +pkg log/syslog (linux-amd64), const LOG_MAIL Priority +pkg log/syslog (linux-amd64), const LOG_NEWS = 56 +pkg log/syslog (linux-amd64), const LOG_NEWS Priority +pkg log/syslog (linux-amd64), const LOG_NOTICE = 5 +pkg log/syslog (linux-amd64), const LOG_SYSLOG = 40 +pkg log/syslog (linux-amd64), const LOG_SYSLOG Priority +pkg log/syslog (linux-amd64), const LOG_USER = 8 +pkg log/syslog (linux-amd64), const LOG_USER Priority +pkg log/syslog (linux-amd64), const LOG_UUCP = 64 +pkg log/syslog (linux-amd64), const LOG_UUCP Priority +pkg log/syslog (linux-amd64), const LOG_WARNING = 4 +pkg log/syslog (linux-amd64-cgo), const LOG_ALERT = 1 +pkg log/syslog (linux-amd64-cgo), const LOG_AUTH = 32 +pkg log/syslog (linux-amd64-cgo), const LOG_AUTH Priority +pkg log/syslog (linux-amd64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-amd64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-amd64-cgo), const LOG_CRIT = 2 +pkg log/syslog (linux-amd64-cgo), const LOG_CRON = 72 +pkg log/syslog (linux-amd64-cgo), const LOG_CRON Priority +pkg log/syslog (linux-amd64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (linux-amd64-cgo), const LOG_DAEMON Priority +pkg log/syslog (linux-amd64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (linux-amd64-cgo), const LOG_EMERG = 0 +pkg log/syslog (linux-amd64-cgo), const LOG_ERR = 3 +pkg log/syslog (linux-amd64-cgo), const LOG_FTP = 88 +pkg log/syslog (linux-amd64-cgo), const LOG_FTP Priority +pkg log/syslog (linux-amd64-cgo), const LOG_INFO = 6 +pkg log/syslog (linux-amd64-cgo), const LOG_KERN = 0 +pkg log/syslog (linux-amd64-cgo), const LOG_KERN Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-amd64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (linux-amd64-cgo), const LOG_LPR = 48 +pkg log/syslog (linux-amd64-cgo), const LOG_LPR Priority +pkg log/syslog (linux-amd64-cgo), const LOG_MAIL = 16 +pkg log/syslog (linux-amd64-cgo), const LOG_MAIL Priority +pkg log/syslog (linux-amd64-cgo), const LOG_NEWS = 56 +pkg log/syslog (linux-amd64-cgo), const LOG_NEWS Priority +pkg log/syslog (linux-amd64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (linux-amd64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (linux-amd64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (linux-amd64-cgo), const LOG_USER = 8 +pkg log/syslog (linux-amd64-cgo), const LOG_USER Priority +pkg log/syslog (linux-amd64-cgo), const LOG_UUCP = 64 +pkg log/syslog (linux-amd64-cgo), const LOG_UUCP Priority +pkg log/syslog (linux-amd64-cgo), const LOG_WARNING = 4 +pkg log/syslog (linux-arm), const LOG_ALERT = 1 +pkg log/syslog (linux-arm), const LOG_AUTH = 32 +pkg log/syslog (linux-arm), const LOG_AUTH Priority +pkg log/syslog (linux-arm), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-arm), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-arm), const LOG_CRIT = 2 +pkg log/syslog (linux-arm), const LOG_CRON = 72 +pkg log/syslog (linux-arm), const LOG_CRON Priority +pkg log/syslog (linux-arm), const LOG_DAEMON = 24 +pkg log/syslog (linux-arm), const LOG_DAEMON Priority +pkg log/syslog (linux-arm), const LOG_DEBUG = 7 +pkg log/syslog (linux-arm), const LOG_EMERG = 0 +pkg log/syslog (linux-arm), const LOG_ERR = 3 +pkg log/syslog (linux-arm), const LOG_FTP = 88 +pkg log/syslog (linux-arm), const LOG_FTP Priority +pkg log/syslog (linux-arm), const LOG_INFO = 6 +pkg log/syslog (linux-arm), const LOG_KERN = 0 +pkg log/syslog (linux-arm), const LOG_KERN Priority +pkg log/syslog (linux-arm), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-arm), const LOG_LOCAL0 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-arm), const LOG_LOCAL1 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-arm), const LOG_LOCAL2 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-arm), const LOG_LOCAL3 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-arm), const LOG_LOCAL4 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-arm), const LOG_LOCAL5 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-arm), const LOG_LOCAL6 Priority +pkg log/syslog (linux-arm), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-arm), const LOG_LOCAL7 Priority +pkg log/syslog (linux-arm), const LOG_LPR = 48 +pkg log/syslog (linux-arm), const LOG_LPR Priority +pkg log/syslog (linux-arm), const LOG_MAIL = 16 +pkg log/syslog (linux-arm), const LOG_MAIL Priority +pkg log/syslog (linux-arm), const LOG_NEWS = 56 +pkg log/syslog (linux-arm), const LOG_NEWS Priority +pkg log/syslog (linux-arm), const LOG_NOTICE = 5 +pkg log/syslog (linux-arm), const LOG_SYSLOG = 40 +pkg log/syslog (linux-arm), const LOG_SYSLOG Priority +pkg log/syslog (linux-arm), const LOG_USER = 8 +pkg log/syslog (linux-arm), const LOG_USER Priority +pkg log/syslog (linux-arm), const LOG_UUCP = 64 +pkg log/syslog (linux-arm), const LOG_UUCP Priority +pkg log/syslog (linux-arm), const LOG_WARNING = 4 +pkg log/syslog (linux-arm-cgo), const LOG_ALERT = 1 +pkg log/syslog (linux-arm-cgo), const LOG_AUTH = 32 +pkg log/syslog (linux-arm-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (linux-arm-cgo), const LOG_CRIT = 2 +pkg log/syslog (linux-arm-cgo), const LOG_CRON = 72 +pkg log/syslog (linux-arm-cgo), const LOG_DAEMON = 24 +pkg log/syslog (linux-arm-cgo), const LOG_DEBUG = 7 +pkg log/syslog (linux-arm-cgo), const LOG_EMERG = 0 +pkg log/syslog (linux-arm-cgo), const LOG_ERR = 3 +pkg log/syslog (linux-arm-cgo), const LOG_FTP = 88 +pkg log/syslog (linux-arm-cgo), const LOG_INFO = 6 +pkg log/syslog (linux-arm-cgo), const LOG_KERN = 0 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (linux-arm-cgo), const LOG_LPR = 48 +pkg log/syslog (linux-arm-cgo), const LOG_MAIL = 16 +pkg log/syslog (linux-arm-cgo), const LOG_NEWS = 56 +pkg log/syslog (linux-arm-cgo), const LOG_NOTICE = 5 +pkg log/syslog (linux-arm-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (linux-arm-cgo), const LOG_USER = 8 +pkg log/syslog (linux-arm-cgo), const LOG_UUCP = 64 +pkg log/syslog (linux-arm-cgo), const LOG_WARNING = 4 +pkg log/syslog (netbsd-386), const LOG_ALERT = 1 +pkg log/syslog (netbsd-386), const LOG_AUTH = 32 +pkg log/syslog (netbsd-386), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-386), const LOG_CRIT = 2 +pkg log/syslog (netbsd-386), const LOG_CRON = 72 +pkg log/syslog (netbsd-386), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-386), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-386), const LOG_EMERG = 0 +pkg log/syslog (netbsd-386), const LOG_ERR = 3 +pkg log/syslog (netbsd-386), const LOG_FTP = 88 +pkg log/syslog (netbsd-386), const LOG_INFO = 6 +pkg log/syslog (netbsd-386), const LOG_KERN = 0 +pkg log/syslog (netbsd-386), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-386), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-386), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-386), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-386), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-386), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-386), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-386), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-386), const LOG_LPR = 48 +pkg log/syslog (netbsd-386), const LOG_MAIL = 16 +pkg log/syslog (netbsd-386), const LOG_NEWS = 56 +pkg log/syslog (netbsd-386), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-386), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-386), const LOG_USER = 8 +pkg log/syslog (netbsd-386), const LOG_UUCP = 64 +pkg log/syslog (netbsd-386), const LOG_WARNING = 4 +pkg log/syslog (netbsd-386-cgo), const LOG_ALERT = 1 +pkg log/syslog (netbsd-386-cgo), const LOG_AUTH = 32 +pkg log/syslog (netbsd-386-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-386-cgo), const LOG_CRIT = 2 +pkg log/syslog (netbsd-386-cgo), const LOG_CRON = 72 +pkg log/syslog (netbsd-386-cgo), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-386-cgo), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-386-cgo), const LOG_EMERG = 0 +pkg log/syslog (netbsd-386-cgo), const LOG_ERR = 3 +pkg log/syslog (netbsd-386-cgo), const LOG_FTP = 88 +pkg log/syslog (netbsd-386-cgo), const LOG_INFO = 6 +pkg log/syslog (netbsd-386-cgo), const LOG_KERN = 0 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-386-cgo), const LOG_LPR = 48 +pkg log/syslog (netbsd-386-cgo), const LOG_MAIL = 16 +pkg log/syslog (netbsd-386-cgo), const LOG_NEWS = 56 +pkg log/syslog (netbsd-386-cgo), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-386-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-386-cgo), const LOG_USER = 8 +pkg log/syslog (netbsd-386-cgo), const LOG_UUCP = 64 +pkg log/syslog (netbsd-386-cgo), const LOG_WARNING = 4 +pkg log/syslog (netbsd-amd64), const LOG_ALERT = 1 +pkg log/syslog (netbsd-amd64), const LOG_AUTH = 32 +pkg log/syslog (netbsd-amd64), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-amd64), const LOG_CRIT = 2 +pkg log/syslog (netbsd-amd64), const LOG_CRON = 72 +pkg log/syslog (netbsd-amd64), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-amd64), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-amd64), const LOG_EMERG = 0 +pkg log/syslog (netbsd-amd64), const LOG_ERR = 3 +pkg log/syslog (netbsd-amd64), const LOG_FTP = 88 +pkg log/syslog (netbsd-amd64), const LOG_INFO = 6 +pkg log/syslog (netbsd-amd64), const LOG_KERN = 0 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-amd64), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-amd64), const LOG_LPR = 48 +pkg log/syslog (netbsd-amd64), const LOG_MAIL = 16 +pkg log/syslog (netbsd-amd64), const LOG_NEWS = 56 +pkg log/syslog (netbsd-amd64), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-amd64), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-amd64), const LOG_USER = 8 +pkg log/syslog (netbsd-amd64), const LOG_UUCP = 64 +pkg log/syslog (netbsd-amd64), const LOG_WARNING = 4 +pkg log/syslog (netbsd-amd64-cgo), const LOG_ALERT = 1 +pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTH = 32 +pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-amd64-cgo), const LOG_CRIT = 2 +pkg log/syslog (netbsd-amd64-cgo), const LOG_CRON = 72 +pkg log/syslog (netbsd-amd64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-amd64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-amd64-cgo), const LOG_EMERG = 0 +pkg log/syslog (netbsd-amd64-cgo), const LOG_ERR = 3 +pkg log/syslog (netbsd-amd64-cgo), const LOG_FTP = 88 +pkg log/syslog (netbsd-amd64-cgo), const LOG_INFO = 6 +pkg log/syslog (netbsd-amd64-cgo), const LOG_KERN = 0 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-amd64-cgo), const LOG_LPR = 48 +pkg log/syslog (netbsd-amd64-cgo), const LOG_MAIL = 16 +pkg log/syslog (netbsd-amd64-cgo), const LOG_NEWS = 56 +pkg log/syslog (netbsd-amd64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-amd64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-amd64-cgo), const LOG_USER = 8 +pkg log/syslog (netbsd-amd64-cgo), const LOG_UUCP = 64 +pkg log/syslog (netbsd-amd64-cgo), const LOG_WARNING = 4 +pkg log/syslog (netbsd-arm), const LOG_ALERT = 1 +pkg log/syslog (netbsd-arm), const LOG_AUTH = 32 +pkg log/syslog (netbsd-arm), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-arm), const LOG_CRIT = 2 +pkg log/syslog (netbsd-arm), const LOG_CRON = 72 +pkg log/syslog (netbsd-arm), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-arm), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-arm), const LOG_EMERG = 0 +pkg log/syslog (netbsd-arm), const LOG_ERR = 3 +pkg log/syslog (netbsd-arm), const LOG_FTP = 88 +pkg log/syslog (netbsd-arm), const LOG_INFO = 6 +pkg log/syslog (netbsd-arm), const LOG_KERN = 0 +pkg log/syslog (netbsd-arm), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-arm), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-arm), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-arm), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-arm), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-arm), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-arm), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-arm), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-arm), const LOG_LPR = 48 +pkg log/syslog (netbsd-arm), const LOG_MAIL = 16 +pkg log/syslog (netbsd-arm), const LOG_NEWS = 56 +pkg log/syslog (netbsd-arm), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-arm), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-arm), const LOG_USER = 8 +pkg log/syslog (netbsd-arm), const LOG_UUCP = 64 +pkg log/syslog (netbsd-arm), const LOG_WARNING = 4 +pkg log/syslog (netbsd-arm-cgo), const LOG_ALERT = 1 +pkg log/syslog (netbsd-arm-cgo), const LOG_AUTH = 32 +pkg log/syslog (netbsd-arm-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-arm-cgo), const LOG_CRIT = 2 +pkg log/syslog (netbsd-arm-cgo), const LOG_CRON = 72 +pkg log/syslog (netbsd-arm-cgo), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-arm-cgo), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-arm-cgo), const LOG_EMERG = 0 +pkg log/syslog (netbsd-arm-cgo), const LOG_ERR = 3 +pkg log/syslog (netbsd-arm-cgo), const LOG_FTP = 88 +pkg log/syslog (netbsd-arm-cgo), const LOG_INFO = 6 +pkg log/syslog (netbsd-arm-cgo), const LOG_KERN = 0 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-arm-cgo), const LOG_LPR = 48 +pkg log/syslog (netbsd-arm-cgo), const LOG_MAIL = 16 +pkg log/syslog (netbsd-arm-cgo), const LOG_NEWS = 56 +pkg log/syslog (netbsd-arm-cgo), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-arm-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-arm-cgo), const LOG_USER = 8 +pkg log/syslog (netbsd-arm-cgo), const LOG_UUCP = 64 +pkg log/syslog (netbsd-arm-cgo), const LOG_WARNING = 4 +pkg log/syslog (openbsd-386), const LOG_ALERT = 1 +pkg log/syslog (openbsd-386), const LOG_AUTH = 32 +pkg log/syslog (openbsd-386), const LOG_AUTHPRIV = 80 +pkg log/syslog (openbsd-386), const LOG_CRIT = 2 +pkg log/syslog (openbsd-386), const LOG_CRON = 72 +pkg log/syslog (openbsd-386), const LOG_DAEMON = 24 +pkg log/syslog (openbsd-386), const LOG_DEBUG = 7 +pkg log/syslog (openbsd-386), const LOG_EMERG = 0 +pkg log/syslog (openbsd-386), const LOG_ERR = 3 +pkg log/syslog (openbsd-386), const LOG_FTP = 88 +pkg log/syslog (openbsd-386), const LOG_INFO = 6 +pkg log/syslog (openbsd-386), const LOG_KERN = 0 +pkg log/syslog (openbsd-386), const LOG_LOCAL0 = 128 +pkg log/syslog (openbsd-386), const LOG_LOCAL1 = 136 +pkg log/syslog (openbsd-386), const LOG_LOCAL2 = 144 +pkg log/syslog (openbsd-386), const LOG_LOCAL3 = 152 +pkg log/syslog (openbsd-386), const LOG_LOCAL4 = 160 +pkg log/syslog (openbsd-386), const LOG_LOCAL5 = 168 +pkg log/syslog (openbsd-386), const LOG_LOCAL6 = 176 +pkg log/syslog (openbsd-386), const LOG_LOCAL7 = 184 +pkg log/syslog (openbsd-386), const LOG_LPR = 48 +pkg log/syslog (openbsd-386), const LOG_MAIL = 16 +pkg log/syslog (openbsd-386), const LOG_NEWS = 56 +pkg log/syslog (openbsd-386), const LOG_NOTICE = 5 +pkg log/syslog (openbsd-386), const LOG_SYSLOG = 40 +pkg log/syslog (openbsd-386), const LOG_USER = 8 +pkg log/syslog (openbsd-386), const LOG_UUCP = 64 +pkg log/syslog (openbsd-386), const LOG_WARNING = 4 +pkg log/syslog (openbsd-386-cgo), const LOG_ALERT = 1 +pkg log/syslog (openbsd-386-cgo), const LOG_AUTH = 32 +pkg log/syslog (openbsd-386-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (openbsd-386-cgo), const LOG_CRIT = 2 +pkg log/syslog (openbsd-386-cgo), const LOG_CRON = 72 +pkg log/syslog (openbsd-386-cgo), const LOG_DAEMON = 24 +pkg log/syslog (openbsd-386-cgo), const LOG_DEBUG = 7 +pkg log/syslog (openbsd-386-cgo), const LOG_EMERG = 0 +pkg log/syslog (openbsd-386-cgo), const LOG_ERR = 3 +pkg log/syslog (openbsd-386-cgo), const LOG_FTP = 88 +pkg log/syslog (openbsd-386-cgo), const LOG_INFO = 6 +pkg log/syslog (openbsd-386-cgo), const LOG_KERN = 0 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (openbsd-386-cgo), const LOG_LPR = 48 +pkg log/syslog (openbsd-386-cgo), const LOG_MAIL = 16 +pkg log/syslog (openbsd-386-cgo), const LOG_NEWS = 56 +pkg log/syslog (openbsd-386-cgo), const LOG_NOTICE = 5 +pkg log/syslog (openbsd-386-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (openbsd-386-cgo), const LOG_USER = 8 +pkg log/syslog (openbsd-386-cgo), const LOG_UUCP = 64 +pkg log/syslog (openbsd-386-cgo), const LOG_WARNING = 4 +pkg log/syslog (openbsd-amd64), const LOG_ALERT = 1 +pkg log/syslog (openbsd-amd64), const LOG_AUTH = 32 +pkg log/syslog (openbsd-amd64), const LOG_AUTHPRIV = 80 +pkg log/syslog (openbsd-amd64), const LOG_CRIT = 2 +pkg log/syslog (openbsd-amd64), const LOG_CRON = 72 +pkg log/syslog (openbsd-amd64), const LOG_DAEMON = 24 +pkg log/syslog (openbsd-amd64), const LOG_DEBUG = 7 +pkg log/syslog (openbsd-amd64), const LOG_EMERG = 0 +pkg log/syslog (openbsd-amd64), const LOG_ERR = 3 +pkg log/syslog (openbsd-amd64), const LOG_FTP = 88 +pkg log/syslog (openbsd-amd64), const LOG_INFO = 6 +pkg log/syslog (openbsd-amd64), const LOG_KERN = 0 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL0 = 128 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL1 = 136 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL2 = 144 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL3 = 152 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL4 = 160 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL5 = 168 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL6 = 176 +pkg log/syslog (openbsd-amd64), const LOG_LOCAL7 = 184 +pkg log/syslog (openbsd-amd64), const LOG_LPR = 48 +pkg log/syslog (openbsd-amd64), const LOG_MAIL = 16 +pkg log/syslog (openbsd-amd64), const LOG_NEWS = 56 +pkg log/syslog (openbsd-amd64), const LOG_NOTICE = 5 +pkg log/syslog (openbsd-amd64), const LOG_SYSLOG = 40 +pkg log/syslog (openbsd-amd64), const LOG_USER = 8 +pkg log/syslog (openbsd-amd64), const LOG_UUCP = 64 +pkg log/syslog (openbsd-amd64), const LOG_WARNING = 4 +pkg log/syslog (openbsd-amd64-cgo), const LOG_ALERT = 1 +pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTH = 32 +pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (openbsd-amd64-cgo), const LOG_CRIT = 2 +pkg log/syslog (openbsd-amd64-cgo), const LOG_CRON = 72 +pkg log/syslog (openbsd-amd64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (openbsd-amd64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (openbsd-amd64-cgo), const LOG_EMERG = 0 +pkg log/syslog (openbsd-amd64-cgo), const LOG_ERR = 3 +pkg log/syslog (openbsd-amd64-cgo), const LOG_FTP = 88 +pkg log/syslog (openbsd-amd64-cgo), const LOG_INFO = 6 +pkg log/syslog (openbsd-amd64-cgo), const LOG_KERN = 0 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (openbsd-amd64-cgo), const LOG_LPR = 48 +pkg log/syslog (openbsd-amd64-cgo), const LOG_MAIL = 16 +pkg log/syslog (openbsd-amd64-cgo), const LOG_NEWS = 56 +pkg log/syslog (openbsd-amd64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (openbsd-amd64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (openbsd-amd64-cgo), const LOG_USER = 8 +pkg log/syslog (openbsd-amd64-cgo), const LOG_UUCP = 64 +pkg log/syslog (openbsd-amd64-cgo), const LOG_WARNING = 4 +pkg math, const E = 2.71828 // 271828182845904523536028747135266249775724709369995957496696763/100000000000000000000000000000000000000000000000000000000000000 +pkg math, const Ln10 = 2.30259 // 23025850929940456840179914546843642076011014886287729760333279/10000000000000000000000000000000000000000000000000000000000000 +pkg math, const Ln2 = 0.693147 // 693147180559945309417232121458176568075500134360255254120680009/1000000000000000000000000000000000000000000000000000000000000000 +pkg math, const Log10E = 0.434294 // 10000000000000000000000000000000000000000000000000000000000000/23025850929940456840179914546843642076011014886287729760333279 +pkg math, const Log2E = 1.4427 // 1000000000000000000000000000000000000000000000000000000000000000/693147180559945309417232121458176568075500134360255254120680009 +pkg math, const MaxFloat32 = 3.40282e+38 // 340282346638528859811704183484516925440 +pkg math, const MaxFloat64 = 1.79769e+308 // 179769313486231570814527423731704356798100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math, const MaxInt16 = 32767 +pkg math, const MaxInt32 = 2147483647 +pkg math, const MaxInt64 = 9223372036854775807 +pkg math, const MaxInt8 = 127 +pkg math, const MaxUint16 = 65535 +pkg math, const MaxUint32 = 4294967295 +pkg math, const MaxUint64 = 18446744073709551615 +pkg math, const MaxUint8 = 255 +pkg math, const MinInt16 = -32768 +pkg math, const MinInt32 = -2147483648 +pkg math, const MinInt64 = -9223372036854775808 +pkg math, const MinInt8 = -128 +pkg math, const Phi = 1.61803 // 80901699437494742410229341718281905886015458990288143106772431/50000000000000000000000000000000000000000000000000000000000000 +pkg math, const Pi = 3.14159 // 314159265358979323846264338327950288419716939937510582097494459/100000000000000000000000000000000000000000000000000000000000000 +pkg math, const SmallestNonzeroFloat32 = 1.4013e-45 // 17516230804060213386546619791123951641/12500000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math, const SmallestNonzeroFloat64 = 4.94066e-324 // 4940656458412465441765687928682213723651/1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +pkg math, const Sqrt2 = 1.41421 // 70710678118654752440084436210484903928483593768847403658833987/50000000000000000000000000000000000000000000000000000000000000 +pkg math, const SqrtE = 1.64872 // 164872127070012814684865078781416357165377610071014801157507931/100000000000000000000000000000000000000000000000000000000000000 +pkg math, const SqrtPhi = 1.27202 // 63600982475703448212621123086874574585780402092004812430832019/50000000000000000000000000000000000000000000000000000000000000 +pkg math, const SqrtPi = 1.77245 // 177245385090551602729816748334114518279754945612238712821380779/100000000000000000000000000000000000000000000000000000000000000 +pkg math/big, const MaxBase = 36 +pkg math/big, method (*Int) MarshalJSON() ([]uint8, error) +pkg math/big, method (*Int) SetUint64(uint64) *Int +pkg math/big, method (*Int) Uint64() uint64 +pkg math/big, method (*Int) UnmarshalJSON([]uint8) error +pkg math/big, method (*Rat) Float64() (float64, bool) +pkg math/big, method (*Rat) SetFloat64(float64) *Rat +pkg mime/multipart, method (*Writer) SetBoundary(string) error +pkg net, const FlagBroadcast = 2 +pkg net, const FlagLoopback = 4 +pkg net, const FlagMulticast = 16 +pkg net, const FlagPointToPoint = 8 +pkg net, const FlagUp = 1 +pkg net, const IPv4len = 4 +pkg net, const IPv6len = 16 +pkg net, func ListenUnixgram(string, *UnixAddr) (*UnixConn, error) +pkg net, func LookupNS(string) ([]*NS, error) +pkg net, method (*Dialer) Dial(string, string) (Conn, error) +pkg net, method (*IPConn) ReadMsgIP([]uint8, []uint8) (int, int, int, *IPAddr, error) +pkg net, method (*IPConn) WriteMsgIP([]uint8, []uint8, *IPAddr) (int, int, error) +pkg net, method (*UDPConn) ReadMsgUDP([]uint8, []uint8) (int, int, int, *UDPAddr, error) +pkg net, method (*UDPConn) WriteMsgUDP([]uint8, []uint8, *UDPAddr) (int, int, error) +pkg net, method (*UnixConn) CloseRead() error +pkg net, method (*UnixConn) CloseWrite() error +pkg net, type Dialer struct +pkg net, type Dialer struct, Deadline time.Time +pkg net, type Dialer struct, LocalAddr Addr +pkg net, type Dialer struct, Timeout time.Duration +pkg net, type IPAddr struct, Zone string +pkg net, type NS struct +pkg net, type NS struct, Host string +pkg net, type TCPAddr struct, Zone string +pkg net, type UDPAddr struct, Zone string +pkg net/http, const DefaultMaxHeaderBytes = 1048576 +pkg net/http, const DefaultMaxIdleConnsPerHost = 2 +pkg net/http, const StatusAccepted = 202 +pkg net/http, const StatusBadGateway = 502 +pkg net/http, const StatusBadRequest = 400 +pkg net/http, const StatusConflict = 409 +pkg net/http, const StatusContinue = 100 +pkg net/http, const StatusCreated = 201 +pkg net/http, const StatusExpectationFailed = 417 +pkg net/http, const StatusForbidden = 403 +pkg net/http, const StatusFound = 302 +pkg net/http, const StatusGatewayTimeout = 504 +pkg net/http, const StatusGone = 410 +pkg net/http, const StatusHTTPVersionNotSupported = 505 +pkg net/http, const StatusInternalServerError = 500 +pkg net/http, const StatusLengthRequired = 411 +pkg net/http, const StatusMethodNotAllowed = 405 +pkg net/http, const StatusMovedPermanently = 301 +pkg net/http, const StatusMultipleChoices = 300 +pkg net/http, const StatusNoContent = 204 +pkg net/http, const StatusNonAuthoritativeInfo = 203 +pkg net/http, const StatusNotAcceptable = 406 +pkg net/http, const StatusNotFound = 404 +pkg net/http, const StatusNotImplemented = 501 +pkg net/http, const StatusNotModified = 304 +pkg net/http, const StatusOK = 200 +pkg net/http, const StatusPartialContent = 206 +pkg net/http, const StatusPaymentRequired = 402 +pkg net/http, const StatusPreconditionFailed = 412 +pkg net/http, const StatusProxyAuthRequired = 407 +pkg net/http, const StatusRequestEntityTooLarge = 413 +pkg net/http, const StatusRequestTimeout = 408 +pkg net/http, const StatusRequestURITooLong = 414 +pkg net/http, const StatusRequestedRangeNotSatisfiable = 416 +pkg net/http, const StatusResetContent = 205 +pkg net/http, const StatusSeeOther = 303 +pkg net/http, const StatusServiceUnavailable = 503 +pkg net/http, const StatusSwitchingProtocols = 101 +pkg net/http, const StatusTeapot = 418 +pkg net/http, const StatusTemporaryRedirect = 307 +pkg net/http, const StatusUnauthorized = 401 +pkg net/http, const StatusUnsupportedMediaType = 415 +pkg net/http, const StatusUseProxy = 305 +pkg net/http, const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT" +pkg net/http, func ParseTime(string) (time.Time, error) +pkg net/http, method (*Request) PostFormValue(string) string +pkg net/http, method (*ServeMux) Handler(*Request) (Handler, string) +pkg net/http, method (*Transport) CancelRequest(*Request) +pkg net/http, type CloseNotifier interface { CloseNotify } +pkg net/http, type CloseNotifier interface, CloseNotify() <-chan bool +pkg net/http, type Request struct, PostForm url.Values +pkg net/http, type Server struct, TLSNextProto map[string]func(*Server, *tls.Conn, Handler) +pkg net/http, type Transport struct, ResponseHeaderTimeout time.Duration +pkg net/http/cookiejar, func New(*Options) (*Jar, error) +pkg net/http/cookiejar, method (*Jar) Cookies(*url.URL) []*http.Cookie +pkg net/http/cookiejar, method (*Jar) SetCookies(*url.URL, []*http.Cookie) +pkg net/http/cookiejar, type Jar struct +pkg net/http/cookiejar, type Options struct +pkg net/http/cookiejar, type Options struct, PublicSuffixList PublicSuffixList +pkg net/http/cookiejar, type PublicSuffixList interface { PublicSuffix, String } +pkg net/http/cookiejar, type PublicSuffixList interface, PublicSuffix(string) string +pkg net/http/cookiejar, type PublicSuffixList interface, String() string +pkg net/http/httptest, const DefaultRemoteAddr = "1.2.3.4" +pkg net/mail, func ParseAddress(string) (*Address, error) +pkg net/mail, func ParseAddressList(string) ([]*Address, error) +pkg net/rpc, const DefaultDebugPath = "/debug/rpc" +pkg net/rpc, const DefaultRPCPath = "/_goRPC_" +pkg net/smtp, method (*Client) Hello(string) error +pkg net/textproto, func TrimBytes([]uint8) []uint8 +pkg net/textproto, func TrimString(string) string +pkg os (darwin-386), const DevNull = "/dev/null" +pkg os (darwin-386), const O_APPEND = 8 +pkg os (darwin-386), const O_CREATE = 512 +pkg os (darwin-386), const O_EXCL = 2048 +pkg os (darwin-386), const O_SYNC = 128 +pkg os (darwin-386), const O_TRUNC = 1024 +pkg os (darwin-386), const PathListSeparator = 58 +pkg os (darwin-386), const PathSeparator = 47 +pkg os (darwin-386-cgo), const DevNull = "/dev/null" +pkg os (darwin-386-cgo), const O_APPEND = 8 +pkg os (darwin-386-cgo), const O_CREATE = 512 +pkg os (darwin-386-cgo), const O_EXCL = 2048 +pkg os (darwin-386-cgo), const O_SYNC = 128 +pkg os (darwin-386-cgo), const O_TRUNC = 1024 +pkg os (darwin-386-cgo), const PathListSeparator = 58 +pkg os (darwin-386-cgo), const PathSeparator = 47 +pkg os (darwin-amd64), const DevNull = "/dev/null" +pkg os (darwin-amd64), const O_APPEND = 8 +pkg os (darwin-amd64), const O_CREATE = 512 +pkg os (darwin-amd64), const O_EXCL = 2048 +pkg os (darwin-amd64), const O_SYNC = 128 +pkg os (darwin-amd64), const O_TRUNC = 1024 +pkg os (darwin-amd64), const PathListSeparator = 58 +pkg os (darwin-amd64), const PathSeparator = 47 +pkg os (darwin-amd64-cgo), const DevNull = "/dev/null" +pkg os (darwin-amd64-cgo), const O_APPEND = 8 +pkg os (darwin-amd64-cgo), const O_CREATE = 512 +pkg os (darwin-amd64-cgo), const O_EXCL = 2048 +pkg os (darwin-amd64-cgo), const O_SYNC = 128 +pkg os (darwin-amd64-cgo), const O_TRUNC = 1024 +pkg os (darwin-amd64-cgo), const PathListSeparator = 58 +pkg os (darwin-amd64-cgo), const PathSeparator = 47 +pkg os (freebsd-386), const DevNull = "/dev/null" +pkg os (freebsd-386), const O_APPEND = 8 +pkg os (freebsd-386), const O_CREATE = 512 +pkg os (freebsd-386), const O_EXCL = 2048 +pkg os (freebsd-386), const O_SYNC = 128 +pkg os (freebsd-386), const O_TRUNC = 1024 +pkg os (freebsd-386), const PathListSeparator = 58 +pkg os (freebsd-386), const PathSeparator = 47 +pkg os (freebsd-386-cgo), const DevNull = "/dev/null" +pkg os (freebsd-386-cgo), const O_APPEND = 8 +pkg os (freebsd-386-cgo), const O_CREATE = 512 +pkg os (freebsd-386-cgo), const O_EXCL = 2048 +pkg os (freebsd-386-cgo), const O_SYNC = 128 +pkg os (freebsd-386-cgo), const O_TRUNC = 1024 +pkg os (freebsd-386-cgo), const PathListSeparator = 58 +pkg os (freebsd-386-cgo), const PathSeparator = 47 +pkg os (freebsd-amd64), const DevNull = "/dev/null" +pkg os (freebsd-amd64), const O_APPEND = 8 +pkg os (freebsd-amd64), const O_CREATE = 512 +pkg os (freebsd-amd64), const O_EXCL = 2048 +pkg os (freebsd-amd64), const O_SYNC = 128 +pkg os (freebsd-amd64), const O_TRUNC = 1024 +pkg os (freebsd-amd64), const PathListSeparator = 58 +pkg os (freebsd-amd64), const PathSeparator = 47 +pkg os (freebsd-amd64-cgo), const DevNull = "/dev/null" +pkg os (freebsd-amd64-cgo), const O_APPEND = 8 +pkg os (freebsd-amd64-cgo), const O_CREATE = 512 +pkg os (freebsd-amd64-cgo), const O_EXCL = 2048 +pkg os (freebsd-amd64-cgo), const O_SYNC = 128 +pkg os (freebsd-amd64-cgo), const O_TRUNC = 1024 +pkg os (freebsd-amd64-cgo), const PathListSeparator = 58 +pkg os (freebsd-amd64-cgo), const PathSeparator = 47 +pkg os (freebsd-arm), const DevNull = "/dev/null" +pkg os (freebsd-arm), const O_APPEND = 8 +pkg os (freebsd-arm), const O_CREATE = 512 +pkg os (freebsd-arm), const O_EXCL = 2048 +pkg os (freebsd-arm), const O_SYNC = 128 +pkg os (freebsd-arm), const O_TRUNC = 1024 +pkg os (freebsd-arm), const PathListSeparator = 58 +pkg os (freebsd-arm), const PathSeparator = 47 +pkg os (freebsd-arm-cgo), const DevNull = "/dev/null" +pkg os (freebsd-arm-cgo), const O_APPEND = 8 +pkg os (freebsd-arm-cgo), const O_CREATE = 512 +pkg os (freebsd-arm-cgo), const O_EXCL = 2048 +pkg os (freebsd-arm-cgo), const O_SYNC = 128 +pkg os (freebsd-arm-cgo), const O_TRUNC = 1024 +pkg os (freebsd-arm-cgo), const PathListSeparator = 58 +pkg os (freebsd-arm-cgo), const PathSeparator = 47 +pkg os (linux-386), const DevNull = "/dev/null" +pkg os (linux-386), const O_APPEND = 1024 +pkg os (linux-386), const O_CREATE = 64 +pkg os (linux-386), const O_EXCL = 128 +pkg os (linux-386), const O_SYNC = 1052672 +pkg os (linux-386), const O_TRUNC = 512 +pkg os (linux-386), const PathListSeparator = 58 +pkg os (linux-386), const PathSeparator = 47 +pkg os (linux-386-cgo), const DevNull = "/dev/null" +pkg os (linux-386-cgo), const O_APPEND = 1024 +pkg os (linux-386-cgo), const O_CREATE = 64 +pkg os (linux-386-cgo), const O_EXCL = 128 +pkg os (linux-386-cgo), const O_SYNC = 1052672 +pkg os (linux-386-cgo), const O_TRUNC = 512 +pkg os (linux-386-cgo), const PathListSeparator = 58 +pkg os (linux-386-cgo), const PathSeparator = 47 +pkg os (linux-amd64), const DevNull = "/dev/null" +pkg os (linux-amd64), const O_APPEND = 1024 +pkg os (linux-amd64), const O_CREATE = 64 +pkg os (linux-amd64), const O_EXCL = 128 +pkg os (linux-amd64), const O_SYNC = 1052672 +pkg os (linux-amd64), const O_TRUNC = 512 +pkg os (linux-amd64), const PathListSeparator = 58 +pkg os (linux-amd64), const PathSeparator = 47 +pkg os (linux-amd64-cgo), const DevNull = "/dev/null" +pkg os (linux-amd64-cgo), const O_APPEND = 1024 +pkg os (linux-amd64-cgo), const O_CREATE = 64 +pkg os (linux-amd64-cgo), const O_EXCL = 128 +pkg os (linux-amd64-cgo), const O_SYNC = 1052672 +pkg os (linux-amd64-cgo), const O_TRUNC = 512 +pkg os (linux-amd64-cgo), const PathListSeparator = 58 +pkg os (linux-amd64-cgo), const PathSeparator = 47 +pkg os (linux-arm), const DevNull = "/dev/null" +pkg os (linux-arm), const O_APPEND = 1024 +pkg os (linux-arm), const O_CREATE = 64 +pkg os (linux-arm), const O_EXCL = 128 +pkg os (linux-arm), const O_SYNC = 4096 +pkg os (linux-arm), const O_TRUNC = 512 +pkg os (linux-arm), const PathListSeparator = 58 +pkg os (linux-arm), const PathSeparator = 47 +pkg os (linux-arm-cgo), const DevNull = "/dev/null" +pkg os (linux-arm-cgo), const O_APPEND = 1024 +pkg os (linux-arm-cgo), const O_CREATE = 64 +pkg os (linux-arm-cgo), const O_EXCL = 128 +pkg os (linux-arm-cgo), const O_SYNC = 4096 +pkg os (linux-arm-cgo), const O_TRUNC = 512 +pkg os (linux-arm-cgo), const PathListSeparator = 58 +pkg os (linux-arm-cgo), const PathSeparator = 47 +pkg os (netbsd-386), const DevNull = "/dev/null" +pkg os (netbsd-386), const O_APPEND = 8 +pkg os (netbsd-386), const O_CREATE = 512 +pkg os (netbsd-386), const O_EXCL = 2048 +pkg os (netbsd-386), const O_SYNC = 128 +pkg os (netbsd-386), const O_TRUNC = 1024 +pkg os (netbsd-386), const PathListSeparator = 58 +pkg os (netbsd-386), const PathSeparator = 47 +pkg os (netbsd-386-cgo), const DevNull = "/dev/null" +pkg os (netbsd-386-cgo), const O_APPEND = 8 +pkg os (netbsd-386-cgo), const O_CREATE = 512 +pkg os (netbsd-386-cgo), const O_EXCL = 2048 +pkg os (netbsd-386-cgo), const O_SYNC = 128 +pkg os (netbsd-386-cgo), const O_TRUNC = 1024 +pkg os (netbsd-386-cgo), const PathListSeparator = 58 +pkg os (netbsd-386-cgo), const PathSeparator = 47 +pkg os (netbsd-amd64), const DevNull = "/dev/null" +pkg os (netbsd-amd64), const O_APPEND = 8 +pkg os (netbsd-amd64), const O_CREATE = 512 +pkg os (netbsd-amd64), const O_EXCL = 2048 +pkg os (netbsd-amd64), const O_SYNC = 128 +pkg os (netbsd-amd64), const O_TRUNC = 1024 +pkg os (netbsd-amd64), const PathListSeparator = 58 +pkg os (netbsd-amd64), const PathSeparator = 47 +pkg os (netbsd-amd64-cgo), const DevNull = "/dev/null" +pkg os (netbsd-amd64-cgo), const O_APPEND = 8 +pkg os (netbsd-amd64-cgo), const O_CREATE = 512 +pkg os (netbsd-amd64-cgo), const O_EXCL = 2048 +pkg os (netbsd-amd64-cgo), const O_SYNC = 128 +pkg os (netbsd-amd64-cgo), const O_TRUNC = 1024 +pkg os (netbsd-amd64-cgo), const PathListSeparator = 58 +pkg os (netbsd-amd64-cgo), const PathSeparator = 47 +pkg os (netbsd-arm), const DevNull = "/dev/null" +pkg os (netbsd-arm), const O_APPEND = 8 +pkg os (netbsd-arm), const O_CREATE = 512 +pkg os (netbsd-arm), const O_EXCL = 2048 +pkg os (netbsd-arm), const O_SYNC = 128 +pkg os (netbsd-arm), const O_TRUNC = 1024 +pkg os (netbsd-arm), const PathListSeparator = 58 +pkg os (netbsd-arm), const PathSeparator = 47 +pkg os (netbsd-arm-cgo), const DevNull = "/dev/null" +pkg os (netbsd-arm-cgo), const O_APPEND = 8 +pkg os (netbsd-arm-cgo), const O_CREATE = 512 +pkg os (netbsd-arm-cgo), const O_EXCL = 2048 +pkg os (netbsd-arm-cgo), const O_SYNC = 128 +pkg os (netbsd-arm-cgo), const O_TRUNC = 1024 +pkg os (netbsd-arm-cgo), const PathListSeparator = 58 +pkg os (netbsd-arm-cgo), const PathSeparator = 47 +pkg os (openbsd-386), const DevNull = "/dev/null" +pkg os (openbsd-386), const O_APPEND = 8 +pkg os (openbsd-386), const O_CREATE = 512 +pkg os (openbsd-386), const O_EXCL = 2048 +pkg os (openbsd-386), const O_SYNC = 128 +pkg os (openbsd-386), const O_TRUNC = 1024 +pkg os (openbsd-386), const PathListSeparator = 58 +pkg os (openbsd-386), const PathSeparator = 47 +pkg os (openbsd-386-cgo), const DevNull = "/dev/null" +pkg os (openbsd-386-cgo), const O_APPEND = 8 +pkg os (openbsd-386-cgo), const O_CREATE = 512 +pkg os (openbsd-386-cgo), const O_EXCL = 2048 +pkg os (openbsd-386-cgo), const O_SYNC = 128 +pkg os (openbsd-386-cgo), const O_TRUNC = 1024 +pkg os (openbsd-386-cgo), const PathListSeparator = 58 +pkg os (openbsd-386-cgo), const PathSeparator = 47 +pkg os (openbsd-amd64), const DevNull = "/dev/null" +pkg os (openbsd-amd64), const O_APPEND = 8 +pkg os (openbsd-amd64), const O_CREATE = 512 +pkg os (openbsd-amd64), const O_EXCL = 2048 +pkg os (openbsd-amd64), const O_SYNC = 128 +pkg os (openbsd-amd64), const O_TRUNC = 1024 +pkg os (openbsd-amd64), const PathListSeparator = 58 +pkg os (openbsd-amd64), const PathSeparator = 47 +pkg os (openbsd-amd64-cgo), const DevNull = "/dev/null" +pkg os (openbsd-amd64-cgo), const O_APPEND = 8 +pkg os (openbsd-amd64-cgo), const O_CREATE = 512 +pkg os (openbsd-amd64-cgo), const O_EXCL = 2048 +pkg os (openbsd-amd64-cgo), const O_SYNC = 128 +pkg os (openbsd-amd64-cgo), const O_TRUNC = 1024 +pkg os (openbsd-amd64-cgo), const PathListSeparator = 58 +pkg os (openbsd-amd64-cgo), const PathSeparator = 47 +pkg os (windows-386), const DevNull = "NUL" +pkg os (windows-386), const O_APPEND = 1024 +pkg os (windows-386), const O_CREATE = 64 +pkg os (windows-386), const O_EXCL = 128 +pkg os (windows-386), const O_SYNC = 4096 +pkg os (windows-386), const O_TRUNC = 512 +pkg os (windows-386), const PathListSeparator = 59 +pkg os (windows-386), const PathSeparator = 92 +pkg os (windows-amd64), const DevNull = "NUL" +pkg os (windows-amd64), const O_APPEND = 1024 +pkg os (windows-amd64), const O_CREATE = 64 +pkg os (windows-amd64), const O_EXCL = 128 +pkg os (windows-amd64), const O_SYNC = 4096 +pkg os (windows-amd64), const O_TRUNC = 512 +pkg os (windows-amd64), const PathListSeparator = 59 +pkg os (windows-amd64), const PathSeparator = 92 +pkg os, const ModeAppend = 1073741824 +pkg os, const ModeCharDevice = 2097152 +pkg os, const ModeDevice = 67108864 +pkg os, const ModeDir = 2147483648 +pkg os, const ModeExclusive = 536870912 +pkg os, const ModeNamedPipe = 33554432 +pkg os, const ModePerm = 511 +pkg os, const ModeSetgid = 4194304 +pkg os, const ModeSetuid = 8388608 +pkg os, const ModeSocket = 16777216 +pkg os, const ModeSticky = 1048576 +pkg os, const ModeSymlink = 134217728 +pkg os, const ModeTemporary = 268435456 +pkg os, const ModeType = 2399141888 +pkg os, const O_RDONLY = 0 +pkg os, const O_RDWR = 2 +pkg os, const O_WRONLY = 1 +pkg os, const SEEK_CUR = 1 +pkg os, const SEEK_END = 2 +pkg os, const SEEK_SET = 0 +pkg os, method (FileMode) IsRegular() bool +pkg os/signal, func Stop(chan<- os.Signal) +pkg path/filepath (darwin-386), const ListSeparator = 58 +pkg path/filepath (darwin-386), const Separator = 47 +pkg path/filepath (darwin-386-cgo), const ListSeparator = 58 +pkg path/filepath (darwin-386-cgo), const Separator = 47 +pkg path/filepath (darwin-amd64), const ListSeparator = 58 +pkg path/filepath (darwin-amd64), const Separator = 47 +pkg path/filepath (darwin-amd64-cgo), const ListSeparator = 58 +pkg path/filepath (darwin-amd64-cgo), const Separator = 47 +pkg path/filepath (freebsd-386), const ListSeparator = 58 +pkg path/filepath (freebsd-386), const Separator = 47 +pkg path/filepath (freebsd-386-cgo), const ListSeparator = 58 +pkg path/filepath (freebsd-386-cgo), const Separator = 47 +pkg path/filepath (freebsd-amd64), const ListSeparator = 58 +pkg path/filepath (freebsd-amd64), const Separator = 47 +pkg path/filepath (freebsd-amd64-cgo), const ListSeparator = 58 +pkg path/filepath (freebsd-amd64-cgo), const Separator = 47 +pkg path/filepath (freebsd-arm), const ListSeparator = 58 +pkg path/filepath (freebsd-arm), const Separator = 47 +pkg path/filepath (freebsd-arm-cgo), const ListSeparator = 58 +pkg path/filepath (freebsd-arm-cgo), const Separator = 47 +pkg path/filepath (linux-386), const ListSeparator = 58 +pkg path/filepath (linux-386), const Separator = 47 +pkg path/filepath (linux-386-cgo), const ListSeparator = 58 +pkg path/filepath (linux-386-cgo), const Separator = 47 +pkg path/filepath (linux-amd64), const ListSeparator = 58 +pkg path/filepath (linux-amd64), const Separator = 47 +pkg path/filepath (linux-amd64-cgo), const ListSeparator = 58 +pkg path/filepath (linux-amd64-cgo), const Separator = 47 +pkg path/filepath (linux-arm), const ListSeparator = 58 +pkg path/filepath (linux-arm), const Separator = 47 +pkg path/filepath (linux-arm-cgo), const ListSeparator = 58 +pkg path/filepath (linux-arm-cgo), const Separator = 47 +pkg path/filepath (netbsd-386), const ListSeparator = 58 +pkg path/filepath (netbsd-386), const Separator = 47 +pkg path/filepath (netbsd-386-cgo), const ListSeparator = 58 +pkg path/filepath (netbsd-386-cgo), const Separator = 47 +pkg path/filepath (netbsd-amd64), const ListSeparator = 58 +pkg path/filepath (netbsd-amd64), const Separator = 47 +pkg path/filepath (netbsd-amd64-cgo), const ListSeparator = 58 +pkg path/filepath (netbsd-amd64-cgo), const Separator = 47 +pkg path/filepath (netbsd-arm), const ListSeparator = 58 +pkg path/filepath (netbsd-arm), const Separator = 47 +pkg path/filepath (netbsd-arm-cgo), const ListSeparator = 58 +pkg path/filepath (netbsd-arm-cgo), const Separator = 47 +pkg path/filepath (openbsd-386), const ListSeparator = 58 +pkg path/filepath (openbsd-386), const Separator = 47 +pkg path/filepath (openbsd-386-cgo), const ListSeparator = 58 +pkg path/filepath (openbsd-386-cgo), const Separator = 47 +pkg path/filepath (openbsd-amd64), const ListSeparator = 58 +pkg path/filepath (openbsd-amd64), const Separator = 47 +pkg path/filepath (openbsd-amd64-cgo), const ListSeparator = 58 +pkg path/filepath (openbsd-amd64-cgo), const Separator = 47 +pkg path/filepath (windows-386), const ListSeparator = 59 +pkg path/filepath (windows-386), const Separator = 92 +pkg path/filepath (windows-amd64), const ListSeparator = 59 +pkg path/filepath (windows-amd64), const Separator = 92 +pkg reflect, const Array = 17 +pkg reflect, const Bool = 1 +pkg reflect, const BothDir = 3 +pkg reflect, const Chan = 18 +pkg reflect, const Complex128 = 16 +pkg reflect, const Complex64 = 15 +pkg reflect, const Float32 = 13 +pkg reflect, const Float64 = 14 +pkg reflect, const Func = 19 +pkg reflect, const Int = 2 +pkg reflect, const Int16 = 4 +pkg reflect, const Int32 = 5 +pkg reflect, const Int64 = 6 +pkg reflect, const Int8 = 3 +pkg reflect, const Interface = 20 +pkg reflect, const Invalid = 0 +pkg reflect, const Map = 21 +pkg reflect, const Ptr = 22 +pkg reflect, const RecvDir = 1 +pkg reflect, const SelectDefault = 3 +pkg reflect, const SelectDefault SelectDir +pkg reflect, const SelectRecv = 2 +pkg reflect, const SelectRecv SelectDir +pkg reflect, const SelectSend = 1 +pkg reflect, const SelectSend SelectDir +pkg reflect, const SendDir = 2 +pkg reflect, const Slice = 23 +pkg reflect, const String = 24 +pkg reflect, const Struct = 25 +pkg reflect, const Uint = 7 +pkg reflect, const Uint16 = 9 +pkg reflect, const Uint32 = 10 +pkg reflect, const Uint64 = 11 +pkg reflect, const Uint8 = 8 +pkg reflect, const Uintptr = 12 +pkg reflect, const UnsafePointer = 26 +pkg reflect, func ChanOf(ChanDir, Type) Type +pkg reflect, func MakeFunc(Type, func([]Value) []Value) Value +pkg reflect, func MapOf(Type, Type) Type +pkg reflect, func Select([]SelectCase) (int, Value, bool) +pkg reflect, func SliceOf(Type) Type +pkg reflect, method (Value) Convert(Type) Value +pkg reflect, type SelectCase struct +pkg reflect, type SelectCase struct, Chan Value +pkg reflect, type SelectCase struct, Dir SelectDir +pkg reflect, type SelectCase struct, Send Value +pkg reflect, type SelectDir int +pkg reflect, type Type interface, ConvertibleTo(Type) bool +pkg regexp, method (*Regexp) Longest() +pkg regexp, method (*Regexp) Split(string, int) []string +pkg regexp/syntax, const ClassNL = 4 +pkg regexp/syntax, const DotNL = 8 +pkg regexp/syntax, const EmptyBeginLine = 1 +pkg regexp/syntax, const EmptyBeginText = 4 +pkg regexp/syntax, const EmptyEndLine = 2 +pkg regexp/syntax, const EmptyEndText = 8 +pkg regexp/syntax, const EmptyNoWordBoundary = 32 +pkg regexp/syntax, const EmptyWordBoundary = 16 +pkg regexp/syntax, const ErrInternalError = "regexp/syntax: internal error" +pkg regexp/syntax, const ErrInvalidCharClass = "invalid character class" +pkg regexp/syntax, const ErrInvalidCharRange = "invalid character class range" +pkg regexp/syntax, const ErrInvalidEscape = "invalid escape sequence" +pkg regexp/syntax, const ErrInvalidNamedCapture = "invalid named capture" +pkg regexp/syntax, const ErrInvalidPerlOp = "invalid or unsupported Perl syntax" +pkg regexp/syntax, const ErrInvalidRepeatOp = "invalid nested repetition operator" +pkg regexp/syntax, const ErrInvalidRepeatSize = "invalid repeat count" +pkg regexp/syntax, const ErrInvalidUTF8 = "invalid UTF-8" +pkg regexp/syntax, const ErrMissingBracket = "missing closing ]" +pkg regexp/syntax, const ErrMissingParen = "missing closing )" +pkg regexp/syntax, const ErrMissingRepeatArgument = "missing argument to repetition operator" +pkg regexp/syntax, const ErrTrailingBackslash = "trailing backslash at end of expression" +pkg regexp/syntax, const ErrUnexpectedParen = "unexpected )" +pkg regexp/syntax, const ErrUnexpectedParen ErrorCode +pkg regexp/syntax, const FoldCase = 1 +pkg regexp/syntax, const InstAlt = 0 +pkg regexp/syntax, const InstAltMatch = 1 +pkg regexp/syntax, const InstCapture = 2 +pkg regexp/syntax, const InstEmptyWidth = 3 +pkg regexp/syntax, const InstFail = 5 +pkg regexp/syntax, const InstMatch = 4 +pkg regexp/syntax, const InstNop = 6 +pkg regexp/syntax, const InstRune = 7 +pkg regexp/syntax, const InstRune1 = 8 +pkg regexp/syntax, const InstRuneAny = 9 +pkg regexp/syntax, const InstRuneAnyNotNL = 10 +pkg regexp/syntax, const Literal = 2 +pkg regexp/syntax, const MatchNL = 12 +pkg regexp/syntax, const NonGreedy = 32 +pkg regexp/syntax, const OneLine = 16 +pkg regexp/syntax, const OpAlternate = 19 +pkg regexp/syntax, const OpAnyChar = 6 +pkg regexp/syntax, const OpAnyCharNotNL = 5 +pkg regexp/syntax, const OpBeginLine = 7 +pkg regexp/syntax, const OpBeginText = 9 +pkg regexp/syntax, const OpCapture = 13 +pkg regexp/syntax, const OpCharClass = 4 +pkg regexp/syntax, const OpConcat = 18 +pkg regexp/syntax, const OpEmptyMatch = 2 +pkg regexp/syntax, const OpEndLine = 8 +pkg regexp/syntax, const OpEndText = 10 +pkg regexp/syntax, const OpLiteral = 3 +pkg regexp/syntax, const OpNoMatch = 1 +pkg regexp/syntax, const OpNoWordBoundary = 12 +pkg regexp/syntax, const OpPlus = 15 +pkg regexp/syntax, const OpQuest = 16 +pkg regexp/syntax, const OpRepeat = 17 +pkg regexp/syntax, const OpStar = 14 +pkg regexp/syntax, const OpWordBoundary = 11 +pkg regexp/syntax, const POSIX = 0 +pkg regexp/syntax, const Perl = 212 +pkg regexp/syntax, const PerlX = 64 +pkg regexp/syntax, const Simple = 512 +pkg regexp/syntax, const UnicodeGroups = 128 +pkg regexp/syntax, const WasDollar = 256 +pkg runtime (darwin-386), const GOARCH = "386" +pkg runtime (darwin-386), const GOOS = "darwin" +pkg runtime (darwin-386-cgo), const GOARCH = "386" +pkg runtime (darwin-386-cgo), const GOOS = "darwin" +pkg runtime (darwin-amd64), const GOARCH = "amd64" +pkg runtime (darwin-amd64), const GOOS = "darwin" +pkg runtime (darwin-amd64-cgo), const GOARCH = "amd64" +pkg runtime (darwin-amd64-cgo), const GOOS = "darwin" +pkg runtime (freebsd-386), const GOARCH = "386" +pkg runtime (freebsd-386), const GOOS = "freebsd" +pkg runtime (freebsd-386-cgo), const GOARCH = "386" +pkg runtime (freebsd-386-cgo), const GOOS = "freebsd" +pkg runtime (freebsd-amd64), const GOARCH = "amd64" +pkg runtime (freebsd-amd64), const GOOS = "freebsd" +pkg runtime (freebsd-amd64-cgo), const GOARCH = "amd64" +pkg runtime (freebsd-amd64-cgo), const GOOS = "freebsd" +pkg runtime (freebsd-arm), const GOARCH = "arm" +pkg runtime (freebsd-arm), const GOOS = "freebsd" +pkg runtime (freebsd-arm-cgo), const GOARCH = "arm" +pkg runtime (freebsd-arm-cgo), const GOOS = "freebsd" +pkg runtime (linux-386), const GOARCH = "386" +pkg runtime (linux-386), const GOOS = "linux" +pkg runtime (linux-386-cgo), const GOARCH = "386" +pkg runtime (linux-386-cgo), const GOOS = "linux" +pkg runtime (linux-amd64), const GOARCH = "amd64" +pkg runtime (linux-amd64), const GOOS = "linux" +pkg runtime (linux-amd64-cgo), const GOARCH = "amd64" +pkg runtime (linux-amd64-cgo), const GOOS = "linux" +pkg runtime (linux-arm), const GOARCH = "arm" +pkg runtime (linux-arm), const GOOS = "linux" +pkg runtime (linux-arm-cgo), const GOARCH = "arm" +pkg runtime (linux-arm-cgo), const GOOS = "linux" +pkg runtime (netbsd-386), const GOARCH = "386" +pkg runtime (netbsd-386), const GOOS = "netbsd" +pkg runtime (netbsd-386-cgo), const GOARCH = "386" +pkg runtime (netbsd-386-cgo), const GOOS = "netbsd" +pkg runtime (netbsd-amd64), const GOARCH = "amd64" +pkg runtime (netbsd-amd64), const GOOS = "netbsd" +pkg runtime (netbsd-amd64-cgo), const GOARCH = "amd64" +pkg runtime (netbsd-amd64-cgo), const GOOS = "netbsd" +pkg runtime (netbsd-arm), const GOARCH = "arm" +pkg runtime (netbsd-arm), const GOOS = "netbsd" +pkg runtime (netbsd-arm-cgo), const GOARCH = "arm" +pkg runtime (netbsd-arm-cgo), const GOOS = "netbsd" +pkg runtime (openbsd-386), const GOARCH = "386" +pkg runtime (openbsd-386), const GOOS = "openbsd" +pkg runtime (openbsd-386-cgo), const GOARCH = "386" +pkg runtime (openbsd-386-cgo), const GOOS = "openbsd" +pkg runtime (openbsd-amd64), const GOARCH = "amd64" +pkg runtime (openbsd-amd64), const GOOS = "openbsd" +pkg runtime (openbsd-amd64-cgo), const GOARCH = "amd64" +pkg runtime (openbsd-amd64-cgo), const GOOS = "openbsd" +pkg runtime (windows-386), const GOARCH = "386" +pkg runtime (windows-386), const GOOS = "windows" +pkg runtime (windows-amd64), const GOARCH = "amd64" +pkg runtime (windows-amd64), const GOOS = "windows" +pkg runtime, const Compiler = "gc" +pkg runtime, func BlockProfile([]BlockProfileRecord) (int, bool) +pkg runtime, func SetBlockProfileRate(int) +pkg runtime, method (*BlockProfileRecord) Stack() []uintptr +pkg runtime, type BlockProfileRecord struct +pkg runtime, type BlockProfileRecord struct, Count int64 +pkg runtime, type BlockProfileRecord struct, Cycles int64 +pkg runtime, type BlockProfileRecord struct, embedded StackRecord +pkg runtime/debug, func FreeOSMemory() +pkg runtime/debug, func ReadGCStats(*GCStats) +pkg runtime/debug, func SetGCPercent(int) int +pkg runtime/debug, type GCStats struct +pkg runtime/debug, type GCStats struct, LastGC time.Time +pkg runtime/debug, type GCStats struct, NumGC int64 +pkg runtime/debug, type GCStats struct, Pause []time.Duration +pkg runtime/debug, type GCStats struct, PauseQuantiles []time.Duration +pkg runtime/debug, type GCStats struct, PauseTotal time.Duration +pkg sort, func Reverse(Interface) Interface +pkg strconv (darwin-amd64), const IntSize = 64 +pkg strconv (darwin-amd64-cgo), const IntSize = 64 +pkg strconv (freebsd-386), const IntSize = 32 +pkg strconv (freebsd-386-cgo), const IntSize = 32 +pkg strconv (freebsd-amd64), const IntSize = 64 +pkg strconv (freebsd-amd64-cgo), const IntSize = 64 +pkg strconv (freebsd-arm), const IntSize = 32 +pkg strconv (freebsd-arm-cgo), const IntSize = 32 +pkg strconv (linux-386), const IntSize = 32 +pkg strconv (linux-386-cgo), const IntSize = 32 +pkg strconv (linux-amd64), const IntSize = 64 +pkg strconv (linux-amd64-cgo), const IntSize = 64 +pkg strconv (linux-arm), const IntSize = 32 +pkg strconv (linux-arm-cgo), const IntSize = 32 +pkg strconv (netbsd-386), const IntSize = 32 +pkg strconv (netbsd-386-cgo), const IntSize = 32 +pkg strconv (netbsd-amd64), const IntSize = 64 +pkg strconv (netbsd-amd64-cgo), const IntSize = 64 +pkg strconv (netbsd-arm), const IntSize = 32 +pkg strconv (netbsd-arm-cgo), const IntSize = 32 +pkg strconv (netbsd-arm64), const IntSize = 64 +pkg strconv (netbsd-arm64-cgo), const IntSize = 64 +pkg strconv (openbsd-386), const IntSize = 32 +pkg strconv (openbsd-386-cgo), const IntSize = 32 +pkg strconv (openbsd-amd64), const IntSize = 64 +pkg strconv (openbsd-amd64-cgo), const IntSize = 64 +pkg strconv (windows-386), const IntSize = 32 +pkg strconv (windows-amd64), const IntSize = 64 +pkg strings, func TrimPrefix(string, string) string +pkg strings, func TrimSuffix(string, string) string +pkg strings, method (*Reader) WriteTo(io.Writer) (int64, error) +pkg syscall (darwin-386), const AF_APPLETALK = 16 +pkg syscall (darwin-386), const AF_CCITT = 10 +pkg syscall (darwin-386), const AF_CHAOS = 5 +pkg syscall (darwin-386), const AF_CNT = 21 +pkg syscall (darwin-386), const AF_COIP = 20 +pkg syscall (darwin-386), const AF_DATAKIT = 9 +pkg syscall (darwin-386), const AF_DECnet = 12 +pkg syscall (darwin-386), const AF_DLI = 13 +pkg syscall (darwin-386), const AF_E164 = 28 +pkg syscall (darwin-386), const AF_ECMA = 8 +pkg syscall (darwin-386), const AF_HYLINK = 15 +pkg syscall (darwin-386), const AF_IEEE80211 = 37 +pkg syscall (darwin-386), const AF_IMPLINK = 3 +pkg syscall (darwin-386), const AF_INET6 = 30 +pkg syscall (darwin-386), const AF_IPX = 23 +pkg syscall (darwin-386), const AF_ISDN = 28 +pkg syscall (darwin-386), const AF_ISO = 7 +pkg syscall (darwin-386), const AF_LAT = 14 +pkg syscall (darwin-386), const AF_LINK = 18 +pkg syscall (darwin-386), const AF_LOCAL = 1 +pkg syscall (darwin-386), const AF_MAX = 38 +pkg syscall (darwin-386), const AF_NATM = 31 +pkg syscall (darwin-386), const AF_NDRV = 27 +pkg syscall (darwin-386), const AF_NETBIOS = 33 +pkg syscall (darwin-386), const AF_NS = 6 +pkg syscall (darwin-386), const AF_OSI = 7 +pkg syscall (darwin-386), const AF_PPP = 34 +pkg syscall (darwin-386), const AF_PUP = 4 +pkg syscall (darwin-386), const AF_RESERVED_36 = 36 +pkg syscall (darwin-386), const AF_ROUTE = 17 +pkg syscall (darwin-386), const AF_SIP = 24 +pkg syscall (darwin-386), const AF_SNA = 11 +pkg syscall (darwin-386), const AF_SYSTEM = 32 +pkg syscall (darwin-386), const B0 = 0 +pkg syscall (darwin-386), const B0 ideal-int +pkg syscall (darwin-386), const B110 = 110 +pkg syscall (darwin-386), const B110 ideal-int +pkg syscall (darwin-386), const B115200 = 115200 +pkg syscall (darwin-386), const B115200 ideal-int +pkg syscall (darwin-386), const B1200 = 1200 +pkg syscall (darwin-386), const B1200 ideal-int +pkg syscall (darwin-386), const B134 = 134 +pkg syscall (darwin-386), const B134 ideal-int +pkg syscall (darwin-386), const B14400 = 14400 +pkg syscall (darwin-386), const B14400 ideal-int +pkg syscall (darwin-386), const B150 = 150 +pkg syscall (darwin-386), const B150 ideal-int +pkg syscall (darwin-386), const B1800 = 1800 +pkg syscall (darwin-386), const B1800 ideal-int +pkg syscall (darwin-386), const B19200 = 19200 +pkg syscall (darwin-386), const B19200 ideal-int +pkg syscall (darwin-386), const B200 = 200 +pkg syscall (darwin-386), const B200 ideal-int +pkg syscall (darwin-386), const B230400 = 230400 +pkg syscall (darwin-386), const B230400 ideal-int +pkg syscall (darwin-386), const B2400 = 2400 +pkg syscall (darwin-386), const B2400 ideal-int +pkg syscall (darwin-386), const B28800 = 28800 +pkg syscall (darwin-386), const B28800 ideal-int +pkg syscall (darwin-386), const B300 = 300 +pkg syscall (darwin-386), const B300 ideal-int +pkg syscall (darwin-386), const B38400 = 38400 +pkg syscall (darwin-386), const B38400 ideal-int +pkg syscall (darwin-386), const B4800 = 4800 +pkg syscall (darwin-386), const B4800 ideal-int +pkg syscall (darwin-386), const B50 = 50 +pkg syscall (darwin-386), const B50 ideal-int +pkg syscall (darwin-386), const B57600 = 57600 +pkg syscall (darwin-386), const B57600 ideal-int +pkg syscall (darwin-386), const B600 = 600 +pkg syscall (darwin-386), const B600 ideal-int +pkg syscall (darwin-386), const B7200 = 7200 +pkg syscall (darwin-386), const B7200 ideal-int +pkg syscall (darwin-386), const B75 = 75 +pkg syscall (darwin-386), const B75 ideal-int +pkg syscall (darwin-386), const B76800 = 76800 +pkg syscall (darwin-386), const B76800 ideal-int +pkg syscall (darwin-386), const B9600 = 9600 +pkg syscall (darwin-386), const B9600 ideal-int +pkg syscall (darwin-386), const BIOCFLUSH = 536887912 +pkg syscall (darwin-386), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-386), const BIOCGDLT = 1074020970 +pkg syscall (darwin-386), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-386), const BIOCGETIF = 1075855979 +pkg syscall (darwin-386), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-386), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-386), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (darwin-386), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-386), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-386), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-386), const BIOCPROMISC = 536887913 +pkg syscall (darwin-386), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-386), const BIOCSDLT = 2147762808 +pkg syscall (darwin-386), const BIOCSETF = 2148024935 +pkg syscall (darwin-386), const BIOCSETIF = 2149597804 +pkg syscall (darwin-386), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-386), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-386), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (darwin-386), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-386), const BIOCVERSION = 1074020977 +pkg syscall (darwin-386), const BPF_A = 16 +pkg syscall (darwin-386), const BPF_ABS = 32 +pkg syscall (darwin-386), const BPF_ADD = 0 +pkg syscall (darwin-386), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-386), const BPF_ALU = 4 +pkg syscall (darwin-386), const BPF_AND = 80 +pkg syscall (darwin-386), const BPF_B = 16 +pkg syscall (darwin-386), const BPF_DIV = 48 +pkg syscall (darwin-386), const BPF_H = 8 +pkg syscall (darwin-386), const BPF_IMM = 0 +pkg syscall (darwin-386), const BPF_IND = 64 +pkg syscall (darwin-386), const BPF_JA = 0 +pkg syscall (darwin-386), const BPF_JEQ = 16 +pkg syscall (darwin-386), const BPF_JGE = 48 +pkg syscall (darwin-386), const BPF_JGT = 32 +pkg syscall (darwin-386), const BPF_JMP = 5 +pkg syscall (darwin-386), const BPF_JSET = 64 +pkg syscall (darwin-386), const BPF_K = 0 +pkg syscall (darwin-386), const BPF_LD = 0 +pkg syscall (darwin-386), const BPF_LDX = 1 +pkg syscall (darwin-386), const BPF_LEN = 128 +pkg syscall (darwin-386), const BPF_LSH = 96 +pkg syscall (darwin-386), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-386), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-386), const BPF_MAXINSNS = 512 +pkg syscall (darwin-386), const BPF_MEM = 96 +pkg syscall (darwin-386), const BPF_MEMWORDS = 16 +pkg syscall (darwin-386), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-386), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-386), const BPF_MISC = 7 +pkg syscall (darwin-386), const BPF_MSH = 160 +pkg syscall (darwin-386), const BPF_MUL = 32 +pkg syscall (darwin-386), const BPF_NEG = 128 +pkg syscall (darwin-386), const BPF_OR = 64 +pkg syscall (darwin-386), const BPF_RELEASE = 199606 +pkg syscall (darwin-386), const BPF_RET = 6 +pkg syscall (darwin-386), const BPF_RSH = 112 +pkg syscall (darwin-386), const BPF_ST = 2 +pkg syscall (darwin-386), const BPF_STX = 3 +pkg syscall (darwin-386), const BPF_SUB = 16 +pkg syscall (darwin-386), const BPF_TAX = 0 +pkg syscall (darwin-386), const BPF_TXA = 128 +pkg syscall (darwin-386), const BPF_W = 0 +pkg syscall (darwin-386), const BPF_X = 8 +pkg syscall (darwin-386), const BRKINT = 2 +pkg syscall (darwin-386), const BRKINT ideal-int +pkg syscall (darwin-386), const CFLUSH = 15 +pkg syscall (darwin-386), const CFLUSH ideal-int +pkg syscall (darwin-386), const CLOCAL = 32768 +pkg syscall (darwin-386), const CLOCAL ideal-int +pkg syscall (darwin-386), const CREAD = 2048 +pkg syscall (darwin-386), const CREAD ideal-int +pkg syscall (darwin-386), const CS5 = 0 +pkg syscall (darwin-386), const CS5 ideal-int +pkg syscall (darwin-386), const CS6 = 256 +pkg syscall (darwin-386), const CS6 ideal-int +pkg syscall (darwin-386), const CS7 = 512 +pkg syscall (darwin-386), const CS7 ideal-int +pkg syscall (darwin-386), const CS8 = 768 +pkg syscall (darwin-386), const CS8 ideal-int +pkg syscall (darwin-386), const CSIZE = 768 +pkg syscall (darwin-386), const CSIZE ideal-int +pkg syscall (darwin-386), const CSTART = 17 +pkg syscall (darwin-386), const CSTART ideal-int +pkg syscall (darwin-386), const CSTATUS = 20 +pkg syscall (darwin-386), const CSTATUS ideal-int +pkg syscall (darwin-386), const CSTOP = 19 +pkg syscall (darwin-386), const CSTOP ideal-int +pkg syscall (darwin-386), const CSTOPB = 1024 +pkg syscall (darwin-386), const CSTOPB ideal-int +pkg syscall (darwin-386), const CSUSP = 26 +pkg syscall (darwin-386), const CSUSP ideal-int +pkg syscall (darwin-386), const CTL_MAXNAME = 12 +pkg syscall (darwin-386), const CTL_NET = 4 +pkg syscall (darwin-386), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-386), const DLT_ARCNET = 7 +pkg syscall (darwin-386), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-386), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-386), const DLT_AX25 = 3 +pkg syscall (darwin-386), const DLT_CHAOS = 5 +pkg syscall (darwin-386), const DLT_CHDLC = 104 +pkg syscall (darwin-386), const DLT_C_HDLC = 104 +pkg syscall (darwin-386), const DLT_EN10MB = 1 +pkg syscall (darwin-386), const DLT_EN3MB = 2 +pkg syscall (darwin-386), const DLT_FDDI = 10 +pkg syscall (darwin-386), const DLT_IEEE802 = 6 +pkg syscall (darwin-386), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-386), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-386), const DLT_LOOP = 108 +pkg syscall (darwin-386), const DLT_NULL = 0 +pkg syscall (darwin-386), const DLT_PFLOG = 117 +pkg syscall (darwin-386), const DLT_PFSYNC = 18 +pkg syscall (darwin-386), const DLT_PPP = 9 +pkg syscall (darwin-386), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-386), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-386), const DLT_PRONET = 4 +pkg syscall (darwin-386), const DLT_RAW = 12 +pkg syscall (darwin-386), const DLT_SLIP = 8 +pkg syscall (darwin-386), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-386), const DT_BLK = 6 +pkg syscall (darwin-386), const DT_CHR = 2 +pkg syscall (darwin-386), const DT_DIR = 4 +pkg syscall (darwin-386), const DT_FIFO = 1 +pkg syscall (darwin-386), const DT_LNK = 10 +pkg syscall (darwin-386), const DT_REG = 8 +pkg syscall (darwin-386), const DT_SOCK = 12 +pkg syscall (darwin-386), const DT_UNKNOWN = 0 +pkg syscall (darwin-386), const DT_WHT = 14 +pkg syscall (darwin-386), const E2BIG = 7 +pkg syscall (darwin-386), const EACCES = 13 +pkg syscall (darwin-386), const EADDRINUSE = 48 +pkg syscall (darwin-386), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-386), const EAFNOSUPPORT = 47 +pkg syscall (darwin-386), const EAGAIN = 35 +pkg syscall (darwin-386), const EALREADY = 37 +pkg syscall (darwin-386), const EAUTH = 80 +pkg syscall (darwin-386), const EBADARCH = 86 +pkg syscall (darwin-386), const EBADEXEC = 85 +pkg syscall (darwin-386), const EBADF = 9 +pkg syscall (darwin-386), const EBADMACHO = 88 +pkg syscall (darwin-386), const EBADMSG = 94 +pkg syscall (darwin-386), const EBADRPC = 72 +pkg syscall (darwin-386), const EBUSY = 16 +pkg syscall (darwin-386), const ECANCELED = 89 +pkg syscall (darwin-386), const ECHILD = 10 +pkg syscall (darwin-386), const ECHO = 8 +pkg syscall (darwin-386), const ECHOCTL = 64 +pkg syscall (darwin-386), const ECHOE = 2 +pkg syscall (darwin-386), const ECHOK = 4 +pkg syscall (darwin-386), const ECHOKE = 1 +pkg syscall (darwin-386), const ECHONL = 16 +pkg syscall (darwin-386), const ECHOPRT = 32 +pkg syscall (darwin-386), const ECONNABORTED = 53 +pkg syscall (darwin-386), const ECONNREFUSED = 61 +pkg syscall (darwin-386), const ECONNRESET = 54 +pkg syscall (darwin-386), const EDEADLK = 11 +pkg syscall (darwin-386), const EDESTADDRREQ = 39 +pkg syscall (darwin-386), const EDEVERR = 83 +pkg syscall (darwin-386), const EDOM = 33 +pkg syscall (darwin-386), const EDQUOT = 69 +pkg syscall (darwin-386), const EEXIST = 17 +pkg syscall (darwin-386), const EFAULT = 14 +pkg syscall (darwin-386), const EFBIG = 27 +pkg syscall (darwin-386), const EFTYPE = 79 +pkg syscall (darwin-386), const EHOSTDOWN = 64 +pkg syscall (darwin-386), const EHOSTUNREACH = 65 +pkg syscall (darwin-386), const EIDRM = 90 +pkg syscall (darwin-386), const EILSEQ = 92 +pkg syscall (darwin-386), const EINPROGRESS = 36 +pkg syscall (darwin-386), const EINTR = 4 +pkg syscall (darwin-386), const EINVAL = 22 +pkg syscall (darwin-386), const EIO = 5 +pkg syscall (darwin-386), const EISCONN = 56 +pkg syscall (darwin-386), const EISDIR = 21 +pkg syscall (darwin-386), const ELAST = 105 +pkg syscall (darwin-386), const ELOOP = 62 +pkg syscall (darwin-386), const EMFILE = 24 +pkg syscall (darwin-386), const EMLINK = 31 +pkg syscall (darwin-386), const EMSGSIZE = 40 +pkg syscall (darwin-386), const EMULTIHOP = 95 +pkg syscall (darwin-386), const ENAMETOOLONG = 63 +pkg syscall (darwin-386), const ENEEDAUTH = 81 +pkg syscall (darwin-386), const ENETDOWN = 50 +pkg syscall (darwin-386), const ENETRESET = 52 +pkg syscall (darwin-386), const ENETUNREACH = 51 +pkg syscall (darwin-386), const ENFILE = 23 +pkg syscall (darwin-386), const ENOATTR = 93 +pkg syscall (darwin-386), const ENOBUFS = 55 +pkg syscall (darwin-386), const ENODATA = 96 +pkg syscall (darwin-386), const ENODEV = 19 +pkg syscall (darwin-386), const ENOEXEC = 8 +pkg syscall (darwin-386), const ENOLCK = 77 +pkg syscall (darwin-386), const ENOLINK = 97 +pkg syscall (darwin-386), const ENOMEM = 12 +pkg syscall (darwin-386), const ENOMSG = 91 +pkg syscall (darwin-386), const ENOPOLICY = 103 +pkg syscall (darwin-386), const ENOPROTOOPT = 42 +pkg syscall (darwin-386), const ENOSPC = 28 +pkg syscall (darwin-386), const ENOSR = 98 +pkg syscall (darwin-386), const ENOSTR = 99 +pkg syscall (darwin-386), const ENOSYS = 78 +pkg syscall (darwin-386), const ENOTBLK = 15 +pkg syscall (darwin-386), const ENOTCONN = 57 +pkg syscall (darwin-386), const ENOTDIR = 20 +pkg syscall (darwin-386), const ENOTEMPTY = 66 +pkg syscall (darwin-386), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-386), const ENOTSOCK = 38 +pkg syscall (darwin-386), const ENOTSUP = 45 +pkg syscall (darwin-386), const ENOTTY = 25 +pkg syscall (darwin-386), const ENXIO = 6 +pkg syscall (darwin-386), const EOPNOTSUPP = 102 +pkg syscall (darwin-386), const EOVERFLOW = 84 +pkg syscall (darwin-386), const EOWNERDEAD = 105 +pkg syscall (darwin-386), const EPERM = 1 +pkg syscall (darwin-386), const EPFNOSUPPORT = 46 +pkg syscall (darwin-386), const EPIPE = 32 +pkg syscall (darwin-386), const EPROCLIM = 67 +pkg syscall (darwin-386), const EPROCUNAVAIL = 76 +pkg syscall (darwin-386), const EPROGMISMATCH = 75 +pkg syscall (darwin-386), const EPROGUNAVAIL = 74 +pkg syscall (darwin-386), const EPROTO = 100 +pkg syscall (darwin-386), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-386), const EPROTOTYPE = 41 +pkg syscall (darwin-386), const EPWROFF = 82 +pkg syscall (darwin-386), const ERANGE = 34 +pkg syscall (darwin-386), const EREMOTE = 71 +pkg syscall (darwin-386), const EROFS = 30 +pkg syscall (darwin-386), const ERPCMISMATCH = 73 +pkg syscall (darwin-386), const ESHLIBVERS = 87 +pkg syscall (darwin-386), const ESHUTDOWN = 58 +pkg syscall (darwin-386), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-386), const ESPIPE = 29 +pkg syscall (darwin-386), const ESRCH = 3 +pkg syscall (darwin-386), const ESTALE = 70 +pkg syscall (darwin-386), const ETIME = 101 +pkg syscall (darwin-386), const ETIMEDOUT = 60 +pkg syscall (darwin-386), const ETOOMANYREFS = 59 +pkg syscall (darwin-386), const ETXTBSY = 26 +pkg syscall (darwin-386), const EUSERS = 68 +pkg syscall (darwin-386), const EVFILT_AIO = -3 +pkg syscall (darwin-386), const EVFILT_FS = -9 +pkg syscall (darwin-386), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-386), const EVFILT_PROC = -5 +pkg syscall (darwin-386), const EVFILT_READ = -1 +pkg syscall (darwin-386), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-386), const EVFILT_SYSCOUNT = 12 +pkg syscall (darwin-386), const EVFILT_THREADMARKER = 12 +pkg syscall (darwin-386), const EVFILT_TIMER = -7 +pkg syscall (darwin-386), const EVFILT_USER = -10 +pkg syscall (darwin-386), const EVFILT_VM = -12 +pkg syscall (darwin-386), const EVFILT_VNODE = -4 +pkg syscall (darwin-386), const EVFILT_WRITE = -2 +pkg syscall (darwin-386), const EV_ADD = 1 +pkg syscall (darwin-386), const EV_CLEAR = 32 +pkg syscall (darwin-386), const EV_DELETE = 2 +pkg syscall (darwin-386), const EV_DISABLE = 8 +pkg syscall (darwin-386), const EV_DISPATCH = 128 +pkg syscall (darwin-386), const EV_ENABLE = 4 +pkg syscall (darwin-386), const EV_EOF = 32768 +pkg syscall (darwin-386), const EV_ERROR = 16384 +pkg syscall (darwin-386), const EV_FLAG0 = 4096 +pkg syscall (darwin-386), const EV_FLAG1 = 8192 +pkg syscall (darwin-386), const EV_ONESHOT = 16 +pkg syscall (darwin-386), const EV_OOBAND = 8192 +pkg syscall (darwin-386), const EV_POLL = 4096 +pkg syscall (darwin-386), const EV_RECEIPT = 64 +pkg syscall (darwin-386), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-386), const EWOULDBLOCK = 35 +pkg syscall (darwin-386), const EXDEV = 18 +pkg syscall (darwin-386), const EXTA = 19200 +pkg syscall (darwin-386), const EXTB = 38400 +pkg syscall (darwin-386), const EXTPROC = 2048 +pkg syscall (darwin-386), const FD_CLOEXEC = 1 +pkg syscall (darwin-386), const FD_SETSIZE = 1024 +pkg syscall (darwin-386), const FLUSHO = 8388608 +pkg syscall (darwin-386), const FLUSHO ideal-int +pkg syscall (darwin-386), const F_ADDFILESIGS = 61 +pkg syscall (darwin-386), const F_ADDSIGS = 59 +pkg syscall (darwin-386), const F_ALLOCATEALL = 4 +pkg syscall (darwin-386), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-386), const F_CHKCLEAN = 41 +pkg syscall (darwin-386), const F_DUPFD = 0 +pkg syscall (darwin-386), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-386), const F_FLUSH_DATA = 40 +pkg syscall (darwin-386), const F_FREEZE_FS = 53 +pkg syscall (darwin-386), const F_FULLFSYNC = 51 +pkg syscall (darwin-386), const F_GETFD = 1 +pkg syscall (darwin-386), const F_GETFL = 3 +pkg syscall (darwin-386), const F_GETLK = 7 +pkg syscall (darwin-386), const F_GETLKPID = 66 +pkg syscall (darwin-386), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-386), const F_GETOWN = 5 +pkg syscall (darwin-386), const F_GETPATH = 50 +pkg syscall (darwin-386), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-386), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-386), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-386), const F_LOG2PHYS = 49 +pkg syscall (darwin-386), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-386), const F_MARKDEPENDENCY = 60 +pkg syscall (darwin-386), const F_NOCACHE = 48 +pkg syscall (darwin-386), const F_NODIRECT = 62 +pkg syscall (darwin-386), const F_OK = 0 +pkg syscall (darwin-386), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-386), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-386), const F_PREALLOCATE = 42 +pkg syscall (darwin-386), const F_RDADVISE = 44 +pkg syscall (darwin-386), const F_RDAHEAD = 45 +pkg syscall (darwin-386), const F_RDLCK = 1 +pkg syscall (darwin-386), const F_READBOOTSTRAP = 46 +pkg syscall (darwin-386), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-386), const F_SETFD = 2 +pkg syscall (darwin-386), const F_SETFL = 4 +pkg syscall (darwin-386), const F_SETLK = 8 +pkg syscall (darwin-386), const F_SETLKW = 9 +pkg syscall (darwin-386), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-386), const F_SETOWN = 6 +pkg syscall (darwin-386), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-386), const F_SETSIZE = 43 +pkg syscall (darwin-386), const F_THAW_FS = 54 +pkg syscall (darwin-386), const F_UNLCK = 2 +pkg syscall (darwin-386), const F_VOLPOSMODE = 4 +pkg syscall (darwin-386), const F_WRITEBOOTSTRAP = 47 +pkg syscall (darwin-386), const F_WRLCK = 3 +pkg syscall (darwin-386), const HUPCL = 16384 +pkg syscall (darwin-386), const HUPCL ideal-int +pkg syscall (darwin-386), const ICANON = 256 +pkg syscall (darwin-386), const ICANON ideal-int +pkg syscall (darwin-386), const ICRNL = 256 +pkg syscall (darwin-386), const ICRNL ideal-int +pkg syscall (darwin-386), const IEXTEN = 1024 +pkg syscall (darwin-386), const IEXTEN ideal-int +pkg syscall (darwin-386), const IFF_ALLMULTI = 512 +pkg syscall (darwin-386), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-386), const IFF_DEBUG = 4 +pkg syscall (darwin-386), const IFF_LINK0 = 4096 +pkg syscall (darwin-386), const IFF_LINK1 = 8192 +pkg syscall (darwin-386), const IFF_LINK2 = 16384 +pkg syscall (darwin-386), const IFF_LOOPBACK = 8 +pkg syscall (darwin-386), const IFF_MULTICAST = 32768 +pkg syscall (darwin-386), const IFF_NOARP = 128 +pkg syscall (darwin-386), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-386), const IFF_OACTIVE = 1024 +pkg syscall (darwin-386), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-386), const IFF_PROMISC = 256 +pkg syscall (darwin-386), const IFF_RUNNING = 64 +pkg syscall (darwin-386), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-386), const IFNAMSIZ = 16 +pkg syscall (darwin-386), const IFT_1822 = 2 +pkg syscall (darwin-386), const IFT_AAL5 = 49 +pkg syscall (darwin-386), const IFT_ARCNET = 35 +pkg syscall (darwin-386), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-386), const IFT_ATM = 37 +pkg syscall (darwin-386), const IFT_BRIDGE = 209 +pkg syscall (darwin-386), const IFT_CARP = 248 +pkg syscall (darwin-386), const IFT_CELLULAR = 255 +pkg syscall (darwin-386), const IFT_CEPT = 19 +pkg syscall (darwin-386), const IFT_DS3 = 30 +pkg syscall (darwin-386), const IFT_ENC = 244 +pkg syscall (darwin-386), const IFT_EON = 25 +pkg syscall (darwin-386), const IFT_ETHER = 6 +pkg syscall (darwin-386), const IFT_FAITH = 56 +pkg syscall (darwin-386), const IFT_FDDI = 15 +pkg syscall (darwin-386), const IFT_FRELAY = 32 +pkg syscall (darwin-386), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-386), const IFT_GIF = 55 +pkg syscall (darwin-386), const IFT_HDH1822 = 3 +pkg syscall (darwin-386), const IFT_HIPPI = 47 +pkg syscall (darwin-386), const IFT_HSSI = 46 +pkg syscall (darwin-386), const IFT_HY = 14 +pkg syscall (darwin-386), const IFT_IEEE1394 = 144 +pkg syscall (darwin-386), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-386), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-386), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-386), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-386), const IFT_ISO88023 = 7 +pkg syscall (darwin-386), const IFT_ISO88024 = 8 +pkg syscall (darwin-386), const IFT_ISO88025 = 9 +pkg syscall (darwin-386), const IFT_ISO88026 = 10 +pkg syscall (darwin-386), const IFT_L2VLAN = 135 +pkg syscall (darwin-386), const IFT_LAPB = 16 +pkg syscall (darwin-386), const IFT_LOCALTALK = 42 +pkg syscall (darwin-386), const IFT_LOOP = 24 +pkg syscall (darwin-386), const IFT_MIOX25 = 38 +pkg syscall (darwin-386), const IFT_MODEM = 48 +pkg syscall (darwin-386), const IFT_NSIP = 27 +pkg syscall (darwin-386), const IFT_OTHER = 1 +pkg syscall (darwin-386), const IFT_P10 = 12 +pkg syscall (darwin-386), const IFT_P80 = 13 +pkg syscall (darwin-386), const IFT_PARA = 34 +pkg syscall (darwin-386), const IFT_PDP = 255 +pkg syscall (darwin-386), const IFT_PFLOG = 245 +pkg syscall (darwin-386), const IFT_PFSYNC = 246 +pkg syscall (darwin-386), const IFT_PPP = 23 +pkg syscall (darwin-386), const IFT_PROPMUX = 54 +pkg syscall (darwin-386), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-386), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-386), const IFT_RS232 = 33 +pkg syscall (darwin-386), const IFT_SDLC = 17 +pkg syscall (darwin-386), const IFT_SIP = 31 +pkg syscall (darwin-386), const IFT_SLIP = 28 +pkg syscall (darwin-386), const IFT_SMDSDXI = 43 +pkg syscall (darwin-386), const IFT_SMDSICIP = 52 +pkg syscall (darwin-386), const IFT_SONET = 39 +pkg syscall (darwin-386), const IFT_SONETPATH = 50 +pkg syscall (darwin-386), const IFT_SONETVT = 51 +pkg syscall (darwin-386), const IFT_STARLAN = 11 +pkg syscall (darwin-386), const IFT_STF = 57 +pkg syscall (darwin-386), const IFT_T1 = 18 +pkg syscall (darwin-386), const IFT_ULTRA = 29 +pkg syscall (darwin-386), const IFT_V35 = 45 +pkg syscall (darwin-386), const IFT_X25 = 5 +pkg syscall (darwin-386), const IFT_X25DDN = 4 +pkg syscall (darwin-386), const IFT_X25PLE = 40 +pkg syscall (darwin-386), const IFT_XETHER = 26 +pkg syscall (darwin-386), const IGNBRK = 1 +pkg syscall (darwin-386), const IGNBRK ideal-int +pkg syscall (darwin-386), const IGNCR = 128 +pkg syscall (darwin-386), const IGNCR ideal-int +pkg syscall (darwin-386), const IGNPAR = 4 +pkg syscall (darwin-386), const IGNPAR ideal-int +pkg syscall (darwin-386), const IMAXBEL = 8192 +pkg syscall (darwin-386), const IMAXBEL ideal-int +pkg syscall (darwin-386), const INLCR = 64 +pkg syscall (darwin-386), const INLCR ideal-int +pkg syscall (darwin-386), const INPCK = 16 +pkg syscall (darwin-386), const INPCK ideal-int +pkg syscall (darwin-386), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-386), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-386), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-386), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-386), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-386), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-386), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-386), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-386), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-386), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-386), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-386), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-386), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-386), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-386), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-386), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-386), const IPPROTO_3PC = 34 +pkg syscall (darwin-386), const IPPROTO_ADFS = 68 +pkg syscall (darwin-386), const IPPROTO_AH = 51 +pkg syscall (darwin-386), const IPPROTO_AHIP = 61 +pkg syscall (darwin-386), const IPPROTO_APES = 99 +pkg syscall (darwin-386), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-386), const IPPROTO_AX25 = 93 +pkg syscall (darwin-386), const IPPROTO_BHA = 49 +pkg syscall (darwin-386), const IPPROTO_BLT = 30 +pkg syscall (darwin-386), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-386), const IPPROTO_CFTP = 62 +pkg syscall (darwin-386), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-386), const IPPROTO_CMTP = 38 +pkg syscall (darwin-386), const IPPROTO_CPHB = 73 +pkg syscall (darwin-386), const IPPROTO_CPNX = 72 +pkg syscall (darwin-386), const IPPROTO_DDP = 37 +pkg syscall (darwin-386), const IPPROTO_DGP = 86 +pkg syscall (darwin-386), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-386), const IPPROTO_DONE = 257 +pkg syscall (darwin-386), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-386), const IPPROTO_EGP = 8 +pkg syscall (darwin-386), const IPPROTO_EMCON = 14 +pkg syscall (darwin-386), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-386), const IPPROTO_EON = 80 +pkg syscall (darwin-386), const IPPROTO_ESP = 50 +pkg syscall (darwin-386), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-386), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-386), const IPPROTO_GGP = 3 +pkg syscall (darwin-386), const IPPROTO_GMTP = 100 +pkg syscall (darwin-386), const IPPROTO_GRE = 47 +pkg syscall (darwin-386), const IPPROTO_HELLO = 63 +pkg syscall (darwin-386), const IPPROTO_HMP = 20 +pkg syscall (darwin-386), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-386), const IPPROTO_ICMP = 1 +pkg syscall (darwin-386), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-386), const IPPROTO_IDP = 22 +pkg syscall (darwin-386), const IPPROTO_IDPR = 35 +pkg syscall (darwin-386), const IPPROTO_IDRP = 45 +pkg syscall (darwin-386), const IPPROTO_IGMP = 2 +pkg syscall (darwin-386), const IPPROTO_IGP = 85 +pkg syscall (darwin-386), const IPPROTO_IGRP = 88 +pkg syscall (darwin-386), const IPPROTO_IL = 40 +pkg syscall (darwin-386), const IPPROTO_INLSP = 52 +pkg syscall (darwin-386), const IPPROTO_INP = 32 +pkg syscall (darwin-386), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-386), const IPPROTO_IPCV = 71 +pkg syscall (darwin-386), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-386), const IPPROTO_IPIP = 4 +pkg syscall (darwin-386), const IPPROTO_IPPC = 67 +pkg syscall (darwin-386), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-386), const IPPROTO_IRTP = 28 +pkg syscall (darwin-386), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-386), const IPPROTO_LARP = 91 +pkg syscall (darwin-386), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-386), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-386), const IPPROTO_MAX = 256 +pkg syscall (darwin-386), const IPPROTO_MAXID = 52 +pkg syscall (darwin-386), const IPPROTO_MEAS = 19 +pkg syscall (darwin-386), const IPPROTO_MHRP = 48 +pkg syscall (darwin-386), const IPPROTO_MICP = 95 +pkg syscall (darwin-386), const IPPROTO_MTP = 92 +pkg syscall (darwin-386), const IPPROTO_MUX = 18 +pkg syscall (darwin-386), const IPPROTO_ND = 77 +pkg syscall (darwin-386), const IPPROTO_NHRP = 54 +pkg syscall (darwin-386), const IPPROTO_NONE = 59 +pkg syscall (darwin-386), const IPPROTO_NSP = 31 +pkg syscall (darwin-386), const IPPROTO_NVPII = 11 +pkg syscall (darwin-386), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-386), const IPPROTO_PGM = 113 +pkg syscall (darwin-386), const IPPROTO_PIGP = 9 +pkg syscall (darwin-386), const IPPROTO_PIM = 103 +pkg syscall (darwin-386), const IPPROTO_PRM = 21 +pkg syscall (darwin-386), const IPPROTO_PUP = 12 +pkg syscall (darwin-386), const IPPROTO_PVP = 75 +pkg syscall (darwin-386), const IPPROTO_RAW = 255 +pkg syscall (darwin-386), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-386), const IPPROTO_RDP = 27 +pkg syscall (darwin-386), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-386), const IPPROTO_RSVP = 46 +pkg syscall (darwin-386), const IPPROTO_RVD = 66 +pkg syscall (darwin-386), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-386), const IPPROTO_SATMON = 69 +pkg syscall (darwin-386), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-386), const IPPROTO_SCTP = 132 +pkg syscall (darwin-386), const IPPROTO_SDRP = 42 +pkg syscall (darwin-386), const IPPROTO_SEP = 33 +pkg syscall (darwin-386), const IPPROTO_SRPC = 90 +pkg syscall (darwin-386), const IPPROTO_ST = 7 +pkg syscall (darwin-386), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-386), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-386), const IPPROTO_TCF = 87 +pkg syscall (darwin-386), const IPPROTO_TP = 29 +pkg syscall (darwin-386), const IPPROTO_TPXX = 39 +pkg syscall (darwin-386), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-386), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-386), const IPPROTO_TTP = 84 +pkg syscall (darwin-386), const IPPROTO_VINES = 83 +pkg syscall (darwin-386), const IPPROTO_VISA = 70 +pkg syscall (darwin-386), const IPPROTO_VMTP = 81 +pkg syscall (darwin-386), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-386), const IPPROTO_WBMON = 78 +pkg syscall (darwin-386), const IPPROTO_WSN = 74 +pkg syscall (darwin-386), const IPPROTO_XNET = 15 +pkg syscall (darwin-386), const IPPROTO_XTP = 36 +pkg syscall (darwin-386), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-386), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-386), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-386), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-386), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-386), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-386), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-386), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-386), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-386), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-386), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-386), const IPV6_FAITH = 29 +pkg syscall (darwin-386), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-386), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-386), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-386), const IPV6_FW_ADD = 30 +pkg syscall (darwin-386), const IPV6_FW_DEL = 31 +pkg syscall (darwin-386), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-386), const IPV6_FW_GET = 34 +pkg syscall (darwin-386), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-386), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-386), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-386), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-386), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-386), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-386), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-386), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-386), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-386), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-386), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-386), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-386), const IPV6_MMTU = 1280 +pkg syscall (darwin-386), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-386), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-386), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-386), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-386), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-386), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-386), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-386), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-386), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-386), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-386), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-386), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-386), const IPV6_TCLASS = 36 +pkg syscall (darwin-386), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-386), const IPV6_V6ONLY = 27 +pkg syscall (darwin-386), const IPV6_VERSION = 96 +pkg syscall (darwin-386), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-386), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-386), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-386), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-386), const IP_BOUND_IF = 25 +pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-386), const IP_DF = 16384 +pkg syscall (darwin-386), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-386), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-386), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-386), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-386), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-386), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-386), const IP_FAITH = 22 +pkg syscall (darwin-386), const IP_FW_ADD = 40 +pkg syscall (darwin-386), const IP_FW_DEL = 41 +pkg syscall (darwin-386), const IP_FW_FLUSH = 42 +pkg syscall (darwin-386), const IP_FW_GET = 44 +pkg syscall (darwin-386), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-386), const IP_FW_ZERO = 43 +pkg syscall (darwin-386), const IP_HDRINCL = 2 +pkg syscall (darwin-386), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-386), const IP_MAXPACKET = 65535 +pkg syscall (darwin-386), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-386), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-386), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-386), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-386), const IP_MF = 8192 +pkg syscall (darwin-386), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-386), const IP_MSFILTER = 74 +pkg syscall (darwin-386), const IP_MSS = 576 +pkg syscall (darwin-386), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-386), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-386), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-386), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-386), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-386), const IP_NAT__XXX = 55 +pkg syscall (darwin-386), const IP_OFFMASK = 8191 +pkg syscall (darwin-386), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-386), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-386), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-386), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-386), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-386), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-386), const IP_OPTIONS = 1 +pkg syscall (darwin-386), const IP_PKTINFO = 26 +pkg syscall (darwin-386), const IP_PORTRANGE = 19 +pkg syscall (darwin-386), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-386), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-386), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-386), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-386), const IP_RECVIF = 20 +pkg syscall (darwin-386), const IP_RECVOPTS = 5 +pkg syscall (darwin-386), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-386), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-386), const IP_RECVTTL = 24 +pkg syscall (darwin-386), const IP_RETOPTS = 8 +pkg syscall (darwin-386), const IP_RF = 32768 +pkg syscall (darwin-386), const IP_RSVP_OFF = 16 +pkg syscall (darwin-386), const IP_RSVP_ON = 15 +pkg syscall (darwin-386), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-386), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-386), const IP_STRIPHDR = 23 +pkg syscall (darwin-386), const IP_TOS = 3 +pkg syscall (darwin-386), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-386), const IP_TTL = 4 +pkg syscall (darwin-386), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-386), const ISIG = 128 +pkg syscall (darwin-386), const ISIG ideal-int +pkg syscall (darwin-386), const ISTRIP = 32 +pkg syscall (darwin-386), const ISTRIP ideal-int +pkg syscall (darwin-386), const IUTF8 = 16384 +pkg syscall (darwin-386), const IUTF8 ideal-int +pkg syscall (darwin-386), const IXANY = 2048 +pkg syscall (darwin-386), const IXANY ideal-int +pkg syscall (darwin-386), const IXOFF = 1024 +pkg syscall (darwin-386), const IXOFF ideal-int +pkg syscall (darwin-386), const IXON = 512 +pkg syscall (darwin-386), const IXON ideal-int +pkg syscall (darwin-386), const ImplementsGetwd = false +pkg syscall (darwin-386), const LOCK_EX = 2 +pkg syscall (darwin-386), const LOCK_NB = 4 +pkg syscall (darwin-386), const LOCK_SH = 1 +pkg syscall (darwin-386), const LOCK_UN = 8 +pkg syscall (darwin-386), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-386), const MADV_DONTNEED = 4 +pkg syscall (darwin-386), const MADV_FREE = 5 +pkg syscall (darwin-386), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-386), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-386), const MADV_NORMAL = 0 +pkg syscall (darwin-386), const MADV_RANDOM = 1 +pkg syscall (darwin-386), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-386), const MADV_WILLNEED = 3 +pkg syscall (darwin-386), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-386), const MAP_ANON = 4096 +pkg syscall (darwin-386), const MAP_COPY = 2 +pkg syscall (darwin-386), const MAP_FILE = 0 +pkg syscall (darwin-386), const MAP_FIXED = 16 +pkg syscall (darwin-386), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-386), const MAP_JIT = 2048 +pkg syscall (darwin-386), const MAP_NOCACHE = 1024 +pkg syscall (darwin-386), const MAP_NOEXTEND = 256 +pkg syscall (darwin-386), const MAP_NORESERVE = 64 +pkg syscall (darwin-386), const MAP_PRIVATE = 2 +pkg syscall (darwin-386), const MAP_RENAME = 32 +pkg syscall (darwin-386), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-386), const MAP_SHARED = 1 +pkg syscall (darwin-386), const MCL_CURRENT = 1 +pkg syscall (darwin-386), const MCL_FUTURE = 2 +pkg syscall (darwin-386), const MSG_CTRUNC = 32 +pkg syscall (darwin-386), const MSG_DONTROUTE = 4 +pkg syscall (darwin-386), const MSG_DONTWAIT = 128 +pkg syscall (darwin-386), const MSG_EOF = 256 +pkg syscall (darwin-386), const MSG_EOR = 8 +pkg syscall (darwin-386), const MSG_FLUSH = 1024 +pkg syscall (darwin-386), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-386), const MSG_HOLD = 2048 +pkg syscall (darwin-386), const MSG_NEEDSA = 65536 +pkg syscall (darwin-386), const MSG_OOB = 1 +pkg syscall (darwin-386), const MSG_PEEK = 2 +pkg syscall (darwin-386), const MSG_RCVMORE = 16384 +pkg syscall (darwin-386), const MSG_SEND = 4096 +pkg syscall (darwin-386), const MSG_TRUNC = 16 +pkg syscall (darwin-386), const MSG_WAITALL = 64 +pkg syscall (darwin-386), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-386), const MS_ASYNC = 1 +pkg syscall (darwin-386), const MS_DEACTIVATE = 8 +pkg syscall (darwin-386), const MS_INVALIDATE = 2 +pkg syscall (darwin-386), const MS_KILLPAGES = 4 +pkg syscall (darwin-386), const MS_SYNC = 16 +pkg syscall (darwin-386), const NAME_MAX = 255 +pkg syscall (darwin-386), const NET_RT_DUMP = 1 +pkg syscall (darwin-386), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-386), const NET_RT_FLAGS = 2 +pkg syscall (darwin-386), const NET_RT_IFLIST = 3 +pkg syscall (darwin-386), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-386), const NET_RT_MAXID = 10 +pkg syscall (darwin-386), const NET_RT_STAT = 4 +pkg syscall (darwin-386), const NET_RT_TRASH = 5 +pkg syscall (darwin-386), const NOFLSH = 2147483648 +pkg syscall (darwin-386), const NOFLSH ideal-int +pkg syscall (darwin-386), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-386), const NOTE_ATTRIB = 8 +pkg syscall (darwin-386), const NOTE_CHILD = 4 +pkg syscall (darwin-386), const NOTE_DELETE = 1 +pkg syscall (darwin-386), const NOTE_EXEC = 536870912 +pkg syscall (darwin-386), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-386), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-386), const NOTE_EXTEND = 4 +pkg syscall (darwin-386), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-386), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-386), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-386), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-386), const NOTE_FFNOP = 0 +pkg syscall (darwin-386), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-386), const NOTE_FORK = 1073741824 +pkg syscall (darwin-386), const NOTE_LINK = 16 +pkg syscall (darwin-386), const NOTE_LOWAT = 1 +pkg syscall (darwin-386), const NOTE_NONE = 128 +pkg syscall (darwin-386), const NOTE_NSECONDS = 4 +pkg syscall (darwin-386), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-386), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-386), const NOTE_REAP = 268435456 +pkg syscall (darwin-386), const NOTE_RENAME = 32 +pkg syscall (darwin-386), const NOTE_RESOURCEEND = 33554432 +pkg syscall (darwin-386), const NOTE_REVOKE = 64 +pkg syscall (darwin-386), const NOTE_SECONDS = 1 +pkg syscall (darwin-386), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-386), const NOTE_TRACK = 1 +pkg syscall (darwin-386), const NOTE_TRACKERR = 2 +pkg syscall (darwin-386), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-386), const NOTE_USECONDS = 2 +pkg syscall (darwin-386), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-386), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-386), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-386), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-386), const NOTE_WRITE = 2 +pkg syscall (darwin-386), const OCRNL = 16 +pkg syscall (darwin-386), const OCRNL ideal-int +pkg syscall (darwin-386), const OFDEL = 131072 +pkg syscall (darwin-386), const OFDEL ideal-int +pkg syscall (darwin-386), const OFILL = 128 +pkg syscall (darwin-386), const OFILL ideal-int +pkg syscall (darwin-386), const ONLCR = 2 +pkg syscall (darwin-386), const ONLCR ideal-int +pkg syscall (darwin-386), const ONLRET = 64 +pkg syscall (darwin-386), const ONLRET ideal-int +pkg syscall (darwin-386), const ONOCR = 32 +pkg syscall (darwin-386), const ONOCR ideal-int +pkg syscall (darwin-386), const ONOEOT = 8 +pkg syscall (darwin-386), const ONOEOT ideal-int +pkg syscall (darwin-386), const OPOST = 1 +pkg syscall (darwin-386), const OPOST ideal-int +pkg syscall (darwin-386), const O_ACCMODE = 3 +pkg syscall (darwin-386), const O_ALERT = 536870912 +pkg syscall (darwin-386), const O_APPEND = 8 +pkg syscall (darwin-386), const O_ASYNC = 64 +pkg syscall (darwin-386), const O_CLOEXEC = 16777216 +pkg syscall (darwin-386), const O_CREAT = 512 +pkg syscall (darwin-386), const O_DIRECTORY = 1048576 +pkg syscall (darwin-386), const O_DSYNC = 4194304 +pkg syscall (darwin-386), const O_EVTONLY = 32768 +pkg syscall (darwin-386), const O_EXCL = 2048 +pkg syscall (darwin-386), const O_EXLOCK = 32 +pkg syscall (darwin-386), const O_FSYNC = 128 +pkg syscall (darwin-386), const O_NDELAY = 4 +pkg syscall (darwin-386), const O_NOCTTY = 131072 +pkg syscall (darwin-386), const O_NOFOLLOW = 256 +pkg syscall (darwin-386), const O_NONBLOCK = 4 +pkg syscall (darwin-386), const O_POPUP = 2147483648 +pkg syscall (darwin-386), const O_SHLOCK = 16 +pkg syscall (darwin-386), const O_SYMLINK = 2097152 +pkg syscall (darwin-386), const O_SYNC = 128 +pkg syscall (darwin-386), const O_TRUNC = 1024 +pkg syscall (darwin-386), const PARENB = 4096 +pkg syscall (darwin-386), const PARENB ideal-int +pkg syscall (darwin-386), const PARMRK = 8 +pkg syscall (darwin-386), const PARMRK ideal-int +pkg syscall (darwin-386), const PARODD = 8192 +pkg syscall (darwin-386), const PARODD ideal-int +pkg syscall (darwin-386), const PENDIN = 536870912 +pkg syscall (darwin-386), const PENDIN ideal-int +pkg syscall (darwin-386), const PROT_EXEC = 4 +pkg syscall (darwin-386), const PROT_NONE = 0 +pkg syscall (darwin-386), const PROT_READ = 1 +pkg syscall (darwin-386), const PROT_WRITE = 2 +pkg syscall (darwin-386), const PTRACE_CONT = 7 +pkg syscall (darwin-386), const PTRACE_KILL = 8 +pkg syscall (darwin-386), const PTRACE_TRACEME = 0 +pkg syscall (darwin-386), const PT_ATTACH = 10 +pkg syscall (darwin-386), const PT_ATTACHEXC = 14 +pkg syscall (darwin-386), const PT_CONTINUE = 7 +pkg syscall (darwin-386), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-386), const PT_DETACH = 11 +pkg syscall (darwin-386), const PT_FIRSTMACH = 32 +pkg syscall (darwin-386), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-386), const PT_KILL = 8 +pkg syscall (darwin-386), const PT_READ_D = 2 +pkg syscall (darwin-386), const PT_READ_I = 1 +pkg syscall (darwin-386), const PT_READ_U = 3 +pkg syscall (darwin-386), const PT_SIGEXC = 12 +pkg syscall (darwin-386), const PT_STEP = 9 +pkg syscall (darwin-386), const PT_THUPDATE = 13 +pkg syscall (darwin-386), const PT_TRACE_ME = 0 +pkg syscall (darwin-386), const PT_WRITE_D = 5 +pkg syscall (darwin-386), const PT_WRITE_I = 4 +pkg syscall (darwin-386), const PT_WRITE_U = 6 +pkg syscall (darwin-386), const RLIMIT_AS = 5 +pkg syscall (darwin-386), const RLIMIT_CORE = 4 +pkg syscall (darwin-386), const RLIMIT_CPU = 0 +pkg syscall (darwin-386), const RLIMIT_DATA = 2 +pkg syscall (darwin-386), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-386), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-386), const RLIMIT_STACK = 3 +pkg syscall (darwin-386), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-386), const RTAX_AUTHOR = 6 +pkg syscall (darwin-386), const RTAX_BRD = 7 +pkg syscall (darwin-386), const RTAX_DST = 0 +pkg syscall (darwin-386), const RTAX_GATEWAY = 1 +pkg syscall (darwin-386), const RTAX_GENMASK = 3 +pkg syscall (darwin-386), const RTAX_IFA = 5 +pkg syscall (darwin-386), const RTAX_IFP = 4 +pkg syscall (darwin-386), const RTAX_MAX = 8 +pkg syscall (darwin-386), const RTAX_NETMASK = 2 +pkg syscall (darwin-386), const RTA_AUTHOR = 64 +pkg syscall (darwin-386), const RTA_BRD = 128 +pkg syscall (darwin-386), const RTA_DST = 1 +pkg syscall (darwin-386), const RTA_GATEWAY = 2 +pkg syscall (darwin-386), const RTA_GENMASK = 8 +pkg syscall (darwin-386), const RTA_IFA = 32 +pkg syscall (darwin-386), const RTA_IFP = 16 +pkg syscall (darwin-386), const RTA_NETMASK = 4 +pkg syscall (darwin-386), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-386), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-386), const RTF_CLONING = 256 +pkg syscall (darwin-386), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-386), const RTF_DELCLONE = 128 +pkg syscall (darwin-386), const RTF_DONE = 64 +pkg syscall (darwin-386), const RTF_DYNAMIC = 16 +pkg syscall (darwin-386), const RTF_GATEWAY = 2 +pkg syscall (darwin-386), const RTF_HOST = 4 +pkg syscall (darwin-386), const RTF_IFREF = 67108864 +pkg syscall (darwin-386), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-386), const RTF_LLINFO = 1024 +pkg syscall (darwin-386), const RTF_LOCAL = 2097152 +pkg syscall (darwin-386), const RTF_MODIFIED = 32 +pkg syscall (darwin-386), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-386), const RTF_PINNED = 1048576 +pkg syscall (darwin-386), const RTF_PRCLONING = 65536 +pkg syscall (darwin-386), const RTF_PROTO1 = 32768 +pkg syscall (darwin-386), const RTF_PROTO2 = 16384 +pkg syscall (darwin-386), const RTF_PROTO3 = 262144 +pkg syscall (darwin-386), const RTF_REJECT = 8 +pkg syscall (darwin-386), const RTF_STATIC = 2048 +pkg syscall (darwin-386), const RTF_UP = 1 +pkg syscall (darwin-386), const RTF_WASCLONED = 131072 +pkg syscall (darwin-386), const RTF_XRESOLVE = 512 +pkg syscall (darwin-386), const RTM_ADD = 1 +pkg syscall (darwin-386), const RTM_CHANGE = 3 +pkg syscall (darwin-386), const RTM_DELADDR = 13 +pkg syscall (darwin-386), const RTM_DELETE = 2 +pkg syscall (darwin-386), const RTM_DELMADDR = 16 +pkg syscall (darwin-386), const RTM_GET = 4 +pkg syscall (darwin-386), const RTM_GET2 = 20 +pkg syscall (darwin-386), const RTM_IFINFO = 14 +pkg syscall (darwin-386), const RTM_IFINFO2 = 18 +pkg syscall (darwin-386), const RTM_LOCK = 8 +pkg syscall (darwin-386), const RTM_LOSING = 5 +pkg syscall (darwin-386), const RTM_MISS = 7 +pkg syscall (darwin-386), const RTM_NEWADDR = 12 +pkg syscall (darwin-386), const RTM_NEWMADDR = 15 +pkg syscall (darwin-386), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-386), const RTM_OLDADD = 9 +pkg syscall (darwin-386), const RTM_OLDDEL = 10 +pkg syscall (darwin-386), const RTM_REDIRECT = 6 +pkg syscall (darwin-386), const RTM_RESOLVE = 11 +pkg syscall (darwin-386), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-386), const RTM_VERSION = 5 +pkg syscall (darwin-386), const RTV_EXPIRE = 4 +pkg syscall (darwin-386), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-386), const RTV_MTU = 1 +pkg syscall (darwin-386), const RTV_RPIPE = 8 +pkg syscall (darwin-386), const RTV_RTT = 64 +pkg syscall (darwin-386), const RTV_RTTVAR = 128 +pkg syscall (darwin-386), const RTV_SPIPE = 16 +pkg syscall (darwin-386), const RTV_SSTHRESH = 32 +pkg syscall (darwin-386), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-386), const RUSAGE_SELF = 0 +pkg syscall (darwin-386), const SCM_CREDS = 3 +pkg syscall (darwin-386), const SCM_RIGHTS = 1 +pkg syscall (darwin-386), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-386), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-386), const SIGBUS = 10 +pkg syscall (darwin-386), const SIGCHLD = 20 +pkg syscall (darwin-386), const SIGCONT = 19 +pkg syscall (darwin-386), const SIGEMT = 7 +pkg syscall (darwin-386), const SIGINFO = 29 +pkg syscall (darwin-386), const SIGIO = 23 +pkg syscall (darwin-386), const SIGIOT = 6 +pkg syscall (darwin-386), const SIGPROF = 27 +pkg syscall (darwin-386), const SIGSTOP = 17 +pkg syscall (darwin-386), const SIGSYS = 12 +pkg syscall (darwin-386), const SIGTSTP = 18 +pkg syscall (darwin-386), const SIGTTIN = 21 +pkg syscall (darwin-386), const SIGTTOU = 22 +pkg syscall (darwin-386), const SIGURG = 16 +pkg syscall (darwin-386), const SIGUSR1 = 30 +pkg syscall (darwin-386), const SIGUSR2 = 31 +pkg syscall (darwin-386), const SIGVTALRM = 26 +pkg syscall (darwin-386), const SIGWINCH = 28 +pkg syscall (darwin-386), const SIGXCPU = 24 +pkg syscall (darwin-386), const SIGXFSZ = 25 +pkg syscall (darwin-386), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-386), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-386), const SIOCALIFADDR = 2165860637 +pkg syscall (darwin-386), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-386), const SIOCATMARK = 1074033415 +pkg syscall (darwin-386), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-386), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-386), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-386), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-386), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-386), const SIOCDLIFADDR = 2165860639 +pkg syscall (darwin-386), const SIOCGDRVSPEC = 3223087483 +pkg syscall (darwin-386), const SIOCGETSGCNT = 3222565404 +pkg syscall (darwin-386), const SIOCGETVIFCNT = 3222565403 +pkg syscall (darwin-386), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-386), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-386), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-386), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-386), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-386), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-386), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-386), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-386), const SIOCGIFCONF = 3221776676 +pkg syscall (darwin-386), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-386), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-386), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-386), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-386), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-386), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-386), const SIOCGIFMEDIA = 3223873848 +pkg syscall (darwin-386), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-386), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-386), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-386), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-386), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-386), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-386), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-386), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-386), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-386), const SIOCGLIFADDR = 3239602462 +pkg syscall (darwin-386), const SIOCGLIFPHYADDR = 3239602499 +pkg syscall (darwin-386), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-386), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-386), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-386), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-386), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-386), const SIOCRSLVMULTI = 3221776699 +pkg syscall (darwin-386), const SIOCSDRVSPEC = 2149345659 +pkg syscall (darwin-386), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-386), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-386), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-386), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-386), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-386), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-386), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-386), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-386), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-386), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-386), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-386), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-386), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-386), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-386), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-386), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-386), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-386), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-386), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-386), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-386), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-386), const SIOCSLIFPHYADDR = 2165860674 +pkg syscall (darwin-386), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-386), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-386), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-386), const SOCK_RDM = 4 +pkg syscall (darwin-386), const SOL_SOCKET = 65535 +pkg syscall (darwin-386), const SOMAXCONN = 128 +pkg syscall (darwin-386), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-386), const SO_BROADCAST = 32 +pkg syscall (darwin-386), const SO_DEBUG = 1 +pkg syscall (darwin-386), const SO_DONTROUTE = 16 +pkg syscall (darwin-386), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-386), const SO_ERROR = 4103 +pkg syscall (darwin-386), const SO_KEEPALIVE = 8 +pkg syscall (darwin-386), const SO_LABEL = 4112 +pkg syscall (darwin-386), const SO_LINGER = 128 +pkg syscall (darwin-386), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-386), const SO_NKE = 4129 +pkg syscall (darwin-386), const SO_NOADDRERR = 4131 +pkg syscall (darwin-386), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-386), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-386), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-386), const SO_NREAD = 4128 +pkg syscall (darwin-386), const SO_NWRITE = 4132 +pkg syscall (darwin-386), const SO_OOBINLINE = 256 +pkg syscall (darwin-386), const SO_PEERLABEL = 4113 +pkg syscall (darwin-386), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-386), const SO_RCVBUF = 4098 +pkg syscall (darwin-386), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-386), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-386), const SO_RESTRICTIONS = 4225 +pkg syscall (darwin-386), const SO_RESTRICT_DENYIN = 1 +pkg syscall (darwin-386), const SO_RESTRICT_DENYOUT = 2 +pkg syscall (darwin-386), const SO_RESTRICT_DENYSET = 2147483648 +pkg syscall (darwin-386), const SO_REUSEADDR = 4 +pkg syscall (darwin-386), const SO_REUSEPORT = 512 +pkg syscall (darwin-386), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-386), const SO_SNDBUF = 4097 +pkg syscall (darwin-386), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-386), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-386), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-386), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-386), const SO_TYPE = 4104 +pkg syscall (darwin-386), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-386), const SO_USELOOPBACK = 64 +pkg syscall (darwin-386), const SO_WANTMORE = 16384 +pkg syscall (darwin-386), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-386), const SYS_ACCEPT = 30 +pkg syscall (darwin-386), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-386), const SYS_ACCESS = 33 +pkg syscall (darwin-386), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-386), const SYS_ACCT = 51 +pkg syscall (darwin-386), const SYS_ADD_PROFIL = 176 +pkg syscall (darwin-386), const SYS_ADJTIME = 140 +pkg syscall (darwin-386), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-386), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-386), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-386), const SYS_AIO_READ = 318 +pkg syscall (darwin-386), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-386), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-386), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-386), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-386), const SYS_ATGETMSG = 207 +pkg syscall (darwin-386), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-386), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-386), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-386), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-386), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-386), const SYS_ATSOCKET = 206 +pkg syscall (darwin-386), const SYS_AUDIT = 350 +pkg syscall (darwin-386), const SYS_AUDITCTL = 359 +pkg syscall (darwin-386), const SYS_AUDITON = 351 +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-386), const SYS_BIND = 104 +pkg syscall (darwin-386), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-386), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-386), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-386), const SYS_CHDIR = 12 +pkg syscall (darwin-386), const SYS_CHFLAGS = 34 +pkg syscall (darwin-386), const SYS_CHMOD = 15 +pkg syscall (darwin-386), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-386), const SYS_CHOWN = 16 +pkg syscall (darwin-386), const SYS_CHROOT = 61 +pkg syscall (darwin-386), const SYS_CHUD = 185 +pkg syscall (darwin-386), const SYS_CLOSE = 6 +pkg syscall (darwin-386), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-386), const SYS_CONNECT = 98 +pkg syscall (darwin-386), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-386), const SYS_COPYFILE = 227 +pkg syscall (darwin-386), const SYS_CSOPS = 169 +pkg syscall (darwin-386), const SYS_DELETE = 226 +pkg syscall (darwin-386), const SYS_DUP = 41 +pkg syscall (darwin-386), const SYS_DUP2 = 90 +pkg syscall (darwin-386), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-386), const SYS_EXECVE = 59 +pkg syscall (darwin-386), const SYS_EXIT = 1 +pkg syscall (darwin-386), const SYS_FCHDIR = 13 +pkg syscall (darwin-386), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-386), const SYS_FCHMOD = 124 +pkg syscall (darwin-386), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-386), const SYS_FCHOWN = 123 +pkg syscall (darwin-386), const SYS_FCNTL = 92 +pkg syscall (darwin-386), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-386), const SYS_FDATASYNC = 187 +pkg syscall (darwin-386), const SYS_FFSCTL = 245 +pkg syscall (darwin-386), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-386), const SYS_FGETXATTR = 235 +pkg syscall (darwin-386), const SYS_FHOPEN = 248 +pkg syscall (darwin-386), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-386), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-386), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-386), const SYS_FLOCK = 131 +pkg syscall (darwin-386), const SYS_FORK = 2 +pkg syscall (darwin-386), const SYS_FPATHCONF = 192 +pkg syscall (darwin-386), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-386), const SYS_FSCTL = 242 +pkg syscall (darwin-386), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-386), const SYS_FSETXATTR = 237 +pkg syscall (darwin-386), const SYS_FSGETPATH = 427 +pkg syscall (darwin-386), const SYS_FSTAT = 189 +pkg syscall (darwin-386), const SYS_FSTAT64 = 339 +pkg syscall (darwin-386), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-386), const SYS_FSTATFS = 158 +pkg syscall (darwin-386), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-386), const SYS_FSTATV = 219 +pkg syscall (darwin-386), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-386), const SYS_FSYNC = 95 +pkg syscall (darwin-386), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-386), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-386), const SYS_FUTIMES = 139 +pkg syscall (darwin-386), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-386), const SYS_GETAUDIT = 355 +pkg syscall (darwin-386), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-386), const SYS_GETAUID = 353 +pkg syscall (darwin-386), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-386), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-386), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-386), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-386), const SYS_GETEGID = 43 +pkg syscall (darwin-386), const SYS_GETEUID = 25 +pkg syscall (darwin-386), const SYS_GETFH = 161 +pkg syscall (darwin-386), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-386), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-386), const SYS_GETGID = 47 +pkg syscall (darwin-386), const SYS_GETGROUPS = 79 +pkg syscall (darwin-386), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-386), const SYS_GETITIMER = 86 +pkg syscall (darwin-386), const SYS_GETLCID = 395 +pkg syscall (darwin-386), const SYS_GETLOGIN = 49 +pkg syscall (darwin-386), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-386), const SYS_GETPGID = 151 +pkg syscall (darwin-386), const SYS_GETPGRP = 81 +pkg syscall (darwin-386), const SYS_GETPID = 20 +pkg syscall (darwin-386), const SYS_GETPPID = 39 +pkg syscall (darwin-386), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-386), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-386), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-386), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-386), const SYS_GETSID = 310 +pkg syscall (darwin-386), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-386), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-386), const SYS_GETTID = 286 +pkg syscall (darwin-386), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-386), const SYS_GETUID = 24 +pkg syscall (darwin-386), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-386), const SYS_GETXATTR = 234 +pkg syscall (darwin-386), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-386), const SYS_INITGROUPS = 243 +pkg syscall (darwin-386), const SYS_IOCTL = 54 +pkg syscall (darwin-386), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-386), const SYS_ISSETUGID = 327 +pkg syscall (darwin-386), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-386), const SYS_KEVENT = 363 +pkg syscall (darwin-386), const SYS_KEVENT64 = 369 +pkg syscall (darwin-386), const SYS_KILL = 37 +pkg syscall (darwin-386), const SYS_KQUEUE = 362 +pkg syscall (darwin-386), const SYS_LCHOWN = 364 +pkg syscall (darwin-386), const SYS_LINK = 9 +pkg syscall (darwin-386), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-386), const SYS_LISTEN = 106 +pkg syscall (darwin-386), const SYS_LISTXATTR = 240 +pkg syscall (darwin-386), const SYS_LSEEK = 199 +pkg syscall (darwin-386), const SYS_LSTAT = 190 +pkg syscall (darwin-386), const SYS_LSTAT64 = 340 +pkg syscall (darwin-386), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-386), const SYS_LSTATV = 218 +pkg syscall (darwin-386), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-386), const SYS_MADVISE = 75 +pkg syscall (darwin-386), const SYS_MAXSYSCALL = 439 +pkg syscall (darwin-386), const SYS_MINCORE = 78 +pkg syscall (darwin-386), const SYS_MINHERIT = 250 +pkg syscall (darwin-386), const SYS_MKCOMPLEX = 216 +pkg syscall (darwin-386), const SYS_MKDIR = 136 +pkg syscall (darwin-386), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-386), const SYS_MKFIFO = 132 +pkg syscall (darwin-386), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-386), const SYS_MKNOD = 14 +pkg syscall (darwin-386), const SYS_MLOCK = 203 +pkg syscall (darwin-386), const SYS_MLOCKALL = 324 +pkg syscall (darwin-386), const SYS_MMAP = 197 +pkg syscall (darwin-386), const SYS_MODWATCH = 233 +pkg syscall (darwin-386), const SYS_MOUNT = 167 +pkg syscall (darwin-386), const SYS_MPROTECT = 74 +pkg syscall (darwin-386), const SYS_MSGCTL = 258 +pkg syscall (darwin-386), const SYS_MSGGET = 259 +pkg syscall (darwin-386), const SYS_MSGRCV = 261 +pkg syscall (darwin-386), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-386), const SYS_MSGSND = 260 +pkg syscall (darwin-386), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-386), const SYS_MSGSYS = 252 +pkg syscall (darwin-386), const SYS_MSYNC = 65 +pkg syscall (darwin-386), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-386), const SYS_MUNLOCK = 204 +pkg syscall (darwin-386), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-386), const SYS_MUNMAP = 73 +pkg syscall (darwin-386), const SYS_NFSCLNT = 247 +pkg syscall (darwin-386), const SYS_NFSSVC = 155 +pkg syscall (darwin-386), const SYS_OPEN = 5 +pkg syscall (darwin-386), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-386), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-386), const SYS_PATHCONF = 191 +pkg syscall (darwin-386), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-386), const SYS_PID_RESUME = 434 +pkg syscall (darwin-386), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-386), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-386), const SYS_PIPE = 42 +pkg syscall (darwin-386), const SYS_POLL = 230 +pkg syscall (darwin-386), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-386), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-386), const SYS_PREAD = 153 +pkg syscall (darwin-386), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-386), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-386), const SYS_PROC_INFO = 336 +pkg syscall (darwin-386), const SYS_PROFIL = 44 +pkg syscall (darwin-386), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-386), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-386), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-386), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-386), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-386), const SYS_PTRACE = 26 +pkg syscall (darwin-386), const SYS_PWRITE = 154 +pkg syscall (darwin-386), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-386), const SYS_QUOTACTL = 165 +pkg syscall (darwin-386), const SYS_READ = 3 +pkg syscall (darwin-386), const SYS_READLINK = 58 +pkg syscall (darwin-386), const SYS_READV = 120 +pkg syscall (darwin-386), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-386), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-386), const SYS_REBOOT = 55 +pkg syscall (darwin-386), const SYS_RECVFROM = 29 +pkg syscall (darwin-386), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-386), const SYS_RECVMSG = 27 +pkg syscall (darwin-386), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-386), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-386), const SYS_RENAME = 128 +pkg syscall (darwin-386), const SYS_REVOKE = 56 +pkg syscall (darwin-386), const SYS_RMDIR = 137 +pkg syscall (darwin-386), const SYS_SEARCHFS = 225 +pkg syscall (darwin-386), const SYS_SELECT = 93 +pkg syscall (darwin-386), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-386), const SYS_SEMCTL = 254 +pkg syscall (darwin-386), const SYS_SEMGET = 255 +pkg syscall (darwin-386), const SYS_SEMOP = 256 +pkg syscall (darwin-386), const SYS_SEMSYS = 251 +pkg syscall (darwin-386), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-386), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-386), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-386), const SYS_SEM_INIT = 275 +pkg syscall (darwin-386), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-386), const SYS_SEM_POST = 273 +pkg syscall (darwin-386), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-386), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-386), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-386), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-386), const SYS_SENDFILE = 337 +pkg syscall (darwin-386), const SYS_SENDMSG = 28 +pkg syscall (darwin-386), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-386), const SYS_SENDTO = 133 +pkg syscall (darwin-386), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-386), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-386), const SYS_SETAUDIT = 356 +pkg syscall (darwin-386), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-386), const SYS_SETAUID = 354 +pkg syscall (darwin-386), const SYS_SETEGID = 182 +pkg syscall (darwin-386), const SYS_SETEUID = 183 +pkg syscall (darwin-386), const SYS_SETGID = 181 +pkg syscall (darwin-386), const SYS_SETGROUPS = 80 +pkg syscall (darwin-386), const SYS_SETITIMER = 83 +pkg syscall (darwin-386), const SYS_SETLCID = 394 +pkg syscall (darwin-386), const SYS_SETLOGIN = 50 +pkg syscall (darwin-386), const SYS_SETPGID = 82 +pkg syscall (darwin-386), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-386), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-386), const SYS_SETREGID = 127 +pkg syscall (darwin-386), const SYS_SETREUID = 126 +pkg syscall (darwin-386), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-386), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-386), const SYS_SETSID = 147 +pkg syscall (darwin-386), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-386), const SYS_SETTID = 285 +pkg syscall (darwin-386), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-386), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-386), const SYS_SETUID = 23 +pkg syscall (darwin-386), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-386), const SYS_SETXATTR = 236 +pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-386), const SYS_SHMAT = 262 +pkg syscall (darwin-386), const SYS_SHMCTL = 263 +pkg syscall (darwin-386), const SYS_SHMDT = 264 +pkg syscall (darwin-386), const SYS_SHMGET = 265 +pkg syscall (darwin-386), const SYS_SHMSYS = 253 +pkg syscall (darwin-386), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-386), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-386), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-386), const SYS_SIGACTION = 46 +pkg syscall (darwin-386), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-386), const SYS_SIGPENDING = 52 +pkg syscall (darwin-386), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-386), const SYS_SIGRETURN = 184 +pkg syscall (darwin-386), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-386), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-386), const SYS_SOCKET = 97 +pkg syscall (darwin-386), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-386), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-386), const SYS_STAT = 188 +pkg syscall (darwin-386), const SYS_STAT64 = 338 +pkg syscall (darwin-386), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-386), const SYS_STATFS = 157 +pkg syscall (darwin-386), const SYS_STATFS64 = 345 +pkg syscall (darwin-386), const SYS_STATV = 217 +pkg syscall (darwin-386), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-386), const SYS_SWAPON = 85 +pkg syscall (darwin-386), const SYS_SYMLINK = 57 +pkg syscall (darwin-386), const SYS_SYNC = 36 +pkg syscall (darwin-386), const SYS_SYSCALL = 0 +pkg syscall (darwin-386), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-386), const SYS_TRUNCATE = 200 +pkg syscall (darwin-386), const SYS_UMASK = 60 +pkg syscall (darwin-386), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-386), const SYS_UNDELETE = 205 +pkg syscall (darwin-386), const SYS_UNLINK = 10 +pkg syscall (darwin-386), const SYS_UNMOUNT = 159 +pkg syscall (darwin-386), const SYS_UTIMES = 138 +pkg syscall (darwin-386), const SYS_VFORK = 66 +pkg syscall (darwin-386), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-386), const SYS_WAIT4 = 7 +pkg syscall (darwin-386), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-386), const SYS_WAITEVENT = 232 +pkg syscall (darwin-386), const SYS_WAITID = 173 +pkg syscall (darwin-386), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-386), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-386), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-386), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-386), const SYS_WRITE = 4 +pkg syscall (darwin-386), const SYS_WRITEV = 121 +pkg syscall (darwin-386), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-386), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-386), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-386), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-386), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-386), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-386), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-386), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-386), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-386), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-386), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-386), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-386), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-386), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-386), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-386), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-386), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-386), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-386), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-386), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-386), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-386), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-386), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-386), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-386), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-386), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-386), const SYS___SIGWAIT = 330 +pkg syscall (darwin-386), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-386), const SYS___SYSCTL = 202 +pkg syscall (darwin-386), const S_IEXEC = 64 +pkg syscall (darwin-386), const S_IFMT = 61440 +pkg syscall (darwin-386), const S_IFWHT = 57344 +pkg syscall (darwin-386), const S_IREAD = 256 +pkg syscall (darwin-386), const S_IRGRP = 32 +pkg syscall (darwin-386), const S_IROTH = 4 +pkg syscall (darwin-386), const S_IRWXG = 56 +pkg syscall (darwin-386), const S_IRWXO = 7 +pkg syscall (darwin-386), const S_IRWXU = 448 +pkg syscall (darwin-386), const S_ISTXT = 512 +pkg syscall (darwin-386), const S_IWGRP = 16 +pkg syscall (darwin-386), const S_IWOTH = 2 +pkg syscall (darwin-386), const S_IWRITE = 128 +pkg syscall (darwin-386), const S_IXGRP = 8 +pkg syscall (darwin-386), const S_IXOTH = 1 +pkg syscall (darwin-386), const SizeofBpfHdr = 20 +pkg syscall (darwin-386), const SizeofBpfInsn = 8 +pkg syscall (darwin-386), const SizeofBpfProgram = 8 +pkg syscall (darwin-386), const SizeofBpfStat = 8 +pkg syscall (darwin-386), const SizeofBpfVersion = 4 +pkg syscall (darwin-386), const SizeofCmsghdr = 12 +pkg syscall (darwin-386), const SizeofIPMreq = 8 +pkg syscall (darwin-386), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-386), const SizeofIfData = 96 +pkg syscall (darwin-386), const SizeofIfMsghdr = 112 +pkg syscall (darwin-386), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-386), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-386), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-386), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-386), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-386), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-386), const SizeofLinger = 8 +pkg syscall (darwin-386), const SizeofMsghdr = 28 +pkg syscall (darwin-386), const SizeofRtMetrics = 56 +pkg syscall (darwin-386), const SizeofRtMsghdr = 92 +pkg syscall (darwin-386), const SizeofSockaddrAny = 108 +pkg syscall (darwin-386), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-386), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-386), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-386), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-386), const TCIFLUSH = 1 +pkg syscall (darwin-386), const TCIFLUSH ideal-int +pkg syscall (darwin-386), const TCIOFLUSH = 3 +pkg syscall (darwin-386), const TCIOFLUSH ideal-int +pkg syscall (darwin-386), const TCOFLUSH = 2 +pkg syscall (darwin-386), const TCOFLUSH ideal-int +pkg syscall (darwin-386), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-386), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-386), const TCP_MAXHLEN = 60 +pkg syscall (darwin-386), const TCP_MAXOLEN = 40 +pkg syscall (darwin-386), const TCP_MAXSEG = 2 +pkg syscall (darwin-386), const TCP_MAXWIN = 65535 +pkg syscall (darwin-386), const TCP_MAX_SACK = 3 +pkg syscall (darwin-386), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-386), const TCP_MINMSS = 216 +pkg syscall (darwin-386), const TCP_MINMSSOVERLOAD = 1000 +pkg syscall (darwin-386), const TCP_MSS = 512 +pkg syscall (darwin-386), const TCP_NOOPT = 8 +pkg syscall (darwin-386), const TCP_NOPUSH = 4 +pkg syscall (darwin-386), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-386), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-386), const TCSAFLUSH = 2 +pkg syscall (darwin-386), const TCSAFLUSH ideal-int +pkg syscall (darwin-386), const TIOCCBRK = 536900730 +pkg syscall (darwin-386), const TIOCCDTR = 536900728 +pkg syscall (darwin-386), const TIOCCONS = 2147775586 +pkg syscall (darwin-386), const TIOCDCDTIMESTAMP = 1074295896 +pkg syscall (darwin-386), const TIOCDRAIN = 536900702 +pkg syscall (darwin-386), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-386), const TIOCEXCL = 536900621 +pkg syscall (darwin-386), const TIOCEXT = 2147775584 +pkg syscall (darwin-386), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-386), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-386), const TIOCGETA = 1076655123 +pkg syscall (darwin-386), const TIOCGETD = 1074033690 +pkg syscall (darwin-386), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-386), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-386), const TIOCIXOFF = 536900736 +pkg syscall (darwin-386), const TIOCIXON = 536900737 +pkg syscall (darwin-386), const TIOCMBIC = 2147775595 +pkg syscall (darwin-386), const TIOCMBIS = 2147775596 +pkg syscall (darwin-386), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-386), const TIOCMGET = 1074033770 +pkg syscall (darwin-386), const TIOCMODG = 1074033667 +pkg syscall (darwin-386), const TIOCMODS = 2147775492 +pkg syscall (darwin-386), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-386), const TIOCMSET = 2147775597 +pkg syscall (darwin-386), const TIOCM_CAR = 64 +pkg syscall (darwin-386), const TIOCM_CD = 64 +pkg syscall (darwin-386), const TIOCM_CTS = 32 +pkg syscall (darwin-386), const TIOCM_DSR = 256 +pkg syscall (darwin-386), const TIOCM_DTR = 2 +pkg syscall (darwin-386), const TIOCM_LE = 1 +pkg syscall (darwin-386), const TIOCM_RI = 128 +pkg syscall (darwin-386), const TIOCM_RNG = 128 +pkg syscall (darwin-386), const TIOCM_RTS = 4 +pkg syscall (darwin-386), const TIOCM_SR = 16 +pkg syscall (darwin-386), const TIOCM_ST = 8 +pkg syscall (darwin-386), const TIOCNOTTY = 536900721 +pkg syscall (darwin-386), const TIOCNXCL = 536900622 +pkg syscall (darwin-386), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-386), const TIOCPKT = 2147775600 +pkg syscall (darwin-386), const TIOCPKT_DATA = 0 +pkg syscall (darwin-386), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-386), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-386), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-386), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-386), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-386), const TIOCPKT_START = 8 +pkg syscall (darwin-386), const TIOCPKT_STOP = 4 +pkg syscall (darwin-386), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-386), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-386), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-386), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-386), const TIOCSBRK = 536900731 +pkg syscall (darwin-386), const TIOCSCONS = 536900707 +pkg syscall (darwin-386), const TIOCSCTTY = 536900705 +pkg syscall (darwin-386), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-386), const TIOCSDTR = 536900729 +pkg syscall (darwin-386), const TIOCSETA = 2150396948 +pkg syscall (darwin-386), const TIOCSETAF = 2150396950 +pkg syscall (darwin-386), const TIOCSETAW = 2150396949 +pkg syscall (darwin-386), const TIOCSETD = 2147775515 +pkg syscall (darwin-386), const TIOCSIG = 536900703 +pkg syscall (darwin-386), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-386), const TIOCSTART = 536900718 +pkg syscall (darwin-386), const TIOCSTAT = 536900709 +pkg syscall (darwin-386), const TIOCSTI = 2147578994 +pkg syscall (darwin-386), const TIOCSTOP = 536900719 +pkg syscall (darwin-386), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-386), const TIOCTIMESTAMP = 1074295897 +pkg syscall (darwin-386), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-386), const TOSTOP = 4194304 +pkg syscall (darwin-386), const TOSTOP ideal-int +pkg syscall (darwin-386), const VDISCARD = 15 +pkg syscall (darwin-386), const VDISCARD ideal-int +pkg syscall (darwin-386), const VDSUSP = 11 +pkg syscall (darwin-386), const VDSUSP ideal-int +pkg syscall (darwin-386), const VEOF = 0 +pkg syscall (darwin-386), const VEOF ideal-int +pkg syscall (darwin-386), const VEOL = 1 +pkg syscall (darwin-386), const VEOL ideal-int +pkg syscall (darwin-386), const VEOL2 = 2 +pkg syscall (darwin-386), const VEOL2 ideal-int +pkg syscall (darwin-386), const VERASE = 3 +pkg syscall (darwin-386), const VERASE ideal-int +pkg syscall (darwin-386), const VINTR = 8 +pkg syscall (darwin-386), const VINTR ideal-int +pkg syscall (darwin-386), const VKILL = 5 +pkg syscall (darwin-386), const VKILL ideal-int +pkg syscall (darwin-386), const VLNEXT = 14 +pkg syscall (darwin-386), const VLNEXT ideal-int +pkg syscall (darwin-386), const VMIN = 16 +pkg syscall (darwin-386), const VMIN ideal-int +pkg syscall (darwin-386), const VQUIT = 9 +pkg syscall (darwin-386), const VQUIT ideal-int +pkg syscall (darwin-386), const VREPRINT = 6 +pkg syscall (darwin-386), const VREPRINT ideal-int +pkg syscall (darwin-386), const VSTART = 12 +pkg syscall (darwin-386), const VSTART ideal-int +pkg syscall (darwin-386), const VSTATUS = 18 +pkg syscall (darwin-386), const VSTATUS ideal-int +pkg syscall (darwin-386), const VSTOP = 13 +pkg syscall (darwin-386), const VSTOP ideal-int +pkg syscall (darwin-386), const VSUSP = 10 +pkg syscall (darwin-386), const VSUSP ideal-int +pkg syscall (darwin-386), const VT0 = 0 +pkg syscall (darwin-386), const VT0 ideal-int +pkg syscall (darwin-386), const VT1 = 65536 +pkg syscall (darwin-386), const VT1 ideal-int +pkg syscall (darwin-386), const VTDLY = 65536 +pkg syscall (darwin-386), const VTDLY ideal-int +pkg syscall (darwin-386), const VTIME = 17 +pkg syscall (darwin-386), const VTIME ideal-int +pkg syscall (darwin-386), const VWERASE = 4 +pkg syscall (darwin-386), const VWERASE ideal-int +pkg syscall (darwin-386), const WCONTINUED = 16 +pkg syscall (darwin-386), const WCOREFLAG = 128 +pkg syscall (darwin-386), const WEXITED = 4 +pkg syscall (darwin-386), const WNOHANG = 1 +pkg syscall (darwin-386), const WNOWAIT = 32 +pkg syscall (darwin-386), const WORDSIZE = 32 +pkg syscall (darwin-386), const WSTOPPED = 8 +pkg syscall (darwin-386), const WUNTRACED = 2 +pkg syscall (darwin-386), func Fchflags(int, int) error +pkg syscall (darwin-386), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-386), type Inet4Pktinfo struct +pkg syscall (darwin-386), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-386), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-386), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-386), type Termios struct +pkg syscall (darwin-386), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-386), type Termios struct, Cflag uint32 +pkg syscall (darwin-386), type Termios struct, Iflag uint32 +pkg syscall (darwin-386), type Termios struct, Ispeed uint32 +pkg syscall (darwin-386), type Termios struct, Lflag uint32 +pkg syscall (darwin-386), type Termios struct, Oflag uint32 +pkg syscall (darwin-386), type Termios struct, Ospeed uint32 +pkg syscall (darwin-386-cgo), const AF_APPLETALK = 16 +pkg syscall (darwin-386-cgo), const AF_CCITT = 10 +pkg syscall (darwin-386-cgo), const AF_CHAOS = 5 +pkg syscall (darwin-386-cgo), const AF_CNT = 21 +pkg syscall (darwin-386-cgo), const AF_COIP = 20 +pkg syscall (darwin-386-cgo), const AF_DATAKIT = 9 +pkg syscall (darwin-386-cgo), const AF_DECnet = 12 +pkg syscall (darwin-386-cgo), const AF_DLI = 13 +pkg syscall (darwin-386-cgo), const AF_E164 = 28 +pkg syscall (darwin-386-cgo), const AF_ECMA = 8 +pkg syscall (darwin-386-cgo), const AF_HYLINK = 15 +pkg syscall (darwin-386-cgo), const AF_IEEE80211 = 37 +pkg syscall (darwin-386-cgo), const AF_IMPLINK = 3 +pkg syscall (darwin-386-cgo), const AF_INET6 = 30 +pkg syscall (darwin-386-cgo), const AF_IPX = 23 +pkg syscall (darwin-386-cgo), const AF_ISDN = 28 +pkg syscall (darwin-386-cgo), const AF_ISO = 7 +pkg syscall (darwin-386-cgo), const AF_LAT = 14 +pkg syscall (darwin-386-cgo), const AF_LINK = 18 +pkg syscall (darwin-386-cgo), const AF_LOCAL = 1 +pkg syscall (darwin-386-cgo), const AF_MAX = 38 +pkg syscall (darwin-386-cgo), const AF_NATM = 31 +pkg syscall (darwin-386-cgo), const AF_NDRV = 27 +pkg syscall (darwin-386-cgo), const AF_NETBIOS = 33 +pkg syscall (darwin-386-cgo), const AF_NS = 6 +pkg syscall (darwin-386-cgo), const AF_OSI = 7 +pkg syscall (darwin-386-cgo), const AF_PPP = 34 +pkg syscall (darwin-386-cgo), const AF_PUP = 4 +pkg syscall (darwin-386-cgo), const AF_RESERVED_36 = 36 +pkg syscall (darwin-386-cgo), const AF_ROUTE = 17 +pkg syscall (darwin-386-cgo), const AF_SIP = 24 +pkg syscall (darwin-386-cgo), const AF_SNA = 11 +pkg syscall (darwin-386-cgo), const AF_SYSTEM = 32 +pkg syscall (darwin-386-cgo), const B0 = 0 +pkg syscall (darwin-386-cgo), const B0 ideal-int +pkg syscall (darwin-386-cgo), const B110 = 110 +pkg syscall (darwin-386-cgo), const B110 ideal-int +pkg syscall (darwin-386-cgo), const B115200 = 115200 +pkg syscall (darwin-386-cgo), const B115200 ideal-int +pkg syscall (darwin-386-cgo), const B1200 = 1200 +pkg syscall (darwin-386-cgo), const B1200 ideal-int +pkg syscall (darwin-386-cgo), const B134 = 134 +pkg syscall (darwin-386-cgo), const B134 ideal-int +pkg syscall (darwin-386-cgo), const B14400 = 14400 +pkg syscall (darwin-386-cgo), const B14400 ideal-int +pkg syscall (darwin-386-cgo), const B150 = 150 +pkg syscall (darwin-386-cgo), const B150 ideal-int +pkg syscall (darwin-386-cgo), const B1800 = 1800 +pkg syscall (darwin-386-cgo), const B1800 ideal-int +pkg syscall (darwin-386-cgo), const B19200 = 19200 +pkg syscall (darwin-386-cgo), const B19200 ideal-int +pkg syscall (darwin-386-cgo), const B200 = 200 +pkg syscall (darwin-386-cgo), const B200 ideal-int +pkg syscall (darwin-386-cgo), const B230400 = 230400 +pkg syscall (darwin-386-cgo), const B230400 ideal-int +pkg syscall (darwin-386-cgo), const B2400 = 2400 +pkg syscall (darwin-386-cgo), const B2400 ideal-int +pkg syscall (darwin-386-cgo), const B28800 = 28800 +pkg syscall (darwin-386-cgo), const B28800 ideal-int +pkg syscall (darwin-386-cgo), const B300 = 300 +pkg syscall (darwin-386-cgo), const B300 ideal-int +pkg syscall (darwin-386-cgo), const B38400 = 38400 +pkg syscall (darwin-386-cgo), const B38400 ideal-int +pkg syscall (darwin-386-cgo), const B4800 = 4800 +pkg syscall (darwin-386-cgo), const B4800 ideal-int +pkg syscall (darwin-386-cgo), const B50 = 50 +pkg syscall (darwin-386-cgo), const B50 ideal-int +pkg syscall (darwin-386-cgo), const B57600 = 57600 +pkg syscall (darwin-386-cgo), const B57600 ideal-int +pkg syscall (darwin-386-cgo), const B600 = 600 +pkg syscall (darwin-386-cgo), const B600 ideal-int +pkg syscall (darwin-386-cgo), const B7200 = 7200 +pkg syscall (darwin-386-cgo), const B7200 ideal-int +pkg syscall (darwin-386-cgo), const B75 = 75 +pkg syscall (darwin-386-cgo), const B75 ideal-int +pkg syscall (darwin-386-cgo), const B76800 = 76800 +pkg syscall (darwin-386-cgo), const B76800 ideal-int +pkg syscall (darwin-386-cgo), const B9600 = 9600 +pkg syscall (darwin-386-cgo), const B9600 ideal-int +pkg syscall (darwin-386-cgo), const BIOCFLUSH = 536887912 +pkg syscall (darwin-386-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-386-cgo), const BIOCGDLT = 1074020970 +pkg syscall (darwin-386-cgo), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-386-cgo), const BIOCGETIF = 1075855979 +pkg syscall (darwin-386-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-386-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-386-cgo), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (darwin-386-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-386-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-386-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-386-cgo), const BIOCPROMISC = 536887913 +pkg syscall (darwin-386-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-386-cgo), const BIOCSDLT = 2147762808 +pkg syscall (darwin-386-cgo), const BIOCSETF = 2148024935 +pkg syscall (darwin-386-cgo), const BIOCSETIF = 2149597804 +pkg syscall (darwin-386-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-386-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-386-cgo), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (darwin-386-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-386-cgo), const BIOCVERSION = 1074020977 +pkg syscall (darwin-386-cgo), const BPF_A = 16 +pkg syscall (darwin-386-cgo), const BPF_ABS = 32 +pkg syscall (darwin-386-cgo), const BPF_ADD = 0 +pkg syscall (darwin-386-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-386-cgo), const BPF_ALU = 4 +pkg syscall (darwin-386-cgo), const BPF_AND = 80 +pkg syscall (darwin-386-cgo), const BPF_B = 16 +pkg syscall (darwin-386-cgo), const BPF_DIV = 48 +pkg syscall (darwin-386-cgo), const BPF_H = 8 +pkg syscall (darwin-386-cgo), const BPF_IMM = 0 +pkg syscall (darwin-386-cgo), const BPF_IND = 64 +pkg syscall (darwin-386-cgo), const BPF_JA = 0 +pkg syscall (darwin-386-cgo), const BPF_JEQ = 16 +pkg syscall (darwin-386-cgo), const BPF_JGE = 48 +pkg syscall (darwin-386-cgo), const BPF_JGT = 32 +pkg syscall (darwin-386-cgo), const BPF_JMP = 5 +pkg syscall (darwin-386-cgo), const BPF_JSET = 64 +pkg syscall (darwin-386-cgo), const BPF_K = 0 +pkg syscall (darwin-386-cgo), const BPF_LD = 0 +pkg syscall (darwin-386-cgo), const BPF_LDX = 1 +pkg syscall (darwin-386-cgo), const BPF_LEN = 128 +pkg syscall (darwin-386-cgo), const BPF_LSH = 96 +pkg syscall (darwin-386-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-386-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-386-cgo), const BPF_MAXINSNS = 512 +pkg syscall (darwin-386-cgo), const BPF_MEM = 96 +pkg syscall (darwin-386-cgo), const BPF_MEMWORDS = 16 +pkg syscall (darwin-386-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-386-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-386-cgo), const BPF_MISC = 7 +pkg syscall (darwin-386-cgo), const BPF_MSH = 160 +pkg syscall (darwin-386-cgo), const BPF_MUL = 32 +pkg syscall (darwin-386-cgo), const BPF_NEG = 128 +pkg syscall (darwin-386-cgo), const BPF_OR = 64 +pkg syscall (darwin-386-cgo), const BPF_RELEASE = 199606 +pkg syscall (darwin-386-cgo), const BPF_RET = 6 +pkg syscall (darwin-386-cgo), const BPF_RSH = 112 +pkg syscall (darwin-386-cgo), const BPF_ST = 2 +pkg syscall (darwin-386-cgo), const BPF_STX = 3 +pkg syscall (darwin-386-cgo), const BPF_SUB = 16 +pkg syscall (darwin-386-cgo), const BPF_TAX = 0 +pkg syscall (darwin-386-cgo), const BPF_TXA = 128 +pkg syscall (darwin-386-cgo), const BPF_W = 0 +pkg syscall (darwin-386-cgo), const BPF_X = 8 +pkg syscall (darwin-386-cgo), const BRKINT = 2 +pkg syscall (darwin-386-cgo), const BRKINT ideal-int +pkg syscall (darwin-386-cgo), const CFLUSH = 15 +pkg syscall (darwin-386-cgo), const CFLUSH ideal-int +pkg syscall (darwin-386-cgo), const CLOCAL = 32768 +pkg syscall (darwin-386-cgo), const CLOCAL ideal-int +pkg syscall (darwin-386-cgo), const CREAD = 2048 +pkg syscall (darwin-386-cgo), const CREAD ideal-int +pkg syscall (darwin-386-cgo), const CS5 = 0 +pkg syscall (darwin-386-cgo), const CS5 ideal-int +pkg syscall (darwin-386-cgo), const CS6 = 256 +pkg syscall (darwin-386-cgo), const CS6 ideal-int +pkg syscall (darwin-386-cgo), const CS7 = 512 +pkg syscall (darwin-386-cgo), const CS7 ideal-int +pkg syscall (darwin-386-cgo), const CS8 = 768 +pkg syscall (darwin-386-cgo), const CS8 ideal-int +pkg syscall (darwin-386-cgo), const CSIZE = 768 +pkg syscall (darwin-386-cgo), const CSIZE ideal-int +pkg syscall (darwin-386-cgo), const CSTART = 17 +pkg syscall (darwin-386-cgo), const CSTART ideal-int +pkg syscall (darwin-386-cgo), const CSTATUS = 20 +pkg syscall (darwin-386-cgo), const CSTATUS ideal-int +pkg syscall (darwin-386-cgo), const CSTOP = 19 +pkg syscall (darwin-386-cgo), const CSTOP ideal-int +pkg syscall (darwin-386-cgo), const CSTOPB = 1024 +pkg syscall (darwin-386-cgo), const CSTOPB ideal-int +pkg syscall (darwin-386-cgo), const CSUSP = 26 +pkg syscall (darwin-386-cgo), const CSUSP ideal-int +pkg syscall (darwin-386-cgo), const CTL_MAXNAME = 12 +pkg syscall (darwin-386-cgo), const CTL_NET = 4 +pkg syscall (darwin-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-386-cgo), const DLT_ARCNET = 7 +pkg syscall (darwin-386-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-386-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-386-cgo), const DLT_AX25 = 3 +pkg syscall (darwin-386-cgo), const DLT_CHAOS = 5 +pkg syscall (darwin-386-cgo), const DLT_CHDLC = 104 +pkg syscall (darwin-386-cgo), const DLT_C_HDLC = 104 +pkg syscall (darwin-386-cgo), const DLT_EN10MB = 1 +pkg syscall (darwin-386-cgo), const DLT_EN3MB = 2 +pkg syscall (darwin-386-cgo), const DLT_FDDI = 10 +pkg syscall (darwin-386-cgo), const DLT_IEEE802 = 6 +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-386-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-386-cgo), const DLT_LOOP = 108 +pkg syscall (darwin-386-cgo), const DLT_NULL = 0 +pkg syscall (darwin-386-cgo), const DLT_PFLOG = 117 +pkg syscall (darwin-386-cgo), const DLT_PFSYNC = 18 +pkg syscall (darwin-386-cgo), const DLT_PPP = 9 +pkg syscall (darwin-386-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-386-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-386-cgo), const DLT_PRONET = 4 +pkg syscall (darwin-386-cgo), const DLT_RAW = 12 +pkg syscall (darwin-386-cgo), const DLT_SLIP = 8 +pkg syscall (darwin-386-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-386-cgo), const DT_BLK = 6 +pkg syscall (darwin-386-cgo), const DT_CHR = 2 +pkg syscall (darwin-386-cgo), const DT_DIR = 4 +pkg syscall (darwin-386-cgo), const DT_FIFO = 1 +pkg syscall (darwin-386-cgo), const DT_LNK = 10 +pkg syscall (darwin-386-cgo), const DT_REG = 8 +pkg syscall (darwin-386-cgo), const DT_SOCK = 12 +pkg syscall (darwin-386-cgo), const DT_UNKNOWN = 0 +pkg syscall (darwin-386-cgo), const DT_WHT = 14 +pkg syscall (darwin-386-cgo), const E2BIG = 7 +pkg syscall (darwin-386-cgo), const EACCES = 13 +pkg syscall (darwin-386-cgo), const EADDRINUSE = 48 +pkg syscall (darwin-386-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-386-cgo), const EAFNOSUPPORT = 47 +pkg syscall (darwin-386-cgo), const EAGAIN = 35 +pkg syscall (darwin-386-cgo), const EALREADY = 37 +pkg syscall (darwin-386-cgo), const EAUTH = 80 +pkg syscall (darwin-386-cgo), const EBADARCH = 86 +pkg syscall (darwin-386-cgo), const EBADEXEC = 85 +pkg syscall (darwin-386-cgo), const EBADF = 9 +pkg syscall (darwin-386-cgo), const EBADMACHO = 88 +pkg syscall (darwin-386-cgo), const EBADMSG = 94 +pkg syscall (darwin-386-cgo), const EBADRPC = 72 +pkg syscall (darwin-386-cgo), const EBUSY = 16 +pkg syscall (darwin-386-cgo), const ECANCELED = 89 +pkg syscall (darwin-386-cgo), const ECHILD = 10 +pkg syscall (darwin-386-cgo), const ECHO = 8 +pkg syscall (darwin-386-cgo), const ECHOCTL = 64 +pkg syscall (darwin-386-cgo), const ECHOE = 2 +pkg syscall (darwin-386-cgo), const ECHOK = 4 +pkg syscall (darwin-386-cgo), const ECHOKE = 1 +pkg syscall (darwin-386-cgo), const ECHONL = 16 +pkg syscall (darwin-386-cgo), const ECHOPRT = 32 +pkg syscall (darwin-386-cgo), const ECONNABORTED = 53 +pkg syscall (darwin-386-cgo), const ECONNREFUSED = 61 +pkg syscall (darwin-386-cgo), const ECONNRESET = 54 +pkg syscall (darwin-386-cgo), const EDEADLK = 11 +pkg syscall (darwin-386-cgo), const EDESTADDRREQ = 39 +pkg syscall (darwin-386-cgo), const EDEVERR = 83 +pkg syscall (darwin-386-cgo), const EDOM = 33 +pkg syscall (darwin-386-cgo), const EDQUOT = 69 +pkg syscall (darwin-386-cgo), const EEXIST = 17 +pkg syscall (darwin-386-cgo), const EFAULT = 14 +pkg syscall (darwin-386-cgo), const EFBIG = 27 +pkg syscall (darwin-386-cgo), const EFTYPE = 79 +pkg syscall (darwin-386-cgo), const EHOSTDOWN = 64 +pkg syscall (darwin-386-cgo), const EHOSTUNREACH = 65 +pkg syscall (darwin-386-cgo), const EIDRM = 90 +pkg syscall (darwin-386-cgo), const EILSEQ = 92 +pkg syscall (darwin-386-cgo), const EINPROGRESS = 36 +pkg syscall (darwin-386-cgo), const EINTR = 4 +pkg syscall (darwin-386-cgo), const EINVAL = 22 +pkg syscall (darwin-386-cgo), const EIO = 5 +pkg syscall (darwin-386-cgo), const EISCONN = 56 +pkg syscall (darwin-386-cgo), const EISDIR = 21 +pkg syscall (darwin-386-cgo), const ELAST = 105 +pkg syscall (darwin-386-cgo), const ELOOP = 62 +pkg syscall (darwin-386-cgo), const EMFILE = 24 +pkg syscall (darwin-386-cgo), const EMLINK = 31 +pkg syscall (darwin-386-cgo), const EMSGSIZE = 40 +pkg syscall (darwin-386-cgo), const EMULTIHOP = 95 +pkg syscall (darwin-386-cgo), const ENAMETOOLONG = 63 +pkg syscall (darwin-386-cgo), const ENEEDAUTH = 81 +pkg syscall (darwin-386-cgo), const ENETDOWN = 50 +pkg syscall (darwin-386-cgo), const ENETRESET = 52 +pkg syscall (darwin-386-cgo), const ENETUNREACH = 51 +pkg syscall (darwin-386-cgo), const ENFILE = 23 +pkg syscall (darwin-386-cgo), const ENOATTR = 93 +pkg syscall (darwin-386-cgo), const ENOBUFS = 55 +pkg syscall (darwin-386-cgo), const ENODATA = 96 +pkg syscall (darwin-386-cgo), const ENODEV = 19 +pkg syscall (darwin-386-cgo), const ENOEXEC = 8 +pkg syscall (darwin-386-cgo), const ENOLCK = 77 +pkg syscall (darwin-386-cgo), const ENOLINK = 97 +pkg syscall (darwin-386-cgo), const ENOMEM = 12 +pkg syscall (darwin-386-cgo), const ENOMSG = 91 +pkg syscall (darwin-386-cgo), const ENOPOLICY = 103 +pkg syscall (darwin-386-cgo), const ENOPROTOOPT = 42 +pkg syscall (darwin-386-cgo), const ENOSPC = 28 +pkg syscall (darwin-386-cgo), const ENOSR = 98 +pkg syscall (darwin-386-cgo), const ENOSTR = 99 +pkg syscall (darwin-386-cgo), const ENOSYS = 78 +pkg syscall (darwin-386-cgo), const ENOTBLK = 15 +pkg syscall (darwin-386-cgo), const ENOTCONN = 57 +pkg syscall (darwin-386-cgo), const ENOTDIR = 20 +pkg syscall (darwin-386-cgo), const ENOTEMPTY = 66 +pkg syscall (darwin-386-cgo), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-386-cgo), const ENOTSOCK = 38 +pkg syscall (darwin-386-cgo), const ENOTSUP = 45 +pkg syscall (darwin-386-cgo), const ENOTTY = 25 +pkg syscall (darwin-386-cgo), const ENXIO = 6 +pkg syscall (darwin-386-cgo), const EOPNOTSUPP = 102 +pkg syscall (darwin-386-cgo), const EOVERFLOW = 84 +pkg syscall (darwin-386-cgo), const EOWNERDEAD = 105 +pkg syscall (darwin-386-cgo), const EPERM = 1 +pkg syscall (darwin-386-cgo), const EPFNOSUPPORT = 46 +pkg syscall (darwin-386-cgo), const EPIPE = 32 +pkg syscall (darwin-386-cgo), const EPROCLIM = 67 +pkg syscall (darwin-386-cgo), const EPROCUNAVAIL = 76 +pkg syscall (darwin-386-cgo), const EPROGMISMATCH = 75 +pkg syscall (darwin-386-cgo), const EPROGUNAVAIL = 74 +pkg syscall (darwin-386-cgo), const EPROTO = 100 +pkg syscall (darwin-386-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-386-cgo), const EPROTOTYPE = 41 +pkg syscall (darwin-386-cgo), const EPWROFF = 82 +pkg syscall (darwin-386-cgo), const ERANGE = 34 +pkg syscall (darwin-386-cgo), const EREMOTE = 71 +pkg syscall (darwin-386-cgo), const EROFS = 30 +pkg syscall (darwin-386-cgo), const ERPCMISMATCH = 73 +pkg syscall (darwin-386-cgo), const ESHLIBVERS = 87 +pkg syscall (darwin-386-cgo), const ESHUTDOWN = 58 +pkg syscall (darwin-386-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-386-cgo), const ESPIPE = 29 +pkg syscall (darwin-386-cgo), const ESRCH = 3 +pkg syscall (darwin-386-cgo), const ESTALE = 70 +pkg syscall (darwin-386-cgo), const ETIME = 101 +pkg syscall (darwin-386-cgo), const ETIMEDOUT = 60 +pkg syscall (darwin-386-cgo), const ETOOMANYREFS = 59 +pkg syscall (darwin-386-cgo), const ETXTBSY = 26 +pkg syscall (darwin-386-cgo), const EUSERS = 68 +pkg syscall (darwin-386-cgo), const EVFILT_AIO = -3 +pkg syscall (darwin-386-cgo), const EVFILT_FS = -9 +pkg syscall (darwin-386-cgo), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-386-cgo), const EVFILT_PROC = -5 +pkg syscall (darwin-386-cgo), const EVFILT_READ = -1 +pkg syscall (darwin-386-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-386-cgo), const EVFILT_SYSCOUNT = 12 +pkg syscall (darwin-386-cgo), const EVFILT_THREADMARKER = 12 +pkg syscall (darwin-386-cgo), const EVFILT_TIMER = -7 +pkg syscall (darwin-386-cgo), const EVFILT_USER = -10 +pkg syscall (darwin-386-cgo), const EVFILT_VM = -12 +pkg syscall (darwin-386-cgo), const EVFILT_VNODE = -4 +pkg syscall (darwin-386-cgo), const EVFILT_WRITE = -2 +pkg syscall (darwin-386-cgo), const EV_ADD = 1 +pkg syscall (darwin-386-cgo), const EV_CLEAR = 32 +pkg syscall (darwin-386-cgo), const EV_DELETE = 2 +pkg syscall (darwin-386-cgo), const EV_DISABLE = 8 +pkg syscall (darwin-386-cgo), const EV_DISPATCH = 128 +pkg syscall (darwin-386-cgo), const EV_ENABLE = 4 +pkg syscall (darwin-386-cgo), const EV_EOF = 32768 +pkg syscall (darwin-386-cgo), const EV_ERROR = 16384 +pkg syscall (darwin-386-cgo), const EV_FLAG0 = 4096 +pkg syscall (darwin-386-cgo), const EV_FLAG1 = 8192 +pkg syscall (darwin-386-cgo), const EV_ONESHOT = 16 +pkg syscall (darwin-386-cgo), const EV_OOBAND = 8192 +pkg syscall (darwin-386-cgo), const EV_POLL = 4096 +pkg syscall (darwin-386-cgo), const EV_RECEIPT = 64 +pkg syscall (darwin-386-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-386-cgo), const EWOULDBLOCK = 35 +pkg syscall (darwin-386-cgo), const EXDEV = 18 +pkg syscall (darwin-386-cgo), const EXTA = 19200 +pkg syscall (darwin-386-cgo), const EXTB = 38400 +pkg syscall (darwin-386-cgo), const EXTPROC = 2048 +pkg syscall (darwin-386-cgo), const FD_CLOEXEC = 1 +pkg syscall (darwin-386-cgo), const FD_SETSIZE = 1024 +pkg syscall (darwin-386-cgo), const FLUSHO = 8388608 +pkg syscall (darwin-386-cgo), const FLUSHO ideal-int +pkg syscall (darwin-386-cgo), const F_ADDFILESIGS = 61 +pkg syscall (darwin-386-cgo), const F_ADDSIGS = 59 +pkg syscall (darwin-386-cgo), const F_ALLOCATEALL = 4 +pkg syscall (darwin-386-cgo), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-386-cgo), const F_CHKCLEAN = 41 +pkg syscall (darwin-386-cgo), const F_DUPFD = 0 +pkg syscall (darwin-386-cgo), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-386-cgo), const F_FLUSH_DATA = 40 +pkg syscall (darwin-386-cgo), const F_FREEZE_FS = 53 +pkg syscall (darwin-386-cgo), const F_FULLFSYNC = 51 +pkg syscall (darwin-386-cgo), const F_GETFD = 1 +pkg syscall (darwin-386-cgo), const F_GETFL = 3 +pkg syscall (darwin-386-cgo), const F_GETLK = 7 +pkg syscall (darwin-386-cgo), const F_GETLKPID = 66 +pkg syscall (darwin-386-cgo), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-386-cgo), const F_GETOWN = 5 +pkg syscall (darwin-386-cgo), const F_GETPATH = 50 +pkg syscall (darwin-386-cgo), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-386-cgo), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-386-cgo), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-386-cgo), const F_LOG2PHYS = 49 +pkg syscall (darwin-386-cgo), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-386-cgo), const F_MARKDEPENDENCY = 60 +pkg syscall (darwin-386-cgo), const F_NOCACHE = 48 +pkg syscall (darwin-386-cgo), const F_NODIRECT = 62 +pkg syscall (darwin-386-cgo), const F_OK = 0 +pkg syscall (darwin-386-cgo), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-386-cgo), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-386-cgo), const F_PREALLOCATE = 42 +pkg syscall (darwin-386-cgo), const F_RDADVISE = 44 +pkg syscall (darwin-386-cgo), const F_RDAHEAD = 45 +pkg syscall (darwin-386-cgo), const F_RDLCK = 1 +pkg syscall (darwin-386-cgo), const F_READBOOTSTRAP = 46 +pkg syscall (darwin-386-cgo), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-386-cgo), const F_SETFD = 2 +pkg syscall (darwin-386-cgo), const F_SETFL = 4 +pkg syscall (darwin-386-cgo), const F_SETLK = 8 +pkg syscall (darwin-386-cgo), const F_SETLKW = 9 +pkg syscall (darwin-386-cgo), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-386-cgo), const F_SETOWN = 6 +pkg syscall (darwin-386-cgo), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-386-cgo), const F_SETSIZE = 43 +pkg syscall (darwin-386-cgo), const F_THAW_FS = 54 +pkg syscall (darwin-386-cgo), const F_UNLCK = 2 +pkg syscall (darwin-386-cgo), const F_VOLPOSMODE = 4 +pkg syscall (darwin-386-cgo), const F_WRITEBOOTSTRAP = 47 +pkg syscall (darwin-386-cgo), const F_WRLCK = 3 +pkg syscall (darwin-386-cgo), const HUPCL = 16384 +pkg syscall (darwin-386-cgo), const HUPCL ideal-int +pkg syscall (darwin-386-cgo), const ICANON = 256 +pkg syscall (darwin-386-cgo), const ICANON ideal-int +pkg syscall (darwin-386-cgo), const ICRNL = 256 +pkg syscall (darwin-386-cgo), const ICRNL ideal-int +pkg syscall (darwin-386-cgo), const IEXTEN = 1024 +pkg syscall (darwin-386-cgo), const IEXTEN ideal-int +pkg syscall (darwin-386-cgo), const IFF_ALLMULTI = 512 +pkg syscall (darwin-386-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-386-cgo), const IFF_DEBUG = 4 +pkg syscall (darwin-386-cgo), const IFF_LINK0 = 4096 +pkg syscall (darwin-386-cgo), const IFF_LINK1 = 8192 +pkg syscall (darwin-386-cgo), const IFF_LINK2 = 16384 +pkg syscall (darwin-386-cgo), const IFF_LOOPBACK = 8 +pkg syscall (darwin-386-cgo), const IFF_MULTICAST = 32768 +pkg syscall (darwin-386-cgo), const IFF_NOARP = 128 +pkg syscall (darwin-386-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-386-cgo), const IFF_OACTIVE = 1024 +pkg syscall (darwin-386-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-386-cgo), const IFF_PROMISC = 256 +pkg syscall (darwin-386-cgo), const IFF_RUNNING = 64 +pkg syscall (darwin-386-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-386-cgo), const IFNAMSIZ = 16 +pkg syscall (darwin-386-cgo), const IFT_1822 = 2 +pkg syscall (darwin-386-cgo), const IFT_AAL5 = 49 +pkg syscall (darwin-386-cgo), const IFT_ARCNET = 35 +pkg syscall (darwin-386-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-386-cgo), const IFT_ATM = 37 +pkg syscall (darwin-386-cgo), const IFT_BRIDGE = 209 +pkg syscall (darwin-386-cgo), const IFT_CARP = 248 +pkg syscall (darwin-386-cgo), const IFT_CELLULAR = 255 +pkg syscall (darwin-386-cgo), const IFT_CEPT = 19 +pkg syscall (darwin-386-cgo), const IFT_DS3 = 30 +pkg syscall (darwin-386-cgo), const IFT_ENC = 244 +pkg syscall (darwin-386-cgo), const IFT_EON = 25 +pkg syscall (darwin-386-cgo), const IFT_ETHER = 6 +pkg syscall (darwin-386-cgo), const IFT_FAITH = 56 +pkg syscall (darwin-386-cgo), const IFT_FDDI = 15 +pkg syscall (darwin-386-cgo), const IFT_FRELAY = 32 +pkg syscall (darwin-386-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-386-cgo), const IFT_GIF = 55 +pkg syscall (darwin-386-cgo), const IFT_HDH1822 = 3 +pkg syscall (darwin-386-cgo), const IFT_HIPPI = 47 +pkg syscall (darwin-386-cgo), const IFT_HSSI = 46 +pkg syscall (darwin-386-cgo), const IFT_HY = 14 +pkg syscall (darwin-386-cgo), const IFT_IEEE1394 = 144 +pkg syscall (darwin-386-cgo), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-386-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-386-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-386-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-386-cgo), const IFT_ISO88023 = 7 +pkg syscall (darwin-386-cgo), const IFT_ISO88024 = 8 +pkg syscall (darwin-386-cgo), const IFT_ISO88025 = 9 +pkg syscall (darwin-386-cgo), const IFT_ISO88026 = 10 +pkg syscall (darwin-386-cgo), const IFT_L2VLAN = 135 +pkg syscall (darwin-386-cgo), const IFT_LAPB = 16 +pkg syscall (darwin-386-cgo), const IFT_LOCALTALK = 42 +pkg syscall (darwin-386-cgo), const IFT_LOOP = 24 +pkg syscall (darwin-386-cgo), const IFT_MIOX25 = 38 +pkg syscall (darwin-386-cgo), const IFT_MODEM = 48 +pkg syscall (darwin-386-cgo), const IFT_NSIP = 27 +pkg syscall (darwin-386-cgo), const IFT_OTHER = 1 +pkg syscall (darwin-386-cgo), const IFT_P10 = 12 +pkg syscall (darwin-386-cgo), const IFT_P80 = 13 +pkg syscall (darwin-386-cgo), const IFT_PARA = 34 +pkg syscall (darwin-386-cgo), const IFT_PDP = 255 +pkg syscall (darwin-386-cgo), const IFT_PFLOG = 245 +pkg syscall (darwin-386-cgo), const IFT_PFSYNC = 246 +pkg syscall (darwin-386-cgo), const IFT_PPP = 23 +pkg syscall (darwin-386-cgo), const IFT_PROPMUX = 54 +pkg syscall (darwin-386-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-386-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-386-cgo), const IFT_RS232 = 33 +pkg syscall (darwin-386-cgo), const IFT_SDLC = 17 +pkg syscall (darwin-386-cgo), const IFT_SIP = 31 +pkg syscall (darwin-386-cgo), const IFT_SLIP = 28 +pkg syscall (darwin-386-cgo), const IFT_SMDSDXI = 43 +pkg syscall (darwin-386-cgo), const IFT_SMDSICIP = 52 +pkg syscall (darwin-386-cgo), const IFT_SONET = 39 +pkg syscall (darwin-386-cgo), const IFT_SONETPATH = 50 +pkg syscall (darwin-386-cgo), const IFT_SONETVT = 51 +pkg syscall (darwin-386-cgo), const IFT_STARLAN = 11 +pkg syscall (darwin-386-cgo), const IFT_STF = 57 +pkg syscall (darwin-386-cgo), const IFT_T1 = 18 +pkg syscall (darwin-386-cgo), const IFT_ULTRA = 29 +pkg syscall (darwin-386-cgo), const IFT_V35 = 45 +pkg syscall (darwin-386-cgo), const IFT_X25 = 5 +pkg syscall (darwin-386-cgo), const IFT_X25DDN = 4 +pkg syscall (darwin-386-cgo), const IFT_X25PLE = 40 +pkg syscall (darwin-386-cgo), const IFT_XETHER = 26 +pkg syscall (darwin-386-cgo), const IGNBRK = 1 +pkg syscall (darwin-386-cgo), const IGNBRK ideal-int +pkg syscall (darwin-386-cgo), const IGNCR = 128 +pkg syscall (darwin-386-cgo), const IGNCR ideal-int +pkg syscall (darwin-386-cgo), const IGNPAR = 4 +pkg syscall (darwin-386-cgo), const IGNPAR ideal-int +pkg syscall (darwin-386-cgo), const IMAXBEL = 8192 +pkg syscall (darwin-386-cgo), const IMAXBEL ideal-int +pkg syscall (darwin-386-cgo), const INLCR = 64 +pkg syscall (darwin-386-cgo), const INLCR ideal-int +pkg syscall (darwin-386-cgo), const INPCK = 16 +pkg syscall (darwin-386-cgo), const INPCK ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-386-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-386-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-386-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-386-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-386-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-386-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-386-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-386-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-386-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-386-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-386-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-386-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-386-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-386-cgo), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-386-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-386-cgo), const IPPROTO_3PC = 34 +pkg syscall (darwin-386-cgo), const IPPROTO_ADFS = 68 +pkg syscall (darwin-386-cgo), const IPPROTO_AH = 51 +pkg syscall (darwin-386-cgo), const IPPROTO_AHIP = 61 +pkg syscall (darwin-386-cgo), const IPPROTO_APES = 99 +pkg syscall (darwin-386-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-386-cgo), const IPPROTO_AX25 = 93 +pkg syscall (darwin-386-cgo), const IPPROTO_BHA = 49 +pkg syscall (darwin-386-cgo), const IPPROTO_BLT = 30 +pkg syscall (darwin-386-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-386-cgo), const IPPROTO_CFTP = 62 +pkg syscall (darwin-386-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-386-cgo), const IPPROTO_CMTP = 38 +pkg syscall (darwin-386-cgo), const IPPROTO_CPHB = 73 +pkg syscall (darwin-386-cgo), const IPPROTO_CPNX = 72 +pkg syscall (darwin-386-cgo), const IPPROTO_DDP = 37 +pkg syscall (darwin-386-cgo), const IPPROTO_DGP = 86 +pkg syscall (darwin-386-cgo), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-386-cgo), const IPPROTO_DONE = 257 +pkg syscall (darwin-386-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-386-cgo), const IPPROTO_EGP = 8 +pkg syscall (darwin-386-cgo), const IPPROTO_EMCON = 14 +pkg syscall (darwin-386-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-386-cgo), const IPPROTO_EON = 80 +pkg syscall (darwin-386-cgo), const IPPROTO_ESP = 50 +pkg syscall (darwin-386-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-386-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-386-cgo), const IPPROTO_GGP = 3 +pkg syscall (darwin-386-cgo), const IPPROTO_GMTP = 100 +pkg syscall (darwin-386-cgo), const IPPROTO_GRE = 47 +pkg syscall (darwin-386-cgo), const IPPROTO_HELLO = 63 +pkg syscall (darwin-386-cgo), const IPPROTO_HMP = 20 +pkg syscall (darwin-386-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-386-cgo), const IPPROTO_ICMP = 1 +pkg syscall (darwin-386-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-386-cgo), const IPPROTO_IDP = 22 +pkg syscall (darwin-386-cgo), const IPPROTO_IDPR = 35 +pkg syscall (darwin-386-cgo), const IPPROTO_IDRP = 45 +pkg syscall (darwin-386-cgo), const IPPROTO_IGMP = 2 +pkg syscall (darwin-386-cgo), const IPPROTO_IGP = 85 +pkg syscall (darwin-386-cgo), const IPPROTO_IGRP = 88 +pkg syscall (darwin-386-cgo), const IPPROTO_IL = 40 +pkg syscall (darwin-386-cgo), const IPPROTO_INLSP = 52 +pkg syscall (darwin-386-cgo), const IPPROTO_INP = 32 +pkg syscall (darwin-386-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-386-cgo), const IPPROTO_IPCV = 71 +pkg syscall (darwin-386-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-386-cgo), const IPPROTO_IPIP = 4 +pkg syscall (darwin-386-cgo), const IPPROTO_IPPC = 67 +pkg syscall (darwin-386-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-386-cgo), const IPPROTO_IRTP = 28 +pkg syscall (darwin-386-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-386-cgo), const IPPROTO_LARP = 91 +pkg syscall (darwin-386-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-386-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-386-cgo), const IPPROTO_MAX = 256 +pkg syscall (darwin-386-cgo), const IPPROTO_MAXID = 52 +pkg syscall (darwin-386-cgo), const IPPROTO_MEAS = 19 +pkg syscall (darwin-386-cgo), const IPPROTO_MHRP = 48 +pkg syscall (darwin-386-cgo), const IPPROTO_MICP = 95 +pkg syscall (darwin-386-cgo), const IPPROTO_MTP = 92 +pkg syscall (darwin-386-cgo), const IPPROTO_MUX = 18 +pkg syscall (darwin-386-cgo), const IPPROTO_ND = 77 +pkg syscall (darwin-386-cgo), const IPPROTO_NHRP = 54 +pkg syscall (darwin-386-cgo), const IPPROTO_NONE = 59 +pkg syscall (darwin-386-cgo), const IPPROTO_NSP = 31 +pkg syscall (darwin-386-cgo), const IPPROTO_NVPII = 11 +pkg syscall (darwin-386-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-386-cgo), const IPPROTO_PGM = 113 +pkg syscall (darwin-386-cgo), const IPPROTO_PIGP = 9 +pkg syscall (darwin-386-cgo), const IPPROTO_PIM = 103 +pkg syscall (darwin-386-cgo), const IPPROTO_PRM = 21 +pkg syscall (darwin-386-cgo), const IPPROTO_PUP = 12 +pkg syscall (darwin-386-cgo), const IPPROTO_PVP = 75 +pkg syscall (darwin-386-cgo), const IPPROTO_RAW = 255 +pkg syscall (darwin-386-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-386-cgo), const IPPROTO_RDP = 27 +pkg syscall (darwin-386-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-386-cgo), const IPPROTO_RSVP = 46 +pkg syscall (darwin-386-cgo), const IPPROTO_RVD = 66 +pkg syscall (darwin-386-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-386-cgo), const IPPROTO_SATMON = 69 +pkg syscall (darwin-386-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-386-cgo), const IPPROTO_SCTP = 132 +pkg syscall (darwin-386-cgo), const IPPROTO_SDRP = 42 +pkg syscall (darwin-386-cgo), const IPPROTO_SEP = 33 +pkg syscall (darwin-386-cgo), const IPPROTO_SRPC = 90 +pkg syscall (darwin-386-cgo), const IPPROTO_ST = 7 +pkg syscall (darwin-386-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-386-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-386-cgo), const IPPROTO_TCF = 87 +pkg syscall (darwin-386-cgo), const IPPROTO_TP = 29 +pkg syscall (darwin-386-cgo), const IPPROTO_TPXX = 39 +pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-386-cgo), const IPPROTO_TTP = 84 +pkg syscall (darwin-386-cgo), const IPPROTO_VINES = 83 +pkg syscall (darwin-386-cgo), const IPPROTO_VISA = 70 +pkg syscall (darwin-386-cgo), const IPPROTO_VMTP = 81 +pkg syscall (darwin-386-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-386-cgo), const IPPROTO_WBMON = 78 +pkg syscall (darwin-386-cgo), const IPPROTO_WSN = 74 +pkg syscall (darwin-386-cgo), const IPPROTO_XNET = 15 +pkg syscall (darwin-386-cgo), const IPPROTO_XTP = 36 +pkg syscall (darwin-386-cgo), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-386-cgo), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-386-cgo), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-386-cgo), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-386-cgo), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-386-cgo), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-386-cgo), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-386-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-386-cgo), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-386-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-386-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-386-cgo), const IPV6_FAITH = 29 +pkg syscall (darwin-386-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-386-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-386-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-386-cgo), const IPV6_FW_ADD = 30 +pkg syscall (darwin-386-cgo), const IPV6_FW_DEL = 31 +pkg syscall (darwin-386-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-386-cgo), const IPV6_FW_GET = 34 +pkg syscall (darwin-386-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-386-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-386-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-386-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-386-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-386-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-386-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-386-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-386-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-386-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-386-cgo), const IPV6_MMTU = 1280 +pkg syscall (darwin-386-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-386-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-386-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-386-cgo), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-386-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-386-cgo), const IPV6_TCLASS = 36 +pkg syscall (darwin-386-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-386-cgo), const IPV6_V6ONLY = 27 +pkg syscall (darwin-386-cgo), const IPV6_VERSION = 96 +pkg syscall (darwin-386-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-386-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-386-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-386-cgo), const IP_BOUND_IF = 25 +pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-386-cgo), const IP_DF = 16384 +pkg syscall (darwin-386-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-386-cgo), const IP_FAITH = 22 +pkg syscall (darwin-386-cgo), const IP_FW_ADD = 40 +pkg syscall (darwin-386-cgo), const IP_FW_DEL = 41 +pkg syscall (darwin-386-cgo), const IP_FW_FLUSH = 42 +pkg syscall (darwin-386-cgo), const IP_FW_GET = 44 +pkg syscall (darwin-386-cgo), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-386-cgo), const IP_FW_ZERO = 43 +pkg syscall (darwin-386-cgo), const IP_HDRINCL = 2 +pkg syscall (darwin-386-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-386-cgo), const IP_MAXPACKET = 65535 +pkg syscall (darwin-386-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-386-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-386-cgo), const IP_MF = 8192 +pkg syscall (darwin-386-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-386-cgo), const IP_MSFILTER = 74 +pkg syscall (darwin-386-cgo), const IP_MSS = 576 +pkg syscall (darwin-386-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-386-cgo), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-386-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-386-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-386-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-386-cgo), const IP_NAT__XXX = 55 +pkg syscall (darwin-386-cgo), const IP_OFFMASK = 8191 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-386-cgo), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-386-cgo), const IP_OPTIONS = 1 +pkg syscall (darwin-386-cgo), const IP_PKTINFO = 26 +pkg syscall (darwin-386-cgo), const IP_PORTRANGE = 19 +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-386-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-386-cgo), const IP_RECVIF = 20 +pkg syscall (darwin-386-cgo), const IP_RECVOPTS = 5 +pkg syscall (darwin-386-cgo), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-386-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-386-cgo), const IP_RECVTTL = 24 +pkg syscall (darwin-386-cgo), const IP_RETOPTS = 8 +pkg syscall (darwin-386-cgo), const IP_RF = 32768 +pkg syscall (darwin-386-cgo), const IP_RSVP_OFF = 16 +pkg syscall (darwin-386-cgo), const IP_RSVP_ON = 15 +pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-386-cgo), const IP_STRIPHDR = 23 +pkg syscall (darwin-386-cgo), const IP_TOS = 3 +pkg syscall (darwin-386-cgo), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-386-cgo), const IP_TTL = 4 +pkg syscall (darwin-386-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-386-cgo), const ISIG = 128 +pkg syscall (darwin-386-cgo), const ISIG ideal-int +pkg syscall (darwin-386-cgo), const ISTRIP = 32 +pkg syscall (darwin-386-cgo), const ISTRIP ideal-int +pkg syscall (darwin-386-cgo), const IUTF8 = 16384 +pkg syscall (darwin-386-cgo), const IUTF8 ideal-int +pkg syscall (darwin-386-cgo), const IXANY = 2048 +pkg syscall (darwin-386-cgo), const IXANY ideal-int +pkg syscall (darwin-386-cgo), const IXOFF = 1024 +pkg syscall (darwin-386-cgo), const IXOFF ideal-int +pkg syscall (darwin-386-cgo), const IXON = 512 +pkg syscall (darwin-386-cgo), const IXON ideal-int +pkg syscall (darwin-386-cgo), const ImplementsGetwd = false +pkg syscall (darwin-386-cgo), const LOCK_EX = 2 +pkg syscall (darwin-386-cgo), const LOCK_NB = 4 +pkg syscall (darwin-386-cgo), const LOCK_SH = 1 +pkg syscall (darwin-386-cgo), const LOCK_UN = 8 +pkg syscall (darwin-386-cgo), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-386-cgo), const MADV_DONTNEED = 4 +pkg syscall (darwin-386-cgo), const MADV_FREE = 5 +pkg syscall (darwin-386-cgo), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-386-cgo), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-386-cgo), const MADV_NORMAL = 0 +pkg syscall (darwin-386-cgo), const MADV_RANDOM = 1 +pkg syscall (darwin-386-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-386-cgo), const MADV_WILLNEED = 3 +pkg syscall (darwin-386-cgo), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-386-cgo), const MAP_ANON = 4096 +pkg syscall (darwin-386-cgo), const MAP_COPY = 2 +pkg syscall (darwin-386-cgo), const MAP_FILE = 0 +pkg syscall (darwin-386-cgo), const MAP_FIXED = 16 +pkg syscall (darwin-386-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-386-cgo), const MAP_JIT = 2048 +pkg syscall (darwin-386-cgo), const MAP_NOCACHE = 1024 +pkg syscall (darwin-386-cgo), const MAP_NOEXTEND = 256 +pkg syscall (darwin-386-cgo), const MAP_NORESERVE = 64 +pkg syscall (darwin-386-cgo), const MAP_PRIVATE = 2 +pkg syscall (darwin-386-cgo), const MAP_RENAME = 32 +pkg syscall (darwin-386-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-386-cgo), const MAP_SHARED = 1 +pkg syscall (darwin-386-cgo), const MCL_CURRENT = 1 +pkg syscall (darwin-386-cgo), const MCL_FUTURE = 2 +pkg syscall (darwin-386-cgo), const MSG_CTRUNC = 32 +pkg syscall (darwin-386-cgo), const MSG_DONTROUTE = 4 +pkg syscall (darwin-386-cgo), const MSG_DONTWAIT = 128 +pkg syscall (darwin-386-cgo), const MSG_EOF = 256 +pkg syscall (darwin-386-cgo), const MSG_EOR = 8 +pkg syscall (darwin-386-cgo), const MSG_FLUSH = 1024 +pkg syscall (darwin-386-cgo), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-386-cgo), const MSG_HOLD = 2048 +pkg syscall (darwin-386-cgo), const MSG_NEEDSA = 65536 +pkg syscall (darwin-386-cgo), const MSG_OOB = 1 +pkg syscall (darwin-386-cgo), const MSG_PEEK = 2 +pkg syscall (darwin-386-cgo), const MSG_RCVMORE = 16384 +pkg syscall (darwin-386-cgo), const MSG_SEND = 4096 +pkg syscall (darwin-386-cgo), const MSG_TRUNC = 16 +pkg syscall (darwin-386-cgo), const MSG_WAITALL = 64 +pkg syscall (darwin-386-cgo), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-386-cgo), const MS_ASYNC = 1 +pkg syscall (darwin-386-cgo), const MS_DEACTIVATE = 8 +pkg syscall (darwin-386-cgo), const MS_INVALIDATE = 2 +pkg syscall (darwin-386-cgo), const MS_KILLPAGES = 4 +pkg syscall (darwin-386-cgo), const MS_SYNC = 16 +pkg syscall (darwin-386-cgo), const NAME_MAX = 255 +pkg syscall (darwin-386-cgo), const NET_RT_DUMP = 1 +pkg syscall (darwin-386-cgo), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-386-cgo), const NET_RT_FLAGS = 2 +pkg syscall (darwin-386-cgo), const NET_RT_IFLIST = 3 +pkg syscall (darwin-386-cgo), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-386-cgo), const NET_RT_MAXID = 10 +pkg syscall (darwin-386-cgo), const NET_RT_STAT = 4 +pkg syscall (darwin-386-cgo), const NET_RT_TRASH = 5 +pkg syscall (darwin-386-cgo), const NOFLSH = 2147483648 +pkg syscall (darwin-386-cgo), const NOFLSH ideal-int +pkg syscall (darwin-386-cgo), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-386-cgo), const NOTE_ATTRIB = 8 +pkg syscall (darwin-386-cgo), const NOTE_CHILD = 4 +pkg syscall (darwin-386-cgo), const NOTE_DELETE = 1 +pkg syscall (darwin-386-cgo), const NOTE_EXEC = 536870912 +pkg syscall (darwin-386-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-386-cgo), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-386-cgo), const NOTE_EXTEND = 4 +pkg syscall (darwin-386-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-386-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-386-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-386-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-386-cgo), const NOTE_FFNOP = 0 +pkg syscall (darwin-386-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-386-cgo), const NOTE_FORK = 1073741824 +pkg syscall (darwin-386-cgo), const NOTE_LINK = 16 +pkg syscall (darwin-386-cgo), const NOTE_LOWAT = 1 +pkg syscall (darwin-386-cgo), const NOTE_NONE = 128 +pkg syscall (darwin-386-cgo), const NOTE_NSECONDS = 4 +pkg syscall (darwin-386-cgo), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-386-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-386-cgo), const NOTE_REAP = 268435456 +pkg syscall (darwin-386-cgo), const NOTE_RENAME = 32 +pkg syscall (darwin-386-cgo), const NOTE_RESOURCEEND = 33554432 +pkg syscall (darwin-386-cgo), const NOTE_REVOKE = 64 +pkg syscall (darwin-386-cgo), const NOTE_SECONDS = 1 +pkg syscall (darwin-386-cgo), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-386-cgo), const NOTE_TRACK = 1 +pkg syscall (darwin-386-cgo), const NOTE_TRACKERR = 2 +pkg syscall (darwin-386-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-386-cgo), const NOTE_USECONDS = 2 +pkg syscall (darwin-386-cgo), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-386-cgo), const NOTE_WRITE = 2 +pkg syscall (darwin-386-cgo), const OCRNL = 16 +pkg syscall (darwin-386-cgo), const OCRNL ideal-int +pkg syscall (darwin-386-cgo), const OFDEL = 131072 +pkg syscall (darwin-386-cgo), const OFDEL ideal-int +pkg syscall (darwin-386-cgo), const OFILL = 128 +pkg syscall (darwin-386-cgo), const OFILL ideal-int +pkg syscall (darwin-386-cgo), const ONLCR = 2 +pkg syscall (darwin-386-cgo), const ONLCR ideal-int +pkg syscall (darwin-386-cgo), const ONLRET = 64 +pkg syscall (darwin-386-cgo), const ONLRET ideal-int +pkg syscall (darwin-386-cgo), const ONOCR = 32 +pkg syscall (darwin-386-cgo), const ONOCR ideal-int +pkg syscall (darwin-386-cgo), const ONOEOT = 8 +pkg syscall (darwin-386-cgo), const ONOEOT ideal-int +pkg syscall (darwin-386-cgo), const OPOST = 1 +pkg syscall (darwin-386-cgo), const OPOST ideal-int +pkg syscall (darwin-386-cgo), const O_ACCMODE = 3 +pkg syscall (darwin-386-cgo), const O_ALERT = 536870912 +pkg syscall (darwin-386-cgo), const O_APPEND = 8 +pkg syscall (darwin-386-cgo), const O_ASYNC = 64 +pkg syscall (darwin-386-cgo), const O_CLOEXEC = 16777216 +pkg syscall (darwin-386-cgo), const O_CREAT = 512 +pkg syscall (darwin-386-cgo), const O_DIRECTORY = 1048576 +pkg syscall (darwin-386-cgo), const O_DSYNC = 4194304 +pkg syscall (darwin-386-cgo), const O_EVTONLY = 32768 +pkg syscall (darwin-386-cgo), const O_EXCL = 2048 +pkg syscall (darwin-386-cgo), const O_EXLOCK = 32 +pkg syscall (darwin-386-cgo), const O_FSYNC = 128 +pkg syscall (darwin-386-cgo), const O_NDELAY = 4 +pkg syscall (darwin-386-cgo), const O_NOCTTY = 131072 +pkg syscall (darwin-386-cgo), const O_NOFOLLOW = 256 +pkg syscall (darwin-386-cgo), const O_NONBLOCK = 4 +pkg syscall (darwin-386-cgo), const O_POPUP = 2147483648 +pkg syscall (darwin-386-cgo), const O_SHLOCK = 16 +pkg syscall (darwin-386-cgo), const O_SYMLINK = 2097152 +pkg syscall (darwin-386-cgo), const O_SYNC = 128 +pkg syscall (darwin-386-cgo), const O_TRUNC = 1024 +pkg syscall (darwin-386-cgo), const PARENB = 4096 +pkg syscall (darwin-386-cgo), const PARENB ideal-int +pkg syscall (darwin-386-cgo), const PARMRK = 8 +pkg syscall (darwin-386-cgo), const PARMRK ideal-int +pkg syscall (darwin-386-cgo), const PARODD = 8192 +pkg syscall (darwin-386-cgo), const PARODD ideal-int +pkg syscall (darwin-386-cgo), const PENDIN = 536870912 +pkg syscall (darwin-386-cgo), const PENDIN ideal-int +pkg syscall (darwin-386-cgo), const PROT_EXEC = 4 +pkg syscall (darwin-386-cgo), const PROT_NONE = 0 +pkg syscall (darwin-386-cgo), const PROT_READ = 1 +pkg syscall (darwin-386-cgo), const PROT_WRITE = 2 +pkg syscall (darwin-386-cgo), const PTRACE_CONT = 7 +pkg syscall (darwin-386-cgo), const PTRACE_KILL = 8 +pkg syscall (darwin-386-cgo), const PTRACE_TRACEME = 0 +pkg syscall (darwin-386-cgo), const PT_ATTACH = 10 +pkg syscall (darwin-386-cgo), const PT_ATTACHEXC = 14 +pkg syscall (darwin-386-cgo), const PT_CONTINUE = 7 +pkg syscall (darwin-386-cgo), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-386-cgo), const PT_DETACH = 11 +pkg syscall (darwin-386-cgo), const PT_FIRSTMACH = 32 +pkg syscall (darwin-386-cgo), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-386-cgo), const PT_KILL = 8 +pkg syscall (darwin-386-cgo), const PT_READ_D = 2 +pkg syscall (darwin-386-cgo), const PT_READ_I = 1 +pkg syscall (darwin-386-cgo), const PT_READ_U = 3 +pkg syscall (darwin-386-cgo), const PT_SIGEXC = 12 +pkg syscall (darwin-386-cgo), const PT_STEP = 9 +pkg syscall (darwin-386-cgo), const PT_THUPDATE = 13 +pkg syscall (darwin-386-cgo), const PT_TRACE_ME = 0 +pkg syscall (darwin-386-cgo), const PT_WRITE_D = 5 +pkg syscall (darwin-386-cgo), const PT_WRITE_I = 4 +pkg syscall (darwin-386-cgo), const PT_WRITE_U = 6 +pkg syscall (darwin-386-cgo), const RLIMIT_AS = 5 +pkg syscall (darwin-386-cgo), const RLIMIT_CORE = 4 +pkg syscall (darwin-386-cgo), const RLIMIT_CPU = 0 +pkg syscall (darwin-386-cgo), const RLIMIT_DATA = 2 +pkg syscall (darwin-386-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-386-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-386-cgo), const RLIMIT_STACK = 3 +pkg syscall (darwin-386-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-386-cgo), const RTAX_AUTHOR = 6 +pkg syscall (darwin-386-cgo), const RTAX_BRD = 7 +pkg syscall (darwin-386-cgo), const RTAX_DST = 0 +pkg syscall (darwin-386-cgo), const RTAX_GATEWAY = 1 +pkg syscall (darwin-386-cgo), const RTAX_GENMASK = 3 +pkg syscall (darwin-386-cgo), const RTAX_IFA = 5 +pkg syscall (darwin-386-cgo), const RTAX_IFP = 4 +pkg syscall (darwin-386-cgo), const RTAX_MAX = 8 +pkg syscall (darwin-386-cgo), const RTAX_NETMASK = 2 +pkg syscall (darwin-386-cgo), const RTA_AUTHOR = 64 +pkg syscall (darwin-386-cgo), const RTA_BRD = 128 +pkg syscall (darwin-386-cgo), const RTA_DST = 1 +pkg syscall (darwin-386-cgo), const RTA_GATEWAY = 2 +pkg syscall (darwin-386-cgo), const RTA_GENMASK = 8 +pkg syscall (darwin-386-cgo), const RTA_IFA = 32 +pkg syscall (darwin-386-cgo), const RTA_IFP = 16 +pkg syscall (darwin-386-cgo), const RTA_NETMASK = 4 +pkg syscall (darwin-386-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-386-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-386-cgo), const RTF_CLONING = 256 +pkg syscall (darwin-386-cgo), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-386-cgo), const RTF_DELCLONE = 128 +pkg syscall (darwin-386-cgo), const RTF_DONE = 64 +pkg syscall (darwin-386-cgo), const RTF_DYNAMIC = 16 +pkg syscall (darwin-386-cgo), const RTF_GATEWAY = 2 +pkg syscall (darwin-386-cgo), const RTF_HOST = 4 +pkg syscall (darwin-386-cgo), const RTF_IFREF = 67108864 +pkg syscall (darwin-386-cgo), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-386-cgo), const RTF_LLINFO = 1024 +pkg syscall (darwin-386-cgo), const RTF_LOCAL = 2097152 +pkg syscall (darwin-386-cgo), const RTF_MODIFIED = 32 +pkg syscall (darwin-386-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-386-cgo), const RTF_PINNED = 1048576 +pkg syscall (darwin-386-cgo), const RTF_PRCLONING = 65536 +pkg syscall (darwin-386-cgo), const RTF_PROTO1 = 32768 +pkg syscall (darwin-386-cgo), const RTF_PROTO2 = 16384 +pkg syscall (darwin-386-cgo), const RTF_PROTO3 = 262144 +pkg syscall (darwin-386-cgo), const RTF_REJECT = 8 +pkg syscall (darwin-386-cgo), const RTF_STATIC = 2048 +pkg syscall (darwin-386-cgo), const RTF_UP = 1 +pkg syscall (darwin-386-cgo), const RTF_WASCLONED = 131072 +pkg syscall (darwin-386-cgo), const RTF_XRESOLVE = 512 +pkg syscall (darwin-386-cgo), const RTM_ADD = 1 +pkg syscall (darwin-386-cgo), const RTM_CHANGE = 3 +pkg syscall (darwin-386-cgo), const RTM_DELADDR = 13 +pkg syscall (darwin-386-cgo), const RTM_DELETE = 2 +pkg syscall (darwin-386-cgo), const RTM_DELMADDR = 16 +pkg syscall (darwin-386-cgo), const RTM_GET = 4 +pkg syscall (darwin-386-cgo), const RTM_GET2 = 20 +pkg syscall (darwin-386-cgo), const RTM_IFINFO = 14 +pkg syscall (darwin-386-cgo), const RTM_IFINFO2 = 18 +pkg syscall (darwin-386-cgo), const RTM_LOCK = 8 +pkg syscall (darwin-386-cgo), const RTM_LOSING = 5 +pkg syscall (darwin-386-cgo), const RTM_MISS = 7 +pkg syscall (darwin-386-cgo), const RTM_NEWADDR = 12 +pkg syscall (darwin-386-cgo), const RTM_NEWMADDR = 15 +pkg syscall (darwin-386-cgo), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-386-cgo), const RTM_OLDADD = 9 +pkg syscall (darwin-386-cgo), const RTM_OLDDEL = 10 +pkg syscall (darwin-386-cgo), const RTM_REDIRECT = 6 +pkg syscall (darwin-386-cgo), const RTM_RESOLVE = 11 +pkg syscall (darwin-386-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-386-cgo), const RTM_VERSION = 5 +pkg syscall (darwin-386-cgo), const RTV_EXPIRE = 4 +pkg syscall (darwin-386-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-386-cgo), const RTV_MTU = 1 +pkg syscall (darwin-386-cgo), const RTV_RPIPE = 8 +pkg syscall (darwin-386-cgo), const RTV_RTT = 64 +pkg syscall (darwin-386-cgo), const RTV_RTTVAR = 128 +pkg syscall (darwin-386-cgo), const RTV_SPIPE = 16 +pkg syscall (darwin-386-cgo), const RTV_SSTHRESH = 32 +pkg syscall (darwin-386-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-386-cgo), const RUSAGE_SELF = 0 +pkg syscall (darwin-386-cgo), const SCM_CREDS = 3 +pkg syscall (darwin-386-cgo), const SCM_RIGHTS = 1 +pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-386-cgo), const SIGBUS = 10 +pkg syscall (darwin-386-cgo), const SIGCHLD = 20 +pkg syscall (darwin-386-cgo), const SIGCONT = 19 +pkg syscall (darwin-386-cgo), const SIGEMT = 7 +pkg syscall (darwin-386-cgo), const SIGINFO = 29 +pkg syscall (darwin-386-cgo), const SIGIO = 23 +pkg syscall (darwin-386-cgo), const SIGIOT = 6 +pkg syscall (darwin-386-cgo), const SIGPROF = 27 +pkg syscall (darwin-386-cgo), const SIGSTOP = 17 +pkg syscall (darwin-386-cgo), const SIGSYS = 12 +pkg syscall (darwin-386-cgo), const SIGTSTP = 18 +pkg syscall (darwin-386-cgo), const SIGTTIN = 21 +pkg syscall (darwin-386-cgo), const SIGTTOU = 22 +pkg syscall (darwin-386-cgo), const SIGURG = 16 +pkg syscall (darwin-386-cgo), const SIGUSR1 = 30 +pkg syscall (darwin-386-cgo), const SIGUSR2 = 31 +pkg syscall (darwin-386-cgo), const SIGVTALRM = 26 +pkg syscall (darwin-386-cgo), const SIGWINCH = 28 +pkg syscall (darwin-386-cgo), const SIGXCPU = 24 +pkg syscall (darwin-386-cgo), const SIGXFSZ = 25 +pkg syscall (darwin-386-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-386-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-386-cgo), const SIOCALIFADDR = 2165860637 +pkg syscall (darwin-386-cgo), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-386-cgo), const SIOCATMARK = 1074033415 +pkg syscall (darwin-386-cgo), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-386-cgo), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-386-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-386-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-386-cgo), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-386-cgo), const SIOCDLIFADDR = 2165860639 +pkg syscall (darwin-386-cgo), const SIOCGDRVSPEC = 3223087483 +pkg syscall (darwin-386-cgo), const SIOCGETSGCNT = 3222565404 +pkg syscall (darwin-386-cgo), const SIOCGETVIFCNT = 3222565403 +pkg syscall (darwin-386-cgo), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-386-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-386-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-386-cgo), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-386-cgo), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-386-cgo), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-386-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-386-cgo), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-386-cgo), const SIOCGIFCONF = 3221776676 +pkg syscall (darwin-386-cgo), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-386-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-386-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-386-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-386-cgo), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-386-cgo), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-386-cgo), const SIOCGIFMEDIA = 3223873848 +pkg syscall (darwin-386-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-386-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-386-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-386-cgo), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-386-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-386-cgo), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-386-cgo), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-386-cgo), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-386-cgo), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-386-cgo), const SIOCGLIFADDR = 3239602462 +pkg syscall (darwin-386-cgo), const SIOCGLIFPHYADDR = 3239602499 +pkg syscall (darwin-386-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-386-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-386-cgo), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-386-cgo), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-386-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-386-cgo), const SIOCRSLVMULTI = 3221776699 +pkg syscall (darwin-386-cgo), const SIOCSDRVSPEC = 2149345659 +pkg syscall (darwin-386-cgo), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-386-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-386-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-386-cgo), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-386-cgo), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-386-cgo), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-386-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-386-cgo), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-386-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-386-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-386-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-386-cgo), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-386-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-386-cgo), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-386-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-386-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-386-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-386-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-386-cgo), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-386-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-386-cgo), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-386-cgo), const SIOCSLIFPHYADDR = 2165860674 +pkg syscall (darwin-386-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-386-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-386-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-386-cgo), const SOCK_RDM = 4 +pkg syscall (darwin-386-cgo), const SOL_SOCKET = 65535 +pkg syscall (darwin-386-cgo), const SOMAXCONN = 128 +pkg syscall (darwin-386-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-386-cgo), const SO_BROADCAST = 32 +pkg syscall (darwin-386-cgo), const SO_DEBUG = 1 +pkg syscall (darwin-386-cgo), const SO_DONTROUTE = 16 +pkg syscall (darwin-386-cgo), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-386-cgo), const SO_ERROR = 4103 +pkg syscall (darwin-386-cgo), const SO_KEEPALIVE = 8 +pkg syscall (darwin-386-cgo), const SO_LABEL = 4112 +pkg syscall (darwin-386-cgo), const SO_LINGER = 128 +pkg syscall (darwin-386-cgo), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-386-cgo), const SO_NKE = 4129 +pkg syscall (darwin-386-cgo), const SO_NOADDRERR = 4131 +pkg syscall (darwin-386-cgo), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-386-cgo), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-386-cgo), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-386-cgo), const SO_NREAD = 4128 +pkg syscall (darwin-386-cgo), const SO_NWRITE = 4132 +pkg syscall (darwin-386-cgo), const SO_OOBINLINE = 256 +pkg syscall (darwin-386-cgo), const SO_PEERLABEL = 4113 +pkg syscall (darwin-386-cgo), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-386-cgo), const SO_RCVBUF = 4098 +pkg syscall (darwin-386-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-386-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-386-cgo), const SO_RESTRICTIONS = 4225 +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYIN = 1 +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYOUT = 2 +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYSET = 2147483648 +pkg syscall (darwin-386-cgo), const SO_REUSEADDR = 4 +pkg syscall (darwin-386-cgo), const SO_REUSEPORT = 512 +pkg syscall (darwin-386-cgo), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-386-cgo), const SO_SNDBUF = 4097 +pkg syscall (darwin-386-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-386-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-386-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-386-cgo), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-386-cgo), const SO_TYPE = 4104 +pkg syscall (darwin-386-cgo), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-386-cgo), const SO_USELOOPBACK = 64 +pkg syscall (darwin-386-cgo), const SO_WANTMORE = 16384 +pkg syscall (darwin-386-cgo), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-386-cgo), const SYS_ACCEPT = 30 +pkg syscall (darwin-386-cgo), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-386-cgo), const SYS_ACCESS = 33 +pkg syscall (darwin-386-cgo), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-386-cgo), const SYS_ACCT = 51 +pkg syscall (darwin-386-cgo), const SYS_ADD_PROFIL = 176 +pkg syscall (darwin-386-cgo), const SYS_ADJTIME = 140 +pkg syscall (darwin-386-cgo), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-386-cgo), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-386-cgo), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-386-cgo), const SYS_AIO_READ = 318 +pkg syscall (darwin-386-cgo), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-386-cgo), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-386-cgo), const SYS_ATGETMSG = 207 +pkg syscall (darwin-386-cgo), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-386-cgo), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-386-cgo), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-386-cgo), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-386-cgo), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-386-cgo), const SYS_ATSOCKET = 206 +pkg syscall (darwin-386-cgo), const SYS_AUDIT = 350 +pkg syscall (darwin-386-cgo), const SYS_AUDITCTL = 359 +pkg syscall (darwin-386-cgo), const SYS_AUDITON = 351 +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-386-cgo), const SYS_BIND = 104 +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-386-cgo), const SYS_CHDIR = 12 +pkg syscall (darwin-386-cgo), const SYS_CHFLAGS = 34 +pkg syscall (darwin-386-cgo), const SYS_CHMOD = 15 +pkg syscall (darwin-386-cgo), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-386-cgo), const SYS_CHOWN = 16 +pkg syscall (darwin-386-cgo), const SYS_CHROOT = 61 +pkg syscall (darwin-386-cgo), const SYS_CHUD = 185 +pkg syscall (darwin-386-cgo), const SYS_CLOSE = 6 +pkg syscall (darwin-386-cgo), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-386-cgo), const SYS_CONNECT = 98 +pkg syscall (darwin-386-cgo), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-386-cgo), const SYS_COPYFILE = 227 +pkg syscall (darwin-386-cgo), const SYS_CSOPS = 169 +pkg syscall (darwin-386-cgo), const SYS_DELETE = 226 +pkg syscall (darwin-386-cgo), const SYS_DUP = 41 +pkg syscall (darwin-386-cgo), const SYS_DUP2 = 90 +pkg syscall (darwin-386-cgo), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-386-cgo), const SYS_EXECVE = 59 +pkg syscall (darwin-386-cgo), const SYS_EXIT = 1 +pkg syscall (darwin-386-cgo), const SYS_FCHDIR = 13 +pkg syscall (darwin-386-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-386-cgo), const SYS_FCHMOD = 124 +pkg syscall (darwin-386-cgo), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-386-cgo), const SYS_FCHOWN = 123 +pkg syscall (darwin-386-cgo), const SYS_FCNTL = 92 +pkg syscall (darwin-386-cgo), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-386-cgo), const SYS_FDATASYNC = 187 +pkg syscall (darwin-386-cgo), const SYS_FFSCTL = 245 +pkg syscall (darwin-386-cgo), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-386-cgo), const SYS_FGETXATTR = 235 +pkg syscall (darwin-386-cgo), const SYS_FHOPEN = 248 +pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-386-cgo), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-386-cgo), const SYS_FLOCK = 131 +pkg syscall (darwin-386-cgo), const SYS_FORK = 2 +pkg syscall (darwin-386-cgo), const SYS_FPATHCONF = 192 +pkg syscall (darwin-386-cgo), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-386-cgo), const SYS_FSCTL = 242 +pkg syscall (darwin-386-cgo), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-386-cgo), const SYS_FSETXATTR = 237 +pkg syscall (darwin-386-cgo), const SYS_FSGETPATH = 427 +pkg syscall (darwin-386-cgo), const SYS_FSTAT = 189 +pkg syscall (darwin-386-cgo), const SYS_FSTAT64 = 339 +pkg syscall (darwin-386-cgo), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-386-cgo), const SYS_FSTATFS = 158 +pkg syscall (darwin-386-cgo), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-386-cgo), const SYS_FSTATV = 219 +pkg syscall (darwin-386-cgo), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-386-cgo), const SYS_FSYNC = 95 +pkg syscall (darwin-386-cgo), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-386-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-386-cgo), const SYS_FUTIMES = 139 +pkg syscall (darwin-386-cgo), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-386-cgo), const SYS_GETAUDIT = 355 +pkg syscall (darwin-386-cgo), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-386-cgo), const SYS_GETAUID = 353 +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-386-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-386-cgo), const SYS_GETEGID = 43 +pkg syscall (darwin-386-cgo), const SYS_GETEUID = 25 +pkg syscall (darwin-386-cgo), const SYS_GETFH = 161 +pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-386-cgo), const SYS_GETGID = 47 +pkg syscall (darwin-386-cgo), const SYS_GETGROUPS = 79 +pkg syscall (darwin-386-cgo), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-386-cgo), const SYS_GETITIMER = 86 +pkg syscall (darwin-386-cgo), const SYS_GETLCID = 395 +pkg syscall (darwin-386-cgo), const SYS_GETLOGIN = 49 +pkg syscall (darwin-386-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-386-cgo), const SYS_GETPGID = 151 +pkg syscall (darwin-386-cgo), const SYS_GETPGRP = 81 +pkg syscall (darwin-386-cgo), const SYS_GETPID = 20 +pkg syscall (darwin-386-cgo), const SYS_GETPPID = 39 +pkg syscall (darwin-386-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-386-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-386-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-386-cgo), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-386-cgo), const SYS_GETSID = 310 +pkg syscall (darwin-386-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-386-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-386-cgo), const SYS_GETTID = 286 +pkg syscall (darwin-386-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-386-cgo), const SYS_GETUID = 24 +pkg syscall (darwin-386-cgo), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-386-cgo), const SYS_GETXATTR = 234 +pkg syscall (darwin-386-cgo), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-386-cgo), const SYS_INITGROUPS = 243 +pkg syscall (darwin-386-cgo), const SYS_IOCTL = 54 +pkg syscall (darwin-386-cgo), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-386-cgo), const SYS_ISSETUGID = 327 +pkg syscall (darwin-386-cgo), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-386-cgo), const SYS_KEVENT = 363 +pkg syscall (darwin-386-cgo), const SYS_KEVENT64 = 369 +pkg syscall (darwin-386-cgo), const SYS_KILL = 37 +pkg syscall (darwin-386-cgo), const SYS_KQUEUE = 362 +pkg syscall (darwin-386-cgo), const SYS_LCHOWN = 364 +pkg syscall (darwin-386-cgo), const SYS_LINK = 9 +pkg syscall (darwin-386-cgo), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-386-cgo), const SYS_LISTEN = 106 +pkg syscall (darwin-386-cgo), const SYS_LISTXATTR = 240 +pkg syscall (darwin-386-cgo), const SYS_LSEEK = 199 +pkg syscall (darwin-386-cgo), const SYS_LSTAT = 190 +pkg syscall (darwin-386-cgo), const SYS_LSTAT64 = 340 +pkg syscall (darwin-386-cgo), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-386-cgo), const SYS_LSTATV = 218 +pkg syscall (darwin-386-cgo), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-386-cgo), const SYS_MADVISE = 75 +pkg syscall (darwin-386-cgo), const SYS_MAXSYSCALL = 439 +pkg syscall (darwin-386-cgo), const SYS_MINCORE = 78 +pkg syscall (darwin-386-cgo), const SYS_MINHERIT = 250 +pkg syscall (darwin-386-cgo), const SYS_MKCOMPLEX = 216 +pkg syscall (darwin-386-cgo), const SYS_MKDIR = 136 +pkg syscall (darwin-386-cgo), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-386-cgo), const SYS_MKFIFO = 132 +pkg syscall (darwin-386-cgo), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-386-cgo), const SYS_MKNOD = 14 +pkg syscall (darwin-386-cgo), const SYS_MLOCK = 203 +pkg syscall (darwin-386-cgo), const SYS_MLOCKALL = 324 +pkg syscall (darwin-386-cgo), const SYS_MMAP = 197 +pkg syscall (darwin-386-cgo), const SYS_MODWATCH = 233 +pkg syscall (darwin-386-cgo), const SYS_MOUNT = 167 +pkg syscall (darwin-386-cgo), const SYS_MPROTECT = 74 +pkg syscall (darwin-386-cgo), const SYS_MSGCTL = 258 +pkg syscall (darwin-386-cgo), const SYS_MSGGET = 259 +pkg syscall (darwin-386-cgo), const SYS_MSGRCV = 261 +pkg syscall (darwin-386-cgo), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-386-cgo), const SYS_MSGSND = 260 +pkg syscall (darwin-386-cgo), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-386-cgo), const SYS_MSGSYS = 252 +pkg syscall (darwin-386-cgo), const SYS_MSYNC = 65 +pkg syscall (darwin-386-cgo), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-386-cgo), const SYS_MUNLOCK = 204 +pkg syscall (darwin-386-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-386-cgo), const SYS_MUNMAP = 73 +pkg syscall (darwin-386-cgo), const SYS_NFSCLNT = 247 +pkg syscall (darwin-386-cgo), const SYS_NFSSVC = 155 +pkg syscall (darwin-386-cgo), const SYS_OPEN = 5 +pkg syscall (darwin-386-cgo), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-386-cgo), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-386-cgo), const SYS_PATHCONF = 191 +pkg syscall (darwin-386-cgo), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-386-cgo), const SYS_PID_RESUME = 434 +pkg syscall (darwin-386-cgo), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-386-cgo), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-386-cgo), const SYS_PIPE = 42 +pkg syscall (darwin-386-cgo), const SYS_POLL = 230 +pkg syscall (darwin-386-cgo), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-386-cgo), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-386-cgo), const SYS_PREAD = 153 +pkg syscall (darwin-386-cgo), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-386-cgo), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-386-cgo), const SYS_PROC_INFO = 336 +pkg syscall (darwin-386-cgo), const SYS_PROFIL = 44 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-386-cgo), const SYS_PTRACE = 26 +pkg syscall (darwin-386-cgo), const SYS_PWRITE = 154 +pkg syscall (darwin-386-cgo), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-386-cgo), const SYS_QUOTACTL = 165 +pkg syscall (darwin-386-cgo), const SYS_READ = 3 +pkg syscall (darwin-386-cgo), const SYS_READLINK = 58 +pkg syscall (darwin-386-cgo), const SYS_READV = 120 +pkg syscall (darwin-386-cgo), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-386-cgo), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-386-cgo), const SYS_REBOOT = 55 +pkg syscall (darwin-386-cgo), const SYS_RECVFROM = 29 +pkg syscall (darwin-386-cgo), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-386-cgo), const SYS_RECVMSG = 27 +pkg syscall (darwin-386-cgo), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-386-cgo), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-386-cgo), const SYS_RENAME = 128 +pkg syscall (darwin-386-cgo), const SYS_REVOKE = 56 +pkg syscall (darwin-386-cgo), const SYS_RMDIR = 137 +pkg syscall (darwin-386-cgo), const SYS_SEARCHFS = 225 +pkg syscall (darwin-386-cgo), const SYS_SELECT = 93 +pkg syscall (darwin-386-cgo), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-386-cgo), const SYS_SEMCTL = 254 +pkg syscall (darwin-386-cgo), const SYS_SEMGET = 255 +pkg syscall (darwin-386-cgo), const SYS_SEMOP = 256 +pkg syscall (darwin-386-cgo), const SYS_SEMSYS = 251 +pkg syscall (darwin-386-cgo), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-386-cgo), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-386-cgo), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-386-cgo), const SYS_SEM_INIT = 275 +pkg syscall (darwin-386-cgo), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-386-cgo), const SYS_SEM_POST = 273 +pkg syscall (darwin-386-cgo), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-386-cgo), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-386-cgo), const SYS_SENDFILE = 337 +pkg syscall (darwin-386-cgo), const SYS_SENDMSG = 28 +pkg syscall (darwin-386-cgo), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-386-cgo), const SYS_SENDTO = 133 +pkg syscall (darwin-386-cgo), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-386-cgo), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-386-cgo), const SYS_SETAUDIT = 356 +pkg syscall (darwin-386-cgo), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-386-cgo), const SYS_SETAUID = 354 +pkg syscall (darwin-386-cgo), const SYS_SETEGID = 182 +pkg syscall (darwin-386-cgo), const SYS_SETEUID = 183 +pkg syscall (darwin-386-cgo), const SYS_SETGID = 181 +pkg syscall (darwin-386-cgo), const SYS_SETGROUPS = 80 +pkg syscall (darwin-386-cgo), const SYS_SETITIMER = 83 +pkg syscall (darwin-386-cgo), const SYS_SETLCID = 394 +pkg syscall (darwin-386-cgo), const SYS_SETLOGIN = 50 +pkg syscall (darwin-386-cgo), const SYS_SETPGID = 82 +pkg syscall (darwin-386-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-386-cgo), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-386-cgo), const SYS_SETREGID = 127 +pkg syscall (darwin-386-cgo), const SYS_SETREUID = 126 +pkg syscall (darwin-386-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-386-cgo), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-386-cgo), const SYS_SETSID = 147 +pkg syscall (darwin-386-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-386-cgo), const SYS_SETTID = 285 +pkg syscall (darwin-386-cgo), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-386-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-386-cgo), const SYS_SETUID = 23 +pkg syscall (darwin-386-cgo), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-386-cgo), const SYS_SETXATTR = 236 +pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-386-cgo), const SYS_SHMAT = 262 +pkg syscall (darwin-386-cgo), const SYS_SHMCTL = 263 +pkg syscall (darwin-386-cgo), const SYS_SHMDT = 264 +pkg syscall (darwin-386-cgo), const SYS_SHMGET = 265 +pkg syscall (darwin-386-cgo), const SYS_SHMSYS = 253 +pkg syscall (darwin-386-cgo), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-386-cgo), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-386-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-386-cgo), const SYS_SIGACTION = 46 +pkg syscall (darwin-386-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-386-cgo), const SYS_SIGPENDING = 52 +pkg syscall (darwin-386-cgo), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-386-cgo), const SYS_SIGRETURN = 184 +pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-386-cgo), const SYS_SOCKET = 97 +pkg syscall (darwin-386-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-386-cgo), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-386-cgo), const SYS_STAT = 188 +pkg syscall (darwin-386-cgo), const SYS_STAT64 = 338 +pkg syscall (darwin-386-cgo), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-386-cgo), const SYS_STATFS = 157 +pkg syscall (darwin-386-cgo), const SYS_STATFS64 = 345 +pkg syscall (darwin-386-cgo), const SYS_STATV = 217 +pkg syscall (darwin-386-cgo), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-386-cgo), const SYS_SWAPON = 85 +pkg syscall (darwin-386-cgo), const SYS_SYMLINK = 57 +pkg syscall (darwin-386-cgo), const SYS_SYNC = 36 +pkg syscall (darwin-386-cgo), const SYS_SYSCALL = 0 +pkg syscall (darwin-386-cgo), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-386-cgo), const SYS_TRUNCATE = 200 +pkg syscall (darwin-386-cgo), const SYS_UMASK = 60 +pkg syscall (darwin-386-cgo), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-386-cgo), const SYS_UNDELETE = 205 +pkg syscall (darwin-386-cgo), const SYS_UNLINK = 10 +pkg syscall (darwin-386-cgo), const SYS_UNMOUNT = 159 +pkg syscall (darwin-386-cgo), const SYS_UTIMES = 138 +pkg syscall (darwin-386-cgo), const SYS_VFORK = 66 +pkg syscall (darwin-386-cgo), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-386-cgo), const SYS_WAIT4 = 7 +pkg syscall (darwin-386-cgo), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-386-cgo), const SYS_WAITEVENT = 232 +pkg syscall (darwin-386-cgo), const SYS_WAITID = 173 +pkg syscall (darwin-386-cgo), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-386-cgo), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-386-cgo), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-386-cgo), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-386-cgo), const SYS_WRITE = 4 +pkg syscall (darwin-386-cgo), const SYS_WRITEV = 121 +pkg syscall (darwin-386-cgo), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-386-cgo), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-386-cgo), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-386-cgo), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-386-cgo), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-386-cgo), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-386-cgo), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-386-cgo), const SYS___SIGWAIT = 330 +pkg syscall (darwin-386-cgo), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-386-cgo), const SYS___SYSCTL = 202 +pkg syscall (darwin-386-cgo), const S_IEXEC = 64 +pkg syscall (darwin-386-cgo), const S_IFMT = 61440 +pkg syscall (darwin-386-cgo), const S_IFWHT = 57344 +pkg syscall (darwin-386-cgo), const S_IREAD = 256 +pkg syscall (darwin-386-cgo), const S_IRGRP = 32 +pkg syscall (darwin-386-cgo), const S_IROTH = 4 +pkg syscall (darwin-386-cgo), const S_IRWXG = 56 +pkg syscall (darwin-386-cgo), const S_IRWXO = 7 +pkg syscall (darwin-386-cgo), const S_IRWXU = 448 +pkg syscall (darwin-386-cgo), const S_ISTXT = 512 +pkg syscall (darwin-386-cgo), const S_IWGRP = 16 +pkg syscall (darwin-386-cgo), const S_IWOTH = 2 +pkg syscall (darwin-386-cgo), const S_IWRITE = 128 +pkg syscall (darwin-386-cgo), const S_IXGRP = 8 +pkg syscall (darwin-386-cgo), const S_IXOTH = 1 +pkg syscall (darwin-386-cgo), const SizeofBpfHdr = 20 +pkg syscall (darwin-386-cgo), const SizeofBpfInsn = 8 +pkg syscall (darwin-386-cgo), const SizeofBpfProgram = 8 +pkg syscall (darwin-386-cgo), const SizeofBpfStat = 8 +pkg syscall (darwin-386-cgo), const SizeofBpfVersion = 4 +pkg syscall (darwin-386-cgo), const SizeofCmsghdr = 12 +pkg syscall (darwin-386-cgo), const SizeofIPMreq = 8 +pkg syscall (darwin-386-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-386-cgo), const SizeofIfData = 96 +pkg syscall (darwin-386-cgo), const SizeofIfMsghdr = 112 +pkg syscall (darwin-386-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-386-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-386-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-386-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-386-cgo), const SizeofLinger = 8 +pkg syscall (darwin-386-cgo), const SizeofMsghdr = 28 +pkg syscall (darwin-386-cgo), const SizeofRtMetrics = 56 +pkg syscall (darwin-386-cgo), const SizeofRtMsghdr = 92 +pkg syscall (darwin-386-cgo), const SizeofSockaddrAny = 108 +pkg syscall (darwin-386-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-386-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-386-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-386-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-386-cgo), const TCIFLUSH = 1 +pkg syscall (darwin-386-cgo), const TCIFLUSH ideal-int +pkg syscall (darwin-386-cgo), const TCIOFLUSH = 3 +pkg syscall (darwin-386-cgo), const TCIOFLUSH ideal-int +pkg syscall (darwin-386-cgo), const TCOFLUSH = 2 +pkg syscall (darwin-386-cgo), const TCOFLUSH ideal-int +pkg syscall (darwin-386-cgo), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-386-cgo), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-386-cgo), const TCP_MAXHLEN = 60 +pkg syscall (darwin-386-cgo), const TCP_MAXOLEN = 40 +pkg syscall (darwin-386-cgo), const TCP_MAXSEG = 2 +pkg syscall (darwin-386-cgo), const TCP_MAXWIN = 65535 +pkg syscall (darwin-386-cgo), const TCP_MAX_SACK = 3 +pkg syscall (darwin-386-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-386-cgo), const TCP_MINMSS = 216 +pkg syscall (darwin-386-cgo), const TCP_MINMSSOVERLOAD = 1000 +pkg syscall (darwin-386-cgo), const TCP_MSS = 512 +pkg syscall (darwin-386-cgo), const TCP_NOOPT = 8 +pkg syscall (darwin-386-cgo), const TCP_NOPUSH = 4 +pkg syscall (darwin-386-cgo), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-386-cgo), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-386-cgo), const TCSAFLUSH = 2 +pkg syscall (darwin-386-cgo), const TCSAFLUSH ideal-int +pkg syscall (darwin-386-cgo), const TIOCCBRK = 536900730 +pkg syscall (darwin-386-cgo), const TIOCCDTR = 536900728 +pkg syscall (darwin-386-cgo), const TIOCCONS = 2147775586 +pkg syscall (darwin-386-cgo), const TIOCDCDTIMESTAMP = 1074295896 +pkg syscall (darwin-386-cgo), const TIOCDRAIN = 536900702 +pkg syscall (darwin-386-cgo), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-386-cgo), const TIOCEXCL = 536900621 +pkg syscall (darwin-386-cgo), const TIOCEXT = 2147775584 +pkg syscall (darwin-386-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-386-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-386-cgo), const TIOCGETA = 1076655123 +pkg syscall (darwin-386-cgo), const TIOCGETD = 1074033690 +pkg syscall (darwin-386-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-386-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-386-cgo), const TIOCIXOFF = 536900736 +pkg syscall (darwin-386-cgo), const TIOCIXON = 536900737 +pkg syscall (darwin-386-cgo), const TIOCMBIC = 2147775595 +pkg syscall (darwin-386-cgo), const TIOCMBIS = 2147775596 +pkg syscall (darwin-386-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-386-cgo), const TIOCMGET = 1074033770 +pkg syscall (darwin-386-cgo), const TIOCMODG = 1074033667 +pkg syscall (darwin-386-cgo), const TIOCMODS = 2147775492 +pkg syscall (darwin-386-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-386-cgo), const TIOCMSET = 2147775597 +pkg syscall (darwin-386-cgo), const TIOCM_CAR = 64 +pkg syscall (darwin-386-cgo), const TIOCM_CD = 64 +pkg syscall (darwin-386-cgo), const TIOCM_CTS = 32 +pkg syscall (darwin-386-cgo), const TIOCM_DSR = 256 +pkg syscall (darwin-386-cgo), const TIOCM_DTR = 2 +pkg syscall (darwin-386-cgo), const TIOCM_LE = 1 +pkg syscall (darwin-386-cgo), const TIOCM_RI = 128 +pkg syscall (darwin-386-cgo), const TIOCM_RNG = 128 +pkg syscall (darwin-386-cgo), const TIOCM_RTS = 4 +pkg syscall (darwin-386-cgo), const TIOCM_SR = 16 +pkg syscall (darwin-386-cgo), const TIOCM_ST = 8 +pkg syscall (darwin-386-cgo), const TIOCNOTTY = 536900721 +pkg syscall (darwin-386-cgo), const TIOCNXCL = 536900622 +pkg syscall (darwin-386-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-386-cgo), const TIOCPKT = 2147775600 +pkg syscall (darwin-386-cgo), const TIOCPKT_DATA = 0 +pkg syscall (darwin-386-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-386-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-386-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-386-cgo), const TIOCPKT_START = 8 +pkg syscall (darwin-386-cgo), const TIOCPKT_STOP = 4 +pkg syscall (darwin-386-cgo), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-386-cgo), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-386-cgo), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-386-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-386-cgo), const TIOCSBRK = 536900731 +pkg syscall (darwin-386-cgo), const TIOCSCONS = 536900707 +pkg syscall (darwin-386-cgo), const TIOCSCTTY = 536900705 +pkg syscall (darwin-386-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-386-cgo), const TIOCSDTR = 536900729 +pkg syscall (darwin-386-cgo), const TIOCSETA = 2150396948 +pkg syscall (darwin-386-cgo), const TIOCSETAF = 2150396950 +pkg syscall (darwin-386-cgo), const TIOCSETAW = 2150396949 +pkg syscall (darwin-386-cgo), const TIOCSETD = 2147775515 +pkg syscall (darwin-386-cgo), const TIOCSIG = 536900703 +pkg syscall (darwin-386-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-386-cgo), const TIOCSTART = 536900718 +pkg syscall (darwin-386-cgo), const TIOCSTAT = 536900709 +pkg syscall (darwin-386-cgo), const TIOCSTI = 2147578994 +pkg syscall (darwin-386-cgo), const TIOCSTOP = 536900719 +pkg syscall (darwin-386-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-386-cgo), const TIOCTIMESTAMP = 1074295897 +pkg syscall (darwin-386-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-386-cgo), const TOSTOP = 4194304 +pkg syscall (darwin-386-cgo), const TOSTOP ideal-int +pkg syscall (darwin-386-cgo), const VDISCARD = 15 +pkg syscall (darwin-386-cgo), const VDISCARD ideal-int +pkg syscall (darwin-386-cgo), const VDSUSP = 11 +pkg syscall (darwin-386-cgo), const VDSUSP ideal-int +pkg syscall (darwin-386-cgo), const VEOF = 0 +pkg syscall (darwin-386-cgo), const VEOF ideal-int +pkg syscall (darwin-386-cgo), const VEOL = 1 +pkg syscall (darwin-386-cgo), const VEOL ideal-int +pkg syscall (darwin-386-cgo), const VEOL2 = 2 +pkg syscall (darwin-386-cgo), const VEOL2 ideal-int +pkg syscall (darwin-386-cgo), const VERASE = 3 +pkg syscall (darwin-386-cgo), const VERASE ideal-int +pkg syscall (darwin-386-cgo), const VINTR = 8 +pkg syscall (darwin-386-cgo), const VINTR ideal-int +pkg syscall (darwin-386-cgo), const VKILL = 5 +pkg syscall (darwin-386-cgo), const VKILL ideal-int +pkg syscall (darwin-386-cgo), const VLNEXT = 14 +pkg syscall (darwin-386-cgo), const VLNEXT ideal-int +pkg syscall (darwin-386-cgo), const VMIN = 16 +pkg syscall (darwin-386-cgo), const VMIN ideal-int +pkg syscall (darwin-386-cgo), const VQUIT = 9 +pkg syscall (darwin-386-cgo), const VQUIT ideal-int +pkg syscall (darwin-386-cgo), const VREPRINT = 6 +pkg syscall (darwin-386-cgo), const VREPRINT ideal-int +pkg syscall (darwin-386-cgo), const VSTART = 12 +pkg syscall (darwin-386-cgo), const VSTART ideal-int +pkg syscall (darwin-386-cgo), const VSTATUS = 18 +pkg syscall (darwin-386-cgo), const VSTATUS ideal-int +pkg syscall (darwin-386-cgo), const VSTOP = 13 +pkg syscall (darwin-386-cgo), const VSTOP ideal-int +pkg syscall (darwin-386-cgo), const VSUSP = 10 +pkg syscall (darwin-386-cgo), const VSUSP ideal-int +pkg syscall (darwin-386-cgo), const VT0 = 0 +pkg syscall (darwin-386-cgo), const VT0 ideal-int +pkg syscall (darwin-386-cgo), const VT1 = 65536 +pkg syscall (darwin-386-cgo), const VT1 ideal-int +pkg syscall (darwin-386-cgo), const VTDLY = 65536 +pkg syscall (darwin-386-cgo), const VTDLY ideal-int +pkg syscall (darwin-386-cgo), const VTIME = 17 +pkg syscall (darwin-386-cgo), const VTIME ideal-int +pkg syscall (darwin-386-cgo), const VWERASE = 4 +pkg syscall (darwin-386-cgo), const VWERASE ideal-int +pkg syscall (darwin-386-cgo), const WCONTINUED = 16 +pkg syscall (darwin-386-cgo), const WCOREFLAG = 128 +pkg syscall (darwin-386-cgo), const WEXITED = 4 +pkg syscall (darwin-386-cgo), const WNOHANG = 1 +pkg syscall (darwin-386-cgo), const WNOWAIT = 32 +pkg syscall (darwin-386-cgo), const WORDSIZE = 32 +pkg syscall (darwin-386-cgo), const WSTOPPED = 8 +pkg syscall (darwin-386-cgo), const WUNTRACED = 2 +pkg syscall (darwin-386-cgo), func Fchflags(int, int) error +pkg syscall (darwin-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-386-cgo), type Inet4Pktinfo struct +pkg syscall (darwin-386-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-386-cgo), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-386-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-386-cgo), type Termios struct +pkg syscall (darwin-386-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-386-cgo), type Termios struct, Cflag uint32 +pkg syscall (darwin-386-cgo), type Termios struct, Iflag uint32 +pkg syscall (darwin-386-cgo), type Termios struct, Ispeed uint32 +pkg syscall (darwin-386-cgo), type Termios struct, Lflag uint32 +pkg syscall (darwin-386-cgo), type Termios struct, Oflag uint32 +pkg syscall (darwin-386-cgo), type Termios struct, Ospeed uint32 +pkg syscall (darwin-amd64), const AF_APPLETALK = 16 +pkg syscall (darwin-amd64), const AF_CCITT = 10 +pkg syscall (darwin-amd64), const AF_CHAOS = 5 +pkg syscall (darwin-amd64), const AF_CNT = 21 +pkg syscall (darwin-amd64), const AF_COIP = 20 +pkg syscall (darwin-amd64), const AF_DATAKIT = 9 +pkg syscall (darwin-amd64), const AF_DECnet = 12 +pkg syscall (darwin-amd64), const AF_DLI = 13 +pkg syscall (darwin-amd64), const AF_E164 = 28 +pkg syscall (darwin-amd64), const AF_ECMA = 8 +pkg syscall (darwin-amd64), const AF_HYLINK = 15 +pkg syscall (darwin-amd64), const AF_IEEE80211 = 37 +pkg syscall (darwin-amd64), const AF_IMPLINK = 3 +pkg syscall (darwin-amd64), const AF_INET6 = 30 +pkg syscall (darwin-amd64), const AF_IPX = 23 +pkg syscall (darwin-amd64), const AF_ISDN = 28 +pkg syscall (darwin-amd64), const AF_ISO = 7 +pkg syscall (darwin-amd64), const AF_LAT = 14 +pkg syscall (darwin-amd64), const AF_LINK = 18 +pkg syscall (darwin-amd64), const AF_LOCAL = 1 +pkg syscall (darwin-amd64), const AF_MAX = 38 +pkg syscall (darwin-amd64), const AF_NATM = 31 +pkg syscall (darwin-amd64), const AF_NDRV = 27 +pkg syscall (darwin-amd64), const AF_NETBIOS = 33 +pkg syscall (darwin-amd64), const AF_NS = 6 +pkg syscall (darwin-amd64), const AF_OSI = 7 +pkg syscall (darwin-amd64), const AF_PPP = 34 +pkg syscall (darwin-amd64), const AF_PUP = 4 +pkg syscall (darwin-amd64), const AF_RESERVED_36 = 36 +pkg syscall (darwin-amd64), const AF_ROUTE = 17 +pkg syscall (darwin-amd64), const AF_SIP = 24 +pkg syscall (darwin-amd64), const AF_SNA = 11 +pkg syscall (darwin-amd64), const AF_SYSTEM = 32 +pkg syscall (darwin-amd64), const B0 = 0 +pkg syscall (darwin-amd64), const B0 ideal-int +pkg syscall (darwin-amd64), const B110 = 110 +pkg syscall (darwin-amd64), const B110 ideal-int +pkg syscall (darwin-amd64), const B115200 = 115200 +pkg syscall (darwin-amd64), const B115200 ideal-int +pkg syscall (darwin-amd64), const B1200 = 1200 +pkg syscall (darwin-amd64), const B1200 ideal-int +pkg syscall (darwin-amd64), const B134 = 134 +pkg syscall (darwin-amd64), const B134 ideal-int +pkg syscall (darwin-amd64), const B14400 = 14400 +pkg syscall (darwin-amd64), const B14400 ideal-int +pkg syscall (darwin-amd64), const B150 = 150 +pkg syscall (darwin-amd64), const B150 ideal-int +pkg syscall (darwin-amd64), const B1800 = 1800 +pkg syscall (darwin-amd64), const B1800 ideal-int +pkg syscall (darwin-amd64), const B19200 = 19200 +pkg syscall (darwin-amd64), const B19200 ideal-int +pkg syscall (darwin-amd64), const B200 = 200 +pkg syscall (darwin-amd64), const B200 ideal-int +pkg syscall (darwin-amd64), const B230400 = 230400 +pkg syscall (darwin-amd64), const B230400 ideal-int +pkg syscall (darwin-amd64), const B2400 = 2400 +pkg syscall (darwin-amd64), const B2400 ideal-int +pkg syscall (darwin-amd64), const B28800 = 28800 +pkg syscall (darwin-amd64), const B28800 ideal-int +pkg syscall (darwin-amd64), const B300 = 300 +pkg syscall (darwin-amd64), const B300 ideal-int +pkg syscall (darwin-amd64), const B38400 = 38400 +pkg syscall (darwin-amd64), const B38400 ideal-int +pkg syscall (darwin-amd64), const B4800 = 4800 +pkg syscall (darwin-amd64), const B4800 ideal-int +pkg syscall (darwin-amd64), const B50 = 50 +pkg syscall (darwin-amd64), const B50 ideal-int +pkg syscall (darwin-amd64), const B57600 = 57600 +pkg syscall (darwin-amd64), const B57600 ideal-int +pkg syscall (darwin-amd64), const B600 = 600 +pkg syscall (darwin-amd64), const B600 ideal-int +pkg syscall (darwin-amd64), const B7200 = 7200 +pkg syscall (darwin-amd64), const B7200 ideal-int +pkg syscall (darwin-amd64), const B75 = 75 +pkg syscall (darwin-amd64), const B75 ideal-int +pkg syscall (darwin-amd64), const B76800 = 76800 +pkg syscall (darwin-amd64), const B76800 ideal-int +pkg syscall (darwin-amd64), const B9600 = 9600 +pkg syscall (darwin-amd64), const B9600 ideal-int +pkg syscall (darwin-amd64), const BIOCFLUSH = 536887912 +pkg syscall (darwin-amd64), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-amd64), const BIOCGDLT = 1074020970 +pkg syscall (darwin-amd64), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-amd64), const BIOCGETIF = 1075855979 +pkg syscall (darwin-amd64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-amd64), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-amd64), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (darwin-amd64), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-amd64), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-amd64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-amd64), const BIOCPROMISC = 536887913 +pkg syscall (darwin-amd64), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-amd64), const BIOCSDLT = 2147762808 +pkg syscall (darwin-amd64), const BIOCSETF = 2148549223 +pkg syscall (darwin-amd64), const BIOCSETIF = 2149597804 +pkg syscall (darwin-amd64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-amd64), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-amd64), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (darwin-amd64), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-amd64), const BIOCVERSION = 1074020977 +pkg syscall (darwin-amd64), const BPF_A = 16 +pkg syscall (darwin-amd64), const BPF_ABS = 32 +pkg syscall (darwin-amd64), const BPF_ADD = 0 +pkg syscall (darwin-amd64), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-amd64), const BPF_ALU = 4 +pkg syscall (darwin-amd64), const BPF_AND = 80 +pkg syscall (darwin-amd64), const BPF_B = 16 +pkg syscall (darwin-amd64), const BPF_DIV = 48 +pkg syscall (darwin-amd64), const BPF_H = 8 +pkg syscall (darwin-amd64), const BPF_IMM = 0 +pkg syscall (darwin-amd64), const BPF_IND = 64 +pkg syscall (darwin-amd64), const BPF_JA = 0 +pkg syscall (darwin-amd64), const BPF_JEQ = 16 +pkg syscall (darwin-amd64), const BPF_JGE = 48 +pkg syscall (darwin-amd64), const BPF_JGT = 32 +pkg syscall (darwin-amd64), const BPF_JMP = 5 +pkg syscall (darwin-amd64), const BPF_JSET = 64 +pkg syscall (darwin-amd64), const BPF_K = 0 +pkg syscall (darwin-amd64), const BPF_LD = 0 +pkg syscall (darwin-amd64), const BPF_LDX = 1 +pkg syscall (darwin-amd64), const BPF_LEN = 128 +pkg syscall (darwin-amd64), const BPF_LSH = 96 +pkg syscall (darwin-amd64), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-amd64), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-amd64), const BPF_MAXINSNS = 512 +pkg syscall (darwin-amd64), const BPF_MEM = 96 +pkg syscall (darwin-amd64), const BPF_MEMWORDS = 16 +pkg syscall (darwin-amd64), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-amd64), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-amd64), const BPF_MISC = 7 +pkg syscall (darwin-amd64), const BPF_MSH = 160 +pkg syscall (darwin-amd64), const BPF_MUL = 32 +pkg syscall (darwin-amd64), const BPF_NEG = 128 +pkg syscall (darwin-amd64), const BPF_OR = 64 +pkg syscall (darwin-amd64), const BPF_RELEASE = 199606 +pkg syscall (darwin-amd64), const BPF_RET = 6 +pkg syscall (darwin-amd64), const BPF_RSH = 112 +pkg syscall (darwin-amd64), const BPF_ST = 2 +pkg syscall (darwin-amd64), const BPF_STX = 3 +pkg syscall (darwin-amd64), const BPF_SUB = 16 +pkg syscall (darwin-amd64), const BPF_TAX = 0 +pkg syscall (darwin-amd64), const BPF_TXA = 128 +pkg syscall (darwin-amd64), const BPF_W = 0 +pkg syscall (darwin-amd64), const BPF_X = 8 +pkg syscall (darwin-amd64), const BRKINT = 2 +pkg syscall (darwin-amd64), const BRKINT ideal-int +pkg syscall (darwin-amd64), const CFLUSH = 15 +pkg syscall (darwin-amd64), const CFLUSH ideal-int +pkg syscall (darwin-amd64), const CLOCAL = 32768 +pkg syscall (darwin-amd64), const CLOCAL ideal-int +pkg syscall (darwin-amd64), const CREAD = 2048 +pkg syscall (darwin-amd64), const CREAD ideal-int +pkg syscall (darwin-amd64), const CS5 = 0 +pkg syscall (darwin-amd64), const CS5 ideal-int +pkg syscall (darwin-amd64), const CS6 = 256 +pkg syscall (darwin-amd64), const CS6 ideal-int +pkg syscall (darwin-amd64), const CS7 = 512 +pkg syscall (darwin-amd64), const CS7 ideal-int +pkg syscall (darwin-amd64), const CS8 = 768 +pkg syscall (darwin-amd64), const CS8 ideal-int +pkg syscall (darwin-amd64), const CSIZE = 768 +pkg syscall (darwin-amd64), const CSIZE ideal-int +pkg syscall (darwin-amd64), const CSTART = 17 +pkg syscall (darwin-amd64), const CSTART ideal-int +pkg syscall (darwin-amd64), const CSTATUS = 20 +pkg syscall (darwin-amd64), const CSTATUS ideal-int +pkg syscall (darwin-amd64), const CSTOP = 19 +pkg syscall (darwin-amd64), const CSTOP ideal-int +pkg syscall (darwin-amd64), const CSTOPB = 1024 +pkg syscall (darwin-amd64), const CSTOPB ideal-int +pkg syscall (darwin-amd64), const CSUSP = 26 +pkg syscall (darwin-amd64), const CSUSP ideal-int +pkg syscall (darwin-amd64), const CTL_MAXNAME = 12 +pkg syscall (darwin-amd64), const CTL_NET = 4 +pkg syscall (darwin-amd64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-amd64), const DLT_ARCNET = 7 +pkg syscall (darwin-amd64), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-amd64), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-amd64), const DLT_AX25 = 3 +pkg syscall (darwin-amd64), const DLT_CHAOS = 5 +pkg syscall (darwin-amd64), const DLT_CHDLC = 104 +pkg syscall (darwin-amd64), const DLT_C_HDLC = 104 +pkg syscall (darwin-amd64), const DLT_EN10MB = 1 +pkg syscall (darwin-amd64), const DLT_EN3MB = 2 +pkg syscall (darwin-amd64), const DLT_FDDI = 10 +pkg syscall (darwin-amd64), const DLT_IEEE802 = 6 +pkg syscall (darwin-amd64), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-amd64), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-amd64), const DLT_LOOP = 108 +pkg syscall (darwin-amd64), const DLT_NULL = 0 +pkg syscall (darwin-amd64), const DLT_PFLOG = 117 +pkg syscall (darwin-amd64), const DLT_PFSYNC = 18 +pkg syscall (darwin-amd64), const DLT_PPP = 9 +pkg syscall (darwin-amd64), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-amd64), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-amd64), const DLT_PRONET = 4 +pkg syscall (darwin-amd64), const DLT_RAW = 12 +pkg syscall (darwin-amd64), const DLT_SLIP = 8 +pkg syscall (darwin-amd64), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-amd64), const DT_BLK = 6 +pkg syscall (darwin-amd64), const DT_CHR = 2 +pkg syscall (darwin-amd64), const DT_DIR = 4 +pkg syscall (darwin-amd64), const DT_FIFO = 1 +pkg syscall (darwin-amd64), const DT_LNK = 10 +pkg syscall (darwin-amd64), const DT_REG = 8 +pkg syscall (darwin-amd64), const DT_SOCK = 12 +pkg syscall (darwin-amd64), const DT_UNKNOWN = 0 +pkg syscall (darwin-amd64), const DT_WHT = 14 +pkg syscall (darwin-amd64), const E2BIG = 7 +pkg syscall (darwin-amd64), const EACCES = 13 +pkg syscall (darwin-amd64), const EADDRINUSE = 48 +pkg syscall (darwin-amd64), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-amd64), const EAFNOSUPPORT = 47 +pkg syscall (darwin-amd64), const EAGAIN = 35 +pkg syscall (darwin-amd64), const EALREADY = 37 +pkg syscall (darwin-amd64), const EAUTH = 80 +pkg syscall (darwin-amd64), const EBADARCH = 86 +pkg syscall (darwin-amd64), const EBADEXEC = 85 +pkg syscall (darwin-amd64), const EBADF = 9 +pkg syscall (darwin-amd64), const EBADMACHO = 88 +pkg syscall (darwin-amd64), const EBADMSG = 94 +pkg syscall (darwin-amd64), const EBADRPC = 72 +pkg syscall (darwin-amd64), const EBUSY = 16 +pkg syscall (darwin-amd64), const ECANCELED = 89 +pkg syscall (darwin-amd64), const ECHILD = 10 +pkg syscall (darwin-amd64), const ECHO = 8 +pkg syscall (darwin-amd64), const ECHOCTL = 64 +pkg syscall (darwin-amd64), const ECHOE = 2 +pkg syscall (darwin-amd64), const ECHOK = 4 +pkg syscall (darwin-amd64), const ECHOKE = 1 +pkg syscall (darwin-amd64), const ECHONL = 16 +pkg syscall (darwin-amd64), const ECHOPRT = 32 +pkg syscall (darwin-amd64), const ECONNABORTED = 53 +pkg syscall (darwin-amd64), const ECONNREFUSED = 61 +pkg syscall (darwin-amd64), const ECONNRESET = 54 +pkg syscall (darwin-amd64), const EDEADLK = 11 +pkg syscall (darwin-amd64), const EDESTADDRREQ = 39 +pkg syscall (darwin-amd64), const EDEVERR = 83 +pkg syscall (darwin-amd64), const EDOM = 33 +pkg syscall (darwin-amd64), const EDQUOT = 69 +pkg syscall (darwin-amd64), const EEXIST = 17 +pkg syscall (darwin-amd64), const EFAULT = 14 +pkg syscall (darwin-amd64), const EFBIG = 27 +pkg syscall (darwin-amd64), const EFTYPE = 79 +pkg syscall (darwin-amd64), const EHOSTDOWN = 64 +pkg syscall (darwin-amd64), const EHOSTUNREACH = 65 +pkg syscall (darwin-amd64), const EIDRM = 90 +pkg syscall (darwin-amd64), const EILSEQ = 92 +pkg syscall (darwin-amd64), const EINPROGRESS = 36 +pkg syscall (darwin-amd64), const EINTR = 4 +pkg syscall (darwin-amd64), const EINVAL = 22 +pkg syscall (darwin-amd64), const EIO = 5 +pkg syscall (darwin-amd64), const EISCONN = 56 +pkg syscall (darwin-amd64), const EISDIR = 21 +pkg syscall (darwin-amd64), const ELAST = 105 +pkg syscall (darwin-amd64), const ELOOP = 62 +pkg syscall (darwin-amd64), const EMFILE = 24 +pkg syscall (darwin-amd64), const EMLINK = 31 +pkg syscall (darwin-amd64), const EMSGSIZE = 40 +pkg syscall (darwin-amd64), const EMULTIHOP = 95 +pkg syscall (darwin-amd64), const ENAMETOOLONG = 63 +pkg syscall (darwin-amd64), const ENEEDAUTH = 81 +pkg syscall (darwin-amd64), const ENETDOWN = 50 +pkg syscall (darwin-amd64), const ENETRESET = 52 +pkg syscall (darwin-amd64), const ENETUNREACH = 51 +pkg syscall (darwin-amd64), const ENFILE = 23 +pkg syscall (darwin-amd64), const ENOATTR = 93 +pkg syscall (darwin-amd64), const ENOBUFS = 55 +pkg syscall (darwin-amd64), const ENODATA = 96 +pkg syscall (darwin-amd64), const ENODEV = 19 +pkg syscall (darwin-amd64), const ENOEXEC = 8 +pkg syscall (darwin-amd64), const ENOLCK = 77 +pkg syscall (darwin-amd64), const ENOLINK = 97 +pkg syscall (darwin-amd64), const ENOMEM = 12 +pkg syscall (darwin-amd64), const ENOMSG = 91 +pkg syscall (darwin-amd64), const ENOPOLICY = 103 +pkg syscall (darwin-amd64), const ENOPROTOOPT = 42 +pkg syscall (darwin-amd64), const ENOSPC = 28 +pkg syscall (darwin-amd64), const ENOSR = 98 +pkg syscall (darwin-amd64), const ENOSTR = 99 +pkg syscall (darwin-amd64), const ENOSYS = 78 +pkg syscall (darwin-amd64), const ENOTBLK = 15 +pkg syscall (darwin-amd64), const ENOTCONN = 57 +pkg syscall (darwin-amd64), const ENOTDIR = 20 +pkg syscall (darwin-amd64), const ENOTEMPTY = 66 +pkg syscall (darwin-amd64), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-amd64), const ENOTSOCK = 38 +pkg syscall (darwin-amd64), const ENOTSUP = 45 +pkg syscall (darwin-amd64), const ENOTTY = 25 +pkg syscall (darwin-amd64), const ENXIO = 6 +pkg syscall (darwin-amd64), const EOPNOTSUPP = 102 +pkg syscall (darwin-amd64), const EOVERFLOW = 84 +pkg syscall (darwin-amd64), const EOWNERDEAD = 105 +pkg syscall (darwin-amd64), const EPERM = 1 +pkg syscall (darwin-amd64), const EPFNOSUPPORT = 46 +pkg syscall (darwin-amd64), const EPIPE = 32 +pkg syscall (darwin-amd64), const EPROCLIM = 67 +pkg syscall (darwin-amd64), const EPROCUNAVAIL = 76 +pkg syscall (darwin-amd64), const EPROGMISMATCH = 75 +pkg syscall (darwin-amd64), const EPROGUNAVAIL = 74 +pkg syscall (darwin-amd64), const EPROTO = 100 +pkg syscall (darwin-amd64), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-amd64), const EPROTOTYPE = 41 +pkg syscall (darwin-amd64), const EPWROFF = 82 +pkg syscall (darwin-amd64), const ERANGE = 34 +pkg syscall (darwin-amd64), const EREMOTE = 71 +pkg syscall (darwin-amd64), const EROFS = 30 +pkg syscall (darwin-amd64), const ERPCMISMATCH = 73 +pkg syscall (darwin-amd64), const ESHLIBVERS = 87 +pkg syscall (darwin-amd64), const ESHUTDOWN = 58 +pkg syscall (darwin-amd64), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-amd64), const ESPIPE = 29 +pkg syscall (darwin-amd64), const ESRCH = 3 +pkg syscall (darwin-amd64), const ESTALE = 70 +pkg syscall (darwin-amd64), const ETIME = 101 +pkg syscall (darwin-amd64), const ETIMEDOUT = 60 +pkg syscall (darwin-amd64), const ETOOMANYREFS = 59 +pkg syscall (darwin-amd64), const ETXTBSY = 26 +pkg syscall (darwin-amd64), const EUSERS = 68 +pkg syscall (darwin-amd64), const EVFILT_AIO = -3 +pkg syscall (darwin-amd64), const EVFILT_FS = -9 +pkg syscall (darwin-amd64), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-amd64), const EVFILT_PROC = -5 +pkg syscall (darwin-amd64), const EVFILT_READ = -1 +pkg syscall (darwin-amd64), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-amd64), const EVFILT_SYSCOUNT = 12 +pkg syscall (darwin-amd64), const EVFILT_THREADMARKER = 12 +pkg syscall (darwin-amd64), const EVFILT_TIMER = -7 +pkg syscall (darwin-amd64), const EVFILT_USER = -10 +pkg syscall (darwin-amd64), const EVFILT_VM = -12 +pkg syscall (darwin-amd64), const EVFILT_VNODE = -4 +pkg syscall (darwin-amd64), const EVFILT_WRITE = -2 +pkg syscall (darwin-amd64), const EV_ADD = 1 +pkg syscall (darwin-amd64), const EV_CLEAR = 32 +pkg syscall (darwin-amd64), const EV_DELETE = 2 +pkg syscall (darwin-amd64), const EV_DISABLE = 8 +pkg syscall (darwin-amd64), const EV_DISPATCH = 128 +pkg syscall (darwin-amd64), const EV_ENABLE = 4 +pkg syscall (darwin-amd64), const EV_EOF = 32768 +pkg syscall (darwin-amd64), const EV_ERROR = 16384 +pkg syscall (darwin-amd64), const EV_FLAG0 = 4096 +pkg syscall (darwin-amd64), const EV_FLAG1 = 8192 +pkg syscall (darwin-amd64), const EV_ONESHOT = 16 +pkg syscall (darwin-amd64), const EV_OOBAND = 8192 +pkg syscall (darwin-amd64), const EV_POLL = 4096 +pkg syscall (darwin-amd64), const EV_RECEIPT = 64 +pkg syscall (darwin-amd64), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-amd64), const EWOULDBLOCK = 35 +pkg syscall (darwin-amd64), const EXDEV = 18 +pkg syscall (darwin-amd64), const EXTA = 19200 +pkg syscall (darwin-amd64), const EXTB = 38400 +pkg syscall (darwin-amd64), const EXTPROC = 2048 +pkg syscall (darwin-amd64), const FD_CLOEXEC = 1 +pkg syscall (darwin-amd64), const FD_SETSIZE = 1024 +pkg syscall (darwin-amd64), const FLUSHO = 8388608 +pkg syscall (darwin-amd64), const FLUSHO ideal-int +pkg syscall (darwin-amd64), const F_ADDFILESIGS = 61 +pkg syscall (darwin-amd64), const F_ADDSIGS = 59 +pkg syscall (darwin-amd64), const F_ALLOCATEALL = 4 +pkg syscall (darwin-amd64), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-amd64), const F_CHKCLEAN = 41 +pkg syscall (darwin-amd64), const F_DUPFD = 0 +pkg syscall (darwin-amd64), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-amd64), const F_FLUSH_DATA = 40 +pkg syscall (darwin-amd64), const F_FREEZE_FS = 53 +pkg syscall (darwin-amd64), const F_FULLFSYNC = 51 +pkg syscall (darwin-amd64), const F_GETFD = 1 +pkg syscall (darwin-amd64), const F_GETFL = 3 +pkg syscall (darwin-amd64), const F_GETLK = 7 +pkg syscall (darwin-amd64), const F_GETLKPID = 66 +pkg syscall (darwin-amd64), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-amd64), const F_GETOWN = 5 +pkg syscall (darwin-amd64), const F_GETPATH = 50 +pkg syscall (darwin-amd64), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-amd64), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-amd64), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-amd64), const F_LOG2PHYS = 49 +pkg syscall (darwin-amd64), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-amd64), const F_MARKDEPENDENCY = 60 +pkg syscall (darwin-amd64), const F_NOCACHE = 48 +pkg syscall (darwin-amd64), const F_NODIRECT = 62 +pkg syscall (darwin-amd64), const F_OK = 0 +pkg syscall (darwin-amd64), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-amd64), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-amd64), const F_PREALLOCATE = 42 +pkg syscall (darwin-amd64), const F_RDADVISE = 44 +pkg syscall (darwin-amd64), const F_RDAHEAD = 45 +pkg syscall (darwin-amd64), const F_RDLCK = 1 +pkg syscall (darwin-amd64), const F_READBOOTSTRAP = 46 +pkg syscall (darwin-amd64), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-amd64), const F_SETFD = 2 +pkg syscall (darwin-amd64), const F_SETFL = 4 +pkg syscall (darwin-amd64), const F_SETLK = 8 +pkg syscall (darwin-amd64), const F_SETLKW = 9 +pkg syscall (darwin-amd64), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-amd64), const F_SETOWN = 6 +pkg syscall (darwin-amd64), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-amd64), const F_SETSIZE = 43 +pkg syscall (darwin-amd64), const F_THAW_FS = 54 +pkg syscall (darwin-amd64), const F_UNLCK = 2 +pkg syscall (darwin-amd64), const F_VOLPOSMODE = 4 +pkg syscall (darwin-amd64), const F_WRITEBOOTSTRAP = 47 +pkg syscall (darwin-amd64), const F_WRLCK = 3 +pkg syscall (darwin-amd64), const HUPCL = 16384 +pkg syscall (darwin-amd64), const HUPCL ideal-int +pkg syscall (darwin-amd64), const ICANON = 256 +pkg syscall (darwin-amd64), const ICANON ideal-int +pkg syscall (darwin-amd64), const ICRNL = 256 +pkg syscall (darwin-amd64), const ICRNL ideal-int +pkg syscall (darwin-amd64), const IEXTEN = 1024 +pkg syscall (darwin-amd64), const IEXTEN ideal-int +pkg syscall (darwin-amd64), const IFF_ALLMULTI = 512 +pkg syscall (darwin-amd64), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-amd64), const IFF_DEBUG = 4 +pkg syscall (darwin-amd64), const IFF_LINK0 = 4096 +pkg syscall (darwin-amd64), const IFF_LINK1 = 8192 +pkg syscall (darwin-amd64), const IFF_LINK2 = 16384 +pkg syscall (darwin-amd64), const IFF_LOOPBACK = 8 +pkg syscall (darwin-amd64), const IFF_MULTICAST = 32768 +pkg syscall (darwin-amd64), const IFF_NOARP = 128 +pkg syscall (darwin-amd64), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-amd64), const IFF_OACTIVE = 1024 +pkg syscall (darwin-amd64), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-amd64), const IFF_PROMISC = 256 +pkg syscall (darwin-amd64), const IFF_RUNNING = 64 +pkg syscall (darwin-amd64), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-amd64), const IFNAMSIZ = 16 +pkg syscall (darwin-amd64), const IFT_1822 = 2 +pkg syscall (darwin-amd64), const IFT_AAL5 = 49 +pkg syscall (darwin-amd64), const IFT_ARCNET = 35 +pkg syscall (darwin-amd64), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-amd64), const IFT_ATM = 37 +pkg syscall (darwin-amd64), const IFT_BRIDGE = 209 +pkg syscall (darwin-amd64), const IFT_CARP = 248 +pkg syscall (darwin-amd64), const IFT_CELLULAR = 255 +pkg syscall (darwin-amd64), const IFT_CEPT = 19 +pkg syscall (darwin-amd64), const IFT_DS3 = 30 +pkg syscall (darwin-amd64), const IFT_ENC = 244 +pkg syscall (darwin-amd64), const IFT_EON = 25 +pkg syscall (darwin-amd64), const IFT_ETHER = 6 +pkg syscall (darwin-amd64), const IFT_FAITH = 56 +pkg syscall (darwin-amd64), const IFT_FDDI = 15 +pkg syscall (darwin-amd64), const IFT_FRELAY = 32 +pkg syscall (darwin-amd64), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-amd64), const IFT_GIF = 55 +pkg syscall (darwin-amd64), const IFT_HDH1822 = 3 +pkg syscall (darwin-amd64), const IFT_HIPPI = 47 +pkg syscall (darwin-amd64), const IFT_HSSI = 46 +pkg syscall (darwin-amd64), const IFT_HY = 14 +pkg syscall (darwin-amd64), const IFT_IEEE1394 = 144 +pkg syscall (darwin-amd64), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-amd64), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-amd64), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-amd64), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-amd64), const IFT_ISO88023 = 7 +pkg syscall (darwin-amd64), const IFT_ISO88024 = 8 +pkg syscall (darwin-amd64), const IFT_ISO88025 = 9 +pkg syscall (darwin-amd64), const IFT_ISO88026 = 10 +pkg syscall (darwin-amd64), const IFT_L2VLAN = 135 +pkg syscall (darwin-amd64), const IFT_LAPB = 16 +pkg syscall (darwin-amd64), const IFT_LOCALTALK = 42 +pkg syscall (darwin-amd64), const IFT_LOOP = 24 +pkg syscall (darwin-amd64), const IFT_MIOX25 = 38 +pkg syscall (darwin-amd64), const IFT_MODEM = 48 +pkg syscall (darwin-amd64), const IFT_NSIP = 27 +pkg syscall (darwin-amd64), const IFT_OTHER = 1 +pkg syscall (darwin-amd64), const IFT_P10 = 12 +pkg syscall (darwin-amd64), const IFT_P80 = 13 +pkg syscall (darwin-amd64), const IFT_PARA = 34 +pkg syscall (darwin-amd64), const IFT_PDP = 255 +pkg syscall (darwin-amd64), const IFT_PFLOG = 245 +pkg syscall (darwin-amd64), const IFT_PFSYNC = 246 +pkg syscall (darwin-amd64), const IFT_PPP = 23 +pkg syscall (darwin-amd64), const IFT_PROPMUX = 54 +pkg syscall (darwin-amd64), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-amd64), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-amd64), const IFT_RS232 = 33 +pkg syscall (darwin-amd64), const IFT_SDLC = 17 +pkg syscall (darwin-amd64), const IFT_SIP = 31 +pkg syscall (darwin-amd64), const IFT_SLIP = 28 +pkg syscall (darwin-amd64), const IFT_SMDSDXI = 43 +pkg syscall (darwin-amd64), const IFT_SMDSICIP = 52 +pkg syscall (darwin-amd64), const IFT_SONET = 39 +pkg syscall (darwin-amd64), const IFT_SONETPATH = 50 +pkg syscall (darwin-amd64), const IFT_SONETVT = 51 +pkg syscall (darwin-amd64), const IFT_STARLAN = 11 +pkg syscall (darwin-amd64), const IFT_STF = 57 +pkg syscall (darwin-amd64), const IFT_T1 = 18 +pkg syscall (darwin-amd64), const IFT_ULTRA = 29 +pkg syscall (darwin-amd64), const IFT_V35 = 45 +pkg syscall (darwin-amd64), const IFT_X25 = 5 +pkg syscall (darwin-amd64), const IFT_X25DDN = 4 +pkg syscall (darwin-amd64), const IFT_X25PLE = 40 +pkg syscall (darwin-amd64), const IFT_XETHER = 26 +pkg syscall (darwin-amd64), const IGNBRK = 1 +pkg syscall (darwin-amd64), const IGNBRK ideal-int +pkg syscall (darwin-amd64), const IGNCR = 128 +pkg syscall (darwin-amd64), const IGNCR ideal-int +pkg syscall (darwin-amd64), const IGNPAR = 4 +pkg syscall (darwin-amd64), const IGNPAR ideal-int +pkg syscall (darwin-amd64), const IMAXBEL = 8192 +pkg syscall (darwin-amd64), const IMAXBEL ideal-int +pkg syscall (darwin-amd64), const INLCR = 64 +pkg syscall (darwin-amd64), const INLCR ideal-int +pkg syscall (darwin-amd64), const INPCK = 16 +pkg syscall (darwin-amd64), const INPCK ideal-int +pkg syscall (darwin-amd64), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-amd64), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-amd64), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-amd64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-amd64), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-amd64), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-amd64), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-amd64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-amd64), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-amd64), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-amd64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-amd64), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-amd64), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-amd64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-amd64), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-amd64), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-amd64), const IPPROTO_3PC = 34 +pkg syscall (darwin-amd64), const IPPROTO_ADFS = 68 +pkg syscall (darwin-amd64), const IPPROTO_AH = 51 +pkg syscall (darwin-amd64), const IPPROTO_AHIP = 61 +pkg syscall (darwin-amd64), const IPPROTO_APES = 99 +pkg syscall (darwin-amd64), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-amd64), const IPPROTO_AX25 = 93 +pkg syscall (darwin-amd64), const IPPROTO_BHA = 49 +pkg syscall (darwin-amd64), const IPPROTO_BLT = 30 +pkg syscall (darwin-amd64), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-amd64), const IPPROTO_CFTP = 62 +pkg syscall (darwin-amd64), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-amd64), const IPPROTO_CMTP = 38 +pkg syscall (darwin-amd64), const IPPROTO_CPHB = 73 +pkg syscall (darwin-amd64), const IPPROTO_CPNX = 72 +pkg syscall (darwin-amd64), const IPPROTO_DDP = 37 +pkg syscall (darwin-amd64), const IPPROTO_DGP = 86 +pkg syscall (darwin-amd64), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-amd64), const IPPROTO_DONE = 257 +pkg syscall (darwin-amd64), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-amd64), const IPPROTO_EGP = 8 +pkg syscall (darwin-amd64), const IPPROTO_EMCON = 14 +pkg syscall (darwin-amd64), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-amd64), const IPPROTO_EON = 80 +pkg syscall (darwin-amd64), const IPPROTO_ESP = 50 +pkg syscall (darwin-amd64), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-amd64), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-amd64), const IPPROTO_GGP = 3 +pkg syscall (darwin-amd64), const IPPROTO_GMTP = 100 +pkg syscall (darwin-amd64), const IPPROTO_GRE = 47 +pkg syscall (darwin-amd64), const IPPROTO_HELLO = 63 +pkg syscall (darwin-amd64), const IPPROTO_HMP = 20 +pkg syscall (darwin-amd64), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-amd64), const IPPROTO_ICMP = 1 +pkg syscall (darwin-amd64), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-amd64), const IPPROTO_IDP = 22 +pkg syscall (darwin-amd64), const IPPROTO_IDPR = 35 +pkg syscall (darwin-amd64), const IPPROTO_IDRP = 45 +pkg syscall (darwin-amd64), const IPPROTO_IGMP = 2 +pkg syscall (darwin-amd64), const IPPROTO_IGP = 85 +pkg syscall (darwin-amd64), const IPPROTO_IGRP = 88 +pkg syscall (darwin-amd64), const IPPROTO_IL = 40 +pkg syscall (darwin-amd64), const IPPROTO_INLSP = 52 +pkg syscall (darwin-amd64), const IPPROTO_INP = 32 +pkg syscall (darwin-amd64), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-amd64), const IPPROTO_IPCV = 71 +pkg syscall (darwin-amd64), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-amd64), const IPPROTO_IPIP = 4 +pkg syscall (darwin-amd64), const IPPROTO_IPPC = 67 +pkg syscall (darwin-amd64), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-amd64), const IPPROTO_IRTP = 28 +pkg syscall (darwin-amd64), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-amd64), const IPPROTO_LARP = 91 +pkg syscall (darwin-amd64), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-amd64), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-amd64), const IPPROTO_MAX = 256 +pkg syscall (darwin-amd64), const IPPROTO_MAXID = 52 +pkg syscall (darwin-amd64), const IPPROTO_MEAS = 19 +pkg syscall (darwin-amd64), const IPPROTO_MHRP = 48 +pkg syscall (darwin-amd64), const IPPROTO_MICP = 95 +pkg syscall (darwin-amd64), const IPPROTO_MTP = 92 +pkg syscall (darwin-amd64), const IPPROTO_MUX = 18 +pkg syscall (darwin-amd64), const IPPROTO_ND = 77 +pkg syscall (darwin-amd64), const IPPROTO_NHRP = 54 +pkg syscall (darwin-amd64), const IPPROTO_NONE = 59 +pkg syscall (darwin-amd64), const IPPROTO_NSP = 31 +pkg syscall (darwin-amd64), const IPPROTO_NVPII = 11 +pkg syscall (darwin-amd64), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-amd64), const IPPROTO_PGM = 113 +pkg syscall (darwin-amd64), const IPPROTO_PIGP = 9 +pkg syscall (darwin-amd64), const IPPROTO_PIM = 103 +pkg syscall (darwin-amd64), const IPPROTO_PRM = 21 +pkg syscall (darwin-amd64), const IPPROTO_PUP = 12 +pkg syscall (darwin-amd64), const IPPROTO_PVP = 75 +pkg syscall (darwin-amd64), const IPPROTO_RAW = 255 +pkg syscall (darwin-amd64), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-amd64), const IPPROTO_RDP = 27 +pkg syscall (darwin-amd64), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-amd64), const IPPROTO_RSVP = 46 +pkg syscall (darwin-amd64), const IPPROTO_RVD = 66 +pkg syscall (darwin-amd64), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-amd64), const IPPROTO_SATMON = 69 +pkg syscall (darwin-amd64), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-amd64), const IPPROTO_SCTP = 132 +pkg syscall (darwin-amd64), const IPPROTO_SDRP = 42 +pkg syscall (darwin-amd64), const IPPROTO_SEP = 33 +pkg syscall (darwin-amd64), const IPPROTO_SRPC = 90 +pkg syscall (darwin-amd64), const IPPROTO_ST = 7 +pkg syscall (darwin-amd64), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-amd64), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-amd64), const IPPROTO_TCF = 87 +pkg syscall (darwin-amd64), const IPPROTO_TP = 29 +pkg syscall (darwin-amd64), const IPPROTO_TPXX = 39 +pkg syscall (darwin-amd64), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-amd64), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-amd64), const IPPROTO_TTP = 84 +pkg syscall (darwin-amd64), const IPPROTO_VINES = 83 +pkg syscall (darwin-amd64), const IPPROTO_VISA = 70 +pkg syscall (darwin-amd64), const IPPROTO_VMTP = 81 +pkg syscall (darwin-amd64), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-amd64), const IPPROTO_WBMON = 78 +pkg syscall (darwin-amd64), const IPPROTO_WSN = 74 +pkg syscall (darwin-amd64), const IPPROTO_XNET = 15 +pkg syscall (darwin-amd64), const IPPROTO_XTP = 36 +pkg syscall (darwin-amd64), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-amd64), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-amd64), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-amd64), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-amd64), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-amd64), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-amd64), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-amd64), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-amd64), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-amd64), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-amd64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-amd64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-amd64), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-amd64), const IPV6_FAITH = 29 +pkg syscall (darwin-amd64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-amd64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-amd64), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-amd64), const IPV6_FW_ADD = 30 +pkg syscall (darwin-amd64), const IPV6_FW_DEL = 31 +pkg syscall (darwin-amd64), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-amd64), const IPV6_FW_GET = 34 +pkg syscall (darwin-amd64), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-amd64), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-amd64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-amd64), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-amd64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-amd64), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-amd64), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-amd64), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-amd64), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-amd64), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-amd64), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-amd64), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-amd64), const IPV6_MMTU = 1280 +pkg syscall (darwin-amd64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-amd64), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-amd64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-amd64), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-amd64), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-amd64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-amd64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-amd64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-amd64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-amd64), const IPV6_TCLASS = 36 +pkg syscall (darwin-amd64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-amd64), const IPV6_V6ONLY = 27 +pkg syscall (darwin-amd64), const IPV6_VERSION = 96 +pkg syscall (darwin-amd64), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-amd64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-amd64), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-amd64), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-amd64), const IP_BOUND_IF = 25 +pkg syscall (darwin-amd64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-amd64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-amd64), const IP_DF = 16384 +pkg syscall (darwin-amd64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-amd64), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-amd64), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-amd64), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-amd64), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-amd64), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-amd64), const IP_FAITH = 22 +pkg syscall (darwin-amd64), const IP_FW_ADD = 40 +pkg syscall (darwin-amd64), const IP_FW_DEL = 41 +pkg syscall (darwin-amd64), const IP_FW_FLUSH = 42 +pkg syscall (darwin-amd64), const IP_FW_GET = 44 +pkg syscall (darwin-amd64), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-amd64), const IP_FW_ZERO = 43 +pkg syscall (darwin-amd64), const IP_HDRINCL = 2 +pkg syscall (darwin-amd64), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-amd64), const IP_MAXPACKET = 65535 +pkg syscall (darwin-amd64), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-amd64), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-amd64), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-amd64), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-amd64), const IP_MF = 8192 +pkg syscall (darwin-amd64), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-amd64), const IP_MSFILTER = 74 +pkg syscall (darwin-amd64), const IP_MSS = 576 +pkg syscall (darwin-amd64), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-amd64), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-amd64), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-amd64), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-amd64), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-amd64), const IP_NAT__XXX = 55 +pkg syscall (darwin-amd64), const IP_OFFMASK = 8191 +pkg syscall (darwin-amd64), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-amd64), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-amd64), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-amd64), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-amd64), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-amd64), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-amd64), const IP_OPTIONS = 1 +pkg syscall (darwin-amd64), const IP_PKTINFO = 26 +pkg syscall (darwin-amd64), const IP_PORTRANGE = 19 +pkg syscall (darwin-amd64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-amd64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-amd64), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-amd64), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-amd64), const IP_RECVIF = 20 +pkg syscall (darwin-amd64), const IP_RECVOPTS = 5 +pkg syscall (darwin-amd64), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-amd64), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-amd64), const IP_RECVTTL = 24 +pkg syscall (darwin-amd64), const IP_RETOPTS = 8 +pkg syscall (darwin-amd64), const IP_RF = 32768 +pkg syscall (darwin-amd64), const IP_RSVP_OFF = 16 +pkg syscall (darwin-amd64), const IP_RSVP_ON = 15 +pkg syscall (darwin-amd64), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-amd64), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-amd64), const IP_STRIPHDR = 23 +pkg syscall (darwin-amd64), const IP_TOS = 3 +pkg syscall (darwin-amd64), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-amd64), const IP_TTL = 4 +pkg syscall (darwin-amd64), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-amd64), const ISIG = 128 +pkg syscall (darwin-amd64), const ISIG ideal-int +pkg syscall (darwin-amd64), const ISTRIP = 32 +pkg syscall (darwin-amd64), const ISTRIP ideal-int +pkg syscall (darwin-amd64), const IUTF8 = 16384 +pkg syscall (darwin-amd64), const IUTF8 ideal-int +pkg syscall (darwin-amd64), const IXANY = 2048 +pkg syscall (darwin-amd64), const IXANY ideal-int +pkg syscall (darwin-amd64), const IXOFF = 1024 +pkg syscall (darwin-amd64), const IXOFF ideal-int +pkg syscall (darwin-amd64), const IXON = 512 +pkg syscall (darwin-amd64), const IXON ideal-int +pkg syscall (darwin-amd64), const ImplementsGetwd = false +pkg syscall (darwin-amd64), const LOCK_EX = 2 +pkg syscall (darwin-amd64), const LOCK_NB = 4 +pkg syscall (darwin-amd64), const LOCK_SH = 1 +pkg syscall (darwin-amd64), const LOCK_UN = 8 +pkg syscall (darwin-amd64), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-amd64), const MADV_DONTNEED = 4 +pkg syscall (darwin-amd64), const MADV_FREE = 5 +pkg syscall (darwin-amd64), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-amd64), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-amd64), const MADV_NORMAL = 0 +pkg syscall (darwin-amd64), const MADV_RANDOM = 1 +pkg syscall (darwin-amd64), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-amd64), const MADV_WILLNEED = 3 +pkg syscall (darwin-amd64), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-amd64), const MAP_ANON = 4096 +pkg syscall (darwin-amd64), const MAP_COPY = 2 +pkg syscall (darwin-amd64), const MAP_FILE = 0 +pkg syscall (darwin-amd64), const MAP_FIXED = 16 +pkg syscall (darwin-amd64), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-amd64), const MAP_JIT = 2048 +pkg syscall (darwin-amd64), const MAP_NOCACHE = 1024 +pkg syscall (darwin-amd64), const MAP_NOEXTEND = 256 +pkg syscall (darwin-amd64), const MAP_NORESERVE = 64 +pkg syscall (darwin-amd64), const MAP_PRIVATE = 2 +pkg syscall (darwin-amd64), const MAP_RENAME = 32 +pkg syscall (darwin-amd64), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-amd64), const MAP_SHARED = 1 +pkg syscall (darwin-amd64), const MCL_CURRENT = 1 +pkg syscall (darwin-amd64), const MCL_FUTURE = 2 +pkg syscall (darwin-amd64), const MSG_CTRUNC = 32 +pkg syscall (darwin-amd64), const MSG_DONTROUTE = 4 +pkg syscall (darwin-amd64), const MSG_DONTWAIT = 128 +pkg syscall (darwin-amd64), const MSG_EOF = 256 +pkg syscall (darwin-amd64), const MSG_EOR = 8 +pkg syscall (darwin-amd64), const MSG_FLUSH = 1024 +pkg syscall (darwin-amd64), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-amd64), const MSG_HOLD = 2048 +pkg syscall (darwin-amd64), const MSG_NEEDSA = 65536 +pkg syscall (darwin-amd64), const MSG_OOB = 1 +pkg syscall (darwin-amd64), const MSG_PEEK = 2 +pkg syscall (darwin-amd64), const MSG_RCVMORE = 16384 +pkg syscall (darwin-amd64), const MSG_SEND = 4096 +pkg syscall (darwin-amd64), const MSG_TRUNC = 16 +pkg syscall (darwin-amd64), const MSG_WAITALL = 64 +pkg syscall (darwin-amd64), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-amd64), const MS_ASYNC = 1 +pkg syscall (darwin-amd64), const MS_DEACTIVATE = 8 +pkg syscall (darwin-amd64), const MS_INVALIDATE = 2 +pkg syscall (darwin-amd64), const MS_KILLPAGES = 4 +pkg syscall (darwin-amd64), const MS_SYNC = 16 +pkg syscall (darwin-amd64), const NAME_MAX = 255 +pkg syscall (darwin-amd64), const NET_RT_DUMP = 1 +pkg syscall (darwin-amd64), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-amd64), const NET_RT_FLAGS = 2 +pkg syscall (darwin-amd64), const NET_RT_IFLIST = 3 +pkg syscall (darwin-amd64), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-amd64), const NET_RT_MAXID = 10 +pkg syscall (darwin-amd64), const NET_RT_STAT = 4 +pkg syscall (darwin-amd64), const NET_RT_TRASH = 5 +pkg syscall (darwin-amd64), const NOFLSH = 2147483648 +pkg syscall (darwin-amd64), const NOFLSH ideal-int +pkg syscall (darwin-amd64), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-amd64), const NOTE_ATTRIB = 8 +pkg syscall (darwin-amd64), const NOTE_CHILD = 4 +pkg syscall (darwin-amd64), const NOTE_DELETE = 1 +pkg syscall (darwin-amd64), const NOTE_EXEC = 536870912 +pkg syscall (darwin-amd64), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-amd64), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-amd64), const NOTE_EXTEND = 4 +pkg syscall (darwin-amd64), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-amd64), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-amd64), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-amd64), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-amd64), const NOTE_FFNOP = 0 +pkg syscall (darwin-amd64), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-amd64), const NOTE_FORK = 1073741824 +pkg syscall (darwin-amd64), const NOTE_LINK = 16 +pkg syscall (darwin-amd64), const NOTE_LOWAT = 1 +pkg syscall (darwin-amd64), const NOTE_NONE = 128 +pkg syscall (darwin-amd64), const NOTE_NSECONDS = 4 +pkg syscall (darwin-amd64), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-amd64), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-amd64), const NOTE_REAP = 268435456 +pkg syscall (darwin-amd64), const NOTE_RENAME = 32 +pkg syscall (darwin-amd64), const NOTE_RESOURCEEND = 33554432 +pkg syscall (darwin-amd64), const NOTE_REVOKE = 64 +pkg syscall (darwin-amd64), const NOTE_SECONDS = 1 +pkg syscall (darwin-amd64), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-amd64), const NOTE_TRACK = 1 +pkg syscall (darwin-amd64), const NOTE_TRACKERR = 2 +pkg syscall (darwin-amd64), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-amd64), const NOTE_USECONDS = 2 +pkg syscall (darwin-amd64), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-amd64), const NOTE_WRITE = 2 +pkg syscall (darwin-amd64), const OCRNL = 16 +pkg syscall (darwin-amd64), const OCRNL ideal-int +pkg syscall (darwin-amd64), const OFDEL = 131072 +pkg syscall (darwin-amd64), const OFDEL ideal-int +pkg syscall (darwin-amd64), const OFILL = 128 +pkg syscall (darwin-amd64), const OFILL ideal-int +pkg syscall (darwin-amd64), const ONLCR = 2 +pkg syscall (darwin-amd64), const ONLCR ideal-int +pkg syscall (darwin-amd64), const ONLRET = 64 +pkg syscall (darwin-amd64), const ONLRET ideal-int +pkg syscall (darwin-amd64), const ONOCR = 32 +pkg syscall (darwin-amd64), const ONOCR ideal-int +pkg syscall (darwin-amd64), const ONOEOT = 8 +pkg syscall (darwin-amd64), const ONOEOT ideal-int +pkg syscall (darwin-amd64), const OPOST = 1 +pkg syscall (darwin-amd64), const OPOST ideal-int +pkg syscall (darwin-amd64), const O_ACCMODE = 3 +pkg syscall (darwin-amd64), const O_ALERT = 536870912 +pkg syscall (darwin-amd64), const O_APPEND = 8 +pkg syscall (darwin-amd64), const O_ASYNC = 64 +pkg syscall (darwin-amd64), const O_CLOEXEC = 16777216 +pkg syscall (darwin-amd64), const O_CREAT = 512 +pkg syscall (darwin-amd64), const O_DIRECTORY = 1048576 +pkg syscall (darwin-amd64), const O_DSYNC = 4194304 +pkg syscall (darwin-amd64), const O_EVTONLY = 32768 +pkg syscall (darwin-amd64), const O_EXCL = 2048 +pkg syscall (darwin-amd64), const O_EXLOCK = 32 +pkg syscall (darwin-amd64), const O_FSYNC = 128 +pkg syscall (darwin-amd64), const O_NDELAY = 4 +pkg syscall (darwin-amd64), const O_NOCTTY = 131072 +pkg syscall (darwin-amd64), const O_NOFOLLOW = 256 +pkg syscall (darwin-amd64), const O_NONBLOCK = 4 +pkg syscall (darwin-amd64), const O_POPUP = 2147483648 +pkg syscall (darwin-amd64), const O_SHLOCK = 16 +pkg syscall (darwin-amd64), const O_SYMLINK = 2097152 +pkg syscall (darwin-amd64), const O_SYNC = 128 +pkg syscall (darwin-amd64), const O_TRUNC = 1024 +pkg syscall (darwin-amd64), const PARENB = 4096 +pkg syscall (darwin-amd64), const PARENB ideal-int +pkg syscall (darwin-amd64), const PARMRK = 8 +pkg syscall (darwin-amd64), const PARMRK ideal-int +pkg syscall (darwin-amd64), const PARODD = 8192 +pkg syscall (darwin-amd64), const PARODD ideal-int +pkg syscall (darwin-amd64), const PENDIN = 536870912 +pkg syscall (darwin-amd64), const PENDIN ideal-int +pkg syscall (darwin-amd64), const PROT_EXEC = 4 +pkg syscall (darwin-amd64), const PROT_NONE = 0 +pkg syscall (darwin-amd64), const PROT_READ = 1 +pkg syscall (darwin-amd64), const PROT_WRITE = 2 +pkg syscall (darwin-amd64), const PTRACE_CONT = 7 +pkg syscall (darwin-amd64), const PTRACE_KILL = 8 +pkg syscall (darwin-amd64), const PTRACE_TRACEME = 0 +pkg syscall (darwin-amd64), const PT_ATTACH = 10 +pkg syscall (darwin-amd64), const PT_ATTACHEXC = 14 +pkg syscall (darwin-amd64), const PT_CONTINUE = 7 +pkg syscall (darwin-amd64), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-amd64), const PT_DETACH = 11 +pkg syscall (darwin-amd64), const PT_FIRSTMACH = 32 +pkg syscall (darwin-amd64), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-amd64), const PT_KILL = 8 +pkg syscall (darwin-amd64), const PT_READ_D = 2 +pkg syscall (darwin-amd64), const PT_READ_I = 1 +pkg syscall (darwin-amd64), const PT_READ_U = 3 +pkg syscall (darwin-amd64), const PT_SIGEXC = 12 +pkg syscall (darwin-amd64), const PT_STEP = 9 +pkg syscall (darwin-amd64), const PT_THUPDATE = 13 +pkg syscall (darwin-amd64), const PT_TRACE_ME = 0 +pkg syscall (darwin-amd64), const PT_WRITE_D = 5 +pkg syscall (darwin-amd64), const PT_WRITE_I = 4 +pkg syscall (darwin-amd64), const PT_WRITE_U = 6 +pkg syscall (darwin-amd64), const RLIMIT_AS = 5 +pkg syscall (darwin-amd64), const RLIMIT_CORE = 4 +pkg syscall (darwin-amd64), const RLIMIT_CPU = 0 +pkg syscall (darwin-amd64), const RLIMIT_DATA = 2 +pkg syscall (darwin-amd64), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-amd64), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-amd64), const RLIMIT_STACK = 3 +pkg syscall (darwin-amd64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-amd64), const RTAX_AUTHOR = 6 +pkg syscall (darwin-amd64), const RTAX_BRD = 7 +pkg syscall (darwin-amd64), const RTAX_DST = 0 +pkg syscall (darwin-amd64), const RTAX_GATEWAY = 1 +pkg syscall (darwin-amd64), const RTAX_GENMASK = 3 +pkg syscall (darwin-amd64), const RTAX_IFA = 5 +pkg syscall (darwin-amd64), const RTAX_IFP = 4 +pkg syscall (darwin-amd64), const RTAX_MAX = 8 +pkg syscall (darwin-amd64), const RTAX_NETMASK = 2 +pkg syscall (darwin-amd64), const RTA_AUTHOR = 64 +pkg syscall (darwin-amd64), const RTA_BRD = 128 +pkg syscall (darwin-amd64), const RTA_DST = 1 +pkg syscall (darwin-amd64), const RTA_GATEWAY = 2 +pkg syscall (darwin-amd64), const RTA_GENMASK = 8 +pkg syscall (darwin-amd64), const RTA_IFA = 32 +pkg syscall (darwin-amd64), const RTA_IFP = 16 +pkg syscall (darwin-amd64), const RTA_NETMASK = 4 +pkg syscall (darwin-amd64), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-amd64), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-amd64), const RTF_CLONING = 256 +pkg syscall (darwin-amd64), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-amd64), const RTF_DELCLONE = 128 +pkg syscall (darwin-amd64), const RTF_DONE = 64 +pkg syscall (darwin-amd64), const RTF_DYNAMIC = 16 +pkg syscall (darwin-amd64), const RTF_GATEWAY = 2 +pkg syscall (darwin-amd64), const RTF_HOST = 4 +pkg syscall (darwin-amd64), const RTF_IFREF = 67108864 +pkg syscall (darwin-amd64), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-amd64), const RTF_LLINFO = 1024 +pkg syscall (darwin-amd64), const RTF_LOCAL = 2097152 +pkg syscall (darwin-amd64), const RTF_MODIFIED = 32 +pkg syscall (darwin-amd64), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-amd64), const RTF_PINNED = 1048576 +pkg syscall (darwin-amd64), const RTF_PRCLONING = 65536 +pkg syscall (darwin-amd64), const RTF_PROTO1 = 32768 +pkg syscall (darwin-amd64), const RTF_PROTO2 = 16384 +pkg syscall (darwin-amd64), const RTF_PROTO3 = 262144 +pkg syscall (darwin-amd64), const RTF_REJECT = 8 +pkg syscall (darwin-amd64), const RTF_STATIC = 2048 +pkg syscall (darwin-amd64), const RTF_UP = 1 +pkg syscall (darwin-amd64), const RTF_WASCLONED = 131072 +pkg syscall (darwin-amd64), const RTF_XRESOLVE = 512 +pkg syscall (darwin-amd64), const RTM_ADD = 1 +pkg syscall (darwin-amd64), const RTM_CHANGE = 3 +pkg syscall (darwin-amd64), const RTM_DELADDR = 13 +pkg syscall (darwin-amd64), const RTM_DELETE = 2 +pkg syscall (darwin-amd64), const RTM_DELMADDR = 16 +pkg syscall (darwin-amd64), const RTM_GET = 4 +pkg syscall (darwin-amd64), const RTM_GET2 = 20 +pkg syscall (darwin-amd64), const RTM_IFINFO = 14 +pkg syscall (darwin-amd64), const RTM_IFINFO2 = 18 +pkg syscall (darwin-amd64), const RTM_LOCK = 8 +pkg syscall (darwin-amd64), const RTM_LOSING = 5 +pkg syscall (darwin-amd64), const RTM_MISS = 7 +pkg syscall (darwin-amd64), const RTM_NEWADDR = 12 +pkg syscall (darwin-amd64), const RTM_NEWMADDR = 15 +pkg syscall (darwin-amd64), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-amd64), const RTM_OLDADD = 9 +pkg syscall (darwin-amd64), const RTM_OLDDEL = 10 +pkg syscall (darwin-amd64), const RTM_REDIRECT = 6 +pkg syscall (darwin-amd64), const RTM_RESOLVE = 11 +pkg syscall (darwin-amd64), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-amd64), const RTM_VERSION = 5 +pkg syscall (darwin-amd64), const RTV_EXPIRE = 4 +pkg syscall (darwin-amd64), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-amd64), const RTV_MTU = 1 +pkg syscall (darwin-amd64), const RTV_RPIPE = 8 +pkg syscall (darwin-amd64), const RTV_RTT = 64 +pkg syscall (darwin-amd64), const RTV_RTTVAR = 128 +pkg syscall (darwin-amd64), const RTV_SPIPE = 16 +pkg syscall (darwin-amd64), const RTV_SSTHRESH = 32 +pkg syscall (darwin-amd64), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-amd64), const RUSAGE_SELF = 0 +pkg syscall (darwin-amd64), const SCM_CREDS = 3 +pkg syscall (darwin-amd64), const SCM_RIGHTS = 1 +pkg syscall (darwin-amd64), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-amd64), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-amd64), const SIGBUS = 10 +pkg syscall (darwin-amd64), const SIGCHLD = 20 +pkg syscall (darwin-amd64), const SIGCONT = 19 +pkg syscall (darwin-amd64), const SIGEMT = 7 +pkg syscall (darwin-amd64), const SIGINFO = 29 +pkg syscall (darwin-amd64), const SIGIO = 23 +pkg syscall (darwin-amd64), const SIGIOT = 6 +pkg syscall (darwin-amd64), const SIGPROF = 27 +pkg syscall (darwin-amd64), const SIGSTOP = 17 +pkg syscall (darwin-amd64), const SIGSYS = 12 +pkg syscall (darwin-amd64), const SIGTSTP = 18 +pkg syscall (darwin-amd64), const SIGTTIN = 21 +pkg syscall (darwin-amd64), const SIGTTOU = 22 +pkg syscall (darwin-amd64), const SIGURG = 16 +pkg syscall (darwin-amd64), const SIGUSR1 = 30 +pkg syscall (darwin-amd64), const SIGUSR2 = 31 +pkg syscall (darwin-amd64), const SIGVTALRM = 26 +pkg syscall (darwin-amd64), const SIGWINCH = 28 +pkg syscall (darwin-amd64), const SIGXCPU = 24 +pkg syscall (darwin-amd64), const SIGXFSZ = 25 +pkg syscall (darwin-amd64), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-amd64), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-amd64), const SIOCALIFADDR = 2165860637 +pkg syscall (darwin-amd64), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-amd64), const SIOCATMARK = 1074033415 +pkg syscall (darwin-amd64), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-amd64), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-amd64), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-amd64), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-amd64), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-amd64), const SIOCDLIFADDR = 2165860639 +pkg syscall (darwin-amd64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (darwin-amd64), const SIOCGETSGCNT = 3222565404 +pkg syscall (darwin-amd64), const SIOCGETVIFCNT = 3222565403 +pkg syscall (darwin-amd64), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-amd64), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-amd64), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-amd64), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-amd64), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-amd64), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-amd64), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-amd64), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-amd64), const SIOCGIFCONF = 3222038820 +pkg syscall (darwin-amd64), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-amd64), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-amd64), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-amd64), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-amd64), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-amd64), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-amd64), const SIOCGIFMEDIA = 3224135992 +pkg syscall (darwin-amd64), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-amd64), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-amd64), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-amd64), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-amd64), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-amd64), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-amd64), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-amd64), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-amd64), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-amd64), const SIOCGLIFADDR = 3239602462 +pkg syscall (darwin-amd64), const SIOCGLIFPHYADDR = 3239602499 +pkg syscall (darwin-amd64), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-amd64), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-amd64), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-amd64), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-amd64), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-amd64), const SIOCRSLVMULTI = 3222300987 +pkg syscall (darwin-amd64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (darwin-amd64), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-amd64), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-amd64), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-amd64), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-amd64), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-amd64), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-amd64), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-amd64), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-amd64), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-amd64), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-amd64), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-amd64), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-amd64), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-amd64), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-amd64), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-amd64), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-amd64), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-amd64), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-amd64), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-amd64), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-amd64), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-amd64), const SIOCSLIFPHYADDR = 2165860674 +pkg syscall (darwin-amd64), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-amd64), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-amd64), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-amd64), const SOCK_RDM = 4 +pkg syscall (darwin-amd64), const SOL_SOCKET = 65535 +pkg syscall (darwin-amd64), const SOMAXCONN = 128 +pkg syscall (darwin-amd64), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-amd64), const SO_BROADCAST = 32 +pkg syscall (darwin-amd64), const SO_DEBUG = 1 +pkg syscall (darwin-amd64), const SO_DONTROUTE = 16 +pkg syscall (darwin-amd64), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-amd64), const SO_ERROR = 4103 +pkg syscall (darwin-amd64), const SO_KEEPALIVE = 8 +pkg syscall (darwin-amd64), const SO_LABEL = 4112 +pkg syscall (darwin-amd64), const SO_LINGER = 128 +pkg syscall (darwin-amd64), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-amd64), const SO_NKE = 4129 +pkg syscall (darwin-amd64), const SO_NOADDRERR = 4131 +pkg syscall (darwin-amd64), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-amd64), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-amd64), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-amd64), const SO_NREAD = 4128 +pkg syscall (darwin-amd64), const SO_NWRITE = 4132 +pkg syscall (darwin-amd64), const SO_OOBINLINE = 256 +pkg syscall (darwin-amd64), const SO_PEERLABEL = 4113 +pkg syscall (darwin-amd64), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-amd64), const SO_RCVBUF = 4098 +pkg syscall (darwin-amd64), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-amd64), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-amd64), const SO_RESTRICTIONS = 4225 +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYIN = 1 +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYOUT = 2 +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYSET = 2147483648 +pkg syscall (darwin-amd64), const SO_REUSEADDR = 4 +pkg syscall (darwin-amd64), const SO_REUSEPORT = 512 +pkg syscall (darwin-amd64), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-amd64), const SO_SNDBUF = 4097 +pkg syscall (darwin-amd64), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-amd64), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-amd64), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-amd64), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-amd64), const SO_TYPE = 4104 +pkg syscall (darwin-amd64), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-amd64), const SO_USELOOPBACK = 64 +pkg syscall (darwin-amd64), const SO_WANTMORE = 16384 +pkg syscall (darwin-amd64), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-amd64), const SYS_ACCEPT = 30 +pkg syscall (darwin-amd64), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-amd64), const SYS_ACCESS = 33 +pkg syscall (darwin-amd64), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-amd64), const SYS_ACCT = 51 +pkg syscall (darwin-amd64), const SYS_ADD_PROFIL = 176 +pkg syscall (darwin-amd64), const SYS_ADJTIME = 140 +pkg syscall (darwin-amd64), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-amd64), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-amd64), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-amd64), const SYS_AIO_READ = 318 +pkg syscall (darwin-amd64), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-amd64), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-amd64), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-amd64), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-amd64), const SYS_ATGETMSG = 207 +pkg syscall (darwin-amd64), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-amd64), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-amd64), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-amd64), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-amd64), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-amd64), const SYS_ATSOCKET = 206 +pkg syscall (darwin-amd64), const SYS_AUDIT = 350 +pkg syscall (darwin-amd64), const SYS_AUDITCTL = 359 +pkg syscall (darwin-amd64), const SYS_AUDITON = 351 +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-amd64), const SYS_BIND = 104 +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-amd64), const SYS_CHDIR = 12 +pkg syscall (darwin-amd64), const SYS_CHFLAGS = 34 +pkg syscall (darwin-amd64), const SYS_CHMOD = 15 +pkg syscall (darwin-amd64), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-amd64), const SYS_CHOWN = 16 +pkg syscall (darwin-amd64), const SYS_CHROOT = 61 +pkg syscall (darwin-amd64), const SYS_CHUD = 185 +pkg syscall (darwin-amd64), const SYS_CLOSE = 6 +pkg syscall (darwin-amd64), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-amd64), const SYS_CONNECT = 98 +pkg syscall (darwin-amd64), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-amd64), const SYS_COPYFILE = 227 +pkg syscall (darwin-amd64), const SYS_CSOPS = 169 +pkg syscall (darwin-amd64), const SYS_DELETE = 226 +pkg syscall (darwin-amd64), const SYS_DUP = 41 +pkg syscall (darwin-amd64), const SYS_DUP2 = 90 +pkg syscall (darwin-amd64), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-amd64), const SYS_EXECVE = 59 +pkg syscall (darwin-amd64), const SYS_EXIT = 1 +pkg syscall (darwin-amd64), const SYS_FCHDIR = 13 +pkg syscall (darwin-amd64), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-amd64), const SYS_FCHMOD = 124 +pkg syscall (darwin-amd64), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-amd64), const SYS_FCHOWN = 123 +pkg syscall (darwin-amd64), const SYS_FCNTL = 92 +pkg syscall (darwin-amd64), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-amd64), const SYS_FDATASYNC = 187 +pkg syscall (darwin-amd64), const SYS_FFSCTL = 245 +pkg syscall (darwin-amd64), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-amd64), const SYS_FGETXATTR = 235 +pkg syscall (darwin-amd64), const SYS_FHOPEN = 248 +pkg syscall (darwin-amd64), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-amd64), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-amd64), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-amd64), const SYS_FLOCK = 131 +pkg syscall (darwin-amd64), const SYS_FORK = 2 +pkg syscall (darwin-amd64), const SYS_FPATHCONF = 192 +pkg syscall (darwin-amd64), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-amd64), const SYS_FSCTL = 242 +pkg syscall (darwin-amd64), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-amd64), const SYS_FSETXATTR = 237 +pkg syscall (darwin-amd64), const SYS_FSGETPATH = 427 +pkg syscall (darwin-amd64), const SYS_FSTAT = 189 +pkg syscall (darwin-amd64), const SYS_FSTAT64 = 339 +pkg syscall (darwin-amd64), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-amd64), const SYS_FSTATFS = 158 +pkg syscall (darwin-amd64), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-amd64), const SYS_FSTATV = 219 +pkg syscall (darwin-amd64), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-amd64), const SYS_FSYNC = 95 +pkg syscall (darwin-amd64), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-amd64), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-amd64), const SYS_FUTIMES = 139 +pkg syscall (darwin-amd64), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-amd64), const SYS_GETAUDIT = 355 +pkg syscall (darwin-amd64), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-amd64), const SYS_GETAUID = 353 +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-amd64), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-amd64), const SYS_GETEGID = 43 +pkg syscall (darwin-amd64), const SYS_GETEUID = 25 +pkg syscall (darwin-amd64), const SYS_GETFH = 161 +pkg syscall (darwin-amd64), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-amd64), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-amd64), const SYS_GETGID = 47 +pkg syscall (darwin-amd64), const SYS_GETGROUPS = 79 +pkg syscall (darwin-amd64), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-amd64), const SYS_GETITIMER = 86 +pkg syscall (darwin-amd64), const SYS_GETLCID = 395 +pkg syscall (darwin-amd64), const SYS_GETLOGIN = 49 +pkg syscall (darwin-amd64), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-amd64), const SYS_GETPGID = 151 +pkg syscall (darwin-amd64), const SYS_GETPGRP = 81 +pkg syscall (darwin-amd64), const SYS_GETPID = 20 +pkg syscall (darwin-amd64), const SYS_GETPPID = 39 +pkg syscall (darwin-amd64), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-amd64), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-amd64), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-amd64), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-amd64), const SYS_GETSID = 310 +pkg syscall (darwin-amd64), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-amd64), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-amd64), const SYS_GETTID = 286 +pkg syscall (darwin-amd64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-amd64), const SYS_GETUID = 24 +pkg syscall (darwin-amd64), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-amd64), const SYS_GETXATTR = 234 +pkg syscall (darwin-amd64), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-amd64), const SYS_INITGROUPS = 243 +pkg syscall (darwin-amd64), const SYS_IOCTL = 54 +pkg syscall (darwin-amd64), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-amd64), const SYS_ISSETUGID = 327 +pkg syscall (darwin-amd64), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-amd64), const SYS_KEVENT = 363 +pkg syscall (darwin-amd64), const SYS_KEVENT64 = 369 +pkg syscall (darwin-amd64), const SYS_KILL = 37 +pkg syscall (darwin-amd64), const SYS_KQUEUE = 362 +pkg syscall (darwin-amd64), const SYS_LCHOWN = 364 +pkg syscall (darwin-amd64), const SYS_LINK = 9 +pkg syscall (darwin-amd64), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-amd64), const SYS_LISTEN = 106 +pkg syscall (darwin-amd64), const SYS_LISTXATTR = 240 +pkg syscall (darwin-amd64), const SYS_LSEEK = 199 +pkg syscall (darwin-amd64), const SYS_LSTAT = 190 +pkg syscall (darwin-amd64), const SYS_LSTAT64 = 340 +pkg syscall (darwin-amd64), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-amd64), const SYS_LSTATV = 218 +pkg syscall (darwin-amd64), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-amd64), const SYS_MADVISE = 75 +pkg syscall (darwin-amd64), const SYS_MAXSYSCALL = 439 +pkg syscall (darwin-amd64), const SYS_MINCORE = 78 +pkg syscall (darwin-amd64), const SYS_MINHERIT = 250 +pkg syscall (darwin-amd64), const SYS_MKCOMPLEX = 216 +pkg syscall (darwin-amd64), const SYS_MKDIR = 136 +pkg syscall (darwin-amd64), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-amd64), const SYS_MKFIFO = 132 +pkg syscall (darwin-amd64), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-amd64), const SYS_MKNOD = 14 +pkg syscall (darwin-amd64), const SYS_MLOCK = 203 +pkg syscall (darwin-amd64), const SYS_MLOCKALL = 324 +pkg syscall (darwin-amd64), const SYS_MMAP = 197 +pkg syscall (darwin-amd64), const SYS_MODWATCH = 233 +pkg syscall (darwin-amd64), const SYS_MOUNT = 167 +pkg syscall (darwin-amd64), const SYS_MPROTECT = 74 +pkg syscall (darwin-amd64), const SYS_MSGCTL = 258 +pkg syscall (darwin-amd64), const SYS_MSGGET = 259 +pkg syscall (darwin-amd64), const SYS_MSGRCV = 261 +pkg syscall (darwin-amd64), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-amd64), const SYS_MSGSND = 260 +pkg syscall (darwin-amd64), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-amd64), const SYS_MSGSYS = 252 +pkg syscall (darwin-amd64), const SYS_MSYNC = 65 +pkg syscall (darwin-amd64), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-amd64), const SYS_MUNLOCK = 204 +pkg syscall (darwin-amd64), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-amd64), const SYS_MUNMAP = 73 +pkg syscall (darwin-amd64), const SYS_NFSCLNT = 247 +pkg syscall (darwin-amd64), const SYS_NFSSVC = 155 +pkg syscall (darwin-amd64), const SYS_OPEN = 5 +pkg syscall (darwin-amd64), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-amd64), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-amd64), const SYS_PATHCONF = 191 +pkg syscall (darwin-amd64), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-amd64), const SYS_PID_RESUME = 434 +pkg syscall (darwin-amd64), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-amd64), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-amd64), const SYS_PIPE = 42 +pkg syscall (darwin-amd64), const SYS_POLL = 230 +pkg syscall (darwin-amd64), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-amd64), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-amd64), const SYS_PREAD = 153 +pkg syscall (darwin-amd64), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-amd64), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-amd64), const SYS_PROC_INFO = 336 +pkg syscall (darwin-amd64), const SYS_PROFIL = 44 +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-amd64), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-amd64), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-amd64), const SYS_PTRACE = 26 +pkg syscall (darwin-amd64), const SYS_PWRITE = 154 +pkg syscall (darwin-amd64), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-amd64), const SYS_QUOTACTL = 165 +pkg syscall (darwin-amd64), const SYS_READ = 3 +pkg syscall (darwin-amd64), const SYS_READLINK = 58 +pkg syscall (darwin-amd64), const SYS_READV = 120 +pkg syscall (darwin-amd64), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-amd64), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-amd64), const SYS_REBOOT = 55 +pkg syscall (darwin-amd64), const SYS_RECVFROM = 29 +pkg syscall (darwin-amd64), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-amd64), const SYS_RECVMSG = 27 +pkg syscall (darwin-amd64), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-amd64), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-amd64), const SYS_RENAME = 128 +pkg syscall (darwin-amd64), const SYS_REVOKE = 56 +pkg syscall (darwin-amd64), const SYS_RMDIR = 137 +pkg syscall (darwin-amd64), const SYS_SEARCHFS = 225 +pkg syscall (darwin-amd64), const SYS_SELECT = 93 +pkg syscall (darwin-amd64), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-amd64), const SYS_SEMCTL = 254 +pkg syscall (darwin-amd64), const SYS_SEMGET = 255 +pkg syscall (darwin-amd64), const SYS_SEMOP = 256 +pkg syscall (darwin-amd64), const SYS_SEMSYS = 251 +pkg syscall (darwin-amd64), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-amd64), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-amd64), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-amd64), const SYS_SEM_INIT = 275 +pkg syscall (darwin-amd64), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-amd64), const SYS_SEM_POST = 273 +pkg syscall (darwin-amd64), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-amd64), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-amd64), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-amd64), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-amd64), const SYS_SENDFILE = 337 +pkg syscall (darwin-amd64), const SYS_SENDMSG = 28 +pkg syscall (darwin-amd64), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-amd64), const SYS_SENDTO = 133 +pkg syscall (darwin-amd64), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-amd64), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-amd64), const SYS_SETAUDIT = 356 +pkg syscall (darwin-amd64), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-amd64), const SYS_SETAUID = 354 +pkg syscall (darwin-amd64), const SYS_SETEGID = 182 +pkg syscall (darwin-amd64), const SYS_SETEUID = 183 +pkg syscall (darwin-amd64), const SYS_SETGID = 181 +pkg syscall (darwin-amd64), const SYS_SETGROUPS = 80 +pkg syscall (darwin-amd64), const SYS_SETITIMER = 83 +pkg syscall (darwin-amd64), const SYS_SETLCID = 394 +pkg syscall (darwin-amd64), const SYS_SETLOGIN = 50 +pkg syscall (darwin-amd64), const SYS_SETPGID = 82 +pkg syscall (darwin-amd64), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-amd64), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-amd64), const SYS_SETREGID = 127 +pkg syscall (darwin-amd64), const SYS_SETREUID = 126 +pkg syscall (darwin-amd64), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-amd64), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-amd64), const SYS_SETSID = 147 +pkg syscall (darwin-amd64), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-amd64), const SYS_SETTID = 285 +pkg syscall (darwin-amd64), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-amd64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-amd64), const SYS_SETUID = 23 +pkg syscall (darwin-amd64), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-amd64), const SYS_SETXATTR = 236 +pkg syscall (darwin-amd64), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-amd64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-amd64), const SYS_SHMAT = 262 +pkg syscall (darwin-amd64), const SYS_SHMCTL = 263 +pkg syscall (darwin-amd64), const SYS_SHMDT = 264 +pkg syscall (darwin-amd64), const SYS_SHMGET = 265 +pkg syscall (darwin-amd64), const SYS_SHMSYS = 253 +pkg syscall (darwin-amd64), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-amd64), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-amd64), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-amd64), const SYS_SIGACTION = 46 +pkg syscall (darwin-amd64), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-amd64), const SYS_SIGPENDING = 52 +pkg syscall (darwin-amd64), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-amd64), const SYS_SIGRETURN = 184 +pkg syscall (darwin-amd64), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-amd64), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-amd64), const SYS_SOCKET = 97 +pkg syscall (darwin-amd64), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-amd64), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-amd64), const SYS_STAT = 188 +pkg syscall (darwin-amd64), const SYS_STAT64 = 338 +pkg syscall (darwin-amd64), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-amd64), const SYS_STATFS = 157 +pkg syscall (darwin-amd64), const SYS_STATFS64 = 345 +pkg syscall (darwin-amd64), const SYS_STATV = 217 +pkg syscall (darwin-amd64), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-amd64), const SYS_SWAPON = 85 +pkg syscall (darwin-amd64), const SYS_SYMLINK = 57 +pkg syscall (darwin-amd64), const SYS_SYNC = 36 +pkg syscall (darwin-amd64), const SYS_SYSCALL = 0 +pkg syscall (darwin-amd64), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-amd64), const SYS_TRUNCATE = 200 +pkg syscall (darwin-amd64), const SYS_UMASK = 60 +pkg syscall (darwin-amd64), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-amd64), const SYS_UNDELETE = 205 +pkg syscall (darwin-amd64), const SYS_UNLINK = 10 +pkg syscall (darwin-amd64), const SYS_UNMOUNT = 159 +pkg syscall (darwin-amd64), const SYS_UTIMES = 138 +pkg syscall (darwin-amd64), const SYS_VFORK = 66 +pkg syscall (darwin-amd64), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-amd64), const SYS_WAIT4 = 7 +pkg syscall (darwin-amd64), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-amd64), const SYS_WAITEVENT = 232 +pkg syscall (darwin-amd64), const SYS_WAITID = 173 +pkg syscall (darwin-amd64), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-amd64), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-amd64), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-amd64), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-amd64), const SYS_WRITE = 4 +pkg syscall (darwin-amd64), const SYS_WRITEV = 121 +pkg syscall (darwin-amd64), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-amd64), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-amd64), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-amd64), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-amd64), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-amd64), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-amd64), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-amd64), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-amd64), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-amd64), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-amd64), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-amd64), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-amd64), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-amd64), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-amd64), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-amd64), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-amd64), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-amd64), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-amd64), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-amd64), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-amd64), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-amd64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-amd64), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-amd64), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-amd64), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-amd64), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-amd64), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-amd64), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-amd64), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-amd64), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-amd64), const SYS___SIGWAIT = 330 +pkg syscall (darwin-amd64), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-amd64), const SYS___SYSCTL = 202 +pkg syscall (darwin-amd64), const S_IEXEC = 64 +pkg syscall (darwin-amd64), const S_IFMT = 61440 +pkg syscall (darwin-amd64), const S_IFWHT = 57344 +pkg syscall (darwin-amd64), const S_IREAD = 256 +pkg syscall (darwin-amd64), const S_IRGRP = 32 +pkg syscall (darwin-amd64), const S_IROTH = 4 +pkg syscall (darwin-amd64), const S_IRWXG = 56 +pkg syscall (darwin-amd64), const S_IRWXO = 7 +pkg syscall (darwin-amd64), const S_IRWXU = 448 +pkg syscall (darwin-amd64), const S_ISTXT = 512 +pkg syscall (darwin-amd64), const S_IWGRP = 16 +pkg syscall (darwin-amd64), const S_IWOTH = 2 +pkg syscall (darwin-amd64), const S_IWRITE = 128 +pkg syscall (darwin-amd64), const S_IXGRP = 8 +pkg syscall (darwin-amd64), const S_IXOTH = 1 +pkg syscall (darwin-amd64), const SizeofBpfHdr = 20 +pkg syscall (darwin-amd64), const SizeofBpfInsn = 8 +pkg syscall (darwin-amd64), const SizeofBpfProgram = 16 +pkg syscall (darwin-amd64), const SizeofBpfStat = 8 +pkg syscall (darwin-amd64), const SizeofBpfVersion = 4 +pkg syscall (darwin-amd64), const SizeofCmsghdr = 12 +pkg syscall (darwin-amd64), const SizeofIPMreq = 8 +pkg syscall (darwin-amd64), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-amd64), const SizeofIfData = 96 +pkg syscall (darwin-amd64), const SizeofIfMsghdr = 112 +pkg syscall (darwin-amd64), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-amd64), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-amd64), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-amd64), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-amd64), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-amd64), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-amd64), const SizeofLinger = 8 +pkg syscall (darwin-amd64), const SizeofMsghdr = 48 +pkg syscall (darwin-amd64), const SizeofRtMetrics = 56 +pkg syscall (darwin-amd64), const SizeofRtMsghdr = 92 +pkg syscall (darwin-amd64), const SizeofSockaddrAny = 108 +pkg syscall (darwin-amd64), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-amd64), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-amd64), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-amd64), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-amd64), const TCIFLUSH = 1 +pkg syscall (darwin-amd64), const TCIFLUSH ideal-int +pkg syscall (darwin-amd64), const TCIOFLUSH = 3 +pkg syscall (darwin-amd64), const TCIOFLUSH ideal-int +pkg syscall (darwin-amd64), const TCOFLUSH = 2 +pkg syscall (darwin-amd64), const TCOFLUSH ideal-int +pkg syscall (darwin-amd64), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-amd64), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-amd64), const TCP_MAXHLEN = 60 +pkg syscall (darwin-amd64), const TCP_MAXOLEN = 40 +pkg syscall (darwin-amd64), const TCP_MAXSEG = 2 +pkg syscall (darwin-amd64), const TCP_MAXWIN = 65535 +pkg syscall (darwin-amd64), const TCP_MAX_SACK = 3 +pkg syscall (darwin-amd64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-amd64), const TCP_MINMSS = 216 +pkg syscall (darwin-amd64), const TCP_MINMSSOVERLOAD = 1000 +pkg syscall (darwin-amd64), const TCP_MSS = 512 +pkg syscall (darwin-amd64), const TCP_NOOPT = 8 +pkg syscall (darwin-amd64), const TCP_NOPUSH = 4 +pkg syscall (darwin-amd64), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-amd64), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-amd64), const TCSAFLUSH = 2 +pkg syscall (darwin-amd64), const TCSAFLUSH ideal-int +pkg syscall (darwin-amd64), const TIOCCBRK = 536900730 +pkg syscall (darwin-amd64), const TIOCCDTR = 536900728 +pkg syscall (darwin-amd64), const TIOCCONS = 2147775586 +pkg syscall (darwin-amd64), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (darwin-amd64), const TIOCDRAIN = 536900702 +pkg syscall (darwin-amd64), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-amd64), const TIOCEXCL = 536900621 +pkg syscall (darwin-amd64), const TIOCEXT = 2147775584 +pkg syscall (darwin-amd64), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-amd64), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-amd64), const TIOCGETA = 1078490131 +pkg syscall (darwin-amd64), const TIOCGETD = 1074033690 +pkg syscall (darwin-amd64), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-amd64), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-amd64), const TIOCIXOFF = 536900736 +pkg syscall (darwin-amd64), const TIOCIXON = 536900737 +pkg syscall (darwin-amd64), const TIOCMBIC = 2147775595 +pkg syscall (darwin-amd64), const TIOCMBIS = 2147775596 +pkg syscall (darwin-amd64), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-amd64), const TIOCMGET = 1074033770 +pkg syscall (darwin-amd64), const TIOCMODG = 1074033667 +pkg syscall (darwin-amd64), const TIOCMODS = 2147775492 +pkg syscall (darwin-amd64), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-amd64), const TIOCMSET = 2147775597 +pkg syscall (darwin-amd64), const TIOCM_CAR = 64 +pkg syscall (darwin-amd64), const TIOCM_CD = 64 +pkg syscall (darwin-amd64), const TIOCM_CTS = 32 +pkg syscall (darwin-amd64), const TIOCM_DSR = 256 +pkg syscall (darwin-amd64), const TIOCM_DTR = 2 +pkg syscall (darwin-amd64), const TIOCM_LE = 1 +pkg syscall (darwin-amd64), const TIOCM_RI = 128 +pkg syscall (darwin-amd64), const TIOCM_RNG = 128 +pkg syscall (darwin-amd64), const TIOCM_RTS = 4 +pkg syscall (darwin-amd64), const TIOCM_SR = 16 +pkg syscall (darwin-amd64), const TIOCM_ST = 8 +pkg syscall (darwin-amd64), const TIOCNOTTY = 536900721 +pkg syscall (darwin-amd64), const TIOCNXCL = 536900622 +pkg syscall (darwin-amd64), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-amd64), const TIOCPKT = 2147775600 +pkg syscall (darwin-amd64), const TIOCPKT_DATA = 0 +pkg syscall (darwin-amd64), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-amd64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-amd64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-amd64), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-amd64), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-amd64), const TIOCPKT_START = 8 +pkg syscall (darwin-amd64), const TIOCPKT_STOP = 4 +pkg syscall (darwin-amd64), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-amd64), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-amd64), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-amd64), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-amd64), const TIOCSBRK = 536900731 +pkg syscall (darwin-amd64), const TIOCSCONS = 536900707 +pkg syscall (darwin-amd64), const TIOCSCTTY = 536900705 +pkg syscall (darwin-amd64), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-amd64), const TIOCSDTR = 536900729 +pkg syscall (darwin-amd64), const TIOCSETA = 2152231956 +pkg syscall (darwin-amd64), const TIOCSETAF = 2152231958 +pkg syscall (darwin-amd64), const TIOCSETAW = 2152231957 +pkg syscall (darwin-amd64), const TIOCSETD = 2147775515 +pkg syscall (darwin-amd64), const TIOCSIG = 536900703 +pkg syscall (darwin-amd64), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-amd64), const TIOCSTART = 536900718 +pkg syscall (darwin-amd64), const TIOCSTAT = 536900709 +pkg syscall (darwin-amd64), const TIOCSTI = 2147578994 +pkg syscall (darwin-amd64), const TIOCSTOP = 536900719 +pkg syscall (darwin-amd64), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-amd64), const TIOCTIMESTAMP = 1074820185 +pkg syscall (darwin-amd64), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-amd64), const TOSTOP = 4194304 +pkg syscall (darwin-amd64), const TOSTOP ideal-int +pkg syscall (darwin-amd64), const VDISCARD = 15 +pkg syscall (darwin-amd64), const VDISCARD ideal-int +pkg syscall (darwin-amd64), const VDSUSP = 11 +pkg syscall (darwin-amd64), const VDSUSP ideal-int +pkg syscall (darwin-amd64), const VEOF = 0 +pkg syscall (darwin-amd64), const VEOF ideal-int +pkg syscall (darwin-amd64), const VEOL = 1 +pkg syscall (darwin-amd64), const VEOL ideal-int +pkg syscall (darwin-amd64), const VEOL2 = 2 +pkg syscall (darwin-amd64), const VEOL2 ideal-int +pkg syscall (darwin-amd64), const VERASE = 3 +pkg syscall (darwin-amd64), const VERASE ideal-int +pkg syscall (darwin-amd64), const VINTR = 8 +pkg syscall (darwin-amd64), const VINTR ideal-int +pkg syscall (darwin-amd64), const VKILL = 5 +pkg syscall (darwin-amd64), const VKILL ideal-int +pkg syscall (darwin-amd64), const VLNEXT = 14 +pkg syscall (darwin-amd64), const VLNEXT ideal-int +pkg syscall (darwin-amd64), const VMIN = 16 +pkg syscall (darwin-amd64), const VMIN ideal-int +pkg syscall (darwin-amd64), const VQUIT = 9 +pkg syscall (darwin-amd64), const VQUIT ideal-int +pkg syscall (darwin-amd64), const VREPRINT = 6 +pkg syscall (darwin-amd64), const VREPRINT ideal-int +pkg syscall (darwin-amd64), const VSTART = 12 +pkg syscall (darwin-amd64), const VSTART ideal-int +pkg syscall (darwin-amd64), const VSTATUS = 18 +pkg syscall (darwin-amd64), const VSTATUS ideal-int +pkg syscall (darwin-amd64), const VSTOP = 13 +pkg syscall (darwin-amd64), const VSTOP ideal-int +pkg syscall (darwin-amd64), const VSUSP = 10 +pkg syscall (darwin-amd64), const VSUSP ideal-int +pkg syscall (darwin-amd64), const VT0 = 0 +pkg syscall (darwin-amd64), const VT0 ideal-int +pkg syscall (darwin-amd64), const VT1 = 65536 +pkg syscall (darwin-amd64), const VT1 ideal-int +pkg syscall (darwin-amd64), const VTDLY = 65536 +pkg syscall (darwin-amd64), const VTDLY ideal-int +pkg syscall (darwin-amd64), const VTIME = 17 +pkg syscall (darwin-amd64), const VTIME ideal-int +pkg syscall (darwin-amd64), const VWERASE = 4 +pkg syscall (darwin-amd64), const VWERASE ideal-int +pkg syscall (darwin-amd64), const WCONTINUED = 16 +pkg syscall (darwin-amd64), const WCOREFLAG = 128 +pkg syscall (darwin-amd64), const WEXITED = 4 +pkg syscall (darwin-amd64), const WNOHANG = 1 +pkg syscall (darwin-amd64), const WNOWAIT = 32 +pkg syscall (darwin-amd64), const WORDSIZE = 64 +pkg syscall (darwin-amd64), const WSTOPPED = 8 +pkg syscall (darwin-amd64), const WUNTRACED = 2 +pkg syscall (darwin-amd64), func Fchflags(int, int) error +pkg syscall (darwin-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-amd64), type Inet4Pktinfo struct +pkg syscall (darwin-amd64), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-amd64), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-amd64), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-amd64), type Termios struct +pkg syscall (darwin-amd64), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-amd64), type Termios struct, Cflag uint64 +pkg syscall (darwin-amd64), type Termios struct, Iflag uint64 +pkg syscall (darwin-amd64), type Termios struct, Ispeed uint64 +pkg syscall (darwin-amd64), type Termios struct, Lflag uint64 +pkg syscall (darwin-amd64), type Termios struct, Oflag uint64 +pkg syscall (darwin-amd64), type Termios struct, Ospeed uint64 +pkg syscall (darwin-amd64), type Termios struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), const AF_APPLETALK = 16 +pkg syscall (darwin-amd64-cgo), const AF_CCITT = 10 +pkg syscall (darwin-amd64-cgo), const AF_CHAOS = 5 +pkg syscall (darwin-amd64-cgo), const AF_CNT = 21 +pkg syscall (darwin-amd64-cgo), const AF_COIP = 20 +pkg syscall (darwin-amd64-cgo), const AF_DATAKIT = 9 +pkg syscall (darwin-amd64-cgo), const AF_DECnet = 12 +pkg syscall (darwin-amd64-cgo), const AF_DLI = 13 +pkg syscall (darwin-amd64-cgo), const AF_E164 = 28 +pkg syscall (darwin-amd64-cgo), const AF_ECMA = 8 +pkg syscall (darwin-amd64-cgo), const AF_HYLINK = 15 +pkg syscall (darwin-amd64-cgo), const AF_IEEE80211 = 37 +pkg syscall (darwin-amd64-cgo), const AF_IMPLINK = 3 +pkg syscall (darwin-amd64-cgo), const AF_INET6 = 30 +pkg syscall (darwin-amd64-cgo), const AF_IPX = 23 +pkg syscall (darwin-amd64-cgo), const AF_ISDN = 28 +pkg syscall (darwin-amd64-cgo), const AF_ISO = 7 +pkg syscall (darwin-amd64-cgo), const AF_LAT = 14 +pkg syscall (darwin-amd64-cgo), const AF_LINK = 18 +pkg syscall (darwin-amd64-cgo), const AF_LOCAL = 1 +pkg syscall (darwin-amd64-cgo), const AF_MAX = 38 +pkg syscall (darwin-amd64-cgo), const AF_NATM = 31 +pkg syscall (darwin-amd64-cgo), const AF_NDRV = 27 +pkg syscall (darwin-amd64-cgo), const AF_NETBIOS = 33 +pkg syscall (darwin-amd64-cgo), const AF_NS = 6 +pkg syscall (darwin-amd64-cgo), const AF_OSI = 7 +pkg syscall (darwin-amd64-cgo), const AF_PPP = 34 +pkg syscall (darwin-amd64-cgo), const AF_PUP = 4 +pkg syscall (darwin-amd64-cgo), const AF_RESERVED_36 = 36 +pkg syscall (darwin-amd64-cgo), const AF_ROUTE = 17 +pkg syscall (darwin-amd64-cgo), const AF_SIP = 24 +pkg syscall (darwin-amd64-cgo), const AF_SNA = 11 +pkg syscall (darwin-amd64-cgo), const AF_SYSTEM = 32 +pkg syscall (darwin-amd64-cgo), const B0 = 0 +pkg syscall (darwin-amd64-cgo), const B0 ideal-int +pkg syscall (darwin-amd64-cgo), const B110 = 110 +pkg syscall (darwin-amd64-cgo), const B110 ideal-int +pkg syscall (darwin-amd64-cgo), const B115200 = 115200 +pkg syscall (darwin-amd64-cgo), const B115200 ideal-int +pkg syscall (darwin-amd64-cgo), const B1200 = 1200 +pkg syscall (darwin-amd64-cgo), const B1200 ideal-int +pkg syscall (darwin-amd64-cgo), const B134 = 134 +pkg syscall (darwin-amd64-cgo), const B134 ideal-int +pkg syscall (darwin-amd64-cgo), const B14400 = 14400 +pkg syscall (darwin-amd64-cgo), const B14400 ideal-int +pkg syscall (darwin-amd64-cgo), const B150 = 150 +pkg syscall (darwin-amd64-cgo), const B150 ideal-int +pkg syscall (darwin-amd64-cgo), const B1800 = 1800 +pkg syscall (darwin-amd64-cgo), const B1800 ideal-int +pkg syscall (darwin-amd64-cgo), const B19200 = 19200 +pkg syscall (darwin-amd64-cgo), const B19200 ideal-int +pkg syscall (darwin-amd64-cgo), const B200 = 200 +pkg syscall (darwin-amd64-cgo), const B200 ideal-int +pkg syscall (darwin-amd64-cgo), const B230400 = 230400 +pkg syscall (darwin-amd64-cgo), const B230400 ideal-int +pkg syscall (darwin-amd64-cgo), const B2400 = 2400 +pkg syscall (darwin-amd64-cgo), const B2400 ideal-int +pkg syscall (darwin-amd64-cgo), const B28800 = 28800 +pkg syscall (darwin-amd64-cgo), const B28800 ideal-int +pkg syscall (darwin-amd64-cgo), const B300 = 300 +pkg syscall (darwin-amd64-cgo), const B300 ideal-int +pkg syscall (darwin-amd64-cgo), const B38400 = 38400 +pkg syscall (darwin-amd64-cgo), const B38400 ideal-int +pkg syscall (darwin-amd64-cgo), const B4800 = 4800 +pkg syscall (darwin-amd64-cgo), const B4800 ideal-int +pkg syscall (darwin-amd64-cgo), const B50 = 50 +pkg syscall (darwin-amd64-cgo), const B50 ideal-int +pkg syscall (darwin-amd64-cgo), const B57600 = 57600 +pkg syscall (darwin-amd64-cgo), const B57600 ideal-int +pkg syscall (darwin-amd64-cgo), const B600 = 600 +pkg syscall (darwin-amd64-cgo), const B600 ideal-int +pkg syscall (darwin-amd64-cgo), const B7200 = 7200 +pkg syscall (darwin-amd64-cgo), const B7200 ideal-int +pkg syscall (darwin-amd64-cgo), const B75 = 75 +pkg syscall (darwin-amd64-cgo), const B75 ideal-int +pkg syscall (darwin-amd64-cgo), const B76800 = 76800 +pkg syscall (darwin-amd64-cgo), const B76800 ideal-int +pkg syscall (darwin-amd64-cgo), const B9600 = 9600 +pkg syscall (darwin-amd64-cgo), const B9600 ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (darwin-amd64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-amd64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (darwin-amd64-cgo), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-amd64-cgo), const BIOCGETIF = 1075855979 +pkg syscall (darwin-amd64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-amd64-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-amd64-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (darwin-amd64-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-amd64-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-amd64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-amd64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (darwin-amd64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-amd64-cgo), const BIOCSDLT = 2147762808 +pkg syscall (darwin-amd64-cgo), const BIOCSETF = 2148549223 +pkg syscall (darwin-amd64-cgo), const BIOCSETIF = 2149597804 +pkg syscall (darwin-amd64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-amd64-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-amd64-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (darwin-amd64-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-amd64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (darwin-amd64-cgo), const BPF_A = 16 +pkg syscall (darwin-amd64-cgo), const BPF_ABS = 32 +pkg syscall (darwin-amd64-cgo), const BPF_ADD = 0 +pkg syscall (darwin-amd64-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-amd64-cgo), const BPF_ALU = 4 +pkg syscall (darwin-amd64-cgo), const BPF_AND = 80 +pkg syscall (darwin-amd64-cgo), const BPF_B = 16 +pkg syscall (darwin-amd64-cgo), const BPF_DIV = 48 +pkg syscall (darwin-amd64-cgo), const BPF_H = 8 +pkg syscall (darwin-amd64-cgo), const BPF_IMM = 0 +pkg syscall (darwin-amd64-cgo), const BPF_IND = 64 +pkg syscall (darwin-amd64-cgo), const BPF_JA = 0 +pkg syscall (darwin-amd64-cgo), const BPF_JEQ = 16 +pkg syscall (darwin-amd64-cgo), const BPF_JGE = 48 +pkg syscall (darwin-amd64-cgo), const BPF_JGT = 32 +pkg syscall (darwin-amd64-cgo), const BPF_JMP = 5 +pkg syscall (darwin-amd64-cgo), const BPF_JSET = 64 +pkg syscall (darwin-amd64-cgo), const BPF_K = 0 +pkg syscall (darwin-amd64-cgo), const BPF_LD = 0 +pkg syscall (darwin-amd64-cgo), const BPF_LDX = 1 +pkg syscall (darwin-amd64-cgo), const BPF_LEN = 128 +pkg syscall (darwin-amd64-cgo), const BPF_LSH = 96 +pkg syscall (darwin-amd64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-amd64-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-amd64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (darwin-amd64-cgo), const BPF_MEM = 96 +pkg syscall (darwin-amd64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (darwin-amd64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-amd64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-amd64-cgo), const BPF_MISC = 7 +pkg syscall (darwin-amd64-cgo), const BPF_MSH = 160 +pkg syscall (darwin-amd64-cgo), const BPF_MUL = 32 +pkg syscall (darwin-amd64-cgo), const BPF_NEG = 128 +pkg syscall (darwin-amd64-cgo), const BPF_OR = 64 +pkg syscall (darwin-amd64-cgo), const BPF_RELEASE = 199606 +pkg syscall (darwin-amd64-cgo), const BPF_RET = 6 +pkg syscall (darwin-amd64-cgo), const BPF_RSH = 112 +pkg syscall (darwin-amd64-cgo), const BPF_ST = 2 +pkg syscall (darwin-amd64-cgo), const BPF_STX = 3 +pkg syscall (darwin-amd64-cgo), const BPF_SUB = 16 +pkg syscall (darwin-amd64-cgo), const BPF_TAX = 0 +pkg syscall (darwin-amd64-cgo), const BPF_TXA = 128 +pkg syscall (darwin-amd64-cgo), const BPF_W = 0 +pkg syscall (darwin-amd64-cgo), const BPF_X = 8 +pkg syscall (darwin-amd64-cgo), const BRKINT = 2 +pkg syscall (darwin-amd64-cgo), const BRKINT ideal-int +pkg syscall (darwin-amd64-cgo), const CFLUSH = 15 +pkg syscall (darwin-amd64-cgo), const CFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const CLOCAL = 32768 +pkg syscall (darwin-amd64-cgo), const CLOCAL ideal-int +pkg syscall (darwin-amd64-cgo), const CREAD = 2048 +pkg syscall (darwin-amd64-cgo), const CREAD ideal-int +pkg syscall (darwin-amd64-cgo), const CS5 = 0 +pkg syscall (darwin-amd64-cgo), const CS5 ideal-int +pkg syscall (darwin-amd64-cgo), const CS6 = 256 +pkg syscall (darwin-amd64-cgo), const CS6 ideal-int +pkg syscall (darwin-amd64-cgo), const CS7 = 512 +pkg syscall (darwin-amd64-cgo), const CS7 ideal-int +pkg syscall (darwin-amd64-cgo), const CS8 = 768 +pkg syscall (darwin-amd64-cgo), const CS8 ideal-int +pkg syscall (darwin-amd64-cgo), const CSIZE = 768 +pkg syscall (darwin-amd64-cgo), const CSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const CSTART = 17 +pkg syscall (darwin-amd64-cgo), const CSTART ideal-int +pkg syscall (darwin-amd64-cgo), const CSTATUS = 20 +pkg syscall (darwin-amd64-cgo), const CSTATUS ideal-int +pkg syscall (darwin-amd64-cgo), const CSTOP = 19 +pkg syscall (darwin-amd64-cgo), const CSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const CSTOPB = 1024 +pkg syscall (darwin-amd64-cgo), const CSTOPB ideal-int +pkg syscall (darwin-amd64-cgo), const CSUSP = 26 +pkg syscall (darwin-amd64-cgo), const CSUSP ideal-int +pkg syscall (darwin-amd64-cgo), const CTL_MAXNAME = 12 +pkg syscall (darwin-amd64-cgo), const CTL_NET = 4 +pkg syscall (darwin-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-amd64-cgo), const DLT_ARCNET = 7 +pkg syscall (darwin-amd64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-amd64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-amd64-cgo), const DLT_AX25 = 3 +pkg syscall (darwin-amd64-cgo), const DLT_CHAOS = 5 +pkg syscall (darwin-amd64-cgo), const DLT_CHDLC = 104 +pkg syscall (darwin-amd64-cgo), const DLT_C_HDLC = 104 +pkg syscall (darwin-amd64-cgo), const DLT_EN10MB = 1 +pkg syscall (darwin-amd64-cgo), const DLT_EN3MB = 2 +pkg syscall (darwin-amd64-cgo), const DLT_FDDI = 10 +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802 = 6 +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-amd64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-amd64-cgo), const DLT_LOOP = 108 +pkg syscall (darwin-amd64-cgo), const DLT_NULL = 0 +pkg syscall (darwin-amd64-cgo), const DLT_PFLOG = 117 +pkg syscall (darwin-amd64-cgo), const DLT_PFSYNC = 18 +pkg syscall (darwin-amd64-cgo), const DLT_PPP = 9 +pkg syscall (darwin-amd64-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-amd64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-amd64-cgo), const DLT_PRONET = 4 +pkg syscall (darwin-amd64-cgo), const DLT_RAW = 12 +pkg syscall (darwin-amd64-cgo), const DLT_SLIP = 8 +pkg syscall (darwin-amd64-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-amd64-cgo), const DT_BLK = 6 +pkg syscall (darwin-amd64-cgo), const DT_CHR = 2 +pkg syscall (darwin-amd64-cgo), const DT_DIR = 4 +pkg syscall (darwin-amd64-cgo), const DT_FIFO = 1 +pkg syscall (darwin-amd64-cgo), const DT_LNK = 10 +pkg syscall (darwin-amd64-cgo), const DT_REG = 8 +pkg syscall (darwin-amd64-cgo), const DT_SOCK = 12 +pkg syscall (darwin-amd64-cgo), const DT_UNKNOWN = 0 +pkg syscall (darwin-amd64-cgo), const DT_WHT = 14 +pkg syscall (darwin-amd64-cgo), const E2BIG = 7 +pkg syscall (darwin-amd64-cgo), const EACCES = 13 +pkg syscall (darwin-amd64-cgo), const EADDRINUSE = 48 +pkg syscall (darwin-amd64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-amd64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (darwin-amd64-cgo), const EAGAIN = 35 +pkg syscall (darwin-amd64-cgo), const EALREADY = 37 +pkg syscall (darwin-amd64-cgo), const EAUTH = 80 +pkg syscall (darwin-amd64-cgo), const EBADARCH = 86 +pkg syscall (darwin-amd64-cgo), const EBADEXEC = 85 +pkg syscall (darwin-amd64-cgo), const EBADF = 9 +pkg syscall (darwin-amd64-cgo), const EBADMACHO = 88 +pkg syscall (darwin-amd64-cgo), const EBADMSG = 94 +pkg syscall (darwin-amd64-cgo), const EBADRPC = 72 +pkg syscall (darwin-amd64-cgo), const EBUSY = 16 +pkg syscall (darwin-amd64-cgo), const ECANCELED = 89 +pkg syscall (darwin-amd64-cgo), const ECHILD = 10 +pkg syscall (darwin-amd64-cgo), const ECHO = 8 +pkg syscall (darwin-amd64-cgo), const ECHOCTL = 64 +pkg syscall (darwin-amd64-cgo), const ECHOE = 2 +pkg syscall (darwin-amd64-cgo), const ECHOK = 4 +pkg syscall (darwin-amd64-cgo), const ECHOKE = 1 +pkg syscall (darwin-amd64-cgo), const ECHONL = 16 +pkg syscall (darwin-amd64-cgo), const ECHOPRT = 32 +pkg syscall (darwin-amd64-cgo), const ECONNABORTED = 53 +pkg syscall (darwin-amd64-cgo), const ECONNREFUSED = 61 +pkg syscall (darwin-amd64-cgo), const ECONNRESET = 54 +pkg syscall (darwin-amd64-cgo), const EDEADLK = 11 +pkg syscall (darwin-amd64-cgo), const EDESTADDRREQ = 39 +pkg syscall (darwin-amd64-cgo), const EDEVERR = 83 +pkg syscall (darwin-amd64-cgo), const EDOM = 33 +pkg syscall (darwin-amd64-cgo), const EDQUOT = 69 +pkg syscall (darwin-amd64-cgo), const EEXIST = 17 +pkg syscall (darwin-amd64-cgo), const EFAULT = 14 +pkg syscall (darwin-amd64-cgo), const EFBIG = 27 +pkg syscall (darwin-amd64-cgo), const EFTYPE = 79 +pkg syscall (darwin-amd64-cgo), const EHOSTDOWN = 64 +pkg syscall (darwin-amd64-cgo), const EHOSTUNREACH = 65 +pkg syscall (darwin-amd64-cgo), const EIDRM = 90 +pkg syscall (darwin-amd64-cgo), const EILSEQ = 92 +pkg syscall (darwin-amd64-cgo), const EINPROGRESS = 36 +pkg syscall (darwin-amd64-cgo), const EINTR = 4 +pkg syscall (darwin-amd64-cgo), const EINVAL = 22 +pkg syscall (darwin-amd64-cgo), const EIO = 5 +pkg syscall (darwin-amd64-cgo), const EISCONN = 56 +pkg syscall (darwin-amd64-cgo), const EISDIR = 21 +pkg syscall (darwin-amd64-cgo), const ELAST = 105 +pkg syscall (darwin-amd64-cgo), const ELOOP = 62 +pkg syscall (darwin-amd64-cgo), const EMFILE = 24 +pkg syscall (darwin-amd64-cgo), const EMLINK = 31 +pkg syscall (darwin-amd64-cgo), const EMSGSIZE = 40 +pkg syscall (darwin-amd64-cgo), const EMULTIHOP = 95 +pkg syscall (darwin-amd64-cgo), const ENAMETOOLONG = 63 +pkg syscall (darwin-amd64-cgo), const ENEEDAUTH = 81 +pkg syscall (darwin-amd64-cgo), const ENETDOWN = 50 +pkg syscall (darwin-amd64-cgo), const ENETRESET = 52 +pkg syscall (darwin-amd64-cgo), const ENETUNREACH = 51 +pkg syscall (darwin-amd64-cgo), const ENFILE = 23 +pkg syscall (darwin-amd64-cgo), const ENOATTR = 93 +pkg syscall (darwin-amd64-cgo), const ENOBUFS = 55 +pkg syscall (darwin-amd64-cgo), const ENODATA = 96 +pkg syscall (darwin-amd64-cgo), const ENODEV = 19 +pkg syscall (darwin-amd64-cgo), const ENOEXEC = 8 +pkg syscall (darwin-amd64-cgo), const ENOLCK = 77 +pkg syscall (darwin-amd64-cgo), const ENOLINK = 97 +pkg syscall (darwin-amd64-cgo), const ENOMEM = 12 +pkg syscall (darwin-amd64-cgo), const ENOMSG = 91 +pkg syscall (darwin-amd64-cgo), const ENOPOLICY = 103 +pkg syscall (darwin-amd64-cgo), const ENOPROTOOPT = 42 +pkg syscall (darwin-amd64-cgo), const ENOSPC = 28 +pkg syscall (darwin-amd64-cgo), const ENOSR = 98 +pkg syscall (darwin-amd64-cgo), const ENOSTR = 99 +pkg syscall (darwin-amd64-cgo), const ENOSYS = 78 +pkg syscall (darwin-amd64-cgo), const ENOTBLK = 15 +pkg syscall (darwin-amd64-cgo), const ENOTCONN = 57 +pkg syscall (darwin-amd64-cgo), const ENOTDIR = 20 +pkg syscall (darwin-amd64-cgo), const ENOTEMPTY = 66 +pkg syscall (darwin-amd64-cgo), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-amd64-cgo), const ENOTSOCK = 38 +pkg syscall (darwin-amd64-cgo), const ENOTSUP = 45 +pkg syscall (darwin-amd64-cgo), const ENOTTY = 25 +pkg syscall (darwin-amd64-cgo), const ENXIO = 6 +pkg syscall (darwin-amd64-cgo), const EOPNOTSUPP = 102 +pkg syscall (darwin-amd64-cgo), const EOVERFLOW = 84 +pkg syscall (darwin-amd64-cgo), const EOWNERDEAD = 105 +pkg syscall (darwin-amd64-cgo), const EPERM = 1 +pkg syscall (darwin-amd64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (darwin-amd64-cgo), const EPIPE = 32 +pkg syscall (darwin-amd64-cgo), const EPROCLIM = 67 +pkg syscall (darwin-amd64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (darwin-amd64-cgo), const EPROGMISMATCH = 75 +pkg syscall (darwin-amd64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (darwin-amd64-cgo), const EPROTO = 100 +pkg syscall (darwin-amd64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-amd64-cgo), const EPROTOTYPE = 41 +pkg syscall (darwin-amd64-cgo), const EPWROFF = 82 +pkg syscall (darwin-amd64-cgo), const ERANGE = 34 +pkg syscall (darwin-amd64-cgo), const EREMOTE = 71 +pkg syscall (darwin-amd64-cgo), const EROFS = 30 +pkg syscall (darwin-amd64-cgo), const ERPCMISMATCH = 73 +pkg syscall (darwin-amd64-cgo), const ESHLIBVERS = 87 +pkg syscall (darwin-amd64-cgo), const ESHUTDOWN = 58 +pkg syscall (darwin-amd64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-amd64-cgo), const ESPIPE = 29 +pkg syscall (darwin-amd64-cgo), const ESRCH = 3 +pkg syscall (darwin-amd64-cgo), const ESTALE = 70 +pkg syscall (darwin-amd64-cgo), const ETIME = 101 +pkg syscall (darwin-amd64-cgo), const ETIMEDOUT = 60 +pkg syscall (darwin-amd64-cgo), const ETOOMANYREFS = 59 +pkg syscall (darwin-amd64-cgo), const ETXTBSY = 26 +pkg syscall (darwin-amd64-cgo), const EUSERS = 68 +pkg syscall (darwin-amd64-cgo), const EVFILT_AIO = -3 +pkg syscall (darwin-amd64-cgo), const EVFILT_FS = -9 +pkg syscall (darwin-amd64-cgo), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-amd64-cgo), const EVFILT_PROC = -5 +pkg syscall (darwin-amd64-cgo), const EVFILT_READ = -1 +pkg syscall (darwin-amd64-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-amd64-cgo), const EVFILT_SYSCOUNT = 12 +pkg syscall (darwin-amd64-cgo), const EVFILT_THREADMARKER = 12 +pkg syscall (darwin-amd64-cgo), const EVFILT_TIMER = -7 +pkg syscall (darwin-amd64-cgo), const EVFILT_USER = -10 +pkg syscall (darwin-amd64-cgo), const EVFILT_VM = -12 +pkg syscall (darwin-amd64-cgo), const EVFILT_VNODE = -4 +pkg syscall (darwin-amd64-cgo), const EVFILT_WRITE = -2 +pkg syscall (darwin-amd64-cgo), const EV_ADD = 1 +pkg syscall (darwin-amd64-cgo), const EV_CLEAR = 32 +pkg syscall (darwin-amd64-cgo), const EV_DELETE = 2 +pkg syscall (darwin-amd64-cgo), const EV_DISABLE = 8 +pkg syscall (darwin-amd64-cgo), const EV_DISPATCH = 128 +pkg syscall (darwin-amd64-cgo), const EV_ENABLE = 4 +pkg syscall (darwin-amd64-cgo), const EV_EOF = 32768 +pkg syscall (darwin-amd64-cgo), const EV_ERROR = 16384 +pkg syscall (darwin-amd64-cgo), const EV_FLAG0 = 4096 +pkg syscall (darwin-amd64-cgo), const EV_FLAG1 = 8192 +pkg syscall (darwin-amd64-cgo), const EV_ONESHOT = 16 +pkg syscall (darwin-amd64-cgo), const EV_OOBAND = 8192 +pkg syscall (darwin-amd64-cgo), const EV_POLL = 4096 +pkg syscall (darwin-amd64-cgo), const EV_RECEIPT = 64 +pkg syscall (darwin-amd64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-amd64-cgo), const EWOULDBLOCK = 35 +pkg syscall (darwin-amd64-cgo), const EXDEV = 18 +pkg syscall (darwin-amd64-cgo), const EXTA = 19200 +pkg syscall (darwin-amd64-cgo), const EXTB = 38400 +pkg syscall (darwin-amd64-cgo), const EXTPROC = 2048 +pkg syscall (darwin-amd64-cgo), const FD_CLOEXEC = 1 +pkg syscall (darwin-amd64-cgo), const FD_SETSIZE = 1024 +pkg syscall (darwin-amd64-cgo), const FLUSHO = 8388608 +pkg syscall (darwin-amd64-cgo), const FLUSHO ideal-int +pkg syscall (darwin-amd64-cgo), const F_ADDFILESIGS = 61 +pkg syscall (darwin-amd64-cgo), const F_ADDSIGS = 59 +pkg syscall (darwin-amd64-cgo), const F_ALLOCATEALL = 4 +pkg syscall (darwin-amd64-cgo), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-amd64-cgo), const F_CHKCLEAN = 41 +pkg syscall (darwin-amd64-cgo), const F_DUPFD = 0 +pkg syscall (darwin-amd64-cgo), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-amd64-cgo), const F_FLUSH_DATA = 40 +pkg syscall (darwin-amd64-cgo), const F_FREEZE_FS = 53 +pkg syscall (darwin-amd64-cgo), const F_FULLFSYNC = 51 +pkg syscall (darwin-amd64-cgo), const F_GETFD = 1 +pkg syscall (darwin-amd64-cgo), const F_GETFL = 3 +pkg syscall (darwin-amd64-cgo), const F_GETLK = 7 +pkg syscall (darwin-amd64-cgo), const F_GETLKPID = 66 +pkg syscall (darwin-amd64-cgo), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-amd64-cgo), const F_GETOWN = 5 +pkg syscall (darwin-amd64-cgo), const F_GETPATH = 50 +pkg syscall (darwin-amd64-cgo), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-amd64-cgo), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-amd64-cgo), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-amd64-cgo), const F_LOG2PHYS = 49 +pkg syscall (darwin-amd64-cgo), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-amd64-cgo), const F_MARKDEPENDENCY = 60 +pkg syscall (darwin-amd64-cgo), const F_NOCACHE = 48 +pkg syscall (darwin-amd64-cgo), const F_NODIRECT = 62 +pkg syscall (darwin-amd64-cgo), const F_OK = 0 +pkg syscall (darwin-amd64-cgo), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-amd64-cgo), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-amd64-cgo), const F_PREALLOCATE = 42 +pkg syscall (darwin-amd64-cgo), const F_RDADVISE = 44 +pkg syscall (darwin-amd64-cgo), const F_RDAHEAD = 45 +pkg syscall (darwin-amd64-cgo), const F_RDLCK = 1 +pkg syscall (darwin-amd64-cgo), const F_READBOOTSTRAP = 46 +pkg syscall (darwin-amd64-cgo), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-amd64-cgo), const F_SETFD = 2 +pkg syscall (darwin-amd64-cgo), const F_SETFL = 4 +pkg syscall (darwin-amd64-cgo), const F_SETLK = 8 +pkg syscall (darwin-amd64-cgo), const F_SETLKW = 9 +pkg syscall (darwin-amd64-cgo), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-amd64-cgo), const F_SETOWN = 6 +pkg syscall (darwin-amd64-cgo), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-amd64-cgo), const F_SETSIZE = 43 +pkg syscall (darwin-amd64-cgo), const F_THAW_FS = 54 +pkg syscall (darwin-amd64-cgo), const F_UNLCK = 2 +pkg syscall (darwin-amd64-cgo), const F_VOLPOSMODE = 4 +pkg syscall (darwin-amd64-cgo), const F_WRITEBOOTSTRAP = 47 +pkg syscall (darwin-amd64-cgo), const F_WRLCK = 3 +pkg syscall (darwin-amd64-cgo), const HUPCL = 16384 +pkg syscall (darwin-amd64-cgo), const HUPCL ideal-int +pkg syscall (darwin-amd64-cgo), const ICANON = 256 +pkg syscall (darwin-amd64-cgo), const ICANON ideal-int +pkg syscall (darwin-amd64-cgo), const ICRNL = 256 +pkg syscall (darwin-amd64-cgo), const ICRNL ideal-int +pkg syscall (darwin-amd64-cgo), const IEXTEN = 1024 +pkg syscall (darwin-amd64-cgo), const IEXTEN ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (darwin-amd64-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-amd64-cgo), const IFF_DEBUG = 4 +pkg syscall (darwin-amd64-cgo), const IFF_LINK0 = 4096 +pkg syscall (darwin-amd64-cgo), const IFF_LINK1 = 8192 +pkg syscall (darwin-amd64-cgo), const IFF_LINK2 = 16384 +pkg syscall (darwin-amd64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (darwin-amd64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (darwin-amd64-cgo), const IFF_NOARP = 128 +pkg syscall (darwin-amd64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-amd64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (darwin-amd64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-amd64-cgo), const IFF_PROMISC = 256 +pkg syscall (darwin-amd64-cgo), const IFF_RUNNING = 64 +pkg syscall (darwin-amd64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-amd64-cgo), const IFNAMSIZ = 16 +pkg syscall (darwin-amd64-cgo), const IFT_1822 = 2 +pkg syscall (darwin-amd64-cgo), const IFT_AAL5 = 49 +pkg syscall (darwin-amd64-cgo), const IFT_ARCNET = 35 +pkg syscall (darwin-amd64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-amd64-cgo), const IFT_ATM = 37 +pkg syscall (darwin-amd64-cgo), const IFT_BRIDGE = 209 +pkg syscall (darwin-amd64-cgo), const IFT_CARP = 248 +pkg syscall (darwin-amd64-cgo), const IFT_CELLULAR = 255 +pkg syscall (darwin-amd64-cgo), const IFT_CEPT = 19 +pkg syscall (darwin-amd64-cgo), const IFT_DS3 = 30 +pkg syscall (darwin-amd64-cgo), const IFT_ENC = 244 +pkg syscall (darwin-amd64-cgo), const IFT_EON = 25 +pkg syscall (darwin-amd64-cgo), const IFT_ETHER = 6 +pkg syscall (darwin-amd64-cgo), const IFT_FAITH = 56 +pkg syscall (darwin-amd64-cgo), const IFT_FDDI = 15 +pkg syscall (darwin-amd64-cgo), const IFT_FRELAY = 32 +pkg syscall (darwin-amd64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-amd64-cgo), const IFT_GIF = 55 +pkg syscall (darwin-amd64-cgo), const IFT_HDH1822 = 3 +pkg syscall (darwin-amd64-cgo), const IFT_HIPPI = 47 +pkg syscall (darwin-amd64-cgo), const IFT_HSSI = 46 +pkg syscall (darwin-amd64-cgo), const IFT_HY = 14 +pkg syscall (darwin-amd64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (darwin-amd64-cgo), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-amd64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-amd64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-amd64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-amd64-cgo), const IFT_ISO88023 = 7 +pkg syscall (darwin-amd64-cgo), const IFT_ISO88024 = 8 +pkg syscall (darwin-amd64-cgo), const IFT_ISO88025 = 9 +pkg syscall (darwin-amd64-cgo), const IFT_ISO88026 = 10 +pkg syscall (darwin-amd64-cgo), const IFT_L2VLAN = 135 +pkg syscall (darwin-amd64-cgo), const IFT_LAPB = 16 +pkg syscall (darwin-amd64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (darwin-amd64-cgo), const IFT_LOOP = 24 +pkg syscall (darwin-amd64-cgo), const IFT_MIOX25 = 38 +pkg syscall (darwin-amd64-cgo), const IFT_MODEM = 48 +pkg syscall (darwin-amd64-cgo), const IFT_NSIP = 27 +pkg syscall (darwin-amd64-cgo), const IFT_OTHER = 1 +pkg syscall (darwin-amd64-cgo), const IFT_P10 = 12 +pkg syscall (darwin-amd64-cgo), const IFT_P80 = 13 +pkg syscall (darwin-amd64-cgo), const IFT_PARA = 34 +pkg syscall (darwin-amd64-cgo), const IFT_PDP = 255 +pkg syscall (darwin-amd64-cgo), const IFT_PFLOG = 245 +pkg syscall (darwin-amd64-cgo), const IFT_PFSYNC = 246 +pkg syscall (darwin-amd64-cgo), const IFT_PPP = 23 +pkg syscall (darwin-amd64-cgo), const IFT_PROPMUX = 54 +pkg syscall (darwin-amd64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-amd64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-amd64-cgo), const IFT_RS232 = 33 +pkg syscall (darwin-amd64-cgo), const IFT_SDLC = 17 +pkg syscall (darwin-amd64-cgo), const IFT_SIP = 31 +pkg syscall (darwin-amd64-cgo), const IFT_SLIP = 28 +pkg syscall (darwin-amd64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (darwin-amd64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (darwin-amd64-cgo), const IFT_SONET = 39 +pkg syscall (darwin-amd64-cgo), const IFT_SONETPATH = 50 +pkg syscall (darwin-amd64-cgo), const IFT_SONETVT = 51 +pkg syscall (darwin-amd64-cgo), const IFT_STARLAN = 11 +pkg syscall (darwin-amd64-cgo), const IFT_STF = 57 +pkg syscall (darwin-amd64-cgo), const IFT_T1 = 18 +pkg syscall (darwin-amd64-cgo), const IFT_ULTRA = 29 +pkg syscall (darwin-amd64-cgo), const IFT_V35 = 45 +pkg syscall (darwin-amd64-cgo), const IFT_X25 = 5 +pkg syscall (darwin-amd64-cgo), const IFT_X25DDN = 4 +pkg syscall (darwin-amd64-cgo), const IFT_X25PLE = 40 +pkg syscall (darwin-amd64-cgo), const IFT_XETHER = 26 +pkg syscall (darwin-amd64-cgo), const IGNBRK = 1 +pkg syscall (darwin-amd64-cgo), const IGNBRK ideal-int +pkg syscall (darwin-amd64-cgo), const IGNCR = 128 +pkg syscall (darwin-amd64-cgo), const IGNCR ideal-int +pkg syscall (darwin-amd64-cgo), const IGNPAR = 4 +pkg syscall (darwin-amd64-cgo), const IGNPAR ideal-int +pkg syscall (darwin-amd64-cgo), const IMAXBEL = 8192 +pkg syscall (darwin-amd64-cgo), const IMAXBEL ideal-int +pkg syscall (darwin-amd64-cgo), const INLCR = 64 +pkg syscall (darwin-amd64-cgo), const INLCR ideal-int +pkg syscall (darwin-amd64-cgo), const INPCK = 16 +pkg syscall (darwin-amd64-cgo), const INPCK ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-amd64-cgo), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-amd64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-amd64-cgo), const IPPROTO_3PC = 34 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ADFS = 68 +pkg syscall (darwin-amd64-cgo), const IPPROTO_AH = 51 +pkg syscall (darwin-amd64-cgo), const IPPROTO_AHIP = 61 +pkg syscall (darwin-amd64-cgo), const IPPROTO_APES = 99 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-amd64-cgo), const IPPROTO_AX25 = 93 +pkg syscall (darwin-amd64-cgo), const IPPROTO_BHA = 49 +pkg syscall (darwin-amd64-cgo), const IPPROTO_BLT = 30 +pkg syscall (darwin-amd64-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-amd64-cgo), const IPPROTO_CFTP = 62 +pkg syscall (darwin-amd64-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-amd64-cgo), const IPPROTO_CMTP = 38 +pkg syscall (darwin-amd64-cgo), const IPPROTO_CPHB = 73 +pkg syscall (darwin-amd64-cgo), const IPPROTO_CPNX = 72 +pkg syscall (darwin-amd64-cgo), const IPPROTO_DDP = 37 +pkg syscall (darwin-amd64-cgo), const IPPROTO_DGP = 86 +pkg syscall (darwin-amd64-cgo), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-amd64-cgo), const IPPROTO_DONE = 257 +pkg syscall (darwin-amd64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-amd64-cgo), const IPPROTO_EGP = 8 +pkg syscall (darwin-amd64-cgo), const IPPROTO_EMCON = 14 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-amd64-cgo), const IPPROTO_EON = 80 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ESP = 50 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-amd64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-amd64-cgo), const IPPROTO_GGP = 3 +pkg syscall (darwin-amd64-cgo), const IPPROTO_GMTP = 100 +pkg syscall (darwin-amd64-cgo), const IPPROTO_GRE = 47 +pkg syscall (darwin-amd64-cgo), const IPPROTO_HELLO = 63 +pkg syscall (darwin-amd64-cgo), const IPPROTO_HMP = 20 +pkg syscall (darwin-amd64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDP = 22 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDPR = 35 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDRP = 45 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGP = 85 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGRP = 88 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IL = 40 +pkg syscall (darwin-amd64-cgo), const IPPROTO_INLSP = 52 +pkg syscall (darwin-amd64-cgo), const IPPROTO_INP = 32 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPCV = 71 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPPC = 67 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-amd64-cgo), const IPPROTO_IRTP = 28 +pkg syscall (darwin-amd64-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-amd64-cgo), const IPPROTO_LARP = 91 +pkg syscall (darwin-amd64-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-amd64-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MAX = 256 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MEAS = 19 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MHRP = 48 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MICP = 95 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MTP = 92 +pkg syscall (darwin-amd64-cgo), const IPPROTO_MUX = 18 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ND = 77 +pkg syscall (darwin-amd64-cgo), const IPPROTO_NHRP = 54 +pkg syscall (darwin-amd64-cgo), const IPPROTO_NONE = 59 +pkg syscall (darwin-amd64-cgo), const IPPROTO_NSP = 31 +pkg syscall (darwin-amd64-cgo), const IPPROTO_NVPII = 11 +pkg syscall (darwin-amd64-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PGM = 113 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PIGP = 9 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PIM = 103 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PRM = 21 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PUP = 12 +pkg syscall (darwin-amd64-cgo), const IPPROTO_PVP = 75 +pkg syscall (darwin-amd64-cgo), const IPPROTO_RAW = 255 +pkg syscall (darwin-amd64-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-amd64-cgo), const IPPROTO_RDP = 27 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-amd64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (darwin-amd64-cgo), const IPPROTO_RVD = 66 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SATMON = 69 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SCTP = 132 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SDRP = 42 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SEP = 33 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SRPC = 90 +pkg syscall (darwin-amd64-cgo), const IPPROTO_ST = 7 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-amd64-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TCF = 87 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TP = 29 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TPXX = 39 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-amd64-cgo), const IPPROTO_TTP = 84 +pkg syscall (darwin-amd64-cgo), const IPPROTO_VINES = 83 +pkg syscall (darwin-amd64-cgo), const IPPROTO_VISA = 70 +pkg syscall (darwin-amd64-cgo), const IPPROTO_VMTP = 81 +pkg syscall (darwin-amd64-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-amd64-cgo), const IPPROTO_WBMON = 78 +pkg syscall (darwin-amd64-cgo), const IPPROTO_WSN = 74 +pkg syscall (darwin-amd64-cgo), const IPPROTO_XNET = 15 +pkg syscall (darwin-amd64-cgo), const IPPROTO_XTP = 36 +pkg syscall (darwin-amd64-cgo), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-amd64-cgo), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-amd64-cgo), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-amd64-cgo), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-amd64-cgo), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-amd64-cgo), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-amd64-cgo), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-amd64-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-amd64-cgo), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-amd64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-amd64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-amd64-cgo), const IPV6_FAITH = 29 +pkg syscall (darwin-amd64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-amd64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-amd64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-amd64-cgo), const IPV6_FW_ADD = 30 +pkg syscall (darwin-amd64-cgo), const IPV6_FW_DEL = 31 +pkg syscall (darwin-amd64-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-amd64-cgo), const IPV6_FW_GET = 34 +pkg syscall (darwin-amd64-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-amd64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-amd64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-amd64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-amd64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-amd64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-amd64-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-amd64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-amd64-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-amd64-cgo), const IPV6_MMTU = 1280 +pkg syscall (darwin-amd64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-amd64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-amd64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-amd64-cgo), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-amd64-cgo), const IPV6_TCLASS = 36 +pkg syscall (darwin-amd64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-amd64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (darwin-amd64-cgo), const IPV6_VERSION = 96 +pkg syscall (darwin-amd64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-amd64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-amd64-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-amd64-cgo), const IP_BOUND_IF = 25 +pkg syscall (darwin-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-amd64-cgo), const IP_DF = 16384 +pkg syscall (darwin-amd64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-amd64-cgo), const IP_FAITH = 22 +pkg syscall (darwin-amd64-cgo), const IP_FW_ADD = 40 +pkg syscall (darwin-amd64-cgo), const IP_FW_DEL = 41 +pkg syscall (darwin-amd64-cgo), const IP_FW_FLUSH = 42 +pkg syscall (darwin-amd64-cgo), const IP_FW_GET = 44 +pkg syscall (darwin-amd64-cgo), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-amd64-cgo), const IP_FW_ZERO = 43 +pkg syscall (darwin-amd64-cgo), const IP_HDRINCL = 2 +pkg syscall (darwin-amd64-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-amd64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (darwin-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-amd64-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-amd64-cgo), const IP_MF = 8192 +pkg syscall (darwin-amd64-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-amd64-cgo), const IP_MSFILTER = 74 +pkg syscall (darwin-amd64-cgo), const IP_MSS = 576 +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-amd64-cgo), const IP_NAT__XXX = 55 +pkg syscall (darwin-amd64-cgo), const IP_OFFMASK = 8191 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-amd64-cgo), const IP_OPTIONS = 1 +pkg syscall (darwin-amd64-cgo), const IP_PKTINFO = 26 +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE = 19 +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-amd64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-amd64-cgo), const IP_RECVIF = 20 +pkg syscall (darwin-amd64-cgo), const IP_RECVOPTS = 5 +pkg syscall (darwin-amd64-cgo), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-amd64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-amd64-cgo), const IP_RECVTTL = 24 +pkg syscall (darwin-amd64-cgo), const IP_RETOPTS = 8 +pkg syscall (darwin-amd64-cgo), const IP_RF = 32768 +pkg syscall (darwin-amd64-cgo), const IP_RSVP_OFF = 16 +pkg syscall (darwin-amd64-cgo), const IP_RSVP_ON = 15 +pkg syscall (darwin-amd64-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-amd64-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-amd64-cgo), const IP_STRIPHDR = 23 +pkg syscall (darwin-amd64-cgo), const IP_TOS = 3 +pkg syscall (darwin-amd64-cgo), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-amd64-cgo), const IP_TTL = 4 +pkg syscall (darwin-amd64-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-amd64-cgo), const ISIG = 128 +pkg syscall (darwin-amd64-cgo), const ISIG ideal-int +pkg syscall (darwin-amd64-cgo), const ISTRIP = 32 +pkg syscall (darwin-amd64-cgo), const ISTRIP ideal-int +pkg syscall (darwin-amd64-cgo), const IUTF8 = 16384 +pkg syscall (darwin-amd64-cgo), const IUTF8 ideal-int +pkg syscall (darwin-amd64-cgo), const IXANY = 2048 +pkg syscall (darwin-amd64-cgo), const IXANY ideal-int +pkg syscall (darwin-amd64-cgo), const IXOFF = 1024 +pkg syscall (darwin-amd64-cgo), const IXOFF ideal-int +pkg syscall (darwin-amd64-cgo), const IXON = 512 +pkg syscall (darwin-amd64-cgo), const IXON ideal-int +pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = false +pkg syscall (darwin-amd64-cgo), const LOCK_EX = 2 +pkg syscall (darwin-amd64-cgo), const LOCK_NB = 4 +pkg syscall (darwin-amd64-cgo), const LOCK_SH = 1 +pkg syscall (darwin-amd64-cgo), const LOCK_UN = 8 +pkg syscall (darwin-amd64-cgo), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-amd64-cgo), const MADV_DONTNEED = 4 +pkg syscall (darwin-amd64-cgo), const MADV_FREE = 5 +pkg syscall (darwin-amd64-cgo), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-amd64-cgo), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-amd64-cgo), const MADV_NORMAL = 0 +pkg syscall (darwin-amd64-cgo), const MADV_RANDOM = 1 +pkg syscall (darwin-amd64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-amd64-cgo), const MADV_WILLNEED = 3 +pkg syscall (darwin-amd64-cgo), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-amd64-cgo), const MAP_ANON = 4096 +pkg syscall (darwin-amd64-cgo), const MAP_COPY = 2 +pkg syscall (darwin-amd64-cgo), const MAP_FILE = 0 +pkg syscall (darwin-amd64-cgo), const MAP_FIXED = 16 +pkg syscall (darwin-amd64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-amd64-cgo), const MAP_JIT = 2048 +pkg syscall (darwin-amd64-cgo), const MAP_NOCACHE = 1024 +pkg syscall (darwin-amd64-cgo), const MAP_NOEXTEND = 256 +pkg syscall (darwin-amd64-cgo), const MAP_NORESERVE = 64 +pkg syscall (darwin-amd64-cgo), const MAP_PRIVATE = 2 +pkg syscall (darwin-amd64-cgo), const MAP_RENAME = 32 +pkg syscall (darwin-amd64-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-amd64-cgo), const MAP_SHARED = 1 +pkg syscall (darwin-amd64-cgo), const MCL_CURRENT = 1 +pkg syscall (darwin-amd64-cgo), const MCL_FUTURE = 2 +pkg syscall (darwin-amd64-cgo), const MSG_CTRUNC = 32 +pkg syscall (darwin-amd64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (darwin-amd64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (darwin-amd64-cgo), const MSG_EOF = 256 +pkg syscall (darwin-amd64-cgo), const MSG_EOR = 8 +pkg syscall (darwin-amd64-cgo), const MSG_FLUSH = 1024 +pkg syscall (darwin-amd64-cgo), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-amd64-cgo), const MSG_HOLD = 2048 +pkg syscall (darwin-amd64-cgo), const MSG_NEEDSA = 65536 +pkg syscall (darwin-amd64-cgo), const MSG_OOB = 1 +pkg syscall (darwin-amd64-cgo), const MSG_PEEK = 2 +pkg syscall (darwin-amd64-cgo), const MSG_RCVMORE = 16384 +pkg syscall (darwin-amd64-cgo), const MSG_SEND = 4096 +pkg syscall (darwin-amd64-cgo), const MSG_TRUNC = 16 +pkg syscall (darwin-amd64-cgo), const MSG_WAITALL = 64 +pkg syscall (darwin-amd64-cgo), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-amd64-cgo), const MS_ASYNC = 1 +pkg syscall (darwin-amd64-cgo), const MS_DEACTIVATE = 8 +pkg syscall (darwin-amd64-cgo), const MS_INVALIDATE = 2 +pkg syscall (darwin-amd64-cgo), const MS_KILLPAGES = 4 +pkg syscall (darwin-amd64-cgo), const MS_SYNC = 16 +pkg syscall (darwin-amd64-cgo), const NAME_MAX = 255 +pkg syscall (darwin-amd64-cgo), const NET_RT_DUMP = 1 +pkg syscall (darwin-amd64-cgo), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-amd64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (darwin-amd64-cgo), const NET_RT_IFLIST = 3 +pkg syscall (darwin-amd64-cgo), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-amd64-cgo), const NET_RT_MAXID = 10 +pkg syscall (darwin-amd64-cgo), const NET_RT_STAT = 4 +pkg syscall (darwin-amd64-cgo), const NET_RT_TRASH = 5 +pkg syscall (darwin-amd64-cgo), const NOFLSH = 2147483648 +pkg syscall (darwin-amd64-cgo), const NOFLSH ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-amd64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (darwin-amd64-cgo), const NOTE_CHILD = 4 +pkg syscall (darwin-amd64-cgo), const NOTE_DELETE = 1 +pkg syscall (darwin-amd64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (darwin-amd64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-amd64-cgo), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-amd64-cgo), const NOTE_EXTEND = 4 +pkg syscall (darwin-amd64-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-amd64-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-amd64-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-amd64-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-amd64-cgo), const NOTE_FFNOP = 0 +pkg syscall (darwin-amd64-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-amd64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (darwin-amd64-cgo), const NOTE_LINK = 16 +pkg syscall (darwin-amd64-cgo), const NOTE_LOWAT = 1 +pkg syscall (darwin-amd64-cgo), const NOTE_NONE = 128 +pkg syscall (darwin-amd64-cgo), const NOTE_NSECONDS = 4 +pkg syscall (darwin-amd64-cgo), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-amd64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-amd64-cgo), const NOTE_REAP = 268435456 +pkg syscall (darwin-amd64-cgo), const NOTE_RENAME = 32 +pkg syscall (darwin-amd64-cgo), const NOTE_RESOURCEEND = 33554432 +pkg syscall (darwin-amd64-cgo), const NOTE_REVOKE = 64 +pkg syscall (darwin-amd64-cgo), const NOTE_SECONDS = 1 +pkg syscall (darwin-amd64-cgo), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-amd64-cgo), const NOTE_TRACK = 1 +pkg syscall (darwin-amd64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (darwin-amd64-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-amd64-cgo), const NOTE_USECONDS = 2 +pkg syscall (darwin-amd64-cgo), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-amd64-cgo), const NOTE_WRITE = 2 +pkg syscall (darwin-amd64-cgo), const OCRNL = 16 +pkg syscall (darwin-amd64-cgo), const OCRNL ideal-int +pkg syscall (darwin-amd64-cgo), const OFDEL = 131072 +pkg syscall (darwin-amd64-cgo), const OFDEL ideal-int +pkg syscall (darwin-amd64-cgo), const OFILL = 128 +pkg syscall (darwin-amd64-cgo), const OFILL ideal-int +pkg syscall (darwin-amd64-cgo), const ONLCR = 2 +pkg syscall (darwin-amd64-cgo), const ONLCR ideal-int +pkg syscall (darwin-amd64-cgo), const ONLRET = 64 +pkg syscall (darwin-amd64-cgo), const ONLRET ideal-int +pkg syscall (darwin-amd64-cgo), const ONOCR = 32 +pkg syscall (darwin-amd64-cgo), const ONOCR ideal-int +pkg syscall (darwin-amd64-cgo), const ONOEOT = 8 +pkg syscall (darwin-amd64-cgo), const ONOEOT ideal-int +pkg syscall (darwin-amd64-cgo), const OPOST = 1 +pkg syscall (darwin-amd64-cgo), const OPOST ideal-int +pkg syscall (darwin-amd64-cgo), const O_ACCMODE = 3 +pkg syscall (darwin-amd64-cgo), const O_ALERT = 536870912 +pkg syscall (darwin-amd64-cgo), const O_APPEND = 8 +pkg syscall (darwin-amd64-cgo), const O_ASYNC = 64 +pkg syscall (darwin-amd64-cgo), const O_CLOEXEC = 16777216 +pkg syscall (darwin-amd64-cgo), const O_CREAT = 512 +pkg syscall (darwin-amd64-cgo), const O_DIRECTORY = 1048576 +pkg syscall (darwin-amd64-cgo), const O_DSYNC = 4194304 +pkg syscall (darwin-amd64-cgo), const O_EVTONLY = 32768 +pkg syscall (darwin-amd64-cgo), const O_EXCL = 2048 +pkg syscall (darwin-amd64-cgo), const O_EXLOCK = 32 +pkg syscall (darwin-amd64-cgo), const O_FSYNC = 128 +pkg syscall (darwin-amd64-cgo), const O_NDELAY = 4 +pkg syscall (darwin-amd64-cgo), const O_NOCTTY = 131072 +pkg syscall (darwin-amd64-cgo), const O_NOFOLLOW = 256 +pkg syscall (darwin-amd64-cgo), const O_NONBLOCK = 4 +pkg syscall (darwin-amd64-cgo), const O_POPUP = 2147483648 +pkg syscall (darwin-amd64-cgo), const O_SHLOCK = 16 +pkg syscall (darwin-amd64-cgo), const O_SYMLINK = 2097152 +pkg syscall (darwin-amd64-cgo), const O_SYNC = 128 +pkg syscall (darwin-amd64-cgo), const O_TRUNC = 1024 +pkg syscall (darwin-amd64-cgo), const PARENB = 4096 +pkg syscall (darwin-amd64-cgo), const PARENB ideal-int +pkg syscall (darwin-amd64-cgo), const PARMRK = 8 +pkg syscall (darwin-amd64-cgo), const PARMRK ideal-int +pkg syscall (darwin-amd64-cgo), const PARODD = 8192 +pkg syscall (darwin-amd64-cgo), const PARODD ideal-int +pkg syscall (darwin-amd64-cgo), const PENDIN = 536870912 +pkg syscall (darwin-amd64-cgo), const PENDIN ideal-int +pkg syscall (darwin-amd64-cgo), const PROT_EXEC = 4 +pkg syscall (darwin-amd64-cgo), const PROT_NONE = 0 +pkg syscall (darwin-amd64-cgo), const PROT_READ = 1 +pkg syscall (darwin-amd64-cgo), const PROT_WRITE = 2 +pkg syscall (darwin-amd64-cgo), const PTRACE_CONT = 7 +pkg syscall (darwin-amd64-cgo), const PTRACE_KILL = 8 +pkg syscall (darwin-amd64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (darwin-amd64-cgo), const PT_ATTACH = 10 +pkg syscall (darwin-amd64-cgo), const PT_ATTACHEXC = 14 +pkg syscall (darwin-amd64-cgo), const PT_CONTINUE = 7 +pkg syscall (darwin-amd64-cgo), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-amd64-cgo), const PT_DETACH = 11 +pkg syscall (darwin-amd64-cgo), const PT_FIRSTMACH = 32 +pkg syscall (darwin-amd64-cgo), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-amd64-cgo), const PT_KILL = 8 +pkg syscall (darwin-amd64-cgo), const PT_READ_D = 2 +pkg syscall (darwin-amd64-cgo), const PT_READ_I = 1 +pkg syscall (darwin-amd64-cgo), const PT_READ_U = 3 +pkg syscall (darwin-amd64-cgo), const PT_SIGEXC = 12 +pkg syscall (darwin-amd64-cgo), const PT_STEP = 9 +pkg syscall (darwin-amd64-cgo), const PT_THUPDATE = 13 +pkg syscall (darwin-amd64-cgo), const PT_TRACE_ME = 0 +pkg syscall (darwin-amd64-cgo), const PT_WRITE_D = 5 +pkg syscall (darwin-amd64-cgo), const PT_WRITE_I = 4 +pkg syscall (darwin-amd64-cgo), const PT_WRITE_U = 6 +pkg syscall (darwin-amd64-cgo), const RLIMIT_AS = 5 +pkg syscall (darwin-amd64-cgo), const RLIMIT_CORE = 4 +pkg syscall (darwin-amd64-cgo), const RLIMIT_CPU = 0 +pkg syscall (darwin-amd64-cgo), const RLIMIT_DATA = 2 +pkg syscall (darwin-amd64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-amd64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-amd64-cgo), const RLIMIT_STACK = 3 +pkg syscall (darwin-amd64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-amd64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (darwin-amd64-cgo), const RTAX_BRD = 7 +pkg syscall (darwin-amd64-cgo), const RTAX_DST = 0 +pkg syscall (darwin-amd64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (darwin-amd64-cgo), const RTAX_GENMASK = 3 +pkg syscall (darwin-amd64-cgo), const RTAX_IFA = 5 +pkg syscall (darwin-amd64-cgo), const RTAX_IFP = 4 +pkg syscall (darwin-amd64-cgo), const RTAX_MAX = 8 +pkg syscall (darwin-amd64-cgo), const RTAX_NETMASK = 2 +pkg syscall (darwin-amd64-cgo), const RTA_AUTHOR = 64 +pkg syscall (darwin-amd64-cgo), const RTA_BRD = 128 +pkg syscall (darwin-amd64-cgo), const RTA_DST = 1 +pkg syscall (darwin-amd64-cgo), const RTA_GATEWAY = 2 +pkg syscall (darwin-amd64-cgo), const RTA_GENMASK = 8 +pkg syscall (darwin-amd64-cgo), const RTA_IFA = 32 +pkg syscall (darwin-amd64-cgo), const RTA_IFP = 16 +pkg syscall (darwin-amd64-cgo), const RTA_NETMASK = 4 +pkg syscall (darwin-amd64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-amd64-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-amd64-cgo), const RTF_CLONING = 256 +pkg syscall (darwin-amd64-cgo), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-amd64-cgo), const RTF_DELCLONE = 128 +pkg syscall (darwin-amd64-cgo), const RTF_DONE = 64 +pkg syscall (darwin-amd64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (darwin-amd64-cgo), const RTF_GATEWAY = 2 +pkg syscall (darwin-amd64-cgo), const RTF_HOST = 4 +pkg syscall (darwin-amd64-cgo), const RTF_IFREF = 67108864 +pkg syscall (darwin-amd64-cgo), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-amd64-cgo), const RTF_LLINFO = 1024 +pkg syscall (darwin-amd64-cgo), const RTF_LOCAL = 2097152 +pkg syscall (darwin-amd64-cgo), const RTF_MODIFIED = 32 +pkg syscall (darwin-amd64-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-amd64-cgo), const RTF_PINNED = 1048576 +pkg syscall (darwin-amd64-cgo), const RTF_PRCLONING = 65536 +pkg syscall (darwin-amd64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (darwin-amd64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (darwin-amd64-cgo), const RTF_PROTO3 = 262144 +pkg syscall (darwin-amd64-cgo), const RTF_REJECT = 8 +pkg syscall (darwin-amd64-cgo), const RTF_STATIC = 2048 +pkg syscall (darwin-amd64-cgo), const RTF_UP = 1 +pkg syscall (darwin-amd64-cgo), const RTF_WASCLONED = 131072 +pkg syscall (darwin-amd64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (darwin-amd64-cgo), const RTM_ADD = 1 +pkg syscall (darwin-amd64-cgo), const RTM_CHANGE = 3 +pkg syscall (darwin-amd64-cgo), const RTM_DELADDR = 13 +pkg syscall (darwin-amd64-cgo), const RTM_DELETE = 2 +pkg syscall (darwin-amd64-cgo), const RTM_DELMADDR = 16 +pkg syscall (darwin-amd64-cgo), const RTM_GET = 4 +pkg syscall (darwin-amd64-cgo), const RTM_GET2 = 20 +pkg syscall (darwin-amd64-cgo), const RTM_IFINFO = 14 +pkg syscall (darwin-amd64-cgo), const RTM_IFINFO2 = 18 +pkg syscall (darwin-amd64-cgo), const RTM_LOCK = 8 +pkg syscall (darwin-amd64-cgo), const RTM_LOSING = 5 +pkg syscall (darwin-amd64-cgo), const RTM_MISS = 7 +pkg syscall (darwin-amd64-cgo), const RTM_NEWADDR = 12 +pkg syscall (darwin-amd64-cgo), const RTM_NEWMADDR = 15 +pkg syscall (darwin-amd64-cgo), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-amd64-cgo), const RTM_OLDADD = 9 +pkg syscall (darwin-amd64-cgo), const RTM_OLDDEL = 10 +pkg syscall (darwin-amd64-cgo), const RTM_REDIRECT = 6 +pkg syscall (darwin-amd64-cgo), const RTM_RESOLVE = 11 +pkg syscall (darwin-amd64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-amd64-cgo), const RTM_VERSION = 5 +pkg syscall (darwin-amd64-cgo), const RTV_EXPIRE = 4 +pkg syscall (darwin-amd64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-amd64-cgo), const RTV_MTU = 1 +pkg syscall (darwin-amd64-cgo), const RTV_RPIPE = 8 +pkg syscall (darwin-amd64-cgo), const RTV_RTT = 64 +pkg syscall (darwin-amd64-cgo), const RTV_RTTVAR = 128 +pkg syscall (darwin-amd64-cgo), const RTV_SPIPE = 16 +pkg syscall (darwin-amd64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (darwin-amd64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-amd64-cgo), const RUSAGE_SELF = 0 +pkg syscall (darwin-amd64-cgo), const SCM_CREDS = 3 +pkg syscall (darwin-amd64-cgo), const SCM_RIGHTS = 1 +pkg syscall (darwin-amd64-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-amd64-cgo), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-amd64-cgo), const SIGBUS = 10 +pkg syscall (darwin-amd64-cgo), const SIGCHLD = 20 +pkg syscall (darwin-amd64-cgo), const SIGCONT = 19 +pkg syscall (darwin-amd64-cgo), const SIGEMT = 7 +pkg syscall (darwin-amd64-cgo), const SIGINFO = 29 +pkg syscall (darwin-amd64-cgo), const SIGIO = 23 +pkg syscall (darwin-amd64-cgo), const SIGIOT = 6 +pkg syscall (darwin-amd64-cgo), const SIGPROF = 27 +pkg syscall (darwin-amd64-cgo), const SIGSTOP = 17 +pkg syscall (darwin-amd64-cgo), const SIGSYS = 12 +pkg syscall (darwin-amd64-cgo), const SIGTSTP = 18 +pkg syscall (darwin-amd64-cgo), const SIGTTIN = 21 +pkg syscall (darwin-amd64-cgo), const SIGTTOU = 22 +pkg syscall (darwin-amd64-cgo), const SIGURG = 16 +pkg syscall (darwin-amd64-cgo), const SIGUSR1 = 30 +pkg syscall (darwin-amd64-cgo), const SIGUSR2 = 31 +pkg syscall (darwin-amd64-cgo), const SIGVTALRM = 26 +pkg syscall (darwin-amd64-cgo), const SIGWINCH = 28 +pkg syscall (darwin-amd64-cgo), const SIGXCPU = 24 +pkg syscall (darwin-amd64-cgo), const SIGXFSZ = 25 +pkg syscall (darwin-amd64-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-amd64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-amd64-cgo), const SIOCALIFADDR = 2165860637 +pkg syscall (darwin-amd64-cgo), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-amd64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (darwin-amd64-cgo), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-amd64-cgo), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-amd64-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-amd64-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-amd64-cgo), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-amd64-cgo), const SIOCDLIFADDR = 2165860639 +pkg syscall (darwin-amd64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (darwin-amd64-cgo), const SIOCGETSGCNT = 3222565404 +pkg syscall (darwin-amd64-cgo), const SIOCGETVIFCNT = 3222565403 +pkg syscall (darwin-amd64-cgo), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-amd64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-amd64-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-amd64-cgo), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-amd64-cgo), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-amd64-cgo), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-amd64-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-amd64-cgo), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-amd64-cgo), const SIOCGIFCONF = 3222038820 +pkg syscall (darwin-amd64-cgo), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-amd64-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-amd64-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-amd64-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-amd64-cgo), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-amd64-cgo), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-amd64-cgo), const SIOCGIFMEDIA = 3224135992 +pkg syscall (darwin-amd64-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-amd64-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-amd64-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-amd64-cgo), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-amd64-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-amd64-cgo), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-amd64-cgo), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-amd64-cgo), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-amd64-cgo), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-amd64-cgo), const SIOCGLIFADDR = 3239602462 +pkg syscall (darwin-amd64-cgo), const SIOCGLIFPHYADDR = 3239602499 +pkg syscall (darwin-amd64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-amd64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-amd64-cgo), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-amd64-cgo), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-amd64-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-amd64-cgo), const SIOCRSLVMULTI = 3222300987 +pkg syscall (darwin-amd64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (darwin-amd64-cgo), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-amd64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-amd64-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-amd64-cgo), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-amd64-cgo), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-amd64-cgo), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-amd64-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-amd64-cgo), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-amd64-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-amd64-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-amd64-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-amd64-cgo), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-amd64-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-amd64-cgo), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-amd64-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-amd64-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-amd64-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-amd64-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-amd64-cgo), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-amd64-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-amd64-cgo), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-amd64-cgo), const SIOCSLIFPHYADDR = 2165860674 +pkg syscall (darwin-amd64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-amd64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-amd64-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-amd64-cgo), const SOCK_RDM = 4 +pkg syscall (darwin-amd64-cgo), const SOL_SOCKET = 65535 +pkg syscall (darwin-amd64-cgo), const SOMAXCONN = 128 +pkg syscall (darwin-amd64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-amd64-cgo), const SO_BROADCAST = 32 +pkg syscall (darwin-amd64-cgo), const SO_DEBUG = 1 +pkg syscall (darwin-amd64-cgo), const SO_DONTROUTE = 16 +pkg syscall (darwin-amd64-cgo), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-amd64-cgo), const SO_ERROR = 4103 +pkg syscall (darwin-amd64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (darwin-amd64-cgo), const SO_LABEL = 4112 +pkg syscall (darwin-amd64-cgo), const SO_LINGER = 128 +pkg syscall (darwin-amd64-cgo), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-amd64-cgo), const SO_NKE = 4129 +pkg syscall (darwin-amd64-cgo), const SO_NOADDRERR = 4131 +pkg syscall (darwin-amd64-cgo), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-amd64-cgo), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-amd64-cgo), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-amd64-cgo), const SO_NREAD = 4128 +pkg syscall (darwin-amd64-cgo), const SO_NWRITE = 4132 +pkg syscall (darwin-amd64-cgo), const SO_OOBINLINE = 256 +pkg syscall (darwin-amd64-cgo), const SO_PEERLABEL = 4113 +pkg syscall (darwin-amd64-cgo), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-amd64-cgo), const SO_RCVBUF = 4098 +pkg syscall (darwin-amd64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-amd64-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-amd64-cgo), const SO_RESTRICTIONS = 4225 +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYIN = 1 +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYOUT = 2 +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYSET = 2147483648 +pkg syscall (darwin-amd64-cgo), const SO_REUSEADDR = 4 +pkg syscall (darwin-amd64-cgo), const SO_REUSEPORT = 512 +pkg syscall (darwin-amd64-cgo), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-amd64-cgo), const SO_SNDBUF = 4097 +pkg syscall (darwin-amd64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-amd64-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-amd64-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-amd64-cgo), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-amd64-cgo), const SO_TYPE = 4104 +pkg syscall (darwin-amd64-cgo), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-amd64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (darwin-amd64-cgo), const SO_WANTMORE = 16384 +pkg syscall (darwin-amd64-cgo), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-amd64-cgo), const SYS_ACCEPT = 30 +pkg syscall (darwin-amd64-cgo), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-amd64-cgo), const SYS_ACCESS = 33 +pkg syscall (darwin-amd64-cgo), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-amd64-cgo), const SYS_ACCT = 51 +pkg syscall (darwin-amd64-cgo), const SYS_ADD_PROFIL = 176 +pkg syscall (darwin-amd64-cgo), const SYS_ADJTIME = 140 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_READ = 318 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-amd64-cgo), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-amd64-cgo), const SYS_ATGETMSG = 207 +pkg syscall (darwin-amd64-cgo), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-amd64-cgo), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-amd64-cgo), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-amd64-cgo), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-amd64-cgo), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-amd64-cgo), const SYS_ATSOCKET = 206 +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT = 350 +pkg syscall (darwin-amd64-cgo), const SYS_AUDITCTL = 359 +pkg syscall (darwin-amd64-cgo), const SYS_AUDITON = 351 +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-amd64-cgo), const SYS_BIND = 104 +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-amd64-cgo), const SYS_CHDIR = 12 +pkg syscall (darwin-amd64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (darwin-amd64-cgo), const SYS_CHMOD = 15 +pkg syscall (darwin-amd64-cgo), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-amd64-cgo), const SYS_CHOWN = 16 +pkg syscall (darwin-amd64-cgo), const SYS_CHROOT = 61 +pkg syscall (darwin-amd64-cgo), const SYS_CHUD = 185 +pkg syscall (darwin-amd64-cgo), const SYS_CLOSE = 6 +pkg syscall (darwin-amd64-cgo), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-amd64-cgo), const SYS_CONNECT = 98 +pkg syscall (darwin-amd64-cgo), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-amd64-cgo), const SYS_COPYFILE = 227 +pkg syscall (darwin-amd64-cgo), const SYS_CSOPS = 169 +pkg syscall (darwin-amd64-cgo), const SYS_DELETE = 226 +pkg syscall (darwin-amd64-cgo), const SYS_DUP = 41 +pkg syscall (darwin-amd64-cgo), const SYS_DUP2 = 90 +pkg syscall (darwin-amd64-cgo), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-amd64-cgo), const SYS_EXECVE = 59 +pkg syscall (darwin-amd64-cgo), const SYS_EXIT = 1 +pkg syscall (darwin-amd64-cgo), const SYS_FCHDIR = 13 +pkg syscall (darwin-amd64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-amd64-cgo), const SYS_FCHMOD = 124 +pkg syscall (darwin-amd64-cgo), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-amd64-cgo), const SYS_FCHOWN = 123 +pkg syscall (darwin-amd64-cgo), const SYS_FCNTL = 92 +pkg syscall (darwin-amd64-cgo), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-amd64-cgo), const SYS_FDATASYNC = 187 +pkg syscall (darwin-amd64-cgo), const SYS_FFSCTL = 245 +pkg syscall (darwin-amd64-cgo), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-amd64-cgo), const SYS_FGETXATTR = 235 +pkg syscall (darwin-amd64-cgo), const SYS_FHOPEN = 248 +pkg syscall (darwin-amd64-cgo), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-amd64-cgo), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-amd64-cgo), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-amd64-cgo), const SYS_FLOCK = 131 +pkg syscall (darwin-amd64-cgo), const SYS_FORK = 2 +pkg syscall (darwin-amd64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (darwin-amd64-cgo), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-amd64-cgo), const SYS_FSCTL = 242 +pkg syscall (darwin-amd64-cgo), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-amd64-cgo), const SYS_FSETXATTR = 237 +pkg syscall (darwin-amd64-cgo), const SYS_FSGETPATH = 427 +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT = 189 +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT64 = 339 +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-amd64-cgo), const SYS_FSTATFS = 158 +pkg syscall (darwin-amd64-cgo), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-amd64-cgo), const SYS_FSTATV = 219 +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-amd64-cgo), const SYS_FSYNC = 95 +pkg syscall (darwin-amd64-cgo), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-amd64-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-amd64-cgo), const SYS_FUTIMES = 139 +pkg syscall (darwin-amd64-cgo), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-amd64-cgo), const SYS_GETAUDIT = 355 +pkg syscall (darwin-amd64-cgo), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-amd64-cgo), const SYS_GETAUID = 353 +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-amd64-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-amd64-cgo), const SYS_GETEGID = 43 +pkg syscall (darwin-amd64-cgo), const SYS_GETEUID = 25 +pkg syscall (darwin-amd64-cgo), const SYS_GETFH = 161 +pkg syscall (darwin-amd64-cgo), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-amd64-cgo), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-amd64-cgo), const SYS_GETGID = 47 +pkg syscall (darwin-amd64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (darwin-amd64-cgo), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-amd64-cgo), const SYS_GETITIMER = 86 +pkg syscall (darwin-amd64-cgo), const SYS_GETLCID = 395 +pkg syscall (darwin-amd64-cgo), const SYS_GETLOGIN = 49 +pkg syscall (darwin-amd64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-amd64-cgo), const SYS_GETPGID = 151 +pkg syscall (darwin-amd64-cgo), const SYS_GETPGRP = 81 +pkg syscall (darwin-amd64-cgo), const SYS_GETPID = 20 +pkg syscall (darwin-amd64-cgo), const SYS_GETPPID = 39 +pkg syscall (darwin-amd64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-amd64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-amd64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-amd64-cgo), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-amd64-cgo), const SYS_GETSID = 310 +pkg syscall (darwin-amd64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-amd64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-amd64-cgo), const SYS_GETTID = 286 +pkg syscall (darwin-amd64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-amd64-cgo), const SYS_GETUID = 24 +pkg syscall (darwin-amd64-cgo), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-amd64-cgo), const SYS_GETXATTR = 234 +pkg syscall (darwin-amd64-cgo), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-amd64-cgo), const SYS_INITGROUPS = 243 +pkg syscall (darwin-amd64-cgo), const SYS_IOCTL = 54 +pkg syscall (darwin-amd64-cgo), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-amd64-cgo), const SYS_ISSETUGID = 327 +pkg syscall (darwin-amd64-cgo), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-amd64-cgo), const SYS_KEVENT = 363 +pkg syscall (darwin-amd64-cgo), const SYS_KEVENT64 = 369 +pkg syscall (darwin-amd64-cgo), const SYS_KILL = 37 +pkg syscall (darwin-amd64-cgo), const SYS_KQUEUE = 362 +pkg syscall (darwin-amd64-cgo), const SYS_LCHOWN = 364 +pkg syscall (darwin-amd64-cgo), const SYS_LINK = 9 +pkg syscall (darwin-amd64-cgo), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-amd64-cgo), const SYS_LISTEN = 106 +pkg syscall (darwin-amd64-cgo), const SYS_LISTXATTR = 240 +pkg syscall (darwin-amd64-cgo), const SYS_LSEEK = 199 +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT = 190 +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT64 = 340 +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-amd64-cgo), const SYS_LSTATV = 218 +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-amd64-cgo), const SYS_MADVISE = 75 +pkg syscall (darwin-amd64-cgo), const SYS_MAXSYSCALL = 439 +pkg syscall (darwin-amd64-cgo), const SYS_MINCORE = 78 +pkg syscall (darwin-amd64-cgo), const SYS_MINHERIT = 250 +pkg syscall (darwin-amd64-cgo), const SYS_MKCOMPLEX = 216 +pkg syscall (darwin-amd64-cgo), const SYS_MKDIR = 136 +pkg syscall (darwin-amd64-cgo), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-amd64-cgo), const SYS_MKFIFO = 132 +pkg syscall (darwin-amd64-cgo), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-amd64-cgo), const SYS_MKNOD = 14 +pkg syscall (darwin-amd64-cgo), const SYS_MLOCK = 203 +pkg syscall (darwin-amd64-cgo), const SYS_MLOCKALL = 324 +pkg syscall (darwin-amd64-cgo), const SYS_MMAP = 197 +pkg syscall (darwin-amd64-cgo), const SYS_MODWATCH = 233 +pkg syscall (darwin-amd64-cgo), const SYS_MOUNT = 167 +pkg syscall (darwin-amd64-cgo), const SYS_MPROTECT = 74 +pkg syscall (darwin-amd64-cgo), const SYS_MSGCTL = 258 +pkg syscall (darwin-amd64-cgo), const SYS_MSGGET = 259 +pkg syscall (darwin-amd64-cgo), const SYS_MSGRCV = 261 +pkg syscall (darwin-amd64-cgo), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-amd64-cgo), const SYS_MSGSND = 260 +pkg syscall (darwin-amd64-cgo), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-amd64-cgo), const SYS_MSGSYS = 252 +pkg syscall (darwin-amd64-cgo), const SYS_MSYNC = 65 +pkg syscall (darwin-amd64-cgo), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-amd64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (darwin-amd64-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-amd64-cgo), const SYS_MUNMAP = 73 +pkg syscall (darwin-amd64-cgo), const SYS_NFSCLNT = 247 +pkg syscall (darwin-amd64-cgo), const SYS_NFSSVC = 155 +pkg syscall (darwin-amd64-cgo), const SYS_OPEN = 5 +pkg syscall (darwin-amd64-cgo), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-amd64-cgo), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-amd64-cgo), const SYS_PATHCONF = 191 +pkg syscall (darwin-amd64-cgo), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-amd64-cgo), const SYS_PID_RESUME = 434 +pkg syscall (darwin-amd64-cgo), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-amd64-cgo), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-amd64-cgo), const SYS_PIPE = 42 +pkg syscall (darwin-amd64-cgo), const SYS_POLL = 230 +pkg syscall (darwin-amd64-cgo), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-amd64-cgo), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-amd64-cgo), const SYS_PREAD = 153 +pkg syscall (darwin-amd64-cgo), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-amd64-cgo), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-amd64-cgo), const SYS_PROC_INFO = 336 +pkg syscall (darwin-amd64-cgo), const SYS_PROFIL = 44 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-amd64-cgo), const SYS_PTRACE = 26 +pkg syscall (darwin-amd64-cgo), const SYS_PWRITE = 154 +pkg syscall (darwin-amd64-cgo), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-amd64-cgo), const SYS_QUOTACTL = 165 +pkg syscall (darwin-amd64-cgo), const SYS_READ = 3 +pkg syscall (darwin-amd64-cgo), const SYS_READLINK = 58 +pkg syscall (darwin-amd64-cgo), const SYS_READV = 120 +pkg syscall (darwin-amd64-cgo), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-amd64-cgo), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-amd64-cgo), const SYS_REBOOT = 55 +pkg syscall (darwin-amd64-cgo), const SYS_RECVFROM = 29 +pkg syscall (darwin-amd64-cgo), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-amd64-cgo), const SYS_RECVMSG = 27 +pkg syscall (darwin-amd64-cgo), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-amd64-cgo), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-amd64-cgo), const SYS_RENAME = 128 +pkg syscall (darwin-amd64-cgo), const SYS_REVOKE = 56 +pkg syscall (darwin-amd64-cgo), const SYS_RMDIR = 137 +pkg syscall (darwin-amd64-cgo), const SYS_SEARCHFS = 225 +pkg syscall (darwin-amd64-cgo), const SYS_SELECT = 93 +pkg syscall (darwin-amd64-cgo), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-amd64-cgo), const SYS_SEMCTL = 254 +pkg syscall (darwin-amd64-cgo), const SYS_SEMGET = 255 +pkg syscall (darwin-amd64-cgo), const SYS_SEMOP = 256 +pkg syscall (darwin-amd64-cgo), const SYS_SEMSYS = 251 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_INIT = 275 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_POST = 273 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-amd64-cgo), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-amd64-cgo), const SYS_SENDFILE = 337 +pkg syscall (darwin-amd64-cgo), const SYS_SENDMSG = 28 +pkg syscall (darwin-amd64-cgo), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-amd64-cgo), const SYS_SENDTO = 133 +pkg syscall (darwin-amd64-cgo), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-amd64-cgo), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-amd64-cgo), const SYS_SETAUDIT = 356 +pkg syscall (darwin-amd64-cgo), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-amd64-cgo), const SYS_SETAUID = 354 +pkg syscall (darwin-amd64-cgo), const SYS_SETEGID = 182 +pkg syscall (darwin-amd64-cgo), const SYS_SETEUID = 183 +pkg syscall (darwin-amd64-cgo), const SYS_SETGID = 181 +pkg syscall (darwin-amd64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (darwin-amd64-cgo), const SYS_SETITIMER = 83 +pkg syscall (darwin-amd64-cgo), const SYS_SETLCID = 394 +pkg syscall (darwin-amd64-cgo), const SYS_SETLOGIN = 50 +pkg syscall (darwin-amd64-cgo), const SYS_SETPGID = 82 +pkg syscall (darwin-amd64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-amd64-cgo), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-amd64-cgo), const SYS_SETREGID = 127 +pkg syscall (darwin-amd64-cgo), const SYS_SETREUID = 126 +pkg syscall (darwin-amd64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-amd64-cgo), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-amd64-cgo), const SYS_SETSID = 147 +pkg syscall (darwin-amd64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-amd64-cgo), const SYS_SETTID = 285 +pkg syscall (darwin-amd64-cgo), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-amd64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-amd64-cgo), const SYS_SETUID = 23 +pkg syscall (darwin-amd64-cgo), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-amd64-cgo), const SYS_SETXATTR = 236 +pkg syscall (darwin-amd64-cgo), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-amd64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-amd64-cgo), const SYS_SHMAT = 262 +pkg syscall (darwin-amd64-cgo), const SYS_SHMCTL = 263 +pkg syscall (darwin-amd64-cgo), const SYS_SHMDT = 264 +pkg syscall (darwin-amd64-cgo), const SYS_SHMGET = 265 +pkg syscall (darwin-amd64-cgo), const SYS_SHMSYS = 253 +pkg syscall (darwin-amd64-cgo), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-amd64-cgo), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-amd64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-amd64-cgo), const SYS_SIGACTION = 46 +pkg syscall (darwin-amd64-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-amd64-cgo), const SYS_SIGPENDING = 52 +pkg syscall (darwin-amd64-cgo), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-amd64-cgo), const SYS_SIGRETURN = 184 +pkg syscall (darwin-amd64-cgo), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-amd64-cgo), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-amd64-cgo), const SYS_SOCKET = 97 +pkg syscall (darwin-amd64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-amd64-cgo), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-amd64-cgo), const SYS_STAT = 188 +pkg syscall (darwin-amd64-cgo), const SYS_STAT64 = 338 +pkg syscall (darwin-amd64-cgo), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-amd64-cgo), const SYS_STATFS = 157 +pkg syscall (darwin-amd64-cgo), const SYS_STATFS64 = 345 +pkg syscall (darwin-amd64-cgo), const SYS_STATV = 217 +pkg syscall (darwin-amd64-cgo), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-amd64-cgo), const SYS_SWAPON = 85 +pkg syscall (darwin-amd64-cgo), const SYS_SYMLINK = 57 +pkg syscall (darwin-amd64-cgo), const SYS_SYNC = 36 +pkg syscall (darwin-amd64-cgo), const SYS_SYSCALL = 0 +pkg syscall (darwin-amd64-cgo), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-amd64-cgo), const SYS_TRUNCATE = 200 +pkg syscall (darwin-amd64-cgo), const SYS_UMASK = 60 +pkg syscall (darwin-amd64-cgo), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-amd64-cgo), const SYS_UNDELETE = 205 +pkg syscall (darwin-amd64-cgo), const SYS_UNLINK = 10 +pkg syscall (darwin-amd64-cgo), const SYS_UNMOUNT = 159 +pkg syscall (darwin-amd64-cgo), const SYS_UTIMES = 138 +pkg syscall (darwin-amd64-cgo), const SYS_VFORK = 66 +pkg syscall (darwin-amd64-cgo), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-amd64-cgo), const SYS_WAIT4 = 7 +pkg syscall (darwin-amd64-cgo), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-amd64-cgo), const SYS_WAITEVENT = 232 +pkg syscall (darwin-amd64-cgo), const SYS_WAITID = 173 +pkg syscall (darwin-amd64-cgo), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-amd64-cgo), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-amd64-cgo), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-amd64-cgo), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-amd64-cgo), const SYS_WRITE = 4 +pkg syscall (darwin-amd64-cgo), const SYS_WRITEV = 121 +pkg syscall (darwin-amd64-cgo), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-amd64-cgo), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-amd64-cgo), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-amd64-cgo), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-amd64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-amd64-cgo), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-amd64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-amd64-cgo), const SYS___SIGWAIT = 330 +pkg syscall (darwin-amd64-cgo), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-amd64-cgo), const SYS___SYSCTL = 202 +pkg syscall (darwin-amd64-cgo), const S_IEXEC = 64 +pkg syscall (darwin-amd64-cgo), const S_IFMT = 61440 +pkg syscall (darwin-amd64-cgo), const S_IFWHT = 57344 +pkg syscall (darwin-amd64-cgo), const S_IREAD = 256 +pkg syscall (darwin-amd64-cgo), const S_IRGRP = 32 +pkg syscall (darwin-amd64-cgo), const S_IROTH = 4 +pkg syscall (darwin-amd64-cgo), const S_IRWXG = 56 +pkg syscall (darwin-amd64-cgo), const S_IRWXO = 7 +pkg syscall (darwin-amd64-cgo), const S_IRWXU = 448 +pkg syscall (darwin-amd64-cgo), const S_ISTXT = 512 +pkg syscall (darwin-amd64-cgo), const S_IWGRP = 16 +pkg syscall (darwin-amd64-cgo), const S_IWOTH = 2 +pkg syscall (darwin-amd64-cgo), const S_IWRITE = 128 +pkg syscall (darwin-amd64-cgo), const S_IXGRP = 8 +pkg syscall (darwin-amd64-cgo), const S_IXOTH = 1 +pkg syscall (darwin-amd64-cgo), const SizeofBpfHdr = 20 +pkg syscall (darwin-amd64-cgo), const SizeofBpfInsn = 8 +pkg syscall (darwin-amd64-cgo), const SizeofBpfProgram = 16 +pkg syscall (darwin-amd64-cgo), const SizeofBpfStat = 8 +pkg syscall (darwin-amd64-cgo), const SizeofBpfVersion = 4 +pkg syscall (darwin-amd64-cgo), const SizeofCmsghdr = 12 +pkg syscall (darwin-amd64-cgo), const SizeofIPMreq = 8 +pkg syscall (darwin-amd64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-amd64-cgo), const SizeofIfData = 96 +pkg syscall (darwin-amd64-cgo), const SizeofIfMsghdr = 112 +pkg syscall (darwin-amd64-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-amd64-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-amd64-cgo), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-amd64-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-amd64-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-amd64-cgo), const SizeofLinger = 8 +pkg syscall (darwin-amd64-cgo), const SizeofMsghdr = 48 +pkg syscall (darwin-amd64-cgo), const SizeofRtMetrics = 56 +pkg syscall (darwin-amd64-cgo), const SizeofRtMsghdr = 92 +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-amd64-cgo), const TCIFLUSH = 1 +pkg syscall (darwin-amd64-cgo), const TCIFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TCIOFLUSH = 3 +pkg syscall (darwin-amd64-cgo), const TCIOFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TCOFLUSH = 2 +pkg syscall (darwin-amd64-cgo), const TCOFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-amd64-cgo), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-amd64-cgo), const TCP_MAXHLEN = 60 +pkg syscall (darwin-amd64-cgo), const TCP_MAXOLEN = 40 +pkg syscall (darwin-amd64-cgo), const TCP_MAXSEG = 2 +pkg syscall (darwin-amd64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (darwin-amd64-cgo), const TCP_MAX_SACK = 3 +pkg syscall (darwin-amd64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-amd64-cgo), const TCP_MINMSS = 216 +pkg syscall (darwin-amd64-cgo), const TCP_MINMSSOVERLOAD = 1000 +pkg syscall (darwin-amd64-cgo), const TCP_MSS = 512 +pkg syscall (darwin-amd64-cgo), const TCP_NOOPT = 8 +pkg syscall (darwin-amd64-cgo), const TCP_NOPUSH = 4 +pkg syscall (darwin-amd64-cgo), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-amd64-cgo), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-amd64-cgo), const TCSAFLUSH = 2 +pkg syscall (darwin-amd64-cgo), const TCSAFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCCBRK = 536900730 +pkg syscall (darwin-amd64-cgo), const TIOCCDTR = 536900728 +pkg syscall (darwin-amd64-cgo), const TIOCCONS = 2147775586 +pkg syscall (darwin-amd64-cgo), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (darwin-amd64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (darwin-amd64-cgo), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-amd64-cgo), const TIOCEXCL = 536900621 +pkg syscall (darwin-amd64-cgo), const TIOCEXT = 2147775584 +pkg syscall (darwin-amd64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-amd64-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-amd64-cgo), const TIOCGETA = 1078490131 +pkg syscall (darwin-amd64-cgo), const TIOCGETD = 1074033690 +pkg syscall (darwin-amd64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-amd64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-amd64-cgo), const TIOCIXOFF = 536900736 +pkg syscall (darwin-amd64-cgo), const TIOCIXON = 536900737 +pkg syscall (darwin-amd64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (darwin-amd64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (darwin-amd64-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-amd64-cgo), const TIOCMGET = 1074033770 +pkg syscall (darwin-amd64-cgo), const TIOCMODG = 1074033667 +pkg syscall (darwin-amd64-cgo), const TIOCMODS = 2147775492 +pkg syscall (darwin-amd64-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-amd64-cgo), const TIOCMSET = 2147775597 +pkg syscall (darwin-amd64-cgo), const TIOCM_CAR = 64 +pkg syscall (darwin-amd64-cgo), const TIOCM_CD = 64 +pkg syscall (darwin-amd64-cgo), const TIOCM_CTS = 32 +pkg syscall (darwin-amd64-cgo), const TIOCM_DSR = 256 +pkg syscall (darwin-amd64-cgo), const TIOCM_DTR = 2 +pkg syscall (darwin-amd64-cgo), const TIOCM_LE = 1 +pkg syscall (darwin-amd64-cgo), const TIOCM_RI = 128 +pkg syscall (darwin-amd64-cgo), const TIOCM_RNG = 128 +pkg syscall (darwin-amd64-cgo), const TIOCM_RTS = 4 +pkg syscall (darwin-amd64-cgo), const TIOCM_SR = 16 +pkg syscall (darwin-amd64-cgo), const TIOCM_ST = 8 +pkg syscall (darwin-amd64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (darwin-amd64-cgo), const TIOCNXCL = 536900622 +pkg syscall (darwin-amd64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-amd64-cgo), const TIOCPKT = 2147775600 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_START = 8 +pkg syscall (darwin-amd64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (darwin-amd64-cgo), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-amd64-cgo), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-amd64-cgo), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-amd64-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-amd64-cgo), const TIOCSBRK = 536900731 +pkg syscall (darwin-amd64-cgo), const TIOCSCONS = 536900707 +pkg syscall (darwin-amd64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (darwin-amd64-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-amd64-cgo), const TIOCSDTR = 536900729 +pkg syscall (darwin-amd64-cgo), const TIOCSETA = 2152231956 +pkg syscall (darwin-amd64-cgo), const TIOCSETAF = 2152231958 +pkg syscall (darwin-amd64-cgo), const TIOCSETAW = 2152231957 +pkg syscall (darwin-amd64-cgo), const TIOCSETD = 2147775515 +pkg syscall (darwin-amd64-cgo), const TIOCSIG = 536900703 +pkg syscall (darwin-amd64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-amd64-cgo), const TIOCSTART = 536900718 +pkg syscall (darwin-amd64-cgo), const TIOCSTAT = 536900709 +pkg syscall (darwin-amd64-cgo), const TIOCSTI = 2147578994 +pkg syscall (darwin-amd64-cgo), const TIOCSTOP = 536900719 +pkg syscall (darwin-amd64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-amd64-cgo), const TIOCTIMESTAMP = 1074820185 +pkg syscall (darwin-amd64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-amd64-cgo), const TOSTOP = 4194304 +pkg syscall (darwin-amd64-cgo), const TOSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const VDISCARD = 15 +pkg syscall (darwin-amd64-cgo), const VDISCARD ideal-int +pkg syscall (darwin-amd64-cgo), const VDSUSP = 11 +pkg syscall (darwin-amd64-cgo), const VDSUSP ideal-int +pkg syscall (darwin-amd64-cgo), const VEOF = 0 +pkg syscall (darwin-amd64-cgo), const VEOF ideal-int +pkg syscall (darwin-amd64-cgo), const VEOL = 1 +pkg syscall (darwin-amd64-cgo), const VEOL ideal-int +pkg syscall (darwin-amd64-cgo), const VEOL2 = 2 +pkg syscall (darwin-amd64-cgo), const VEOL2 ideal-int +pkg syscall (darwin-amd64-cgo), const VERASE = 3 +pkg syscall (darwin-amd64-cgo), const VERASE ideal-int +pkg syscall (darwin-amd64-cgo), const VINTR = 8 +pkg syscall (darwin-amd64-cgo), const VINTR ideal-int +pkg syscall (darwin-amd64-cgo), const VKILL = 5 +pkg syscall (darwin-amd64-cgo), const VKILL ideal-int +pkg syscall (darwin-amd64-cgo), const VLNEXT = 14 +pkg syscall (darwin-amd64-cgo), const VLNEXT ideal-int +pkg syscall (darwin-amd64-cgo), const VMIN = 16 +pkg syscall (darwin-amd64-cgo), const VMIN ideal-int +pkg syscall (darwin-amd64-cgo), const VQUIT = 9 +pkg syscall (darwin-amd64-cgo), const VQUIT ideal-int +pkg syscall (darwin-amd64-cgo), const VREPRINT = 6 +pkg syscall (darwin-amd64-cgo), const VREPRINT ideal-int +pkg syscall (darwin-amd64-cgo), const VSTART = 12 +pkg syscall (darwin-amd64-cgo), const VSTART ideal-int +pkg syscall (darwin-amd64-cgo), const VSTATUS = 18 +pkg syscall (darwin-amd64-cgo), const VSTATUS ideal-int +pkg syscall (darwin-amd64-cgo), const VSTOP = 13 +pkg syscall (darwin-amd64-cgo), const VSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const VSUSP = 10 +pkg syscall (darwin-amd64-cgo), const VSUSP ideal-int +pkg syscall (darwin-amd64-cgo), const VT0 = 0 +pkg syscall (darwin-amd64-cgo), const VT0 ideal-int +pkg syscall (darwin-amd64-cgo), const VT1 = 65536 +pkg syscall (darwin-amd64-cgo), const VT1 ideal-int +pkg syscall (darwin-amd64-cgo), const VTDLY = 65536 +pkg syscall (darwin-amd64-cgo), const VTDLY ideal-int +pkg syscall (darwin-amd64-cgo), const VTIME = 17 +pkg syscall (darwin-amd64-cgo), const VTIME ideal-int +pkg syscall (darwin-amd64-cgo), const VWERASE = 4 +pkg syscall (darwin-amd64-cgo), const VWERASE ideal-int +pkg syscall (darwin-amd64-cgo), const WCONTINUED = 16 +pkg syscall (darwin-amd64-cgo), const WCOREFLAG = 128 +pkg syscall (darwin-amd64-cgo), const WEXITED = 4 +pkg syscall (darwin-amd64-cgo), const WNOHANG = 1 +pkg syscall (darwin-amd64-cgo), const WNOWAIT = 32 +pkg syscall (darwin-amd64-cgo), const WORDSIZE = 64 +pkg syscall (darwin-amd64-cgo), const WSTOPPED = 8 +pkg syscall (darwin-amd64-cgo), const WUNTRACED = 2 +pkg syscall (darwin-amd64-cgo), func Fchflags(int, int) error +pkg syscall (darwin-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-amd64-cgo), type Inet4Pktinfo struct +pkg syscall (darwin-amd64-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-amd64-cgo), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-amd64-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-amd64-cgo), type Termios struct +pkg syscall (darwin-amd64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-amd64-cgo), type Termios struct, Cflag uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Iflag uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Ispeed uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Lflag uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Oflag uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Ospeed uint64 +pkg syscall (darwin-amd64-cgo), type Termios struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-386), const AF_APPLETALK = 16 +pkg syscall (freebsd-386), const AF_ARP = 35 +pkg syscall (freebsd-386), const AF_ATM = 30 +pkg syscall (freebsd-386), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-386), const AF_CCITT = 10 +pkg syscall (freebsd-386), const AF_CHAOS = 5 +pkg syscall (freebsd-386), const AF_CNT = 21 +pkg syscall (freebsd-386), const AF_COIP = 20 +pkg syscall (freebsd-386), const AF_DATAKIT = 9 +pkg syscall (freebsd-386), const AF_DECnet = 12 +pkg syscall (freebsd-386), const AF_DLI = 13 +pkg syscall (freebsd-386), const AF_E164 = 26 +pkg syscall (freebsd-386), const AF_ECMA = 8 +pkg syscall (freebsd-386), const AF_HYLINK = 15 +pkg syscall (freebsd-386), const AF_IEEE80211 = 37 +pkg syscall (freebsd-386), const AF_IMPLINK = 3 +pkg syscall (freebsd-386), const AF_INET6 = 28 +pkg syscall (freebsd-386), const AF_IPX = 23 +pkg syscall (freebsd-386), const AF_ISDN = 26 +pkg syscall (freebsd-386), const AF_ISO = 7 +pkg syscall (freebsd-386), const AF_LAT = 14 +pkg syscall (freebsd-386), const AF_LINK = 18 +pkg syscall (freebsd-386), const AF_LOCAL = 1 +pkg syscall (freebsd-386), const AF_MAX = 38 +pkg syscall (freebsd-386), const AF_NATM = 29 +pkg syscall (freebsd-386), const AF_NETBIOS = 6 +pkg syscall (freebsd-386), const AF_NETGRAPH = 32 +pkg syscall (freebsd-386), const AF_OSI = 7 +pkg syscall (freebsd-386), const AF_PUP = 4 +pkg syscall (freebsd-386), const AF_ROUTE = 17 +pkg syscall (freebsd-386), const AF_SCLUSTER = 34 +pkg syscall (freebsd-386), const AF_SIP = 24 +pkg syscall (freebsd-386), const AF_SLOW = 33 +pkg syscall (freebsd-386), const AF_SNA = 11 +pkg syscall (freebsd-386), const AF_VENDOR00 = 39 +pkg syscall (freebsd-386), const AF_VENDOR01 = 41 +pkg syscall (freebsd-386), const AF_VENDOR02 = 43 +pkg syscall (freebsd-386), const AF_VENDOR03 = 45 +pkg syscall (freebsd-386), const AF_VENDOR04 = 47 +pkg syscall (freebsd-386), const AF_VENDOR05 = 49 +pkg syscall (freebsd-386), const AF_VENDOR06 = 51 +pkg syscall (freebsd-386), const AF_VENDOR07 = 53 +pkg syscall (freebsd-386), const AF_VENDOR08 = 55 +pkg syscall (freebsd-386), const AF_VENDOR09 = 57 +pkg syscall (freebsd-386), const AF_VENDOR10 = 59 +pkg syscall (freebsd-386), const AF_VENDOR11 = 61 +pkg syscall (freebsd-386), const AF_VENDOR12 = 63 +pkg syscall (freebsd-386), const AF_VENDOR13 = 65 +pkg syscall (freebsd-386), const AF_VENDOR14 = 67 +pkg syscall (freebsd-386), const AF_VENDOR15 = 69 +pkg syscall (freebsd-386), const AF_VENDOR16 = 71 +pkg syscall (freebsd-386), const AF_VENDOR17 = 73 +pkg syscall (freebsd-386), const AF_VENDOR18 = 75 +pkg syscall (freebsd-386), const AF_VENDOR19 = 77 +pkg syscall (freebsd-386), const AF_VENDOR20 = 79 +pkg syscall (freebsd-386), const AF_VENDOR21 = 81 +pkg syscall (freebsd-386), const AF_VENDOR22 = 83 +pkg syscall (freebsd-386), const AF_VENDOR23 = 85 +pkg syscall (freebsd-386), const AF_VENDOR24 = 87 +pkg syscall (freebsd-386), const AF_VENDOR25 = 89 +pkg syscall (freebsd-386), const AF_VENDOR26 = 91 +pkg syscall (freebsd-386), const AF_VENDOR27 = 93 +pkg syscall (freebsd-386), const AF_VENDOR28 = 95 +pkg syscall (freebsd-386), const AF_VENDOR29 = 97 +pkg syscall (freebsd-386), const AF_VENDOR30 = 99 +pkg syscall (freebsd-386), const AF_VENDOR31 = 101 +pkg syscall (freebsd-386), const AF_VENDOR32 = 103 +pkg syscall (freebsd-386), const AF_VENDOR33 = 105 +pkg syscall (freebsd-386), const AF_VENDOR34 = 107 +pkg syscall (freebsd-386), const AF_VENDOR35 = 109 +pkg syscall (freebsd-386), const AF_VENDOR36 = 111 +pkg syscall (freebsd-386), const AF_VENDOR37 = 113 +pkg syscall (freebsd-386), const AF_VENDOR38 = 115 +pkg syscall (freebsd-386), const AF_VENDOR39 = 117 +pkg syscall (freebsd-386), const AF_VENDOR40 = 119 +pkg syscall (freebsd-386), const AF_VENDOR41 = 121 +pkg syscall (freebsd-386), const AF_VENDOR42 = 123 +pkg syscall (freebsd-386), const AF_VENDOR43 = 125 +pkg syscall (freebsd-386), const AF_VENDOR44 = 127 +pkg syscall (freebsd-386), const AF_VENDOR45 = 129 +pkg syscall (freebsd-386), const AF_VENDOR46 = 131 +pkg syscall (freebsd-386), const AF_VENDOR47 = 133 +pkg syscall (freebsd-386), const B0 = 0 +pkg syscall (freebsd-386), const B0 ideal-int +pkg syscall (freebsd-386), const B110 = 110 +pkg syscall (freebsd-386), const B110 ideal-int +pkg syscall (freebsd-386), const B115200 = 115200 +pkg syscall (freebsd-386), const B115200 ideal-int +pkg syscall (freebsd-386), const B1200 = 1200 +pkg syscall (freebsd-386), const B1200 ideal-int +pkg syscall (freebsd-386), const B134 = 134 +pkg syscall (freebsd-386), const B134 ideal-int +pkg syscall (freebsd-386), const B14400 = 14400 +pkg syscall (freebsd-386), const B14400 ideal-int +pkg syscall (freebsd-386), const B150 = 150 +pkg syscall (freebsd-386), const B150 ideal-int +pkg syscall (freebsd-386), const B1800 = 1800 +pkg syscall (freebsd-386), const B1800 ideal-int +pkg syscall (freebsd-386), const B19200 = 19200 +pkg syscall (freebsd-386), const B19200 ideal-int +pkg syscall (freebsd-386), const B200 = 200 +pkg syscall (freebsd-386), const B200 ideal-int +pkg syscall (freebsd-386), const B230400 = 230400 +pkg syscall (freebsd-386), const B230400 ideal-int +pkg syscall (freebsd-386), const B2400 = 2400 +pkg syscall (freebsd-386), const B2400 ideal-int +pkg syscall (freebsd-386), const B28800 = 28800 +pkg syscall (freebsd-386), const B28800 ideal-int +pkg syscall (freebsd-386), const B300 = 300 +pkg syscall (freebsd-386), const B300 ideal-int +pkg syscall (freebsd-386), const B38400 = 38400 +pkg syscall (freebsd-386), const B38400 ideal-int +pkg syscall (freebsd-386), const B460800 = 460800 +pkg syscall (freebsd-386), const B460800 ideal-int +pkg syscall (freebsd-386), const B4800 = 4800 +pkg syscall (freebsd-386), const B4800 ideal-int +pkg syscall (freebsd-386), const B50 = 50 +pkg syscall (freebsd-386), const B50 ideal-int +pkg syscall (freebsd-386), const B57600 = 57600 +pkg syscall (freebsd-386), const B57600 ideal-int +pkg syscall (freebsd-386), const B600 = 600 +pkg syscall (freebsd-386), const B600 ideal-int +pkg syscall (freebsd-386), const B7200 = 7200 +pkg syscall (freebsd-386), const B7200 ideal-int +pkg syscall (freebsd-386), const B75 = 75 +pkg syscall (freebsd-386), const B75 ideal-int +pkg syscall (freebsd-386), const B76800 = 76800 +pkg syscall (freebsd-386), const B76800 ideal-int +pkg syscall (freebsd-386), const B921600 = 921600 +pkg syscall (freebsd-386), const B921600 ideal-int +pkg syscall (freebsd-386), const B9600 = 9600 +pkg syscall (freebsd-386), const B9600 ideal-int +pkg syscall (freebsd-386), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-386), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-386), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-386), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-386), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-386), const BIOCGDLTLIST = 3221766777 +pkg syscall (freebsd-386), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-386), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-386), const BIOCGETZMAX = 1074020991 +pkg syscall (freebsd-386), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-386), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-386), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (freebsd-386), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-386), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-386), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-386), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-386), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-386), const BIOCLOCK = 536887930 +pkg syscall (freebsd-386), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-386), const BIOCROTZBUF = 1074545280 +pkg syscall (freebsd-386), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-386), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-386), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-386), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-386), const BIOCSETF = 2148024935 +pkg syscall (freebsd-386), const BIOCSETFNR = 2148024962 +pkg syscall (freebsd-386), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-386), const BIOCSETWF = 2148024955 +pkg syscall (freebsd-386), const BIOCSETZBUF = 2148287105 +pkg syscall (freebsd-386), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-386), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-386), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (freebsd-386), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-386), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-386), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-386), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-386), const BPF_A = 16 +pkg syscall (freebsd-386), const BPF_ABS = 32 +pkg syscall (freebsd-386), const BPF_ADD = 0 +pkg syscall (freebsd-386), const BPF_ALIGNMENT = 4 +pkg syscall (freebsd-386), const BPF_ALU = 4 +pkg syscall (freebsd-386), const BPF_AND = 80 +pkg syscall (freebsd-386), const BPF_B = 16 +pkg syscall (freebsd-386), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-386), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-386), const BPF_DIV = 48 +pkg syscall (freebsd-386), const BPF_H = 8 +pkg syscall (freebsd-386), const BPF_IMM = 0 +pkg syscall (freebsd-386), const BPF_IND = 64 +pkg syscall (freebsd-386), const BPF_JA = 0 +pkg syscall (freebsd-386), const BPF_JEQ = 16 +pkg syscall (freebsd-386), const BPF_JGE = 48 +pkg syscall (freebsd-386), const BPF_JGT = 32 +pkg syscall (freebsd-386), const BPF_JMP = 5 +pkg syscall (freebsd-386), const BPF_JSET = 64 +pkg syscall (freebsd-386), const BPF_K = 0 +pkg syscall (freebsd-386), const BPF_LD = 0 +pkg syscall (freebsd-386), const BPF_LDX = 1 +pkg syscall (freebsd-386), const BPF_LEN = 128 +pkg syscall (freebsd-386), const BPF_LSH = 96 +pkg syscall (freebsd-386), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-386), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-386), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-386), const BPF_MEM = 96 +pkg syscall (freebsd-386), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-386), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-386), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-386), const BPF_MISC = 7 +pkg syscall (freebsd-386), const BPF_MSH = 160 +pkg syscall (freebsd-386), const BPF_MUL = 32 +pkg syscall (freebsd-386), const BPF_NEG = 128 +pkg syscall (freebsd-386), const BPF_OR = 64 +pkg syscall (freebsd-386), const BPF_RELEASE = 199606 +pkg syscall (freebsd-386), const BPF_RET = 6 +pkg syscall (freebsd-386), const BPF_RSH = 112 +pkg syscall (freebsd-386), const BPF_ST = 2 +pkg syscall (freebsd-386), const BPF_STX = 3 +pkg syscall (freebsd-386), const BPF_SUB = 16 +pkg syscall (freebsd-386), const BPF_TAX = 0 +pkg syscall (freebsd-386), const BPF_TXA = 128 +pkg syscall (freebsd-386), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-386), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-386), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-386), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-386), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-386), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_FAST = 256 +pkg syscall (freebsd-386), const BPF_T_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-386), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-386), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-386), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-386), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-386), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-386), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-386), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-386), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-386), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-386), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-386), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-386), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-386), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-386), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-386), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-386), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-386), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386), const BPF_T_NONE = 3 +pkg syscall (freebsd-386), const BPF_T_NONE ideal-int +pkg syscall (freebsd-386), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-386), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-386), const BPF_W = 0 +pkg syscall (freebsd-386), const BPF_X = 8 +pkg syscall (freebsd-386), const BRKINT = 2 +pkg syscall (freebsd-386), const BRKINT ideal-int +pkg syscall (freebsd-386), const CFLUSH = 15 +pkg syscall (freebsd-386), const CFLUSH ideal-int +pkg syscall (freebsd-386), const CLOCAL = 32768 +pkg syscall (freebsd-386), const CLOCAL ideal-int +pkg syscall (freebsd-386), const CREAD = 2048 +pkg syscall (freebsd-386), const CREAD ideal-int +pkg syscall (freebsd-386), const CS5 = 0 +pkg syscall (freebsd-386), const CS5 ideal-int +pkg syscall (freebsd-386), const CS6 = 256 +pkg syscall (freebsd-386), const CS6 ideal-int +pkg syscall (freebsd-386), const CS7 = 512 +pkg syscall (freebsd-386), const CS7 ideal-int +pkg syscall (freebsd-386), const CS8 = 768 +pkg syscall (freebsd-386), const CS8 ideal-int +pkg syscall (freebsd-386), const CSIZE = 768 +pkg syscall (freebsd-386), const CSIZE ideal-int +pkg syscall (freebsd-386), const CSTART = 17 +pkg syscall (freebsd-386), const CSTART ideal-int +pkg syscall (freebsd-386), const CSTATUS = 20 +pkg syscall (freebsd-386), const CSTATUS ideal-int +pkg syscall (freebsd-386), const CSTOP = 19 +pkg syscall (freebsd-386), const CSTOP ideal-int +pkg syscall (freebsd-386), const CSTOPB = 1024 +pkg syscall (freebsd-386), const CSTOPB ideal-int +pkg syscall (freebsd-386), const CSUSP = 26 +pkg syscall (freebsd-386), const CSUSP ideal-int +pkg syscall (freebsd-386), const CTL_MAXNAME = 24 +pkg syscall (freebsd-386), const CTL_NET = 4 +pkg syscall (freebsd-386), const DLT_A429 = 184 +pkg syscall (freebsd-386), const DLT_A653_ICM = 185 +pkg syscall (freebsd-386), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-386), const DLT_AOS = 222 +pkg syscall (freebsd-386), const DLT_AOS ideal-int +pkg syscall (freebsd-386), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-386), const DLT_ARCNET = 7 +pkg syscall (freebsd-386), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-386), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-386), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-386), const DLT_AURORA = 126 +pkg syscall (freebsd-386), const DLT_AX25 = 3 +pkg syscall (freebsd-386), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-386), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-386), const DLT_CAN20B = 190 +pkg syscall (freebsd-386), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-386), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-386), const DLT_CHAOS = 5 +pkg syscall (freebsd-386), const DLT_CHDLC = 104 +pkg syscall (freebsd-386), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-386), const DLT_C_HDLC = 104 +pkg syscall (freebsd-386), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-386), const DLT_DBUS = 231 +pkg syscall (freebsd-386), const DLT_DBUS ideal-int +pkg syscall (freebsd-386), const DLT_DECT = 221 +pkg syscall (freebsd-386), const DLT_DECT ideal-int +pkg syscall (freebsd-386), const DLT_DOCSIS = 143 +pkg syscall (freebsd-386), const DLT_DVB_CI = 235 +pkg syscall (freebsd-386), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-386), const DLT_ECONET = 115 +pkg syscall (freebsd-386), const DLT_EN10MB = 1 +pkg syscall (freebsd-386), const DLT_EN3MB = 2 +pkg syscall (freebsd-386), const DLT_ENC = 109 +pkg syscall (freebsd-386), const DLT_ERF = 197 +pkg syscall (freebsd-386), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-386), const DLT_ERF_POS = 176 +pkg syscall (freebsd-386), const DLT_FC_2 = 224 +pkg syscall (freebsd-386), const DLT_FC_2 ideal-int +pkg syscall (freebsd-386), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-386), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-386), const DLT_FDDI = 10 +pkg syscall (freebsd-386), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-386), const DLT_FRELAY = 107 +pkg syscall (freebsd-386), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-386), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-386), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-386), const DLT_GPF_F = 171 +pkg syscall (freebsd-386), const DLT_GPF_T = 170 +pkg syscall (freebsd-386), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-386), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-386), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-386), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-386), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-386), const DLT_HHDLC = 121 +pkg syscall (freebsd-386), const DLT_IBM_SN = 146 +pkg syscall (freebsd-386), const DLT_IBM_SP = 145 +pkg syscall (freebsd-386), const DLT_IEEE802 = 6 +pkg syscall (freebsd-386), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-386), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-386), const DLT_IPFILTER = 116 +pkg syscall (freebsd-386), const DLT_IPMB = 199 +pkg syscall (freebsd-386), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-386), const DLT_IPNET = 226 +pkg syscall (freebsd-386), const DLT_IPNET ideal-int +pkg syscall (freebsd-386), const DLT_IPOIB = 242 +pkg syscall (freebsd-386), const DLT_IPOIB ideal-int +pkg syscall (freebsd-386), const DLT_IPV4 = 228 +pkg syscall (freebsd-386), const DLT_IPV4 ideal-int +pkg syscall (freebsd-386), const DLT_IPV6 = 229 +pkg syscall (freebsd-386), const DLT_IPV6 ideal-int +pkg syscall (freebsd-386), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-386), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-386), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-386), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-386), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-386), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-386), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-386), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-386), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-386), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-386), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-386), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-386), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-386), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-386), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-386), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-386), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-386), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-386), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-386), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-386), const DLT_LAPD = 203 +pkg syscall (freebsd-386), const DLT_LIN = 212 +pkg syscall (freebsd-386), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-386), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-386), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-386), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-386), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-386), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-386), const DLT_LOOP = 108 +pkg syscall (freebsd-386), const DLT_LTALK = 114 +pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-386), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-386), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-386), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-386), const DLT_MFR = 182 +pkg syscall (freebsd-386), const DLT_MOST = 211 +pkg syscall (freebsd-386), const DLT_MPLS = 219 +pkg syscall (freebsd-386), const DLT_MPLS ideal-int +pkg syscall (freebsd-386), const DLT_MTP2 = 140 +pkg syscall (freebsd-386), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-386), const DLT_MTP3 = 141 +pkg syscall (freebsd-386), const DLT_MUX27010 = 236 +pkg syscall (freebsd-386), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-386), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-386), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-386), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-386), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-386), const DLT_NFLOG = 239 +pkg syscall (freebsd-386), const DLT_NFLOG ideal-int +pkg syscall (freebsd-386), const DLT_NULL = 0 +pkg syscall (freebsd-386), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-386), const DLT_PFLOG = 117 +pkg syscall (freebsd-386), const DLT_PFSYNC = 121 +pkg syscall (freebsd-386), const DLT_PPI = 192 +pkg syscall (freebsd-386), const DLT_PPP = 9 +pkg syscall (freebsd-386), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-386), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-386), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-386), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-386), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-386), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-386), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-386), const DLT_PRONET = 4 +pkg syscall (freebsd-386), const DLT_RAIF1 = 198 +pkg syscall (freebsd-386), const DLT_RAW = 12 +pkg syscall (freebsd-386), const DLT_RIO = 124 +pkg syscall (freebsd-386), const DLT_SCCP = 142 +pkg syscall (freebsd-386), const DLT_SITA = 196 +pkg syscall (freebsd-386), const DLT_SLIP = 8 +pkg syscall (freebsd-386), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-386), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-386), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-386), const DLT_SUNATM = 123 +pkg syscall (freebsd-386), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-386), const DLT_TZSP = 128 +pkg syscall (freebsd-386), const DLT_USB = 186 +pkg syscall (freebsd-386), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-386), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-386), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-386), const DLT_USER0 = 147 +pkg syscall (freebsd-386), const DLT_USER1 = 148 +pkg syscall (freebsd-386), const DLT_USER10 = 157 +pkg syscall (freebsd-386), const DLT_USER11 = 158 +pkg syscall (freebsd-386), const DLT_USER12 = 159 +pkg syscall (freebsd-386), const DLT_USER13 = 160 +pkg syscall (freebsd-386), const DLT_USER14 = 161 +pkg syscall (freebsd-386), const DLT_USER15 = 162 +pkg syscall (freebsd-386), const DLT_USER2 = 149 +pkg syscall (freebsd-386), const DLT_USER3 = 150 +pkg syscall (freebsd-386), const DLT_USER4 = 151 +pkg syscall (freebsd-386), const DLT_USER5 = 152 +pkg syscall (freebsd-386), const DLT_USER6 = 153 +pkg syscall (freebsd-386), const DLT_USER7 = 154 +pkg syscall (freebsd-386), const DLT_USER8 = 155 +pkg syscall (freebsd-386), const DLT_USER9 = 156 +pkg syscall (freebsd-386), const DLT_WIHART = 223 +pkg syscall (freebsd-386), const DLT_WIHART ideal-int +pkg syscall (freebsd-386), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-386), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-386), const DT_BLK = 6 +pkg syscall (freebsd-386), const DT_CHR = 2 +pkg syscall (freebsd-386), const DT_DIR = 4 +pkg syscall (freebsd-386), const DT_FIFO = 1 +pkg syscall (freebsd-386), const DT_LNK = 10 +pkg syscall (freebsd-386), const DT_REG = 8 +pkg syscall (freebsd-386), const DT_SOCK = 12 +pkg syscall (freebsd-386), const DT_UNKNOWN = 0 +pkg syscall (freebsd-386), const DT_WHT = 14 +pkg syscall (freebsd-386), const E2BIG = 7 +pkg syscall (freebsd-386), const EACCES = 13 +pkg syscall (freebsd-386), const EADDRINUSE = 48 +pkg syscall (freebsd-386), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-386), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-386), const EAGAIN = 35 +pkg syscall (freebsd-386), const EALREADY = 37 +pkg syscall (freebsd-386), const EAUTH = 80 +pkg syscall (freebsd-386), const EBADF = 9 +pkg syscall (freebsd-386), const EBADMSG = 89 +pkg syscall (freebsd-386), const EBADRPC = 72 +pkg syscall (freebsd-386), const EBUSY = 16 +pkg syscall (freebsd-386), const ECANCELED = 85 +pkg syscall (freebsd-386), const ECAPMODE = 94 +pkg syscall (freebsd-386), const ECAPMODE Errno +pkg syscall (freebsd-386), const ECHILD = 10 +pkg syscall (freebsd-386), const ECHO = 8 +pkg syscall (freebsd-386), const ECHOCTL = 64 +pkg syscall (freebsd-386), const ECHOE = 2 +pkg syscall (freebsd-386), const ECHOK = 4 +pkg syscall (freebsd-386), const ECHOKE = 1 +pkg syscall (freebsd-386), const ECHONL = 16 +pkg syscall (freebsd-386), const ECHOPRT = 32 +pkg syscall (freebsd-386), const ECONNABORTED = 53 +pkg syscall (freebsd-386), const ECONNREFUSED = 61 +pkg syscall (freebsd-386), const ECONNRESET = 54 +pkg syscall (freebsd-386), const EDEADLK = 11 +pkg syscall (freebsd-386), const EDESTADDRREQ = 39 +pkg syscall (freebsd-386), const EDOM = 33 +pkg syscall (freebsd-386), const EDOOFUS = 88 +pkg syscall (freebsd-386), const EDQUOT = 69 +pkg syscall (freebsd-386), const EEXIST = 17 +pkg syscall (freebsd-386), const EFAULT = 14 +pkg syscall (freebsd-386), const EFBIG = 27 +pkg syscall (freebsd-386), const EFTYPE = 79 +pkg syscall (freebsd-386), const EHOSTDOWN = 64 +pkg syscall (freebsd-386), const EHOSTUNREACH = 65 +pkg syscall (freebsd-386), const EIDRM = 82 +pkg syscall (freebsd-386), const EILSEQ = 86 +pkg syscall (freebsd-386), const EINPROGRESS = 36 +pkg syscall (freebsd-386), const EINTR = 4 +pkg syscall (freebsd-386), const EINVAL = 22 +pkg syscall (freebsd-386), const EIO = 5 +pkg syscall (freebsd-386), const EISCONN = 56 +pkg syscall (freebsd-386), const EISDIR = 21 +pkg syscall (freebsd-386), const ELAST = 94 +pkg syscall (freebsd-386), const ELOOP = 62 +pkg syscall (freebsd-386), const EMFILE = 24 +pkg syscall (freebsd-386), const EMLINK = 31 +pkg syscall (freebsd-386), const EMSGSIZE = 40 +pkg syscall (freebsd-386), const EMULTIHOP = 90 +pkg syscall (freebsd-386), const ENAMETOOLONG = 63 +pkg syscall (freebsd-386), const ENEEDAUTH = 81 +pkg syscall (freebsd-386), const ENETDOWN = 50 +pkg syscall (freebsd-386), const ENETRESET = 52 +pkg syscall (freebsd-386), const ENETUNREACH = 51 +pkg syscall (freebsd-386), const ENFILE = 23 +pkg syscall (freebsd-386), const ENOATTR = 87 +pkg syscall (freebsd-386), const ENOBUFS = 55 +pkg syscall (freebsd-386), const ENODEV = 19 +pkg syscall (freebsd-386), const ENOEXEC = 8 +pkg syscall (freebsd-386), const ENOLCK = 77 +pkg syscall (freebsd-386), const ENOLINK = 91 +pkg syscall (freebsd-386), const ENOMEM = 12 +pkg syscall (freebsd-386), const ENOMSG = 83 +pkg syscall (freebsd-386), const ENOPROTOOPT = 42 +pkg syscall (freebsd-386), const ENOSPC = 28 +pkg syscall (freebsd-386), const ENOSYS = 78 +pkg syscall (freebsd-386), const ENOTBLK = 15 +pkg syscall (freebsd-386), const ENOTCAPABLE = 93 +pkg syscall (freebsd-386), const ENOTCONN = 57 +pkg syscall (freebsd-386), const ENOTDIR = 20 +pkg syscall (freebsd-386), const ENOTEMPTY = 66 +pkg syscall (freebsd-386), const ENOTSOCK = 38 +pkg syscall (freebsd-386), const ENOTSUP = 45 +pkg syscall (freebsd-386), const ENOTTY = 25 +pkg syscall (freebsd-386), const ENXIO = 6 +pkg syscall (freebsd-386), const EOPNOTSUPP = 45 +pkg syscall (freebsd-386), const EOVERFLOW = 84 +pkg syscall (freebsd-386), const EPERM = 1 +pkg syscall (freebsd-386), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-386), const EPIPE = 32 +pkg syscall (freebsd-386), const EPROCLIM = 67 +pkg syscall (freebsd-386), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-386), const EPROGMISMATCH = 75 +pkg syscall (freebsd-386), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-386), const EPROTO = 92 +pkg syscall (freebsd-386), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-386), const EPROTOTYPE = 41 +pkg syscall (freebsd-386), const ERANGE = 34 +pkg syscall (freebsd-386), const EREMOTE = 71 +pkg syscall (freebsd-386), const EROFS = 30 +pkg syscall (freebsd-386), const ERPCMISMATCH = 73 +pkg syscall (freebsd-386), const ESHUTDOWN = 58 +pkg syscall (freebsd-386), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-386), const ESPIPE = 29 +pkg syscall (freebsd-386), const ESRCH = 3 +pkg syscall (freebsd-386), const ESTALE = 70 +pkg syscall (freebsd-386), const ETIMEDOUT = 60 +pkg syscall (freebsd-386), const ETOOMANYREFS = 59 +pkg syscall (freebsd-386), const ETXTBSY = 26 +pkg syscall (freebsd-386), const EUSERS = 68 +pkg syscall (freebsd-386), const EVFILT_AIO = -3 +pkg syscall (freebsd-386), const EVFILT_FS = -9 +pkg syscall (freebsd-386), const EVFILT_LIO = -10 +pkg syscall (freebsd-386), const EVFILT_PROC = -5 +pkg syscall (freebsd-386), const EVFILT_READ = -1 +pkg syscall (freebsd-386), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-386), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-386), const EVFILT_TIMER = -7 +pkg syscall (freebsd-386), const EVFILT_USER = -11 +pkg syscall (freebsd-386), const EVFILT_VNODE = -4 +pkg syscall (freebsd-386), const EVFILT_WRITE = -2 +pkg syscall (freebsd-386), const EV_ADD = 1 +pkg syscall (freebsd-386), const EV_CLEAR = 32 +pkg syscall (freebsd-386), const EV_DELETE = 2 +pkg syscall (freebsd-386), const EV_DISABLE = 8 +pkg syscall (freebsd-386), const EV_DISPATCH = 128 +pkg syscall (freebsd-386), const EV_ENABLE = 4 +pkg syscall (freebsd-386), const EV_EOF = 32768 +pkg syscall (freebsd-386), const EV_ERROR = 16384 +pkg syscall (freebsd-386), const EV_FLAG1 = 8192 +pkg syscall (freebsd-386), const EV_ONESHOT = 16 +pkg syscall (freebsd-386), const EV_RECEIPT = 64 +pkg syscall (freebsd-386), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-386), const EWOULDBLOCK = 35 +pkg syscall (freebsd-386), const EXDEV = 18 +pkg syscall (freebsd-386), const EXTA = 19200 +pkg syscall (freebsd-386), const EXTB = 38400 +pkg syscall (freebsd-386), const EXTPROC = 2048 +pkg syscall (freebsd-386), const FD_CLOEXEC = 1 +pkg syscall (freebsd-386), const FD_SETSIZE = 1024 +pkg syscall (freebsd-386), const FLUSHO = 8388608 +pkg syscall (freebsd-386), const FLUSHO ideal-int +pkg syscall (freebsd-386), const F_CANCEL = 5 +pkg syscall (freebsd-386), const F_DUP2FD = 10 +pkg syscall (freebsd-386), const F_DUPFD = 0 +pkg syscall (freebsd-386), const F_GETFD = 1 +pkg syscall (freebsd-386), const F_GETFL = 3 +pkg syscall (freebsd-386), const F_GETLK = 11 +pkg syscall (freebsd-386), const F_GETOWN = 5 +pkg syscall (freebsd-386), const F_OGETLK = 7 +pkg syscall (freebsd-386), const F_OK = 0 +pkg syscall (freebsd-386), const F_OSETLK = 8 +pkg syscall (freebsd-386), const F_OSETLKW = 9 +pkg syscall (freebsd-386), const F_RDAHEAD = 16 +pkg syscall (freebsd-386), const F_RDLCK = 1 +pkg syscall (freebsd-386), const F_READAHEAD = 15 +pkg syscall (freebsd-386), const F_SETFD = 2 +pkg syscall (freebsd-386), const F_SETFL = 4 +pkg syscall (freebsd-386), const F_SETLK = 12 +pkg syscall (freebsd-386), const F_SETLKW = 13 +pkg syscall (freebsd-386), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-386), const F_SETOWN = 6 +pkg syscall (freebsd-386), const F_UNLCK = 2 +pkg syscall (freebsd-386), const F_UNLCKSYS = 4 +pkg syscall (freebsd-386), const F_WRLCK = 3 +pkg syscall (freebsd-386), const HUPCL = 16384 +pkg syscall (freebsd-386), const HUPCL ideal-int +pkg syscall (freebsd-386), const ICANON = 256 +pkg syscall (freebsd-386), const ICANON ideal-int +pkg syscall (freebsd-386), const ICRNL = 256 +pkg syscall (freebsd-386), const ICRNL ideal-int +pkg syscall (freebsd-386), const IEXTEN = 1024 +pkg syscall (freebsd-386), const IEXTEN ideal-int +pkg syscall (freebsd-386), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-386), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-386), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-386), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-386), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-386), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-386), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-386), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-386), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-386), const IFF_DEBUG = 4 +pkg syscall (freebsd-386), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-386), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-386), const IFF_DYING = 2097152 +pkg syscall (freebsd-386), const IFF_LINK0 = 4096 +pkg syscall (freebsd-386), const IFF_LINK1 = 8192 +pkg syscall (freebsd-386), const IFF_LINK2 = 16384 +pkg syscall (freebsd-386), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-386), const IFF_MONITOR = 262144 +pkg syscall (freebsd-386), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-386), const IFF_NOARP = 128 +pkg syscall (freebsd-386), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-386), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-386), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-386), const IFF_PROMISC = 256 +pkg syscall (freebsd-386), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-386), const IFF_RUNNING = 64 +pkg syscall (freebsd-386), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-386), const IFF_SMART = 32 +pkg syscall (freebsd-386), const IFF_STATICARP = 524288 +pkg syscall (freebsd-386), const IFNAMSIZ = 16 +pkg syscall (freebsd-386), const IFT_1822 = 2 +pkg syscall (freebsd-386), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-386), const IFT_AAL2 = 187 +pkg syscall (freebsd-386), const IFT_AAL5 = 49 +pkg syscall (freebsd-386), const IFT_ADSL = 94 +pkg syscall (freebsd-386), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-386), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-386), const IFT_ARAP = 88 +pkg syscall (freebsd-386), const IFT_ARCNET = 35 +pkg syscall (freebsd-386), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-386), const IFT_ASYNC = 84 +pkg syscall (freebsd-386), const IFT_ATM = 37 +pkg syscall (freebsd-386), const IFT_ATMDXI = 105 +pkg syscall (freebsd-386), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-386), const IFT_ATMIMA = 107 +pkg syscall (freebsd-386), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-386), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-386), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-386), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-386), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-386), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-386), const IFT_BRIDGE = 209 +pkg syscall (freebsd-386), const IFT_BSC = 83 +pkg syscall (freebsd-386), const IFT_CARP = 248 +pkg syscall (freebsd-386), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-386), const IFT_CEPT = 19 +pkg syscall (freebsd-386), const IFT_CES = 133 +pkg syscall (freebsd-386), const IFT_CHANNEL = 70 +pkg syscall (freebsd-386), const IFT_CNR = 85 +pkg syscall (freebsd-386), const IFT_COFFEE = 132 +pkg syscall (freebsd-386), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-386), const IFT_DCN = 141 +pkg syscall (freebsd-386), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-386), const IFT_DLSW = 74 +pkg syscall (freebsd-386), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-386), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-386), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-386), const IFT_DS0 = 81 +pkg syscall (freebsd-386), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-386), const IFT_DS1FDL = 170 +pkg syscall (freebsd-386), const IFT_DS3 = 30 +pkg syscall (freebsd-386), const IFT_DTM = 140 +pkg syscall (freebsd-386), const IFT_DVBASILN = 172 +pkg syscall (freebsd-386), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-386), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-386), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-386), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-386), const IFT_ENC = 244 +pkg syscall (freebsd-386), const IFT_EON = 25 +pkg syscall (freebsd-386), const IFT_EPLRS = 87 +pkg syscall (freebsd-386), const IFT_ESCON = 73 +pkg syscall (freebsd-386), const IFT_ETHER = 6 +pkg syscall (freebsd-386), const IFT_FAITH = 242 +pkg syscall (freebsd-386), const IFT_FAST = 125 +pkg syscall (freebsd-386), const IFT_FASTETHER = 62 +pkg syscall (freebsd-386), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-386), const IFT_FDDI = 15 +pkg syscall (freebsd-386), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-386), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-386), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-386), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-386), const IFT_FRELAY = 32 +pkg syscall (freebsd-386), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-386), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-386), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-386), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-386), const IFT_G703AT64K = 66 +pkg syscall (freebsd-386), const IFT_GIF = 240 +pkg syscall (freebsd-386), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-386), const IFT_GR303IDT = 178 +pkg syscall (freebsd-386), const IFT_GR303RDT = 177 +pkg syscall (freebsd-386), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-386), const IFT_H323PROXY = 165 +pkg syscall (freebsd-386), const IFT_HDH1822 = 3 +pkg syscall (freebsd-386), const IFT_HDLC = 118 +pkg syscall (freebsd-386), const IFT_HDSL2 = 168 +pkg syscall (freebsd-386), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-386), const IFT_HIPPI = 47 +pkg syscall (freebsd-386), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-386), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-386), const IFT_HSSI = 46 +pkg syscall (freebsd-386), const IFT_HY = 14 +pkg syscall (freebsd-386), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-386), const IFT_IDSL = 154 +pkg syscall (freebsd-386), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-386), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-386), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-386), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-386), const IFT_IFGSN = 145 +pkg syscall (freebsd-386), const IFT_IMT = 190 +pkg syscall (freebsd-386), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-386), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-386), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-386), const IFT_IP = 126 +pkg syscall (freebsd-386), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-386), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-386), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-386), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-386), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-386), const IFT_IPXIP = 249 +pkg syscall (freebsd-386), const IFT_ISDN = 63 +pkg syscall (freebsd-386), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-386), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-386), const IFT_ISDNS = 75 +pkg syscall (freebsd-386), const IFT_ISDNU = 76 +pkg syscall (freebsd-386), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-386), const IFT_ISO88023 = 7 +pkg syscall (freebsd-386), const IFT_ISO88024 = 8 +pkg syscall (freebsd-386), const IFT_ISO88025 = 9 +pkg syscall (freebsd-386), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-386), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-386), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-386), const IFT_ISO88026 = 10 +pkg syscall (freebsd-386), const IFT_ISUP = 179 +pkg syscall (freebsd-386), const IFT_L2VLAN = 135 +pkg syscall (freebsd-386), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-386), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-386), const IFT_LAPB = 16 +pkg syscall (freebsd-386), const IFT_LAPD = 77 +pkg syscall (freebsd-386), const IFT_LAPF = 119 +pkg syscall (freebsd-386), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-386), const IFT_LOOP = 24 +pkg syscall (freebsd-386), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-386), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-386), const IFT_MIOX25 = 38 +pkg syscall (freebsd-386), const IFT_MODEM = 48 +pkg syscall (freebsd-386), const IFT_MPC = 113 +pkg syscall (freebsd-386), const IFT_MPLS = 166 +pkg syscall (freebsd-386), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-386), const IFT_MSDSL = 143 +pkg syscall (freebsd-386), const IFT_MVL = 191 +pkg syscall (freebsd-386), const IFT_MYRINET = 99 +pkg syscall (freebsd-386), const IFT_NFAS = 175 +pkg syscall (freebsd-386), const IFT_NSIP = 27 +pkg syscall (freebsd-386), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-386), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-386), const IFT_OTHER = 1 +pkg syscall (freebsd-386), const IFT_P10 = 12 +pkg syscall (freebsd-386), const IFT_P80 = 13 +pkg syscall (freebsd-386), const IFT_PARA = 34 +pkg syscall (freebsd-386), const IFT_PFLOG = 246 +pkg syscall (freebsd-386), const IFT_PFSYNC = 247 +pkg syscall (freebsd-386), const IFT_PLC = 174 +pkg syscall (freebsd-386), const IFT_POS = 171 +pkg syscall (freebsd-386), const IFT_PPP = 23 +pkg syscall (freebsd-386), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-386), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-386), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-386), const IFT_PROPMUX = 54 +pkg syscall (freebsd-386), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-386), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-386), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-386), const IFT_PVC = 241 +pkg syscall (freebsd-386), const IFT_QLLC = 68 +pkg syscall (freebsd-386), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-386), const IFT_RADSL = 95 +pkg syscall (freebsd-386), const IFT_REACHDSL = 192 +pkg syscall (freebsd-386), const IFT_RFC1483 = 159 +pkg syscall (freebsd-386), const IFT_RS232 = 33 +pkg syscall (freebsd-386), const IFT_RSRB = 79 +pkg syscall (freebsd-386), const IFT_SDLC = 17 +pkg syscall (freebsd-386), const IFT_SDSL = 96 +pkg syscall (freebsd-386), const IFT_SHDSL = 169 +pkg syscall (freebsd-386), const IFT_SIP = 31 +pkg syscall (freebsd-386), const IFT_SLIP = 28 +pkg syscall (freebsd-386), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-386), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-386), const IFT_SONET = 39 +pkg syscall (freebsd-386), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-386), const IFT_SONETPATH = 50 +pkg syscall (freebsd-386), const IFT_SONETVT = 51 +pkg syscall (freebsd-386), const IFT_SRP = 151 +pkg syscall (freebsd-386), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-386), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-386), const IFT_STARLAN = 11 +pkg syscall (freebsd-386), const IFT_STF = 215 +pkg syscall (freebsd-386), const IFT_T1 = 18 +pkg syscall (freebsd-386), const IFT_TDLC = 116 +pkg syscall (freebsd-386), const IFT_TERMPAD = 91 +pkg syscall (freebsd-386), const IFT_TR008 = 176 +pkg syscall (freebsd-386), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-386), const IFT_TUNNEL = 131 +pkg syscall (freebsd-386), const IFT_ULTRA = 29 +pkg syscall (freebsd-386), const IFT_USB = 160 +pkg syscall (freebsd-386), const IFT_V11 = 64 +pkg syscall (freebsd-386), const IFT_V35 = 45 +pkg syscall (freebsd-386), const IFT_V36 = 65 +pkg syscall (freebsd-386), const IFT_V37 = 120 +pkg syscall (freebsd-386), const IFT_VDSL = 97 +pkg syscall (freebsd-386), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-386), const IFT_VOICEEM = 100 +pkg syscall (freebsd-386), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-386), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-386), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-386), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-386), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-386), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-386), const IFT_X213 = 93 +pkg syscall (freebsd-386), const IFT_X25 = 5 +pkg syscall (freebsd-386), const IFT_X25DDN = 4 +pkg syscall (freebsd-386), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-386), const IFT_X25MLP = 121 +pkg syscall (freebsd-386), const IFT_X25PLE = 40 +pkg syscall (freebsd-386), const IFT_XETHER = 26 +pkg syscall (freebsd-386), const IGNBRK = 1 +pkg syscall (freebsd-386), const IGNBRK ideal-int +pkg syscall (freebsd-386), const IGNCR = 128 +pkg syscall (freebsd-386), const IGNCR ideal-int +pkg syscall (freebsd-386), const IGNPAR = 4 +pkg syscall (freebsd-386), const IGNPAR ideal-int +pkg syscall (freebsd-386), const IMAXBEL = 8192 +pkg syscall (freebsd-386), const IMAXBEL ideal-int +pkg syscall (freebsd-386), const INLCR = 64 +pkg syscall (freebsd-386), const INLCR ideal-int +pkg syscall (freebsd-386), const INPCK = 16 +pkg syscall (freebsd-386), const INPCK ideal-int +pkg syscall (freebsd-386), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-386), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-386), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-386), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-386), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-386), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-386), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-386), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-386), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-386), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-386), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-386), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-386), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-386), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-386), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-386), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-386), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-386), const IPPROTO_3PC = 34 +pkg syscall (freebsd-386), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-386), const IPPROTO_AH = 51 +pkg syscall (freebsd-386), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-386), const IPPROTO_APES = 99 +pkg syscall (freebsd-386), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-386), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-386), const IPPROTO_BHA = 49 +pkg syscall (freebsd-386), const IPPROTO_BLT = 30 +pkg syscall (freebsd-386), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-386), const IPPROTO_CARP = 112 +pkg syscall (freebsd-386), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-386), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-386), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-386), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-386), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-386), const IPPROTO_DDP = 37 +pkg syscall (freebsd-386), const IPPROTO_DGP = 86 +pkg syscall (freebsd-386), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-386), const IPPROTO_DONE = 257 +pkg syscall (freebsd-386), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-386), const IPPROTO_EGP = 8 +pkg syscall (freebsd-386), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-386), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-386), const IPPROTO_EON = 80 +pkg syscall (freebsd-386), const IPPROTO_ESP = 50 +pkg syscall (freebsd-386), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-386), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-386), const IPPROTO_GGP = 3 +pkg syscall (freebsd-386), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-386), const IPPROTO_GRE = 47 +pkg syscall (freebsd-386), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-386), const IPPROTO_HMP = 20 +pkg syscall (freebsd-386), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-386), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-386), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-386), const IPPROTO_IDP = 22 +pkg syscall (freebsd-386), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-386), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-386), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-386), const IPPROTO_IGP = 85 +pkg syscall (freebsd-386), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-386), const IPPROTO_IL = 40 +pkg syscall (freebsd-386), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-386), const IPPROTO_INP = 32 +pkg syscall (freebsd-386), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-386), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-386), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-386), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-386), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-386), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-386), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-386), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-386), const IPPROTO_LARP = 91 +pkg syscall (freebsd-386), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-386), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-386), const IPPROTO_MAX = 256 +pkg syscall (freebsd-386), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-386), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-386), const IPPROTO_MH = 135 +pkg syscall (freebsd-386), const IPPROTO_MH ideal-int +pkg syscall (freebsd-386), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-386), const IPPROTO_MICP = 95 +pkg syscall (freebsd-386), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-386), const IPPROTO_MTP = 92 +pkg syscall (freebsd-386), const IPPROTO_MUX = 18 +pkg syscall (freebsd-386), const IPPROTO_ND = 77 +pkg syscall (freebsd-386), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-386), const IPPROTO_NONE = 59 +pkg syscall (freebsd-386), const IPPROTO_NSP = 31 +pkg syscall (freebsd-386), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-386), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-386), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-386), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-386), const IPPROTO_PGM = 113 +pkg syscall (freebsd-386), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-386), const IPPROTO_PIM = 103 +pkg syscall (freebsd-386), const IPPROTO_PRM = 21 +pkg syscall (freebsd-386), const IPPROTO_PUP = 12 +pkg syscall (freebsd-386), const IPPROTO_PVP = 75 +pkg syscall (freebsd-386), const IPPROTO_RAW = 255 +pkg syscall (freebsd-386), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-386), const IPPROTO_RDP = 27 +pkg syscall (freebsd-386), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-386), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-386), const IPPROTO_RVD = 66 +pkg syscall (freebsd-386), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-386), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-386), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-386), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-386), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-386), const IPPROTO_SEND = 259 +pkg syscall (freebsd-386), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-386), const IPPROTO_SEP = 33 +pkg syscall (freebsd-386), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-386), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-386), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-386), const IPPROTO_ST = 7 +pkg syscall (freebsd-386), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-386), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-386), const IPPROTO_TCF = 87 +pkg syscall (freebsd-386), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-386), const IPPROTO_TP = 29 +pkg syscall (freebsd-386), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-386), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-386), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-386), const IPPROTO_TTP = 84 +pkg syscall (freebsd-386), const IPPROTO_VINES = 83 +pkg syscall (freebsd-386), const IPPROTO_VISA = 70 +pkg syscall (freebsd-386), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-386), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-386), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-386), const IPPROTO_WSN = 74 +pkg syscall (freebsd-386), const IPPROTO_XNET = 15 +pkg syscall (freebsd-386), const IPPROTO_XTP = 36 +pkg syscall (freebsd-386), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-386), const IPV6_BINDANY = 64 +pkg syscall (freebsd-386), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-386), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-386), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-386), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-386), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-386), const IPV6_FAITH = 29 +pkg syscall (freebsd-386), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-386), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-386), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-386), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-386), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-386), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-386), const IPV6_FW_GET = 34 +pkg syscall (freebsd-386), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-386), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-386), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-386), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-386), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-386), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-386), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-386), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-386), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-386), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-386), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-386), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-386), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-386), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-386), const IPV6_MMTU = 1280 +pkg syscall (freebsd-386), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-386), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-386), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-386), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-386), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-386), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-386), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-386), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-386), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-386), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-386), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-386), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-386), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-386), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-386), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-386), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-386), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-386), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-386), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-386), const IPV6_RTHDR = 51 +pkg syscall (freebsd-386), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-386), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-386), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-386), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-386), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-386), const IPV6_TCLASS = 61 +pkg syscall (freebsd-386), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-386), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-386), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-386), const IPV6_VERSION = 96 +pkg syscall (freebsd-386), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-386), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-386), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-386), const IP_BINDANY = 24 +pkg syscall (freebsd-386), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-386), const IP_DF = 16384 +pkg syscall (freebsd-386), const IP_DONTFRAG = 67 +pkg syscall (freebsd-386), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-386), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-386), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-386), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-386), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-386), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-386), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-386), const IP_FAITH = 22 +pkg syscall (freebsd-386), const IP_FW3 = 48 +pkg syscall (freebsd-386), const IP_FW_ADD = 50 +pkg syscall (freebsd-386), const IP_FW_DEL = 51 +pkg syscall (freebsd-386), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-386), const IP_FW_GET = 54 +pkg syscall (freebsd-386), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-386), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-386), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-386), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-386), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-386), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-386), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-386), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-386), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-386), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-386), const IP_FW_ZERO = 53 +pkg syscall (freebsd-386), const IP_HDRINCL = 2 +pkg syscall (freebsd-386), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-386), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-386), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-386), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-386), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-386), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-386), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-386), const IP_MF = 8192 +pkg syscall (freebsd-386), const IP_MINTTL = 66 +pkg syscall (freebsd-386), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-386), const IP_MSFILTER = 74 +pkg syscall (freebsd-386), const IP_MSS = 576 +pkg syscall (freebsd-386), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-386), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-386), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-386), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-386), const IP_OFFMASK = 8191 +pkg syscall (freebsd-386), const IP_ONESBCAST = 23 +pkg syscall (freebsd-386), const IP_OPTIONS = 1 +pkg syscall (freebsd-386), const IP_PORTRANGE = 19 +pkg syscall (freebsd-386), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-386), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-386), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-386), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-386), const IP_RECVIF = 20 +pkg syscall (freebsd-386), const IP_RECVOPTS = 5 +pkg syscall (freebsd-386), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-386), const IP_RECVTOS = 68 +pkg syscall (freebsd-386), const IP_RECVTOS ideal-int +pkg syscall (freebsd-386), const IP_RECVTTL = 65 +pkg syscall (freebsd-386), const IP_RETOPTS = 8 +pkg syscall (freebsd-386), const IP_RF = 32768 +pkg syscall (freebsd-386), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-386), const IP_RSVP_ON = 15 +pkg syscall (freebsd-386), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-386), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-386), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-386), const IP_TOS = 3 +pkg syscall (freebsd-386), const IP_TTL = 4 +pkg syscall (freebsd-386), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-386), const ISIG = 128 +pkg syscall (freebsd-386), const ISIG ideal-int +pkg syscall (freebsd-386), const ISTRIP = 32 +pkg syscall (freebsd-386), const ISTRIP ideal-int +pkg syscall (freebsd-386), const IXANY = 2048 +pkg syscall (freebsd-386), const IXANY ideal-int +pkg syscall (freebsd-386), const IXOFF = 1024 +pkg syscall (freebsd-386), const IXOFF ideal-int +pkg syscall (freebsd-386), const IXON = 512 +pkg syscall (freebsd-386), const IXON ideal-int +pkg syscall (freebsd-386), const ImplementsGetwd = false +pkg syscall (freebsd-386), const LOCK_EX = 2 +pkg syscall (freebsd-386), const LOCK_NB = 4 +pkg syscall (freebsd-386), const LOCK_SH = 1 +pkg syscall (freebsd-386), const LOCK_UN = 8 +pkg syscall (freebsd-386), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-386), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-386), const MADV_CORE = 9 +pkg syscall (freebsd-386), const MADV_CORE ideal-int +pkg syscall (freebsd-386), const MADV_DONTNEED = 4 +pkg syscall (freebsd-386), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-386), const MADV_FREE = 5 +pkg syscall (freebsd-386), const MADV_FREE ideal-int +pkg syscall (freebsd-386), const MADV_NOCORE = 8 +pkg syscall (freebsd-386), const MADV_NOCORE ideal-int +pkg syscall (freebsd-386), const MADV_NORMAL = 0 +pkg syscall (freebsd-386), const MADV_NORMAL ideal-int +pkg syscall (freebsd-386), const MADV_NOSYNC = 6 +pkg syscall (freebsd-386), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-386), const MADV_PROTECT = 10 +pkg syscall (freebsd-386), const MADV_PROTECT ideal-int +pkg syscall (freebsd-386), const MADV_RANDOM = 1 +pkg syscall (freebsd-386), const MADV_RANDOM ideal-int +pkg syscall (freebsd-386), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-386), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-386), const MADV_WILLNEED = 3 +pkg syscall (freebsd-386), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-386), const MAP_ANON = 4096 +pkg syscall (freebsd-386), const MAP_ANON ideal-int +pkg syscall (freebsd-386), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-386), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-386), const MAP_COPY = 2 +pkg syscall (freebsd-386), const MAP_COPY ideal-int +pkg syscall (freebsd-386), const MAP_FILE = 0 +pkg syscall (freebsd-386), const MAP_FILE ideal-int +pkg syscall (freebsd-386), const MAP_FIXED = 16 +pkg syscall (freebsd-386), const MAP_FIXED ideal-int +pkg syscall (freebsd-386), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-386), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-386), const MAP_NOCORE = 131072 +pkg syscall (freebsd-386), const MAP_NOCORE ideal-int +pkg syscall (freebsd-386), const MAP_NORESERVE = 64 +pkg syscall (freebsd-386), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-386), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-386), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-386), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-386), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-386), const MAP_PRIVATE = 2 +pkg syscall (freebsd-386), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-386), const MAP_RENAME = 32 +pkg syscall (freebsd-386), const MAP_RENAME ideal-int +pkg syscall (freebsd-386), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-386), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-386), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-386), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-386), const MAP_SHARED = 1 +pkg syscall (freebsd-386), const MAP_SHARED ideal-int +pkg syscall (freebsd-386), const MAP_STACK = 1024 +pkg syscall (freebsd-386), const MAP_STACK ideal-int +pkg syscall (freebsd-386), const MCL_CURRENT = 1 +pkg syscall (freebsd-386), const MCL_CURRENT ideal-int +pkg syscall (freebsd-386), const MCL_FUTURE = 2 +pkg syscall (freebsd-386), const MCL_FUTURE ideal-int +pkg syscall (freebsd-386), const MSG_COMPAT = 32768 +pkg syscall (freebsd-386), const MSG_CTRUNC = 32 +pkg syscall (freebsd-386), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-386), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-386), const MSG_EOF = 256 +pkg syscall (freebsd-386), const MSG_EOR = 8 +pkg syscall (freebsd-386), const MSG_NBIO = 16384 +pkg syscall (freebsd-386), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-386), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-386), const MSG_OOB = 1 +pkg syscall (freebsd-386), const MSG_PEEK = 2 +pkg syscall (freebsd-386), const MSG_TRUNC = 16 +pkg syscall (freebsd-386), const MSG_WAITALL = 64 +pkg syscall (freebsd-386), const MS_ASYNC = 1 +pkg syscall (freebsd-386), const MS_ASYNC ideal-int +pkg syscall (freebsd-386), const MS_INVALIDATE = 2 +pkg syscall (freebsd-386), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-386), const MS_SYNC = 0 +pkg syscall (freebsd-386), const MS_SYNC ideal-int +pkg syscall (freebsd-386), const NET_RT_DUMP = 1 +pkg syscall (freebsd-386), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-386), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-386), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-386), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-386), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-386), const NET_RT_MAXID = 6 +pkg syscall (freebsd-386), const NOFLSH = 2147483648 +pkg syscall (freebsd-386), const NOFLSH ideal-int +pkg syscall (freebsd-386), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-386), const NOTE_CHILD = 4 +pkg syscall (freebsd-386), const NOTE_DELETE = 1 +pkg syscall (freebsd-386), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-386), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-386), const NOTE_EXTEND = 4 +pkg syscall (freebsd-386), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-386), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-386), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-386), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-386), const NOTE_FFNOP = 0 +pkg syscall (freebsd-386), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-386), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-386), const NOTE_LINK = 16 +pkg syscall (freebsd-386), const NOTE_LOWAT = 1 +pkg syscall (freebsd-386), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-386), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-386), const NOTE_RENAME = 32 +pkg syscall (freebsd-386), const NOTE_REVOKE = 64 +pkg syscall (freebsd-386), const NOTE_TRACK = 1 +pkg syscall (freebsd-386), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-386), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-386), const NOTE_WRITE = 2 +pkg syscall (freebsd-386), const OCRNL = 16 +pkg syscall (freebsd-386), const OCRNL ideal-int +pkg syscall (freebsd-386), const ONLCR = 2 +pkg syscall (freebsd-386), const ONLCR ideal-int +pkg syscall (freebsd-386), const ONLRET = 64 +pkg syscall (freebsd-386), const ONLRET ideal-int +pkg syscall (freebsd-386), const ONOCR = 32 +pkg syscall (freebsd-386), const ONOCR ideal-int +pkg syscall (freebsd-386), const ONOEOT = 8 +pkg syscall (freebsd-386), const ONOEOT ideal-int +pkg syscall (freebsd-386), const OPOST = 1 +pkg syscall (freebsd-386), const OPOST ideal-int +pkg syscall (freebsd-386), const O_ACCMODE = 3 +pkg syscall (freebsd-386), const O_APPEND = 8 +pkg syscall (freebsd-386), const O_ASYNC = 64 +pkg syscall (freebsd-386), const O_CLOEXEC = 0 +pkg syscall (freebsd-386), const O_CREAT = 512 +pkg syscall (freebsd-386), const O_DIRECT = 65536 +pkg syscall (freebsd-386), const O_DIRECTORY = 131072 +pkg syscall (freebsd-386), const O_EXCL = 2048 +pkg syscall (freebsd-386), const O_EXEC = 262144 +pkg syscall (freebsd-386), const O_EXLOCK = 32 +pkg syscall (freebsd-386), const O_FSYNC = 128 +pkg syscall (freebsd-386), const O_NDELAY = 4 +pkg syscall (freebsd-386), const O_NOCTTY = 32768 +pkg syscall (freebsd-386), const O_NOFOLLOW = 256 +pkg syscall (freebsd-386), const O_NONBLOCK = 4 +pkg syscall (freebsd-386), const O_SHLOCK = 16 +pkg syscall (freebsd-386), const O_SYNC = 128 +pkg syscall (freebsd-386), const O_TRUNC = 1024 +pkg syscall (freebsd-386), const O_TTY_INIT = 524288 +pkg syscall (freebsd-386), const PARENB = 4096 +pkg syscall (freebsd-386), const PARENB ideal-int +pkg syscall (freebsd-386), const PARMRK = 8 +pkg syscall (freebsd-386), const PARMRK ideal-int +pkg syscall (freebsd-386), const PARODD = 8192 +pkg syscall (freebsd-386), const PARODD ideal-int +pkg syscall (freebsd-386), const PENDIN = 536870912 +pkg syscall (freebsd-386), const PENDIN ideal-int +pkg syscall (freebsd-386), const PROT_EXEC = 4 +pkg syscall (freebsd-386), const PROT_EXEC ideal-int +pkg syscall (freebsd-386), const PROT_NONE = 0 +pkg syscall (freebsd-386), const PROT_NONE ideal-int +pkg syscall (freebsd-386), const PROT_READ = 1 +pkg syscall (freebsd-386), const PROT_READ ideal-int +pkg syscall (freebsd-386), const PROT_WRITE = 2 +pkg syscall (freebsd-386), const PROT_WRITE ideal-int +pkg syscall (freebsd-386), const PTRACE_CONT = 7 +pkg syscall (freebsd-386), const PTRACE_KILL = 8 +pkg syscall (freebsd-386), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-386), const RLIMIT_AS = 10 +pkg syscall (freebsd-386), const RLIMIT_CORE = 4 +pkg syscall (freebsd-386), const RLIMIT_CPU = 0 +pkg syscall (freebsd-386), const RLIMIT_DATA = 2 +pkg syscall (freebsd-386), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-386), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-386), const RLIMIT_STACK = 3 +pkg syscall (freebsd-386), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-386), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-386), const RTAX_BRD = 7 +pkg syscall (freebsd-386), const RTAX_DST = 0 +pkg syscall (freebsd-386), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-386), const RTAX_GENMASK = 3 +pkg syscall (freebsd-386), const RTAX_IFA = 5 +pkg syscall (freebsd-386), const RTAX_IFP = 4 +pkg syscall (freebsd-386), const RTAX_MAX = 8 +pkg syscall (freebsd-386), const RTAX_NETMASK = 2 +pkg syscall (freebsd-386), const RTA_AUTHOR = 64 +pkg syscall (freebsd-386), const RTA_BRD = 128 +pkg syscall (freebsd-386), const RTA_DST = 1 +pkg syscall (freebsd-386), const RTA_GATEWAY = 2 +pkg syscall (freebsd-386), const RTA_GENMASK = 8 +pkg syscall (freebsd-386), const RTA_IFA = 32 +pkg syscall (freebsd-386), const RTA_IFP = 16 +pkg syscall (freebsd-386), const RTA_NETMASK = 4 +pkg syscall (freebsd-386), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-386), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-386), const RTF_DONE = 64 +pkg syscall (freebsd-386), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-386), const RTF_FMASK = 268752904 +pkg syscall (freebsd-386), const RTF_GATEWAY = 2 +pkg syscall (freebsd-386), const RTF_HOST = 4 +pkg syscall (freebsd-386), const RTF_LLDATA = 1024 +pkg syscall (freebsd-386), const RTF_LLINFO = 1024 +pkg syscall (freebsd-386), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-386), const RTF_MODIFIED = 32 +pkg syscall (freebsd-386), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-386), const RTF_PINNED = 1048576 +pkg syscall (freebsd-386), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-386), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-386), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-386), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-386), const RTF_REJECT = 8 +pkg syscall (freebsd-386), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-386), const RTF_STATIC = 2048 +pkg syscall (freebsd-386), const RTF_STICKY = 268435456 +pkg syscall (freebsd-386), const RTF_UP = 1 +pkg syscall (freebsd-386), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-386), const RTM_ADD = 1 +pkg syscall (freebsd-386), const RTM_CHANGE = 3 +pkg syscall (freebsd-386), const RTM_DELADDR = 13 +pkg syscall (freebsd-386), const RTM_DELETE = 2 +pkg syscall (freebsd-386), const RTM_DELMADDR = 16 +pkg syscall (freebsd-386), const RTM_GET = 4 +pkg syscall (freebsd-386), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-386), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-386), const RTM_IFINFO = 14 +pkg syscall (freebsd-386), const RTM_LOCK = 8 +pkg syscall (freebsd-386), const RTM_LOSING = 5 +pkg syscall (freebsd-386), const RTM_MISS = 7 +pkg syscall (freebsd-386), const RTM_NEWADDR = 12 +pkg syscall (freebsd-386), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-386), const RTM_OLDADD = 9 +pkg syscall (freebsd-386), const RTM_OLDDEL = 10 +pkg syscall (freebsd-386), const RTM_REDIRECT = 6 +pkg syscall (freebsd-386), const RTM_RESOLVE = 11 +pkg syscall (freebsd-386), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-386), const RTM_VERSION = 5 +pkg syscall (freebsd-386), const RTV_EXPIRE = 4 +pkg syscall (freebsd-386), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-386), const RTV_MTU = 1 +pkg syscall (freebsd-386), const RTV_RPIPE = 8 +pkg syscall (freebsd-386), const RTV_RTT = 64 +pkg syscall (freebsd-386), const RTV_RTTVAR = 128 +pkg syscall (freebsd-386), const RTV_SPIPE = 16 +pkg syscall (freebsd-386), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-386), const RTV_WEIGHT = 256 +pkg syscall (freebsd-386), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-386), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-386), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-386), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-386), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-386), const RUSAGE_SELF = 0 +pkg syscall (freebsd-386), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-386), const SCM_BINTIME = 4 +pkg syscall (freebsd-386), const SCM_CREDS = 3 +pkg syscall (freebsd-386), const SCM_RIGHTS = 1 +pkg syscall (freebsd-386), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-386), const SIGBUS = 10 +pkg syscall (freebsd-386), const SIGCHLD = 20 +pkg syscall (freebsd-386), const SIGCONT = 19 +pkg syscall (freebsd-386), const SIGEMT = 7 +pkg syscall (freebsd-386), const SIGINFO = 29 +pkg syscall (freebsd-386), const SIGIO = 23 +pkg syscall (freebsd-386), const SIGIOT = 6 +pkg syscall (freebsd-386), const SIGLWP = 32 +pkg syscall (freebsd-386), const SIGPROF = 27 +pkg syscall (freebsd-386), const SIGSTOP = 17 +pkg syscall (freebsd-386), const SIGSYS = 12 +pkg syscall (freebsd-386), const SIGTHR = 32 +pkg syscall (freebsd-386), const SIGTSTP = 18 +pkg syscall (freebsd-386), const SIGTTIN = 21 +pkg syscall (freebsd-386), const SIGTTOU = 22 +pkg syscall (freebsd-386), const SIGURG = 16 +pkg syscall (freebsd-386), const SIGUSR1 = 30 +pkg syscall (freebsd-386), const SIGUSR2 = 31 +pkg syscall (freebsd-386), const SIGVTALRM = 26 +pkg syscall (freebsd-386), const SIGWINCH = 28 +pkg syscall (freebsd-386), const SIGXCPU = 24 +pkg syscall (freebsd-386), const SIGXFSZ = 25 +pkg syscall (freebsd-386), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-386), const SIOCADDRT = 2150658570 +pkg syscall (freebsd-386), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-386), const SIOCAIFGROUP = 2149869959 +pkg syscall (freebsd-386), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-386), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-386), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-386), const SIOCDELRT = 2150658571 +pkg syscall (freebsd-386), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-386), const SIOCDIFGROUP = 2149869961 +pkg syscall (freebsd-386), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-386), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-386), const SIOCGDRVSPEC = 3223087483 +pkg syscall (freebsd-386), const SIOCGETSGCNT = 3222565392 +pkg syscall (freebsd-386), const SIOCGETVIFCNT = 3222565391 +pkg syscall (freebsd-386), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-386), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-386), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-386), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-386), const SIOCGIFCONF = 3221776676 +pkg syscall (freebsd-386), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-386), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-386), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-386), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-386), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-386), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-386), const SIOCGIFGMEMB = 3223611786 +pkg syscall (freebsd-386), const SIOCGIFGROUP = 3223611784 +pkg syscall (freebsd-386), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-386), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-386), const SIOCGIFMEDIA = 3223873848 +pkg syscall (freebsd-386), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-386), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-386), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-386), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-386), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-386), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-386), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-386), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-386), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-386), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-386), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-386), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-386), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-386), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-386), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-386), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-386), const SIOCIFGCLONERS = 3222038904 +pkg syscall (freebsd-386), const SIOCSDRVSPEC = 2149345659 +pkg syscall (freebsd-386), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-386), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-386), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-386), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-386), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-386), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-386), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-386), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-386), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-386), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-386), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-386), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-386), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-386), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-386), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-386), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-386), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-386), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-386), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-386), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-386), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-386), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-386), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-386), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-386), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-386), const SOCK_RDM = 4 +pkg syscall (freebsd-386), const SOL_SOCKET = 65535 +pkg syscall (freebsd-386), const SOMAXCONN = 128 +pkg syscall (freebsd-386), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-386), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-386), const SO_BINTIME = 8192 +pkg syscall (freebsd-386), const SO_BROADCAST = 32 +pkg syscall (freebsd-386), const SO_DEBUG = 1 +pkg syscall (freebsd-386), const SO_DONTROUTE = 16 +pkg syscall (freebsd-386), const SO_ERROR = 4103 +pkg syscall (freebsd-386), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-386), const SO_LABEL = 4105 +pkg syscall (freebsd-386), const SO_LINGER = 128 +pkg syscall (freebsd-386), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-386), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-386), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-386), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-386), const SO_NO_DDP = 32768 +pkg syscall (freebsd-386), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-386), const SO_OOBINLINE = 256 +pkg syscall (freebsd-386), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-386), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-386), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-386), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-386), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-386), const SO_RCVBUF = 4098 +pkg syscall (freebsd-386), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-386), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-386), const SO_REUSEADDR = 4 +pkg syscall (freebsd-386), const SO_REUSEPORT = 512 +pkg syscall (freebsd-386), const SO_SETFIB = 4116 +pkg syscall (freebsd-386), const SO_SNDBUF = 4097 +pkg syscall (freebsd-386), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-386), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-386), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-386), const SO_TYPE = 4104 +pkg syscall (freebsd-386), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-386), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-386), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-386), const SYS_ABORT2 = 463 +pkg syscall (freebsd-386), const SYS_ACCEPT = 30 +pkg syscall (freebsd-386), const SYS_ACCESS = 33 +pkg syscall (freebsd-386), const SYS_ACCT = 51 +pkg syscall (freebsd-386), const SYS_ADJTIME = 140 +pkg syscall (freebsd-386), const SYS_AUDIT = 445 +pkg syscall (freebsd-386), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-386), const SYS_AUDITON = 446 +pkg syscall (freebsd-386), const SYS_BIND = 104 +pkg syscall (freebsd-386), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-386), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-386), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-386), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-386), const SYS_CHDIR = 12 +pkg syscall (freebsd-386), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-386), const SYS_CHMOD = 15 +pkg syscall (freebsd-386), const SYS_CHOWN = 16 +pkg syscall (freebsd-386), const SYS_CHROOT = 61 +pkg syscall (freebsd-386), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-386), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-386), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-386), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-386), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-386), const SYS_CLOSE = 6 +pkg syscall (freebsd-386), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-386), const SYS_CONNECT = 98 +pkg syscall (freebsd-386), const SYS_CPUSET = 484 +pkg syscall (freebsd-386), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-386), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-386), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-386), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-386), const SYS_DUP = 41 +pkg syscall (freebsd-386), const SYS_DUP2 = 90 +pkg syscall (freebsd-386), const SYS_EACCESS = 376 +pkg syscall (freebsd-386), const SYS_EXECVE = 59 +pkg syscall (freebsd-386), const SYS_EXIT = 1 +pkg syscall (freebsd-386), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-386), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-386), const SYS_FCHDIR = 13 +pkg syscall (freebsd-386), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-386), const SYS_FCHMOD = 124 +pkg syscall (freebsd-386), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-386), const SYS_FCHOWN = 123 +pkg syscall (freebsd-386), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-386), const SYS_FCNTL = 92 +pkg syscall (freebsd-386), const SYS_FEXECVE = 492 +pkg syscall (freebsd-386), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-386), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-386), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-386), const SYS_FHOPEN = 298 +pkg syscall (freebsd-386), const SYS_FHSTAT = 299 +pkg syscall (freebsd-386), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-386), const SYS_FLOCK = 131 +pkg syscall (freebsd-386), const SYS_FORK = 2 +pkg syscall (freebsd-386), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-386), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-386), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-386), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-386), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-386), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-386), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-386), const SYS_FSTAT = 189 +pkg syscall (freebsd-386), const SYS_FSTATAT = 493 +pkg syscall (freebsd-386), const SYS_FSTATFS = 397 +pkg syscall (freebsd-386), const SYS_FSYNC = 95 +pkg syscall (freebsd-386), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-386), const SYS_FUTIMES = 206 +pkg syscall (freebsd-386), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-386), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-386), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-386), const SYS_GETAUID = 447 +pkg syscall (freebsd-386), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-386), const SYS_GETDENTS = 272 +pkg syscall (freebsd-386), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-386), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-386), const SYS_GETEGID = 43 +pkg syscall (freebsd-386), const SYS_GETEUID = 25 +pkg syscall (freebsd-386), const SYS_GETFH = 161 +pkg syscall (freebsd-386), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-386), const SYS_GETGID = 47 +pkg syscall (freebsd-386), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-386), const SYS_GETITIMER = 86 +pkg syscall (freebsd-386), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-386), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-386), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-386), const SYS_GETPGID = 207 +pkg syscall (freebsd-386), const SYS_GETPGRP = 81 +pkg syscall (freebsd-386), const SYS_GETPID = 20 +pkg syscall (freebsd-386), const SYS_GETPPID = 39 +pkg syscall (freebsd-386), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-386), const SYS_GETRESGID = 361 +pkg syscall (freebsd-386), const SYS_GETRESUID = 360 +pkg syscall (freebsd-386), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-386), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-386), const SYS_GETSID = 310 +pkg syscall (freebsd-386), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-386), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-386), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-386), const SYS_GETUID = 24 +pkg syscall (freebsd-386), const SYS_IOCTL = 54 +pkg syscall (freebsd-386), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-386), const SYS_JAIL = 338 +pkg syscall (freebsd-386), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-386), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-386), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-386), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-386), const SYS_KENV = 390 +pkg syscall (freebsd-386), const SYS_KEVENT = 363 +pkg syscall (freebsd-386), const SYS_KILL = 37 +pkg syscall (freebsd-386), const SYS_KLDFIND = 306 +pkg syscall (freebsd-386), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-386), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-386), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-386), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-386), const SYS_KLDSYM = 337 +pkg syscall (freebsd-386), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-386), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-386), const SYS_KQUEUE = 362 +pkg syscall (freebsd-386), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-386), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-386), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-386), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-386), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-386), const SYS_KTRACE = 45 +pkg syscall (freebsd-386), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-386), const SYS_LCHMOD = 274 +pkg syscall (freebsd-386), const SYS_LCHOWN = 254 +pkg syscall (freebsd-386), const SYS_LGETFH = 160 +pkg syscall (freebsd-386), const SYS_LINK = 9 +pkg syscall (freebsd-386), const SYS_LINKAT = 495 +pkg syscall (freebsd-386), const SYS_LISTEN = 106 +pkg syscall (freebsd-386), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-386), const SYS_LSEEK = 478 +pkg syscall (freebsd-386), const SYS_LSTAT = 190 +pkg syscall (freebsd-386), const SYS_LUTIMES = 276 +pkg syscall (freebsd-386), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-386), const SYS_MADVISE = 75 +pkg syscall (freebsd-386), const SYS_MINCORE = 78 +pkg syscall (freebsd-386), const SYS_MINHERIT = 250 +pkg syscall (freebsd-386), const SYS_MKDIR = 136 +pkg syscall (freebsd-386), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-386), const SYS_MKFIFO = 132 +pkg syscall (freebsd-386), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-386), const SYS_MKNOD = 14 +pkg syscall (freebsd-386), const SYS_MKNODAT = 498 +pkg syscall (freebsd-386), const SYS_MLOCK = 203 +pkg syscall (freebsd-386), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-386), const SYS_MMAP = 477 +pkg syscall (freebsd-386), const SYS_MODFIND = 303 +pkg syscall (freebsd-386), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-386), const SYS_MODNEXT = 300 +pkg syscall (freebsd-386), const SYS_MODSTAT = 301 +pkg syscall (freebsd-386), const SYS_MOUNT = 21 +pkg syscall (freebsd-386), const SYS_MPROTECT = 74 +pkg syscall (freebsd-386), const SYS_MSYNC = 65 +pkg syscall (freebsd-386), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-386), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-386), const SYS_MUNMAP = 73 +pkg syscall (freebsd-386), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-386), const SYS_NFSTAT = 279 +pkg syscall (freebsd-386), const SYS_NLSTAT = 280 +pkg syscall (freebsd-386), const SYS_NMOUNT = 378 +pkg syscall (freebsd-386), const SYS_NSTAT = 278 +pkg syscall (freebsd-386), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-386), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-386), const SYS_OBREAK = 17 +pkg syscall (freebsd-386), const SYS_OPEN = 5 +pkg syscall (freebsd-386), const SYS_OPENAT = 499 +pkg syscall (freebsd-386), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-386), const SYS_OVADVISE = 72 +pkg syscall (freebsd-386), const SYS_PATHCONF = 191 +pkg syscall (freebsd-386), const SYS_PDFORK = 518 +pkg syscall (freebsd-386), const SYS_PDGETPID = 520 +pkg syscall (freebsd-386), const SYS_PDKILL = 519 +pkg syscall (freebsd-386), const SYS_PIPE = 42 +pkg syscall (freebsd-386), const SYS_POLL = 209 +pkg syscall (freebsd-386), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-386), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-386), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-386), const SYS_PREAD = 475 +pkg syscall (freebsd-386), const SYS_PREADV = 289 +pkg syscall (freebsd-386), const SYS_PROFIL = 44 +pkg syscall (freebsd-386), const SYS_PSELECT = 522 +pkg syscall (freebsd-386), const SYS_PTRACE = 26 +pkg syscall (freebsd-386), const SYS_PWRITE = 476 +pkg syscall (freebsd-386), const SYS_PWRITEV = 290 +pkg syscall (freebsd-386), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-386), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-386), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-386), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-386), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-386), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-386), const SYS_READ = 3 +pkg syscall (freebsd-386), const SYS_READLINK = 58 +pkg syscall (freebsd-386), const SYS_READLINKAT = 500 +pkg syscall (freebsd-386), const SYS_READV = 120 +pkg syscall (freebsd-386), const SYS_REBOOT = 55 +pkg syscall (freebsd-386), const SYS_RECVFROM = 29 +pkg syscall (freebsd-386), const SYS_RECVMSG = 27 +pkg syscall (freebsd-386), const SYS_RENAME = 128 +pkg syscall (freebsd-386), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-386), const SYS_REVOKE = 56 +pkg syscall (freebsd-386), const SYS_RFORK = 251 +pkg syscall (freebsd-386), const SYS_RMDIR = 137 +pkg syscall (freebsd-386), const SYS_RTPRIO = 166 +pkg syscall (freebsd-386), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-386), const SYS_SBRK = 69 +pkg syscall (freebsd-386), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-386), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-386), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-386), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-386), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-386), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-386), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-386), const SYS_SELECT = 93 +pkg syscall (freebsd-386), const SYS_SENDFILE = 393 +pkg syscall (freebsd-386), const SYS_SENDMSG = 28 +pkg syscall (freebsd-386), const SYS_SENDTO = 133 +pkg syscall (freebsd-386), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-386), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-386), const SYS_SETAUID = 448 +pkg syscall (freebsd-386), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-386), const SYS_SETEGID = 182 +pkg syscall (freebsd-386), const SYS_SETEUID = 183 +pkg syscall (freebsd-386), const SYS_SETFIB = 175 +pkg syscall (freebsd-386), const SYS_SETGID = 181 +pkg syscall (freebsd-386), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-386), const SYS_SETITIMER = 83 +pkg syscall (freebsd-386), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-386), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-386), const SYS_SETPGID = 82 +pkg syscall (freebsd-386), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-386), const SYS_SETREGID = 127 +pkg syscall (freebsd-386), const SYS_SETRESGID = 312 +pkg syscall (freebsd-386), const SYS_SETRESUID = 311 +pkg syscall (freebsd-386), const SYS_SETREUID = 126 +pkg syscall (freebsd-386), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-386), const SYS_SETSID = 147 +pkg syscall (freebsd-386), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-386), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-386), const SYS_SETUID = 23 +pkg syscall (freebsd-386), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-386), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-386), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-386), const SYS_SIGACTION = 416 +pkg syscall (freebsd-386), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-386), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-386), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-386), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-386), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-386), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-386), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-386), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-386), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-386), const SYS_SOCKET = 97 +pkg syscall (freebsd-386), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-386), const SYS_SSTK = 70 +pkg syscall (freebsd-386), const SYS_STAT = 188 +pkg syscall (freebsd-386), const SYS_STATFS = 396 +pkg syscall (freebsd-386), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-386), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-386), const SYS_SWAPON = 85 +pkg syscall (freebsd-386), const SYS_SYMLINK = 57 +pkg syscall (freebsd-386), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-386), const SYS_SYNC = 36 +pkg syscall (freebsd-386), const SYS_SYSARCH = 165 +pkg syscall (freebsd-386), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-386), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-386), const SYS_THR_KILL = 433 +pkg syscall (freebsd-386), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-386), const SYS_THR_NEW = 455 +pkg syscall (freebsd-386), const SYS_THR_SELF = 432 +pkg syscall (freebsd-386), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-386), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-386), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-386), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-386), const SYS_UMASK = 60 +pkg syscall (freebsd-386), const SYS_UNDELETE = 205 +pkg syscall (freebsd-386), const SYS_UNLINK = 10 +pkg syscall (freebsd-386), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-386), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-386), const SYS_UTIMES = 138 +pkg syscall (freebsd-386), const SYS_UTRACE = 335 +pkg syscall (freebsd-386), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-386), const SYS_VFORK = 66 +pkg syscall (freebsd-386), const SYS_WAIT4 = 7 +pkg syscall (freebsd-386), const SYS_WAIT6 = 532 +pkg syscall (freebsd-386), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-386), const SYS_WRITE = 4 +pkg syscall (freebsd-386), const SYS_WRITEV = 121 +pkg syscall (freebsd-386), const SYS_YIELD = 321 +pkg syscall (freebsd-386), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-386), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-386), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-386), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-386), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-386), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-386), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-386), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-386), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-386), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-386), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-386), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-386), const SYS___GETCWD = 326 +pkg syscall (freebsd-386), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-386), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-386), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-386), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-386), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-386), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-386), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-386), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-386), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-386), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-386), const SYS___SETUGID = 374 +pkg syscall (freebsd-386), const SYS___SYSCTL = 202 +pkg syscall (freebsd-386), const S_IFMT = 61440 +pkg syscall (freebsd-386), const SizeofBpfHdr = 20 +pkg syscall (freebsd-386), const SizeofBpfInsn = 8 +pkg syscall (freebsd-386), const SizeofBpfProgram = 8 +pkg syscall (freebsd-386), const SizeofBpfStat = 8 +pkg syscall (freebsd-386), const SizeofBpfVersion = 4 +pkg syscall (freebsd-386), const SizeofBpfZbuf = 12 +pkg syscall (freebsd-386), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-386), const SizeofCmsghdr = 12 +pkg syscall (freebsd-386), const SizeofIPMreq = 8 +pkg syscall (freebsd-386), const SizeofIPMreqn = 12 +pkg syscall (freebsd-386), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-386), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-386), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofIfData = 80 +pkg syscall (freebsd-386), const SizeofIfMsghdr = 96 +pkg syscall (freebsd-386), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-386), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-386), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-386), const SizeofLinger = 8 +pkg syscall (freebsd-386), const SizeofMsghdr = 28 +pkg syscall (freebsd-386), const SizeofRtMetrics = 56 +pkg syscall (freebsd-386), const SizeofRtMsghdr = 92 +pkg syscall (freebsd-386), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-386), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-386), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-386), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-386), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-386), const TCIFLUSH = 1 +pkg syscall (freebsd-386), const TCIFLUSH ideal-int +pkg syscall (freebsd-386), const TCIOFLUSH = 3 +pkg syscall (freebsd-386), const TCIOFLUSH ideal-int +pkg syscall (freebsd-386), const TCOFLUSH = 2 +pkg syscall (freebsd-386), const TCOFLUSH ideal-int +pkg syscall (freebsd-386), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-386), const TCP_CONGESTION = 64 +pkg syscall (freebsd-386), const TCP_INFO = 32 +pkg syscall (freebsd-386), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-386), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-386), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-386), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-386), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-386), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-386), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-386), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-386), const TCP_MAXBURST = 4 +pkg syscall (freebsd-386), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-386), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-386), const TCP_MAXSEG = 2 +pkg syscall (freebsd-386), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-386), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-386), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-386), const TCP_MD5SIG = 16 +pkg syscall (freebsd-386), const TCP_MINMSS = 216 +pkg syscall (freebsd-386), const TCP_MSS = 536 +pkg syscall (freebsd-386), const TCP_NOOPT = 8 +pkg syscall (freebsd-386), const TCP_NOPUSH = 4 +pkg syscall (freebsd-386), const TCSAFLUSH = 2 +pkg syscall (freebsd-386), const TCSAFLUSH ideal-int +pkg syscall (freebsd-386), const TIOCCBRK = 536900730 +pkg syscall (freebsd-386), const TIOCCDTR = 536900728 +pkg syscall (freebsd-386), const TIOCCONS = 2147775586 +pkg syscall (freebsd-386), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-386), const TIOCEXCL = 536900621 +pkg syscall (freebsd-386), const TIOCEXT = 2147775584 +pkg syscall (freebsd-386), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-386), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-386), const TIOCGETA = 1076655123 +pkg syscall (freebsd-386), const TIOCGETD = 1074033690 +pkg syscall (freebsd-386), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-386), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-386), const TIOCGSID = 1074033763 +pkg syscall (freebsd-386), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-386), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-386), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-386), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-386), const TIOCMGET = 1074033770 +pkg syscall (freebsd-386), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-386), const TIOCMSET = 2147775597 +pkg syscall (freebsd-386), const TIOCM_CAR = 64 +pkg syscall (freebsd-386), const TIOCM_CD = 64 +pkg syscall (freebsd-386), const TIOCM_CTS = 32 +pkg syscall (freebsd-386), const TIOCM_DCD = 64 +pkg syscall (freebsd-386), const TIOCM_DSR = 256 +pkg syscall (freebsd-386), const TIOCM_DTR = 2 +pkg syscall (freebsd-386), const TIOCM_LE = 1 +pkg syscall (freebsd-386), const TIOCM_RI = 128 +pkg syscall (freebsd-386), const TIOCM_RNG = 128 +pkg syscall (freebsd-386), const TIOCM_RTS = 4 +pkg syscall (freebsd-386), const TIOCM_SR = 16 +pkg syscall (freebsd-386), const TIOCM_ST = 8 +pkg syscall (freebsd-386), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-386), const TIOCNXCL = 536900622 +pkg syscall (freebsd-386), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-386), const TIOCPKT = 2147775600 +pkg syscall (freebsd-386), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-386), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-386), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-386), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-386), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-386), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-386), const TIOCPKT_START = 8 +pkg syscall (freebsd-386), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-386), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-386), const TIOCSBRK = 536900731 +pkg syscall (freebsd-386), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-386), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-386), const TIOCSDTR = 536900729 +pkg syscall (freebsd-386), const TIOCSETA = 2150396948 +pkg syscall (freebsd-386), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-386), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-386), const TIOCSETD = 2147775515 +pkg syscall (freebsd-386), const TIOCSIG = 537162847 +pkg syscall (freebsd-386), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-386), const TIOCSTART = 536900718 +pkg syscall (freebsd-386), const TIOCSTAT = 536900709 +pkg syscall (freebsd-386), const TIOCSTI = 2147578994 +pkg syscall (freebsd-386), const TIOCSTOP = 536900719 +pkg syscall (freebsd-386), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-386), const TIOCTIMESTAMP = 1074295897 +pkg syscall (freebsd-386), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-386), const TOSTOP = 4194304 +pkg syscall (freebsd-386), const TOSTOP ideal-int +pkg syscall (freebsd-386), const VDISCARD = 15 +pkg syscall (freebsd-386), const VDISCARD ideal-int +pkg syscall (freebsd-386), const VDSUSP = 11 +pkg syscall (freebsd-386), const VDSUSP ideal-int +pkg syscall (freebsd-386), const VEOF = 0 +pkg syscall (freebsd-386), const VEOF ideal-int +pkg syscall (freebsd-386), const VEOL = 1 +pkg syscall (freebsd-386), const VEOL ideal-int +pkg syscall (freebsd-386), const VEOL2 = 2 +pkg syscall (freebsd-386), const VEOL2 ideal-int +pkg syscall (freebsd-386), const VERASE = 3 +pkg syscall (freebsd-386), const VERASE ideal-int +pkg syscall (freebsd-386), const VERASE2 = 7 +pkg syscall (freebsd-386), const VERASE2 ideal-int +pkg syscall (freebsd-386), const VINTR = 8 +pkg syscall (freebsd-386), const VINTR ideal-int +pkg syscall (freebsd-386), const VKILL = 5 +pkg syscall (freebsd-386), const VKILL ideal-int +pkg syscall (freebsd-386), const VLNEXT = 14 +pkg syscall (freebsd-386), const VLNEXT ideal-int +pkg syscall (freebsd-386), const VMIN = 16 +pkg syscall (freebsd-386), const VMIN ideal-int +pkg syscall (freebsd-386), const VQUIT = 9 +pkg syscall (freebsd-386), const VQUIT ideal-int +pkg syscall (freebsd-386), const VREPRINT = 6 +pkg syscall (freebsd-386), const VREPRINT ideal-int +pkg syscall (freebsd-386), const VSTART = 12 +pkg syscall (freebsd-386), const VSTART ideal-int +pkg syscall (freebsd-386), const VSTATUS = 18 +pkg syscall (freebsd-386), const VSTATUS ideal-int +pkg syscall (freebsd-386), const VSTOP = 13 +pkg syscall (freebsd-386), const VSTOP ideal-int +pkg syscall (freebsd-386), const VSUSP = 10 +pkg syscall (freebsd-386), const VSUSP ideal-int +pkg syscall (freebsd-386), const VTIME = 17 +pkg syscall (freebsd-386), const VTIME ideal-int +pkg syscall (freebsd-386), const VWERASE = 4 +pkg syscall (freebsd-386), const VWERASE ideal-int +pkg syscall (freebsd-386), const WCONTINUED = 4 +pkg syscall (freebsd-386), const WCOREFLAG = 128 +pkg syscall (freebsd-386), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-386), const WNOHANG = 1 +pkg syscall (freebsd-386), const WNOWAIT = 8 +pkg syscall (freebsd-386), const WSTOPPED = 2 +pkg syscall (freebsd-386), const WUNTRACED = 2 +pkg syscall (freebsd-386), func Fchflags(int, int) error +pkg syscall (freebsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-386), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-386), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-386-cgo), const AF_APPLETALK = 16 +pkg syscall (freebsd-386-cgo), const AF_ARP = 35 +pkg syscall (freebsd-386-cgo), const AF_ATM = 30 +pkg syscall (freebsd-386-cgo), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-386-cgo), const AF_CCITT = 10 +pkg syscall (freebsd-386-cgo), const AF_CHAOS = 5 +pkg syscall (freebsd-386-cgo), const AF_CNT = 21 +pkg syscall (freebsd-386-cgo), const AF_COIP = 20 +pkg syscall (freebsd-386-cgo), const AF_DATAKIT = 9 +pkg syscall (freebsd-386-cgo), const AF_DECnet = 12 +pkg syscall (freebsd-386-cgo), const AF_DLI = 13 +pkg syscall (freebsd-386-cgo), const AF_E164 = 26 +pkg syscall (freebsd-386-cgo), const AF_ECMA = 8 +pkg syscall (freebsd-386-cgo), const AF_HYLINK = 15 +pkg syscall (freebsd-386-cgo), const AF_IEEE80211 = 37 +pkg syscall (freebsd-386-cgo), const AF_IMPLINK = 3 +pkg syscall (freebsd-386-cgo), const AF_INET6 = 28 +pkg syscall (freebsd-386-cgo), const AF_IPX = 23 +pkg syscall (freebsd-386-cgo), const AF_ISDN = 26 +pkg syscall (freebsd-386-cgo), const AF_ISO = 7 +pkg syscall (freebsd-386-cgo), const AF_LAT = 14 +pkg syscall (freebsd-386-cgo), const AF_LINK = 18 +pkg syscall (freebsd-386-cgo), const AF_LOCAL = 1 +pkg syscall (freebsd-386-cgo), const AF_MAX = 38 +pkg syscall (freebsd-386-cgo), const AF_NATM = 29 +pkg syscall (freebsd-386-cgo), const AF_NETBIOS = 6 +pkg syscall (freebsd-386-cgo), const AF_NETGRAPH = 32 +pkg syscall (freebsd-386-cgo), const AF_OSI = 7 +pkg syscall (freebsd-386-cgo), const AF_PUP = 4 +pkg syscall (freebsd-386-cgo), const AF_ROUTE = 17 +pkg syscall (freebsd-386-cgo), const AF_SCLUSTER = 34 +pkg syscall (freebsd-386-cgo), const AF_SIP = 24 +pkg syscall (freebsd-386-cgo), const AF_SLOW = 33 +pkg syscall (freebsd-386-cgo), const AF_SNA = 11 +pkg syscall (freebsd-386-cgo), const AF_VENDOR00 = 39 +pkg syscall (freebsd-386-cgo), const AF_VENDOR01 = 41 +pkg syscall (freebsd-386-cgo), const AF_VENDOR02 = 43 +pkg syscall (freebsd-386-cgo), const AF_VENDOR03 = 45 +pkg syscall (freebsd-386-cgo), const AF_VENDOR04 = 47 +pkg syscall (freebsd-386-cgo), const AF_VENDOR05 = 49 +pkg syscall (freebsd-386-cgo), const AF_VENDOR06 = 51 +pkg syscall (freebsd-386-cgo), const AF_VENDOR07 = 53 +pkg syscall (freebsd-386-cgo), const AF_VENDOR08 = 55 +pkg syscall (freebsd-386-cgo), const AF_VENDOR09 = 57 +pkg syscall (freebsd-386-cgo), const AF_VENDOR10 = 59 +pkg syscall (freebsd-386-cgo), const AF_VENDOR11 = 61 +pkg syscall (freebsd-386-cgo), const AF_VENDOR12 = 63 +pkg syscall (freebsd-386-cgo), const AF_VENDOR13 = 65 +pkg syscall (freebsd-386-cgo), const AF_VENDOR14 = 67 +pkg syscall (freebsd-386-cgo), const AF_VENDOR15 = 69 +pkg syscall (freebsd-386-cgo), const AF_VENDOR16 = 71 +pkg syscall (freebsd-386-cgo), const AF_VENDOR17 = 73 +pkg syscall (freebsd-386-cgo), const AF_VENDOR18 = 75 +pkg syscall (freebsd-386-cgo), const AF_VENDOR19 = 77 +pkg syscall (freebsd-386-cgo), const AF_VENDOR20 = 79 +pkg syscall (freebsd-386-cgo), const AF_VENDOR21 = 81 +pkg syscall (freebsd-386-cgo), const AF_VENDOR22 = 83 +pkg syscall (freebsd-386-cgo), const AF_VENDOR23 = 85 +pkg syscall (freebsd-386-cgo), const AF_VENDOR24 = 87 +pkg syscall (freebsd-386-cgo), const AF_VENDOR25 = 89 +pkg syscall (freebsd-386-cgo), const AF_VENDOR26 = 91 +pkg syscall (freebsd-386-cgo), const AF_VENDOR27 = 93 +pkg syscall (freebsd-386-cgo), const AF_VENDOR28 = 95 +pkg syscall (freebsd-386-cgo), const AF_VENDOR29 = 97 +pkg syscall (freebsd-386-cgo), const AF_VENDOR30 = 99 +pkg syscall (freebsd-386-cgo), const AF_VENDOR31 = 101 +pkg syscall (freebsd-386-cgo), const AF_VENDOR32 = 103 +pkg syscall (freebsd-386-cgo), const AF_VENDOR33 = 105 +pkg syscall (freebsd-386-cgo), const AF_VENDOR34 = 107 +pkg syscall (freebsd-386-cgo), const AF_VENDOR35 = 109 +pkg syscall (freebsd-386-cgo), const AF_VENDOR36 = 111 +pkg syscall (freebsd-386-cgo), const AF_VENDOR37 = 113 +pkg syscall (freebsd-386-cgo), const AF_VENDOR38 = 115 +pkg syscall (freebsd-386-cgo), const AF_VENDOR39 = 117 +pkg syscall (freebsd-386-cgo), const AF_VENDOR40 = 119 +pkg syscall (freebsd-386-cgo), const AF_VENDOR41 = 121 +pkg syscall (freebsd-386-cgo), const AF_VENDOR42 = 123 +pkg syscall (freebsd-386-cgo), const AF_VENDOR43 = 125 +pkg syscall (freebsd-386-cgo), const AF_VENDOR44 = 127 +pkg syscall (freebsd-386-cgo), const AF_VENDOR45 = 129 +pkg syscall (freebsd-386-cgo), const AF_VENDOR46 = 131 +pkg syscall (freebsd-386-cgo), const AF_VENDOR47 = 133 +pkg syscall (freebsd-386-cgo), const B0 = 0 +pkg syscall (freebsd-386-cgo), const B110 = 110 +pkg syscall (freebsd-386-cgo), const B115200 = 115200 +pkg syscall (freebsd-386-cgo), const B1200 = 1200 +pkg syscall (freebsd-386-cgo), const B134 = 134 +pkg syscall (freebsd-386-cgo), const B14400 = 14400 +pkg syscall (freebsd-386-cgo), const B150 = 150 +pkg syscall (freebsd-386-cgo), const B1800 = 1800 +pkg syscall (freebsd-386-cgo), const B19200 = 19200 +pkg syscall (freebsd-386-cgo), const B200 = 200 +pkg syscall (freebsd-386-cgo), const B230400 = 230400 +pkg syscall (freebsd-386-cgo), const B2400 = 2400 +pkg syscall (freebsd-386-cgo), const B28800 = 28800 +pkg syscall (freebsd-386-cgo), const B300 = 300 +pkg syscall (freebsd-386-cgo), const B38400 = 38400 +pkg syscall (freebsd-386-cgo), const B460800 = 460800 +pkg syscall (freebsd-386-cgo), const B4800 = 4800 +pkg syscall (freebsd-386-cgo), const B50 = 50 +pkg syscall (freebsd-386-cgo), const B57600 = 57600 +pkg syscall (freebsd-386-cgo), const B600 = 600 +pkg syscall (freebsd-386-cgo), const B7200 = 7200 +pkg syscall (freebsd-386-cgo), const B75 = 75 +pkg syscall (freebsd-386-cgo), const B76800 = 76800 +pkg syscall (freebsd-386-cgo), const B921600 = 921600 +pkg syscall (freebsd-386-cgo), const B9600 = 9600 +pkg syscall (freebsd-386-cgo), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-386-cgo), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-386-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-386-cgo), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-386-cgo), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-386-cgo), const BIOCGDLTLIST = 3221766777 +pkg syscall (freebsd-386-cgo), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-386-cgo), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-386-cgo), const BIOCGETZMAX = 1074020991 +pkg syscall (freebsd-386-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-386-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-386-cgo), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (freebsd-386-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-386-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-386-cgo), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-386-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-386-cgo), const BIOCLOCK = 536887930 +pkg syscall (freebsd-386-cgo), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-386-cgo), const BIOCROTZBUF = 1074545280 +pkg syscall (freebsd-386-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-386-cgo), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-386-cgo), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-386-cgo), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-386-cgo), const BIOCSETF = 2148024935 +pkg syscall (freebsd-386-cgo), const BIOCSETFNR = 2148024962 +pkg syscall (freebsd-386-cgo), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-386-cgo), const BIOCSETWF = 2148024955 +pkg syscall (freebsd-386-cgo), const BIOCSETZBUF = 2148287105 +pkg syscall (freebsd-386-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-386-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-386-cgo), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (freebsd-386-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-386-cgo), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-386-cgo), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-386-cgo), const BPF_A = 16 +pkg syscall (freebsd-386-cgo), const BPF_ABS = 32 +pkg syscall (freebsd-386-cgo), const BPF_ADD = 0 +pkg syscall (freebsd-386-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (freebsd-386-cgo), const BPF_ALU = 4 +pkg syscall (freebsd-386-cgo), const BPF_AND = 80 +pkg syscall (freebsd-386-cgo), const BPF_B = 16 +pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-386-cgo), const BPF_DIV = 48 +pkg syscall (freebsd-386-cgo), const BPF_H = 8 +pkg syscall (freebsd-386-cgo), const BPF_IMM = 0 +pkg syscall (freebsd-386-cgo), const BPF_IND = 64 +pkg syscall (freebsd-386-cgo), const BPF_JA = 0 +pkg syscall (freebsd-386-cgo), const BPF_JEQ = 16 +pkg syscall (freebsd-386-cgo), const BPF_JGE = 48 +pkg syscall (freebsd-386-cgo), const BPF_JGT = 32 +pkg syscall (freebsd-386-cgo), const BPF_JMP = 5 +pkg syscall (freebsd-386-cgo), const BPF_JSET = 64 +pkg syscall (freebsd-386-cgo), const BPF_K = 0 +pkg syscall (freebsd-386-cgo), const BPF_LD = 0 +pkg syscall (freebsd-386-cgo), const BPF_LDX = 1 +pkg syscall (freebsd-386-cgo), const BPF_LEN = 128 +pkg syscall (freebsd-386-cgo), const BPF_LSH = 96 +pkg syscall (freebsd-386-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-386-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-386-cgo), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-386-cgo), const BPF_MEM = 96 +pkg syscall (freebsd-386-cgo), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-386-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-386-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-386-cgo), const BPF_MISC = 7 +pkg syscall (freebsd-386-cgo), const BPF_MSH = 160 +pkg syscall (freebsd-386-cgo), const BPF_MUL = 32 +pkg syscall (freebsd-386-cgo), const BPF_NEG = 128 +pkg syscall (freebsd-386-cgo), const BPF_OR = 64 +pkg syscall (freebsd-386-cgo), const BPF_RELEASE = 199606 +pkg syscall (freebsd-386-cgo), const BPF_RET = 6 +pkg syscall (freebsd-386-cgo), const BPF_RSH = 112 +pkg syscall (freebsd-386-cgo), const BPF_ST = 2 +pkg syscall (freebsd-386-cgo), const BPF_STX = 3 +pkg syscall (freebsd-386-cgo), const BPF_SUB = 16 +pkg syscall (freebsd-386-cgo), const BPF_TAX = 0 +pkg syscall (freebsd-386-cgo), const BPF_TXA = 128 +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-386-cgo), const BPF_T_FAST = 256 +pkg syscall (freebsd-386-cgo), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-386-cgo), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-386-cgo), const BPF_T_NONE = 3 +pkg syscall (freebsd-386-cgo), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-386-cgo), const BPF_W = 0 +pkg syscall (freebsd-386-cgo), const BPF_X = 8 +pkg syscall (freebsd-386-cgo), const BRKINT = 2 +pkg syscall (freebsd-386-cgo), const CFLUSH = 15 +pkg syscall (freebsd-386-cgo), const CLOCAL = 32768 +pkg syscall (freebsd-386-cgo), const CREAD = 2048 +pkg syscall (freebsd-386-cgo), const CS5 = 0 +pkg syscall (freebsd-386-cgo), const CS6 = 256 +pkg syscall (freebsd-386-cgo), const CS7 = 512 +pkg syscall (freebsd-386-cgo), const CS8 = 768 +pkg syscall (freebsd-386-cgo), const CSIZE = 768 +pkg syscall (freebsd-386-cgo), const CSTART = 17 +pkg syscall (freebsd-386-cgo), const CSTATUS = 20 +pkg syscall (freebsd-386-cgo), const CSTOP = 19 +pkg syscall (freebsd-386-cgo), const CSTOPB = 1024 +pkg syscall (freebsd-386-cgo), const CSUSP = 26 +pkg syscall (freebsd-386-cgo), const CTL_MAXNAME = 24 +pkg syscall (freebsd-386-cgo), const CTL_NET = 4 +pkg syscall (freebsd-386-cgo), const DLT_A429 = 184 +pkg syscall (freebsd-386-cgo), const DLT_A653_ICM = 185 +pkg syscall (freebsd-386-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-386-cgo), const DLT_AOS = 222 +pkg syscall (freebsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-386-cgo), const DLT_ARCNET = 7 +pkg syscall (freebsd-386-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-386-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-386-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-386-cgo), const DLT_AURORA = 126 +pkg syscall (freebsd-386-cgo), const DLT_AX25 = 3 +pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-386-cgo), const DLT_CAN20B = 190 +pkg syscall (freebsd-386-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-386-cgo), const DLT_CHAOS = 5 +pkg syscall (freebsd-386-cgo), const DLT_CHDLC = 104 +pkg syscall (freebsd-386-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-386-cgo), const DLT_C_HDLC = 104 +pkg syscall (freebsd-386-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-386-cgo), const DLT_DBUS = 231 +pkg syscall (freebsd-386-cgo), const DLT_DECT = 221 +pkg syscall (freebsd-386-cgo), const DLT_DOCSIS = 143 +pkg syscall (freebsd-386-cgo), const DLT_DVB_CI = 235 +pkg syscall (freebsd-386-cgo), const DLT_ECONET = 115 +pkg syscall (freebsd-386-cgo), const DLT_EN10MB = 1 +pkg syscall (freebsd-386-cgo), const DLT_EN3MB = 2 +pkg syscall (freebsd-386-cgo), const DLT_ENC = 109 +pkg syscall (freebsd-386-cgo), const DLT_ERF = 197 +pkg syscall (freebsd-386-cgo), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-386-cgo), const DLT_ERF_POS = 176 +pkg syscall (freebsd-386-cgo), const DLT_FC_2 = 224 +pkg syscall (freebsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-386-cgo), const DLT_FDDI = 10 +pkg syscall (freebsd-386-cgo), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-386-cgo), const DLT_FRELAY = 107 +pkg syscall (freebsd-386-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-386-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-386-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-386-cgo), const DLT_GPF_F = 171 +pkg syscall (freebsd-386-cgo), const DLT_GPF_T = 170 +pkg syscall (freebsd-386-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-386-cgo), const DLT_HHDLC = 121 +pkg syscall (freebsd-386-cgo), const DLT_IBM_SN = 146 +pkg syscall (freebsd-386-cgo), const DLT_IBM_SP = 145 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802 = 6 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-386-cgo), const DLT_IPFILTER = 116 +pkg syscall (freebsd-386-cgo), const DLT_IPMB = 199 +pkg syscall (freebsd-386-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-386-cgo), const DLT_IPNET = 226 +pkg syscall (freebsd-386-cgo), const DLT_IPOIB = 242 +pkg syscall (freebsd-386-cgo), const DLT_IPV4 = 228 +pkg syscall (freebsd-386-cgo), const DLT_IPV6 = 229 +pkg syscall (freebsd-386-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-386-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-386-cgo), const DLT_LAPD = 203 +pkg syscall (freebsd-386-cgo), const DLT_LIN = 212 +pkg syscall (freebsd-386-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-386-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-386-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-386-cgo), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-386-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-386-cgo), const DLT_LOOP = 108 +pkg syscall (freebsd-386-cgo), const DLT_LTALK = 114 +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-386-cgo), const DLT_MFR = 182 +pkg syscall (freebsd-386-cgo), const DLT_MOST = 211 +pkg syscall (freebsd-386-cgo), const DLT_MPLS = 219 +pkg syscall (freebsd-386-cgo), const DLT_MTP2 = 140 +pkg syscall (freebsd-386-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-386-cgo), const DLT_MTP3 = 141 +pkg syscall (freebsd-386-cgo), const DLT_MUX27010 = 236 +pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-386-cgo), const DLT_NFLOG = 239 +pkg syscall (freebsd-386-cgo), const DLT_NULL = 0 +pkg syscall (freebsd-386-cgo), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-386-cgo), const DLT_PFLOG = 117 +pkg syscall (freebsd-386-cgo), const DLT_PFSYNC = 121 +pkg syscall (freebsd-386-cgo), const DLT_PPI = 192 +pkg syscall (freebsd-386-cgo), const DLT_PPP = 9 +pkg syscall (freebsd-386-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-386-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-386-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-386-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-386-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-386-cgo), const DLT_PRONET = 4 +pkg syscall (freebsd-386-cgo), const DLT_RAIF1 = 198 +pkg syscall (freebsd-386-cgo), const DLT_RAW = 12 +pkg syscall (freebsd-386-cgo), const DLT_RIO = 124 +pkg syscall (freebsd-386-cgo), const DLT_SCCP = 142 +pkg syscall (freebsd-386-cgo), const DLT_SITA = 196 +pkg syscall (freebsd-386-cgo), const DLT_SLIP = 8 +pkg syscall (freebsd-386-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-386-cgo), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-386-cgo), const DLT_SUNATM = 123 +pkg syscall (freebsd-386-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-386-cgo), const DLT_TZSP = 128 +pkg syscall (freebsd-386-cgo), const DLT_USB = 186 +pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-386-cgo), const DLT_USER0 = 147 +pkg syscall (freebsd-386-cgo), const DLT_USER1 = 148 +pkg syscall (freebsd-386-cgo), const DLT_USER10 = 157 +pkg syscall (freebsd-386-cgo), const DLT_USER11 = 158 +pkg syscall (freebsd-386-cgo), const DLT_USER12 = 159 +pkg syscall (freebsd-386-cgo), const DLT_USER13 = 160 +pkg syscall (freebsd-386-cgo), const DLT_USER14 = 161 +pkg syscall (freebsd-386-cgo), const DLT_USER15 = 162 +pkg syscall (freebsd-386-cgo), const DLT_USER2 = 149 +pkg syscall (freebsd-386-cgo), const DLT_USER3 = 150 +pkg syscall (freebsd-386-cgo), const DLT_USER4 = 151 +pkg syscall (freebsd-386-cgo), const DLT_USER5 = 152 +pkg syscall (freebsd-386-cgo), const DLT_USER6 = 153 +pkg syscall (freebsd-386-cgo), const DLT_USER7 = 154 +pkg syscall (freebsd-386-cgo), const DLT_USER8 = 155 +pkg syscall (freebsd-386-cgo), const DLT_USER9 = 156 +pkg syscall (freebsd-386-cgo), const DLT_WIHART = 223 +pkg syscall (freebsd-386-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-386-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-386-cgo), const DT_BLK = 6 +pkg syscall (freebsd-386-cgo), const DT_CHR = 2 +pkg syscall (freebsd-386-cgo), const DT_DIR = 4 +pkg syscall (freebsd-386-cgo), const DT_FIFO = 1 +pkg syscall (freebsd-386-cgo), const DT_LNK = 10 +pkg syscall (freebsd-386-cgo), const DT_REG = 8 +pkg syscall (freebsd-386-cgo), const DT_SOCK = 12 +pkg syscall (freebsd-386-cgo), const DT_UNKNOWN = 0 +pkg syscall (freebsd-386-cgo), const DT_WHT = 14 +pkg syscall (freebsd-386-cgo), const E2BIG = 7 +pkg syscall (freebsd-386-cgo), const EACCES = 13 +pkg syscall (freebsd-386-cgo), const EADDRINUSE = 48 +pkg syscall (freebsd-386-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-386-cgo), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-386-cgo), const EAGAIN = 35 +pkg syscall (freebsd-386-cgo), const EALREADY = 37 +pkg syscall (freebsd-386-cgo), const EAUTH = 80 +pkg syscall (freebsd-386-cgo), const EBADF = 9 +pkg syscall (freebsd-386-cgo), const EBADMSG = 89 +pkg syscall (freebsd-386-cgo), const EBADRPC = 72 +pkg syscall (freebsd-386-cgo), const EBUSY = 16 +pkg syscall (freebsd-386-cgo), const ECANCELED = 85 +pkg syscall (freebsd-386-cgo), const ECAPMODE = 94 +pkg syscall (freebsd-386-cgo), const ECHILD = 10 +pkg syscall (freebsd-386-cgo), const ECHO = 8 +pkg syscall (freebsd-386-cgo), const ECHOCTL = 64 +pkg syscall (freebsd-386-cgo), const ECHOE = 2 +pkg syscall (freebsd-386-cgo), const ECHOK = 4 +pkg syscall (freebsd-386-cgo), const ECHOKE = 1 +pkg syscall (freebsd-386-cgo), const ECHONL = 16 +pkg syscall (freebsd-386-cgo), const ECHOPRT = 32 +pkg syscall (freebsd-386-cgo), const ECONNABORTED = 53 +pkg syscall (freebsd-386-cgo), const ECONNREFUSED = 61 +pkg syscall (freebsd-386-cgo), const ECONNRESET = 54 +pkg syscall (freebsd-386-cgo), const EDEADLK = 11 +pkg syscall (freebsd-386-cgo), const EDESTADDRREQ = 39 +pkg syscall (freebsd-386-cgo), const EDOM = 33 +pkg syscall (freebsd-386-cgo), const EDOOFUS = 88 +pkg syscall (freebsd-386-cgo), const EDQUOT = 69 +pkg syscall (freebsd-386-cgo), const EEXIST = 17 +pkg syscall (freebsd-386-cgo), const EFAULT = 14 +pkg syscall (freebsd-386-cgo), const EFBIG = 27 +pkg syscall (freebsd-386-cgo), const EFTYPE = 79 +pkg syscall (freebsd-386-cgo), const EHOSTDOWN = 64 +pkg syscall (freebsd-386-cgo), const EHOSTUNREACH = 65 +pkg syscall (freebsd-386-cgo), const EIDRM = 82 +pkg syscall (freebsd-386-cgo), const EILSEQ = 86 +pkg syscall (freebsd-386-cgo), const EINPROGRESS = 36 +pkg syscall (freebsd-386-cgo), const EINTR = 4 +pkg syscall (freebsd-386-cgo), const EINVAL = 22 +pkg syscall (freebsd-386-cgo), const EIO = 5 +pkg syscall (freebsd-386-cgo), const EISCONN = 56 +pkg syscall (freebsd-386-cgo), const EISDIR = 21 +pkg syscall (freebsd-386-cgo), const ELAST = 94 +pkg syscall (freebsd-386-cgo), const ELOOP = 62 +pkg syscall (freebsd-386-cgo), const EMFILE = 24 +pkg syscall (freebsd-386-cgo), const EMLINK = 31 +pkg syscall (freebsd-386-cgo), const EMSGSIZE = 40 +pkg syscall (freebsd-386-cgo), const EMULTIHOP = 90 +pkg syscall (freebsd-386-cgo), const ENAMETOOLONG = 63 +pkg syscall (freebsd-386-cgo), const ENEEDAUTH = 81 +pkg syscall (freebsd-386-cgo), const ENETDOWN = 50 +pkg syscall (freebsd-386-cgo), const ENETRESET = 52 +pkg syscall (freebsd-386-cgo), const ENETUNREACH = 51 +pkg syscall (freebsd-386-cgo), const ENFILE = 23 +pkg syscall (freebsd-386-cgo), const ENOATTR = 87 +pkg syscall (freebsd-386-cgo), const ENOBUFS = 55 +pkg syscall (freebsd-386-cgo), const ENODEV = 19 +pkg syscall (freebsd-386-cgo), const ENOEXEC = 8 +pkg syscall (freebsd-386-cgo), const ENOLCK = 77 +pkg syscall (freebsd-386-cgo), const ENOLINK = 91 +pkg syscall (freebsd-386-cgo), const ENOMEM = 12 +pkg syscall (freebsd-386-cgo), const ENOMSG = 83 +pkg syscall (freebsd-386-cgo), const ENOPROTOOPT = 42 +pkg syscall (freebsd-386-cgo), const ENOSPC = 28 +pkg syscall (freebsd-386-cgo), const ENOSYS = 78 +pkg syscall (freebsd-386-cgo), const ENOTBLK = 15 +pkg syscall (freebsd-386-cgo), const ENOTCAPABLE = 93 +pkg syscall (freebsd-386-cgo), const ENOTCONN = 57 +pkg syscall (freebsd-386-cgo), const ENOTDIR = 20 +pkg syscall (freebsd-386-cgo), const ENOTEMPTY = 66 +pkg syscall (freebsd-386-cgo), const ENOTSOCK = 38 +pkg syscall (freebsd-386-cgo), const ENOTSUP = 45 +pkg syscall (freebsd-386-cgo), const ENOTTY = 25 +pkg syscall (freebsd-386-cgo), const ENXIO = 6 +pkg syscall (freebsd-386-cgo), const EOPNOTSUPP = 45 +pkg syscall (freebsd-386-cgo), const EOVERFLOW = 84 +pkg syscall (freebsd-386-cgo), const EPERM = 1 +pkg syscall (freebsd-386-cgo), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-386-cgo), const EPIPE = 32 +pkg syscall (freebsd-386-cgo), const EPROCLIM = 67 +pkg syscall (freebsd-386-cgo), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-386-cgo), const EPROGMISMATCH = 75 +pkg syscall (freebsd-386-cgo), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-386-cgo), const EPROTO = 92 +pkg syscall (freebsd-386-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-386-cgo), const EPROTOTYPE = 41 +pkg syscall (freebsd-386-cgo), const ERANGE = 34 +pkg syscall (freebsd-386-cgo), const EREMOTE = 71 +pkg syscall (freebsd-386-cgo), const EROFS = 30 +pkg syscall (freebsd-386-cgo), const ERPCMISMATCH = 73 +pkg syscall (freebsd-386-cgo), const ESHUTDOWN = 58 +pkg syscall (freebsd-386-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-386-cgo), const ESPIPE = 29 +pkg syscall (freebsd-386-cgo), const ESRCH = 3 +pkg syscall (freebsd-386-cgo), const ESTALE = 70 +pkg syscall (freebsd-386-cgo), const ETIMEDOUT = 60 +pkg syscall (freebsd-386-cgo), const ETOOMANYREFS = 59 +pkg syscall (freebsd-386-cgo), const ETXTBSY = 26 +pkg syscall (freebsd-386-cgo), const EUSERS = 68 +pkg syscall (freebsd-386-cgo), const EVFILT_AIO = -3 +pkg syscall (freebsd-386-cgo), const EVFILT_FS = -9 +pkg syscall (freebsd-386-cgo), const EVFILT_LIO = -10 +pkg syscall (freebsd-386-cgo), const EVFILT_PROC = -5 +pkg syscall (freebsd-386-cgo), const EVFILT_READ = -1 +pkg syscall (freebsd-386-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-386-cgo), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-386-cgo), const EVFILT_TIMER = -7 +pkg syscall (freebsd-386-cgo), const EVFILT_USER = -11 +pkg syscall (freebsd-386-cgo), const EVFILT_VNODE = -4 +pkg syscall (freebsd-386-cgo), const EVFILT_WRITE = -2 +pkg syscall (freebsd-386-cgo), const EV_ADD = 1 +pkg syscall (freebsd-386-cgo), const EV_CLEAR = 32 +pkg syscall (freebsd-386-cgo), const EV_DELETE = 2 +pkg syscall (freebsd-386-cgo), const EV_DISABLE = 8 +pkg syscall (freebsd-386-cgo), const EV_DISPATCH = 128 +pkg syscall (freebsd-386-cgo), const EV_ENABLE = 4 +pkg syscall (freebsd-386-cgo), const EV_EOF = 32768 +pkg syscall (freebsd-386-cgo), const EV_ERROR = 16384 +pkg syscall (freebsd-386-cgo), const EV_FLAG1 = 8192 +pkg syscall (freebsd-386-cgo), const EV_ONESHOT = 16 +pkg syscall (freebsd-386-cgo), const EV_RECEIPT = 64 +pkg syscall (freebsd-386-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-386-cgo), const EWOULDBLOCK = 35 +pkg syscall (freebsd-386-cgo), const EXDEV = 18 +pkg syscall (freebsd-386-cgo), const EXTA = 19200 +pkg syscall (freebsd-386-cgo), const EXTB = 38400 +pkg syscall (freebsd-386-cgo), const EXTPROC = 2048 +pkg syscall (freebsd-386-cgo), const FD_CLOEXEC = 1 +pkg syscall (freebsd-386-cgo), const FD_SETSIZE = 1024 +pkg syscall (freebsd-386-cgo), const FLUSHO = 8388608 +pkg syscall (freebsd-386-cgo), const F_CANCEL = 5 +pkg syscall (freebsd-386-cgo), const F_DUP2FD = 10 +pkg syscall (freebsd-386-cgo), const F_DUPFD = 0 +pkg syscall (freebsd-386-cgo), const F_GETFD = 1 +pkg syscall (freebsd-386-cgo), const F_GETFL = 3 +pkg syscall (freebsd-386-cgo), const F_GETLK = 11 +pkg syscall (freebsd-386-cgo), const F_GETOWN = 5 +pkg syscall (freebsd-386-cgo), const F_OGETLK = 7 +pkg syscall (freebsd-386-cgo), const F_OK = 0 +pkg syscall (freebsd-386-cgo), const F_OSETLK = 8 +pkg syscall (freebsd-386-cgo), const F_OSETLKW = 9 +pkg syscall (freebsd-386-cgo), const F_RDAHEAD = 16 +pkg syscall (freebsd-386-cgo), const F_RDLCK = 1 +pkg syscall (freebsd-386-cgo), const F_READAHEAD = 15 +pkg syscall (freebsd-386-cgo), const F_SETFD = 2 +pkg syscall (freebsd-386-cgo), const F_SETFL = 4 +pkg syscall (freebsd-386-cgo), const F_SETLK = 12 +pkg syscall (freebsd-386-cgo), const F_SETLKW = 13 +pkg syscall (freebsd-386-cgo), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-386-cgo), const F_SETOWN = 6 +pkg syscall (freebsd-386-cgo), const F_UNLCK = 2 +pkg syscall (freebsd-386-cgo), const F_UNLCKSYS = 4 +pkg syscall (freebsd-386-cgo), const F_WRLCK = 3 +pkg syscall (freebsd-386-cgo), const HUPCL = 16384 +pkg syscall (freebsd-386-cgo), const ICANON = 256 +pkg syscall (freebsd-386-cgo), const ICRNL = 256 +pkg syscall (freebsd-386-cgo), const IEXTEN = 1024 +pkg syscall (freebsd-386-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-386-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-386-cgo), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-386-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-386-cgo), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-386-cgo), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-386-cgo), const IFF_DEBUG = 4 +pkg syscall (freebsd-386-cgo), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-386-cgo), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-386-cgo), const IFF_DYING = 2097152 +pkg syscall (freebsd-386-cgo), const IFF_LINK0 = 4096 +pkg syscall (freebsd-386-cgo), const IFF_LINK1 = 8192 +pkg syscall (freebsd-386-cgo), const IFF_LINK2 = 16384 +pkg syscall (freebsd-386-cgo), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-386-cgo), const IFF_MONITOR = 262144 +pkg syscall (freebsd-386-cgo), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-386-cgo), const IFF_NOARP = 128 +pkg syscall (freebsd-386-cgo), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-386-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-386-cgo), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-386-cgo), const IFF_PROMISC = 256 +pkg syscall (freebsd-386-cgo), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-386-cgo), const IFF_RUNNING = 64 +pkg syscall (freebsd-386-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-386-cgo), const IFF_SMART = 32 +pkg syscall (freebsd-386-cgo), const IFF_STATICARP = 524288 +pkg syscall (freebsd-386-cgo), const IFNAMSIZ = 16 +pkg syscall (freebsd-386-cgo), const IFT_1822 = 2 +pkg syscall (freebsd-386-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-386-cgo), const IFT_AAL2 = 187 +pkg syscall (freebsd-386-cgo), const IFT_AAL5 = 49 +pkg syscall (freebsd-386-cgo), const IFT_ADSL = 94 +pkg syscall (freebsd-386-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-386-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-386-cgo), const IFT_ARAP = 88 +pkg syscall (freebsd-386-cgo), const IFT_ARCNET = 35 +pkg syscall (freebsd-386-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-386-cgo), const IFT_ASYNC = 84 +pkg syscall (freebsd-386-cgo), const IFT_ATM = 37 +pkg syscall (freebsd-386-cgo), const IFT_ATMDXI = 105 +pkg syscall (freebsd-386-cgo), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-386-cgo), const IFT_ATMIMA = 107 +pkg syscall (freebsd-386-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-386-cgo), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-386-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-386-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-386-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-386-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-386-cgo), const IFT_BRIDGE = 209 +pkg syscall (freebsd-386-cgo), const IFT_BSC = 83 +pkg syscall (freebsd-386-cgo), const IFT_CARP = 248 +pkg syscall (freebsd-386-cgo), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-386-cgo), const IFT_CEPT = 19 +pkg syscall (freebsd-386-cgo), const IFT_CES = 133 +pkg syscall (freebsd-386-cgo), const IFT_CHANNEL = 70 +pkg syscall (freebsd-386-cgo), const IFT_CNR = 85 +pkg syscall (freebsd-386-cgo), const IFT_COFFEE = 132 +pkg syscall (freebsd-386-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-386-cgo), const IFT_DCN = 141 +pkg syscall (freebsd-386-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-386-cgo), const IFT_DLSW = 74 +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-386-cgo), const IFT_DS0 = 81 +pkg syscall (freebsd-386-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-386-cgo), const IFT_DS1FDL = 170 +pkg syscall (freebsd-386-cgo), const IFT_DS3 = 30 +pkg syscall (freebsd-386-cgo), const IFT_DTM = 140 +pkg syscall (freebsd-386-cgo), const IFT_DVBASILN = 172 +pkg syscall (freebsd-386-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-386-cgo), const IFT_ENC = 244 +pkg syscall (freebsd-386-cgo), const IFT_EON = 25 +pkg syscall (freebsd-386-cgo), const IFT_EPLRS = 87 +pkg syscall (freebsd-386-cgo), const IFT_ESCON = 73 +pkg syscall (freebsd-386-cgo), const IFT_ETHER = 6 +pkg syscall (freebsd-386-cgo), const IFT_FAITH = 242 +pkg syscall (freebsd-386-cgo), const IFT_FAST = 125 +pkg syscall (freebsd-386-cgo), const IFT_FASTETHER = 62 +pkg syscall (freebsd-386-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-386-cgo), const IFT_FDDI = 15 +pkg syscall (freebsd-386-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-386-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-386-cgo), const IFT_FRELAY = 32 +pkg syscall (freebsd-386-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-386-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-386-cgo), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-386-cgo), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-386-cgo), const IFT_G703AT64K = 66 +pkg syscall (freebsd-386-cgo), const IFT_GIF = 240 +pkg syscall (freebsd-386-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-386-cgo), const IFT_GR303IDT = 178 +pkg syscall (freebsd-386-cgo), const IFT_GR303RDT = 177 +pkg syscall (freebsd-386-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-386-cgo), const IFT_H323PROXY = 165 +pkg syscall (freebsd-386-cgo), const IFT_HDH1822 = 3 +pkg syscall (freebsd-386-cgo), const IFT_HDLC = 118 +pkg syscall (freebsd-386-cgo), const IFT_HDSL2 = 168 +pkg syscall (freebsd-386-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-386-cgo), const IFT_HIPPI = 47 +pkg syscall (freebsd-386-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-386-cgo), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-386-cgo), const IFT_HSSI = 46 +pkg syscall (freebsd-386-cgo), const IFT_HY = 14 +pkg syscall (freebsd-386-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-386-cgo), const IFT_IDSL = 154 +pkg syscall (freebsd-386-cgo), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-386-cgo), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-386-cgo), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-386-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-386-cgo), const IFT_IFGSN = 145 +pkg syscall (freebsd-386-cgo), const IFT_IMT = 190 +pkg syscall (freebsd-386-cgo), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-386-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-386-cgo), const IFT_IP = 126 +pkg syscall (freebsd-386-cgo), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-386-cgo), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-386-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-386-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-386-cgo), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-386-cgo), const IFT_IPXIP = 249 +pkg syscall (freebsd-386-cgo), const IFT_ISDN = 63 +pkg syscall (freebsd-386-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-386-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-386-cgo), const IFT_ISDNS = 75 +pkg syscall (freebsd-386-cgo), const IFT_ISDNU = 76 +pkg syscall (freebsd-386-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-386-cgo), const IFT_ISO88023 = 7 +pkg syscall (freebsd-386-cgo), const IFT_ISO88024 = 8 +pkg syscall (freebsd-386-cgo), const IFT_ISO88025 = 9 +pkg syscall (freebsd-386-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-386-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-386-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-386-cgo), const IFT_ISO88026 = 10 +pkg syscall (freebsd-386-cgo), const IFT_ISUP = 179 +pkg syscall (freebsd-386-cgo), const IFT_L2VLAN = 135 +pkg syscall (freebsd-386-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-386-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-386-cgo), const IFT_LAPB = 16 +pkg syscall (freebsd-386-cgo), const IFT_LAPD = 77 +pkg syscall (freebsd-386-cgo), const IFT_LAPF = 119 +pkg syscall (freebsd-386-cgo), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-386-cgo), const IFT_LOOP = 24 +pkg syscall (freebsd-386-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-386-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-386-cgo), const IFT_MIOX25 = 38 +pkg syscall (freebsd-386-cgo), const IFT_MODEM = 48 +pkg syscall (freebsd-386-cgo), const IFT_MPC = 113 +pkg syscall (freebsd-386-cgo), const IFT_MPLS = 166 +pkg syscall (freebsd-386-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-386-cgo), const IFT_MSDSL = 143 +pkg syscall (freebsd-386-cgo), const IFT_MVL = 191 +pkg syscall (freebsd-386-cgo), const IFT_MYRINET = 99 +pkg syscall (freebsd-386-cgo), const IFT_NFAS = 175 +pkg syscall (freebsd-386-cgo), const IFT_NSIP = 27 +pkg syscall (freebsd-386-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-386-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-386-cgo), const IFT_OTHER = 1 +pkg syscall (freebsd-386-cgo), const IFT_P10 = 12 +pkg syscall (freebsd-386-cgo), const IFT_P80 = 13 +pkg syscall (freebsd-386-cgo), const IFT_PARA = 34 +pkg syscall (freebsd-386-cgo), const IFT_PFLOG = 246 +pkg syscall (freebsd-386-cgo), const IFT_PFSYNC = 247 +pkg syscall (freebsd-386-cgo), const IFT_PLC = 174 +pkg syscall (freebsd-386-cgo), const IFT_POS = 171 +pkg syscall (freebsd-386-cgo), const IFT_PPP = 23 +pkg syscall (freebsd-386-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-386-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-386-cgo), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-386-cgo), const IFT_PROPMUX = 54 +pkg syscall (freebsd-386-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-386-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-386-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-386-cgo), const IFT_PVC = 241 +pkg syscall (freebsd-386-cgo), const IFT_QLLC = 68 +pkg syscall (freebsd-386-cgo), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-386-cgo), const IFT_RADSL = 95 +pkg syscall (freebsd-386-cgo), const IFT_REACHDSL = 192 +pkg syscall (freebsd-386-cgo), const IFT_RFC1483 = 159 +pkg syscall (freebsd-386-cgo), const IFT_RS232 = 33 +pkg syscall (freebsd-386-cgo), const IFT_RSRB = 79 +pkg syscall (freebsd-386-cgo), const IFT_SDLC = 17 +pkg syscall (freebsd-386-cgo), const IFT_SDSL = 96 +pkg syscall (freebsd-386-cgo), const IFT_SHDSL = 169 +pkg syscall (freebsd-386-cgo), const IFT_SIP = 31 +pkg syscall (freebsd-386-cgo), const IFT_SLIP = 28 +pkg syscall (freebsd-386-cgo), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-386-cgo), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-386-cgo), const IFT_SONET = 39 +pkg syscall (freebsd-386-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-386-cgo), const IFT_SONETPATH = 50 +pkg syscall (freebsd-386-cgo), const IFT_SONETVT = 51 +pkg syscall (freebsd-386-cgo), const IFT_SRP = 151 +pkg syscall (freebsd-386-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-386-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-386-cgo), const IFT_STARLAN = 11 +pkg syscall (freebsd-386-cgo), const IFT_STF = 215 +pkg syscall (freebsd-386-cgo), const IFT_T1 = 18 +pkg syscall (freebsd-386-cgo), const IFT_TDLC = 116 +pkg syscall (freebsd-386-cgo), const IFT_TERMPAD = 91 +pkg syscall (freebsd-386-cgo), const IFT_TR008 = 176 +pkg syscall (freebsd-386-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-386-cgo), const IFT_TUNNEL = 131 +pkg syscall (freebsd-386-cgo), const IFT_ULTRA = 29 +pkg syscall (freebsd-386-cgo), const IFT_USB = 160 +pkg syscall (freebsd-386-cgo), const IFT_V11 = 64 +pkg syscall (freebsd-386-cgo), const IFT_V35 = 45 +pkg syscall (freebsd-386-cgo), const IFT_V36 = 65 +pkg syscall (freebsd-386-cgo), const IFT_V37 = 120 +pkg syscall (freebsd-386-cgo), const IFT_VDSL = 97 +pkg syscall (freebsd-386-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-386-cgo), const IFT_VOICEEM = 100 +pkg syscall (freebsd-386-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-386-cgo), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-386-cgo), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-386-cgo), const IFT_X213 = 93 +pkg syscall (freebsd-386-cgo), const IFT_X25 = 5 +pkg syscall (freebsd-386-cgo), const IFT_X25DDN = 4 +pkg syscall (freebsd-386-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-386-cgo), const IFT_X25MLP = 121 +pkg syscall (freebsd-386-cgo), const IFT_X25PLE = 40 +pkg syscall (freebsd-386-cgo), const IFT_XETHER = 26 +pkg syscall (freebsd-386-cgo), const IGNBRK = 1 +pkg syscall (freebsd-386-cgo), const IGNCR = 128 +pkg syscall (freebsd-386-cgo), const IGNPAR = 4 +pkg syscall (freebsd-386-cgo), const IMAXBEL = 8192 +pkg syscall (freebsd-386-cgo), const INLCR = 64 +pkg syscall (freebsd-386-cgo), const INPCK = 16 +pkg syscall (freebsd-386-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-386-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-386-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-386-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-386-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-386-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-386-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-386-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-386-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-386-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-386-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-386-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-386-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-386-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-386-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-386-cgo), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-386-cgo), const IPPROTO_3PC = 34 +pkg syscall (freebsd-386-cgo), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-386-cgo), const IPPROTO_AH = 51 +pkg syscall (freebsd-386-cgo), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-386-cgo), const IPPROTO_APES = 99 +pkg syscall (freebsd-386-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-386-cgo), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-386-cgo), const IPPROTO_BHA = 49 +pkg syscall (freebsd-386-cgo), const IPPROTO_BLT = 30 +pkg syscall (freebsd-386-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-386-cgo), const IPPROTO_CARP = 112 +pkg syscall (freebsd-386-cgo), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-386-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-386-cgo), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-386-cgo), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-386-cgo), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-386-cgo), const IPPROTO_DDP = 37 +pkg syscall (freebsd-386-cgo), const IPPROTO_DGP = 86 +pkg syscall (freebsd-386-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-386-cgo), const IPPROTO_DONE = 257 +pkg syscall (freebsd-386-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-386-cgo), const IPPROTO_EGP = 8 +pkg syscall (freebsd-386-cgo), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-386-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-386-cgo), const IPPROTO_EON = 80 +pkg syscall (freebsd-386-cgo), const IPPROTO_ESP = 50 +pkg syscall (freebsd-386-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-386-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-386-cgo), const IPPROTO_GGP = 3 +pkg syscall (freebsd-386-cgo), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-386-cgo), const IPPROTO_GRE = 47 +pkg syscall (freebsd-386-cgo), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-386-cgo), const IPPROTO_HMP = 20 +pkg syscall (freebsd-386-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-386-cgo), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-386-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-386-cgo), const IPPROTO_IDP = 22 +pkg syscall (freebsd-386-cgo), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-386-cgo), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-386-cgo), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-386-cgo), const IPPROTO_IGP = 85 +pkg syscall (freebsd-386-cgo), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-386-cgo), const IPPROTO_IL = 40 +pkg syscall (freebsd-386-cgo), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-386-cgo), const IPPROTO_INP = 32 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-386-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-386-cgo), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-386-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-386-cgo), const IPPROTO_LARP = 91 +pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-386-cgo), const IPPROTO_MAX = 256 +pkg syscall (freebsd-386-cgo), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-386-cgo), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-386-cgo), const IPPROTO_MH = 135 +pkg syscall (freebsd-386-cgo), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-386-cgo), const IPPROTO_MICP = 95 +pkg syscall (freebsd-386-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-386-cgo), const IPPROTO_MTP = 92 +pkg syscall (freebsd-386-cgo), const IPPROTO_MUX = 18 +pkg syscall (freebsd-386-cgo), const IPPROTO_ND = 77 +pkg syscall (freebsd-386-cgo), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-386-cgo), const IPPROTO_NONE = 59 +pkg syscall (freebsd-386-cgo), const IPPROTO_NSP = 31 +pkg syscall (freebsd-386-cgo), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-386-cgo), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-386-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-386-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-386-cgo), const IPPROTO_PGM = 113 +pkg syscall (freebsd-386-cgo), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-386-cgo), const IPPROTO_PIM = 103 +pkg syscall (freebsd-386-cgo), const IPPROTO_PRM = 21 +pkg syscall (freebsd-386-cgo), const IPPROTO_PUP = 12 +pkg syscall (freebsd-386-cgo), const IPPROTO_PVP = 75 +pkg syscall (freebsd-386-cgo), const IPPROTO_RAW = 255 +pkg syscall (freebsd-386-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-386-cgo), const IPPROTO_RDP = 27 +pkg syscall (freebsd-386-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-386-cgo), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-386-cgo), const IPPROTO_RVD = 66 +pkg syscall (freebsd-386-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-386-cgo), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-386-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-386-cgo), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-386-cgo), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-386-cgo), const IPPROTO_SEND = 259 +pkg syscall (freebsd-386-cgo), const IPPROTO_SEP = 33 +pkg syscall (freebsd-386-cgo), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-386-cgo), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-386-cgo), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-386-cgo), const IPPROTO_ST = 7 +pkg syscall (freebsd-386-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-386-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-386-cgo), const IPPROTO_TCF = 87 +pkg syscall (freebsd-386-cgo), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-386-cgo), const IPPROTO_TP = 29 +pkg syscall (freebsd-386-cgo), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-386-cgo), const IPPROTO_TTP = 84 +pkg syscall (freebsd-386-cgo), const IPPROTO_VINES = 83 +pkg syscall (freebsd-386-cgo), const IPPROTO_VISA = 70 +pkg syscall (freebsd-386-cgo), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-386-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-386-cgo), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-386-cgo), const IPPROTO_WSN = 74 +pkg syscall (freebsd-386-cgo), const IPPROTO_XNET = 15 +pkg syscall (freebsd-386-cgo), const IPPROTO_XTP = 36 +pkg syscall (freebsd-386-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-386-cgo), const IPV6_BINDANY = 64 +pkg syscall (freebsd-386-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-386-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-386-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-386-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-386-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-386-cgo), const IPV6_FAITH = 29 +pkg syscall (freebsd-386-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-386-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-386-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-386-cgo), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-386-cgo), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-386-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-386-cgo), const IPV6_FW_GET = 34 +pkg syscall (freebsd-386-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-386-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-386-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-386-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-386-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-386-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-386-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-386-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-386-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-386-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-386-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-386-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-386-cgo), const IPV6_MMTU = 1280 +pkg syscall (freebsd-386-cgo), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-386-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-386-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-386-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-386-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-386-cgo), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-386-cgo), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-386-cgo), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-386-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-386-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-386-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-386-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-386-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR = 51 +pkg syscall (freebsd-386-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-386-cgo), const IPV6_TCLASS = 61 +pkg syscall (freebsd-386-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-386-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-386-cgo), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-386-cgo), const IPV6_VERSION = 96 +pkg syscall (freebsd-386-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-386-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-386-cgo), const IP_BINDANY = 24 +pkg syscall (freebsd-386-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-386-cgo), const IP_DF = 16384 +pkg syscall (freebsd-386-cgo), const IP_DONTFRAG = 67 +pkg syscall (freebsd-386-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-386-cgo), const IP_FAITH = 22 +pkg syscall (freebsd-386-cgo), const IP_FW3 = 48 +pkg syscall (freebsd-386-cgo), const IP_FW_ADD = 50 +pkg syscall (freebsd-386-cgo), const IP_FW_DEL = 51 +pkg syscall (freebsd-386-cgo), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-386-cgo), const IP_FW_GET = 54 +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-386-cgo), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-386-cgo), const IP_FW_ZERO = 53 +pkg syscall (freebsd-386-cgo), const IP_HDRINCL = 2 +pkg syscall (freebsd-386-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-386-cgo), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-386-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-386-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-386-cgo), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-386-cgo), const IP_MF = 8192 +pkg syscall (freebsd-386-cgo), const IP_MINTTL = 66 +pkg syscall (freebsd-386-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-386-cgo), const IP_MSFILTER = 74 +pkg syscall (freebsd-386-cgo), const IP_MSS = 576 +pkg syscall (freebsd-386-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-386-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-386-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-386-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-386-cgo), const IP_OFFMASK = 8191 +pkg syscall (freebsd-386-cgo), const IP_ONESBCAST = 23 +pkg syscall (freebsd-386-cgo), const IP_OPTIONS = 1 +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE = 19 +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-386-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-386-cgo), const IP_RECVIF = 20 +pkg syscall (freebsd-386-cgo), const IP_RECVOPTS = 5 +pkg syscall (freebsd-386-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-386-cgo), const IP_RECVTOS = 68 +pkg syscall (freebsd-386-cgo), const IP_RECVTTL = 65 +pkg syscall (freebsd-386-cgo), const IP_RETOPTS = 8 +pkg syscall (freebsd-386-cgo), const IP_RF = 32768 +pkg syscall (freebsd-386-cgo), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-386-cgo), const IP_RSVP_ON = 15 +pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-386-cgo), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-386-cgo), const IP_TOS = 3 +pkg syscall (freebsd-386-cgo), const IP_TTL = 4 +pkg syscall (freebsd-386-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-386-cgo), const ISIG = 128 +pkg syscall (freebsd-386-cgo), const ISTRIP = 32 +pkg syscall (freebsd-386-cgo), const IXANY = 2048 +pkg syscall (freebsd-386-cgo), const IXOFF = 1024 +pkg syscall (freebsd-386-cgo), const IXON = 512 +pkg syscall (freebsd-386-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-386-cgo), const LOCK_EX = 2 +pkg syscall (freebsd-386-cgo), const LOCK_NB = 4 +pkg syscall (freebsd-386-cgo), const LOCK_SH = 1 +pkg syscall (freebsd-386-cgo), const LOCK_UN = 8 +pkg syscall (freebsd-386-cgo), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-386-cgo), const MADV_CORE = 9 +pkg syscall (freebsd-386-cgo), const MADV_DONTNEED = 4 +pkg syscall (freebsd-386-cgo), const MADV_FREE = 5 +pkg syscall (freebsd-386-cgo), const MADV_NOCORE = 8 +pkg syscall (freebsd-386-cgo), const MADV_NORMAL = 0 +pkg syscall (freebsd-386-cgo), const MADV_NOSYNC = 6 +pkg syscall (freebsd-386-cgo), const MADV_PROTECT = 10 +pkg syscall (freebsd-386-cgo), const MADV_RANDOM = 1 +pkg syscall (freebsd-386-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-386-cgo), const MADV_WILLNEED = 3 +pkg syscall (freebsd-386-cgo), const MAP_ANON = 4096 +pkg syscall (freebsd-386-cgo), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-386-cgo), const MAP_COPY = 2 +pkg syscall (freebsd-386-cgo), const MAP_FILE = 0 +pkg syscall (freebsd-386-cgo), const MAP_FIXED = 16 +pkg syscall (freebsd-386-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-386-cgo), const MAP_NOCORE = 131072 +pkg syscall (freebsd-386-cgo), const MAP_NORESERVE = 64 +pkg syscall (freebsd-386-cgo), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-386-cgo), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-386-cgo), const MAP_PRIVATE = 2 +pkg syscall (freebsd-386-cgo), const MAP_RENAME = 32 +pkg syscall (freebsd-386-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-386-cgo), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-386-cgo), const MAP_SHARED = 1 +pkg syscall (freebsd-386-cgo), const MAP_STACK = 1024 +pkg syscall (freebsd-386-cgo), const MCL_CURRENT = 1 +pkg syscall (freebsd-386-cgo), const MCL_FUTURE = 2 +pkg syscall (freebsd-386-cgo), const MSG_COMPAT = 32768 +pkg syscall (freebsd-386-cgo), const MSG_CTRUNC = 32 +pkg syscall (freebsd-386-cgo), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-386-cgo), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-386-cgo), const MSG_EOF = 256 +pkg syscall (freebsd-386-cgo), const MSG_EOR = 8 +pkg syscall (freebsd-386-cgo), const MSG_NBIO = 16384 +pkg syscall (freebsd-386-cgo), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-386-cgo), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-386-cgo), const MSG_OOB = 1 +pkg syscall (freebsd-386-cgo), const MSG_PEEK = 2 +pkg syscall (freebsd-386-cgo), const MSG_TRUNC = 16 +pkg syscall (freebsd-386-cgo), const MSG_WAITALL = 64 +pkg syscall (freebsd-386-cgo), const MS_ASYNC = 1 +pkg syscall (freebsd-386-cgo), const MS_INVALIDATE = 2 +pkg syscall (freebsd-386-cgo), const MS_SYNC = 0 +pkg syscall (freebsd-386-cgo), const NET_RT_DUMP = 1 +pkg syscall (freebsd-386-cgo), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-386-cgo), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-386-cgo), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-386-cgo), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-386-cgo), const NET_RT_MAXID = 6 +pkg syscall (freebsd-386-cgo), const NOFLSH = 2147483648 +pkg syscall (freebsd-386-cgo), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-386-cgo), const NOTE_CHILD = 4 +pkg syscall (freebsd-386-cgo), const NOTE_DELETE = 1 +pkg syscall (freebsd-386-cgo), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-386-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-386-cgo), const NOTE_EXTEND = 4 +pkg syscall (freebsd-386-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-386-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-386-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-386-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-386-cgo), const NOTE_FFNOP = 0 +pkg syscall (freebsd-386-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-386-cgo), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-386-cgo), const NOTE_LINK = 16 +pkg syscall (freebsd-386-cgo), const NOTE_LOWAT = 1 +pkg syscall (freebsd-386-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-386-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-386-cgo), const NOTE_RENAME = 32 +pkg syscall (freebsd-386-cgo), const NOTE_REVOKE = 64 +pkg syscall (freebsd-386-cgo), const NOTE_TRACK = 1 +pkg syscall (freebsd-386-cgo), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-386-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-386-cgo), const NOTE_WRITE = 2 +pkg syscall (freebsd-386-cgo), const OCRNL = 16 +pkg syscall (freebsd-386-cgo), const ONLCR = 2 +pkg syscall (freebsd-386-cgo), const ONLRET = 64 +pkg syscall (freebsd-386-cgo), const ONOCR = 32 +pkg syscall (freebsd-386-cgo), const ONOEOT = 8 +pkg syscall (freebsd-386-cgo), const OPOST = 1 +pkg syscall (freebsd-386-cgo), const O_ACCMODE = 3 +pkg syscall (freebsd-386-cgo), const O_APPEND = 8 +pkg syscall (freebsd-386-cgo), const O_ASYNC = 64 +pkg syscall (freebsd-386-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-386-cgo), const O_CREAT = 512 +pkg syscall (freebsd-386-cgo), const O_DIRECT = 65536 +pkg syscall (freebsd-386-cgo), const O_DIRECTORY = 131072 +pkg syscall (freebsd-386-cgo), const O_EXCL = 2048 +pkg syscall (freebsd-386-cgo), const O_EXEC = 262144 +pkg syscall (freebsd-386-cgo), const O_EXLOCK = 32 +pkg syscall (freebsd-386-cgo), const O_FSYNC = 128 +pkg syscall (freebsd-386-cgo), const O_NDELAY = 4 +pkg syscall (freebsd-386-cgo), const O_NOCTTY = 32768 +pkg syscall (freebsd-386-cgo), const O_NOFOLLOW = 256 +pkg syscall (freebsd-386-cgo), const O_NONBLOCK = 4 +pkg syscall (freebsd-386-cgo), const O_SHLOCK = 16 +pkg syscall (freebsd-386-cgo), const O_SYNC = 128 +pkg syscall (freebsd-386-cgo), const O_TRUNC = 1024 +pkg syscall (freebsd-386-cgo), const O_TTY_INIT = 524288 +pkg syscall (freebsd-386-cgo), const PARENB = 4096 +pkg syscall (freebsd-386-cgo), const PARMRK = 8 +pkg syscall (freebsd-386-cgo), const PARODD = 8192 +pkg syscall (freebsd-386-cgo), const PENDIN = 536870912 +pkg syscall (freebsd-386-cgo), const PROT_EXEC = 4 +pkg syscall (freebsd-386-cgo), const PROT_NONE = 0 +pkg syscall (freebsd-386-cgo), const PROT_READ = 1 +pkg syscall (freebsd-386-cgo), const PROT_WRITE = 2 +pkg syscall (freebsd-386-cgo), const PTRACE_CONT = 7 +pkg syscall (freebsd-386-cgo), const PTRACE_KILL = 8 +pkg syscall (freebsd-386-cgo), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-386-cgo), const RLIMIT_AS = 10 +pkg syscall (freebsd-386-cgo), const RLIMIT_CORE = 4 +pkg syscall (freebsd-386-cgo), const RLIMIT_CPU = 0 +pkg syscall (freebsd-386-cgo), const RLIMIT_DATA = 2 +pkg syscall (freebsd-386-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-386-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-386-cgo), const RLIMIT_STACK = 3 +pkg syscall (freebsd-386-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-386-cgo), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-386-cgo), const RTAX_BRD = 7 +pkg syscall (freebsd-386-cgo), const RTAX_DST = 0 +pkg syscall (freebsd-386-cgo), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-386-cgo), const RTAX_GENMASK = 3 +pkg syscall (freebsd-386-cgo), const RTAX_IFA = 5 +pkg syscall (freebsd-386-cgo), const RTAX_IFP = 4 +pkg syscall (freebsd-386-cgo), const RTAX_MAX = 8 +pkg syscall (freebsd-386-cgo), const RTAX_NETMASK = 2 +pkg syscall (freebsd-386-cgo), const RTA_AUTHOR = 64 +pkg syscall (freebsd-386-cgo), const RTA_BRD = 128 +pkg syscall (freebsd-386-cgo), const RTA_DST = 1 +pkg syscall (freebsd-386-cgo), const RTA_GATEWAY = 2 +pkg syscall (freebsd-386-cgo), const RTA_GENMASK = 8 +pkg syscall (freebsd-386-cgo), const RTA_IFA = 32 +pkg syscall (freebsd-386-cgo), const RTA_IFP = 16 +pkg syscall (freebsd-386-cgo), const RTA_NETMASK = 4 +pkg syscall (freebsd-386-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-386-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-386-cgo), const RTF_DONE = 64 +pkg syscall (freebsd-386-cgo), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-386-cgo), const RTF_FMASK = 268752904 +pkg syscall (freebsd-386-cgo), const RTF_GATEWAY = 2 +pkg syscall (freebsd-386-cgo), const RTF_HOST = 4 +pkg syscall (freebsd-386-cgo), const RTF_LLDATA = 1024 +pkg syscall (freebsd-386-cgo), const RTF_LLINFO = 1024 +pkg syscall (freebsd-386-cgo), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-386-cgo), const RTF_MODIFIED = 32 +pkg syscall (freebsd-386-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-386-cgo), const RTF_PINNED = 1048576 +pkg syscall (freebsd-386-cgo), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-386-cgo), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-386-cgo), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-386-cgo), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-386-cgo), const RTF_REJECT = 8 +pkg syscall (freebsd-386-cgo), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-386-cgo), const RTF_STATIC = 2048 +pkg syscall (freebsd-386-cgo), const RTF_STICKY = 268435456 +pkg syscall (freebsd-386-cgo), const RTF_UP = 1 +pkg syscall (freebsd-386-cgo), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-386-cgo), const RTM_ADD = 1 +pkg syscall (freebsd-386-cgo), const RTM_CHANGE = 3 +pkg syscall (freebsd-386-cgo), const RTM_DELADDR = 13 +pkg syscall (freebsd-386-cgo), const RTM_DELETE = 2 +pkg syscall (freebsd-386-cgo), const RTM_DELMADDR = 16 +pkg syscall (freebsd-386-cgo), const RTM_GET = 4 +pkg syscall (freebsd-386-cgo), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-386-cgo), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-386-cgo), const RTM_IFINFO = 14 +pkg syscall (freebsd-386-cgo), const RTM_LOCK = 8 +pkg syscall (freebsd-386-cgo), const RTM_LOSING = 5 +pkg syscall (freebsd-386-cgo), const RTM_MISS = 7 +pkg syscall (freebsd-386-cgo), const RTM_NEWADDR = 12 +pkg syscall (freebsd-386-cgo), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-386-cgo), const RTM_OLDADD = 9 +pkg syscall (freebsd-386-cgo), const RTM_OLDDEL = 10 +pkg syscall (freebsd-386-cgo), const RTM_REDIRECT = 6 +pkg syscall (freebsd-386-cgo), const RTM_RESOLVE = 11 +pkg syscall (freebsd-386-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-386-cgo), const RTM_VERSION = 5 +pkg syscall (freebsd-386-cgo), const RTV_EXPIRE = 4 +pkg syscall (freebsd-386-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-386-cgo), const RTV_MTU = 1 +pkg syscall (freebsd-386-cgo), const RTV_RPIPE = 8 +pkg syscall (freebsd-386-cgo), const RTV_RTT = 64 +pkg syscall (freebsd-386-cgo), const RTV_RTTVAR = 128 +pkg syscall (freebsd-386-cgo), const RTV_SPIPE = 16 +pkg syscall (freebsd-386-cgo), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-386-cgo), const RTV_WEIGHT = 256 +pkg syscall (freebsd-386-cgo), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-386-cgo), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-386-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-386-cgo), const RUSAGE_SELF = 0 +pkg syscall (freebsd-386-cgo), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-386-cgo), const SCM_BINTIME = 4 +pkg syscall (freebsd-386-cgo), const SCM_CREDS = 3 +pkg syscall (freebsd-386-cgo), const SCM_RIGHTS = 1 +pkg syscall (freebsd-386-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-386-cgo), const SIGBUS = 10 +pkg syscall (freebsd-386-cgo), const SIGCHLD = 20 +pkg syscall (freebsd-386-cgo), const SIGCONT = 19 +pkg syscall (freebsd-386-cgo), const SIGEMT = 7 +pkg syscall (freebsd-386-cgo), const SIGINFO = 29 +pkg syscall (freebsd-386-cgo), const SIGIO = 23 +pkg syscall (freebsd-386-cgo), const SIGIOT = 6 +pkg syscall (freebsd-386-cgo), const SIGLWP = 32 +pkg syscall (freebsd-386-cgo), const SIGPROF = 27 +pkg syscall (freebsd-386-cgo), const SIGSTOP = 17 +pkg syscall (freebsd-386-cgo), const SIGSYS = 12 +pkg syscall (freebsd-386-cgo), const SIGTHR = 32 +pkg syscall (freebsd-386-cgo), const SIGTSTP = 18 +pkg syscall (freebsd-386-cgo), const SIGTTIN = 21 +pkg syscall (freebsd-386-cgo), const SIGTTOU = 22 +pkg syscall (freebsd-386-cgo), const SIGURG = 16 +pkg syscall (freebsd-386-cgo), const SIGUSR1 = 30 +pkg syscall (freebsd-386-cgo), const SIGUSR2 = 31 +pkg syscall (freebsd-386-cgo), const SIGVTALRM = 26 +pkg syscall (freebsd-386-cgo), const SIGWINCH = 28 +pkg syscall (freebsd-386-cgo), const SIGXCPU = 24 +pkg syscall (freebsd-386-cgo), const SIGXFSZ = 25 +pkg syscall (freebsd-386-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-386-cgo), const SIOCADDRT = 2150658570 +pkg syscall (freebsd-386-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-386-cgo), const SIOCAIFGROUP = 2149869959 +pkg syscall (freebsd-386-cgo), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-386-cgo), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-386-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-386-cgo), const SIOCDELRT = 2150658571 +pkg syscall (freebsd-386-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-386-cgo), const SIOCDIFGROUP = 2149869961 +pkg syscall (freebsd-386-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-386-cgo), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-386-cgo), const SIOCGDRVSPEC = 3223087483 +pkg syscall (freebsd-386-cgo), const SIOCGETSGCNT = 3222565392 +pkg syscall (freebsd-386-cgo), const SIOCGETVIFCNT = 3222565391 +pkg syscall (freebsd-386-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-386-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-386-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-386-cgo), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-386-cgo), const SIOCGIFCONF = 3221776676 +pkg syscall (freebsd-386-cgo), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-386-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-386-cgo), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-386-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-386-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-386-cgo), const SIOCGIFGMEMB = 3223611786 +pkg syscall (freebsd-386-cgo), const SIOCGIFGROUP = 3223611784 +pkg syscall (freebsd-386-cgo), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-386-cgo), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-386-cgo), const SIOCGIFMEDIA = 3223873848 +pkg syscall (freebsd-386-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-386-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-386-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-386-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-386-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-386-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-386-cgo), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-386-cgo), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-386-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-386-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-386-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-386-cgo), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-386-cgo), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-386-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-386-cgo), const SIOCIFGCLONERS = 3222038904 +pkg syscall (freebsd-386-cgo), const SIOCSDRVSPEC = 2149345659 +pkg syscall (freebsd-386-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-386-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-386-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-386-cgo), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-386-cgo), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-386-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-386-cgo), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-386-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-386-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-386-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-386-cgo), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-386-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-386-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-386-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-386-cgo), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-386-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-386-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-386-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-386-cgo), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-386-cgo), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-386-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-386-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-386-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-386-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-386-cgo), const SOCK_RDM = 4 +pkg syscall (freebsd-386-cgo), const SOL_SOCKET = 65535 +pkg syscall (freebsd-386-cgo), const SOMAXCONN = 128 +pkg syscall (freebsd-386-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-386-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-386-cgo), const SO_BINTIME = 8192 +pkg syscall (freebsd-386-cgo), const SO_BROADCAST = 32 +pkg syscall (freebsd-386-cgo), const SO_DEBUG = 1 +pkg syscall (freebsd-386-cgo), const SO_DONTROUTE = 16 +pkg syscall (freebsd-386-cgo), const SO_ERROR = 4103 +pkg syscall (freebsd-386-cgo), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-386-cgo), const SO_LABEL = 4105 +pkg syscall (freebsd-386-cgo), const SO_LINGER = 128 +pkg syscall (freebsd-386-cgo), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-386-cgo), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-386-cgo), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-386-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-386-cgo), const SO_NO_DDP = 32768 +pkg syscall (freebsd-386-cgo), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-386-cgo), const SO_OOBINLINE = 256 +pkg syscall (freebsd-386-cgo), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-386-cgo), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-386-cgo), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-386-cgo), const SO_RCVBUF = 4098 +pkg syscall (freebsd-386-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-386-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-386-cgo), const SO_REUSEADDR = 4 +pkg syscall (freebsd-386-cgo), const SO_REUSEPORT = 512 +pkg syscall (freebsd-386-cgo), const SO_SETFIB = 4116 +pkg syscall (freebsd-386-cgo), const SO_SNDBUF = 4097 +pkg syscall (freebsd-386-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-386-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-386-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-386-cgo), const SO_TYPE = 4104 +pkg syscall (freebsd-386-cgo), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-386-cgo), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-386-cgo), const SYS_ABORT2 = 463 +pkg syscall (freebsd-386-cgo), const SYS_ACCEPT = 30 +pkg syscall (freebsd-386-cgo), const SYS_ACCESS = 33 +pkg syscall (freebsd-386-cgo), const SYS_ACCT = 51 +pkg syscall (freebsd-386-cgo), const SYS_ADJTIME = 140 +pkg syscall (freebsd-386-cgo), const SYS_AUDIT = 445 +pkg syscall (freebsd-386-cgo), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-386-cgo), const SYS_AUDITON = 446 +pkg syscall (freebsd-386-cgo), const SYS_BIND = 104 +pkg syscall (freebsd-386-cgo), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-386-cgo), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-386-cgo), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-386-cgo), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-386-cgo), const SYS_CHDIR = 12 +pkg syscall (freebsd-386-cgo), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-386-cgo), const SYS_CHMOD = 15 +pkg syscall (freebsd-386-cgo), const SYS_CHOWN = 16 +pkg syscall (freebsd-386-cgo), const SYS_CHROOT = 61 +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-386-cgo), const SYS_CLOSE = 6 +pkg syscall (freebsd-386-cgo), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-386-cgo), const SYS_CONNECT = 98 +pkg syscall (freebsd-386-cgo), const SYS_CPUSET = 484 +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-386-cgo), const SYS_DUP = 41 +pkg syscall (freebsd-386-cgo), const SYS_DUP2 = 90 +pkg syscall (freebsd-386-cgo), const SYS_EACCESS = 376 +pkg syscall (freebsd-386-cgo), const SYS_EXECVE = 59 +pkg syscall (freebsd-386-cgo), const SYS_EXIT = 1 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-386-cgo), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-386-cgo), const SYS_FCHDIR = 13 +pkg syscall (freebsd-386-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-386-cgo), const SYS_FCHMOD = 124 +pkg syscall (freebsd-386-cgo), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-386-cgo), const SYS_FCHOWN = 123 +pkg syscall (freebsd-386-cgo), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-386-cgo), const SYS_FCNTL = 92 +pkg syscall (freebsd-386-cgo), const SYS_FEXECVE = 492 +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-386-cgo), const SYS_FHOPEN = 298 +pkg syscall (freebsd-386-cgo), const SYS_FHSTAT = 299 +pkg syscall (freebsd-386-cgo), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-386-cgo), const SYS_FLOCK = 131 +pkg syscall (freebsd-386-cgo), const SYS_FORK = 2 +pkg syscall (freebsd-386-cgo), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-386-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-386-cgo), const SYS_FSYNC = 95 +pkg syscall (freebsd-386-cgo), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-386-cgo), const SYS_FUTIMES = 206 +pkg syscall (freebsd-386-cgo), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-386-cgo), const SYS_GETAUID = 447 +pkg syscall (freebsd-386-cgo), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-386-cgo), const SYS_GETDENTS = 272 +pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-386-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-386-cgo), const SYS_GETEGID = 43 +pkg syscall (freebsd-386-cgo), const SYS_GETEUID = 25 +pkg syscall (freebsd-386-cgo), const SYS_GETFH = 161 +pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-386-cgo), const SYS_GETGID = 47 +pkg syscall (freebsd-386-cgo), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-386-cgo), const SYS_GETITIMER = 86 +pkg syscall (freebsd-386-cgo), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-386-cgo), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-386-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-386-cgo), const SYS_GETPGID = 207 +pkg syscall (freebsd-386-cgo), const SYS_GETPGRP = 81 +pkg syscall (freebsd-386-cgo), const SYS_GETPID = 20 +pkg syscall (freebsd-386-cgo), const SYS_GETPPID = 39 +pkg syscall (freebsd-386-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-386-cgo), const SYS_GETRESGID = 361 +pkg syscall (freebsd-386-cgo), const SYS_GETRESUID = 360 +pkg syscall (freebsd-386-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-386-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-386-cgo), const SYS_GETSID = 310 +pkg syscall (freebsd-386-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-386-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-386-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-386-cgo), const SYS_GETUID = 24 +pkg syscall (freebsd-386-cgo), const SYS_IOCTL = 54 +pkg syscall (freebsd-386-cgo), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-386-cgo), const SYS_JAIL = 338 +pkg syscall (freebsd-386-cgo), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-386-cgo), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-386-cgo), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-386-cgo), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-386-cgo), const SYS_KENV = 390 +pkg syscall (freebsd-386-cgo), const SYS_KEVENT = 363 +pkg syscall (freebsd-386-cgo), const SYS_KILL = 37 +pkg syscall (freebsd-386-cgo), const SYS_KLDFIND = 306 +pkg syscall (freebsd-386-cgo), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-386-cgo), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-386-cgo), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-386-cgo), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-386-cgo), const SYS_KLDSYM = 337 +pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-386-cgo), const SYS_KQUEUE = 362 +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-386-cgo), const SYS_KTRACE = 45 +pkg syscall (freebsd-386-cgo), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-386-cgo), const SYS_LCHMOD = 274 +pkg syscall (freebsd-386-cgo), const SYS_LCHOWN = 254 +pkg syscall (freebsd-386-cgo), const SYS_LGETFH = 160 +pkg syscall (freebsd-386-cgo), const SYS_LINK = 9 +pkg syscall (freebsd-386-cgo), const SYS_LINKAT = 495 +pkg syscall (freebsd-386-cgo), const SYS_LISTEN = 106 +pkg syscall (freebsd-386-cgo), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-386-cgo), const SYS_LSEEK = 478 +pkg syscall (freebsd-386-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-386-cgo), const SYS_LUTIMES = 276 +pkg syscall (freebsd-386-cgo), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-386-cgo), const SYS_MADVISE = 75 +pkg syscall (freebsd-386-cgo), const SYS_MINCORE = 78 +pkg syscall (freebsd-386-cgo), const SYS_MINHERIT = 250 +pkg syscall (freebsd-386-cgo), const SYS_MKDIR = 136 +pkg syscall (freebsd-386-cgo), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-386-cgo), const SYS_MKFIFO = 132 +pkg syscall (freebsd-386-cgo), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-386-cgo), const SYS_MKNOD = 14 +pkg syscall (freebsd-386-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-386-cgo), const SYS_MLOCK = 203 +pkg syscall (freebsd-386-cgo), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-386-cgo), const SYS_MMAP = 477 +pkg syscall (freebsd-386-cgo), const SYS_MODFIND = 303 +pkg syscall (freebsd-386-cgo), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-386-cgo), const SYS_MODNEXT = 300 +pkg syscall (freebsd-386-cgo), const SYS_MODSTAT = 301 +pkg syscall (freebsd-386-cgo), const SYS_MOUNT = 21 +pkg syscall (freebsd-386-cgo), const SYS_MPROTECT = 74 +pkg syscall (freebsd-386-cgo), const SYS_MSYNC = 65 +pkg syscall (freebsd-386-cgo), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-386-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-386-cgo), const SYS_MUNMAP = 73 +pkg syscall (freebsd-386-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-386-cgo), const SYS_NFSTAT = 279 +pkg syscall (freebsd-386-cgo), const SYS_NLSTAT = 280 +pkg syscall (freebsd-386-cgo), const SYS_NMOUNT = 378 +pkg syscall (freebsd-386-cgo), const SYS_NSTAT = 278 +pkg syscall (freebsd-386-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-386-cgo), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-386-cgo), const SYS_OBREAK = 17 +pkg syscall (freebsd-386-cgo), const SYS_OPEN = 5 +pkg syscall (freebsd-386-cgo), const SYS_OPENAT = 499 +pkg syscall (freebsd-386-cgo), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-386-cgo), const SYS_OVADVISE = 72 +pkg syscall (freebsd-386-cgo), const SYS_PATHCONF = 191 +pkg syscall (freebsd-386-cgo), const SYS_PDFORK = 518 +pkg syscall (freebsd-386-cgo), const SYS_PDGETPID = 520 +pkg syscall (freebsd-386-cgo), const SYS_PDKILL = 519 +pkg syscall (freebsd-386-cgo), const SYS_PIPE = 42 +pkg syscall (freebsd-386-cgo), const SYS_POLL = 209 +pkg syscall (freebsd-386-cgo), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-386-cgo), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-386-cgo), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-386-cgo), const SYS_PREAD = 475 +pkg syscall (freebsd-386-cgo), const SYS_PREADV = 289 +pkg syscall (freebsd-386-cgo), const SYS_PROFIL = 44 +pkg syscall (freebsd-386-cgo), const SYS_PSELECT = 522 +pkg syscall (freebsd-386-cgo), const SYS_PTRACE = 26 +pkg syscall (freebsd-386-cgo), const SYS_PWRITE = 476 +pkg syscall (freebsd-386-cgo), const SYS_PWRITEV = 290 +pkg syscall (freebsd-386-cgo), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-386-cgo), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-386-cgo), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-386-cgo), const SYS_READ = 3 +pkg syscall (freebsd-386-cgo), const SYS_READLINK = 58 +pkg syscall (freebsd-386-cgo), const SYS_READLINKAT = 500 +pkg syscall (freebsd-386-cgo), const SYS_READV = 120 +pkg syscall (freebsd-386-cgo), const SYS_REBOOT = 55 +pkg syscall (freebsd-386-cgo), const SYS_RECVFROM = 29 +pkg syscall (freebsd-386-cgo), const SYS_RECVMSG = 27 +pkg syscall (freebsd-386-cgo), const SYS_RENAME = 128 +pkg syscall (freebsd-386-cgo), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-386-cgo), const SYS_REVOKE = 56 +pkg syscall (freebsd-386-cgo), const SYS_RFORK = 251 +pkg syscall (freebsd-386-cgo), const SYS_RMDIR = 137 +pkg syscall (freebsd-386-cgo), const SYS_RTPRIO = 166 +pkg syscall (freebsd-386-cgo), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-386-cgo), const SYS_SBRK = 69 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-386-cgo), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-386-cgo), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-386-cgo), const SYS_SELECT = 93 +pkg syscall (freebsd-386-cgo), const SYS_SENDFILE = 393 +pkg syscall (freebsd-386-cgo), const SYS_SENDMSG = 28 +pkg syscall (freebsd-386-cgo), const SYS_SENDTO = 133 +pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-386-cgo), const SYS_SETAUID = 448 +pkg syscall (freebsd-386-cgo), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-386-cgo), const SYS_SETEGID = 182 +pkg syscall (freebsd-386-cgo), const SYS_SETEUID = 183 +pkg syscall (freebsd-386-cgo), const SYS_SETFIB = 175 +pkg syscall (freebsd-386-cgo), const SYS_SETGID = 181 +pkg syscall (freebsd-386-cgo), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-386-cgo), const SYS_SETITIMER = 83 +pkg syscall (freebsd-386-cgo), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-386-cgo), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-386-cgo), const SYS_SETPGID = 82 +pkg syscall (freebsd-386-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-386-cgo), const SYS_SETREGID = 127 +pkg syscall (freebsd-386-cgo), const SYS_SETRESGID = 312 +pkg syscall (freebsd-386-cgo), const SYS_SETRESUID = 311 +pkg syscall (freebsd-386-cgo), const SYS_SETREUID = 126 +pkg syscall (freebsd-386-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-386-cgo), const SYS_SETSID = 147 +pkg syscall (freebsd-386-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-386-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-386-cgo), const SYS_SETUID = 23 +pkg syscall (freebsd-386-cgo), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-386-cgo), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-386-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-386-cgo), const SYS_SIGACTION = 416 +pkg syscall (freebsd-386-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-386-cgo), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-386-cgo), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-386-cgo), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-386-cgo), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-386-cgo), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-386-cgo), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-386-cgo), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-386-cgo), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-386-cgo), const SYS_SOCKET = 97 +pkg syscall (freebsd-386-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-386-cgo), const SYS_SSTK = 70 +pkg syscall (freebsd-386-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-386-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-386-cgo), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-386-cgo), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-386-cgo), const SYS_SWAPON = 85 +pkg syscall (freebsd-386-cgo), const SYS_SYMLINK = 57 +pkg syscall (freebsd-386-cgo), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-386-cgo), const SYS_SYNC = 36 +pkg syscall (freebsd-386-cgo), const SYS_SYSARCH = 165 +pkg syscall (freebsd-386-cgo), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-386-cgo), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-386-cgo), const SYS_THR_KILL = 433 +pkg syscall (freebsd-386-cgo), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-386-cgo), const SYS_THR_NEW = 455 +pkg syscall (freebsd-386-cgo), const SYS_THR_SELF = 432 +pkg syscall (freebsd-386-cgo), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-386-cgo), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-386-cgo), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-386-cgo), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-386-cgo), const SYS_UMASK = 60 +pkg syscall (freebsd-386-cgo), const SYS_UNDELETE = 205 +pkg syscall (freebsd-386-cgo), const SYS_UNLINK = 10 +pkg syscall (freebsd-386-cgo), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-386-cgo), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-386-cgo), const SYS_UTIMES = 138 +pkg syscall (freebsd-386-cgo), const SYS_UTRACE = 335 +pkg syscall (freebsd-386-cgo), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-386-cgo), const SYS_VFORK = 66 +pkg syscall (freebsd-386-cgo), const SYS_WAIT4 = 7 +pkg syscall (freebsd-386-cgo), const SYS_WAIT6 = 532 +pkg syscall (freebsd-386-cgo), const SYS_WRITE = 4 +pkg syscall (freebsd-386-cgo), const SYS_WRITEV = 121 +pkg syscall (freebsd-386-cgo), const SYS_YIELD = 321 +pkg syscall (freebsd-386-cgo), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-386-cgo), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-386-cgo), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-386-cgo), const SYS___GETCWD = 326 +pkg syscall (freebsd-386-cgo), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-386-cgo), const SYS___SETUGID = 374 +pkg syscall (freebsd-386-cgo), const SYS___SYSCTL = 202 +pkg syscall (freebsd-386-cgo), const S_IFMT = 61440 +pkg syscall (freebsd-386-cgo), const SizeofBpfHdr = 20 +pkg syscall (freebsd-386-cgo), const SizeofBpfInsn = 8 +pkg syscall (freebsd-386-cgo), const SizeofBpfProgram = 8 +pkg syscall (freebsd-386-cgo), const SizeofBpfStat = 8 +pkg syscall (freebsd-386-cgo), const SizeofBpfVersion = 4 +pkg syscall (freebsd-386-cgo), const SizeofBpfZbuf = 12 +pkg syscall (freebsd-386-cgo), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-386-cgo), const SizeofCmsghdr = 12 +pkg syscall (freebsd-386-cgo), const SizeofIPMreq = 8 +pkg syscall (freebsd-386-cgo), const SizeofIPMreqn = 12 +pkg syscall (freebsd-386-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-386-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-386-cgo), const SizeofIfData = 80 +pkg syscall (freebsd-386-cgo), const SizeofIfMsghdr = 96 +pkg syscall (freebsd-386-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-386-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-386-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-386-cgo), const SizeofLinger = 8 +pkg syscall (freebsd-386-cgo), const SizeofMsghdr = 28 +pkg syscall (freebsd-386-cgo), const SizeofRtMetrics = 56 +pkg syscall (freebsd-386-cgo), const SizeofRtMsghdr = 92 +pkg syscall (freebsd-386-cgo), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-386-cgo), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-386-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-386-cgo), const TCIFLUSH = 1 +pkg syscall (freebsd-386-cgo), const TCIOFLUSH = 3 +pkg syscall (freebsd-386-cgo), const TCOFLUSH = 2 +pkg syscall (freebsd-386-cgo), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-386-cgo), const TCP_CONGESTION = 64 +pkg syscall (freebsd-386-cgo), const TCP_INFO = 32 +pkg syscall (freebsd-386-cgo), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-386-cgo), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-386-cgo), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-386-cgo), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-386-cgo), const TCP_MAXBURST = 4 +pkg syscall (freebsd-386-cgo), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-386-cgo), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-386-cgo), const TCP_MAXSEG = 2 +pkg syscall (freebsd-386-cgo), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-386-cgo), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-386-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-386-cgo), const TCP_MD5SIG = 16 +pkg syscall (freebsd-386-cgo), const TCP_MINMSS = 216 +pkg syscall (freebsd-386-cgo), const TCP_MSS = 536 +pkg syscall (freebsd-386-cgo), const TCP_NOOPT = 8 +pkg syscall (freebsd-386-cgo), const TCP_NOPUSH = 4 +pkg syscall (freebsd-386-cgo), const TCSAFLUSH = 2 +pkg syscall (freebsd-386-cgo), const TIOCCBRK = 536900730 +pkg syscall (freebsd-386-cgo), const TIOCCDTR = 536900728 +pkg syscall (freebsd-386-cgo), const TIOCCONS = 2147775586 +pkg syscall (freebsd-386-cgo), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-386-cgo), const TIOCEXCL = 536900621 +pkg syscall (freebsd-386-cgo), const TIOCEXT = 2147775584 +pkg syscall (freebsd-386-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-386-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-386-cgo), const TIOCGETA = 1076655123 +pkg syscall (freebsd-386-cgo), const TIOCGETD = 1074033690 +pkg syscall (freebsd-386-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-386-cgo), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-386-cgo), const TIOCGSID = 1074033763 +pkg syscall (freebsd-386-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-386-cgo), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-386-cgo), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-386-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-386-cgo), const TIOCMGET = 1074033770 +pkg syscall (freebsd-386-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-386-cgo), const TIOCMSET = 2147775597 +pkg syscall (freebsd-386-cgo), const TIOCM_CAR = 64 +pkg syscall (freebsd-386-cgo), const TIOCM_CD = 64 +pkg syscall (freebsd-386-cgo), const TIOCM_CTS = 32 +pkg syscall (freebsd-386-cgo), const TIOCM_DCD = 64 +pkg syscall (freebsd-386-cgo), const TIOCM_DSR = 256 +pkg syscall (freebsd-386-cgo), const TIOCM_DTR = 2 +pkg syscall (freebsd-386-cgo), const TIOCM_LE = 1 +pkg syscall (freebsd-386-cgo), const TIOCM_RI = 128 +pkg syscall (freebsd-386-cgo), const TIOCM_RNG = 128 +pkg syscall (freebsd-386-cgo), const TIOCM_RTS = 4 +pkg syscall (freebsd-386-cgo), const TIOCM_SR = 16 +pkg syscall (freebsd-386-cgo), const TIOCM_ST = 8 +pkg syscall (freebsd-386-cgo), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-386-cgo), const TIOCNXCL = 536900622 +pkg syscall (freebsd-386-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-386-cgo), const TIOCPKT = 2147775600 +pkg syscall (freebsd-386-cgo), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-386-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-386-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-386-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-386-cgo), const TIOCPKT_START = 8 +pkg syscall (freebsd-386-cgo), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-386-cgo), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-386-cgo), const TIOCSBRK = 536900731 +pkg syscall (freebsd-386-cgo), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-386-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-386-cgo), const TIOCSDTR = 536900729 +pkg syscall (freebsd-386-cgo), const TIOCSETA = 2150396948 +pkg syscall (freebsd-386-cgo), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-386-cgo), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-386-cgo), const TIOCSETD = 2147775515 +pkg syscall (freebsd-386-cgo), const TIOCSIG = 537162847 +pkg syscall (freebsd-386-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-386-cgo), const TIOCSTART = 536900718 +pkg syscall (freebsd-386-cgo), const TIOCSTAT = 536900709 +pkg syscall (freebsd-386-cgo), const TIOCSTI = 2147578994 +pkg syscall (freebsd-386-cgo), const TIOCSTOP = 536900719 +pkg syscall (freebsd-386-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-386-cgo), const TIOCTIMESTAMP = 1074295897 +pkg syscall (freebsd-386-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-386-cgo), const TOSTOP = 4194304 +pkg syscall (freebsd-386-cgo), const VDISCARD = 15 +pkg syscall (freebsd-386-cgo), const VDSUSP = 11 +pkg syscall (freebsd-386-cgo), const VEOF = 0 +pkg syscall (freebsd-386-cgo), const VEOL = 1 +pkg syscall (freebsd-386-cgo), const VEOL2 = 2 +pkg syscall (freebsd-386-cgo), const VERASE = 3 +pkg syscall (freebsd-386-cgo), const VERASE2 = 7 +pkg syscall (freebsd-386-cgo), const VINTR = 8 +pkg syscall (freebsd-386-cgo), const VKILL = 5 +pkg syscall (freebsd-386-cgo), const VLNEXT = 14 +pkg syscall (freebsd-386-cgo), const VMIN = 16 +pkg syscall (freebsd-386-cgo), const VQUIT = 9 +pkg syscall (freebsd-386-cgo), const VREPRINT = 6 +pkg syscall (freebsd-386-cgo), const VSTART = 12 +pkg syscall (freebsd-386-cgo), const VSTATUS = 18 +pkg syscall (freebsd-386-cgo), const VSTOP = 13 +pkg syscall (freebsd-386-cgo), const VSUSP = 10 +pkg syscall (freebsd-386-cgo), const VTIME = 17 +pkg syscall (freebsd-386-cgo), const VWERASE = 4 +pkg syscall (freebsd-386-cgo), const WCONTINUED = 4 +pkg syscall (freebsd-386-cgo), const WCOREFLAG = 128 +pkg syscall (freebsd-386-cgo), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-386-cgo), const WNOHANG = 1 +pkg syscall (freebsd-386-cgo), const WNOWAIT = 8 +pkg syscall (freebsd-386-cgo), const WSTOPPED = 2 +pkg syscall (freebsd-386-cgo), const WUNTRACED = 2 +pkg syscall (freebsd-amd64), const AF_APPLETALK = 16 +pkg syscall (freebsd-amd64), const AF_ARP = 35 +pkg syscall (freebsd-amd64), const AF_ATM = 30 +pkg syscall (freebsd-amd64), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-amd64), const AF_CCITT = 10 +pkg syscall (freebsd-amd64), const AF_CHAOS = 5 +pkg syscall (freebsd-amd64), const AF_CNT = 21 +pkg syscall (freebsd-amd64), const AF_COIP = 20 +pkg syscall (freebsd-amd64), const AF_DATAKIT = 9 +pkg syscall (freebsd-amd64), const AF_DECnet = 12 +pkg syscall (freebsd-amd64), const AF_DLI = 13 +pkg syscall (freebsd-amd64), const AF_E164 = 26 +pkg syscall (freebsd-amd64), const AF_ECMA = 8 +pkg syscall (freebsd-amd64), const AF_HYLINK = 15 +pkg syscall (freebsd-amd64), const AF_IEEE80211 = 37 +pkg syscall (freebsd-amd64), const AF_IMPLINK = 3 +pkg syscall (freebsd-amd64), const AF_INET6 = 28 +pkg syscall (freebsd-amd64), const AF_IPX = 23 +pkg syscall (freebsd-amd64), const AF_ISDN = 26 +pkg syscall (freebsd-amd64), const AF_ISO = 7 +pkg syscall (freebsd-amd64), const AF_LAT = 14 +pkg syscall (freebsd-amd64), const AF_LINK = 18 +pkg syscall (freebsd-amd64), const AF_LOCAL = 1 +pkg syscall (freebsd-amd64), const AF_MAX = 38 +pkg syscall (freebsd-amd64), const AF_NATM = 29 +pkg syscall (freebsd-amd64), const AF_NETBIOS = 6 +pkg syscall (freebsd-amd64), const AF_NETGRAPH = 32 +pkg syscall (freebsd-amd64), const AF_OSI = 7 +pkg syscall (freebsd-amd64), const AF_PUP = 4 +pkg syscall (freebsd-amd64), const AF_ROUTE = 17 +pkg syscall (freebsd-amd64), const AF_SCLUSTER = 34 +pkg syscall (freebsd-amd64), const AF_SIP = 24 +pkg syscall (freebsd-amd64), const AF_SLOW = 33 +pkg syscall (freebsd-amd64), const AF_SNA = 11 +pkg syscall (freebsd-amd64), const AF_VENDOR00 = 39 +pkg syscall (freebsd-amd64), const AF_VENDOR01 = 41 +pkg syscall (freebsd-amd64), const AF_VENDOR02 = 43 +pkg syscall (freebsd-amd64), const AF_VENDOR03 = 45 +pkg syscall (freebsd-amd64), const AF_VENDOR04 = 47 +pkg syscall (freebsd-amd64), const AF_VENDOR05 = 49 +pkg syscall (freebsd-amd64), const AF_VENDOR06 = 51 +pkg syscall (freebsd-amd64), const AF_VENDOR07 = 53 +pkg syscall (freebsd-amd64), const AF_VENDOR08 = 55 +pkg syscall (freebsd-amd64), const AF_VENDOR09 = 57 +pkg syscall (freebsd-amd64), const AF_VENDOR10 = 59 +pkg syscall (freebsd-amd64), const AF_VENDOR11 = 61 +pkg syscall (freebsd-amd64), const AF_VENDOR12 = 63 +pkg syscall (freebsd-amd64), const AF_VENDOR13 = 65 +pkg syscall (freebsd-amd64), const AF_VENDOR14 = 67 +pkg syscall (freebsd-amd64), const AF_VENDOR15 = 69 +pkg syscall (freebsd-amd64), const AF_VENDOR16 = 71 +pkg syscall (freebsd-amd64), const AF_VENDOR17 = 73 +pkg syscall (freebsd-amd64), const AF_VENDOR18 = 75 +pkg syscall (freebsd-amd64), const AF_VENDOR19 = 77 +pkg syscall (freebsd-amd64), const AF_VENDOR20 = 79 +pkg syscall (freebsd-amd64), const AF_VENDOR21 = 81 +pkg syscall (freebsd-amd64), const AF_VENDOR22 = 83 +pkg syscall (freebsd-amd64), const AF_VENDOR23 = 85 +pkg syscall (freebsd-amd64), const AF_VENDOR24 = 87 +pkg syscall (freebsd-amd64), const AF_VENDOR25 = 89 +pkg syscall (freebsd-amd64), const AF_VENDOR26 = 91 +pkg syscall (freebsd-amd64), const AF_VENDOR27 = 93 +pkg syscall (freebsd-amd64), const AF_VENDOR28 = 95 +pkg syscall (freebsd-amd64), const AF_VENDOR29 = 97 +pkg syscall (freebsd-amd64), const AF_VENDOR30 = 99 +pkg syscall (freebsd-amd64), const AF_VENDOR31 = 101 +pkg syscall (freebsd-amd64), const AF_VENDOR32 = 103 +pkg syscall (freebsd-amd64), const AF_VENDOR33 = 105 +pkg syscall (freebsd-amd64), const AF_VENDOR34 = 107 +pkg syscall (freebsd-amd64), const AF_VENDOR35 = 109 +pkg syscall (freebsd-amd64), const AF_VENDOR36 = 111 +pkg syscall (freebsd-amd64), const AF_VENDOR37 = 113 +pkg syscall (freebsd-amd64), const AF_VENDOR38 = 115 +pkg syscall (freebsd-amd64), const AF_VENDOR39 = 117 +pkg syscall (freebsd-amd64), const AF_VENDOR40 = 119 +pkg syscall (freebsd-amd64), const AF_VENDOR41 = 121 +pkg syscall (freebsd-amd64), const AF_VENDOR42 = 123 +pkg syscall (freebsd-amd64), const AF_VENDOR43 = 125 +pkg syscall (freebsd-amd64), const AF_VENDOR44 = 127 +pkg syscall (freebsd-amd64), const AF_VENDOR45 = 129 +pkg syscall (freebsd-amd64), const AF_VENDOR46 = 131 +pkg syscall (freebsd-amd64), const AF_VENDOR47 = 133 +pkg syscall (freebsd-amd64), const B0 = 0 +pkg syscall (freebsd-amd64), const B0 ideal-int +pkg syscall (freebsd-amd64), const B110 = 110 +pkg syscall (freebsd-amd64), const B110 ideal-int +pkg syscall (freebsd-amd64), const B115200 = 115200 +pkg syscall (freebsd-amd64), const B115200 ideal-int +pkg syscall (freebsd-amd64), const B1200 = 1200 +pkg syscall (freebsd-amd64), const B1200 ideal-int +pkg syscall (freebsd-amd64), const B134 = 134 +pkg syscall (freebsd-amd64), const B134 ideal-int +pkg syscall (freebsd-amd64), const B14400 = 14400 +pkg syscall (freebsd-amd64), const B14400 ideal-int +pkg syscall (freebsd-amd64), const B150 = 150 +pkg syscall (freebsd-amd64), const B150 ideal-int +pkg syscall (freebsd-amd64), const B1800 = 1800 +pkg syscall (freebsd-amd64), const B1800 ideal-int +pkg syscall (freebsd-amd64), const B19200 = 19200 +pkg syscall (freebsd-amd64), const B19200 ideal-int +pkg syscall (freebsd-amd64), const B200 = 200 +pkg syscall (freebsd-amd64), const B200 ideal-int +pkg syscall (freebsd-amd64), const B230400 = 230400 +pkg syscall (freebsd-amd64), const B230400 ideal-int +pkg syscall (freebsd-amd64), const B2400 = 2400 +pkg syscall (freebsd-amd64), const B2400 ideal-int +pkg syscall (freebsd-amd64), const B28800 = 28800 +pkg syscall (freebsd-amd64), const B28800 ideal-int +pkg syscall (freebsd-amd64), const B300 = 300 +pkg syscall (freebsd-amd64), const B300 ideal-int +pkg syscall (freebsd-amd64), const B38400 = 38400 +pkg syscall (freebsd-amd64), const B38400 ideal-int +pkg syscall (freebsd-amd64), const B460800 = 460800 +pkg syscall (freebsd-amd64), const B460800 ideal-int +pkg syscall (freebsd-amd64), const B4800 = 4800 +pkg syscall (freebsd-amd64), const B4800 ideal-int +pkg syscall (freebsd-amd64), const B50 = 50 +pkg syscall (freebsd-amd64), const B50 ideal-int +pkg syscall (freebsd-amd64), const B57600 = 57600 +pkg syscall (freebsd-amd64), const B57600 ideal-int +pkg syscall (freebsd-amd64), const B600 = 600 +pkg syscall (freebsd-amd64), const B600 ideal-int +pkg syscall (freebsd-amd64), const B7200 = 7200 +pkg syscall (freebsd-amd64), const B7200 ideal-int +pkg syscall (freebsd-amd64), const B75 = 75 +pkg syscall (freebsd-amd64), const B75 ideal-int +pkg syscall (freebsd-amd64), const B76800 = 76800 +pkg syscall (freebsd-amd64), const B76800 ideal-int +pkg syscall (freebsd-amd64), const B921600 = 921600 +pkg syscall (freebsd-amd64), const B921600 ideal-int +pkg syscall (freebsd-amd64), const B9600 = 9600 +pkg syscall (freebsd-amd64), const B9600 ideal-int +pkg syscall (freebsd-amd64), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-amd64), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-amd64), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-amd64), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-amd64), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-amd64), const BIOCGDLTLIST = 3222291065 +pkg syscall (freebsd-amd64), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-amd64), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-amd64), const BIOCGETZMAX = 1074283135 +pkg syscall (freebsd-amd64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-amd64), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-amd64), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-amd64), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-amd64), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-amd64), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-amd64), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-amd64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-amd64), const BIOCLOCK = 536887930 +pkg syscall (freebsd-amd64), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-amd64), const BIOCROTZBUF = 1075331712 +pkg syscall (freebsd-amd64), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-amd64), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-amd64), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-amd64), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-amd64), const BIOCSETF = 2148549223 +pkg syscall (freebsd-amd64), const BIOCSETFNR = 2148549250 +pkg syscall (freebsd-amd64), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-amd64), const BIOCSETWF = 2148549243 +pkg syscall (freebsd-amd64), const BIOCSETZBUF = 2149073537 +pkg syscall (freebsd-amd64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-amd64), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-amd64), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-amd64), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-amd64), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-amd64), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-amd64), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-amd64), const BPF_A = 16 +pkg syscall (freebsd-amd64), const BPF_ABS = 32 +pkg syscall (freebsd-amd64), const BPF_ADD = 0 +pkg syscall (freebsd-amd64), const BPF_ALIGNMENT = 8 +pkg syscall (freebsd-amd64), const BPF_ALU = 4 +pkg syscall (freebsd-amd64), const BPF_AND = 80 +pkg syscall (freebsd-amd64), const BPF_B = 16 +pkg syscall (freebsd-amd64), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-amd64), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-amd64), const BPF_DIV = 48 +pkg syscall (freebsd-amd64), const BPF_H = 8 +pkg syscall (freebsd-amd64), const BPF_IMM = 0 +pkg syscall (freebsd-amd64), const BPF_IND = 64 +pkg syscall (freebsd-amd64), const BPF_JA = 0 +pkg syscall (freebsd-amd64), const BPF_JEQ = 16 +pkg syscall (freebsd-amd64), const BPF_JGE = 48 +pkg syscall (freebsd-amd64), const BPF_JGT = 32 +pkg syscall (freebsd-amd64), const BPF_JMP = 5 +pkg syscall (freebsd-amd64), const BPF_JSET = 64 +pkg syscall (freebsd-amd64), const BPF_K = 0 +pkg syscall (freebsd-amd64), const BPF_LD = 0 +pkg syscall (freebsd-amd64), const BPF_LDX = 1 +pkg syscall (freebsd-amd64), const BPF_LEN = 128 +pkg syscall (freebsd-amd64), const BPF_LSH = 96 +pkg syscall (freebsd-amd64), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-amd64), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-amd64), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-amd64), const BPF_MEM = 96 +pkg syscall (freebsd-amd64), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-amd64), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-amd64), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-amd64), const BPF_MISC = 7 +pkg syscall (freebsd-amd64), const BPF_MSH = 160 +pkg syscall (freebsd-amd64), const BPF_MUL = 32 +pkg syscall (freebsd-amd64), const BPF_NEG = 128 +pkg syscall (freebsd-amd64), const BPF_OR = 64 +pkg syscall (freebsd-amd64), const BPF_RELEASE = 199606 +pkg syscall (freebsd-amd64), const BPF_RET = 6 +pkg syscall (freebsd-amd64), const BPF_RSH = 112 +pkg syscall (freebsd-amd64), const BPF_ST = 2 +pkg syscall (freebsd-amd64), const BPF_STX = 3 +pkg syscall (freebsd-amd64), const BPF_SUB = 16 +pkg syscall (freebsd-amd64), const BPF_TAX = 0 +pkg syscall (freebsd-amd64), const BPF_TXA = 128 +pkg syscall (freebsd-amd64), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-amd64), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-amd64), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_FAST = 256 +pkg syscall (freebsd-amd64), const BPF_T_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-amd64), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-amd64), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-amd64), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-amd64), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-amd64), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-amd64), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-amd64), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-amd64), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NONE = 3 +pkg syscall (freebsd-amd64), const BPF_T_NONE ideal-int +pkg syscall (freebsd-amd64), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-amd64), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-amd64), const BPF_W = 0 +pkg syscall (freebsd-amd64), const BPF_X = 8 +pkg syscall (freebsd-amd64), const BRKINT = 2 +pkg syscall (freebsd-amd64), const BRKINT ideal-int +pkg syscall (freebsd-amd64), const CFLUSH = 15 +pkg syscall (freebsd-amd64), const CFLUSH ideal-int +pkg syscall (freebsd-amd64), const CLOCAL = 32768 +pkg syscall (freebsd-amd64), const CLOCAL ideal-int +pkg syscall (freebsd-amd64), const CREAD = 2048 +pkg syscall (freebsd-amd64), const CREAD ideal-int +pkg syscall (freebsd-amd64), const CS5 = 0 +pkg syscall (freebsd-amd64), const CS5 ideal-int +pkg syscall (freebsd-amd64), const CS6 = 256 +pkg syscall (freebsd-amd64), const CS6 ideal-int +pkg syscall (freebsd-amd64), const CS7 = 512 +pkg syscall (freebsd-amd64), const CS7 ideal-int +pkg syscall (freebsd-amd64), const CS8 = 768 +pkg syscall (freebsd-amd64), const CS8 ideal-int +pkg syscall (freebsd-amd64), const CSIZE = 768 +pkg syscall (freebsd-amd64), const CSIZE ideal-int +pkg syscall (freebsd-amd64), const CSTART = 17 +pkg syscall (freebsd-amd64), const CSTART ideal-int +pkg syscall (freebsd-amd64), const CSTATUS = 20 +pkg syscall (freebsd-amd64), const CSTATUS ideal-int +pkg syscall (freebsd-amd64), const CSTOP = 19 +pkg syscall (freebsd-amd64), const CSTOP ideal-int +pkg syscall (freebsd-amd64), const CSTOPB = 1024 +pkg syscall (freebsd-amd64), const CSTOPB ideal-int +pkg syscall (freebsd-amd64), const CSUSP = 26 +pkg syscall (freebsd-amd64), const CSUSP ideal-int +pkg syscall (freebsd-amd64), const CTL_MAXNAME = 24 +pkg syscall (freebsd-amd64), const CTL_NET = 4 +pkg syscall (freebsd-amd64), const DLT_A429 = 184 +pkg syscall (freebsd-amd64), const DLT_A653_ICM = 185 +pkg syscall (freebsd-amd64), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-amd64), const DLT_AOS = 222 +pkg syscall (freebsd-amd64), const DLT_AOS ideal-int +pkg syscall (freebsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-amd64), const DLT_ARCNET = 7 +pkg syscall (freebsd-amd64), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-amd64), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-amd64), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-amd64), const DLT_AURORA = 126 +pkg syscall (freebsd-amd64), const DLT_AX25 = 3 +pkg syscall (freebsd-amd64), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-amd64), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-amd64), const DLT_CAN20B = 190 +pkg syscall (freebsd-amd64), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-amd64), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-amd64), const DLT_CHAOS = 5 +pkg syscall (freebsd-amd64), const DLT_CHDLC = 104 +pkg syscall (freebsd-amd64), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-amd64), const DLT_C_HDLC = 104 +pkg syscall (freebsd-amd64), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-amd64), const DLT_DBUS = 231 +pkg syscall (freebsd-amd64), const DLT_DBUS ideal-int +pkg syscall (freebsd-amd64), const DLT_DECT = 221 +pkg syscall (freebsd-amd64), const DLT_DECT ideal-int +pkg syscall (freebsd-amd64), const DLT_DOCSIS = 143 +pkg syscall (freebsd-amd64), const DLT_DVB_CI = 235 +pkg syscall (freebsd-amd64), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-amd64), const DLT_ECONET = 115 +pkg syscall (freebsd-amd64), const DLT_EN10MB = 1 +pkg syscall (freebsd-amd64), const DLT_EN3MB = 2 +pkg syscall (freebsd-amd64), const DLT_ENC = 109 +pkg syscall (freebsd-amd64), const DLT_ERF = 197 +pkg syscall (freebsd-amd64), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-amd64), const DLT_ERF_POS = 176 +pkg syscall (freebsd-amd64), const DLT_FC_2 = 224 +pkg syscall (freebsd-amd64), const DLT_FC_2 ideal-int +pkg syscall (freebsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-amd64), const DLT_FDDI = 10 +pkg syscall (freebsd-amd64), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-amd64), const DLT_FRELAY = 107 +pkg syscall (freebsd-amd64), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-amd64), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-amd64), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-amd64), const DLT_GPF_F = 171 +pkg syscall (freebsd-amd64), const DLT_GPF_T = 170 +pkg syscall (freebsd-amd64), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-amd64), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-amd64), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-amd64), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-amd64), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-amd64), const DLT_HHDLC = 121 +pkg syscall (freebsd-amd64), const DLT_IBM_SN = 146 +pkg syscall (freebsd-amd64), const DLT_IBM_SP = 145 +pkg syscall (freebsd-amd64), const DLT_IEEE802 = 6 +pkg syscall (freebsd-amd64), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-amd64), const DLT_IPFILTER = 116 +pkg syscall (freebsd-amd64), const DLT_IPMB = 199 +pkg syscall (freebsd-amd64), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-amd64), const DLT_IPNET = 226 +pkg syscall (freebsd-amd64), const DLT_IPNET ideal-int +pkg syscall (freebsd-amd64), const DLT_IPOIB = 242 +pkg syscall (freebsd-amd64), const DLT_IPOIB ideal-int +pkg syscall (freebsd-amd64), const DLT_IPV4 = 228 +pkg syscall (freebsd-amd64), const DLT_IPV4 ideal-int +pkg syscall (freebsd-amd64), const DLT_IPV6 = 229 +pkg syscall (freebsd-amd64), const DLT_IPV6 ideal-int +pkg syscall (freebsd-amd64), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-amd64), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-amd64), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-amd64), const DLT_LAPD = 203 +pkg syscall (freebsd-amd64), const DLT_LIN = 212 +pkg syscall (freebsd-amd64), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-amd64), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-amd64), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-amd64), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-amd64), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-amd64), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-amd64), const DLT_LOOP = 108 +pkg syscall (freebsd-amd64), const DLT_LTALK = 114 +pkg syscall (freebsd-amd64), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-amd64), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-amd64), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-amd64), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-amd64), const DLT_MFR = 182 +pkg syscall (freebsd-amd64), const DLT_MOST = 211 +pkg syscall (freebsd-amd64), const DLT_MPLS = 219 +pkg syscall (freebsd-amd64), const DLT_MPLS ideal-int +pkg syscall (freebsd-amd64), const DLT_MTP2 = 140 +pkg syscall (freebsd-amd64), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-amd64), const DLT_MTP3 = 141 +pkg syscall (freebsd-amd64), const DLT_MUX27010 = 236 +pkg syscall (freebsd-amd64), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-amd64), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-amd64), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-amd64), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-amd64), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-amd64), const DLT_NFLOG = 239 +pkg syscall (freebsd-amd64), const DLT_NFLOG ideal-int +pkg syscall (freebsd-amd64), const DLT_NULL = 0 +pkg syscall (freebsd-amd64), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-amd64), const DLT_PFLOG = 117 +pkg syscall (freebsd-amd64), const DLT_PFSYNC = 121 +pkg syscall (freebsd-amd64), const DLT_PPI = 192 +pkg syscall (freebsd-amd64), const DLT_PPP = 9 +pkg syscall (freebsd-amd64), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-amd64), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-amd64), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-amd64), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-amd64), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-amd64), const DLT_PRONET = 4 +pkg syscall (freebsd-amd64), const DLT_RAIF1 = 198 +pkg syscall (freebsd-amd64), const DLT_RAW = 12 +pkg syscall (freebsd-amd64), const DLT_RIO = 124 +pkg syscall (freebsd-amd64), const DLT_SCCP = 142 +pkg syscall (freebsd-amd64), const DLT_SITA = 196 +pkg syscall (freebsd-amd64), const DLT_SLIP = 8 +pkg syscall (freebsd-amd64), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-amd64), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-amd64), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-amd64), const DLT_SUNATM = 123 +pkg syscall (freebsd-amd64), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-amd64), const DLT_TZSP = 128 +pkg syscall (freebsd-amd64), const DLT_USB = 186 +pkg syscall (freebsd-amd64), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-amd64), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-amd64), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-amd64), const DLT_USER0 = 147 +pkg syscall (freebsd-amd64), const DLT_USER1 = 148 +pkg syscall (freebsd-amd64), const DLT_USER10 = 157 +pkg syscall (freebsd-amd64), const DLT_USER11 = 158 +pkg syscall (freebsd-amd64), const DLT_USER12 = 159 +pkg syscall (freebsd-amd64), const DLT_USER13 = 160 +pkg syscall (freebsd-amd64), const DLT_USER14 = 161 +pkg syscall (freebsd-amd64), const DLT_USER15 = 162 +pkg syscall (freebsd-amd64), const DLT_USER2 = 149 +pkg syscall (freebsd-amd64), const DLT_USER3 = 150 +pkg syscall (freebsd-amd64), const DLT_USER4 = 151 +pkg syscall (freebsd-amd64), const DLT_USER5 = 152 +pkg syscall (freebsd-amd64), const DLT_USER6 = 153 +pkg syscall (freebsd-amd64), const DLT_USER7 = 154 +pkg syscall (freebsd-amd64), const DLT_USER8 = 155 +pkg syscall (freebsd-amd64), const DLT_USER9 = 156 +pkg syscall (freebsd-amd64), const DLT_WIHART = 223 +pkg syscall (freebsd-amd64), const DLT_WIHART ideal-int +pkg syscall (freebsd-amd64), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-amd64), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-amd64), const DT_BLK = 6 +pkg syscall (freebsd-amd64), const DT_CHR = 2 +pkg syscall (freebsd-amd64), const DT_DIR = 4 +pkg syscall (freebsd-amd64), const DT_FIFO = 1 +pkg syscall (freebsd-amd64), const DT_LNK = 10 +pkg syscall (freebsd-amd64), const DT_REG = 8 +pkg syscall (freebsd-amd64), const DT_SOCK = 12 +pkg syscall (freebsd-amd64), const DT_UNKNOWN = 0 +pkg syscall (freebsd-amd64), const DT_WHT = 14 +pkg syscall (freebsd-amd64), const E2BIG = 7 +pkg syscall (freebsd-amd64), const EACCES = 13 +pkg syscall (freebsd-amd64), const EADDRINUSE = 48 +pkg syscall (freebsd-amd64), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-amd64), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-amd64), const EAGAIN = 35 +pkg syscall (freebsd-amd64), const EALREADY = 37 +pkg syscall (freebsd-amd64), const EAUTH = 80 +pkg syscall (freebsd-amd64), const EBADF = 9 +pkg syscall (freebsd-amd64), const EBADMSG = 89 +pkg syscall (freebsd-amd64), const EBADRPC = 72 +pkg syscall (freebsd-amd64), const EBUSY = 16 +pkg syscall (freebsd-amd64), const ECANCELED = 85 +pkg syscall (freebsd-amd64), const ECAPMODE = 94 +pkg syscall (freebsd-amd64), const ECAPMODE Errno +pkg syscall (freebsd-amd64), const ECHILD = 10 +pkg syscall (freebsd-amd64), const ECHO = 8 +pkg syscall (freebsd-amd64), const ECHOCTL = 64 +pkg syscall (freebsd-amd64), const ECHOE = 2 +pkg syscall (freebsd-amd64), const ECHOK = 4 +pkg syscall (freebsd-amd64), const ECHOKE = 1 +pkg syscall (freebsd-amd64), const ECHONL = 16 +pkg syscall (freebsd-amd64), const ECHOPRT = 32 +pkg syscall (freebsd-amd64), const ECONNABORTED = 53 +pkg syscall (freebsd-amd64), const ECONNREFUSED = 61 +pkg syscall (freebsd-amd64), const ECONNRESET = 54 +pkg syscall (freebsd-amd64), const EDEADLK = 11 +pkg syscall (freebsd-amd64), const EDESTADDRREQ = 39 +pkg syscall (freebsd-amd64), const EDOM = 33 +pkg syscall (freebsd-amd64), const EDOOFUS = 88 +pkg syscall (freebsd-amd64), const EDQUOT = 69 +pkg syscall (freebsd-amd64), const EEXIST = 17 +pkg syscall (freebsd-amd64), const EFAULT = 14 +pkg syscall (freebsd-amd64), const EFBIG = 27 +pkg syscall (freebsd-amd64), const EFTYPE = 79 +pkg syscall (freebsd-amd64), const EHOSTDOWN = 64 +pkg syscall (freebsd-amd64), const EHOSTUNREACH = 65 +pkg syscall (freebsd-amd64), const EIDRM = 82 +pkg syscall (freebsd-amd64), const EILSEQ = 86 +pkg syscall (freebsd-amd64), const EINPROGRESS = 36 +pkg syscall (freebsd-amd64), const EINTR = 4 +pkg syscall (freebsd-amd64), const EINVAL = 22 +pkg syscall (freebsd-amd64), const EIO = 5 +pkg syscall (freebsd-amd64), const EISCONN = 56 +pkg syscall (freebsd-amd64), const EISDIR = 21 +pkg syscall (freebsd-amd64), const ELAST = 94 +pkg syscall (freebsd-amd64), const ELOOP = 62 +pkg syscall (freebsd-amd64), const EMFILE = 24 +pkg syscall (freebsd-amd64), const EMLINK = 31 +pkg syscall (freebsd-amd64), const EMSGSIZE = 40 +pkg syscall (freebsd-amd64), const EMULTIHOP = 90 +pkg syscall (freebsd-amd64), const ENAMETOOLONG = 63 +pkg syscall (freebsd-amd64), const ENEEDAUTH = 81 +pkg syscall (freebsd-amd64), const ENETDOWN = 50 +pkg syscall (freebsd-amd64), const ENETRESET = 52 +pkg syscall (freebsd-amd64), const ENETUNREACH = 51 +pkg syscall (freebsd-amd64), const ENFILE = 23 +pkg syscall (freebsd-amd64), const ENOATTR = 87 +pkg syscall (freebsd-amd64), const ENOBUFS = 55 +pkg syscall (freebsd-amd64), const ENODEV = 19 +pkg syscall (freebsd-amd64), const ENOEXEC = 8 +pkg syscall (freebsd-amd64), const ENOLCK = 77 +pkg syscall (freebsd-amd64), const ENOLINK = 91 +pkg syscall (freebsd-amd64), const ENOMEM = 12 +pkg syscall (freebsd-amd64), const ENOMSG = 83 +pkg syscall (freebsd-amd64), const ENOPROTOOPT = 42 +pkg syscall (freebsd-amd64), const ENOSPC = 28 +pkg syscall (freebsd-amd64), const ENOSYS = 78 +pkg syscall (freebsd-amd64), const ENOTBLK = 15 +pkg syscall (freebsd-amd64), const ENOTCAPABLE = 93 +pkg syscall (freebsd-amd64), const ENOTCONN = 57 +pkg syscall (freebsd-amd64), const ENOTDIR = 20 +pkg syscall (freebsd-amd64), const ENOTEMPTY = 66 +pkg syscall (freebsd-amd64), const ENOTSOCK = 38 +pkg syscall (freebsd-amd64), const ENOTSUP = 45 +pkg syscall (freebsd-amd64), const ENOTTY = 25 +pkg syscall (freebsd-amd64), const ENXIO = 6 +pkg syscall (freebsd-amd64), const EOPNOTSUPP = 45 +pkg syscall (freebsd-amd64), const EOVERFLOW = 84 +pkg syscall (freebsd-amd64), const EPERM = 1 +pkg syscall (freebsd-amd64), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-amd64), const EPIPE = 32 +pkg syscall (freebsd-amd64), const EPROCLIM = 67 +pkg syscall (freebsd-amd64), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-amd64), const EPROGMISMATCH = 75 +pkg syscall (freebsd-amd64), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-amd64), const EPROTO = 92 +pkg syscall (freebsd-amd64), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-amd64), const EPROTOTYPE = 41 +pkg syscall (freebsd-amd64), const ERANGE = 34 +pkg syscall (freebsd-amd64), const EREMOTE = 71 +pkg syscall (freebsd-amd64), const EROFS = 30 +pkg syscall (freebsd-amd64), const ERPCMISMATCH = 73 +pkg syscall (freebsd-amd64), const ESHUTDOWN = 58 +pkg syscall (freebsd-amd64), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-amd64), const ESPIPE = 29 +pkg syscall (freebsd-amd64), const ESRCH = 3 +pkg syscall (freebsd-amd64), const ESTALE = 70 +pkg syscall (freebsd-amd64), const ETIMEDOUT = 60 +pkg syscall (freebsd-amd64), const ETOOMANYREFS = 59 +pkg syscall (freebsd-amd64), const ETXTBSY = 26 +pkg syscall (freebsd-amd64), const EUSERS = 68 +pkg syscall (freebsd-amd64), const EVFILT_AIO = -3 +pkg syscall (freebsd-amd64), const EVFILT_FS = -9 +pkg syscall (freebsd-amd64), const EVFILT_LIO = -10 +pkg syscall (freebsd-amd64), const EVFILT_PROC = -5 +pkg syscall (freebsd-amd64), const EVFILT_READ = -1 +pkg syscall (freebsd-amd64), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-amd64), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-amd64), const EVFILT_TIMER = -7 +pkg syscall (freebsd-amd64), const EVFILT_USER = -11 +pkg syscall (freebsd-amd64), const EVFILT_VNODE = -4 +pkg syscall (freebsd-amd64), const EVFILT_WRITE = -2 +pkg syscall (freebsd-amd64), const EV_ADD = 1 +pkg syscall (freebsd-amd64), const EV_CLEAR = 32 +pkg syscall (freebsd-amd64), const EV_DELETE = 2 +pkg syscall (freebsd-amd64), const EV_DISABLE = 8 +pkg syscall (freebsd-amd64), const EV_DISPATCH = 128 +pkg syscall (freebsd-amd64), const EV_ENABLE = 4 +pkg syscall (freebsd-amd64), const EV_EOF = 32768 +pkg syscall (freebsd-amd64), const EV_ERROR = 16384 +pkg syscall (freebsd-amd64), const EV_FLAG1 = 8192 +pkg syscall (freebsd-amd64), const EV_ONESHOT = 16 +pkg syscall (freebsd-amd64), const EV_RECEIPT = 64 +pkg syscall (freebsd-amd64), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-amd64), const EWOULDBLOCK = 35 +pkg syscall (freebsd-amd64), const EXDEV = 18 +pkg syscall (freebsd-amd64), const EXTA = 19200 +pkg syscall (freebsd-amd64), const EXTB = 38400 +pkg syscall (freebsd-amd64), const EXTPROC = 2048 +pkg syscall (freebsd-amd64), const FD_CLOEXEC = 1 +pkg syscall (freebsd-amd64), const FD_SETSIZE = 1024 +pkg syscall (freebsd-amd64), const FLUSHO = 8388608 +pkg syscall (freebsd-amd64), const FLUSHO ideal-int +pkg syscall (freebsd-amd64), const F_CANCEL = 5 +pkg syscall (freebsd-amd64), const F_DUP2FD = 10 +pkg syscall (freebsd-amd64), const F_DUPFD = 0 +pkg syscall (freebsd-amd64), const F_GETFD = 1 +pkg syscall (freebsd-amd64), const F_GETFL = 3 +pkg syscall (freebsd-amd64), const F_GETLK = 11 +pkg syscall (freebsd-amd64), const F_GETOWN = 5 +pkg syscall (freebsd-amd64), const F_OGETLK = 7 +pkg syscall (freebsd-amd64), const F_OK = 0 +pkg syscall (freebsd-amd64), const F_OSETLK = 8 +pkg syscall (freebsd-amd64), const F_OSETLKW = 9 +pkg syscall (freebsd-amd64), const F_RDAHEAD = 16 +pkg syscall (freebsd-amd64), const F_RDLCK = 1 +pkg syscall (freebsd-amd64), const F_READAHEAD = 15 +pkg syscall (freebsd-amd64), const F_SETFD = 2 +pkg syscall (freebsd-amd64), const F_SETFL = 4 +pkg syscall (freebsd-amd64), const F_SETLK = 12 +pkg syscall (freebsd-amd64), const F_SETLKW = 13 +pkg syscall (freebsd-amd64), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-amd64), const F_SETOWN = 6 +pkg syscall (freebsd-amd64), const F_UNLCK = 2 +pkg syscall (freebsd-amd64), const F_UNLCKSYS = 4 +pkg syscall (freebsd-amd64), const F_WRLCK = 3 +pkg syscall (freebsd-amd64), const HUPCL = 16384 +pkg syscall (freebsd-amd64), const HUPCL ideal-int +pkg syscall (freebsd-amd64), const ICANON = 256 +pkg syscall (freebsd-amd64), const ICANON ideal-int +pkg syscall (freebsd-amd64), const ICRNL = 256 +pkg syscall (freebsd-amd64), const ICRNL ideal-int +pkg syscall (freebsd-amd64), const IEXTEN = 1024 +pkg syscall (freebsd-amd64), const IEXTEN ideal-int +pkg syscall (freebsd-amd64), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-amd64), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-amd64), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-amd64), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-amd64), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-amd64), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-amd64), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-amd64), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-amd64), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-amd64), const IFF_DEBUG = 4 +pkg syscall (freebsd-amd64), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-amd64), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-amd64), const IFF_DYING = 2097152 +pkg syscall (freebsd-amd64), const IFF_LINK0 = 4096 +pkg syscall (freebsd-amd64), const IFF_LINK1 = 8192 +pkg syscall (freebsd-amd64), const IFF_LINK2 = 16384 +pkg syscall (freebsd-amd64), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-amd64), const IFF_MONITOR = 262144 +pkg syscall (freebsd-amd64), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-amd64), const IFF_NOARP = 128 +pkg syscall (freebsd-amd64), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-amd64), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-amd64), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-amd64), const IFF_PROMISC = 256 +pkg syscall (freebsd-amd64), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-amd64), const IFF_RUNNING = 64 +pkg syscall (freebsd-amd64), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-amd64), const IFF_SMART = 32 +pkg syscall (freebsd-amd64), const IFF_STATICARP = 524288 +pkg syscall (freebsd-amd64), const IFNAMSIZ = 16 +pkg syscall (freebsd-amd64), const IFT_1822 = 2 +pkg syscall (freebsd-amd64), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-amd64), const IFT_AAL2 = 187 +pkg syscall (freebsd-amd64), const IFT_AAL5 = 49 +pkg syscall (freebsd-amd64), const IFT_ADSL = 94 +pkg syscall (freebsd-amd64), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-amd64), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-amd64), const IFT_ARAP = 88 +pkg syscall (freebsd-amd64), const IFT_ARCNET = 35 +pkg syscall (freebsd-amd64), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-amd64), const IFT_ASYNC = 84 +pkg syscall (freebsd-amd64), const IFT_ATM = 37 +pkg syscall (freebsd-amd64), const IFT_ATMDXI = 105 +pkg syscall (freebsd-amd64), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-amd64), const IFT_ATMIMA = 107 +pkg syscall (freebsd-amd64), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-amd64), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-amd64), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-amd64), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-amd64), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-amd64), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-amd64), const IFT_BRIDGE = 209 +pkg syscall (freebsd-amd64), const IFT_BSC = 83 +pkg syscall (freebsd-amd64), const IFT_CARP = 248 +pkg syscall (freebsd-amd64), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-amd64), const IFT_CEPT = 19 +pkg syscall (freebsd-amd64), const IFT_CES = 133 +pkg syscall (freebsd-amd64), const IFT_CHANNEL = 70 +pkg syscall (freebsd-amd64), const IFT_CNR = 85 +pkg syscall (freebsd-amd64), const IFT_COFFEE = 132 +pkg syscall (freebsd-amd64), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-amd64), const IFT_DCN = 141 +pkg syscall (freebsd-amd64), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-amd64), const IFT_DLSW = 74 +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-amd64), const IFT_DS0 = 81 +pkg syscall (freebsd-amd64), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-amd64), const IFT_DS1FDL = 170 +pkg syscall (freebsd-amd64), const IFT_DS3 = 30 +pkg syscall (freebsd-amd64), const IFT_DTM = 140 +pkg syscall (freebsd-amd64), const IFT_DVBASILN = 172 +pkg syscall (freebsd-amd64), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-amd64), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-amd64), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-amd64), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-amd64), const IFT_ENC = 244 +pkg syscall (freebsd-amd64), const IFT_EON = 25 +pkg syscall (freebsd-amd64), const IFT_EPLRS = 87 +pkg syscall (freebsd-amd64), const IFT_ESCON = 73 +pkg syscall (freebsd-amd64), const IFT_ETHER = 6 +pkg syscall (freebsd-amd64), const IFT_FAITH = 242 +pkg syscall (freebsd-amd64), const IFT_FAST = 125 +pkg syscall (freebsd-amd64), const IFT_FASTETHER = 62 +pkg syscall (freebsd-amd64), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-amd64), const IFT_FDDI = 15 +pkg syscall (freebsd-amd64), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-amd64), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-amd64), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-amd64), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-amd64), const IFT_FRELAY = 32 +pkg syscall (freebsd-amd64), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-amd64), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-amd64), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-amd64), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-amd64), const IFT_G703AT64K = 66 +pkg syscall (freebsd-amd64), const IFT_GIF = 240 +pkg syscall (freebsd-amd64), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-amd64), const IFT_GR303IDT = 178 +pkg syscall (freebsd-amd64), const IFT_GR303RDT = 177 +pkg syscall (freebsd-amd64), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-amd64), const IFT_H323PROXY = 165 +pkg syscall (freebsd-amd64), const IFT_HDH1822 = 3 +pkg syscall (freebsd-amd64), const IFT_HDLC = 118 +pkg syscall (freebsd-amd64), const IFT_HDSL2 = 168 +pkg syscall (freebsd-amd64), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-amd64), const IFT_HIPPI = 47 +pkg syscall (freebsd-amd64), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-amd64), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-amd64), const IFT_HSSI = 46 +pkg syscall (freebsd-amd64), const IFT_HY = 14 +pkg syscall (freebsd-amd64), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-amd64), const IFT_IDSL = 154 +pkg syscall (freebsd-amd64), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-amd64), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-amd64), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-amd64), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-amd64), const IFT_IFGSN = 145 +pkg syscall (freebsd-amd64), const IFT_IMT = 190 +pkg syscall (freebsd-amd64), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-amd64), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-amd64), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-amd64), const IFT_IP = 126 +pkg syscall (freebsd-amd64), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-amd64), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-amd64), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-amd64), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-amd64), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-amd64), const IFT_IPXIP = 249 +pkg syscall (freebsd-amd64), const IFT_ISDN = 63 +pkg syscall (freebsd-amd64), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-amd64), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-amd64), const IFT_ISDNS = 75 +pkg syscall (freebsd-amd64), const IFT_ISDNU = 76 +pkg syscall (freebsd-amd64), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-amd64), const IFT_ISO88023 = 7 +pkg syscall (freebsd-amd64), const IFT_ISO88024 = 8 +pkg syscall (freebsd-amd64), const IFT_ISO88025 = 9 +pkg syscall (freebsd-amd64), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-amd64), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-amd64), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-amd64), const IFT_ISO88026 = 10 +pkg syscall (freebsd-amd64), const IFT_ISUP = 179 +pkg syscall (freebsd-amd64), const IFT_L2VLAN = 135 +pkg syscall (freebsd-amd64), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-amd64), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-amd64), const IFT_LAPB = 16 +pkg syscall (freebsd-amd64), const IFT_LAPD = 77 +pkg syscall (freebsd-amd64), const IFT_LAPF = 119 +pkg syscall (freebsd-amd64), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-amd64), const IFT_LOOP = 24 +pkg syscall (freebsd-amd64), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-amd64), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-amd64), const IFT_MIOX25 = 38 +pkg syscall (freebsd-amd64), const IFT_MODEM = 48 +pkg syscall (freebsd-amd64), const IFT_MPC = 113 +pkg syscall (freebsd-amd64), const IFT_MPLS = 166 +pkg syscall (freebsd-amd64), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-amd64), const IFT_MSDSL = 143 +pkg syscall (freebsd-amd64), const IFT_MVL = 191 +pkg syscall (freebsd-amd64), const IFT_MYRINET = 99 +pkg syscall (freebsd-amd64), const IFT_NFAS = 175 +pkg syscall (freebsd-amd64), const IFT_NSIP = 27 +pkg syscall (freebsd-amd64), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-amd64), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-amd64), const IFT_OTHER = 1 +pkg syscall (freebsd-amd64), const IFT_P10 = 12 +pkg syscall (freebsd-amd64), const IFT_P80 = 13 +pkg syscall (freebsd-amd64), const IFT_PARA = 34 +pkg syscall (freebsd-amd64), const IFT_PFLOG = 246 +pkg syscall (freebsd-amd64), const IFT_PFSYNC = 247 +pkg syscall (freebsd-amd64), const IFT_PLC = 174 +pkg syscall (freebsd-amd64), const IFT_POS = 171 +pkg syscall (freebsd-amd64), const IFT_PPP = 23 +pkg syscall (freebsd-amd64), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-amd64), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-amd64), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-amd64), const IFT_PROPMUX = 54 +pkg syscall (freebsd-amd64), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-amd64), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-amd64), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-amd64), const IFT_PVC = 241 +pkg syscall (freebsd-amd64), const IFT_QLLC = 68 +pkg syscall (freebsd-amd64), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-amd64), const IFT_RADSL = 95 +pkg syscall (freebsd-amd64), const IFT_REACHDSL = 192 +pkg syscall (freebsd-amd64), const IFT_RFC1483 = 159 +pkg syscall (freebsd-amd64), const IFT_RS232 = 33 +pkg syscall (freebsd-amd64), const IFT_RSRB = 79 +pkg syscall (freebsd-amd64), const IFT_SDLC = 17 +pkg syscall (freebsd-amd64), const IFT_SDSL = 96 +pkg syscall (freebsd-amd64), const IFT_SHDSL = 169 +pkg syscall (freebsd-amd64), const IFT_SIP = 31 +pkg syscall (freebsd-amd64), const IFT_SLIP = 28 +pkg syscall (freebsd-amd64), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-amd64), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-amd64), const IFT_SONET = 39 +pkg syscall (freebsd-amd64), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-amd64), const IFT_SONETPATH = 50 +pkg syscall (freebsd-amd64), const IFT_SONETVT = 51 +pkg syscall (freebsd-amd64), const IFT_SRP = 151 +pkg syscall (freebsd-amd64), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-amd64), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-amd64), const IFT_STARLAN = 11 +pkg syscall (freebsd-amd64), const IFT_STF = 215 +pkg syscall (freebsd-amd64), const IFT_T1 = 18 +pkg syscall (freebsd-amd64), const IFT_TDLC = 116 +pkg syscall (freebsd-amd64), const IFT_TERMPAD = 91 +pkg syscall (freebsd-amd64), const IFT_TR008 = 176 +pkg syscall (freebsd-amd64), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-amd64), const IFT_TUNNEL = 131 +pkg syscall (freebsd-amd64), const IFT_ULTRA = 29 +pkg syscall (freebsd-amd64), const IFT_USB = 160 +pkg syscall (freebsd-amd64), const IFT_V11 = 64 +pkg syscall (freebsd-amd64), const IFT_V35 = 45 +pkg syscall (freebsd-amd64), const IFT_V36 = 65 +pkg syscall (freebsd-amd64), const IFT_V37 = 120 +pkg syscall (freebsd-amd64), const IFT_VDSL = 97 +pkg syscall (freebsd-amd64), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-amd64), const IFT_VOICEEM = 100 +pkg syscall (freebsd-amd64), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-amd64), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-amd64), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-amd64), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-amd64), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-amd64), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-amd64), const IFT_X213 = 93 +pkg syscall (freebsd-amd64), const IFT_X25 = 5 +pkg syscall (freebsd-amd64), const IFT_X25DDN = 4 +pkg syscall (freebsd-amd64), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-amd64), const IFT_X25MLP = 121 +pkg syscall (freebsd-amd64), const IFT_X25PLE = 40 +pkg syscall (freebsd-amd64), const IFT_XETHER = 26 +pkg syscall (freebsd-amd64), const IGNBRK = 1 +pkg syscall (freebsd-amd64), const IGNBRK ideal-int +pkg syscall (freebsd-amd64), const IGNCR = 128 +pkg syscall (freebsd-amd64), const IGNCR ideal-int +pkg syscall (freebsd-amd64), const IGNPAR = 4 +pkg syscall (freebsd-amd64), const IGNPAR ideal-int +pkg syscall (freebsd-amd64), const IMAXBEL = 8192 +pkg syscall (freebsd-amd64), const IMAXBEL ideal-int +pkg syscall (freebsd-amd64), const INLCR = 64 +pkg syscall (freebsd-amd64), const INLCR ideal-int +pkg syscall (freebsd-amd64), const INPCK = 16 +pkg syscall (freebsd-amd64), const INPCK ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-amd64), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-amd64), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-amd64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-amd64), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-amd64), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-amd64), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-amd64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-amd64), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-amd64), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-amd64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-amd64), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-amd64), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-amd64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-amd64), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-amd64), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-amd64), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_3PC = 34 +pkg syscall (freebsd-amd64), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-amd64), const IPPROTO_AH = 51 +pkg syscall (freebsd-amd64), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-amd64), const IPPROTO_APES = 99 +pkg syscall (freebsd-amd64), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-amd64), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-amd64), const IPPROTO_BHA = 49 +pkg syscall (freebsd-amd64), const IPPROTO_BLT = 30 +pkg syscall (freebsd-amd64), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-amd64), const IPPROTO_CARP = 112 +pkg syscall (freebsd-amd64), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-amd64), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-amd64), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-amd64), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-amd64), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-amd64), const IPPROTO_DDP = 37 +pkg syscall (freebsd-amd64), const IPPROTO_DGP = 86 +pkg syscall (freebsd-amd64), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-amd64), const IPPROTO_DONE = 257 +pkg syscall (freebsd-amd64), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-amd64), const IPPROTO_EGP = 8 +pkg syscall (freebsd-amd64), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-amd64), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-amd64), const IPPROTO_EON = 80 +pkg syscall (freebsd-amd64), const IPPROTO_ESP = 50 +pkg syscall (freebsd-amd64), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-amd64), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-amd64), const IPPROTO_GGP = 3 +pkg syscall (freebsd-amd64), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-amd64), const IPPROTO_GRE = 47 +pkg syscall (freebsd-amd64), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-amd64), const IPPROTO_HMP = 20 +pkg syscall (freebsd-amd64), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-amd64), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-amd64), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-amd64), const IPPROTO_IDP = 22 +pkg syscall (freebsd-amd64), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-amd64), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-amd64), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-amd64), const IPPROTO_IGP = 85 +pkg syscall (freebsd-amd64), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-amd64), const IPPROTO_IL = 40 +pkg syscall (freebsd-amd64), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-amd64), const IPPROTO_INP = 32 +pkg syscall (freebsd-amd64), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-amd64), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-amd64), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-amd64), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-amd64), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-amd64), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-amd64), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-amd64), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-amd64), const IPPROTO_LARP = 91 +pkg syscall (freebsd-amd64), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-amd64), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-amd64), const IPPROTO_MAX = 256 +pkg syscall (freebsd-amd64), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-amd64), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-amd64), const IPPROTO_MH = 135 +pkg syscall (freebsd-amd64), const IPPROTO_MH ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-amd64), const IPPROTO_MICP = 95 +pkg syscall (freebsd-amd64), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-amd64), const IPPROTO_MTP = 92 +pkg syscall (freebsd-amd64), const IPPROTO_MUX = 18 +pkg syscall (freebsd-amd64), const IPPROTO_ND = 77 +pkg syscall (freebsd-amd64), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-amd64), const IPPROTO_NONE = 59 +pkg syscall (freebsd-amd64), const IPPROTO_NSP = 31 +pkg syscall (freebsd-amd64), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-amd64), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-amd64), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-amd64), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-amd64), const IPPROTO_PGM = 113 +pkg syscall (freebsd-amd64), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-amd64), const IPPROTO_PIM = 103 +pkg syscall (freebsd-amd64), const IPPROTO_PRM = 21 +pkg syscall (freebsd-amd64), const IPPROTO_PUP = 12 +pkg syscall (freebsd-amd64), const IPPROTO_PVP = 75 +pkg syscall (freebsd-amd64), const IPPROTO_RAW = 255 +pkg syscall (freebsd-amd64), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-amd64), const IPPROTO_RDP = 27 +pkg syscall (freebsd-amd64), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-amd64), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-amd64), const IPPROTO_RVD = 66 +pkg syscall (freebsd-amd64), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-amd64), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-amd64), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-amd64), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-amd64), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-amd64), const IPPROTO_SEND = 259 +pkg syscall (freebsd-amd64), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SEP = 33 +pkg syscall (freebsd-amd64), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-amd64), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-amd64), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-amd64), const IPPROTO_ST = 7 +pkg syscall (freebsd-amd64), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-amd64), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-amd64), const IPPROTO_TCF = 87 +pkg syscall (freebsd-amd64), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-amd64), const IPPROTO_TP = 29 +pkg syscall (freebsd-amd64), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-amd64), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-amd64), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-amd64), const IPPROTO_TTP = 84 +pkg syscall (freebsd-amd64), const IPPROTO_VINES = 83 +pkg syscall (freebsd-amd64), const IPPROTO_VISA = 70 +pkg syscall (freebsd-amd64), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-amd64), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-amd64), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-amd64), const IPPROTO_WSN = 74 +pkg syscall (freebsd-amd64), const IPPROTO_XNET = 15 +pkg syscall (freebsd-amd64), const IPPROTO_XTP = 36 +pkg syscall (freebsd-amd64), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-amd64), const IPV6_BINDANY = 64 +pkg syscall (freebsd-amd64), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-amd64), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-amd64), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-amd64), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-amd64), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-amd64), const IPV6_FAITH = 29 +pkg syscall (freebsd-amd64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-amd64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-amd64), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-amd64), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-amd64), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-amd64), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-amd64), const IPV6_FW_GET = 34 +pkg syscall (freebsd-amd64), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-amd64), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-amd64), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-amd64), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-amd64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-amd64), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-amd64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-amd64), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-amd64), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-amd64), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-amd64), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-amd64), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-amd64), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-amd64), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-amd64), const IPV6_MMTU = 1280 +pkg syscall (freebsd-amd64), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-amd64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-amd64), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-amd64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-amd64), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-amd64), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-amd64), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-amd64), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-amd64), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-amd64), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-amd64), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-amd64), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-amd64), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-amd64), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-amd64), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-amd64), const IPV6_RTHDR = 51 +pkg syscall (freebsd-amd64), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-amd64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-amd64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-amd64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-amd64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-amd64), const IPV6_TCLASS = 61 +pkg syscall (freebsd-amd64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-amd64), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-amd64), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-amd64), const IPV6_VERSION = 96 +pkg syscall (freebsd-amd64), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-amd64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-amd64), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-amd64), const IP_BINDANY = 24 +pkg syscall (freebsd-amd64), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-amd64), const IP_DF = 16384 +pkg syscall (freebsd-amd64), const IP_DONTFRAG = 67 +pkg syscall (freebsd-amd64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-amd64), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-amd64), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-amd64), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-amd64), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-amd64), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-amd64), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-amd64), const IP_FAITH = 22 +pkg syscall (freebsd-amd64), const IP_FW3 = 48 +pkg syscall (freebsd-amd64), const IP_FW_ADD = 50 +pkg syscall (freebsd-amd64), const IP_FW_DEL = 51 +pkg syscall (freebsd-amd64), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-amd64), const IP_FW_GET = 54 +pkg syscall (freebsd-amd64), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-amd64), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-amd64), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-amd64), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-amd64), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-amd64), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-amd64), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-amd64), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-amd64), const IP_FW_ZERO = 53 +pkg syscall (freebsd-amd64), const IP_HDRINCL = 2 +pkg syscall (freebsd-amd64), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-amd64), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-amd64), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-amd64), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-amd64), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-amd64), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-amd64), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-amd64), const IP_MF = 8192 +pkg syscall (freebsd-amd64), const IP_MINTTL = 66 +pkg syscall (freebsd-amd64), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-amd64), const IP_MSFILTER = 74 +pkg syscall (freebsd-amd64), const IP_MSS = 576 +pkg syscall (freebsd-amd64), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-amd64), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-amd64), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-amd64), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-amd64), const IP_OFFMASK = 8191 +pkg syscall (freebsd-amd64), const IP_ONESBCAST = 23 +pkg syscall (freebsd-amd64), const IP_OPTIONS = 1 +pkg syscall (freebsd-amd64), const IP_PORTRANGE = 19 +pkg syscall (freebsd-amd64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-amd64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-amd64), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-amd64), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-amd64), const IP_RECVIF = 20 +pkg syscall (freebsd-amd64), const IP_RECVOPTS = 5 +pkg syscall (freebsd-amd64), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-amd64), const IP_RECVTOS = 68 +pkg syscall (freebsd-amd64), const IP_RECVTOS ideal-int +pkg syscall (freebsd-amd64), const IP_RECVTTL = 65 +pkg syscall (freebsd-amd64), const IP_RETOPTS = 8 +pkg syscall (freebsd-amd64), const IP_RF = 32768 +pkg syscall (freebsd-amd64), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-amd64), const IP_RSVP_ON = 15 +pkg syscall (freebsd-amd64), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-amd64), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-amd64), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-amd64), const IP_TOS = 3 +pkg syscall (freebsd-amd64), const IP_TTL = 4 +pkg syscall (freebsd-amd64), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-amd64), const ISIG = 128 +pkg syscall (freebsd-amd64), const ISIG ideal-int +pkg syscall (freebsd-amd64), const ISTRIP = 32 +pkg syscall (freebsd-amd64), const ISTRIP ideal-int +pkg syscall (freebsd-amd64), const IXANY = 2048 +pkg syscall (freebsd-amd64), const IXANY ideal-int +pkg syscall (freebsd-amd64), const IXOFF = 1024 +pkg syscall (freebsd-amd64), const IXOFF ideal-int +pkg syscall (freebsd-amd64), const IXON = 512 +pkg syscall (freebsd-amd64), const IXON ideal-int +pkg syscall (freebsd-amd64), const ImplementsGetwd = false +pkg syscall (freebsd-amd64), const LOCK_EX = 2 +pkg syscall (freebsd-amd64), const LOCK_NB = 4 +pkg syscall (freebsd-amd64), const LOCK_SH = 1 +pkg syscall (freebsd-amd64), const LOCK_UN = 8 +pkg syscall (freebsd-amd64), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-amd64), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-amd64), const MADV_CORE = 9 +pkg syscall (freebsd-amd64), const MADV_CORE ideal-int +pkg syscall (freebsd-amd64), const MADV_DONTNEED = 4 +pkg syscall (freebsd-amd64), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-amd64), const MADV_FREE = 5 +pkg syscall (freebsd-amd64), const MADV_FREE ideal-int +pkg syscall (freebsd-amd64), const MADV_NOCORE = 8 +pkg syscall (freebsd-amd64), const MADV_NOCORE ideal-int +pkg syscall (freebsd-amd64), const MADV_NORMAL = 0 +pkg syscall (freebsd-amd64), const MADV_NORMAL ideal-int +pkg syscall (freebsd-amd64), const MADV_NOSYNC = 6 +pkg syscall (freebsd-amd64), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-amd64), const MADV_PROTECT = 10 +pkg syscall (freebsd-amd64), const MADV_PROTECT ideal-int +pkg syscall (freebsd-amd64), const MADV_RANDOM = 1 +pkg syscall (freebsd-amd64), const MADV_RANDOM ideal-int +pkg syscall (freebsd-amd64), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-amd64), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-amd64), const MADV_WILLNEED = 3 +pkg syscall (freebsd-amd64), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-amd64), const MAP_ANON = 4096 +pkg syscall (freebsd-amd64), const MAP_ANON ideal-int +pkg syscall (freebsd-amd64), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-amd64), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-amd64), const MAP_COPY = 2 +pkg syscall (freebsd-amd64), const MAP_COPY ideal-int +pkg syscall (freebsd-amd64), const MAP_FILE = 0 +pkg syscall (freebsd-amd64), const MAP_FILE ideal-int +pkg syscall (freebsd-amd64), const MAP_FIXED = 16 +pkg syscall (freebsd-amd64), const MAP_FIXED ideal-int +pkg syscall (freebsd-amd64), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-amd64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-amd64), const MAP_NOCORE = 131072 +pkg syscall (freebsd-amd64), const MAP_NOCORE ideal-int +pkg syscall (freebsd-amd64), const MAP_NORESERVE = 64 +pkg syscall (freebsd-amd64), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-amd64), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-amd64), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-amd64), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-amd64), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-amd64), const MAP_PRIVATE = 2 +pkg syscall (freebsd-amd64), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-amd64), const MAP_RENAME = 32 +pkg syscall (freebsd-amd64), const MAP_RENAME ideal-int +pkg syscall (freebsd-amd64), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-amd64), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-amd64), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-amd64), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-amd64), const MAP_SHARED = 1 +pkg syscall (freebsd-amd64), const MAP_SHARED ideal-int +pkg syscall (freebsd-amd64), const MAP_STACK = 1024 +pkg syscall (freebsd-amd64), const MAP_STACK ideal-int +pkg syscall (freebsd-amd64), const MCL_CURRENT = 1 +pkg syscall (freebsd-amd64), const MCL_CURRENT ideal-int +pkg syscall (freebsd-amd64), const MCL_FUTURE = 2 +pkg syscall (freebsd-amd64), const MCL_FUTURE ideal-int +pkg syscall (freebsd-amd64), const MSG_COMPAT = 32768 +pkg syscall (freebsd-amd64), const MSG_CTRUNC = 32 +pkg syscall (freebsd-amd64), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-amd64), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-amd64), const MSG_EOF = 256 +pkg syscall (freebsd-amd64), const MSG_EOR = 8 +pkg syscall (freebsd-amd64), const MSG_NBIO = 16384 +pkg syscall (freebsd-amd64), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-amd64), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-amd64), const MSG_OOB = 1 +pkg syscall (freebsd-amd64), const MSG_PEEK = 2 +pkg syscall (freebsd-amd64), const MSG_TRUNC = 16 +pkg syscall (freebsd-amd64), const MSG_WAITALL = 64 +pkg syscall (freebsd-amd64), const MS_ASYNC = 1 +pkg syscall (freebsd-amd64), const MS_ASYNC ideal-int +pkg syscall (freebsd-amd64), const MS_INVALIDATE = 2 +pkg syscall (freebsd-amd64), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-amd64), const MS_SYNC = 0 +pkg syscall (freebsd-amd64), const MS_SYNC ideal-int +pkg syscall (freebsd-amd64), const NET_RT_DUMP = 1 +pkg syscall (freebsd-amd64), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-amd64), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-amd64), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-amd64), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-amd64), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-amd64), const NET_RT_MAXID = 6 +pkg syscall (freebsd-amd64), const NOFLSH = 2147483648 +pkg syscall (freebsd-amd64), const NOFLSH ideal-int +pkg syscall (freebsd-amd64), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-amd64), const NOTE_CHILD = 4 +pkg syscall (freebsd-amd64), const NOTE_DELETE = 1 +pkg syscall (freebsd-amd64), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-amd64), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-amd64), const NOTE_EXTEND = 4 +pkg syscall (freebsd-amd64), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-amd64), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-amd64), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-amd64), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-amd64), const NOTE_FFNOP = 0 +pkg syscall (freebsd-amd64), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-amd64), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-amd64), const NOTE_LINK = 16 +pkg syscall (freebsd-amd64), const NOTE_LOWAT = 1 +pkg syscall (freebsd-amd64), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-amd64), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-amd64), const NOTE_RENAME = 32 +pkg syscall (freebsd-amd64), const NOTE_REVOKE = 64 +pkg syscall (freebsd-amd64), const NOTE_TRACK = 1 +pkg syscall (freebsd-amd64), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-amd64), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-amd64), const NOTE_WRITE = 2 +pkg syscall (freebsd-amd64), const OCRNL = 16 +pkg syscall (freebsd-amd64), const OCRNL ideal-int +pkg syscall (freebsd-amd64), const ONLCR = 2 +pkg syscall (freebsd-amd64), const ONLCR ideal-int +pkg syscall (freebsd-amd64), const ONLRET = 64 +pkg syscall (freebsd-amd64), const ONLRET ideal-int +pkg syscall (freebsd-amd64), const ONOCR = 32 +pkg syscall (freebsd-amd64), const ONOCR ideal-int +pkg syscall (freebsd-amd64), const ONOEOT = 8 +pkg syscall (freebsd-amd64), const ONOEOT ideal-int +pkg syscall (freebsd-amd64), const OPOST = 1 +pkg syscall (freebsd-amd64), const OPOST ideal-int +pkg syscall (freebsd-amd64), const O_ACCMODE = 3 +pkg syscall (freebsd-amd64), const O_APPEND = 8 +pkg syscall (freebsd-amd64), const O_ASYNC = 64 +pkg syscall (freebsd-amd64), const O_CLOEXEC = 0 +pkg syscall (freebsd-amd64), const O_CREAT = 512 +pkg syscall (freebsd-amd64), const O_DIRECT = 65536 +pkg syscall (freebsd-amd64), const O_DIRECTORY = 131072 +pkg syscall (freebsd-amd64), const O_EXCL = 2048 +pkg syscall (freebsd-amd64), const O_EXEC = 262144 +pkg syscall (freebsd-amd64), const O_EXLOCK = 32 +pkg syscall (freebsd-amd64), const O_FSYNC = 128 +pkg syscall (freebsd-amd64), const O_NDELAY = 4 +pkg syscall (freebsd-amd64), const O_NOCTTY = 32768 +pkg syscall (freebsd-amd64), const O_NOFOLLOW = 256 +pkg syscall (freebsd-amd64), const O_NONBLOCK = 4 +pkg syscall (freebsd-amd64), const O_SHLOCK = 16 +pkg syscall (freebsd-amd64), const O_SYNC = 128 +pkg syscall (freebsd-amd64), const O_TRUNC = 1024 +pkg syscall (freebsd-amd64), const O_TTY_INIT = 524288 +pkg syscall (freebsd-amd64), const PARENB = 4096 +pkg syscall (freebsd-amd64), const PARENB ideal-int +pkg syscall (freebsd-amd64), const PARMRK = 8 +pkg syscall (freebsd-amd64), const PARMRK ideal-int +pkg syscall (freebsd-amd64), const PARODD = 8192 +pkg syscall (freebsd-amd64), const PARODD ideal-int +pkg syscall (freebsd-amd64), const PENDIN = 536870912 +pkg syscall (freebsd-amd64), const PENDIN ideal-int +pkg syscall (freebsd-amd64), const PROT_EXEC = 4 +pkg syscall (freebsd-amd64), const PROT_EXEC ideal-int +pkg syscall (freebsd-amd64), const PROT_NONE = 0 +pkg syscall (freebsd-amd64), const PROT_NONE ideal-int +pkg syscall (freebsd-amd64), const PROT_READ = 1 +pkg syscall (freebsd-amd64), const PROT_READ ideal-int +pkg syscall (freebsd-amd64), const PROT_WRITE = 2 +pkg syscall (freebsd-amd64), const PROT_WRITE ideal-int +pkg syscall (freebsd-amd64), const PTRACE_CONT = 7 +pkg syscall (freebsd-amd64), const PTRACE_KILL = 8 +pkg syscall (freebsd-amd64), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-amd64), const RLIMIT_AS = 10 +pkg syscall (freebsd-amd64), const RLIMIT_CORE = 4 +pkg syscall (freebsd-amd64), const RLIMIT_CPU = 0 +pkg syscall (freebsd-amd64), const RLIMIT_DATA = 2 +pkg syscall (freebsd-amd64), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-amd64), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-amd64), const RLIMIT_STACK = 3 +pkg syscall (freebsd-amd64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-amd64), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-amd64), const RTAX_BRD = 7 +pkg syscall (freebsd-amd64), const RTAX_DST = 0 +pkg syscall (freebsd-amd64), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-amd64), const RTAX_GENMASK = 3 +pkg syscall (freebsd-amd64), const RTAX_IFA = 5 +pkg syscall (freebsd-amd64), const RTAX_IFP = 4 +pkg syscall (freebsd-amd64), const RTAX_MAX = 8 +pkg syscall (freebsd-amd64), const RTAX_NETMASK = 2 +pkg syscall (freebsd-amd64), const RTA_AUTHOR = 64 +pkg syscall (freebsd-amd64), const RTA_BRD = 128 +pkg syscall (freebsd-amd64), const RTA_DST = 1 +pkg syscall (freebsd-amd64), const RTA_GATEWAY = 2 +pkg syscall (freebsd-amd64), const RTA_GENMASK = 8 +pkg syscall (freebsd-amd64), const RTA_IFA = 32 +pkg syscall (freebsd-amd64), const RTA_IFP = 16 +pkg syscall (freebsd-amd64), const RTA_NETMASK = 4 +pkg syscall (freebsd-amd64), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-amd64), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-amd64), const RTF_DONE = 64 +pkg syscall (freebsd-amd64), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-amd64), const RTF_FMASK = 268752904 +pkg syscall (freebsd-amd64), const RTF_GATEWAY = 2 +pkg syscall (freebsd-amd64), const RTF_HOST = 4 +pkg syscall (freebsd-amd64), const RTF_LLDATA = 1024 +pkg syscall (freebsd-amd64), const RTF_LLINFO = 1024 +pkg syscall (freebsd-amd64), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-amd64), const RTF_MODIFIED = 32 +pkg syscall (freebsd-amd64), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-amd64), const RTF_PINNED = 1048576 +pkg syscall (freebsd-amd64), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-amd64), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-amd64), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-amd64), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-amd64), const RTF_REJECT = 8 +pkg syscall (freebsd-amd64), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-amd64), const RTF_STATIC = 2048 +pkg syscall (freebsd-amd64), const RTF_STICKY = 268435456 +pkg syscall (freebsd-amd64), const RTF_UP = 1 +pkg syscall (freebsd-amd64), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-amd64), const RTM_ADD = 1 +pkg syscall (freebsd-amd64), const RTM_CHANGE = 3 +pkg syscall (freebsd-amd64), const RTM_DELADDR = 13 +pkg syscall (freebsd-amd64), const RTM_DELETE = 2 +pkg syscall (freebsd-amd64), const RTM_DELMADDR = 16 +pkg syscall (freebsd-amd64), const RTM_GET = 4 +pkg syscall (freebsd-amd64), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-amd64), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-amd64), const RTM_IFINFO = 14 +pkg syscall (freebsd-amd64), const RTM_LOCK = 8 +pkg syscall (freebsd-amd64), const RTM_LOSING = 5 +pkg syscall (freebsd-amd64), const RTM_MISS = 7 +pkg syscall (freebsd-amd64), const RTM_NEWADDR = 12 +pkg syscall (freebsd-amd64), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-amd64), const RTM_OLDADD = 9 +pkg syscall (freebsd-amd64), const RTM_OLDDEL = 10 +pkg syscall (freebsd-amd64), const RTM_REDIRECT = 6 +pkg syscall (freebsd-amd64), const RTM_RESOLVE = 11 +pkg syscall (freebsd-amd64), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-amd64), const RTM_VERSION = 5 +pkg syscall (freebsd-amd64), const RTV_EXPIRE = 4 +pkg syscall (freebsd-amd64), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-amd64), const RTV_MTU = 1 +pkg syscall (freebsd-amd64), const RTV_RPIPE = 8 +pkg syscall (freebsd-amd64), const RTV_RTT = 64 +pkg syscall (freebsd-amd64), const RTV_RTTVAR = 128 +pkg syscall (freebsd-amd64), const RTV_SPIPE = 16 +pkg syscall (freebsd-amd64), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-amd64), const RTV_WEIGHT = 256 +pkg syscall (freebsd-amd64), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-amd64), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-amd64), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-amd64), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-amd64), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-amd64), const RUSAGE_SELF = 0 +pkg syscall (freebsd-amd64), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-amd64), const SCM_BINTIME = 4 +pkg syscall (freebsd-amd64), const SCM_CREDS = 3 +pkg syscall (freebsd-amd64), const SCM_RIGHTS = 1 +pkg syscall (freebsd-amd64), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-amd64), const SIGBUS = 10 +pkg syscall (freebsd-amd64), const SIGCHLD = 20 +pkg syscall (freebsd-amd64), const SIGCONT = 19 +pkg syscall (freebsd-amd64), const SIGEMT = 7 +pkg syscall (freebsd-amd64), const SIGINFO = 29 +pkg syscall (freebsd-amd64), const SIGIO = 23 +pkg syscall (freebsd-amd64), const SIGIOT = 6 +pkg syscall (freebsd-amd64), const SIGLWP = 32 +pkg syscall (freebsd-amd64), const SIGPROF = 27 +pkg syscall (freebsd-amd64), const SIGSTOP = 17 +pkg syscall (freebsd-amd64), const SIGSYS = 12 +pkg syscall (freebsd-amd64), const SIGTHR = 32 +pkg syscall (freebsd-amd64), const SIGTSTP = 18 +pkg syscall (freebsd-amd64), const SIGTTIN = 21 +pkg syscall (freebsd-amd64), const SIGTTOU = 22 +pkg syscall (freebsd-amd64), const SIGURG = 16 +pkg syscall (freebsd-amd64), const SIGUSR1 = 30 +pkg syscall (freebsd-amd64), const SIGUSR2 = 31 +pkg syscall (freebsd-amd64), const SIGVTALRM = 26 +pkg syscall (freebsd-amd64), const SIGWINCH = 28 +pkg syscall (freebsd-amd64), const SIGXCPU = 24 +pkg syscall (freebsd-amd64), const SIGXFSZ = 25 +pkg syscall (freebsd-amd64), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-amd64), const SIOCADDRT = 2151707146 +pkg syscall (freebsd-amd64), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-amd64), const SIOCAIFGROUP = 2150132103 +pkg syscall (freebsd-amd64), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-amd64), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-amd64), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-amd64), const SIOCDELRT = 2151707147 +pkg syscall (freebsd-amd64), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-amd64), const SIOCDIFGROUP = 2150132105 +pkg syscall (freebsd-amd64), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-amd64), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-amd64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (freebsd-amd64), const SIOCGETSGCNT = 3223351824 +pkg syscall (freebsd-amd64), const SIOCGETVIFCNT = 3223876111 +pkg syscall (freebsd-amd64), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-amd64), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-amd64), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-amd64), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-amd64), const SIOCGIFCONF = 3222300964 +pkg syscall (freebsd-amd64), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-amd64), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-amd64), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-amd64), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-amd64), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-amd64), const SIOCGIFGMEMB = 3223873930 +pkg syscall (freebsd-amd64), const SIOCGIFGROUP = 3223873928 +pkg syscall (freebsd-amd64), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-amd64), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-amd64), const SIOCGIFMEDIA = 3224398136 +pkg syscall (freebsd-amd64), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-amd64), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-amd64), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-amd64), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-amd64), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-amd64), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-amd64), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-amd64), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-amd64), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-amd64), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-amd64), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-amd64), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-amd64), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-amd64), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-amd64), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-amd64), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-amd64), const SIOCIFGCLONERS = 3222301048 +pkg syscall (freebsd-amd64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (freebsd-amd64), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-amd64), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-amd64), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-amd64), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-amd64), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-amd64), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-amd64), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-amd64), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-amd64), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-amd64), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-amd64), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-amd64), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-amd64), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-amd64), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-amd64), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-amd64), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-amd64), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-amd64), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-amd64), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-amd64), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-amd64), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-amd64), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-amd64), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-amd64), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-amd64), const SOCK_RDM = 4 +pkg syscall (freebsd-amd64), const SOL_SOCKET = 65535 +pkg syscall (freebsd-amd64), const SOMAXCONN = 128 +pkg syscall (freebsd-amd64), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-amd64), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-amd64), const SO_BINTIME = 8192 +pkg syscall (freebsd-amd64), const SO_BROADCAST = 32 +pkg syscall (freebsd-amd64), const SO_DEBUG = 1 +pkg syscall (freebsd-amd64), const SO_DONTROUTE = 16 +pkg syscall (freebsd-amd64), const SO_ERROR = 4103 +pkg syscall (freebsd-amd64), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-amd64), const SO_LABEL = 4105 +pkg syscall (freebsd-amd64), const SO_LINGER = 128 +pkg syscall (freebsd-amd64), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-amd64), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-amd64), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-amd64), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-amd64), const SO_NO_DDP = 32768 +pkg syscall (freebsd-amd64), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-amd64), const SO_OOBINLINE = 256 +pkg syscall (freebsd-amd64), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-amd64), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-amd64), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-amd64), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-amd64), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-amd64), const SO_RCVBUF = 4098 +pkg syscall (freebsd-amd64), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-amd64), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-amd64), const SO_REUSEADDR = 4 +pkg syscall (freebsd-amd64), const SO_REUSEPORT = 512 +pkg syscall (freebsd-amd64), const SO_SETFIB = 4116 +pkg syscall (freebsd-amd64), const SO_SNDBUF = 4097 +pkg syscall (freebsd-amd64), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-amd64), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-amd64), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-amd64), const SO_TYPE = 4104 +pkg syscall (freebsd-amd64), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-amd64), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-amd64), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-amd64), const SYS_ABORT2 = 463 +pkg syscall (freebsd-amd64), const SYS_ACCEPT = 30 +pkg syscall (freebsd-amd64), const SYS_ACCESS = 33 +pkg syscall (freebsd-amd64), const SYS_ACCT = 51 +pkg syscall (freebsd-amd64), const SYS_ADJTIME = 140 +pkg syscall (freebsd-amd64), const SYS_AUDIT = 445 +pkg syscall (freebsd-amd64), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-amd64), const SYS_AUDITON = 446 +pkg syscall (freebsd-amd64), const SYS_BIND = 104 +pkg syscall (freebsd-amd64), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-amd64), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-amd64), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-amd64), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-amd64), const SYS_CHDIR = 12 +pkg syscall (freebsd-amd64), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-amd64), const SYS_CHMOD = 15 +pkg syscall (freebsd-amd64), const SYS_CHOWN = 16 +pkg syscall (freebsd-amd64), const SYS_CHROOT = 61 +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-amd64), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-amd64), const SYS_CLOSE = 6 +pkg syscall (freebsd-amd64), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-amd64), const SYS_CONNECT = 98 +pkg syscall (freebsd-amd64), const SYS_CPUSET = 484 +pkg syscall (freebsd-amd64), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-amd64), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-amd64), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-amd64), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-amd64), const SYS_DUP = 41 +pkg syscall (freebsd-amd64), const SYS_DUP2 = 90 +pkg syscall (freebsd-amd64), const SYS_EACCESS = 376 +pkg syscall (freebsd-amd64), const SYS_EXECVE = 59 +pkg syscall (freebsd-amd64), const SYS_EXIT = 1 +pkg syscall (freebsd-amd64), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-amd64), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-amd64), const SYS_FCHDIR = 13 +pkg syscall (freebsd-amd64), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-amd64), const SYS_FCHMOD = 124 +pkg syscall (freebsd-amd64), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-amd64), const SYS_FCHOWN = 123 +pkg syscall (freebsd-amd64), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-amd64), const SYS_FCNTL = 92 +pkg syscall (freebsd-amd64), const SYS_FEXECVE = 492 +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-amd64), const SYS_FHOPEN = 298 +pkg syscall (freebsd-amd64), const SYS_FHSTAT = 299 +pkg syscall (freebsd-amd64), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-amd64), const SYS_FLOCK = 131 +pkg syscall (freebsd-amd64), const SYS_FORK = 2 +pkg syscall (freebsd-amd64), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-amd64), const SYS_FSTAT = 189 +pkg syscall (freebsd-amd64), const SYS_FSTATAT = 493 +pkg syscall (freebsd-amd64), const SYS_FSTATFS = 397 +pkg syscall (freebsd-amd64), const SYS_FSYNC = 95 +pkg syscall (freebsd-amd64), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-amd64), const SYS_FUTIMES = 206 +pkg syscall (freebsd-amd64), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-amd64), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-amd64), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-amd64), const SYS_GETAUID = 447 +pkg syscall (freebsd-amd64), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-amd64), const SYS_GETDENTS = 272 +pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-amd64), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-amd64), const SYS_GETEGID = 43 +pkg syscall (freebsd-amd64), const SYS_GETEUID = 25 +pkg syscall (freebsd-amd64), const SYS_GETFH = 161 +pkg syscall (freebsd-amd64), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-amd64), const SYS_GETGID = 47 +pkg syscall (freebsd-amd64), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-amd64), const SYS_GETITIMER = 86 +pkg syscall (freebsd-amd64), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-amd64), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-amd64), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-amd64), const SYS_GETPGID = 207 +pkg syscall (freebsd-amd64), const SYS_GETPGRP = 81 +pkg syscall (freebsd-amd64), const SYS_GETPID = 20 +pkg syscall (freebsd-amd64), const SYS_GETPPID = 39 +pkg syscall (freebsd-amd64), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-amd64), const SYS_GETRESGID = 361 +pkg syscall (freebsd-amd64), const SYS_GETRESUID = 360 +pkg syscall (freebsd-amd64), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-amd64), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-amd64), const SYS_GETSID = 310 +pkg syscall (freebsd-amd64), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-amd64), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-amd64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-amd64), const SYS_GETUID = 24 +pkg syscall (freebsd-amd64), const SYS_IOCTL = 54 +pkg syscall (freebsd-amd64), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-amd64), const SYS_JAIL = 338 +pkg syscall (freebsd-amd64), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-amd64), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-amd64), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-amd64), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-amd64), const SYS_KENV = 390 +pkg syscall (freebsd-amd64), const SYS_KEVENT = 363 +pkg syscall (freebsd-amd64), const SYS_KILL = 37 +pkg syscall (freebsd-amd64), const SYS_KLDFIND = 306 +pkg syscall (freebsd-amd64), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-amd64), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-amd64), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-amd64), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-amd64), const SYS_KLDSYM = 337 +pkg syscall (freebsd-amd64), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-amd64), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-amd64), const SYS_KQUEUE = 362 +pkg syscall (freebsd-amd64), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-amd64), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-amd64), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-amd64), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-amd64), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-amd64), const SYS_KTRACE = 45 +pkg syscall (freebsd-amd64), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-amd64), const SYS_LCHMOD = 274 +pkg syscall (freebsd-amd64), const SYS_LCHOWN = 254 +pkg syscall (freebsd-amd64), const SYS_LGETFH = 160 +pkg syscall (freebsd-amd64), const SYS_LINK = 9 +pkg syscall (freebsd-amd64), const SYS_LINKAT = 495 +pkg syscall (freebsd-amd64), const SYS_LISTEN = 106 +pkg syscall (freebsd-amd64), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-amd64), const SYS_LSEEK = 478 +pkg syscall (freebsd-amd64), const SYS_LSTAT = 190 +pkg syscall (freebsd-amd64), const SYS_LUTIMES = 276 +pkg syscall (freebsd-amd64), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-amd64), const SYS_MADVISE = 75 +pkg syscall (freebsd-amd64), const SYS_MINCORE = 78 +pkg syscall (freebsd-amd64), const SYS_MINHERIT = 250 +pkg syscall (freebsd-amd64), const SYS_MKDIR = 136 +pkg syscall (freebsd-amd64), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-amd64), const SYS_MKFIFO = 132 +pkg syscall (freebsd-amd64), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-amd64), const SYS_MKNOD = 14 +pkg syscall (freebsd-amd64), const SYS_MKNODAT = 498 +pkg syscall (freebsd-amd64), const SYS_MLOCK = 203 +pkg syscall (freebsd-amd64), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-amd64), const SYS_MMAP = 477 +pkg syscall (freebsd-amd64), const SYS_MODFIND = 303 +pkg syscall (freebsd-amd64), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-amd64), const SYS_MODNEXT = 300 +pkg syscall (freebsd-amd64), const SYS_MODSTAT = 301 +pkg syscall (freebsd-amd64), const SYS_MOUNT = 21 +pkg syscall (freebsd-amd64), const SYS_MPROTECT = 74 +pkg syscall (freebsd-amd64), const SYS_MSYNC = 65 +pkg syscall (freebsd-amd64), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-amd64), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-amd64), const SYS_MUNMAP = 73 +pkg syscall (freebsd-amd64), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-amd64), const SYS_NFSTAT = 279 +pkg syscall (freebsd-amd64), const SYS_NLSTAT = 280 +pkg syscall (freebsd-amd64), const SYS_NMOUNT = 378 +pkg syscall (freebsd-amd64), const SYS_NSTAT = 278 +pkg syscall (freebsd-amd64), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-amd64), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-amd64), const SYS_OBREAK = 17 +pkg syscall (freebsd-amd64), const SYS_OPEN = 5 +pkg syscall (freebsd-amd64), const SYS_OPENAT = 499 +pkg syscall (freebsd-amd64), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-amd64), const SYS_OVADVISE = 72 +pkg syscall (freebsd-amd64), const SYS_PATHCONF = 191 +pkg syscall (freebsd-amd64), const SYS_PDFORK = 518 +pkg syscall (freebsd-amd64), const SYS_PDGETPID = 520 +pkg syscall (freebsd-amd64), const SYS_PDKILL = 519 +pkg syscall (freebsd-amd64), const SYS_PIPE = 42 +pkg syscall (freebsd-amd64), const SYS_POLL = 209 +pkg syscall (freebsd-amd64), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-amd64), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-amd64), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-amd64), const SYS_PREAD = 475 +pkg syscall (freebsd-amd64), const SYS_PREADV = 289 +pkg syscall (freebsd-amd64), const SYS_PROFIL = 44 +pkg syscall (freebsd-amd64), const SYS_PSELECT = 522 +pkg syscall (freebsd-amd64), const SYS_PTRACE = 26 +pkg syscall (freebsd-amd64), const SYS_PWRITE = 476 +pkg syscall (freebsd-amd64), const SYS_PWRITEV = 290 +pkg syscall (freebsd-amd64), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-amd64), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-amd64), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-amd64), const SYS_READ = 3 +pkg syscall (freebsd-amd64), const SYS_READLINK = 58 +pkg syscall (freebsd-amd64), const SYS_READLINKAT = 500 +pkg syscall (freebsd-amd64), const SYS_READV = 120 +pkg syscall (freebsd-amd64), const SYS_REBOOT = 55 +pkg syscall (freebsd-amd64), const SYS_RECVFROM = 29 +pkg syscall (freebsd-amd64), const SYS_RECVMSG = 27 +pkg syscall (freebsd-amd64), const SYS_RENAME = 128 +pkg syscall (freebsd-amd64), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-amd64), const SYS_REVOKE = 56 +pkg syscall (freebsd-amd64), const SYS_RFORK = 251 +pkg syscall (freebsd-amd64), const SYS_RMDIR = 137 +pkg syscall (freebsd-amd64), const SYS_RTPRIO = 166 +pkg syscall (freebsd-amd64), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-amd64), const SYS_SBRK = 69 +pkg syscall (freebsd-amd64), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-amd64), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-amd64), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-amd64), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-amd64), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-amd64), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-amd64), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-amd64), const SYS_SELECT = 93 +pkg syscall (freebsd-amd64), const SYS_SENDFILE = 393 +pkg syscall (freebsd-amd64), const SYS_SENDMSG = 28 +pkg syscall (freebsd-amd64), const SYS_SENDTO = 133 +pkg syscall (freebsd-amd64), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-amd64), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-amd64), const SYS_SETAUID = 448 +pkg syscall (freebsd-amd64), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-amd64), const SYS_SETEGID = 182 +pkg syscall (freebsd-amd64), const SYS_SETEUID = 183 +pkg syscall (freebsd-amd64), const SYS_SETFIB = 175 +pkg syscall (freebsd-amd64), const SYS_SETGID = 181 +pkg syscall (freebsd-amd64), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-amd64), const SYS_SETITIMER = 83 +pkg syscall (freebsd-amd64), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-amd64), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-amd64), const SYS_SETPGID = 82 +pkg syscall (freebsd-amd64), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-amd64), const SYS_SETREGID = 127 +pkg syscall (freebsd-amd64), const SYS_SETRESGID = 312 +pkg syscall (freebsd-amd64), const SYS_SETRESUID = 311 +pkg syscall (freebsd-amd64), const SYS_SETREUID = 126 +pkg syscall (freebsd-amd64), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-amd64), const SYS_SETSID = 147 +pkg syscall (freebsd-amd64), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-amd64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-amd64), const SYS_SETUID = 23 +pkg syscall (freebsd-amd64), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-amd64), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-amd64), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-amd64), const SYS_SIGACTION = 416 +pkg syscall (freebsd-amd64), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-amd64), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-amd64), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-amd64), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-amd64), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-amd64), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-amd64), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-amd64), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-amd64), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-amd64), const SYS_SOCKET = 97 +pkg syscall (freebsd-amd64), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-amd64), const SYS_SSTK = 70 +pkg syscall (freebsd-amd64), const SYS_STAT = 188 +pkg syscall (freebsd-amd64), const SYS_STATFS = 396 +pkg syscall (freebsd-amd64), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-amd64), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-amd64), const SYS_SWAPON = 85 +pkg syscall (freebsd-amd64), const SYS_SYMLINK = 57 +pkg syscall (freebsd-amd64), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-amd64), const SYS_SYNC = 36 +pkg syscall (freebsd-amd64), const SYS_SYSARCH = 165 +pkg syscall (freebsd-amd64), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-amd64), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-amd64), const SYS_THR_KILL = 433 +pkg syscall (freebsd-amd64), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-amd64), const SYS_THR_NEW = 455 +pkg syscall (freebsd-amd64), const SYS_THR_SELF = 432 +pkg syscall (freebsd-amd64), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-amd64), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-amd64), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-amd64), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-amd64), const SYS_UMASK = 60 +pkg syscall (freebsd-amd64), const SYS_UNDELETE = 205 +pkg syscall (freebsd-amd64), const SYS_UNLINK = 10 +pkg syscall (freebsd-amd64), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-amd64), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-amd64), const SYS_UTIMES = 138 +pkg syscall (freebsd-amd64), const SYS_UTRACE = 335 +pkg syscall (freebsd-amd64), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-amd64), const SYS_VFORK = 66 +pkg syscall (freebsd-amd64), const SYS_WAIT4 = 7 +pkg syscall (freebsd-amd64), const SYS_WAIT6 = 532 +pkg syscall (freebsd-amd64), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-amd64), const SYS_WRITE = 4 +pkg syscall (freebsd-amd64), const SYS_WRITEV = 121 +pkg syscall (freebsd-amd64), const SYS_YIELD = 321 +pkg syscall (freebsd-amd64), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-amd64), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-amd64), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-amd64), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-amd64), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-amd64), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-amd64), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-amd64), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-amd64), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-amd64), const SYS___GETCWD = 326 +pkg syscall (freebsd-amd64), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-amd64), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-amd64), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-amd64), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-amd64), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-amd64), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-amd64), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-amd64), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-amd64), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-amd64), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-amd64), const SYS___SETUGID = 374 +pkg syscall (freebsd-amd64), const SYS___SYSCTL = 202 +pkg syscall (freebsd-amd64), const S_IFMT = 61440 +pkg syscall (freebsd-amd64), const SizeofBpfHdr = 32 +pkg syscall (freebsd-amd64), const SizeofBpfInsn = 8 +pkg syscall (freebsd-amd64), const SizeofBpfProgram = 16 +pkg syscall (freebsd-amd64), const SizeofBpfStat = 8 +pkg syscall (freebsd-amd64), const SizeofBpfVersion = 4 +pkg syscall (freebsd-amd64), const SizeofBpfZbuf = 24 +pkg syscall (freebsd-amd64), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-amd64), const SizeofCmsghdr = 12 +pkg syscall (freebsd-amd64), const SizeofIPMreq = 8 +pkg syscall (freebsd-amd64), const SizeofIPMreqn = 12 +pkg syscall (freebsd-amd64), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-amd64), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-amd64), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofIfData = 152 +pkg syscall (freebsd-amd64), const SizeofIfMsghdr = 168 +pkg syscall (freebsd-amd64), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-amd64), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-amd64), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-amd64), const SizeofLinger = 8 +pkg syscall (freebsd-amd64), const SizeofMsghdr = 48 +pkg syscall (freebsd-amd64), const SizeofRtMetrics = 112 +pkg syscall (freebsd-amd64), const SizeofRtMsghdr = 152 +pkg syscall (freebsd-amd64), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-amd64), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-amd64), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-amd64), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-amd64), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-amd64), const TCIFLUSH = 1 +pkg syscall (freebsd-amd64), const TCIFLUSH ideal-int +pkg syscall (freebsd-amd64), const TCIOFLUSH = 3 +pkg syscall (freebsd-amd64), const TCIOFLUSH ideal-int +pkg syscall (freebsd-amd64), const TCOFLUSH = 2 +pkg syscall (freebsd-amd64), const TCOFLUSH ideal-int +pkg syscall (freebsd-amd64), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-amd64), const TCP_CONGESTION = 64 +pkg syscall (freebsd-amd64), const TCP_INFO = 32 +pkg syscall (freebsd-amd64), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-amd64), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-amd64), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-amd64), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-amd64), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-amd64), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-amd64), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-amd64), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXBURST = 4 +pkg syscall (freebsd-amd64), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-amd64), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-amd64), const TCP_MAXSEG = 2 +pkg syscall (freebsd-amd64), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-amd64), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-amd64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-amd64), const TCP_MD5SIG = 16 +pkg syscall (freebsd-amd64), const TCP_MINMSS = 216 +pkg syscall (freebsd-amd64), const TCP_MSS = 536 +pkg syscall (freebsd-amd64), const TCP_NOOPT = 8 +pkg syscall (freebsd-amd64), const TCP_NOPUSH = 4 +pkg syscall (freebsd-amd64), const TCSAFLUSH = 2 +pkg syscall (freebsd-amd64), const TCSAFLUSH ideal-int +pkg syscall (freebsd-amd64), const TIOCCBRK = 536900730 +pkg syscall (freebsd-amd64), const TIOCCDTR = 536900728 +pkg syscall (freebsd-amd64), const TIOCCONS = 2147775586 +pkg syscall (freebsd-amd64), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-amd64), const TIOCEXCL = 536900621 +pkg syscall (freebsd-amd64), const TIOCEXT = 2147775584 +pkg syscall (freebsd-amd64), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-amd64), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-amd64), const TIOCGETA = 1076655123 +pkg syscall (freebsd-amd64), const TIOCGETD = 1074033690 +pkg syscall (freebsd-amd64), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-amd64), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-amd64), const TIOCGSID = 1074033763 +pkg syscall (freebsd-amd64), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-amd64), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-amd64), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-amd64), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-amd64), const TIOCMGET = 1074033770 +pkg syscall (freebsd-amd64), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-amd64), const TIOCMSET = 2147775597 +pkg syscall (freebsd-amd64), const TIOCM_CAR = 64 +pkg syscall (freebsd-amd64), const TIOCM_CD = 64 +pkg syscall (freebsd-amd64), const TIOCM_CTS = 32 +pkg syscall (freebsd-amd64), const TIOCM_DCD = 64 +pkg syscall (freebsd-amd64), const TIOCM_DSR = 256 +pkg syscall (freebsd-amd64), const TIOCM_DTR = 2 +pkg syscall (freebsd-amd64), const TIOCM_LE = 1 +pkg syscall (freebsd-amd64), const TIOCM_RI = 128 +pkg syscall (freebsd-amd64), const TIOCM_RNG = 128 +pkg syscall (freebsd-amd64), const TIOCM_RTS = 4 +pkg syscall (freebsd-amd64), const TIOCM_SR = 16 +pkg syscall (freebsd-amd64), const TIOCM_ST = 8 +pkg syscall (freebsd-amd64), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-amd64), const TIOCNXCL = 536900622 +pkg syscall (freebsd-amd64), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-amd64), const TIOCPKT = 2147775600 +pkg syscall (freebsd-amd64), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-amd64), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-amd64), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-amd64), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-amd64), const TIOCPKT_START = 8 +pkg syscall (freebsd-amd64), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-amd64), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-amd64), const TIOCSBRK = 536900731 +pkg syscall (freebsd-amd64), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-amd64), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-amd64), const TIOCSDTR = 536900729 +pkg syscall (freebsd-amd64), const TIOCSETA = 2150396948 +pkg syscall (freebsd-amd64), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-amd64), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-amd64), const TIOCSETD = 2147775515 +pkg syscall (freebsd-amd64), const TIOCSIG = 537162847 +pkg syscall (freebsd-amd64), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-amd64), const TIOCSTART = 536900718 +pkg syscall (freebsd-amd64), const TIOCSTAT = 536900709 +pkg syscall (freebsd-amd64), const TIOCSTI = 2147578994 +pkg syscall (freebsd-amd64), const TIOCSTOP = 536900719 +pkg syscall (freebsd-amd64), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-amd64), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-amd64), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-amd64), const TOSTOP = 4194304 +pkg syscall (freebsd-amd64), const TOSTOP ideal-int +pkg syscall (freebsd-amd64), const VDISCARD = 15 +pkg syscall (freebsd-amd64), const VDISCARD ideal-int +pkg syscall (freebsd-amd64), const VDSUSP = 11 +pkg syscall (freebsd-amd64), const VDSUSP ideal-int +pkg syscall (freebsd-amd64), const VEOF = 0 +pkg syscall (freebsd-amd64), const VEOF ideal-int +pkg syscall (freebsd-amd64), const VEOL = 1 +pkg syscall (freebsd-amd64), const VEOL ideal-int +pkg syscall (freebsd-amd64), const VEOL2 = 2 +pkg syscall (freebsd-amd64), const VEOL2 ideal-int +pkg syscall (freebsd-amd64), const VERASE = 3 +pkg syscall (freebsd-amd64), const VERASE ideal-int +pkg syscall (freebsd-amd64), const VERASE2 = 7 +pkg syscall (freebsd-amd64), const VERASE2 ideal-int +pkg syscall (freebsd-amd64), const VINTR = 8 +pkg syscall (freebsd-amd64), const VINTR ideal-int +pkg syscall (freebsd-amd64), const VKILL = 5 +pkg syscall (freebsd-amd64), const VKILL ideal-int +pkg syscall (freebsd-amd64), const VLNEXT = 14 +pkg syscall (freebsd-amd64), const VLNEXT ideal-int +pkg syscall (freebsd-amd64), const VMIN = 16 +pkg syscall (freebsd-amd64), const VMIN ideal-int +pkg syscall (freebsd-amd64), const VQUIT = 9 +pkg syscall (freebsd-amd64), const VQUIT ideal-int +pkg syscall (freebsd-amd64), const VREPRINT = 6 +pkg syscall (freebsd-amd64), const VREPRINT ideal-int +pkg syscall (freebsd-amd64), const VSTART = 12 +pkg syscall (freebsd-amd64), const VSTART ideal-int +pkg syscall (freebsd-amd64), const VSTATUS = 18 +pkg syscall (freebsd-amd64), const VSTATUS ideal-int +pkg syscall (freebsd-amd64), const VSTOP = 13 +pkg syscall (freebsd-amd64), const VSTOP ideal-int +pkg syscall (freebsd-amd64), const VSUSP = 10 +pkg syscall (freebsd-amd64), const VSUSP ideal-int +pkg syscall (freebsd-amd64), const VTIME = 17 +pkg syscall (freebsd-amd64), const VTIME ideal-int +pkg syscall (freebsd-amd64), const VWERASE = 4 +pkg syscall (freebsd-amd64), const VWERASE ideal-int +pkg syscall (freebsd-amd64), const WCONTINUED = 4 +pkg syscall (freebsd-amd64), const WCOREFLAG = 128 +pkg syscall (freebsd-amd64), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-amd64), const WNOHANG = 1 +pkg syscall (freebsd-amd64), const WNOWAIT = 8 +pkg syscall (freebsd-amd64), const WSTOPPED = 2 +pkg syscall (freebsd-amd64), const WUNTRACED = 2 +pkg syscall (freebsd-amd64), func Fchflags(int, int) error +pkg syscall (freebsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-amd64), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-amd64-cgo), const AF_APPLETALK = 16 +pkg syscall (freebsd-amd64-cgo), const AF_ARP = 35 +pkg syscall (freebsd-amd64-cgo), const AF_ATM = 30 +pkg syscall (freebsd-amd64-cgo), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-amd64-cgo), const AF_CCITT = 10 +pkg syscall (freebsd-amd64-cgo), const AF_CHAOS = 5 +pkg syscall (freebsd-amd64-cgo), const AF_CNT = 21 +pkg syscall (freebsd-amd64-cgo), const AF_COIP = 20 +pkg syscall (freebsd-amd64-cgo), const AF_DATAKIT = 9 +pkg syscall (freebsd-amd64-cgo), const AF_DECnet = 12 +pkg syscall (freebsd-amd64-cgo), const AF_DLI = 13 +pkg syscall (freebsd-amd64-cgo), const AF_E164 = 26 +pkg syscall (freebsd-amd64-cgo), const AF_ECMA = 8 +pkg syscall (freebsd-amd64-cgo), const AF_HYLINK = 15 +pkg syscall (freebsd-amd64-cgo), const AF_IEEE80211 = 37 +pkg syscall (freebsd-amd64-cgo), const AF_IMPLINK = 3 +pkg syscall (freebsd-amd64-cgo), const AF_INET6 = 28 +pkg syscall (freebsd-amd64-cgo), const AF_IPX = 23 +pkg syscall (freebsd-amd64-cgo), const AF_ISDN = 26 +pkg syscall (freebsd-amd64-cgo), const AF_ISO = 7 +pkg syscall (freebsd-amd64-cgo), const AF_LAT = 14 +pkg syscall (freebsd-amd64-cgo), const AF_LINK = 18 +pkg syscall (freebsd-amd64-cgo), const AF_LOCAL = 1 +pkg syscall (freebsd-amd64-cgo), const AF_MAX = 38 +pkg syscall (freebsd-amd64-cgo), const AF_NATM = 29 +pkg syscall (freebsd-amd64-cgo), const AF_NETBIOS = 6 +pkg syscall (freebsd-amd64-cgo), const AF_NETGRAPH = 32 +pkg syscall (freebsd-amd64-cgo), const AF_OSI = 7 +pkg syscall (freebsd-amd64-cgo), const AF_PUP = 4 +pkg syscall (freebsd-amd64-cgo), const AF_ROUTE = 17 +pkg syscall (freebsd-amd64-cgo), const AF_SCLUSTER = 34 +pkg syscall (freebsd-amd64-cgo), const AF_SIP = 24 +pkg syscall (freebsd-amd64-cgo), const AF_SLOW = 33 +pkg syscall (freebsd-amd64-cgo), const AF_SNA = 11 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR00 = 39 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR01 = 41 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR02 = 43 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR03 = 45 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR04 = 47 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR05 = 49 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR06 = 51 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR07 = 53 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR08 = 55 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR09 = 57 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR10 = 59 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR11 = 61 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR12 = 63 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR13 = 65 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR14 = 67 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR15 = 69 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR16 = 71 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR17 = 73 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR18 = 75 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR19 = 77 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR20 = 79 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR21 = 81 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR22 = 83 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR23 = 85 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR24 = 87 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR25 = 89 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR26 = 91 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR27 = 93 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR28 = 95 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR29 = 97 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR30 = 99 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR31 = 101 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR32 = 103 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR33 = 105 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR34 = 107 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR35 = 109 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR36 = 111 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR37 = 113 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR38 = 115 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR39 = 117 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR40 = 119 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR41 = 121 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR42 = 123 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR43 = 125 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR44 = 127 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR45 = 129 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR46 = 131 +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR47 = 133 +pkg syscall (freebsd-amd64-cgo), const B0 = 0 +pkg syscall (freebsd-amd64-cgo), const B110 = 110 +pkg syscall (freebsd-amd64-cgo), const B115200 = 115200 +pkg syscall (freebsd-amd64-cgo), const B1200 = 1200 +pkg syscall (freebsd-amd64-cgo), const B134 = 134 +pkg syscall (freebsd-amd64-cgo), const B14400 = 14400 +pkg syscall (freebsd-amd64-cgo), const B150 = 150 +pkg syscall (freebsd-amd64-cgo), const B1800 = 1800 +pkg syscall (freebsd-amd64-cgo), const B19200 = 19200 +pkg syscall (freebsd-amd64-cgo), const B200 = 200 +pkg syscall (freebsd-amd64-cgo), const B230400 = 230400 +pkg syscall (freebsd-amd64-cgo), const B2400 = 2400 +pkg syscall (freebsd-amd64-cgo), const B28800 = 28800 +pkg syscall (freebsd-amd64-cgo), const B300 = 300 +pkg syscall (freebsd-amd64-cgo), const B38400 = 38400 +pkg syscall (freebsd-amd64-cgo), const B460800 = 460800 +pkg syscall (freebsd-amd64-cgo), const B4800 = 4800 +pkg syscall (freebsd-amd64-cgo), const B50 = 50 +pkg syscall (freebsd-amd64-cgo), const B57600 = 57600 +pkg syscall (freebsd-amd64-cgo), const B600 = 600 +pkg syscall (freebsd-amd64-cgo), const B7200 = 7200 +pkg syscall (freebsd-amd64-cgo), const B75 = 75 +pkg syscall (freebsd-amd64-cgo), const B76800 = 76800 +pkg syscall (freebsd-amd64-cgo), const B921600 = 921600 +pkg syscall (freebsd-amd64-cgo), const B9600 = 9600 +pkg syscall (freebsd-amd64-cgo), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-amd64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-amd64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-amd64-cgo), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-amd64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-amd64-cgo), const BIOCGDLTLIST = 3222291065 +pkg syscall (freebsd-amd64-cgo), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-amd64-cgo), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-amd64-cgo), const BIOCGETZMAX = 1074283135 +pkg syscall (freebsd-amd64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-amd64-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-amd64-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-amd64-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-amd64-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-amd64-cgo), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-amd64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-amd64-cgo), const BIOCLOCK = 536887930 +pkg syscall (freebsd-amd64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-amd64-cgo), const BIOCROTZBUF = 1075331712 +pkg syscall (freebsd-amd64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-amd64-cgo), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-amd64-cgo), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-amd64-cgo), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-amd64-cgo), const BIOCSETF = 2148549223 +pkg syscall (freebsd-amd64-cgo), const BIOCSETFNR = 2148549250 +pkg syscall (freebsd-amd64-cgo), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-amd64-cgo), const BIOCSETWF = 2148549243 +pkg syscall (freebsd-amd64-cgo), const BIOCSETZBUF = 2149073537 +pkg syscall (freebsd-amd64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-amd64-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-amd64-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-amd64-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-amd64-cgo), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-amd64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-amd64-cgo), const BPF_A = 16 +pkg syscall (freebsd-amd64-cgo), const BPF_ABS = 32 +pkg syscall (freebsd-amd64-cgo), const BPF_ADD = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_ALIGNMENT = 8 +pkg syscall (freebsd-amd64-cgo), const BPF_ALU = 4 +pkg syscall (freebsd-amd64-cgo), const BPF_AND = 80 +pkg syscall (freebsd-amd64-cgo), const BPF_B = 16 +pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-amd64-cgo), const BPF_DIV = 48 +pkg syscall (freebsd-amd64-cgo), const BPF_H = 8 +pkg syscall (freebsd-amd64-cgo), const BPF_IMM = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_IND = 64 +pkg syscall (freebsd-amd64-cgo), const BPF_JA = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_JEQ = 16 +pkg syscall (freebsd-amd64-cgo), const BPF_JGE = 48 +pkg syscall (freebsd-amd64-cgo), const BPF_JGT = 32 +pkg syscall (freebsd-amd64-cgo), const BPF_JMP = 5 +pkg syscall (freebsd-amd64-cgo), const BPF_JSET = 64 +pkg syscall (freebsd-amd64-cgo), const BPF_K = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_LD = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_LDX = 1 +pkg syscall (freebsd-amd64-cgo), const BPF_LEN = 128 +pkg syscall (freebsd-amd64-cgo), const BPF_LSH = 96 +pkg syscall (freebsd-amd64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-amd64-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-amd64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-amd64-cgo), const BPF_MEM = 96 +pkg syscall (freebsd-amd64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-amd64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-amd64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-amd64-cgo), const BPF_MISC = 7 +pkg syscall (freebsd-amd64-cgo), const BPF_MSH = 160 +pkg syscall (freebsd-amd64-cgo), const BPF_MUL = 32 +pkg syscall (freebsd-amd64-cgo), const BPF_NEG = 128 +pkg syscall (freebsd-amd64-cgo), const BPF_OR = 64 +pkg syscall (freebsd-amd64-cgo), const BPF_RELEASE = 199606 +pkg syscall (freebsd-amd64-cgo), const BPF_RET = 6 +pkg syscall (freebsd-amd64-cgo), const BPF_RSH = 112 +pkg syscall (freebsd-amd64-cgo), const BPF_ST = 2 +pkg syscall (freebsd-amd64-cgo), const BPF_STX = 3 +pkg syscall (freebsd-amd64-cgo), const BPF_SUB = 16 +pkg syscall (freebsd-amd64-cgo), const BPF_TAX = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_TXA = 128 +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-amd64-cgo), const BPF_T_FAST = 256 +pkg syscall (freebsd-amd64-cgo), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-amd64-cgo), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NONE = 3 +pkg syscall (freebsd-amd64-cgo), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_W = 0 +pkg syscall (freebsd-amd64-cgo), const BPF_X = 8 +pkg syscall (freebsd-amd64-cgo), const BRKINT = 2 +pkg syscall (freebsd-amd64-cgo), const CFLUSH = 15 +pkg syscall (freebsd-amd64-cgo), const CLOCAL = 32768 +pkg syscall (freebsd-amd64-cgo), const CREAD = 2048 +pkg syscall (freebsd-amd64-cgo), const CS5 = 0 +pkg syscall (freebsd-amd64-cgo), const CS6 = 256 +pkg syscall (freebsd-amd64-cgo), const CS7 = 512 +pkg syscall (freebsd-amd64-cgo), const CS8 = 768 +pkg syscall (freebsd-amd64-cgo), const CSIZE = 768 +pkg syscall (freebsd-amd64-cgo), const CSTART = 17 +pkg syscall (freebsd-amd64-cgo), const CSTATUS = 20 +pkg syscall (freebsd-amd64-cgo), const CSTOP = 19 +pkg syscall (freebsd-amd64-cgo), const CSTOPB = 1024 +pkg syscall (freebsd-amd64-cgo), const CSUSP = 26 +pkg syscall (freebsd-amd64-cgo), const CTL_MAXNAME = 24 +pkg syscall (freebsd-amd64-cgo), const CTL_NET = 4 +pkg syscall (freebsd-amd64-cgo), const DLT_A429 = 184 +pkg syscall (freebsd-amd64-cgo), const DLT_A653_ICM = 185 +pkg syscall (freebsd-amd64-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-amd64-cgo), const DLT_AOS = 222 +pkg syscall (freebsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET = 7 +pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-amd64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-amd64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-amd64-cgo), const DLT_AURORA = 126 +pkg syscall (freebsd-amd64-cgo), const DLT_AX25 = 3 +pkg syscall (freebsd-amd64-cgo), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-amd64-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-amd64-cgo), const DLT_CAN20B = 190 +pkg syscall (freebsd-amd64-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-amd64-cgo), const DLT_CHAOS = 5 +pkg syscall (freebsd-amd64-cgo), const DLT_CHDLC = 104 +pkg syscall (freebsd-amd64-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC = 104 +pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-amd64-cgo), const DLT_DBUS = 231 +pkg syscall (freebsd-amd64-cgo), const DLT_DECT = 221 +pkg syscall (freebsd-amd64-cgo), const DLT_DOCSIS = 143 +pkg syscall (freebsd-amd64-cgo), const DLT_DVB_CI = 235 +pkg syscall (freebsd-amd64-cgo), const DLT_ECONET = 115 +pkg syscall (freebsd-amd64-cgo), const DLT_EN10MB = 1 +pkg syscall (freebsd-amd64-cgo), const DLT_EN3MB = 2 +pkg syscall (freebsd-amd64-cgo), const DLT_ENC = 109 +pkg syscall (freebsd-amd64-cgo), const DLT_ERF = 197 +pkg syscall (freebsd-amd64-cgo), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-amd64-cgo), const DLT_ERF_POS = 176 +pkg syscall (freebsd-amd64-cgo), const DLT_FC_2 = 224 +pkg syscall (freebsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-amd64-cgo), const DLT_FDDI = 10 +pkg syscall (freebsd-amd64-cgo), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY = 107 +pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-amd64-cgo), const DLT_GPF_F = 171 +pkg syscall (freebsd-amd64-cgo), const DLT_GPF_T = 170 +pkg syscall (freebsd-amd64-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-amd64-cgo), const DLT_HHDLC = 121 +pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SN = 146 +pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SP = 145 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802 = 6 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-amd64-cgo), const DLT_IPFILTER = 116 +pkg syscall (freebsd-amd64-cgo), const DLT_IPMB = 199 +pkg syscall (freebsd-amd64-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-amd64-cgo), const DLT_IPNET = 226 +pkg syscall (freebsd-amd64-cgo), const DLT_IPOIB = 242 +pkg syscall (freebsd-amd64-cgo), const DLT_IPV4 = 228 +pkg syscall (freebsd-amd64-cgo), const DLT_IPV6 = 229 +pkg syscall (freebsd-amd64-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-amd64-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-amd64-cgo), const DLT_LAPD = 203 +pkg syscall (freebsd-amd64-cgo), const DLT_LIN = 212 +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-amd64-cgo), const DLT_LOOP = 108 +pkg syscall (freebsd-amd64-cgo), const DLT_LTALK = 114 +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX = 242 +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-amd64-cgo), const DLT_MFR = 182 +pkg syscall (freebsd-amd64-cgo), const DLT_MOST = 211 +pkg syscall (freebsd-amd64-cgo), const DLT_MPLS = 219 +pkg syscall (freebsd-amd64-cgo), const DLT_MTP2 = 140 +pkg syscall (freebsd-amd64-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-amd64-cgo), const DLT_MTP3 = 141 +pkg syscall (freebsd-amd64-cgo), const DLT_MUX27010 = 236 +pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-amd64-cgo), const DLT_NFLOG = 239 +pkg syscall (freebsd-amd64-cgo), const DLT_NULL = 0 +pkg syscall (freebsd-amd64-cgo), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-amd64-cgo), const DLT_PFLOG = 117 +pkg syscall (freebsd-amd64-cgo), const DLT_PFSYNC = 121 +pkg syscall (freebsd-amd64-cgo), const DLT_PPI = 192 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP = 9 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-amd64-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-amd64-cgo), const DLT_PRONET = 4 +pkg syscall (freebsd-amd64-cgo), const DLT_RAIF1 = 198 +pkg syscall (freebsd-amd64-cgo), const DLT_RAW = 12 +pkg syscall (freebsd-amd64-cgo), const DLT_RIO = 124 +pkg syscall (freebsd-amd64-cgo), const DLT_SCCP = 142 +pkg syscall (freebsd-amd64-cgo), const DLT_SITA = 196 +pkg syscall (freebsd-amd64-cgo), const DLT_SLIP = 8 +pkg syscall (freebsd-amd64-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-amd64-cgo), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-amd64-cgo), const DLT_SUNATM = 123 +pkg syscall (freebsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-amd64-cgo), const DLT_TZSP = 128 +pkg syscall (freebsd-amd64-cgo), const DLT_USB = 186 +pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-amd64-cgo), const DLT_USER0 = 147 +pkg syscall (freebsd-amd64-cgo), const DLT_USER1 = 148 +pkg syscall (freebsd-amd64-cgo), const DLT_USER10 = 157 +pkg syscall (freebsd-amd64-cgo), const DLT_USER11 = 158 +pkg syscall (freebsd-amd64-cgo), const DLT_USER12 = 159 +pkg syscall (freebsd-amd64-cgo), const DLT_USER13 = 160 +pkg syscall (freebsd-amd64-cgo), const DLT_USER14 = 161 +pkg syscall (freebsd-amd64-cgo), const DLT_USER15 = 162 +pkg syscall (freebsd-amd64-cgo), const DLT_USER2 = 149 +pkg syscall (freebsd-amd64-cgo), const DLT_USER3 = 150 +pkg syscall (freebsd-amd64-cgo), const DLT_USER4 = 151 +pkg syscall (freebsd-amd64-cgo), const DLT_USER5 = 152 +pkg syscall (freebsd-amd64-cgo), const DLT_USER6 = 153 +pkg syscall (freebsd-amd64-cgo), const DLT_USER7 = 154 +pkg syscall (freebsd-amd64-cgo), const DLT_USER8 = 155 +pkg syscall (freebsd-amd64-cgo), const DLT_USER9 = 156 +pkg syscall (freebsd-amd64-cgo), const DLT_WIHART = 223 +pkg syscall (freebsd-amd64-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-amd64-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-amd64-cgo), const DT_BLK = 6 +pkg syscall (freebsd-amd64-cgo), const DT_CHR = 2 +pkg syscall (freebsd-amd64-cgo), const DT_DIR = 4 +pkg syscall (freebsd-amd64-cgo), const DT_FIFO = 1 +pkg syscall (freebsd-amd64-cgo), const DT_LNK = 10 +pkg syscall (freebsd-amd64-cgo), const DT_REG = 8 +pkg syscall (freebsd-amd64-cgo), const DT_SOCK = 12 +pkg syscall (freebsd-amd64-cgo), const DT_UNKNOWN = 0 +pkg syscall (freebsd-amd64-cgo), const DT_WHT = 14 +pkg syscall (freebsd-amd64-cgo), const E2BIG = 7 +pkg syscall (freebsd-amd64-cgo), const EACCES = 13 +pkg syscall (freebsd-amd64-cgo), const EADDRINUSE = 48 +pkg syscall (freebsd-amd64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-amd64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-amd64-cgo), const EAGAIN = 35 +pkg syscall (freebsd-amd64-cgo), const EALREADY = 37 +pkg syscall (freebsd-amd64-cgo), const EAUTH = 80 +pkg syscall (freebsd-amd64-cgo), const EBADF = 9 +pkg syscall (freebsd-amd64-cgo), const EBADMSG = 89 +pkg syscall (freebsd-amd64-cgo), const EBADRPC = 72 +pkg syscall (freebsd-amd64-cgo), const EBUSY = 16 +pkg syscall (freebsd-amd64-cgo), const ECANCELED = 85 +pkg syscall (freebsd-amd64-cgo), const ECAPMODE = 94 +pkg syscall (freebsd-amd64-cgo), const ECHILD = 10 +pkg syscall (freebsd-amd64-cgo), const ECHO = 8 +pkg syscall (freebsd-amd64-cgo), const ECHOCTL = 64 +pkg syscall (freebsd-amd64-cgo), const ECHOE = 2 +pkg syscall (freebsd-amd64-cgo), const ECHOK = 4 +pkg syscall (freebsd-amd64-cgo), const ECHOKE = 1 +pkg syscall (freebsd-amd64-cgo), const ECHONL = 16 +pkg syscall (freebsd-amd64-cgo), const ECHOPRT = 32 +pkg syscall (freebsd-amd64-cgo), const ECONNABORTED = 53 +pkg syscall (freebsd-amd64-cgo), const ECONNREFUSED = 61 +pkg syscall (freebsd-amd64-cgo), const ECONNRESET = 54 +pkg syscall (freebsd-amd64-cgo), const EDEADLK = 11 +pkg syscall (freebsd-amd64-cgo), const EDESTADDRREQ = 39 +pkg syscall (freebsd-amd64-cgo), const EDOM = 33 +pkg syscall (freebsd-amd64-cgo), const EDOOFUS = 88 +pkg syscall (freebsd-amd64-cgo), const EDQUOT = 69 +pkg syscall (freebsd-amd64-cgo), const EEXIST = 17 +pkg syscall (freebsd-amd64-cgo), const EFAULT = 14 +pkg syscall (freebsd-amd64-cgo), const EFBIG = 27 +pkg syscall (freebsd-amd64-cgo), const EFTYPE = 79 +pkg syscall (freebsd-amd64-cgo), const EHOSTDOWN = 64 +pkg syscall (freebsd-amd64-cgo), const EHOSTUNREACH = 65 +pkg syscall (freebsd-amd64-cgo), const EIDRM = 82 +pkg syscall (freebsd-amd64-cgo), const EILSEQ = 86 +pkg syscall (freebsd-amd64-cgo), const EINPROGRESS = 36 +pkg syscall (freebsd-amd64-cgo), const EINTR = 4 +pkg syscall (freebsd-amd64-cgo), const EINVAL = 22 +pkg syscall (freebsd-amd64-cgo), const EIO = 5 +pkg syscall (freebsd-amd64-cgo), const EISCONN = 56 +pkg syscall (freebsd-amd64-cgo), const EISDIR = 21 +pkg syscall (freebsd-amd64-cgo), const ELAST = 94 +pkg syscall (freebsd-amd64-cgo), const ELOOP = 62 +pkg syscall (freebsd-amd64-cgo), const EMFILE = 24 +pkg syscall (freebsd-amd64-cgo), const EMLINK = 31 +pkg syscall (freebsd-amd64-cgo), const EMSGSIZE = 40 +pkg syscall (freebsd-amd64-cgo), const EMULTIHOP = 90 +pkg syscall (freebsd-amd64-cgo), const ENAMETOOLONG = 63 +pkg syscall (freebsd-amd64-cgo), const ENEEDAUTH = 81 +pkg syscall (freebsd-amd64-cgo), const ENETDOWN = 50 +pkg syscall (freebsd-amd64-cgo), const ENETRESET = 52 +pkg syscall (freebsd-amd64-cgo), const ENETUNREACH = 51 +pkg syscall (freebsd-amd64-cgo), const ENFILE = 23 +pkg syscall (freebsd-amd64-cgo), const ENOATTR = 87 +pkg syscall (freebsd-amd64-cgo), const ENOBUFS = 55 +pkg syscall (freebsd-amd64-cgo), const ENODEV = 19 +pkg syscall (freebsd-amd64-cgo), const ENOEXEC = 8 +pkg syscall (freebsd-amd64-cgo), const ENOLCK = 77 +pkg syscall (freebsd-amd64-cgo), const ENOLINK = 91 +pkg syscall (freebsd-amd64-cgo), const ENOMEM = 12 +pkg syscall (freebsd-amd64-cgo), const ENOMSG = 83 +pkg syscall (freebsd-amd64-cgo), const ENOPROTOOPT = 42 +pkg syscall (freebsd-amd64-cgo), const ENOSPC = 28 +pkg syscall (freebsd-amd64-cgo), const ENOSYS = 78 +pkg syscall (freebsd-amd64-cgo), const ENOTBLK = 15 +pkg syscall (freebsd-amd64-cgo), const ENOTCAPABLE = 93 +pkg syscall (freebsd-amd64-cgo), const ENOTCONN = 57 +pkg syscall (freebsd-amd64-cgo), const ENOTDIR = 20 +pkg syscall (freebsd-amd64-cgo), const ENOTEMPTY = 66 +pkg syscall (freebsd-amd64-cgo), const ENOTSOCK = 38 +pkg syscall (freebsd-amd64-cgo), const ENOTSUP = 45 +pkg syscall (freebsd-amd64-cgo), const ENOTTY = 25 +pkg syscall (freebsd-amd64-cgo), const ENXIO = 6 +pkg syscall (freebsd-amd64-cgo), const EOPNOTSUPP = 45 +pkg syscall (freebsd-amd64-cgo), const EOVERFLOW = 84 +pkg syscall (freebsd-amd64-cgo), const EPERM = 1 +pkg syscall (freebsd-amd64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-amd64-cgo), const EPIPE = 32 +pkg syscall (freebsd-amd64-cgo), const EPROCLIM = 67 +pkg syscall (freebsd-amd64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-amd64-cgo), const EPROGMISMATCH = 75 +pkg syscall (freebsd-amd64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-amd64-cgo), const EPROTO = 92 +pkg syscall (freebsd-amd64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-amd64-cgo), const EPROTOTYPE = 41 +pkg syscall (freebsd-amd64-cgo), const ERANGE = 34 +pkg syscall (freebsd-amd64-cgo), const EREMOTE = 71 +pkg syscall (freebsd-amd64-cgo), const EROFS = 30 +pkg syscall (freebsd-amd64-cgo), const ERPCMISMATCH = 73 +pkg syscall (freebsd-amd64-cgo), const ESHUTDOWN = 58 +pkg syscall (freebsd-amd64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-amd64-cgo), const ESPIPE = 29 +pkg syscall (freebsd-amd64-cgo), const ESRCH = 3 +pkg syscall (freebsd-amd64-cgo), const ESTALE = 70 +pkg syscall (freebsd-amd64-cgo), const ETIMEDOUT = 60 +pkg syscall (freebsd-amd64-cgo), const ETOOMANYREFS = 59 +pkg syscall (freebsd-amd64-cgo), const ETXTBSY = 26 +pkg syscall (freebsd-amd64-cgo), const EUSERS = 68 +pkg syscall (freebsd-amd64-cgo), const EVFILT_AIO = -3 +pkg syscall (freebsd-amd64-cgo), const EVFILT_FS = -9 +pkg syscall (freebsd-amd64-cgo), const EVFILT_LIO = -10 +pkg syscall (freebsd-amd64-cgo), const EVFILT_PROC = -5 +pkg syscall (freebsd-amd64-cgo), const EVFILT_READ = -1 +pkg syscall (freebsd-amd64-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-amd64-cgo), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-amd64-cgo), const EVFILT_TIMER = -7 +pkg syscall (freebsd-amd64-cgo), const EVFILT_USER = -11 +pkg syscall (freebsd-amd64-cgo), const EVFILT_VNODE = -4 +pkg syscall (freebsd-amd64-cgo), const EVFILT_WRITE = -2 +pkg syscall (freebsd-amd64-cgo), const EV_ADD = 1 +pkg syscall (freebsd-amd64-cgo), const EV_CLEAR = 32 +pkg syscall (freebsd-amd64-cgo), const EV_DELETE = 2 +pkg syscall (freebsd-amd64-cgo), const EV_DISABLE = 8 +pkg syscall (freebsd-amd64-cgo), const EV_DISPATCH = 128 +pkg syscall (freebsd-amd64-cgo), const EV_ENABLE = 4 +pkg syscall (freebsd-amd64-cgo), const EV_EOF = 32768 +pkg syscall (freebsd-amd64-cgo), const EV_ERROR = 16384 +pkg syscall (freebsd-amd64-cgo), const EV_FLAG1 = 8192 +pkg syscall (freebsd-amd64-cgo), const EV_ONESHOT = 16 +pkg syscall (freebsd-amd64-cgo), const EV_RECEIPT = 64 +pkg syscall (freebsd-amd64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-amd64-cgo), const EWOULDBLOCK = 35 +pkg syscall (freebsd-amd64-cgo), const EXDEV = 18 +pkg syscall (freebsd-amd64-cgo), const EXTA = 19200 +pkg syscall (freebsd-amd64-cgo), const EXTB = 38400 +pkg syscall (freebsd-amd64-cgo), const EXTPROC = 2048 +pkg syscall (freebsd-amd64-cgo), const FD_CLOEXEC = 1 +pkg syscall (freebsd-amd64-cgo), const FD_SETSIZE = 1024 +pkg syscall (freebsd-amd64-cgo), const FLUSHO = 8388608 +pkg syscall (freebsd-amd64-cgo), const F_CANCEL = 5 +pkg syscall (freebsd-amd64-cgo), const F_DUP2FD = 10 +pkg syscall (freebsd-amd64-cgo), const F_DUPFD = 0 +pkg syscall (freebsd-amd64-cgo), const F_GETFD = 1 +pkg syscall (freebsd-amd64-cgo), const F_GETFL = 3 +pkg syscall (freebsd-amd64-cgo), const F_GETLK = 11 +pkg syscall (freebsd-amd64-cgo), const F_GETOWN = 5 +pkg syscall (freebsd-amd64-cgo), const F_OGETLK = 7 +pkg syscall (freebsd-amd64-cgo), const F_OK = 0 +pkg syscall (freebsd-amd64-cgo), const F_OSETLK = 8 +pkg syscall (freebsd-amd64-cgo), const F_OSETLKW = 9 +pkg syscall (freebsd-amd64-cgo), const F_RDAHEAD = 16 +pkg syscall (freebsd-amd64-cgo), const F_RDLCK = 1 +pkg syscall (freebsd-amd64-cgo), const F_READAHEAD = 15 +pkg syscall (freebsd-amd64-cgo), const F_SETFD = 2 +pkg syscall (freebsd-amd64-cgo), const F_SETFL = 4 +pkg syscall (freebsd-amd64-cgo), const F_SETLK = 12 +pkg syscall (freebsd-amd64-cgo), const F_SETLKW = 13 +pkg syscall (freebsd-amd64-cgo), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-amd64-cgo), const F_SETOWN = 6 +pkg syscall (freebsd-amd64-cgo), const F_UNLCK = 2 +pkg syscall (freebsd-amd64-cgo), const F_UNLCKSYS = 4 +pkg syscall (freebsd-amd64-cgo), const F_WRLCK = 3 +pkg syscall (freebsd-amd64-cgo), const HUPCL = 16384 +pkg syscall (freebsd-amd64-cgo), const ICANON = 256 +pkg syscall (freebsd-amd64-cgo), const ICRNL = 256 +pkg syscall (freebsd-amd64-cgo), const IEXTEN = 1024 +pkg syscall (freebsd-amd64-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-amd64-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-amd64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-amd64-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-amd64-cgo), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-amd64-cgo), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-amd64-cgo), const IFF_DEBUG = 4 +pkg syscall (freebsd-amd64-cgo), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-amd64-cgo), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-amd64-cgo), const IFF_DYING = 2097152 +pkg syscall (freebsd-amd64-cgo), const IFF_LINK0 = 4096 +pkg syscall (freebsd-amd64-cgo), const IFF_LINK1 = 8192 +pkg syscall (freebsd-amd64-cgo), const IFF_LINK2 = 16384 +pkg syscall (freebsd-amd64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-amd64-cgo), const IFF_MONITOR = 262144 +pkg syscall (freebsd-amd64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-amd64-cgo), const IFF_NOARP = 128 +pkg syscall (freebsd-amd64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-amd64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-amd64-cgo), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-amd64-cgo), const IFF_PROMISC = 256 +pkg syscall (freebsd-amd64-cgo), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-amd64-cgo), const IFF_RUNNING = 64 +pkg syscall (freebsd-amd64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-amd64-cgo), const IFF_SMART = 32 +pkg syscall (freebsd-amd64-cgo), const IFF_STATICARP = 524288 +pkg syscall (freebsd-amd64-cgo), const IFNAMSIZ = 16 +pkg syscall (freebsd-amd64-cgo), const IFT_1822 = 2 +pkg syscall (freebsd-amd64-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-amd64-cgo), const IFT_AAL2 = 187 +pkg syscall (freebsd-amd64-cgo), const IFT_AAL5 = 49 +pkg syscall (freebsd-amd64-cgo), const IFT_ADSL = 94 +pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-amd64-cgo), const IFT_ARAP = 88 +pkg syscall (freebsd-amd64-cgo), const IFT_ARCNET = 35 +pkg syscall (freebsd-amd64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-amd64-cgo), const IFT_ASYNC = 84 +pkg syscall (freebsd-amd64-cgo), const IFT_ATM = 37 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMDXI = 105 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMIMA = 107 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-amd64-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-amd64-cgo), const IFT_BRIDGE = 209 +pkg syscall (freebsd-amd64-cgo), const IFT_BSC = 83 +pkg syscall (freebsd-amd64-cgo), const IFT_CARP = 248 +pkg syscall (freebsd-amd64-cgo), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-amd64-cgo), const IFT_CEPT = 19 +pkg syscall (freebsd-amd64-cgo), const IFT_CES = 133 +pkg syscall (freebsd-amd64-cgo), const IFT_CHANNEL = 70 +pkg syscall (freebsd-amd64-cgo), const IFT_CNR = 85 +pkg syscall (freebsd-amd64-cgo), const IFT_COFFEE = 132 +pkg syscall (freebsd-amd64-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-amd64-cgo), const IFT_DCN = 141 +pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-amd64-cgo), const IFT_DLSW = 74 +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-amd64-cgo), const IFT_DS0 = 81 +pkg syscall (freebsd-amd64-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-amd64-cgo), const IFT_DS1FDL = 170 +pkg syscall (freebsd-amd64-cgo), const IFT_DS3 = 30 +pkg syscall (freebsd-amd64-cgo), const IFT_DTM = 140 +pkg syscall (freebsd-amd64-cgo), const IFT_DVBASILN = 172 +pkg syscall (freebsd-amd64-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-amd64-cgo), const IFT_ENC = 244 +pkg syscall (freebsd-amd64-cgo), const IFT_EON = 25 +pkg syscall (freebsd-amd64-cgo), const IFT_EPLRS = 87 +pkg syscall (freebsd-amd64-cgo), const IFT_ESCON = 73 +pkg syscall (freebsd-amd64-cgo), const IFT_ETHER = 6 +pkg syscall (freebsd-amd64-cgo), const IFT_FAITH = 242 +pkg syscall (freebsd-amd64-cgo), const IFT_FAST = 125 +pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHER = 62 +pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-amd64-cgo), const IFT_FDDI = 15 +pkg syscall (freebsd-amd64-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-amd64-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-amd64-cgo), const IFT_FRELAY = 32 +pkg syscall (freebsd-amd64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-amd64-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-amd64-cgo), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-amd64-cgo), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-amd64-cgo), const IFT_G703AT64K = 66 +pkg syscall (freebsd-amd64-cgo), const IFT_GIF = 240 +pkg syscall (freebsd-amd64-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-amd64-cgo), const IFT_GR303IDT = 178 +pkg syscall (freebsd-amd64-cgo), const IFT_GR303RDT = 177 +pkg syscall (freebsd-amd64-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-amd64-cgo), const IFT_H323PROXY = 165 +pkg syscall (freebsd-amd64-cgo), const IFT_HDH1822 = 3 +pkg syscall (freebsd-amd64-cgo), const IFT_HDLC = 118 +pkg syscall (freebsd-amd64-cgo), const IFT_HDSL2 = 168 +pkg syscall (freebsd-amd64-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-amd64-cgo), const IFT_HIPPI = 47 +pkg syscall (freebsd-amd64-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-amd64-cgo), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-amd64-cgo), const IFT_HSSI = 46 +pkg syscall (freebsd-amd64-cgo), const IFT_HY = 14 +pkg syscall (freebsd-amd64-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-amd64-cgo), const IFT_IDSL = 154 +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-amd64-cgo), const IFT_IFGSN = 145 +pkg syscall (freebsd-amd64-cgo), const IFT_IMT = 190 +pkg syscall (freebsd-amd64-cgo), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-amd64-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-amd64-cgo), const IFT_IP = 126 +pkg syscall (freebsd-amd64-cgo), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-amd64-cgo), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-amd64-cgo), const IFT_IPXIP = 249 +pkg syscall (freebsd-amd64-cgo), const IFT_ISDN = 63 +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNS = 75 +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNU = 76 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88023 = 7 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88024 = 8 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025 = 9 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88026 = 10 +pkg syscall (freebsd-amd64-cgo), const IFT_ISUP = 179 +pkg syscall (freebsd-amd64-cgo), const IFT_L2VLAN = 135 +pkg syscall (freebsd-amd64-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-amd64-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-amd64-cgo), const IFT_LAPB = 16 +pkg syscall (freebsd-amd64-cgo), const IFT_LAPD = 77 +pkg syscall (freebsd-amd64-cgo), const IFT_LAPF = 119 +pkg syscall (freebsd-amd64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-amd64-cgo), const IFT_LOOP = 24 +pkg syscall (freebsd-amd64-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-amd64-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-amd64-cgo), const IFT_MIOX25 = 38 +pkg syscall (freebsd-amd64-cgo), const IFT_MODEM = 48 +pkg syscall (freebsd-amd64-cgo), const IFT_MPC = 113 +pkg syscall (freebsd-amd64-cgo), const IFT_MPLS = 166 +pkg syscall (freebsd-amd64-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-amd64-cgo), const IFT_MSDSL = 143 +pkg syscall (freebsd-amd64-cgo), const IFT_MVL = 191 +pkg syscall (freebsd-amd64-cgo), const IFT_MYRINET = 99 +pkg syscall (freebsd-amd64-cgo), const IFT_NFAS = 175 +pkg syscall (freebsd-amd64-cgo), const IFT_NSIP = 27 +pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-amd64-cgo), const IFT_OTHER = 1 +pkg syscall (freebsd-amd64-cgo), const IFT_P10 = 12 +pkg syscall (freebsd-amd64-cgo), const IFT_P80 = 13 +pkg syscall (freebsd-amd64-cgo), const IFT_PARA = 34 +pkg syscall (freebsd-amd64-cgo), const IFT_PFLOG = 246 +pkg syscall (freebsd-amd64-cgo), const IFT_PFSYNC = 247 +pkg syscall (freebsd-amd64-cgo), const IFT_PLC = 174 +pkg syscall (freebsd-amd64-cgo), const IFT_POS = 171 +pkg syscall (freebsd-amd64-cgo), const IFT_PPP = 23 +pkg syscall (freebsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPMUX = 54 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-amd64-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-amd64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-amd64-cgo), const IFT_PVC = 241 +pkg syscall (freebsd-amd64-cgo), const IFT_QLLC = 68 +pkg syscall (freebsd-amd64-cgo), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-amd64-cgo), const IFT_RADSL = 95 +pkg syscall (freebsd-amd64-cgo), const IFT_REACHDSL = 192 +pkg syscall (freebsd-amd64-cgo), const IFT_RFC1483 = 159 +pkg syscall (freebsd-amd64-cgo), const IFT_RS232 = 33 +pkg syscall (freebsd-amd64-cgo), const IFT_RSRB = 79 +pkg syscall (freebsd-amd64-cgo), const IFT_SDLC = 17 +pkg syscall (freebsd-amd64-cgo), const IFT_SDSL = 96 +pkg syscall (freebsd-amd64-cgo), const IFT_SHDSL = 169 +pkg syscall (freebsd-amd64-cgo), const IFT_SIP = 31 +pkg syscall (freebsd-amd64-cgo), const IFT_SLIP = 28 +pkg syscall (freebsd-amd64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-amd64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-amd64-cgo), const IFT_SONET = 39 +pkg syscall (freebsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-amd64-cgo), const IFT_SONETPATH = 50 +pkg syscall (freebsd-amd64-cgo), const IFT_SONETVT = 51 +pkg syscall (freebsd-amd64-cgo), const IFT_SRP = 151 +pkg syscall (freebsd-amd64-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-amd64-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-amd64-cgo), const IFT_STARLAN = 11 +pkg syscall (freebsd-amd64-cgo), const IFT_STF = 215 +pkg syscall (freebsd-amd64-cgo), const IFT_T1 = 18 +pkg syscall (freebsd-amd64-cgo), const IFT_TDLC = 116 +pkg syscall (freebsd-amd64-cgo), const IFT_TERMPAD = 91 +pkg syscall (freebsd-amd64-cgo), const IFT_TR008 = 176 +pkg syscall (freebsd-amd64-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-amd64-cgo), const IFT_TUNNEL = 131 +pkg syscall (freebsd-amd64-cgo), const IFT_ULTRA = 29 +pkg syscall (freebsd-amd64-cgo), const IFT_USB = 160 +pkg syscall (freebsd-amd64-cgo), const IFT_V11 = 64 +pkg syscall (freebsd-amd64-cgo), const IFT_V35 = 45 +pkg syscall (freebsd-amd64-cgo), const IFT_V36 = 65 +pkg syscall (freebsd-amd64-cgo), const IFT_V37 = 120 +pkg syscall (freebsd-amd64-cgo), const IFT_VDSL = 97 +pkg syscall (freebsd-amd64-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEEM = 100 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-amd64-cgo), const IFT_X213 = 93 +pkg syscall (freebsd-amd64-cgo), const IFT_X25 = 5 +pkg syscall (freebsd-amd64-cgo), const IFT_X25DDN = 4 +pkg syscall (freebsd-amd64-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-amd64-cgo), const IFT_X25MLP = 121 +pkg syscall (freebsd-amd64-cgo), const IFT_X25PLE = 40 +pkg syscall (freebsd-amd64-cgo), const IFT_XETHER = 26 +pkg syscall (freebsd-amd64-cgo), const IGNBRK = 1 +pkg syscall (freebsd-amd64-cgo), const IGNCR = 128 +pkg syscall (freebsd-amd64-cgo), const IGNPAR = 4 +pkg syscall (freebsd-amd64-cgo), const IMAXBEL = 8192 +pkg syscall (freebsd-amd64-cgo), const INLCR = 64 +pkg syscall (freebsd-amd64-cgo), const INPCK = 16 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-amd64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-amd64-cgo), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_3PC = 34 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AH = 51 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_APES = 99 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BHA = 49 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BLT = 30 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CARP = 112 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DDP = 37 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DGP = 86 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DONE = 257 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EGP = 8 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EON = 80 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ESP = 50 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GGP = 3 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GRE = 47 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HMP = 20 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDP = 22 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGP = 85 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IL = 40 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_INP = 32 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LARP = 91 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAX = 256 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MH = 135 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MICP = 95 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MTP = 92 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MUX = 18 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ND = 77 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NONE = 59 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NSP = 31 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PGM = 113 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIM = 103 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PRM = 21 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PUP = 12 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PVP = 75 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RAW = 255 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RDP = 27 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RVD = 66 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEND = 259 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEP = 33 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ST = 7 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TCF = 87 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TP = 29 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TTP = 84 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VINES = 83 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VISA = 70 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WSN = 74 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_XNET = 15 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_XTP = 36 +pkg syscall (freebsd-amd64-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-amd64-cgo), const IPV6_BINDANY = 64 +pkg syscall (freebsd-amd64-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-amd64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-amd64-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-amd64-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-amd64-cgo), const IPV6_FAITH = 29 +pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-amd64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_GET = 34 +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-amd64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-amd64-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-amd64-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-amd64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-amd64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-amd64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-amd64-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-amd64-cgo), const IPV6_MMTU = 1280 +pkg syscall (freebsd-amd64-cgo), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-amd64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-amd64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-amd64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-amd64-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-amd64-cgo), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-amd64-cgo), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-amd64-cgo), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR = 51 +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-amd64-cgo), const IPV6_TCLASS = 61 +pkg syscall (freebsd-amd64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-amd64-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-amd64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION = 96 +pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-amd64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-amd64-cgo), const IP_BINDANY = 24 +pkg syscall (freebsd-amd64-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-amd64-cgo), const IP_DF = 16384 +pkg syscall (freebsd-amd64-cgo), const IP_DONTFRAG = 67 +pkg syscall (freebsd-amd64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-amd64-cgo), const IP_FAITH = 22 +pkg syscall (freebsd-amd64-cgo), const IP_FW3 = 48 +pkg syscall (freebsd-amd64-cgo), const IP_FW_ADD = 50 +pkg syscall (freebsd-amd64-cgo), const IP_FW_DEL = 51 +pkg syscall (freebsd-amd64-cgo), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-amd64-cgo), const IP_FW_GET = 54 +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-amd64-cgo), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-amd64-cgo), const IP_FW_ZERO = 53 +pkg syscall (freebsd-amd64-cgo), const IP_HDRINCL = 2 +pkg syscall (freebsd-amd64-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-amd64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-amd64-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-amd64-cgo), const IP_MF = 8192 +pkg syscall (freebsd-amd64-cgo), const IP_MINTTL = 66 +pkg syscall (freebsd-amd64-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-amd64-cgo), const IP_MSFILTER = 74 +pkg syscall (freebsd-amd64-cgo), const IP_MSS = 576 +pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-amd64-cgo), const IP_OFFMASK = 8191 +pkg syscall (freebsd-amd64-cgo), const IP_ONESBCAST = 23 +pkg syscall (freebsd-amd64-cgo), const IP_OPTIONS = 1 +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE = 19 +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-amd64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-amd64-cgo), const IP_RECVIF = 20 +pkg syscall (freebsd-amd64-cgo), const IP_RECVOPTS = 5 +pkg syscall (freebsd-amd64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-amd64-cgo), const IP_RECVTOS = 68 +pkg syscall (freebsd-amd64-cgo), const IP_RECVTTL = 65 +pkg syscall (freebsd-amd64-cgo), const IP_RETOPTS = 8 +pkg syscall (freebsd-amd64-cgo), const IP_RF = 32768 +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_ON = 15 +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-amd64-cgo), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-amd64-cgo), const IP_TOS = 3 +pkg syscall (freebsd-amd64-cgo), const IP_TTL = 4 +pkg syscall (freebsd-amd64-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-amd64-cgo), const ISIG = 128 +pkg syscall (freebsd-amd64-cgo), const ISTRIP = 32 +pkg syscall (freebsd-amd64-cgo), const IXANY = 2048 +pkg syscall (freebsd-amd64-cgo), const IXOFF = 1024 +pkg syscall (freebsd-amd64-cgo), const IXON = 512 +pkg syscall (freebsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-amd64-cgo), const LOCK_EX = 2 +pkg syscall (freebsd-amd64-cgo), const LOCK_NB = 4 +pkg syscall (freebsd-amd64-cgo), const LOCK_SH = 1 +pkg syscall (freebsd-amd64-cgo), const LOCK_UN = 8 +pkg syscall (freebsd-amd64-cgo), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-amd64-cgo), const MADV_CORE = 9 +pkg syscall (freebsd-amd64-cgo), const MADV_DONTNEED = 4 +pkg syscall (freebsd-amd64-cgo), const MADV_FREE = 5 +pkg syscall (freebsd-amd64-cgo), const MADV_NOCORE = 8 +pkg syscall (freebsd-amd64-cgo), const MADV_NORMAL = 0 +pkg syscall (freebsd-amd64-cgo), const MADV_NOSYNC = 6 +pkg syscall (freebsd-amd64-cgo), const MADV_PROTECT = 10 +pkg syscall (freebsd-amd64-cgo), const MADV_RANDOM = 1 +pkg syscall (freebsd-amd64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-amd64-cgo), const MADV_WILLNEED = 3 +pkg syscall (freebsd-amd64-cgo), const MAP_ANON = 4096 +pkg syscall (freebsd-amd64-cgo), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-amd64-cgo), const MAP_COPY = 2 +pkg syscall (freebsd-amd64-cgo), const MAP_FILE = 0 +pkg syscall (freebsd-amd64-cgo), const MAP_FIXED = 16 +pkg syscall (freebsd-amd64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-amd64-cgo), const MAP_NOCORE = 131072 +pkg syscall (freebsd-amd64-cgo), const MAP_NORESERVE = 64 +pkg syscall (freebsd-amd64-cgo), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-amd64-cgo), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-amd64-cgo), const MAP_PRIVATE = 2 +pkg syscall (freebsd-amd64-cgo), const MAP_RENAME = 32 +pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-amd64-cgo), const MAP_SHARED = 1 +pkg syscall (freebsd-amd64-cgo), const MAP_STACK = 1024 +pkg syscall (freebsd-amd64-cgo), const MCL_CURRENT = 1 +pkg syscall (freebsd-amd64-cgo), const MCL_FUTURE = 2 +pkg syscall (freebsd-amd64-cgo), const MSG_COMPAT = 32768 +pkg syscall (freebsd-amd64-cgo), const MSG_CTRUNC = 32 +pkg syscall (freebsd-amd64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-amd64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-amd64-cgo), const MSG_EOF = 256 +pkg syscall (freebsd-amd64-cgo), const MSG_EOR = 8 +pkg syscall (freebsd-amd64-cgo), const MSG_NBIO = 16384 +pkg syscall (freebsd-amd64-cgo), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-amd64-cgo), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-amd64-cgo), const MSG_OOB = 1 +pkg syscall (freebsd-amd64-cgo), const MSG_PEEK = 2 +pkg syscall (freebsd-amd64-cgo), const MSG_TRUNC = 16 +pkg syscall (freebsd-amd64-cgo), const MSG_WAITALL = 64 +pkg syscall (freebsd-amd64-cgo), const MS_ASYNC = 1 +pkg syscall (freebsd-amd64-cgo), const MS_INVALIDATE = 2 +pkg syscall (freebsd-amd64-cgo), const MS_SYNC = 0 +pkg syscall (freebsd-amd64-cgo), const NET_RT_DUMP = 1 +pkg syscall (freebsd-amd64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-amd64-cgo), const NET_RT_MAXID = 6 +pkg syscall (freebsd-amd64-cgo), const NOFLSH = 2147483648 +pkg syscall (freebsd-amd64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-amd64-cgo), const NOTE_CHILD = 4 +pkg syscall (freebsd-amd64-cgo), const NOTE_DELETE = 1 +pkg syscall (freebsd-amd64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-amd64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-amd64-cgo), const NOTE_EXTEND = 4 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFNOP = 0 +pkg syscall (freebsd-amd64-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-amd64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-amd64-cgo), const NOTE_LINK = 16 +pkg syscall (freebsd-amd64-cgo), const NOTE_LOWAT = 1 +pkg syscall (freebsd-amd64-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-amd64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-amd64-cgo), const NOTE_RENAME = 32 +pkg syscall (freebsd-amd64-cgo), const NOTE_REVOKE = 64 +pkg syscall (freebsd-amd64-cgo), const NOTE_TRACK = 1 +pkg syscall (freebsd-amd64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-amd64-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-amd64-cgo), const NOTE_WRITE = 2 +pkg syscall (freebsd-amd64-cgo), const OCRNL = 16 +pkg syscall (freebsd-amd64-cgo), const ONLCR = 2 +pkg syscall (freebsd-amd64-cgo), const ONLRET = 64 +pkg syscall (freebsd-amd64-cgo), const ONOCR = 32 +pkg syscall (freebsd-amd64-cgo), const ONOEOT = 8 +pkg syscall (freebsd-amd64-cgo), const OPOST = 1 +pkg syscall (freebsd-amd64-cgo), const O_ACCMODE = 3 +pkg syscall (freebsd-amd64-cgo), const O_APPEND = 8 +pkg syscall (freebsd-amd64-cgo), const O_ASYNC = 64 +pkg syscall (freebsd-amd64-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-amd64-cgo), const O_CREAT = 512 +pkg syscall (freebsd-amd64-cgo), const O_DIRECT = 65536 +pkg syscall (freebsd-amd64-cgo), const O_DIRECTORY = 131072 +pkg syscall (freebsd-amd64-cgo), const O_EXCL = 2048 +pkg syscall (freebsd-amd64-cgo), const O_EXEC = 262144 +pkg syscall (freebsd-amd64-cgo), const O_EXLOCK = 32 +pkg syscall (freebsd-amd64-cgo), const O_FSYNC = 128 +pkg syscall (freebsd-amd64-cgo), const O_NDELAY = 4 +pkg syscall (freebsd-amd64-cgo), const O_NOCTTY = 32768 +pkg syscall (freebsd-amd64-cgo), const O_NOFOLLOW = 256 +pkg syscall (freebsd-amd64-cgo), const O_NONBLOCK = 4 +pkg syscall (freebsd-amd64-cgo), const O_SHLOCK = 16 +pkg syscall (freebsd-amd64-cgo), const O_SYNC = 128 +pkg syscall (freebsd-amd64-cgo), const O_TRUNC = 1024 +pkg syscall (freebsd-amd64-cgo), const O_TTY_INIT = 524288 +pkg syscall (freebsd-amd64-cgo), const PARENB = 4096 +pkg syscall (freebsd-amd64-cgo), const PARMRK = 8 +pkg syscall (freebsd-amd64-cgo), const PARODD = 8192 +pkg syscall (freebsd-amd64-cgo), const PENDIN = 536870912 +pkg syscall (freebsd-amd64-cgo), const PROT_EXEC = 4 +pkg syscall (freebsd-amd64-cgo), const PROT_NONE = 0 +pkg syscall (freebsd-amd64-cgo), const PROT_READ = 1 +pkg syscall (freebsd-amd64-cgo), const PROT_WRITE = 2 +pkg syscall (freebsd-amd64-cgo), const PTRACE_CONT = 7 +pkg syscall (freebsd-amd64-cgo), const PTRACE_KILL = 8 +pkg syscall (freebsd-amd64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_AS = 10 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_CORE = 4 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_CPU = 0 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_DATA = 2 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-amd64-cgo), const RLIMIT_STACK = 3 +pkg syscall (freebsd-amd64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-amd64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-amd64-cgo), const RTAX_BRD = 7 +pkg syscall (freebsd-amd64-cgo), const RTAX_DST = 0 +pkg syscall (freebsd-amd64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-amd64-cgo), const RTAX_GENMASK = 3 +pkg syscall (freebsd-amd64-cgo), const RTAX_IFA = 5 +pkg syscall (freebsd-amd64-cgo), const RTAX_IFP = 4 +pkg syscall (freebsd-amd64-cgo), const RTAX_MAX = 8 +pkg syscall (freebsd-amd64-cgo), const RTAX_NETMASK = 2 +pkg syscall (freebsd-amd64-cgo), const RTA_AUTHOR = 64 +pkg syscall (freebsd-amd64-cgo), const RTA_BRD = 128 +pkg syscall (freebsd-amd64-cgo), const RTA_DST = 1 +pkg syscall (freebsd-amd64-cgo), const RTA_GATEWAY = 2 +pkg syscall (freebsd-amd64-cgo), const RTA_GENMASK = 8 +pkg syscall (freebsd-amd64-cgo), const RTA_IFA = 32 +pkg syscall (freebsd-amd64-cgo), const RTA_IFP = 16 +pkg syscall (freebsd-amd64-cgo), const RTA_NETMASK = 4 +pkg syscall (freebsd-amd64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-amd64-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-amd64-cgo), const RTF_DONE = 64 +pkg syscall (freebsd-amd64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-amd64-cgo), const RTF_FMASK = 268752904 +pkg syscall (freebsd-amd64-cgo), const RTF_GATEWAY = 2 +pkg syscall (freebsd-amd64-cgo), const RTF_HOST = 4 +pkg syscall (freebsd-amd64-cgo), const RTF_LLDATA = 1024 +pkg syscall (freebsd-amd64-cgo), const RTF_LLINFO = 1024 +pkg syscall (freebsd-amd64-cgo), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-amd64-cgo), const RTF_MODIFIED = 32 +pkg syscall (freebsd-amd64-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-amd64-cgo), const RTF_PINNED = 1048576 +pkg syscall (freebsd-amd64-cgo), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-amd64-cgo), const RTF_REJECT = 8 +pkg syscall (freebsd-amd64-cgo), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-amd64-cgo), const RTF_STATIC = 2048 +pkg syscall (freebsd-amd64-cgo), const RTF_STICKY = 268435456 +pkg syscall (freebsd-amd64-cgo), const RTF_UP = 1 +pkg syscall (freebsd-amd64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-amd64-cgo), const RTM_ADD = 1 +pkg syscall (freebsd-amd64-cgo), const RTM_CHANGE = 3 +pkg syscall (freebsd-amd64-cgo), const RTM_DELADDR = 13 +pkg syscall (freebsd-amd64-cgo), const RTM_DELETE = 2 +pkg syscall (freebsd-amd64-cgo), const RTM_DELMADDR = 16 +pkg syscall (freebsd-amd64-cgo), const RTM_GET = 4 +pkg syscall (freebsd-amd64-cgo), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-amd64-cgo), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-amd64-cgo), const RTM_IFINFO = 14 +pkg syscall (freebsd-amd64-cgo), const RTM_LOCK = 8 +pkg syscall (freebsd-amd64-cgo), const RTM_LOSING = 5 +pkg syscall (freebsd-amd64-cgo), const RTM_MISS = 7 +pkg syscall (freebsd-amd64-cgo), const RTM_NEWADDR = 12 +pkg syscall (freebsd-amd64-cgo), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-amd64-cgo), const RTM_OLDADD = 9 +pkg syscall (freebsd-amd64-cgo), const RTM_OLDDEL = 10 +pkg syscall (freebsd-amd64-cgo), const RTM_REDIRECT = 6 +pkg syscall (freebsd-amd64-cgo), const RTM_RESOLVE = 11 +pkg syscall (freebsd-amd64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-amd64-cgo), const RTM_VERSION = 5 +pkg syscall (freebsd-amd64-cgo), const RTV_EXPIRE = 4 +pkg syscall (freebsd-amd64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-amd64-cgo), const RTV_MTU = 1 +pkg syscall (freebsd-amd64-cgo), const RTV_RPIPE = 8 +pkg syscall (freebsd-amd64-cgo), const RTV_RTT = 64 +pkg syscall (freebsd-amd64-cgo), const RTV_RTTVAR = 128 +pkg syscall (freebsd-amd64-cgo), const RTV_SPIPE = 16 +pkg syscall (freebsd-amd64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-amd64-cgo), const RTV_WEIGHT = 256 +pkg syscall (freebsd-amd64-cgo), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-amd64-cgo), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-amd64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-amd64-cgo), const RUSAGE_SELF = 0 +pkg syscall (freebsd-amd64-cgo), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-amd64-cgo), const SCM_BINTIME = 4 +pkg syscall (freebsd-amd64-cgo), const SCM_CREDS = 3 +pkg syscall (freebsd-amd64-cgo), const SCM_RIGHTS = 1 +pkg syscall (freebsd-amd64-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-amd64-cgo), const SIGBUS = 10 +pkg syscall (freebsd-amd64-cgo), const SIGCHLD = 20 +pkg syscall (freebsd-amd64-cgo), const SIGCONT = 19 +pkg syscall (freebsd-amd64-cgo), const SIGEMT = 7 +pkg syscall (freebsd-amd64-cgo), const SIGINFO = 29 +pkg syscall (freebsd-amd64-cgo), const SIGIO = 23 +pkg syscall (freebsd-amd64-cgo), const SIGIOT = 6 +pkg syscall (freebsd-amd64-cgo), const SIGLWP = 32 +pkg syscall (freebsd-amd64-cgo), const SIGPROF = 27 +pkg syscall (freebsd-amd64-cgo), const SIGSTOP = 17 +pkg syscall (freebsd-amd64-cgo), const SIGSYS = 12 +pkg syscall (freebsd-amd64-cgo), const SIGTHR = 32 +pkg syscall (freebsd-amd64-cgo), const SIGTSTP = 18 +pkg syscall (freebsd-amd64-cgo), const SIGTTIN = 21 +pkg syscall (freebsd-amd64-cgo), const SIGTTOU = 22 +pkg syscall (freebsd-amd64-cgo), const SIGURG = 16 +pkg syscall (freebsd-amd64-cgo), const SIGUSR1 = 30 +pkg syscall (freebsd-amd64-cgo), const SIGUSR2 = 31 +pkg syscall (freebsd-amd64-cgo), const SIGVTALRM = 26 +pkg syscall (freebsd-amd64-cgo), const SIGWINCH = 28 +pkg syscall (freebsd-amd64-cgo), const SIGXCPU = 24 +pkg syscall (freebsd-amd64-cgo), const SIGXFSZ = 25 +pkg syscall (freebsd-amd64-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-amd64-cgo), const SIOCADDRT = 2151707146 +pkg syscall (freebsd-amd64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-amd64-cgo), const SIOCAIFGROUP = 2150132103 +pkg syscall (freebsd-amd64-cgo), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-amd64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-amd64-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-amd64-cgo), const SIOCDELRT = 2151707147 +pkg syscall (freebsd-amd64-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-amd64-cgo), const SIOCDIFGROUP = 2150132105 +pkg syscall (freebsd-amd64-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-amd64-cgo), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-amd64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (freebsd-amd64-cgo), const SIOCGETSGCNT = 3223351824 +pkg syscall (freebsd-amd64-cgo), const SIOCGETVIFCNT = 3223876111 +pkg syscall (freebsd-amd64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFCONF = 3222300964 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGMEMB = 3223873930 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGROUP = 3223873928 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMEDIA = 3224398136 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-amd64-cgo), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-amd64-cgo), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-amd64-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-amd64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-amd64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-amd64-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-amd64-cgo), const SIOCIFGCLONERS = 3222301048 +pkg syscall (freebsd-amd64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (freebsd-amd64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-amd64-cgo), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-amd64-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-amd64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-amd64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-amd64-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-amd64-cgo), const SOCK_RDM = 4 +pkg syscall (freebsd-amd64-cgo), const SOL_SOCKET = 65535 +pkg syscall (freebsd-amd64-cgo), const SOMAXCONN = 128 +pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-amd64-cgo), const SO_BINTIME = 8192 +pkg syscall (freebsd-amd64-cgo), const SO_BROADCAST = 32 +pkg syscall (freebsd-amd64-cgo), const SO_DEBUG = 1 +pkg syscall (freebsd-amd64-cgo), const SO_DONTROUTE = 16 +pkg syscall (freebsd-amd64-cgo), const SO_ERROR = 4103 +pkg syscall (freebsd-amd64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-amd64-cgo), const SO_LABEL = 4105 +pkg syscall (freebsd-amd64-cgo), const SO_LINGER = 128 +pkg syscall (freebsd-amd64-cgo), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-amd64-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-amd64-cgo), const SO_NO_DDP = 32768 +pkg syscall (freebsd-amd64-cgo), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-amd64-cgo), const SO_OOBINLINE = 256 +pkg syscall (freebsd-amd64-cgo), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-amd64-cgo), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-amd64-cgo), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-amd64-cgo), const SO_RCVBUF = 4098 +pkg syscall (freebsd-amd64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-amd64-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-amd64-cgo), const SO_REUSEADDR = 4 +pkg syscall (freebsd-amd64-cgo), const SO_REUSEPORT = 512 +pkg syscall (freebsd-amd64-cgo), const SO_SETFIB = 4116 +pkg syscall (freebsd-amd64-cgo), const SO_SNDBUF = 4097 +pkg syscall (freebsd-amd64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-amd64-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-amd64-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-amd64-cgo), const SO_TYPE = 4104 +pkg syscall (freebsd-amd64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-amd64-cgo), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-amd64-cgo), const SYS_ABORT2 = 463 +pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT = 30 +pkg syscall (freebsd-amd64-cgo), const SYS_ACCESS = 33 +pkg syscall (freebsd-amd64-cgo), const SYS_ACCT = 51 +pkg syscall (freebsd-amd64-cgo), const SYS_ADJTIME = 140 +pkg syscall (freebsd-amd64-cgo), const SYS_AUDIT = 445 +pkg syscall (freebsd-amd64-cgo), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-amd64-cgo), const SYS_AUDITON = 446 +pkg syscall (freebsd-amd64-cgo), const SYS_BIND = 104 +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-amd64-cgo), const SYS_CHDIR = 12 +pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-amd64-cgo), const SYS_CHMOD = 15 +pkg syscall (freebsd-amd64-cgo), const SYS_CHOWN = 16 +pkg syscall (freebsd-amd64-cgo), const SYS_CHROOT = 61 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOSE = 6 +pkg syscall (freebsd-amd64-cgo), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-amd64-cgo), const SYS_CONNECT = 98 +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET = 484 +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-amd64-cgo), const SYS_DUP = 41 +pkg syscall (freebsd-amd64-cgo), const SYS_DUP2 = 90 +pkg syscall (freebsd-amd64-cgo), const SYS_EACCESS = 376 +pkg syscall (freebsd-amd64-cgo), const SYS_EXECVE = 59 +pkg syscall (freebsd-amd64-cgo), const SYS_EXIT = 1 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-amd64-cgo), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHDIR = 13 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHMOD = 124 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWN = 123 +pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-amd64-cgo), const SYS_FCNTL = 92 +pkg syscall (freebsd-amd64-cgo), const SYS_FEXECVE = 492 +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-amd64-cgo), const SYS_FHOPEN = 298 +pkg syscall (freebsd-amd64-cgo), const SYS_FHSTAT = 299 +pkg syscall (freebsd-amd64-cgo), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-amd64-cgo), const SYS_FLOCK = 131 +pkg syscall (freebsd-amd64-cgo), const SYS_FORK = 2 +pkg syscall (freebsd-amd64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-amd64-cgo), const SYS_FSYNC = 95 +pkg syscall (freebsd-amd64-cgo), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMES = 206 +pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUID = 447 +pkg syscall (freebsd-amd64-cgo), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-amd64-cgo), const SYS_GETDENTS = 272 +pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-amd64-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-amd64-cgo), const SYS_GETEGID = 43 +pkg syscall (freebsd-amd64-cgo), const SYS_GETEUID = 25 +pkg syscall (freebsd-amd64-cgo), const SYS_GETFH = 161 +pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-amd64-cgo), const SYS_GETGID = 47 +pkg syscall (freebsd-amd64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-amd64-cgo), const SYS_GETITIMER = 86 +pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPGID = 207 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPGRP = 81 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPID = 20 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPPID = 39 +pkg syscall (freebsd-amd64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-amd64-cgo), const SYS_GETRESGID = 361 +pkg syscall (freebsd-amd64-cgo), const SYS_GETRESUID = 360 +pkg syscall (freebsd-amd64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-amd64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-amd64-cgo), const SYS_GETSID = 310 +pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-amd64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-amd64-cgo), const SYS_GETUID = 24 +pkg syscall (freebsd-amd64-cgo), const SYS_IOCTL = 54 +pkg syscall (freebsd-amd64-cgo), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL = 338 +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-amd64-cgo), const SYS_KENV = 390 +pkg syscall (freebsd-amd64-cgo), const SYS_KEVENT = 363 +pkg syscall (freebsd-amd64-cgo), const SYS_KILL = 37 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIND = 306 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDSYM = 337 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-amd64-cgo), const SYS_KQUEUE = 362 +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-amd64-cgo), const SYS_KTRACE = 45 +pkg syscall (freebsd-amd64-cgo), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-amd64-cgo), const SYS_LCHMOD = 274 +pkg syscall (freebsd-amd64-cgo), const SYS_LCHOWN = 254 +pkg syscall (freebsd-amd64-cgo), const SYS_LGETFH = 160 +pkg syscall (freebsd-amd64-cgo), const SYS_LINK = 9 +pkg syscall (freebsd-amd64-cgo), const SYS_LINKAT = 495 +pkg syscall (freebsd-amd64-cgo), const SYS_LISTEN = 106 +pkg syscall (freebsd-amd64-cgo), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-amd64-cgo), const SYS_LSEEK = 478 +pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-amd64-cgo), const SYS_LUTIMES = 276 +pkg syscall (freebsd-amd64-cgo), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-amd64-cgo), const SYS_MADVISE = 75 +pkg syscall (freebsd-amd64-cgo), const SYS_MINCORE = 78 +pkg syscall (freebsd-amd64-cgo), const SYS_MINHERIT = 250 +pkg syscall (freebsd-amd64-cgo), const SYS_MKDIR = 136 +pkg syscall (freebsd-amd64-cgo), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFO = 132 +pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-amd64-cgo), const SYS_MKNOD = 14 +pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-amd64-cgo), const SYS_MLOCK = 203 +pkg syscall (freebsd-amd64-cgo), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-amd64-cgo), const SYS_MMAP = 477 +pkg syscall (freebsd-amd64-cgo), const SYS_MODFIND = 303 +pkg syscall (freebsd-amd64-cgo), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-amd64-cgo), const SYS_MODNEXT = 300 +pkg syscall (freebsd-amd64-cgo), const SYS_MODSTAT = 301 +pkg syscall (freebsd-amd64-cgo), const SYS_MOUNT = 21 +pkg syscall (freebsd-amd64-cgo), const SYS_MPROTECT = 74 +pkg syscall (freebsd-amd64-cgo), const SYS_MSYNC = 65 +pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-amd64-cgo), const SYS_MUNMAP = 73 +pkg syscall (freebsd-amd64-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-amd64-cgo), const SYS_NFSTAT = 279 +pkg syscall (freebsd-amd64-cgo), const SYS_NLSTAT = 280 +pkg syscall (freebsd-amd64-cgo), const SYS_NMOUNT = 378 +pkg syscall (freebsd-amd64-cgo), const SYS_NSTAT = 278 +pkg syscall (freebsd-amd64-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-amd64-cgo), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-amd64-cgo), const SYS_OBREAK = 17 +pkg syscall (freebsd-amd64-cgo), const SYS_OPEN = 5 +pkg syscall (freebsd-amd64-cgo), const SYS_OPENAT = 499 +pkg syscall (freebsd-amd64-cgo), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-amd64-cgo), const SYS_OVADVISE = 72 +pkg syscall (freebsd-amd64-cgo), const SYS_PATHCONF = 191 +pkg syscall (freebsd-amd64-cgo), const SYS_PDFORK = 518 +pkg syscall (freebsd-amd64-cgo), const SYS_PDGETPID = 520 +pkg syscall (freebsd-amd64-cgo), const SYS_PDKILL = 519 +pkg syscall (freebsd-amd64-cgo), const SYS_PIPE = 42 +pkg syscall (freebsd-amd64-cgo), const SYS_POLL = 209 +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-amd64-cgo), const SYS_PREAD = 475 +pkg syscall (freebsd-amd64-cgo), const SYS_PREADV = 289 +pkg syscall (freebsd-amd64-cgo), const SYS_PROFIL = 44 +pkg syscall (freebsd-amd64-cgo), const SYS_PSELECT = 522 +pkg syscall (freebsd-amd64-cgo), const SYS_PTRACE = 26 +pkg syscall (freebsd-amd64-cgo), const SYS_PWRITE = 476 +pkg syscall (freebsd-amd64-cgo), const SYS_PWRITEV = 290 +pkg syscall (freebsd-amd64-cgo), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-amd64-cgo), const SYS_READ = 3 +pkg syscall (freebsd-amd64-cgo), const SYS_READLINK = 58 +pkg syscall (freebsd-amd64-cgo), const SYS_READLINKAT = 500 +pkg syscall (freebsd-amd64-cgo), const SYS_READV = 120 +pkg syscall (freebsd-amd64-cgo), const SYS_REBOOT = 55 +pkg syscall (freebsd-amd64-cgo), const SYS_RECVFROM = 29 +pkg syscall (freebsd-amd64-cgo), const SYS_RECVMSG = 27 +pkg syscall (freebsd-amd64-cgo), const SYS_RENAME = 128 +pkg syscall (freebsd-amd64-cgo), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-amd64-cgo), const SYS_REVOKE = 56 +pkg syscall (freebsd-amd64-cgo), const SYS_RFORK = 251 +pkg syscall (freebsd-amd64-cgo), const SYS_RMDIR = 137 +pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO = 166 +pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-amd64-cgo), const SYS_SBRK = 69 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-amd64-cgo), const SYS_SELECT = 93 +pkg syscall (freebsd-amd64-cgo), const SYS_SENDFILE = 393 +pkg syscall (freebsd-amd64-cgo), const SYS_SENDMSG = 28 +pkg syscall (freebsd-amd64-cgo), const SYS_SENDTO = 133 +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUID = 448 +pkg syscall (freebsd-amd64-cgo), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-amd64-cgo), const SYS_SETEGID = 182 +pkg syscall (freebsd-amd64-cgo), const SYS_SETEUID = 183 +pkg syscall (freebsd-amd64-cgo), const SYS_SETFIB = 175 +pkg syscall (freebsd-amd64-cgo), const SYS_SETGID = 181 +pkg syscall (freebsd-amd64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-amd64-cgo), const SYS_SETITIMER = 83 +pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-amd64-cgo), const SYS_SETPGID = 82 +pkg syscall (freebsd-amd64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-amd64-cgo), const SYS_SETREGID = 127 +pkg syscall (freebsd-amd64-cgo), const SYS_SETRESGID = 312 +pkg syscall (freebsd-amd64-cgo), const SYS_SETRESUID = 311 +pkg syscall (freebsd-amd64-cgo), const SYS_SETREUID = 126 +pkg syscall (freebsd-amd64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-amd64-cgo), const SYS_SETSID = 147 +pkg syscall (freebsd-amd64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-amd64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-amd64-cgo), const SYS_SETUID = 23 +pkg syscall (freebsd-amd64-cgo), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-amd64-cgo), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-amd64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGACTION = 416 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-amd64-cgo), const SYS_SOCKET = 97 +pkg syscall (freebsd-amd64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-amd64-cgo), const SYS_SSTK = 70 +pkg syscall (freebsd-amd64-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-amd64-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPON = 85 +pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINK = 57 +pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-amd64-cgo), const SYS_SYNC = 36 +pkg syscall (freebsd-amd64-cgo), const SYS_SYSARCH = 165 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL = 433 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_NEW = 455 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SELF = 432 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-amd64-cgo), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-amd64-cgo), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-amd64-cgo), const SYS_UMASK = 60 +pkg syscall (freebsd-amd64-cgo), const SYS_UNDELETE = 205 +pkg syscall (freebsd-amd64-cgo), const SYS_UNLINK = 10 +pkg syscall (freebsd-amd64-cgo), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-amd64-cgo), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-amd64-cgo), const SYS_UTIMES = 138 +pkg syscall (freebsd-amd64-cgo), const SYS_UTRACE = 335 +pkg syscall (freebsd-amd64-cgo), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-amd64-cgo), const SYS_VFORK = 66 +pkg syscall (freebsd-amd64-cgo), const SYS_WAIT4 = 7 +pkg syscall (freebsd-amd64-cgo), const SYS_WAIT6 = 532 +pkg syscall (freebsd-amd64-cgo), const SYS_WRITE = 4 +pkg syscall (freebsd-amd64-cgo), const SYS_WRITEV = 121 +pkg syscall (freebsd-amd64-cgo), const SYS_YIELD = 321 +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-amd64-cgo), const SYS___GETCWD = 326 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-amd64-cgo), const SYS___SETUGID = 374 +pkg syscall (freebsd-amd64-cgo), const SYS___SYSCTL = 202 +pkg syscall (freebsd-amd64-cgo), const S_IFMT = 61440 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfHdr = 32 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfInsn = 8 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfProgram = 16 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfStat = 8 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfVersion = 4 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbuf = 24 +pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-amd64-cgo), const SizeofCmsghdr = 12 +pkg syscall (freebsd-amd64-cgo), const SizeofIPMreq = 8 +pkg syscall (freebsd-amd64-cgo), const SizeofIPMreqn = 12 +pkg syscall (freebsd-amd64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-amd64-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-amd64-cgo), const SizeofIfData = 152 +pkg syscall (freebsd-amd64-cgo), const SizeofIfMsghdr = 168 +pkg syscall (freebsd-amd64-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-amd64-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-amd64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-amd64-cgo), const SizeofLinger = 8 +pkg syscall (freebsd-amd64-cgo), const SizeofMsghdr = 48 +pkg syscall (freebsd-amd64-cgo), const SizeofRtMetrics = 112 +pkg syscall (freebsd-amd64-cgo), const SizeofRtMsghdr = 152 +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-amd64-cgo), const TCIFLUSH = 1 +pkg syscall (freebsd-amd64-cgo), const TCIOFLUSH = 3 +pkg syscall (freebsd-amd64-cgo), const TCOFLUSH = 2 +pkg syscall (freebsd-amd64-cgo), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-amd64-cgo), const TCP_CONGESTION = 64 +pkg syscall (freebsd-amd64-cgo), const TCP_INFO = 32 +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-amd64-cgo), const TCP_MAXBURST = 4 +pkg syscall (freebsd-amd64-cgo), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-amd64-cgo), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-amd64-cgo), const TCP_MAXSEG = 2 +pkg syscall (freebsd-amd64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-amd64-cgo), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-amd64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-amd64-cgo), const TCP_MD5SIG = 16 +pkg syscall (freebsd-amd64-cgo), const TCP_MINMSS = 216 +pkg syscall (freebsd-amd64-cgo), const TCP_MSS = 536 +pkg syscall (freebsd-amd64-cgo), const TCP_NOOPT = 8 +pkg syscall (freebsd-amd64-cgo), const TCP_NOPUSH = 4 +pkg syscall (freebsd-amd64-cgo), const TCSAFLUSH = 2 +pkg syscall (freebsd-amd64-cgo), const TIOCCBRK = 536900730 +pkg syscall (freebsd-amd64-cgo), const TIOCCDTR = 536900728 +pkg syscall (freebsd-amd64-cgo), const TIOCCONS = 2147775586 +pkg syscall (freebsd-amd64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-amd64-cgo), const TIOCEXCL = 536900621 +pkg syscall (freebsd-amd64-cgo), const TIOCEXT = 2147775584 +pkg syscall (freebsd-amd64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-amd64-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-amd64-cgo), const TIOCGETA = 1076655123 +pkg syscall (freebsd-amd64-cgo), const TIOCGETD = 1074033690 +pkg syscall (freebsd-amd64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-amd64-cgo), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-amd64-cgo), const TIOCGSID = 1074033763 +pkg syscall (freebsd-amd64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-amd64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-amd64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-amd64-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-amd64-cgo), const TIOCMGET = 1074033770 +pkg syscall (freebsd-amd64-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-amd64-cgo), const TIOCMSET = 2147775597 +pkg syscall (freebsd-amd64-cgo), const TIOCM_CAR = 64 +pkg syscall (freebsd-amd64-cgo), const TIOCM_CD = 64 +pkg syscall (freebsd-amd64-cgo), const TIOCM_CTS = 32 +pkg syscall (freebsd-amd64-cgo), const TIOCM_DCD = 64 +pkg syscall (freebsd-amd64-cgo), const TIOCM_DSR = 256 +pkg syscall (freebsd-amd64-cgo), const TIOCM_DTR = 2 +pkg syscall (freebsd-amd64-cgo), const TIOCM_LE = 1 +pkg syscall (freebsd-amd64-cgo), const TIOCM_RI = 128 +pkg syscall (freebsd-amd64-cgo), const TIOCM_RNG = 128 +pkg syscall (freebsd-amd64-cgo), const TIOCM_RTS = 4 +pkg syscall (freebsd-amd64-cgo), const TIOCM_SR = 16 +pkg syscall (freebsd-amd64-cgo), const TIOCM_ST = 8 +pkg syscall (freebsd-amd64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-amd64-cgo), const TIOCNXCL = 536900622 +pkg syscall (freebsd-amd64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT = 2147775600 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_START = 8 +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-amd64-cgo), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-amd64-cgo), const TIOCSBRK = 536900731 +pkg syscall (freebsd-amd64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-amd64-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-amd64-cgo), const TIOCSDTR = 536900729 +pkg syscall (freebsd-amd64-cgo), const TIOCSETA = 2150396948 +pkg syscall (freebsd-amd64-cgo), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-amd64-cgo), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-amd64-cgo), const TIOCSETD = 2147775515 +pkg syscall (freebsd-amd64-cgo), const TIOCSIG = 537162847 +pkg syscall (freebsd-amd64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-amd64-cgo), const TIOCSTART = 536900718 +pkg syscall (freebsd-amd64-cgo), const TIOCSTAT = 536900709 +pkg syscall (freebsd-amd64-cgo), const TIOCSTI = 2147578994 +pkg syscall (freebsd-amd64-cgo), const TIOCSTOP = 536900719 +pkg syscall (freebsd-amd64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-amd64-cgo), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-amd64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-amd64-cgo), const TOSTOP = 4194304 +pkg syscall (freebsd-amd64-cgo), const VDISCARD = 15 +pkg syscall (freebsd-amd64-cgo), const VDSUSP = 11 +pkg syscall (freebsd-amd64-cgo), const VEOF = 0 +pkg syscall (freebsd-amd64-cgo), const VEOL = 1 +pkg syscall (freebsd-amd64-cgo), const VEOL2 = 2 +pkg syscall (freebsd-amd64-cgo), const VERASE = 3 +pkg syscall (freebsd-amd64-cgo), const VERASE2 = 7 +pkg syscall (freebsd-amd64-cgo), const VINTR = 8 +pkg syscall (freebsd-amd64-cgo), const VKILL = 5 +pkg syscall (freebsd-amd64-cgo), const VLNEXT = 14 +pkg syscall (freebsd-amd64-cgo), const VMIN = 16 +pkg syscall (freebsd-amd64-cgo), const VQUIT = 9 +pkg syscall (freebsd-amd64-cgo), const VREPRINT = 6 +pkg syscall (freebsd-amd64-cgo), const VSTART = 12 +pkg syscall (freebsd-amd64-cgo), const VSTATUS = 18 +pkg syscall (freebsd-amd64-cgo), const VSTOP = 13 +pkg syscall (freebsd-amd64-cgo), const VSUSP = 10 +pkg syscall (freebsd-amd64-cgo), const VTIME = 17 +pkg syscall (freebsd-amd64-cgo), const VWERASE = 4 +pkg syscall (freebsd-amd64-cgo), const WCONTINUED = 4 +pkg syscall (freebsd-amd64-cgo), const WCOREFLAG = 128 +pkg syscall (freebsd-amd64-cgo), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-amd64-cgo), const WNOHANG = 1 +pkg syscall (freebsd-amd64-cgo), const WNOWAIT = 8 +pkg syscall (freebsd-amd64-cgo), const WSTOPPED = 2 +pkg syscall (freebsd-amd64-cgo), const WUNTRACED = 2 +pkg syscall (freebsd-arm), const AF_APPLETALK = 16 +pkg syscall (freebsd-arm), const AF_ARP = 35 +pkg syscall (freebsd-arm), const AF_ATM = 30 +pkg syscall (freebsd-arm), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-arm), const AF_CCITT = 10 +pkg syscall (freebsd-arm), const AF_CHAOS = 5 +pkg syscall (freebsd-arm), const AF_CNT = 21 +pkg syscall (freebsd-arm), const AF_COIP = 20 +pkg syscall (freebsd-arm), const AF_DATAKIT = 9 +pkg syscall (freebsd-arm), const AF_DECnet = 12 +pkg syscall (freebsd-arm), const AF_DLI = 13 +pkg syscall (freebsd-arm), const AF_E164 = 26 +pkg syscall (freebsd-arm), const AF_ECMA = 8 +pkg syscall (freebsd-arm), const AF_HYLINK = 15 +pkg syscall (freebsd-arm), const AF_IEEE80211 = 37 +pkg syscall (freebsd-arm), const AF_IMPLINK = 3 +pkg syscall (freebsd-arm), const AF_INET6 = 28 +pkg syscall (freebsd-arm), const AF_IPX = 23 +pkg syscall (freebsd-arm), const AF_ISDN = 26 +pkg syscall (freebsd-arm), const AF_ISO = 7 +pkg syscall (freebsd-arm), const AF_LAT = 14 +pkg syscall (freebsd-arm), const AF_LINK = 18 +pkg syscall (freebsd-arm), const AF_LOCAL = 1 +pkg syscall (freebsd-arm), const AF_MAX = 38 +pkg syscall (freebsd-arm), const AF_NATM = 29 +pkg syscall (freebsd-arm), const AF_NETBIOS = 6 +pkg syscall (freebsd-arm), const AF_NETGRAPH = 32 +pkg syscall (freebsd-arm), const AF_OSI = 7 +pkg syscall (freebsd-arm), const AF_PUP = 4 +pkg syscall (freebsd-arm), const AF_ROUTE = 17 +pkg syscall (freebsd-arm), const AF_SCLUSTER = 34 +pkg syscall (freebsd-arm), const AF_SIP = 24 +pkg syscall (freebsd-arm), const AF_SLOW = 33 +pkg syscall (freebsd-arm), const AF_SNA = 11 +pkg syscall (freebsd-arm), const AF_VENDOR00 = 39 +pkg syscall (freebsd-arm), const AF_VENDOR01 = 41 +pkg syscall (freebsd-arm), const AF_VENDOR02 = 43 +pkg syscall (freebsd-arm), const AF_VENDOR03 = 45 +pkg syscall (freebsd-arm), const AF_VENDOR04 = 47 +pkg syscall (freebsd-arm), const AF_VENDOR05 = 49 +pkg syscall (freebsd-arm), const AF_VENDOR06 = 51 +pkg syscall (freebsd-arm), const AF_VENDOR07 = 53 +pkg syscall (freebsd-arm), const AF_VENDOR08 = 55 +pkg syscall (freebsd-arm), const AF_VENDOR09 = 57 +pkg syscall (freebsd-arm), const AF_VENDOR10 = 59 +pkg syscall (freebsd-arm), const AF_VENDOR11 = 61 +pkg syscall (freebsd-arm), const AF_VENDOR12 = 63 +pkg syscall (freebsd-arm), const AF_VENDOR13 = 65 +pkg syscall (freebsd-arm), const AF_VENDOR14 = 67 +pkg syscall (freebsd-arm), const AF_VENDOR15 = 69 +pkg syscall (freebsd-arm), const AF_VENDOR16 = 71 +pkg syscall (freebsd-arm), const AF_VENDOR17 = 73 +pkg syscall (freebsd-arm), const AF_VENDOR18 = 75 +pkg syscall (freebsd-arm), const AF_VENDOR19 = 77 +pkg syscall (freebsd-arm), const AF_VENDOR20 = 79 +pkg syscall (freebsd-arm), const AF_VENDOR21 = 81 +pkg syscall (freebsd-arm), const AF_VENDOR22 = 83 +pkg syscall (freebsd-arm), const AF_VENDOR23 = 85 +pkg syscall (freebsd-arm), const AF_VENDOR24 = 87 +pkg syscall (freebsd-arm), const AF_VENDOR25 = 89 +pkg syscall (freebsd-arm), const AF_VENDOR26 = 91 +pkg syscall (freebsd-arm), const AF_VENDOR27 = 93 +pkg syscall (freebsd-arm), const AF_VENDOR28 = 95 +pkg syscall (freebsd-arm), const AF_VENDOR29 = 97 +pkg syscall (freebsd-arm), const AF_VENDOR30 = 99 +pkg syscall (freebsd-arm), const AF_VENDOR31 = 101 +pkg syscall (freebsd-arm), const AF_VENDOR32 = 103 +pkg syscall (freebsd-arm), const AF_VENDOR33 = 105 +pkg syscall (freebsd-arm), const AF_VENDOR34 = 107 +pkg syscall (freebsd-arm), const AF_VENDOR35 = 109 +pkg syscall (freebsd-arm), const AF_VENDOR36 = 111 +pkg syscall (freebsd-arm), const AF_VENDOR37 = 113 +pkg syscall (freebsd-arm), const AF_VENDOR38 = 115 +pkg syscall (freebsd-arm), const AF_VENDOR39 = 117 +pkg syscall (freebsd-arm), const AF_VENDOR40 = 119 +pkg syscall (freebsd-arm), const AF_VENDOR41 = 121 +pkg syscall (freebsd-arm), const AF_VENDOR42 = 123 +pkg syscall (freebsd-arm), const AF_VENDOR43 = 125 +pkg syscall (freebsd-arm), const AF_VENDOR44 = 127 +pkg syscall (freebsd-arm), const AF_VENDOR45 = 129 +pkg syscall (freebsd-arm), const AF_VENDOR46 = 131 +pkg syscall (freebsd-arm), const AF_VENDOR47 = 133 +pkg syscall (freebsd-arm), const B0 = 0 +pkg syscall (freebsd-arm), const B110 = 110 +pkg syscall (freebsd-arm), const B115200 = 115200 +pkg syscall (freebsd-arm), const B1200 = 1200 +pkg syscall (freebsd-arm), const B134 = 134 +pkg syscall (freebsd-arm), const B14400 = 14400 +pkg syscall (freebsd-arm), const B150 = 150 +pkg syscall (freebsd-arm), const B1800 = 1800 +pkg syscall (freebsd-arm), const B19200 = 19200 +pkg syscall (freebsd-arm), const B200 = 200 +pkg syscall (freebsd-arm), const B230400 = 230400 +pkg syscall (freebsd-arm), const B2400 = 2400 +pkg syscall (freebsd-arm), const B28800 = 28800 +pkg syscall (freebsd-arm), const B300 = 300 +pkg syscall (freebsd-arm), const B38400 = 38400 +pkg syscall (freebsd-arm), const B460800 = 460800 +pkg syscall (freebsd-arm), const B4800 = 4800 +pkg syscall (freebsd-arm), const B50 = 50 +pkg syscall (freebsd-arm), const B57600 = 57600 +pkg syscall (freebsd-arm), const B600 = 600 +pkg syscall (freebsd-arm), const B7200 = 7200 +pkg syscall (freebsd-arm), const B75 = 75 +pkg syscall (freebsd-arm), const B76800 = 76800 +pkg syscall (freebsd-arm), const B921600 = 921600 +pkg syscall (freebsd-arm), const B9600 = 9600 +pkg syscall (freebsd-arm), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-arm), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-arm), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-arm), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-arm), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-arm), const BIOCGDLTLIST = 3221766777 +pkg syscall (freebsd-arm), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-arm), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-arm), const BIOCGETZMAX = 1074020991 +pkg syscall (freebsd-arm), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-arm), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-arm), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (freebsd-arm), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-arm), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-arm), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-arm), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-arm), const BIOCLOCK = 536887930 +pkg syscall (freebsd-arm), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-arm), const BIOCROTZBUF = 1074545280 +pkg syscall (freebsd-arm), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-arm), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-arm), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-arm), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-arm), const BIOCSETF = 2148024935 +pkg syscall (freebsd-arm), const BIOCSETFNR = 2148024962 +pkg syscall (freebsd-arm), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-arm), const BIOCSETWF = 2148024955 +pkg syscall (freebsd-arm), const BIOCSETZBUF = 2148287105 +pkg syscall (freebsd-arm), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-arm), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-arm), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (freebsd-arm), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-arm), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-arm), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-arm), const BPF_A = 16 +pkg syscall (freebsd-arm), const BPF_ABS = 32 +pkg syscall (freebsd-arm), const BPF_ADD = 0 +pkg syscall (freebsd-arm), const BPF_ALIGNMENT = 4 +pkg syscall (freebsd-arm), const BPF_ALU = 4 +pkg syscall (freebsd-arm), const BPF_AND = 80 +pkg syscall (freebsd-arm), const BPF_B = 16 +pkg syscall (freebsd-arm), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-arm), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-arm), const BPF_DIV = 48 +pkg syscall (freebsd-arm), const BPF_H = 8 +pkg syscall (freebsd-arm), const BPF_IMM = 0 +pkg syscall (freebsd-arm), const BPF_IND = 64 +pkg syscall (freebsd-arm), const BPF_JA = 0 +pkg syscall (freebsd-arm), const BPF_JEQ = 16 +pkg syscall (freebsd-arm), const BPF_JGE = 48 +pkg syscall (freebsd-arm), const BPF_JGT = 32 +pkg syscall (freebsd-arm), const BPF_JMP = 5 +pkg syscall (freebsd-arm), const BPF_JSET = 64 +pkg syscall (freebsd-arm), const BPF_K = 0 +pkg syscall (freebsd-arm), const BPF_LD = 0 +pkg syscall (freebsd-arm), const BPF_LDX = 1 +pkg syscall (freebsd-arm), const BPF_LEN = 128 +pkg syscall (freebsd-arm), const BPF_LSH = 96 +pkg syscall (freebsd-arm), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-arm), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-arm), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-arm), const BPF_MEM = 96 +pkg syscall (freebsd-arm), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-arm), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-arm), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-arm), const BPF_MISC = 7 +pkg syscall (freebsd-arm), const BPF_MSH = 160 +pkg syscall (freebsd-arm), const BPF_MUL = 32 +pkg syscall (freebsd-arm), const BPF_NEG = 128 +pkg syscall (freebsd-arm), const BPF_OR = 64 +pkg syscall (freebsd-arm), const BPF_RELEASE = 199606 +pkg syscall (freebsd-arm), const BPF_RET = 6 +pkg syscall (freebsd-arm), const BPF_RSH = 112 +pkg syscall (freebsd-arm), const BPF_ST = 2 +pkg syscall (freebsd-arm), const BPF_STX = 3 +pkg syscall (freebsd-arm), const BPF_SUB = 16 +pkg syscall (freebsd-arm), const BPF_TAX = 0 +pkg syscall (freebsd-arm), const BPF_TXA = 128 +pkg syscall (freebsd-arm), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-arm), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-arm), const BPF_T_FAST = 256 +pkg syscall (freebsd-arm), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-arm), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-arm), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-arm), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-arm), const BPF_T_NONE = 3 +pkg syscall (freebsd-arm), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-arm), const BPF_W = 0 +pkg syscall (freebsd-arm), const BPF_X = 8 +pkg syscall (freebsd-arm), const BRKINT = 2 +pkg syscall (freebsd-arm), const CFLUSH = 15 +pkg syscall (freebsd-arm), const CLOCAL = 32768 +pkg syscall (freebsd-arm), const CREAD = 2048 +pkg syscall (freebsd-arm), const CS5 = 0 +pkg syscall (freebsd-arm), const CS6 = 256 +pkg syscall (freebsd-arm), const CS7 = 512 +pkg syscall (freebsd-arm), const CS8 = 768 +pkg syscall (freebsd-arm), const CSIZE = 768 +pkg syscall (freebsd-arm), const CSTART = 17 +pkg syscall (freebsd-arm), const CSTATUS = 20 +pkg syscall (freebsd-arm), const CSTOP = 19 +pkg syscall (freebsd-arm), const CSTOPB = 1024 +pkg syscall (freebsd-arm), const CSUSP = 26 +pkg syscall (freebsd-arm), const CTL_MAXNAME = 24 +pkg syscall (freebsd-arm), const CTL_NET = 4 +pkg syscall (freebsd-arm), const DLT_A429 = 184 +pkg syscall (freebsd-arm), const DLT_A653_ICM = 185 +pkg syscall (freebsd-arm), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-arm), const DLT_AOS = 222 +pkg syscall (freebsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-arm), const DLT_ARCNET = 7 +pkg syscall (freebsd-arm), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-arm), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-arm), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-arm), const DLT_AURORA = 126 +pkg syscall (freebsd-arm), const DLT_AX25 = 3 +pkg syscall (freebsd-arm), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-arm), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-arm), const DLT_CAN20B = 190 +pkg syscall (freebsd-arm), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-arm), const DLT_CHAOS = 5 +pkg syscall (freebsd-arm), const DLT_CHDLC = 104 +pkg syscall (freebsd-arm), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-arm), const DLT_C_HDLC = 104 +pkg syscall (freebsd-arm), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-arm), const DLT_DBUS = 231 +pkg syscall (freebsd-arm), const DLT_DECT = 221 +pkg syscall (freebsd-arm), const DLT_DOCSIS = 143 +pkg syscall (freebsd-arm), const DLT_DVB_CI = 235 +pkg syscall (freebsd-arm), const DLT_ECONET = 115 +pkg syscall (freebsd-arm), const DLT_EN10MB = 1 +pkg syscall (freebsd-arm), const DLT_EN3MB = 2 +pkg syscall (freebsd-arm), const DLT_ENC = 109 +pkg syscall (freebsd-arm), const DLT_ERF = 197 +pkg syscall (freebsd-arm), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-arm), const DLT_ERF_POS = 176 +pkg syscall (freebsd-arm), const DLT_FC_2 = 224 +pkg syscall (freebsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-arm), const DLT_FDDI = 10 +pkg syscall (freebsd-arm), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-arm), const DLT_FRELAY = 107 +pkg syscall (freebsd-arm), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-arm), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-arm), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-arm), const DLT_GPF_F = 171 +pkg syscall (freebsd-arm), const DLT_GPF_T = 170 +pkg syscall (freebsd-arm), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-arm), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-arm), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-arm), const DLT_HHDLC = 121 +pkg syscall (freebsd-arm), const DLT_IBM_SN = 146 +pkg syscall (freebsd-arm), const DLT_IBM_SP = 145 +pkg syscall (freebsd-arm), const DLT_IEEE802 = 6 +pkg syscall (freebsd-arm), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-arm), const DLT_IPFILTER = 116 +pkg syscall (freebsd-arm), const DLT_IPMB = 199 +pkg syscall (freebsd-arm), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-arm), const DLT_IPNET = 226 +pkg syscall (freebsd-arm), const DLT_IPOIB = 242 +pkg syscall (freebsd-arm), const DLT_IPV4 = 228 +pkg syscall (freebsd-arm), const DLT_IPV6 = 229 +pkg syscall (freebsd-arm), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-arm), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-arm), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-arm), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-arm), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-arm), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-arm), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-arm), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-arm), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-arm), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-arm), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-arm), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-arm), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-arm), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-arm), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-arm), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-arm), const DLT_LAPD = 203 +pkg syscall (freebsd-arm), const DLT_LIN = 212 +pkg syscall (freebsd-arm), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-arm), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-arm), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-arm), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-arm), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-arm), const DLT_LOOP = 108 +pkg syscall (freebsd-arm), const DLT_LTALK = 114 +pkg syscall (freebsd-arm), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-arm), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-arm), const DLT_MFR = 182 +pkg syscall (freebsd-arm), const DLT_MOST = 211 +pkg syscall (freebsd-arm), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-arm), const DLT_MPLS = 219 +pkg syscall (freebsd-arm), const DLT_MTP2 = 140 +pkg syscall (freebsd-arm), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-arm), const DLT_MTP3 = 141 +pkg syscall (freebsd-arm), const DLT_MUX27010 = 236 +pkg syscall (freebsd-arm), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-arm), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-arm), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-arm), const DLT_NFLOG = 239 +pkg syscall (freebsd-arm), const DLT_NG40 = 244 +pkg syscall (freebsd-arm), const DLT_NULL = 0 +pkg syscall (freebsd-arm), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-arm), const DLT_PFLOG = 117 +pkg syscall (freebsd-arm), const DLT_PFSYNC = 121 +pkg syscall (freebsd-arm), const DLT_PPI = 192 +pkg syscall (freebsd-arm), const DLT_PPP = 9 +pkg syscall (freebsd-arm), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-arm), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-arm), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-arm), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-arm), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-arm), const DLT_PRONET = 4 +pkg syscall (freebsd-arm), const DLT_RAIF1 = 198 +pkg syscall (freebsd-arm), const DLT_RAW = 12 +pkg syscall (freebsd-arm), const DLT_RIO = 124 +pkg syscall (freebsd-arm), const DLT_SCCP = 142 +pkg syscall (freebsd-arm), const DLT_SITA = 196 +pkg syscall (freebsd-arm), const DLT_SLIP = 8 +pkg syscall (freebsd-arm), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-arm), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-arm), const DLT_SUNATM = 123 +pkg syscall (freebsd-arm), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-arm), const DLT_TZSP = 128 +pkg syscall (freebsd-arm), const DLT_USB = 186 +pkg syscall (freebsd-arm), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-arm), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-arm), const DLT_USER0 = 147 +pkg syscall (freebsd-arm), const DLT_USER1 = 148 +pkg syscall (freebsd-arm), const DLT_USER10 = 157 +pkg syscall (freebsd-arm), const DLT_USER11 = 158 +pkg syscall (freebsd-arm), const DLT_USER12 = 159 +pkg syscall (freebsd-arm), const DLT_USER13 = 160 +pkg syscall (freebsd-arm), const DLT_USER14 = 161 +pkg syscall (freebsd-arm), const DLT_USER15 = 162 +pkg syscall (freebsd-arm), const DLT_USER2 = 149 +pkg syscall (freebsd-arm), const DLT_USER3 = 150 +pkg syscall (freebsd-arm), const DLT_USER4 = 151 +pkg syscall (freebsd-arm), const DLT_USER5 = 152 +pkg syscall (freebsd-arm), const DLT_USER6 = 153 +pkg syscall (freebsd-arm), const DLT_USER7 = 154 +pkg syscall (freebsd-arm), const DLT_USER8 = 155 +pkg syscall (freebsd-arm), const DLT_USER9 = 156 +pkg syscall (freebsd-arm), const DLT_WIHART = 223 +pkg syscall (freebsd-arm), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-arm), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-arm), const DT_BLK = 6 +pkg syscall (freebsd-arm), const DT_CHR = 2 +pkg syscall (freebsd-arm), const DT_DIR = 4 +pkg syscall (freebsd-arm), const DT_FIFO = 1 +pkg syscall (freebsd-arm), const DT_LNK = 10 +pkg syscall (freebsd-arm), const DT_REG = 8 +pkg syscall (freebsd-arm), const DT_SOCK = 12 +pkg syscall (freebsd-arm), const DT_UNKNOWN = 0 +pkg syscall (freebsd-arm), const DT_WHT = 14 +pkg syscall (freebsd-arm), const E2BIG = 7 +pkg syscall (freebsd-arm), const EACCES = 13 +pkg syscall (freebsd-arm), const EADDRINUSE = 48 +pkg syscall (freebsd-arm), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-arm), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-arm), const EAGAIN = 35 +pkg syscall (freebsd-arm), const EALREADY = 37 +pkg syscall (freebsd-arm), const EAUTH = 80 +pkg syscall (freebsd-arm), const EBADF = 9 +pkg syscall (freebsd-arm), const EBADMSG = 89 +pkg syscall (freebsd-arm), const EBADRPC = 72 +pkg syscall (freebsd-arm), const EBUSY = 16 +pkg syscall (freebsd-arm), const ECANCELED = 85 +pkg syscall (freebsd-arm), const ECAPMODE = 94 +pkg syscall (freebsd-arm), const ECHILD = 10 +pkg syscall (freebsd-arm), const ECHO = 8 +pkg syscall (freebsd-arm), const ECHOCTL = 64 +pkg syscall (freebsd-arm), const ECHOE = 2 +pkg syscall (freebsd-arm), const ECHOK = 4 +pkg syscall (freebsd-arm), const ECHOKE = 1 +pkg syscall (freebsd-arm), const ECHONL = 16 +pkg syscall (freebsd-arm), const ECHOPRT = 32 +pkg syscall (freebsd-arm), const ECONNABORTED = 53 +pkg syscall (freebsd-arm), const ECONNREFUSED = 61 +pkg syscall (freebsd-arm), const ECONNRESET = 54 +pkg syscall (freebsd-arm), const EDEADLK = 11 +pkg syscall (freebsd-arm), const EDESTADDRREQ = 39 +pkg syscall (freebsd-arm), const EDOM = 33 +pkg syscall (freebsd-arm), const EDOOFUS = 88 +pkg syscall (freebsd-arm), const EDQUOT = 69 +pkg syscall (freebsd-arm), const EEXIST = 17 +pkg syscall (freebsd-arm), const EFAULT = 14 +pkg syscall (freebsd-arm), const EFBIG = 27 +pkg syscall (freebsd-arm), const EFTYPE = 79 +pkg syscall (freebsd-arm), const EHOSTDOWN = 64 +pkg syscall (freebsd-arm), const EHOSTUNREACH = 65 +pkg syscall (freebsd-arm), const EIDRM = 82 +pkg syscall (freebsd-arm), const EILSEQ = 86 +pkg syscall (freebsd-arm), const EINPROGRESS = 36 +pkg syscall (freebsd-arm), const EINTR = 4 +pkg syscall (freebsd-arm), const EINVAL = 22 +pkg syscall (freebsd-arm), const EIO = 5 +pkg syscall (freebsd-arm), const EISCONN = 56 +pkg syscall (freebsd-arm), const EISDIR = 21 +pkg syscall (freebsd-arm), const ELAST = 94 +pkg syscall (freebsd-arm), const ELOOP = 62 +pkg syscall (freebsd-arm), const EMFILE = 24 +pkg syscall (freebsd-arm), const EMLINK = 31 +pkg syscall (freebsd-arm), const EMSGSIZE = 40 +pkg syscall (freebsd-arm), const EMULTIHOP = 90 +pkg syscall (freebsd-arm), const ENAMETOOLONG = 63 +pkg syscall (freebsd-arm), const ENEEDAUTH = 81 +pkg syscall (freebsd-arm), const ENETDOWN = 50 +pkg syscall (freebsd-arm), const ENETRESET = 52 +pkg syscall (freebsd-arm), const ENETUNREACH = 51 +pkg syscall (freebsd-arm), const ENFILE = 23 +pkg syscall (freebsd-arm), const ENOATTR = 87 +pkg syscall (freebsd-arm), const ENOBUFS = 55 +pkg syscall (freebsd-arm), const ENODEV = 19 +pkg syscall (freebsd-arm), const ENOEXEC = 8 +pkg syscall (freebsd-arm), const ENOLCK = 77 +pkg syscall (freebsd-arm), const ENOLINK = 91 +pkg syscall (freebsd-arm), const ENOMEM = 12 +pkg syscall (freebsd-arm), const ENOMSG = 83 +pkg syscall (freebsd-arm), const ENOPROTOOPT = 42 +pkg syscall (freebsd-arm), const ENOSPC = 28 +pkg syscall (freebsd-arm), const ENOSYS = 78 +pkg syscall (freebsd-arm), const ENOTBLK = 15 +pkg syscall (freebsd-arm), const ENOTCAPABLE = 93 +pkg syscall (freebsd-arm), const ENOTCONN = 57 +pkg syscall (freebsd-arm), const ENOTDIR = 20 +pkg syscall (freebsd-arm), const ENOTEMPTY = 66 +pkg syscall (freebsd-arm), const ENOTSOCK = 38 +pkg syscall (freebsd-arm), const ENOTSUP = 45 +pkg syscall (freebsd-arm), const ENOTTY = 25 +pkg syscall (freebsd-arm), const ENXIO = 6 +pkg syscall (freebsd-arm), const EOPNOTSUPP = 45 +pkg syscall (freebsd-arm), const EOVERFLOW = 84 +pkg syscall (freebsd-arm), const EPERM = 1 +pkg syscall (freebsd-arm), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-arm), const EPIPE = 32 +pkg syscall (freebsd-arm), const EPROCLIM = 67 +pkg syscall (freebsd-arm), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-arm), const EPROGMISMATCH = 75 +pkg syscall (freebsd-arm), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-arm), const EPROTO = 92 +pkg syscall (freebsd-arm), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-arm), const EPROTOTYPE = 41 +pkg syscall (freebsd-arm), const ERANGE = 34 +pkg syscall (freebsd-arm), const EREMOTE = 71 +pkg syscall (freebsd-arm), const EROFS = 30 +pkg syscall (freebsd-arm), const ERPCMISMATCH = 73 +pkg syscall (freebsd-arm), const ESHUTDOWN = 58 +pkg syscall (freebsd-arm), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-arm), const ESPIPE = 29 +pkg syscall (freebsd-arm), const ESRCH = 3 +pkg syscall (freebsd-arm), const ESTALE = 70 +pkg syscall (freebsd-arm), const ETIMEDOUT = 60 +pkg syscall (freebsd-arm), const ETOOMANYREFS = 59 +pkg syscall (freebsd-arm), const ETXTBSY = 26 +pkg syscall (freebsd-arm), const EUSERS = 68 +pkg syscall (freebsd-arm), const EVFILT_AIO = -3 +pkg syscall (freebsd-arm), const EVFILT_FS = -9 +pkg syscall (freebsd-arm), const EVFILT_LIO = -10 +pkg syscall (freebsd-arm), const EVFILT_PROC = -5 +pkg syscall (freebsd-arm), const EVFILT_READ = -1 +pkg syscall (freebsd-arm), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-arm), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-arm), const EVFILT_TIMER = -7 +pkg syscall (freebsd-arm), const EVFILT_USER = -11 +pkg syscall (freebsd-arm), const EVFILT_VNODE = -4 +pkg syscall (freebsd-arm), const EVFILT_WRITE = -2 +pkg syscall (freebsd-arm), const EV_ADD = 1 +pkg syscall (freebsd-arm), const EV_CLEAR = 32 +pkg syscall (freebsd-arm), const EV_DELETE = 2 +pkg syscall (freebsd-arm), const EV_DISABLE = 8 +pkg syscall (freebsd-arm), const EV_DISPATCH = 128 +pkg syscall (freebsd-arm), const EV_ENABLE = 4 +pkg syscall (freebsd-arm), const EV_EOF = 32768 +pkg syscall (freebsd-arm), const EV_ERROR = 16384 +pkg syscall (freebsd-arm), const EV_FLAG1 = 8192 +pkg syscall (freebsd-arm), const EV_ONESHOT = 16 +pkg syscall (freebsd-arm), const EV_RECEIPT = 64 +pkg syscall (freebsd-arm), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-arm), const EWOULDBLOCK = 35 +pkg syscall (freebsd-arm), const EXDEV = 18 +pkg syscall (freebsd-arm), const EXTA = 19200 +pkg syscall (freebsd-arm), const EXTB = 38400 +pkg syscall (freebsd-arm), const EXTPROC = 2048 +pkg syscall (freebsd-arm), const FD_CLOEXEC = 1 +pkg syscall (freebsd-arm), const FD_SETSIZE = 1024 +pkg syscall (freebsd-arm), const FLUSHO = 8388608 +pkg syscall (freebsd-arm), const F_CANCEL = 5 +pkg syscall (freebsd-arm), const F_DUP2FD = 10 +pkg syscall (freebsd-arm), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-arm), const F_DUPFD = 0 +pkg syscall (freebsd-arm), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-arm), const F_GETFD = 1 +pkg syscall (freebsd-arm), const F_GETFL = 3 +pkg syscall (freebsd-arm), const F_GETLK = 11 +pkg syscall (freebsd-arm), const F_GETOWN = 5 +pkg syscall (freebsd-arm), const F_OGETLK = 7 +pkg syscall (freebsd-arm), const F_OK = 0 +pkg syscall (freebsd-arm), const F_OSETLK = 8 +pkg syscall (freebsd-arm), const F_OSETLKW = 9 +pkg syscall (freebsd-arm), const F_RDAHEAD = 16 +pkg syscall (freebsd-arm), const F_RDLCK = 1 +pkg syscall (freebsd-arm), const F_READAHEAD = 15 +pkg syscall (freebsd-arm), const F_SETFD = 2 +pkg syscall (freebsd-arm), const F_SETFL = 4 +pkg syscall (freebsd-arm), const F_SETLK = 12 +pkg syscall (freebsd-arm), const F_SETLKW = 13 +pkg syscall (freebsd-arm), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-arm), const F_SETOWN = 6 +pkg syscall (freebsd-arm), const F_UNLCK = 2 +pkg syscall (freebsd-arm), const F_UNLCKSYS = 4 +pkg syscall (freebsd-arm), const F_WRLCK = 3 +pkg syscall (freebsd-arm), const HUPCL = 16384 +pkg syscall (freebsd-arm), const ICANON = 256 +pkg syscall (freebsd-arm), const ICRNL = 256 +pkg syscall (freebsd-arm), const IEXTEN = 1024 +pkg syscall (freebsd-arm), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-arm), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-arm), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-arm), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-arm), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-arm), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-arm), const IFF_DEBUG = 4 +pkg syscall (freebsd-arm), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-arm), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-arm), const IFF_DYING = 2097152 +pkg syscall (freebsd-arm), const IFF_LINK0 = 4096 +pkg syscall (freebsd-arm), const IFF_LINK1 = 8192 +pkg syscall (freebsd-arm), const IFF_LINK2 = 16384 +pkg syscall (freebsd-arm), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-arm), const IFF_MONITOR = 262144 +pkg syscall (freebsd-arm), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-arm), const IFF_NOARP = 128 +pkg syscall (freebsd-arm), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-arm), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-arm), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-arm), const IFF_PROMISC = 256 +pkg syscall (freebsd-arm), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-arm), const IFF_RUNNING = 64 +pkg syscall (freebsd-arm), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-arm), const IFF_SMART = 32 +pkg syscall (freebsd-arm), const IFF_STATICARP = 524288 +pkg syscall (freebsd-arm), const IFNAMSIZ = 16 +pkg syscall (freebsd-arm), const IFT_1822 = 2 +pkg syscall (freebsd-arm), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-arm), const IFT_AAL2 = 187 +pkg syscall (freebsd-arm), const IFT_AAL5 = 49 +pkg syscall (freebsd-arm), const IFT_ADSL = 94 +pkg syscall (freebsd-arm), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-arm), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-arm), const IFT_ARAP = 88 +pkg syscall (freebsd-arm), const IFT_ARCNET = 35 +pkg syscall (freebsd-arm), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-arm), const IFT_ASYNC = 84 +pkg syscall (freebsd-arm), const IFT_ATM = 37 +pkg syscall (freebsd-arm), const IFT_ATMDXI = 105 +pkg syscall (freebsd-arm), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-arm), const IFT_ATMIMA = 107 +pkg syscall (freebsd-arm), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-arm), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-arm), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-arm), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-arm), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-arm), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-arm), const IFT_BRIDGE = 209 +pkg syscall (freebsd-arm), const IFT_BSC = 83 +pkg syscall (freebsd-arm), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-arm), const IFT_CEPT = 19 +pkg syscall (freebsd-arm), const IFT_CES = 133 +pkg syscall (freebsd-arm), const IFT_CHANNEL = 70 +pkg syscall (freebsd-arm), const IFT_CNR = 85 +pkg syscall (freebsd-arm), const IFT_COFFEE = 132 +pkg syscall (freebsd-arm), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-arm), const IFT_DCN = 141 +pkg syscall (freebsd-arm), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-arm), const IFT_DLSW = 74 +pkg syscall (freebsd-arm), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-arm), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-arm), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-arm), const IFT_DS0 = 81 +pkg syscall (freebsd-arm), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-arm), const IFT_DS1FDL = 170 +pkg syscall (freebsd-arm), const IFT_DS3 = 30 +pkg syscall (freebsd-arm), const IFT_DTM = 140 +pkg syscall (freebsd-arm), const IFT_DVBASILN = 172 +pkg syscall (freebsd-arm), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-arm), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-arm), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-arm), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-arm), const IFT_ENC = 244 +pkg syscall (freebsd-arm), const IFT_EON = 25 +pkg syscall (freebsd-arm), const IFT_EPLRS = 87 +pkg syscall (freebsd-arm), const IFT_ESCON = 73 +pkg syscall (freebsd-arm), const IFT_ETHER = 6 +pkg syscall (freebsd-arm), const IFT_FAITH = 242 +pkg syscall (freebsd-arm), const IFT_FAST = 125 +pkg syscall (freebsd-arm), const IFT_FASTETHER = 62 +pkg syscall (freebsd-arm), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-arm), const IFT_FDDI = 15 +pkg syscall (freebsd-arm), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-arm), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-arm), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-arm), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-arm), const IFT_FRELAY = 32 +pkg syscall (freebsd-arm), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-arm), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-arm), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-arm), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-arm), const IFT_G703AT64K = 66 +pkg syscall (freebsd-arm), const IFT_GIF = 240 +pkg syscall (freebsd-arm), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-arm), const IFT_GR303IDT = 178 +pkg syscall (freebsd-arm), const IFT_GR303RDT = 177 +pkg syscall (freebsd-arm), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-arm), const IFT_H323PROXY = 165 +pkg syscall (freebsd-arm), const IFT_HDH1822 = 3 +pkg syscall (freebsd-arm), const IFT_HDLC = 118 +pkg syscall (freebsd-arm), const IFT_HDSL2 = 168 +pkg syscall (freebsd-arm), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-arm), const IFT_HIPPI = 47 +pkg syscall (freebsd-arm), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-arm), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-arm), const IFT_HSSI = 46 +pkg syscall (freebsd-arm), const IFT_HY = 14 +pkg syscall (freebsd-arm), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-arm), const IFT_IDSL = 154 +pkg syscall (freebsd-arm), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-arm), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-arm), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-arm), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-arm), const IFT_IFGSN = 145 +pkg syscall (freebsd-arm), const IFT_IMT = 190 +pkg syscall (freebsd-arm), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-arm), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-arm), const IFT_IP = 126 +pkg syscall (freebsd-arm), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-arm), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-arm), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-arm), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-arm), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-arm), const IFT_IPXIP = 249 +pkg syscall (freebsd-arm), const IFT_ISDN = 63 +pkg syscall (freebsd-arm), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-arm), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-arm), const IFT_ISDNS = 75 +pkg syscall (freebsd-arm), const IFT_ISDNU = 76 +pkg syscall (freebsd-arm), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-arm), const IFT_ISO88023 = 7 +pkg syscall (freebsd-arm), const IFT_ISO88024 = 8 +pkg syscall (freebsd-arm), const IFT_ISO88025 = 9 +pkg syscall (freebsd-arm), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-arm), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-arm), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-arm), const IFT_ISO88026 = 10 +pkg syscall (freebsd-arm), const IFT_ISUP = 179 +pkg syscall (freebsd-arm), const IFT_L2VLAN = 135 +pkg syscall (freebsd-arm), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-arm), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-arm), const IFT_LAPB = 16 +pkg syscall (freebsd-arm), const IFT_LAPD = 77 +pkg syscall (freebsd-arm), const IFT_LAPF = 119 +pkg syscall (freebsd-arm), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-arm), const IFT_LOOP = 24 +pkg syscall (freebsd-arm), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-arm), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-arm), const IFT_MIOX25 = 38 +pkg syscall (freebsd-arm), const IFT_MODEM = 48 +pkg syscall (freebsd-arm), const IFT_MPC = 113 +pkg syscall (freebsd-arm), const IFT_MPLS = 166 +pkg syscall (freebsd-arm), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-arm), const IFT_MSDSL = 143 +pkg syscall (freebsd-arm), const IFT_MVL = 191 +pkg syscall (freebsd-arm), const IFT_MYRINET = 99 +pkg syscall (freebsd-arm), const IFT_NFAS = 175 +pkg syscall (freebsd-arm), const IFT_NSIP = 27 +pkg syscall (freebsd-arm), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-arm), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-arm), const IFT_OTHER = 1 +pkg syscall (freebsd-arm), const IFT_P10 = 12 +pkg syscall (freebsd-arm), const IFT_P80 = 13 +pkg syscall (freebsd-arm), const IFT_PARA = 34 +pkg syscall (freebsd-arm), const IFT_PFLOG = 246 +pkg syscall (freebsd-arm), const IFT_PFSYNC = 247 +pkg syscall (freebsd-arm), const IFT_PLC = 174 +pkg syscall (freebsd-arm), const IFT_POS = 171 +pkg syscall (freebsd-arm), const IFT_PPP = 23 +pkg syscall (freebsd-arm), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-arm), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-arm), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-arm), const IFT_PROPMUX = 54 +pkg syscall (freebsd-arm), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-arm), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-arm), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-arm), const IFT_PVC = 241 +pkg syscall (freebsd-arm), const IFT_QLLC = 68 +pkg syscall (freebsd-arm), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-arm), const IFT_RADSL = 95 +pkg syscall (freebsd-arm), const IFT_REACHDSL = 192 +pkg syscall (freebsd-arm), const IFT_RFC1483 = 159 +pkg syscall (freebsd-arm), const IFT_RS232 = 33 +pkg syscall (freebsd-arm), const IFT_RSRB = 79 +pkg syscall (freebsd-arm), const IFT_SDLC = 17 +pkg syscall (freebsd-arm), const IFT_SDSL = 96 +pkg syscall (freebsd-arm), const IFT_SHDSL = 169 +pkg syscall (freebsd-arm), const IFT_SIP = 31 +pkg syscall (freebsd-arm), const IFT_SLIP = 28 +pkg syscall (freebsd-arm), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-arm), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-arm), const IFT_SONET = 39 +pkg syscall (freebsd-arm), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-arm), const IFT_SONETPATH = 50 +pkg syscall (freebsd-arm), const IFT_SONETVT = 51 +pkg syscall (freebsd-arm), const IFT_SRP = 151 +pkg syscall (freebsd-arm), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-arm), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-arm), const IFT_STARLAN = 11 +pkg syscall (freebsd-arm), const IFT_STF = 215 +pkg syscall (freebsd-arm), const IFT_T1 = 18 +pkg syscall (freebsd-arm), const IFT_TDLC = 116 +pkg syscall (freebsd-arm), const IFT_TERMPAD = 91 +pkg syscall (freebsd-arm), const IFT_TR008 = 176 +pkg syscall (freebsd-arm), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-arm), const IFT_TUNNEL = 131 +pkg syscall (freebsd-arm), const IFT_ULTRA = 29 +pkg syscall (freebsd-arm), const IFT_USB = 160 +pkg syscall (freebsd-arm), const IFT_V11 = 64 +pkg syscall (freebsd-arm), const IFT_V35 = 45 +pkg syscall (freebsd-arm), const IFT_V36 = 65 +pkg syscall (freebsd-arm), const IFT_V37 = 120 +pkg syscall (freebsd-arm), const IFT_VDSL = 97 +pkg syscall (freebsd-arm), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-arm), const IFT_VOICEEM = 100 +pkg syscall (freebsd-arm), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-arm), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-arm), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-arm), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-arm), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-arm), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-arm), const IFT_X213 = 93 +pkg syscall (freebsd-arm), const IFT_X25 = 5 +pkg syscall (freebsd-arm), const IFT_X25DDN = 4 +pkg syscall (freebsd-arm), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-arm), const IFT_X25MLP = 121 +pkg syscall (freebsd-arm), const IFT_X25PLE = 40 +pkg syscall (freebsd-arm), const IFT_XETHER = 26 +pkg syscall (freebsd-arm), const IGNBRK = 1 +pkg syscall (freebsd-arm), const IGNCR = 128 +pkg syscall (freebsd-arm), const IGNPAR = 4 +pkg syscall (freebsd-arm), const IMAXBEL = 8192 +pkg syscall (freebsd-arm), const INLCR = 64 +pkg syscall (freebsd-arm), const INPCK = 16 +pkg syscall (freebsd-arm), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-arm), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-arm), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-arm), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-arm), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-arm), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-arm), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-arm), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-arm), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-arm), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-arm), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-arm), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-arm), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-arm), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-arm), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-arm), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-arm), const IPPROTO_3PC = 34 +pkg syscall (freebsd-arm), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-arm), const IPPROTO_AH = 51 +pkg syscall (freebsd-arm), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-arm), const IPPROTO_APES = 99 +pkg syscall (freebsd-arm), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-arm), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-arm), const IPPROTO_BHA = 49 +pkg syscall (freebsd-arm), const IPPROTO_BLT = 30 +pkg syscall (freebsd-arm), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-arm), const IPPROTO_CARP = 112 +pkg syscall (freebsd-arm), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-arm), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-arm), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-arm), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-arm), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-arm), const IPPROTO_DDP = 37 +pkg syscall (freebsd-arm), const IPPROTO_DGP = 86 +pkg syscall (freebsd-arm), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-arm), const IPPROTO_DONE = 257 +pkg syscall (freebsd-arm), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-arm), const IPPROTO_EGP = 8 +pkg syscall (freebsd-arm), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-arm), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-arm), const IPPROTO_EON = 80 +pkg syscall (freebsd-arm), const IPPROTO_ESP = 50 +pkg syscall (freebsd-arm), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-arm), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-arm), const IPPROTO_GGP = 3 +pkg syscall (freebsd-arm), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-arm), const IPPROTO_GRE = 47 +pkg syscall (freebsd-arm), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-arm), const IPPROTO_HMP = 20 +pkg syscall (freebsd-arm), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-arm), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-arm), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-arm), const IPPROTO_IDP = 22 +pkg syscall (freebsd-arm), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-arm), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-arm), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-arm), const IPPROTO_IGP = 85 +pkg syscall (freebsd-arm), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-arm), const IPPROTO_IL = 40 +pkg syscall (freebsd-arm), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-arm), const IPPROTO_INP = 32 +pkg syscall (freebsd-arm), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-arm), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-arm), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-arm), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-arm), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-arm), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-arm), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-arm), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-arm), const IPPROTO_LARP = 91 +pkg syscall (freebsd-arm), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-arm), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-arm), const IPPROTO_MAX = 256 +pkg syscall (freebsd-arm), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-arm), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-arm), const IPPROTO_MH = 135 +pkg syscall (freebsd-arm), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-arm), const IPPROTO_MICP = 95 +pkg syscall (freebsd-arm), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-arm), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-arm), const IPPROTO_MTP = 92 +pkg syscall (freebsd-arm), const IPPROTO_MUX = 18 +pkg syscall (freebsd-arm), const IPPROTO_ND = 77 +pkg syscall (freebsd-arm), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-arm), const IPPROTO_NONE = 59 +pkg syscall (freebsd-arm), const IPPROTO_NSP = 31 +pkg syscall (freebsd-arm), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-arm), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-arm), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-arm), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-arm), const IPPROTO_PGM = 113 +pkg syscall (freebsd-arm), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-arm), const IPPROTO_PIM = 103 +pkg syscall (freebsd-arm), const IPPROTO_PRM = 21 +pkg syscall (freebsd-arm), const IPPROTO_PUP = 12 +pkg syscall (freebsd-arm), const IPPROTO_PVP = 75 +pkg syscall (freebsd-arm), const IPPROTO_RAW = 255 +pkg syscall (freebsd-arm), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-arm), const IPPROTO_RDP = 27 +pkg syscall (freebsd-arm), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-arm), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-arm), const IPPROTO_RVD = 66 +pkg syscall (freebsd-arm), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-arm), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-arm), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-arm), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-arm), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-arm), const IPPROTO_SEND = 259 +pkg syscall (freebsd-arm), const IPPROTO_SEP = 33 +pkg syscall (freebsd-arm), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-arm), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-arm), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-arm), const IPPROTO_ST = 7 +pkg syscall (freebsd-arm), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-arm), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-arm), const IPPROTO_TCF = 87 +pkg syscall (freebsd-arm), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-arm), const IPPROTO_TP = 29 +pkg syscall (freebsd-arm), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-arm), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-arm), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-arm), const IPPROTO_TTP = 84 +pkg syscall (freebsd-arm), const IPPROTO_VINES = 83 +pkg syscall (freebsd-arm), const IPPROTO_VISA = 70 +pkg syscall (freebsd-arm), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-arm), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-arm), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-arm), const IPPROTO_WSN = 74 +pkg syscall (freebsd-arm), const IPPROTO_XNET = 15 +pkg syscall (freebsd-arm), const IPPROTO_XTP = 36 +pkg syscall (freebsd-arm), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-arm), const IPV6_BINDANY = 64 +pkg syscall (freebsd-arm), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-arm), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-arm), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-arm), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-arm), const IPV6_FAITH = 29 +pkg syscall (freebsd-arm), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-arm), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-arm), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-arm), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-arm), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-arm), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-arm), const IPV6_FW_GET = 34 +pkg syscall (freebsd-arm), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-arm), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-arm), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-arm), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-arm), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-arm), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-arm), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-arm), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-arm), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-arm), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-arm), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm), const IPV6_MMTU = 1280 +pkg syscall (freebsd-arm), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-arm), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-arm), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-arm), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-arm), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-arm), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-arm), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-arm), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-arm), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-arm), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-arm), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-arm), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-arm), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-arm), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-arm), const IPV6_RTHDR = 51 +pkg syscall (freebsd-arm), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-arm), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-arm), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-arm), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-arm), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-arm), const IPV6_TCLASS = 61 +pkg syscall (freebsd-arm), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-arm), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-arm), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-arm), const IPV6_VERSION = 96 +pkg syscall (freebsd-arm), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-arm), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-arm), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-arm), const IP_BINDANY = 24 +pkg syscall (freebsd-arm), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-arm), const IP_DF = 16384 +pkg syscall (freebsd-arm), const IP_DONTFRAG = 67 +pkg syscall (freebsd-arm), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-arm), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-arm), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-arm), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-arm), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-arm), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-arm), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-arm), const IP_FAITH = 22 +pkg syscall (freebsd-arm), const IP_FW3 = 48 +pkg syscall (freebsd-arm), const IP_FW_ADD = 50 +pkg syscall (freebsd-arm), const IP_FW_DEL = 51 +pkg syscall (freebsd-arm), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-arm), const IP_FW_GET = 54 +pkg syscall (freebsd-arm), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-arm), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-arm), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-arm), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-arm), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-arm), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-arm), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-arm), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-arm), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-arm), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-arm), const IP_FW_ZERO = 53 +pkg syscall (freebsd-arm), const IP_HDRINCL = 2 +pkg syscall (freebsd-arm), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-arm), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-arm), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-arm), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-arm), const IP_MF = 8192 +pkg syscall (freebsd-arm), const IP_MINTTL = 66 +pkg syscall (freebsd-arm), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm), const IP_MSFILTER = 74 +pkg syscall (freebsd-arm), const IP_MSS = 576 +pkg syscall (freebsd-arm), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-arm), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-arm), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-arm), const IP_OFFMASK = 8191 +pkg syscall (freebsd-arm), const IP_ONESBCAST = 23 +pkg syscall (freebsd-arm), const IP_OPTIONS = 1 +pkg syscall (freebsd-arm), const IP_PORTRANGE = 19 +pkg syscall (freebsd-arm), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-arm), const IP_RECVIF = 20 +pkg syscall (freebsd-arm), const IP_RECVOPTS = 5 +pkg syscall (freebsd-arm), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-arm), const IP_RECVTOS = 68 +pkg syscall (freebsd-arm), const IP_RECVTTL = 65 +pkg syscall (freebsd-arm), const IP_RETOPTS = 8 +pkg syscall (freebsd-arm), const IP_RF = 32768 +pkg syscall (freebsd-arm), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-arm), const IP_RSVP_ON = 15 +pkg syscall (freebsd-arm), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-arm), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-arm), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-arm), const IP_TOS = 3 +pkg syscall (freebsd-arm), const IP_TTL = 4 +pkg syscall (freebsd-arm), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-arm), const ISIG = 128 +pkg syscall (freebsd-arm), const ISTRIP = 32 +pkg syscall (freebsd-arm), const IXANY = 2048 +pkg syscall (freebsd-arm), const IXOFF = 1024 +pkg syscall (freebsd-arm), const IXON = 512 +pkg syscall (freebsd-arm), const ImplementsGetwd = false +pkg syscall (freebsd-arm), const LOCK_EX = 2 +pkg syscall (freebsd-arm), const LOCK_NB = 4 +pkg syscall (freebsd-arm), const LOCK_SH = 1 +pkg syscall (freebsd-arm), const LOCK_UN = 8 +pkg syscall (freebsd-arm), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-arm), const MADV_CORE = 9 +pkg syscall (freebsd-arm), const MADV_DONTNEED = 4 +pkg syscall (freebsd-arm), const MADV_FREE = 5 +pkg syscall (freebsd-arm), const MADV_NOCORE = 8 +pkg syscall (freebsd-arm), const MADV_NORMAL = 0 +pkg syscall (freebsd-arm), const MADV_NOSYNC = 6 +pkg syscall (freebsd-arm), const MADV_PROTECT = 10 +pkg syscall (freebsd-arm), const MADV_RANDOM = 1 +pkg syscall (freebsd-arm), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-arm), const MADV_WILLNEED = 3 +pkg syscall (freebsd-arm), const MAP_ANON = 4096 +pkg syscall (freebsd-arm), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-arm), const MAP_COPY = 2 +pkg syscall (freebsd-arm), const MAP_FILE = 0 +pkg syscall (freebsd-arm), const MAP_FIXED = 16 +pkg syscall (freebsd-arm), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-arm), const MAP_NOCORE = 131072 +pkg syscall (freebsd-arm), const MAP_NORESERVE = 64 +pkg syscall (freebsd-arm), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-arm), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-arm), const MAP_PRIVATE = 2 +pkg syscall (freebsd-arm), const MAP_RENAME = 32 +pkg syscall (freebsd-arm), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-arm), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-arm), const MAP_SHARED = 1 +pkg syscall (freebsd-arm), const MAP_STACK = 1024 +pkg syscall (freebsd-arm), const MCL_CURRENT = 1 +pkg syscall (freebsd-arm), const MCL_FUTURE = 2 +pkg syscall (freebsd-arm), const MSG_COMPAT = 32768 +pkg syscall (freebsd-arm), const MSG_CTRUNC = 32 +pkg syscall (freebsd-arm), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-arm), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-arm), const MSG_EOF = 256 +pkg syscall (freebsd-arm), const MSG_EOR = 8 +pkg syscall (freebsd-arm), const MSG_NBIO = 16384 +pkg syscall (freebsd-arm), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-arm), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-arm), const MSG_OOB = 1 +pkg syscall (freebsd-arm), const MSG_PEEK = 2 +pkg syscall (freebsd-arm), const MSG_TRUNC = 16 +pkg syscall (freebsd-arm), const MSG_WAITALL = 64 +pkg syscall (freebsd-arm), const MS_ASYNC = 1 +pkg syscall (freebsd-arm), const MS_INVALIDATE = 2 +pkg syscall (freebsd-arm), const MS_SYNC = 0 +pkg syscall (freebsd-arm), const NET_RT_DUMP = 1 +pkg syscall (freebsd-arm), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-arm), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-arm), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-arm), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-arm), const NET_RT_MAXID = 6 +pkg syscall (freebsd-arm), const NOFLSH = 2147483648 +pkg syscall (freebsd-arm), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-arm), const NOTE_CHILD = 4 +pkg syscall (freebsd-arm), const NOTE_DELETE = 1 +pkg syscall (freebsd-arm), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-arm), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-arm), const NOTE_EXTEND = 4 +pkg syscall (freebsd-arm), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-arm), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-arm), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-arm), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-arm), const NOTE_FFNOP = 0 +pkg syscall (freebsd-arm), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-arm), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-arm), const NOTE_LINK = 16 +pkg syscall (freebsd-arm), const NOTE_LOWAT = 1 +pkg syscall (freebsd-arm), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-arm), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-arm), const NOTE_RENAME = 32 +pkg syscall (freebsd-arm), const NOTE_REVOKE = 64 +pkg syscall (freebsd-arm), const NOTE_TRACK = 1 +pkg syscall (freebsd-arm), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-arm), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-arm), const NOTE_WRITE = 2 +pkg syscall (freebsd-arm), const OCRNL = 16 +pkg syscall (freebsd-arm), const ONLCR = 2 +pkg syscall (freebsd-arm), const ONLRET = 64 +pkg syscall (freebsd-arm), const ONOCR = 32 +pkg syscall (freebsd-arm), const ONOEOT = 8 +pkg syscall (freebsd-arm), const OPOST = 1 +pkg syscall (freebsd-arm), const O_ACCMODE = 3 +pkg syscall (freebsd-arm), const O_APPEND = 8 +pkg syscall (freebsd-arm), const O_ASYNC = 64 +pkg syscall (freebsd-arm), const O_CLOEXEC = 0 +pkg syscall (freebsd-arm), const O_CREAT = 512 +pkg syscall (freebsd-arm), const O_DIRECT = 65536 +pkg syscall (freebsd-arm), const O_DIRECTORY = 131072 +pkg syscall (freebsd-arm), const O_EXCL = 2048 +pkg syscall (freebsd-arm), const O_EXEC = 262144 +pkg syscall (freebsd-arm), const O_EXLOCK = 32 +pkg syscall (freebsd-arm), const O_FSYNC = 128 +pkg syscall (freebsd-arm), const O_NDELAY = 4 +pkg syscall (freebsd-arm), const O_NOCTTY = 32768 +pkg syscall (freebsd-arm), const O_NOFOLLOW = 256 +pkg syscall (freebsd-arm), const O_NONBLOCK = 4 +pkg syscall (freebsd-arm), const O_SHLOCK = 16 +pkg syscall (freebsd-arm), const O_SYNC = 128 +pkg syscall (freebsd-arm), const O_TRUNC = 1024 +pkg syscall (freebsd-arm), const O_TTY_INIT = 524288 +pkg syscall (freebsd-arm), const PARENB = 4096 +pkg syscall (freebsd-arm), const PARMRK = 8 +pkg syscall (freebsd-arm), const PARODD = 8192 +pkg syscall (freebsd-arm), const PENDIN = 536870912 +pkg syscall (freebsd-arm), const PROT_EXEC = 4 +pkg syscall (freebsd-arm), const PROT_NONE = 0 +pkg syscall (freebsd-arm), const PROT_READ = 1 +pkg syscall (freebsd-arm), const PROT_WRITE = 2 +pkg syscall (freebsd-arm), const PTRACE_CONT = 7 +pkg syscall (freebsd-arm), const PTRACE_KILL = 8 +pkg syscall (freebsd-arm), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-arm), const RLIMIT_AS = 10 +pkg syscall (freebsd-arm), const RLIMIT_CORE = 4 +pkg syscall (freebsd-arm), const RLIMIT_CPU = 0 +pkg syscall (freebsd-arm), const RLIMIT_DATA = 2 +pkg syscall (freebsd-arm), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-arm), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-arm), const RLIMIT_STACK = 3 +pkg syscall (freebsd-arm), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-arm), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-arm), const RTAX_BRD = 7 +pkg syscall (freebsd-arm), const RTAX_DST = 0 +pkg syscall (freebsd-arm), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-arm), const RTAX_GENMASK = 3 +pkg syscall (freebsd-arm), const RTAX_IFA = 5 +pkg syscall (freebsd-arm), const RTAX_IFP = 4 +pkg syscall (freebsd-arm), const RTAX_MAX = 8 +pkg syscall (freebsd-arm), const RTAX_NETMASK = 2 +pkg syscall (freebsd-arm), const RTA_AUTHOR = 64 +pkg syscall (freebsd-arm), const RTA_BRD = 128 +pkg syscall (freebsd-arm), const RTA_DST = 1 +pkg syscall (freebsd-arm), const RTA_GATEWAY = 2 +pkg syscall (freebsd-arm), const RTA_GENMASK = 8 +pkg syscall (freebsd-arm), const RTA_IFA = 32 +pkg syscall (freebsd-arm), const RTA_IFP = 16 +pkg syscall (freebsd-arm), const RTA_NETMASK = 4 +pkg syscall (freebsd-arm), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-arm), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-arm), const RTF_DONE = 64 +pkg syscall (freebsd-arm), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-arm), const RTF_FMASK = 268752904 +pkg syscall (freebsd-arm), const RTF_GATEWAY = 2 +pkg syscall (freebsd-arm), const RTF_HOST = 4 +pkg syscall (freebsd-arm), const RTF_LLDATA = 1024 +pkg syscall (freebsd-arm), const RTF_LLINFO = 1024 +pkg syscall (freebsd-arm), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-arm), const RTF_MODIFIED = 32 +pkg syscall (freebsd-arm), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-arm), const RTF_PINNED = 1048576 +pkg syscall (freebsd-arm), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-arm), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-arm), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-arm), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-arm), const RTF_REJECT = 8 +pkg syscall (freebsd-arm), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-arm), const RTF_STATIC = 2048 +pkg syscall (freebsd-arm), const RTF_STICKY = 268435456 +pkg syscall (freebsd-arm), const RTF_UP = 1 +pkg syscall (freebsd-arm), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-arm), const RTM_ADD = 1 +pkg syscall (freebsd-arm), const RTM_CHANGE = 3 +pkg syscall (freebsd-arm), const RTM_DELADDR = 13 +pkg syscall (freebsd-arm), const RTM_DELETE = 2 +pkg syscall (freebsd-arm), const RTM_DELMADDR = 16 +pkg syscall (freebsd-arm), const RTM_GET = 4 +pkg syscall (freebsd-arm), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-arm), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-arm), const RTM_IFINFO = 14 +pkg syscall (freebsd-arm), const RTM_LOCK = 8 +pkg syscall (freebsd-arm), const RTM_LOSING = 5 +pkg syscall (freebsd-arm), const RTM_MISS = 7 +pkg syscall (freebsd-arm), const RTM_NEWADDR = 12 +pkg syscall (freebsd-arm), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-arm), const RTM_OLDADD = 9 +pkg syscall (freebsd-arm), const RTM_OLDDEL = 10 +pkg syscall (freebsd-arm), const RTM_REDIRECT = 6 +pkg syscall (freebsd-arm), const RTM_RESOLVE = 11 +pkg syscall (freebsd-arm), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-arm), const RTM_VERSION = 5 +pkg syscall (freebsd-arm), const RTV_EXPIRE = 4 +pkg syscall (freebsd-arm), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-arm), const RTV_MTU = 1 +pkg syscall (freebsd-arm), const RTV_RPIPE = 8 +pkg syscall (freebsd-arm), const RTV_RTT = 64 +pkg syscall (freebsd-arm), const RTV_RTTVAR = 128 +pkg syscall (freebsd-arm), const RTV_SPIPE = 16 +pkg syscall (freebsd-arm), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-arm), const RTV_WEIGHT = 256 +pkg syscall (freebsd-arm), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-arm), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-arm), const RT_NORTREF = 2 +pkg syscall (freebsd-arm), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-arm), const RUSAGE_SELF = 0 +pkg syscall (freebsd-arm), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-arm), const SCM_BINTIME = 4 +pkg syscall (freebsd-arm), const SCM_CREDS = 3 +pkg syscall (freebsd-arm), const SCM_RIGHTS = 1 +pkg syscall (freebsd-arm), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-arm), const SIGBUS = 10 +pkg syscall (freebsd-arm), const SIGCHLD = 20 +pkg syscall (freebsd-arm), const SIGCONT = 19 +pkg syscall (freebsd-arm), const SIGEMT = 7 +pkg syscall (freebsd-arm), const SIGINFO = 29 +pkg syscall (freebsd-arm), const SIGIO = 23 +pkg syscall (freebsd-arm), const SIGIOT = 6 +pkg syscall (freebsd-arm), const SIGLIBRT = 33 +pkg syscall (freebsd-arm), const SIGLWP = 32 +pkg syscall (freebsd-arm), const SIGPROF = 27 +pkg syscall (freebsd-arm), const SIGSTOP = 17 +pkg syscall (freebsd-arm), const SIGSYS = 12 +pkg syscall (freebsd-arm), const SIGTHR = 32 +pkg syscall (freebsd-arm), const SIGTSTP = 18 +pkg syscall (freebsd-arm), const SIGTTIN = 21 +pkg syscall (freebsd-arm), const SIGTTOU = 22 +pkg syscall (freebsd-arm), const SIGURG = 16 +pkg syscall (freebsd-arm), const SIGUSR1 = 30 +pkg syscall (freebsd-arm), const SIGUSR2 = 31 +pkg syscall (freebsd-arm), const SIGVTALRM = 26 +pkg syscall (freebsd-arm), const SIGWINCH = 28 +pkg syscall (freebsd-arm), const SIGXCPU = 24 +pkg syscall (freebsd-arm), const SIGXFSZ = 25 +pkg syscall (freebsd-arm), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-arm), const SIOCADDRT = 2150658570 +pkg syscall (freebsd-arm), const SIOCAIFADDR = 2151967019 +pkg syscall (freebsd-arm), const SIOCAIFGROUP = 2149869959 +pkg syscall (freebsd-arm), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-arm), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-arm), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-arm), const SIOCDELRT = 2150658571 +pkg syscall (freebsd-arm), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-arm), const SIOCDIFGROUP = 2149869961 +pkg syscall (freebsd-arm), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-arm), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-arm), const SIOCGDRVSPEC = 3223087483 +pkg syscall (freebsd-arm), const SIOCGETSGCNT = 3222565392 +pkg syscall (freebsd-arm), const SIOCGETVIFCNT = 3222565391 +pkg syscall (freebsd-arm), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-arm), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-arm), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-arm), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-arm), const SIOCGIFCONF = 3221776676 +pkg syscall (freebsd-arm), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-arm), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-arm), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-arm), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-arm), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-arm), const SIOCGIFGMEMB = 3223611786 +pkg syscall (freebsd-arm), const SIOCGIFGROUP = 3223611784 +pkg syscall (freebsd-arm), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-arm), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-arm), const SIOCGIFMEDIA = 3223873848 +pkg syscall (freebsd-arm), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-arm), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-arm), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-arm), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-arm), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-arm), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-arm), const SIOCGIFSTATUS = 3274991931 +pkg syscall (freebsd-arm), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-arm), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-arm), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-arm), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-arm), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-arm), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-arm), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-arm), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-arm), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-arm), const SIOCIFGCLONERS = 3222038904 +pkg syscall (freebsd-arm), const SIOCSDRVSPEC = 2149345659 +pkg syscall (freebsd-arm), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-arm), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-arm), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-arm), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-arm), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-arm), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-arm), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-arm), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-arm), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-arm), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-arm), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-arm), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-arm), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-arm), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-arm), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-arm), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-arm), const SIOCSIFPHYADDR = 2151967046 +pkg syscall (freebsd-arm), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-arm), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-arm), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-arm), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-arm), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-arm), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-arm), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-arm), const SOCK_RDM = 4 +pkg syscall (freebsd-arm), const SOL_SOCKET = 65535 +pkg syscall (freebsd-arm), const SOMAXCONN = 128 +pkg syscall (freebsd-arm), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-arm), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-arm), const SO_BINTIME = 8192 +pkg syscall (freebsd-arm), const SO_BROADCAST = 32 +pkg syscall (freebsd-arm), const SO_DEBUG = 1 +pkg syscall (freebsd-arm), const SO_DONTROUTE = 16 +pkg syscall (freebsd-arm), const SO_ERROR = 4103 +pkg syscall (freebsd-arm), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-arm), const SO_LABEL = 4105 +pkg syscall (freebsd-arm), const SO_LINGER = 128 +pkg syscall (freebsd-arm), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-arm), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-arm), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-arm), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-arm), const SO_NO_DDP = 32768 +pkg syscall (freebsd-arm), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-arm), const SO_OOBINLINE = 256 +pkg syscall (freebsd-arm), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-arm), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-arm), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-arm), const SO_RCVBUF = 4098 +pkg syscall (freebsd-arm), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-arm), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-arm), const SO_REUSEADDR = 4 +pkg syscall (freebsd-arm), const SO_REUSEPORT = 512 +pkg syscall (freebsd-arm), const SO_SETFIB = 4116 +pkg syscall (freebsd-arm), const SO_SNDBUF = 4097 +pkg syscall (freebsd-arm), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-arm), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-arm), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-arm), const SO_TYPE = 4104 +pkg syscall (freebsd-arm), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-arm), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-arm), const SYS_ABORT2 = 463 +pkg syscall (freebsd-arm), const SYS_ACCEPT = 30 +pkg syscall (freebsd-arm), const SYS_ACCESS = 33 +pkg syscall (freebsd-arm), const SYS_ACCT = 51 +pkg syscall (freebsd-arm), const SYS_ADJTIME = 140 +pkg syscall (freebsd-arm), const SYS_AUDIT = 445 +pkg syscall (freebsd-arm), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-arm), const SYS_AUDITON = 446 +pkg syscall (freebsd-arm), const SYS_BIND = 104 +pkg syscall (freebsd-arm), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm), const SYS_CHDIR = 12 +pkg syscall (freebsd-arm), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-arm), const SYS_CHMOD = 15 +pkg syscall (freebsd-arm), const SYS_CHOWN = 16 +pkg syscall (freebsd-arm), const SYS_CHROOT = 61 +pkg syscall (freebsd-arm), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-arm), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-arm), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-arm), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-arm), const SYS_CLOSE = 6 +pkg syscall (freebsd-arm), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-arm), const SYS_CONNECT = 98 +pkg syscall (freebsd-arm), const SYS_CPUSET = 484 +pkg syscall (freebsd-arm), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-arm), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-arm), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-arm), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-arm), const SYS_DUP = 41 +pkg syscall (freebsd-arm), const SYS_DUP2 = 90 +pkg syscall (freebsd-arm), const SYS_EACCESS = 376 +pkg syscall (freebsd-arm), const SYS_EXECVE = 59 +pkg syscall (freebsd-arm), const SYS_EXIT = 1 +pkg syscall (freebsd-arm), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-arm), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-arm), const SYS_FCHDIR = 13 +pkg syscall (freebsd-arm), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-arm), const SYS_FCHMOD = 124 +pkg syscall (freebsd-arm), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-arm), const SYS_FCHOWN = 123 +pkg syscall (freebsd-arm), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-arm), const SYS_FCNTL = 92 +pkg syscall (freebsd-arm), const SYS_FEXECVE = 492 +pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-arm), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-arm), const SYS_FHOPEN = 298 +pkg syscall (freebsd-arm), const SYS_FHSTAT = 299 +pkg syscall (freebsd-arm), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-arm), const SYS_FLOCK = 131 +pkg syscall (freebsd-arm), const SYS_FORK = 2 +pkg syscall (freebsd-arm), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-arm), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-arm), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm), const SYS_FSYNC = 95 +pkg syscall (freebsd-arm), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-arm), const SYS_FUTIMES = 206 +pkg syscall (freebsd-arm), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-arm), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-arm), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-arm), const SYS_GETAUID = 447 +pkg syscall (freebsd-arm), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-arm), const SYS_GETDENTS = 272 +pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-arm), const SYS_GETEGID = 43 +pkg syscall (freebsd-arm), const SYS_GETEUID = 25 +pkg syscall (freebsd-arm), const SYS_GETFH = 161 +pkg syscall (freebsd-arm), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm), const SYS_GETGID = 47 +pkg syscall (freebsd-arm), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-arm), const SYS_GETITIMER = 86 +pkg syscall (freebsd-arm), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-arm), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-arm), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-arm), const SYS_GETPGID = 207 +pkg syscall (freebsd-arm), const SYS_GETPGRP = 81 +pkg syscall (freebsd-arm), const SYS_GETPID = 20 +pkg syscall (freebsd-arm), const SYS_GETPPID = 39 +pkg syscall (freebsd-arm), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-arm), const SYS_GETRESGID = 361 +pkg syscall (freebsd-arm), const SYS_GETRESUID = 360 +pkg syscall (freebsd-arm), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-arm), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-arm), const SYS_GETSID = 310 +pkg syscall (freebsd-arm), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-arm), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-arm), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-arm), const SYS_GETUID = 24 +pkg syscall (freebsd-arm), const SYS_IOCTL = 54 +pkg syscall (freebsd-arm), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-arm), const SYS_JAIL = 338 +pkg syscall (freebsd-arm), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-arm), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-arm), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-arm), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-arm), const SYS_KENV = 390 +pkg syscall (freebsd-arm), const SYS_KEVENT = 363 +pkg syscall (freebsd-arm), const SYS_KILL = 37 +pkg syscall (freebsd-arm), const SYS_KLDFIND = 306 +pkg syscall (freebsd-arm), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-arm), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-arm), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-arm), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-arm), const SYS_KLDSYM = 337 +pkg syscall (freebsd-arm), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-arm), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-arm), const SYS_KQUEUE = 362 +pkg syscall (freebsd-arm), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-arm), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-arm), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-arm), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-arm), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-arm), const SYS_KTRACE = 45 +pkg syscall (freebsd-arm), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-arm), const SYS_LCHMOD = 274 +pkg syscall (freebsd-arm), const SYS_LCHOWN = 254 +pkg syscall (freebsd-arm), const SYS_LGETFH = 160 +pkg syscall (freebsd-arm), const SYS_LINK = 9 +pkg syscall (freebsd-arm), const SYS_LINKAT = 495 +pkg syscall (freebsd-arm), const SYS_LISTEN = 106 +pkg syscall (freebsd-arm), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-arm), const SYS_LSEEK = 478 +pkg syscall (freebsd-arm), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm), const SYS_LUTIMES = 276 +pkg syscall (freebsd-arm), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-arm), const SYS_MADVISE = 75 +pkg syscall (freebsd-arm), const SYS_MINCORE = 78 +pkg syscall (freebsd-arm), const SYS_MINHERIT = 250 +pkg syscall (freebsd-arm), const SYS_MKDIR = 136 +pkg syscall (freebsd-arm), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-arm), const SYS_MKFIFO = 132 +pkg syscall (freebsd-arm), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-arm), const SYS_MKNOD = 14 +pkg syscall (freebsd-arm), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm), const SYS_MLOCK = 203 +pkg syscall (freebsd-arm), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-arm), const SYS_MMAP = 477 +pkg syscall (freebsd-arm), const SYS_MODFIND = 303 +pkg syscall (freebsd-arm), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-arm), const SYS_MODNEXT = 300 +pkg syscall (freebsd-arm), const SYS_MODSTAT = 301 +pkg syscall (freebsd-arm), const SYS_MOUNT = 21 +pkg syscall (freebsd-arm), const SYS_MPROTECT = 74 +pkg syscall (freebsd-arm), const SYS_MSYNC = 65 +pkg syscall (freebsd-arm), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-arm), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-arm), const SYS_MUNMAP = 73 +pkg syscall (freebsd-arm), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-arm), const SYS_NFSTAT = 279 +pkg syscall (freebsd-arm), const SYS_NLSTAT = 280 +pkg syscall (freebsd-arm), const SYS_NMOUNT = 378 +pkg syscall (freebsd-arm), const SYS_NSTAT = 278 +pkg syscall (freebsd-arm), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-arm), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-arm), const SYS_OBREAK = 17 +pkg syscall (freebsd-arm), const SYS_OPEN = 5 +pkg syscall (freebsd-arm), const SYS_OPENAT = 499 +pkg syscall (freebsd-arm), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-arm), const SYS_OVADVISE = 72 +pkg syscall (freebsd-arm), const SYS_PATHCONF = 191 +pkg syscall (freebsd-arm), const SYS_PDFORK = 518 +pkg syscall (freebsd-arm), const SYS_PDGETPID = 520 +pkg syscall (freebsd-arm), const SYS_PDKILL = 519 +pkg syscall (freebsd-arm), const SYS_PIPE = 42 +pkg syscall (freebsd-arm), const SYS_POLL = 209 +pkg syscall (freebsd-arm), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-arm), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-arm), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-arm), const SYS_PREAD = 475 +pkg syscall (freebsd-arm), const SYS_PREADV = 289 +pkg syscall (freebsd-arm), const SYS_PROFIL = 44 +pkg syscall (freebsd-arm), const SYS_PSELECT = 522 +pkg syscall (freebsd-arm), const SYS_PTRACE = 26 +pkg syscall (freebsd-arm), const SYS_PWRITE = 476 +pkg syscall (freebsd-arm), const SYS_PWRITEV = 290 +pkg syscall (freebsd-arm), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-arm), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-arm), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-arm), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-arm), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-arm), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-arm), const SYS_READ = 3 +pkg syscall (freebsd-arm), const SYS_READLINK = 58 +pkg syscall (freebsd-arm), const SYS_READLINKAT = 500 +pkg syscall (freebsd-arm), const SYS_READV = 120 +pkg syscall (freebsd-arm), const SYS_REBOOT = 55 +pkg syscall (freebsd-arm), const SYS_RECVFROM = 29 +pkg syscall (freebsd-arm), const SYS_RECVMSG = 27 +pkg syscall (freebsd-arm), const SYS_RENAME = 128 +pkg syscall (freebsd-arm), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-arm), const SYS_REVOKE = 56 +pkg syscall (freebsd-arm), const SYS_RFORK = 251 +pkg syscall (freebsd-arm), const SYS_RMDIR = 137 +pkg syscall (freebsd-arm), const SYS_RTPRIO = 166 +pkg syscall (freebsd-arm), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-arm), const SYS_SBRK = 69 +pkg syscall (freebsd-arm), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-arm), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-arm), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-arm), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-arm), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-arm), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-arm), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-arm), const SYS_SELECT = 93 +pkg syscall (freebsd-arm), const SYS_SENDFILE = 393 +pkg syscall (freebsd-arm), const SYS_SENDMSG = 28 +pkg syscall (freebsd-arm), const SYS_SENDTO = 133 +pkg syscall (freebsd-arm), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-arm), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-arm), const SYS_SETAUID = 448 +pkg syscall (freebsd-arm), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-arm), const SYS_SETEGID = 182 +pkg syscall (freebsd-arm), const SYS_SETEUID = 183 +pkg syscall (freebsd-arm), const SYS_SETFIB = 175 +pkg syscall (freebsd-arm), const SYS_SETGID = 181 +pkg syscall (freebsd-arm), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-arm), const SYS_SETITIMER = 83 +pkg syscall (freebsd-arm), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-arm), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-arm), const SYS_SETPGID = 82 +pkg syscall (freebsd-arm), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-arm), const SYS_SETREGID = 127 +pkg syscall (freebsd-arm), const SYS_SETRESGID = 312 +pkg syscall (freebsd-arm), const SYS_SETRESUID = 311 +pkg syscall (freebsd-arm), const SYS_SETREUID = 126 +pkg syscall (freebsd-arm), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-arm), const SYS_SETSID = 147 +pkg syscall (freebsd-arm), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-arm), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-arm), const SYS_SETUID = 23 +pkg syscall (freebsd-arm), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-arm), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-arm), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-arm), const SYS_SIGACTION = 416 +pkg syscall (freebsd-arm), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-arm), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-arm), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-arm), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-arm), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-arm), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-arm), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-arm), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-arm), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-arm), const SYS_SOCKET = 97 +pkg syscall (freebsd-arm), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-arm), const SYS_SSTK = 70 +pkg syscall (freebsd-arm), const SYS_STAT = 188 +pkg syscall (freebsd-arm), const SYS_STATFS = 396 +pkg syscall (freebsd-arm), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-arm), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-arm), const SYS_SWAPON = 85 +pkg syscall (freebsd-arm), const SYS_SYMLINK = 57 +pkg syscall (freebsd-arm), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-arm), const SYS_SYNC = 36 +pkg syscall (freebsd-arm), const SYS_SYSARCH = 165 +pkg syscall (freebsd-arm), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-arm), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-arm), const SYS_THR_KILL = 433 +pkg syscall (freebsd-arm), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-arm), const SYS_THR_NEW = 455 +pkg syscall (freebsd-arm), const SYS_THR_SELF = 432 +pkg syscall (freebsd-arm), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-arm), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-arm), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-arm), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-arm), const SYS_UMASK = 60 +pkg syscall (freebsd-arm), const SYS_UNDELETE = 205 +pkg syscall (freebsd-arm), const SYS_UNLINK = 10 +pkg syscall (freebsd-arm), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-arm), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-arm), const SYS_UTIMES = 138 +pkg syscall (freebsd-arm), const SYS_UTRACE = 335 +pkg syscall (freebsd-arm), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-arm), const SYS_VFORK = 66 +pkg syscall (freebsd-arm), const SYS_WAIT4 = 7 +pkg syscall (freebsd-arm), const SYS_WAIT6 = 532 +pkg syscall (freebsd-arm), const SYS_WRITE = 4 +pkg syscall (freebsd-arm), const SYS_WRITEV = 121 +pkg syscall (freebsd-arm), const SYS_YIELD = 321 +pkg syscall (freebsd-arm), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-arm), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-arm), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-arm), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-arm), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-arm), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-arm), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-arm), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-arm), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-arm), const SYS___GETCWD = 326 +pkg syscall (freebsd-arm), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-arm), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-arm), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-arm), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-arm), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-arm), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-arm), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-arm), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-arm), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-arm), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-arm), const SYS___SETUGID = 374 +pkg syscall (freebsd-arm), const SYS___SYSCTL = 202 +pkg syscall (freebsd-arm), const S_IFMT = 61440 +pkg syscall (freebsd-arm), const SizeofBpfHdr = 24 +pkg syscall (freebsd-arm), const SizeofBpfInsn = 8 +pkg syscall (freebsd-arm), const SizeofBpfProgram = 8 +pkg syscall (freebsd-arm), const SizeofBpfStat = 8 +pkg syscall (freebsd-arm), const SizeofBpfVersion = 4 +pkg syscall (freebsd-arm), const SizeofBpfZbuf = 12 +pkg syscall (freebsd-arm), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-arm), const SizeofCmsghdr = 12 +pkg syscall (freebsd-arm), const SizeofIPMreq = 8 +pkg syscall (freebsd-arm), const SizeofIPMreqn = 12 +pkg syscall (freebsd-arm), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-arm), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-arm), const SizeofIfData = 88 +pkg syscall (freebsd-arm), const SizeofIfMsghdr = 104 +pkg syscall (freebsd-arm), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-arm), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-arm), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-arm), const SizeofLinger = 8 +pkg syscall (freebsd-arm), const SizeofMsghdr = 28 +pkg syscall (freebsd-arm), const SizeofRtMetrics = 56 +pkg syscall (freebsd-arm), const SizeofRtMsghdr = 92 +pkg syscall (freebsd-arm), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-arm), const SizeofSockaddrDatalink = 56 +pkg syscall (freebsd-arm), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-arm), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-arm), const SizeofSockaddrUnix = 108 +pkg syscall (freebsd-arm), const TCIFLUSH = 1 +pkg syscall (freebsd-arm), const TCIOFLUSH = 3 +pkg syscall (freebsd-arm), const TCOFLUSH = 2 +pkg syscall (freebsd-arm), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-arm), const TCP_CONGESTION = 64 +pkg syscall (freebsd-arm), const TCP_INFO = 32 +pkg syscall (freebsd-arm), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-arm), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-arm), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-arm), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-arm), const TCP_MAXBURST = 4 +pkg syscall (freebsd-arm), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-arm), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-arm), const TCP_MAXSEG = 2 +pkg syscall (freebsd-arm), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-arm), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-arm), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-arm), const TCP_MD5SIG = 16 +pkg syscall (freebsd-arm), const TCP_MINMSS = 216 +pkg syscall (freebsd-arm), const TCP_MSS = 536 +pkg syscall (freebsd-arm), const TCP_NOOPT = 8 +pkg syscall (freebsd-arm), const TCP_NOPUSH = 4 +pkg syscall (freebsd-arm), const TCSAFLUSH = 2 +pkg syscall (freebsd-arm), const TIOCCBRK = 536900730 +pkg syscall (freebsd-arm), const TIOCCDTR = 536900728 +pkg syscall (freebsd-arm), const TIOCCONS = 2147775586 +pkg syscall (freebsd-arm), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-arm), const TIOCEXCL = 536900621 +pkg syscall (freebsd-arm), const TIOCEXT = 2147775584 +pkg syscall (freebsd-arm), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-arm), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-arm), const TIOCGETA = 1076655123 +pkg syscall (freebsd-arm), const TIOCGETD = 1074033690 +pkg syscall (freebsd-arm), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-arm), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-arm), const TIOCGSID = 1074033763 +pkg syscall (freebsd-arm), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-arm), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-arm), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-arm), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-arm), const TIOCMGET = 1074033770 +pkg syscall (freebsd-arm), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-arm), const TIOCMSET = 2147775597 +pkg syscall (freebsd-arm), const TIOCM_CAR = 64 +pkg syscall (freebsd-arm), const TIOCM_CD = 64 +pkg syscall (freebsd-arm), const TIOCM_CTS = 32 +pkg syscall (freebsd-arm), const TIOCM_DCD = 64 +pkg syscall (freebsd-arm), const TIOCM_DSR = 256 +pkg syscall (freebsd-arm), const TIOCM_DTR = 2 +pkg syscall (freebsd-arm), const TIOCM_LE = 1 +pkg syscall (freebsd-arm), const TIOCM_RI = 128 +pkg syscall (freebsd-arm), const TIOCM_RNG = 128 +pkg syscall (freebsd-arm), const TIOCM_RTS = 4 +pkg syscall (freebsd-arm), const TIOCM_SR = 16 +pkg syscall (freebsd-arm), const TIOCM_ST = 8 +pkg syscall (freebsd-arm), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-arm), const TIOCNXCL = 536900622 +pkg syscall (freebsd-arm), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-arm), const TIOCPKT = 2147775600 +pkg syscall (freebsd-arm), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-arm), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-arm), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-arm), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-arm), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-arm), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-arm), const TIOCPKT_START = 8 +pkg syscall (freebsd-arm), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-arm), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-arm), const TIOCSBRK = 536900731 +pkg syscall (freebsd-arm), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-arm), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-arm), const TIOCSDTR = 536900729 +pkg syscall (freebsd-arm), const TIOCSETA = 2150396948 +pkg syscall (freebsd-arm), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-arm), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-arm), const TIOCSETD = 2147775515 +pkg syscall (freebsd-arm), const TIOCSIG = 537162847 +pkg syscall (freebsd-arm), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-arm), const TIOCSTART = 536900718 +pkg syscall (freebsd-arm), const TIOCSTAT = 536900709 +pkg syscall (freebsd-arm), const TIOCSTI = 2147578994 +pkg syscall (freebsd-arm), const TIOCSTOP = 536900719 +pkg syscall (freebsd-arm), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-arm), const TIOCTIMESTAMP = 1074558041 +pkg syscall (freebsd-arm), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-arm), const TOSTOP = 4194304 +pkg syscall (freebsd-arm), const VDISCARD = 15 +pkg syscall (freebsd-arm), const VDSUSP = 11 +pkg syscall (freebsd-arm), const VEOF = 0 +pkg syscall (freebsd-arm), const VEOL = 1 +pkg syscall (freebsd-arm), const VEOL2 = 2 +pkg syscall (freebsd-arm), const VERASE = 3 +pkg syscall (freebsd-arm), const VERASE2 = 7 +pkg syscall (freebsd-arm), const VINTR = 8 +pkg syscall (freebsd-arm), const VKILL = 5 +pkg syscall (freebsd-arm), const VLNEXT = 14 +pkg syscall (freebsd-arm), const VMIN = 16 +pkg syscall (freebsd-arm), const VQUIT = 9 +pkg syscall (freebsd-arm), const VREPRINT = 6 +pkg syscall (freebsd-arm), const VSTART = 12 +pkg syscall (freebsd-arm), const VSTATUS = 18 +pkg syscall (freebsd-arm), const VSTOP = 13 +pkg syscall (freebsd-arm), const VSUSP = 10 +pkg syscall (freebsd-arm), const VTIME = 17 +pkg syscall (freebsd-arm), const VWERASE = 4 +pkg syscall (freebsd-arm), const WCONTINUED = 4 +pkg syscall (freebsd-arm), const WCOREFLAG = 128 +pkg syscall (freebsd-arm), const WEXITED = 16 +pkg syscall (freebsd-arm), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-arm), const WNOHANG = 1 +pkg syscall (freebsd-arm), const WNOWAIT = 8 +pkg syscall (freebsd-arm), const WSTOPPED = 2 +pkg syscall (freebsd-arm), const WTRAPPED = 32 +pkg syscall (freebsd-arm), const WUNTRACED = 2 +pkg syscall (freebsd-arm-cgo), const AF_APPLETALK = 16 +pkg syscall (freebsd-arm-cgo), const AF_ARP = 35 +pkg syscall (freebsd-arm-cgo), const AF_ATM = 30 +pkg syscall (freebsd-arm-cgo), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-arm-cgo), const AF_CCITT = 10 +pkg syscall (freebsd-arm-cgo), const AF_CHAOS = 5 +pkg syscall (freebsd-arm-cgo), const AF_CNT = 21 +pkg syscall (freebsd-arm-cgo), const AF_COIP = 20 +pkg syscall (freebsd-arm-cgo), const AF_DATAKIT = 9 +pkg syscall (freebsd-arm-cgo), const AF_DECnet = 12 +pkg syscall (freebsd-arm-cgo), const AF_DLI = 13 +pkg syscall (freebsd-arm-cgo), const AF_E164 = 26 +pkg syscall (freebsd-arm-cgo), const AF_ECMA = 8 +pkg syscall (freebsd-arm-cgo), const AF_HYLINK = 15 +pkg syscall (freebsd-arm-cgo), const AF_IEEE80211 = 37 +pkg syscall (freebsd-arm-cgo), const AF_IMPLINK = 3 +pkg syscall (freebsd-arm-cgo), const AF_INET6 = 28 +pkg syscall (freebsd-arm-cgo), const AF_IPX = 23 +pkg syscall (freebsd-arm-cgo), const AF_ISDN = 26 +pkg syscall (freebsd-arm-cgo), const AF_ISO = 7 +pkg syscall (freebsd-arm-cgo), const AF_LAT = 14 +pkg syscall (freebsd-arm-cgo), const AF_LINK = 18 +pkg syscall (freebsd-arm-cgo), const AF_LOCAL = 1 +pkg syscall (freebsd-arm-cgo), const AF_MAX = 38 +pkg syscall (freebsd-arm-cgo), const AF_NATM = 29 +pkg syscall (freebsd-arm-cgo), const AF_NETBIOS = 6 +pkg syscall (freebsd-arm-cgo), const AF_NETGRAPH = 32 +pkg syscall (freebsd-arm-cgo), const AF_OSI = 7 +pkg syscall (freebsd-arm-cgo), const AF_PUP = 4 +pkg syscall (freebsd-arm-cgo), const AF_ROUTE = 17 +pkg syscall (freebsd-arm-cgo), const AF_SCLUSTER = 34 +pkg syscall (freebsd-arm-cgo), const AF_SIP = 24 +pkg syscall (freebsd-arm-cgo), const AF_SLOW = 33 +pkg syscall (freebsd-arm-cgo), const AF_SNA = 11 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR00 = 39 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR01 = 41 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR02 = 43 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR03 = 45 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR04 = 47 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR05 = 49 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR06 = 51 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR07 = 53 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR08 = 55 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR09 = 57 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR10 = 59 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR11 = 61 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR12 = 63 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR13 = 65 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR14 = 67 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR15 = 69 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR16 = 71 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR17 = 73 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR18 = 75 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR19 = 77 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR20 = 79 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR21 = 81 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR22 = 83 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR23 = 85 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR24 = 87 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR25 = 89 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR26 = 91 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR27 = 93 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR28 = 95 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR29 = 97 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR30 = 99 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR31 = 101 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR32 = 103 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR33 = 105 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR34 = 107 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR35 = 109 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR36 = 111 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR37 = 113 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR38 = 115 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR39 = 117 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR40 = 119 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR41 = 121 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR42 = 123 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR43 = 125 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR44 = 127 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR45 = 129 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR46 = 131 +pkg syscall (freebsd-arm-cgo), const AF_VENDOR47 = 133 +pkg syscall (freebsd-arm-cgo), const B0 = 0 +pkg syscall (freebsd-arm-cgo), const B110 = 110 +pkg syscall (freebsd-arm-cgo), const B115200 = 115200 +pkg syscall (freebsd-arm-cgo), const B1200 = 1200 +pkg syscall (freebsd-arm-cgo), const B134 = 134 +pkg syscall (freebsd-arm-cgo), const B14400 = 14400 +pkg syscall (freebsd-arm-cgo), const B150 = 150 +pkg syscall (freebsd-arm-cgo), const B1800 = 1800 +pkg syscall (freebsd-arm-cgo), const B19200 = 19200 +pkg syscall (freebsd-arm-cgo), const B200 = 200 +pkg syscall (freebsd-arm-cgo), const B230400 = 230400 +pkg syscall (freebsd-arm-cgo), const B2400 = 2400 +pkg syscall (freebsd-arm-cgo), const B28800 = 28800 +pkg syscall (freebsd-arm-cgo), const B300 = 300 +pkg syscall (freebsd-arm-cgo), const B38400 = 38400 +pkg syscall (freebsd-arm-cgo), const B460800 = 460800 +pkg syscall (freebsd-arm-cgo), const B4800 = 4800 +pkg syscall (freebsd-arm-cgo), const B50 = 50 +pkg syscall (freebsd-arm-cgo), const B57600 = 57600 +pkg syscall (freebsd-arm-cgo), const B600 = 600 +pkg syscall (freebsd-arm-cgo), const B7200 = 7200 +pkg syscall (freebsd-arm-cgo), const B75 = 75 +pkg syscall (freebsd-arm-cgo), const B76800 = 76800 +pkg syscall (freebsd-arm-cgo), const B921600 = 921600 +pkg syscall (freebsd-arm-cgo), const B9600 = 9600 +pkg syscall (freebsd-arm-cgo), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-arm-cgo), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-arm-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-arm-cgo), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-arm-cgo), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-arm-cgo), const BIOCGDLTLIST = 3221766777 +pkg syscall (freebsd-arm-cgo), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-arm-cgo), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-arm-cgo), const BIOCGETZMAX = 1074020991 +pkg syscall (freebsd-arm-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-arm-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (freebsd-arm-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-arm-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-arm-cgo), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-arm-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-arm-cgo), const BIOCLOCK = 536887930 +pkg syscall (freebsd-arm-cgo), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-arm-cgo), const BIOCROTZBUF = 1074545280 +pkg syscall (freebsd-arm-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-arm-cgo), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-arm-cgo), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-arm-cgo), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-arm-cgo), const BIOCSETF = 2148024935 +pkg syscall (freebsd-arm-cgo), const BIOCSETFNR = 2148024962 +pkg syscall (freebsd-arm-cgo), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-arm-cgo), const BIOCSETWF = 2148024955 +pkg syscall (freebsd-arm-cgo), const BIOCSETZBUF = 2148287105 +pkg syscall (freebsd-arm-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-arm-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (freebsd-arm-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-arm-cgo), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-arm-cgo), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-arm-cgo), const BPF_A = 16 +pkg syscall (freebsd-arm-cgo), const BPF_ABS = 32 +pkg syscall (freebsd-arm-cgo), const BPF_ADD = 0 +pkg syscall (freebsd-arm-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (freebsd-arm-cgo), const BPF_ALU = 4 +pkg syscall (freebsd-arm-cgo), const BPF_AND = 80 +pkg syscall (freebsd-arm-cgo), const BPF_B = 16 +pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-arm-cgo), const BPF_DIV = 48 +pkg syscall (freebsd-arm-cgo), const BPF_H = 8 +pkg syscall (freebsd-arm-cgo), const BPF_IMM = 0 +pkg syscall (freebsd-arm-cgo), const BPF_IND = 64 +pkg syscall (freebsd-arm-cgo), const BPF_JA = 0 +pkg syscall (freebsd-arm-cgo), const BPF_JEQ = 16 +pkg syscall (freebsd-arm-cgo), const BPF_JGE = 48 +pkg syscall (freebsd-arm-cgo), const BPF_JGT = 32 +pkg syscall (freebsd-arm-cgo), const BPF_JMP = 5 +pkg syscall (freebsd-arm-cgo), const BPF_JSET = 64 +pkg syscall (freebsd-arm-cgo), const BPF_K = 0 +pkg syscall (freebsd-arm-cgo), const BPF_LD = 0 +pkg syscall (freebsd-arm-cgo), const BPF_LDX = 1 +pkg syscall (freebsd-arm-cgo), const BPF_LEN = 128 +pkg syscall (freebsd-arm-cgo), const BPF_LSH = 96 +pkg syscall (freebsd-arm-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-arm-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-arm-cgo), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-arm-cgo), const BPF_MEM = 96 +pkg syscall (freebsd-arm-cgo), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-arm-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-arm-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-arm-cgo), const BPF_MISC = 7 +pkg syscall (freebsd-arm-cgo), const BPF_MSH = 160 +pkg syscall (freebsd-arm-cgo), const BPF_MUL = 32 +pkg syscall (freebsd-arm-cgo), const BPF_NEG = 128 +pkg syscall (freebsd-arm-cgo), const BPF_OR = 64 +pkg syscall (freebsd-arm-cgo), const BPF_RELEASE = 199606 +pkg syscall (freebsd-arm-cgo), const BPF_RET = 6 +pkg syscall (freebsd-arm-cgo), const BPF_RSH = 112 +pkg syscall (freebsd-arm-cgo), const BPF_ST = 2 +pkg syscall (freebsd-arm-cgo), const BPF_STX = 3 +pkg syscall (freebsd-arm-cgo), const BPF_SUB = 16 +pkg syscall (freebsd-arm-cgo), const BPF_TAX = 0 +pkg syscall (freebsd-arm-cgo), const BPF_TXA = 128 +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-arm-cgo), const BPF_T_FAST = 256 +pkg syscall (freebsd-arm-cgo), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-arm-cgo), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-arm-cgo), const BPF_T_NONE = 3 +pkg syscall (freebsd-arm-cgo), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-arm-cgo), const BPF_W = 0 +pkg syscall (freebsd-arm-cgo), const BPF_X = 8 +pkg syscall (freebsd-arm-cgo), const BRKINT = 2 +pkg syscall (freebsd-arm-cgo), const CFLUSH = 15 +pkg syscall (freebsd-arm-cgo), const CLOCAL = 32768 +pkg syscall (freebsd-arm-cgo), const CREAD = 2048 +pkg syscall (freebsd-arm-cgo), const CS5 = 0 +pkg syscall (freebsd-arm-cgo), const CS6 = 256 +pkg syscall (freebsd-arm-cgo), const CS7 = 512 +pkg syscall (freebsd-arm-cgo), const CS8 = 768 +pkg syscall (freebsd-arm-cgo), const CSIZE = 768 +pkg syscall (freebsd-arm-cgo), const CSTART = 17 +pkg syscall (freebsd-arm-cgo), const CSTATUS = 20 +pkg syscall (freebsd-arm-cgo), const CSTOP = 19 +pkg syscall (freebsd-arm-cgo), const CSTOPB = 1024 +pkg syscall (freebsd-arm-cgo), const CSUSP = 26 +pkg syscall (freebsd-arm-cgo), const CTL_MAXNAME = 24 +pkg syscall (freebsd-arm-cgo), const CTL_NET = 4 +pkg syscall (freebsd-arm-cgo), const DLT_A429 = 184 +pkg syscall (freebsd-arm-cgo), const DLT_A653_ICM = 185 +pkg syscall (freebsd-arm-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-arm-cgo), const DLT_AOS = 222 +pkg syscall (freebsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-arm-cgo), const DLT_ARCNET = 7 +pkg syscall (freebsd-arm-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-arm-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-arm-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-arm-cgo), const DLT_AURORA = 126 +pkg syscall (freebsd-arm-cgo), const DLT_AX25 = 3 +pkg syscall (freebsd-arm-cgo), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-arm-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-arm-cgo), const DLT_CAN20B = 190 +pkg syscall (freebsd-arm-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-arm-cgo), const DLT_CHAOS = 5 +pkg syscall (freebsd-arm-cgo), const DLT_CHDLC = 104 +pkg syscall (freebsd-arm-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC = 104 +pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-arm-cgo), const DLT_DBUS = 231 +pkg syscall (freebsd-arm-cgo), const DLT_DECT = 221 +pkg syscall (freebsd-arm-cgo), const DLT_DOCSIS = 143 +pkg syscall (freebsd-arm-cgo), const DLT_DVB_CI = 235 +pkg syscall (freebsd-arm-cgo), const DLT_ECONET = 115 +pkg syscall (freebsd-arm-cgo), const DLT_EN10MB = 1 +pkg syscall (freebsd-arm-cgo), const DLT_EN3MB = 2 +pkg syscall (freebsd-arm-cgo), const DLT_ENC = 109 +pkg syscall (freebsd-arm-cgo), const DLT_ERF = 197 +pkg syscall (freebsd-arm-cgo), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-arm-cgo), const DLT_ERF_POS = 176 +pkg syscall (freebsd-arm-cgo), const DLT_FC_2 = 224 +pkg syscall (freebsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-arm-cgo), const DLT_FDDI = 10 +pkg syscall (freebsd-arm-cgo), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-arm-cgo), const DLT_FRELAY = 107 +pkg syscall (freebsd-arm-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-arm-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-arm-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-arm-cgo), const DLT_GPF_F = 171 +pkg syscall (freebsd-arm-cgo), const DLT_GPF_T = 170 +pkg syscall (freebsd-arm-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-arm-cgo), const DLT_HHDLC = 121 +pkg syscall (freebsd-arm-cgo), const DLT_IBM_SN = 146 +pkg syscall (freebsd-arm-cgo), const DLT_IBM_SP = 145 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802 = 6 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-arm-cgo), const DLT_IPFILTER = 116 +pkg syscall (freebsd-arm-cgo), const DLT_IPMB = 199 +pkg syscall (freebsd-arm-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-arm-cgo), const DLT_IPNET = 226 +pkg syscall (freebsd-arm-cgo), const DLT_IPOIB = 242 +pkg syscall (freebsd-arm-cgo), const DLT_IPV4 = 228 +pkg syscall (freebsd-arm-cgo), const DLT_IPV6 = 229 +pkg syscall (freebsd-arm-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-arm-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-arm-cgo), const DLT_LAPD = 203 +pkg syscall (freebsd-arm-cgo), const DLT_LIN = 212 +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-arm-cgo), const DLT_LOOP = 108 +pkg syscall (freebsd-arm-cgo), const DLT_LTALK = 114 +pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-arm-cgo), const DLT_MFR = 182 +pkg syscall (freebsd-arm-cgo), const DLT_MOST = 211 +pkg syscall (freebsd-arm-cgo), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-arm-cgo), const DLT_MPLS = 219 +pkg syscall (freebsd-arm-cgo), const DLT_MTP2 = 140 +pkg syscall (freebsd-arm-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-arm-cgo), const DLT_MTP3 = 141 +pkg syscall (freebsd-arm-cgo), const DLT_MUX27010 = 236 +pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-arm-cgo), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-arm-cgo), const DLT_NFLOG = 239 +pkg syscall (freebsd-arm-cgo), const DLT_NG40 = 244 +pkg syscall (freebsd-arm-cgo), const DLT_NULL = 0 +pkg syscall (freebsd-arm-cgo), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-arm-cgo), const DLT_PFLOG = 117 +pkg syscall (freebsd-arm-cgo), const DLT_PFSYNC = 121 +pkg syscall (freebsd-arm-cgo), const DLT_PPI = 192 +pkg syscall (freebsd-arm-cgo), const DLT_PPP = 9 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-arm-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-arm-cgo), const DLT_PRONET = 4 +pkg syscall (freebsd-arm-cgo), const DLT_RAIF1 = 198 +pkg syscall (freebsd-arm-cgo), const DLT_RAW = 12 +pkg syscall (freebsd-arm-cgo), const DLT_RIO = 124 +pkg syscall (freebsd-arm-cgo), const DLT_SCCP = 142 +pkg syscall (freebsd-arm-cgo), const DLT_SITA = 196 +pkg syscall (freebsd-arm-cgo), const DLT_SLIP = 8 +pkg syscall (freebsd-arm-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-arm-cgo), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-arm-cgo), const DLT_SUNATM = 123 +pkg syscall (freebsd-arm-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-arm-cgo), const DLT_TZSP = 128 +pkg syscall (freebsd-arm-cgo), const DLT_USB = 186 +pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-arm-cgo), const DLT_USER0 = 147 +pkg syscall (freebsd-arm-cgo), const DLT_USER1 = 148 +pkg syscall (freebsd-arm-cgo), const DLT_USER10 = 157 +pkg syscall (freebsd-arm-cgo), const DLT_USER11 = 158 +pkg syscall (freebsd-arm-cgo), const DLT_USER12 = 159 +pkg syscall (freebsd-arm-cgo), const DLT_USER13 = 160 +pkg syscall (freebsd-arm-cgo), const DLT_USER14 = 161 +pkg syscall (freebsd-arm-cgo), const DLT_USER15 = 162 +pkg syscall (freebsd-arm-cgo), const DLT_USER2 = 149 +pkg syscall (freebsd-arm-cgo), const DLT_USER3 = 150 +pkg syscall (freebsd-arm-cgo), const DLT_USER4 = 151 +pkg syscall (freebsd-arm-cgo), const DLT_USER5 = 152 +pkg syscall (freebsd-arm-cgo), const DLT_USER6 = 153 +pkg syscall (freebsd-arm-cgo), const DLT_USER7 = 154 +pkg syscall (freebsd-arm-cgo), const DLT_USER8 = 155 +pkg syscall (freebsd-arm-cgo), const DLT_USER9 = 156 +pkg syscall (freebsd-arm-cgo), const DLT_WIHART = 223 +pkg syscall (freebsd-arm-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-arm-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-arm-cgo), const DT_BLK = 6 +pkg syscall (freebsd-arm-cgo), const DT_CHR = 2 +pkg syscall (freebsd-arm-cgo), const DT_DIR = 4 +pkg syscall (freebsd-arm-cgo), const DT_FIFO = 1 +pkg syscall (freebsd-arm-cgo), const DT_LNK = 10 +pkg syscall (freebsd-arm-cgo), const DT_REG = 8 +pkg syscall (freebsd-arm-cgo), const DT_SOCK = 12 +pkg syscall (freebsd-arm-cgo), const DT_UNKNOWN = 0 +pkg syscall (freebsd-arm-cgo), const DT_WHT = 14 +pkg syscall (freebsd-arm-cgo), const E2BIG = 7 +pkg syscall (freebsd-arm-cgo), const EACCES = 13 +pkg syscall (freebsd-arm-cgo), const EADDRINUSE = 48 +pkg syscall (freebsd-arm-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-arm-cgo), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-arm-cgo), const EAGAIN = 35 +pkg syscall (freebsd-arm-cgo), const EALREADY = 37 +pkg syscall (freebsd-arm-cgo), const EAUTH = 80 +pkg syscall (freebsd-arm-cgo), const EBADF = 9 +pkg syscall (freebsd-arm-cgo), const EBADMSG = 89 +pkg syscall (freebsd-arm-cgo), const EBADRPC = 72 +pkg syscall (freebsd-arm-cgo), const EBUSY = 16 +pkg syscall (freebsd-arm-cgo), const ECANCELED = 85 +pkg syscall (freebsd-arm-cgo), const ECAPMODE = 94 +pkg syscall (freebsd-arm-cgo), const ECHILD = 10 +pkg syscall (freebsd-arm-cgo), const ECHO = 8 +pkg syscall (freebsd-arm-cgo), const ECHOCTL = 64 +pkg syscall (freebsd-arm-cgo), const ECHOE = 2 +pkg syscall (freebsd-arm-cgo), const ECHOK = 4 +pkg syscall (freebsd-arm-cgo), const ECHOKE = 1 +pkg syscall (freebsd-arm-cgo), const ECHONL = 16 +pkg syscall (freebsd-arm-cgo), const ECHOPRT = 32 +pkg syscall (freebsd-arm-cgo), const ECONNABORTED = 53 +pkg syscall (freebsd-arm-cgo), const ECONNREFUSED = 61 +pkg syscall (freebsd-arm-cgo), const ECONNRESET = 54 +pkg syscall (freebsd-arm-cgo), const EDEADLK = 11 +pkg syscall (freebsd-arm-cgo), const EDESTADDRREQ = 39 +pkg syscall (freebsd-arm-cgo), const EDOM = 33 +pkg syscall (freebsd-arm-cgo), const EDOOFUS = 88 +pkg syscall (freebsd-arm-cgo), const EDQUOT = 69 +pkg syscall (freebsd-arm-cgo), const EEXIST = 17 +pkg syscall (freebsd-arm-cgo), const EFAULT = 14 +pkg syscall (freebsd-arm-cgo), const EFBIG = 27 +pkg syscall (freebsd-arm-cgo), const EFTYPE = 79 +pkg syscall (freebsd-arm-cgo), const EHOSTDOWN = 64 +pkg syscall (freebsd-arm-cgo), const EHOSTUNREACH = 65 +pkg syscall (freebsd-arm-cgo), const EIDRM = 82 +pkg syscall (freebsd-arm-cgo), const EILSEQ = 86 +pkg syscall (freebsd-arm-cgo), const EINPROGRESS = 36 +pkg syscall (freebsd-arm-cgo), const EINTR = 4 +pkg syscall (freebsd-arm-cgo), const EINVAL = 22 +pkg syscall (freebsd-arm-cgo), const EIO = 5 +pkg syscall (freebsd-arm-cgo), const EISCONN = 56 +pkg syscall (freebsd-arm-cgo), const EISDIR = 21 +pkg syscall (freebsd-arm-cgo), const ELAST = 94 +pkg syscall (freebsd-arm-cgo), const ELOOP = 62 +pkg syscall (freebsd-arm-cgo), const EMFILE = 24 +pkg syscall (freebsd-arm-cgo), const EMLINK = 31 +pkg syscall (freebsd-arm-cgo), const EMSGSIZE = 40 +pkg syscall (freebsd-arm-cgo), const EMULTIHOP = 90 +pkg syscall (freebsd-arm-cgo), const ENAMETOOLONG = 63 +pkg syscall (freebsd-arm-cgo), const ENEEDAUTH = 81 +pkg syscall (freebsd-arm-cgo), const ENETDOWN = 50 +pkg syscall (freebsd-arm-cgo), const ENETRESET = 52 +pkg syscall (freebsd-arm-cgo), const ENETUNREACH = 51 +pkg syscall (freebsd-arm-cgo), const ENFILE = 23 +pkg syscall (freebsd-arm-cgo), const ENOATTR = 87 +pkg syscall (freebsd-arm-cgo), const ENOBUFS = 55 +pkg syscall (freebsd-arm-cgo), const ENODEV = 19 +pkg syscall (freebsd-arm-cgo), const ENOEXEC = 8 +pkg syscall (freebsd-arm-cgo), const ENOLCK = 77 +pkg syscall (freebsd-arm-cgo), const ENOLINK = 91 +pkg syscall (freebsd-arm-cgo), const ENOMEM = 12 +pkg syscall (freebsd-arm-cgo), const ENOMSG = 83 +pkg syscall (freebsd-arm-cgo), const ENOPROTOOPT = 42 +pkg syscall (freebsd-arm-cgo), const ENOSPC = 28 +pkg syscall (freebsd-arm-cgo), const ENOSYS = 78 +pkg syscall (freebsd-arm-cgo), const ENOTBLK = 15 +pkg syscall (freebsd-arm-cgo), const ENOTCAPABLE = 93 +pkg syscall (freebsd-arm-cgo), const ENOTCONN = 57 +pkg syscall (freebsd-arm-cgo), const ENOTDIR = 20 +pkg syscall (freebsd-arm-cgo), const ENOTEMPTY = 66 +pkg syscall (freebsd-arm-cgo), const ENOTSOCK = 38 +pkg syscall (freebsd-arm-cgo), const ENOTSUP = 45 +pkg syscall (freebsd-arm-cgo), const ENOTTY = 25 +pkg syscall (freebsd-arm-cgo), const ENXIO = 6 +pkg syscall (freebsd-arm-cgo), const EOPNOTSUPP = 45 +pkg syscall (freebsd-arm-cgo), const EOVERFLOW = 84 +pkg syscall (freebsd-arm-cgo), const EPERM = 1 +pkg syscall (freebsd-arm-cgo), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-arm-cgo), const EPIPE = 32 +pkg syscall (freebsd-arm-cgo), const EPROCLIM = 67 +pkg syscall (freebsd-arm-cgo), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-arm-cgo), const EPROGMISMATCH = 75 +pkg syscall (freebsd-arm-cgo), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-arm-cgo), const EPROTO = 92 +pkg syscall (freebsd-arm-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-arm-cgo), const EPROTOTYPE = 41 +pkg syscall (freebsd-arm-cgo), const ERANGE = 34 +pkg syscall (freebsd-arm-cgo), const EREMOTE = 71 +pkg syscall (freebsd-arm-cgo), const EROFS = 30 +pkg syscall (freebsd-arm-cgo), const ERPCMISMATCH = 73 +pkg syscall (freebsd-arm-cgo), const ESHUTDOWN = 58 +pkg syscall (freebsd-arm-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-arm-cgo), const ESPIPE = 29 +pkg syscall (freebsd-arm-cgo), const ESRCH = 3 +pkg syscall (freebsd-arm-cgo), const ESTALE = 70 +pkg syscall (freebsd-arm-cgo), const ETIMEDOUT = 60 +pkg syscall (freebsd-arm-cgo), const ETOOMANYREFS = 59 +pkg syscall (freebsd-arm-cgo), const ETXTBSY = 26 +pkg syscall (freebsd-arm-cgo), const EUSERS = 68 +pkg syscall (freebsd-arm-cgo), const EVFILT_AIO = -3 +pkg syscall (freebsd-arm-cgo), const EVFILT_FS = -9 +pkg syscall (freebsd-arm-cgo), const EVFILT_LIO = -10 +pkg syscall (freebsd-arm-cgo), const EVFILT_PROC = -5 +pkg syscall (freebsd-arm-cgo), const EVFILT_READ = -1 +pkg syscall (freebsd-arm-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-arm-cgo), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-arm-cgo), const EVFILT_TIMER = -7 +pkg syscall (freebsd-arm-cgo), const EVFILT_USER = -11 +pkg syscall (freebsd-arm-cgo), const EVFILT_VNODE = -4 +pkg syscall (freebsd-arm-cgo), const EVFILT_WRITE = -2 +pkg syscall (freebsd-arm-cgo), const EV_ADD = 1 +pkg syscall (freebsd-arm-cgo), const EV_CLEAR = 32 +pkg syscall (freebsd-arm-cgo), const EV_DELETE = 2 +pkg syscall (freebsd-arm-cgo), const EV_DISABLE = 8 +pkg syscall (freebsd-arm-cgo), const EV_DISPATCH = 128 +pkg syscall (freebsd-arm-cgo), const EV_ENABLE = 4 +pkg syscall (freebsd-arm-cgo), const EV_EOF = 32768 +pkg syscall (freebsd-arm-cgo), const EV_ERROR = 16384 +pkg syscall (freebsd-arm-cgo), const EV_FLAG1 = 8192 +pkg syscall (freebsd-arm-cgo), const EV_ONESHOT = 16 +pkg syscall (freebsd-arm-cgo), const EV_RECEIPT = 64 +pkg syscall (freebsd-arm-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-arm-cgo), const EWOULDBLOCK = 35 +pkg syscall (freebsd-arm-cgo), const EXDEV = 18 +pkg syscall (freebsd-arm-cgo), const EXTA = 19200 +pkg syscall (freebsd-arm-cgo), const EXTB = 38400 +pkg syscall (freebsd-arm-cgo), const EXTPROC = 2048 +pkg syscall (freebsd-arm-cgo), const FD_CLOEXEC = 1 +pkg syscall (freebsd-arm-cgo), const FD_SETSIZE = 1024 +pkg syscall (freebsd-arm-cgo), const FLUSHO = 8388608 +pkg syscall (freebsd-arm-cgo), const F_CANCEL = 5 +pkg syscall (freebsd-arm-cgo), const F_DUP2FD = 10 +pkg syscall (freebsd-arm-cgo), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-arm-cgo), const F_DUPFD = 0 +pkg syscall (freebsd-arm-cgo), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-arm-cgo), const F_GETFD = 1 +pkg syscall (freebsd-arm-cgo), const F_GETFL = 3 +pkg syscall (freebsd-arm-cgo), const F_GETLK = 11 +pkg syscall (freebsd-arm-cgo), const F_GETOWN = 5 +pkg syscall (freebsd-arm-cgo), const F_OGETLK = 7 +pkg syscall (freebsd-arm-cgo), const F_OK = 0 +pkg syscall (freebsd-arm-cgo), const F_OSETLK = 8 +pkg syscall (freebsd-arm-cgo), const F_OSETLKW = 9 +pkg syscall (freebsd-arm-cgo), const F_RDAHEAD = 16 +pkg syscall (freebsd-arm-cgo), const F_RDLCK = 1 +pkg syscall (freebsd-arm-cgo), const F_READAHEAD = 15 +pkg syscall (freebsd-arm-cgo), const F_SETFD = 2 +pkg syscall (freebsd-arm-cgo), const F_SETFL = 4 +pkg syscall (freebsd-arm-cgo), const F_SETLK = 12 +pkg syscall (freebsd-arm-cgo), const F_SETLKW = 13 +pkg syscall (freebsd-arm-cgo), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-arm-cgo), const F_SETOWN = 6 +pkg syscall (freebsd-arm-cgo), const F_UNLCK = 2 +pkg syscall (freebsd-arm-cgo), const F_UNLCKSYS = 4 +pkg syscall (freebsd-arm-cgo), const F_WRLCK = 3 +pkg syscall (freebsd-arm-cgo), const HUPCL = 16384 +pkg syscall (freebsd-arm-cgo), const ICANON = 256 +pkg syscall (freebsd-arm-cgo), const ICRNL = 256 +pkg syscall (freebsd-arm-cgo), const IEXTEN = 1024 +pkg syscall (freebsd-arm-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-arm-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-arm-cgo), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-arm-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-arm-cgo), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-arm-cgo), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-arm-cgo), const IFF_DEBUG = 4 +pkg syscall (freebsd-arm-cgo), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-arm-cgo), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-arm-cgo), const IFF_DYING = 2097152 +pkg syscall (freebsd-arm-cgo), const IFF_LINK0 = 4096 +pkg syscall (freebsd-arm-cgo), const IFF_LINK1 = 8192 +pkg syscall (freebsd-arm-cgo), const IFF_LINK2 = 16384 +pkg syscall (freebsd-arm-cgo), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-arm-cgo), const IFF_MONITOR = 262144 +pkg syscall (freebsd-arm-cgo), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-arm-cgo), const IFF_NOARP = 128 +pkg syscall (freebsd-arm-cgo), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-arm-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-arm-cgo), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-arm-cgo), const IFF_PROMISC = 256 +pkg syscall (freebsd-arm-cgo), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-arm-cgo), const IFF_RUNNING = 64 +pkg syscall (freebsd-arm-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-arm-cgo), const IFF_SMART = 32 +pkg syscall (freebsd-arm-cgo), const IFF_STATICARP = 524288 +pkg syscall (freebsd-arm-cgo), const IFNAMSIZ = 16 +pkg syscall (freebsd-arm-cgo), const IFT_1822 = 2 +pkg syscall (freebsd-arm-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-arm-cgo), const IFT_AAL2 = 187 +pkg syscall (freebsd-arm-cgo), const IFT_AAL5 = 49 +pkg syscall (freebsd-arm-cgo), const IFT_ADSL = 94 +pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-arm-cgo), const IFT_ARAP = 88 +pkg syscall (freebsd-arm-cgo), const IFT_ARCNET = 35 +pkg syscall (freebsd-arm-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-arm-cgo), const IFT_ASYNC = 84 +pkg syscall (freebsd-arm-cgo), const IFT_ATM = 37 +pkg syscall (freebsd-arm-cgo), const IFT_ATMDXI = 105 +pkg syscall (freebsd-arm-cgo), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-arm-cgo), const IFT_ATMIMA = 107 +pkg syscall (freebsd-arm-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-arm-cgo), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-arm-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-arm-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-arm-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-arm-cgo), const IFT_BRIDGE = 209 +pkg syscall (freebsd-arm-cgo), const IFT_BSC = 83 +pkg syscall (freebsd-arm-cgo), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-arm-cgo), const IFT_CEPT = 19 +pkg syscall (freebsd-arm-cgo), const IFT_CES = 133 +pkg syscall (freebsd-arm-cgo), const IFT_CHANNEL = 70 +pkg syscall (freebsd-arm-cgo), const IFT_CNR = 85 +pkg syscall (freebsd-arm-cgo), const IFT_COFFEE = 132 +pkg syscall (freebsd-arm-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-arm-cgo), const IFT_DCN = 141 +pkg syscall (freebsd-arm-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-arm-cgo), const IFT_DLSW = 74 +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-arm-cgo), const IFT_DS0 = 81 +pkg syscall (freebsd-arm-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-arm-cgo), const IFT_DS1FDL = 170 +pkg syscall (freebsd-arm-cgo), const IFT_DS3 = 30 +pkg syscall (freebsd-arm-cgo), const IFT_DTM = 140 +pkg syscall (freebsd-arm-cgo), const IFT_DVBASILN = 172 +pkg syscall (freebsd-arm-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-arm-cgo), const IFT_ENC = 244 +pkg syscall (freebsd-arm-cgo), const IFT_EON = 25 +pkg syscall (freebsd-arm-cgo), const IFT_EPLRS = 87 +pkg syscall (freebsd-arm-cgo), const IFT_ESCON = 73 +pkg syscall (freebsd-arm-cgo), const IFT_ETHER = 6 +pkg syscall (freebsd-arm-cgo), const IFT_FAITH = 242 +pkg syscall (freebsd-arm-cgo), const IFT_FAST = 125 +pkg syscall (freebsd-arm-cgo), const IFT_FASTETHER = 62 +pkg syscall (freebsd-arm-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-arm-cgo), const IFT_FDDI = 15 +pkg syscall (freebsd-arm-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-arm-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-arm-cgo), const IFT_FRELAY = 32 +pkg syscall (freebsd-arm-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-arm-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-arm-cgo), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-arm-cgo), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-arm-cgo), const IFT_G703AT64K = 66 +pkg syscall (freebsd-arm-cgo), const IFT_GIF = 240 +pkg syscall (freebsd-arm-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-arm-cgo), const IFT_GR303IDT = 178 +pkg syscall (freebsd-arm-cgo), const IFT_GR303RDT = 177 +pkg syscall (freebsd-arm-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-arm-cgo), const IFT_H323PROXY = 165 +pkg syscall (freebsd-arm-cgo), const IFT_HDH1822 = 3 +pkg syscall (freebsd-arm-cgo), const IFT_HDLC = 118 +pkg syscall (freebsd-arm-cgo), const IFT_HDSL2 = 168 +pkg syscall (freebsd-arm-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-arm-cgo), const IFT_HIPPI = 47 +pkg syscall (freebsd-arm-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-arm-cgo), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-arm-cgo), const IFT_HSSI = 46 +pkg syscall (freebsd-arm-cgo), const IFT_HY = 14 +pkg syscall (freebsd-arm-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-arm-cgo), const IFT_IDSL = 154 +pkg syscall (freebsd-arm-cgo), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-arm-cgo), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-arm-cgo), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-arm-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-arm-cgo), const IFT_IFGSN = 145 +pkg syscall (freebsd-arm-cgo), const IFT_IMT = 190 +pkg syscall (freebsd-arm-cgo), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-arm-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-arm-cgo), const IFT_IP = 126 +pkg syscall (freebsd-arm-cgo), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-arm-cgo), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-arm-cgo), const IFT_IPXIP = 249 +pkg syscall (freebsd-arm-cgo), const IFT_ISDN = 63 +pkg syscall (freebsd-arm-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-arm-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-arm-cgo), const IFT_ISDNS = 75 +pkg syscall (freebsd-arm-cgo), const IFT_ISDNU = 76 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88023 = 7 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88024 = 8 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025 = 9 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-arm-cgo), const IFT_ISO88026 = 10 +pkg syscall (freebsd-arm-cgo), const IFT_ISUP = 179 +pkg syscall (freebsd-arm-cgo), const IFT_L2VLAN = 135 +pkg syscall (freebsd-arm-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-arm-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-arm-cgo), const IFT_LAPB = 16 +pkg syscall (freebsd-arm-cgo), const IFT_LAPD = 77 +pkg syscall (freebsd-arm-cgo), const IFT_LAPF = 119 +pkg syscall (freebsd-arm-cgo), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-arm-cgo), const IFT_LOOP = 24 +pkg syscall (freebsd-arm-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-arm-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-arm-cgo), const IFT_MIOX25 = 38 +pkg syscall (freebsd-arm-cgo), const IFT_MODEM = 48 +pkg syscall (freebsd-arm-cgo), const IFT_MPC = 113 +pkg syscall (freebsd-arm-cgo), const IFT_MPLS = 166 +pkg syscall (freebsd-arm-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-arm-cgo), const IFT_MSDSL = 143 +pkg syscall (freebsd-arm-cgo), const IFT_MVL = 191 +pkg syscall (freebsd-arm-cgo), const IFT_MYRINET = 99 +pkg syscall (freebsd-arm-cgo), const IFT_NFAS = 175 +pkg syscall (freebsd-arm-cgo), const IFT_NSIP = 27 +pkg syscall (freebsd-arm-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-arm-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-arm-cgo), const IFT_OTHER = 1 +pkg syscall (freebsd-arm-cgo), const IFT_P10 = 12 +pkg syscall (freebsd-arm-cgo), const IFT_P80 = 13 +pkg syscall (freebsd-arm-cgo), const IFT_PARA = 34 +pkg syscall (freebsd-arm-cgo), const IFT_PFLOG = 246 +pkg syscall (freebsd-arm-cgo), const IFT_PFSYNC = 247 +pkg syscall (freebsd-arm-cgo), const IFT_PLC = 174 +pkg syscall (freebsd-arm-cgo), const IFT_POS = 171 +pkg syscall (freebsd-arm-cgo), const IFT_PPP = 23 +pkg syscall (freebsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-arm-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-arm-cgo), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-arm-cgo), const IFT_PROPMUX = 54 +pkg syscall (freebsd-arm-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-arm-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-arm-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-arm-cgo), const IFT_PVC = 241 +pkg syscall (freebsd-arm-cgo), const IFT_QLLC = 68 +pkg syscall (freebsd-arm-cgo), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-arm-cgo), const IFT_RADSL = 95 +pkg syscall (freebsd-arm-cgo), const IFT_REACHDSL = 192 +pkg syscall (freebsd-arm-cgo), const IFT_RFC1483 = 159 +pkg syscall (freebsd-arm-cgo), const IFT_RS232 = 33 +pkg syscall (freebsd-arm-cgo), const IFT_RSRB = 79 +pkg syscall (freebsd-arm-cgo), const IFT_SDLC = 17 +pkg syscall (freebsd-arm-cgo), const IFT_SDSL = 96 +pkg syscall (freebsd-arm-cgo), const IFT_SHDSL = 169 +pkg syscall (freebsd-arm-cgo), const IFT_SIP = 31 +pkg syscall (freebsd-arm-cgo), const IFT_SLIP = 28 +pkg syscall (freebsd-arm-cgo), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-arm-cgo), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-arm-cgo), const IFT_SONET = 39 +pkg syscall (freebsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-arm-cgo), const IFT_SONETPATH = 50 +pkg syscall (freebsd-arm-cgo), const IFT_SONETVT = 51 +pkg syscall (freebsd-arm-cgo), const IFT_SRP = 151 +pkg syscall (freebsd-arm-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-arm-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-arm-cgo), const IFT_STARLAN = 11 +pkg syscall (freebsd-arm-cgo), const IFT_STF = 215 +pkg syscall (freebsd-arm-cgo), const IFT_T1 = 18 +pkg syscall (freebsd-arm-cgo), const IFT_TDLC = 116 +pkg syscall (freebsd-arm-cgo), const IFT_TERMPAD = 91 +pkg syscall (freebsd-arm-cgo), const IFT_TR008 = 176 +pkg syscall (freebsd-arm-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-arm-cgo), const IFT_TUNNEL = 131 +pkg syscall (freebsd-arm-cgo), const IFT_ULTRA = 29 +pkg syscall (freebsd-arm-cgo), const IFT_USB = 160 +pkg syscall (freebsd-arm-cgo), const IFT_V11 = 64 +pkg syscall (freebsd-arm-cgo), const IFT_V35 = 45 +pkg syscall (freebsd-arm-cgo), const IFT_V36 = 65 +pkg syscall (freebsd-arm-cgo), const IFT_V37 = 120 +pkg syscall (freebsd-arm-cgo), const IFT_VDSL = 97 +pkg syscall (freebsd-arm-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEEM = 100 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-arm-cgo), const IFT_X213 = 93 +pkg syscall (freebsd-arm-cgo), const IFT_X25 = 5 +pkg syscall (freebsd-arm-cgo), const IFT_X25DDN = 4 +pkg syscall (freebsd-arm-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-arm-cgo), const IFT_X25MLP = 121 +pkg syscall (freebsd-arm-cgo), const IFT_X25PLE = 40 +pkg syscall (freebsd-arm-cgo), const IFT_XETHER = 26 +pkg syscall (freebsd-arm-cgo), const IGNBRK = 1 +pkg syscall (freebsd-arm-cgo), const IGNCR = 128 +pkg syscall (freebsd-arm-cgo), const IGNPAR = 4 +pkg syscall (freebsd-arm-cgo), const IMAXBEL = 8192 +pkg syscall (freebsd-arm-cgo), const INLCR = 64 +pkg syscall (freebsd-arm-cgo), const INPCK = 16 +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-arm-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-arm-cgo), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-arm-cgo), const IPPROTO_3PC = 34 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-arm-cgo), const IPPROTO_AH = 51 +pkg syscall (freebsd-arm-cgo), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-arm-cgo), const IPPROTO_APES = 99 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-arm-cgo), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-arm-cgo), const IPPROTO_BHA = 49 +pkg syscall (freebsd-arm-cgo), const IPPROTO_BLT = 30 +pkg syscall (freebsd-arm-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CARP = 112 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-arm-cgo), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-arm-cgo), const IPPROTO_DDP = 37 +pkg syscall (freebsd-arm-cgo), const IPPROTO_DGP = 86 +pkg syscall (freebsd-arm-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-arm-cgo), const IPPROTO_DONE = 257 +pkg syscall (freebsd-arm-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-arm-cgo), const IPPROTO_EGP = 8 +pkg syscall (freebsd-arm-cgo), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-arm-cgo), const IPPROTO_EON = 80 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ESP = 50 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-arm-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-arm-cgo), const IPPROTO_GGP = 3 +pkg syscall (freebsd-arm-cgo), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-arm-cgo), const IPPROTO_GRE = 47 +pkg syscall (freebsd-arm-cgo), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-arm-cgo), const IPPROTO_HMP = 20 +pkg syscall (freebsd-arm-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDP = 22 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGP = 85 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IL = 40 +pkg syscall (freebsd-arm-cgo), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-arm-cgo), const IPPROTO_INP = 32 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-arm-cgo), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-arm-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-arm-cgo), const IPPROTO_LARP = 91 +pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MAX = 256 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MH = 135 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MICP = 95 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MTP = 92 +pkg syscall (freebsd-arm-cgo), const IPPROTO_MUX = 18 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ND = 77 +pkg syscall (freebsd-arm-cgo), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-arm-cgo), const IPPROTO_NONE = 59 +pkg syscall (freebsd-arm-cgo), const IPPROTO_NSP = 31 +pkg syscall (freebsd-arm-cgo), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-arm-cgo), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-arm-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PGM = 113 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PIM = 103 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PRM = 21 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PUP = 12 +pkg syscall (freebsd-arm-cgo), const IPPROTO_PVP = 75 +pkg syscall (freebsd-arm-cgo), const IPPROTO_RAW = 255 +pkg syscall (freebsd-arm-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-arm-cgo), const IPPROTO_RDP = 27 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-arm-cgo), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-arm-cgo), const IPPROTO_RVD = 66 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SEND = 259 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SEP = 33 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-arm-cgo), const IPPROTO_ST = 7 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-arm-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TCF = 87 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TP = 29 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-arm-cgo), const IPPROTO_TTP = 84 +pkg syscall (freebsd-arm-cgo), const IPPROTO_VINES = 83 +pkg syscall (freebsd-arm-cgo), const IPPROTO_VISA = 70 +pkg syscall (freebsd-arm-cgo), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-arm-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-arm-cgo), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-arm-cgo), const IPPROTO_WSN = 74 +pkg syscall (freebsd-arm-cgo), const IPPROTO_XNET = 15 +pkg syscall (freebsd-arm-cgo), const IPPROTO_XTP = 36 +pkg syscall (freebsd-arm-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-arm-cgo), const IPV6_BINDANY = 64 +pkg syscall (freebsd-arm-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-arm-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-arm-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-arm-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-arm-cgo), const IPV6_FAITH = 29 +pkg syscall (freebsd-arm-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-arm-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-arm-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-arm-cgo), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-arm-cgo), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-arm-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-arm-cgo), const IPV6_FW_GET = 34 +pkg syscall (freebsd-arm-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-arm-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-arm-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-arm-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-arm-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-arm-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-arm-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-arm-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-arm-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-arm-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm-cgo), const IPV6_MMTU = 1280 +pkg syscall (freebsd-arm-cgo), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-arm-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-arm-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-arm-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-arm-cgo), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-arm-cgo), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm-cgo), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-arm-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR = 51 +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-arm-cgo), const IPV6_TCLASS = 61 +pkg syscall (freebsd-arm-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-arm-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-arm-cgo), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-arm-cgo), const IPV6_VERSION = 96 +pkg syscall (freebsd-arm-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-arm-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-arm-cgo), const IP_BINDANY = 24 +pkg syscall (freebsd-arm-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-arm-cgo), const IP_DF = 16384 +pkg syscall (freebsd-arm-cgo), const IP_DONTFRAG = 67 +pkg syscall (freebsd-arm-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-arm-cgo), const IP_FAITH = 22 +pkg syscall (freebsd-arm-cgo), const IP_FW3 = 48 +pkg syscall (freebsd-arm-cgo), const IP_FW_ADD = 50 +pkg syscall (freebsd-arm-cgo), const IP_FW_DEL = 51 +pkg syscall (freebsd-arm-cgo), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-arm-cgo), const IP_FW_GET = 54 +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-arm-cgo), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-arm-cgo), const IP_FW_ZERO = 53 +pkg syscall (freebsd-arm-cgo), const IP_HDRINCL = 2 +pkg syscall (freebsd-arm-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-arm-cgo), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-arm-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-arm-cgo), const IP_MF = 8192 +pkg syscall (freebsd-arm-cgo), const IP_MINTTL = 66 +pkg syscall (freebsd-arm-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm-cgo), const IP_MSFILTER = 74 +pkg syscall (freebsd-arm-cgo), const IP_MSS = 576 +pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-arm-cgo), const IP_OFFMASK = 8191 +pkg syscall (freebsd-arm-cgo), const IP_ONESBCAST = 23 +pkg syscall (freebsd-arm-cgo), const IP_OPTIONS = 1 +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE = 19 +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-arm-cgo), const IP_RECVIF = 20 +pkg syscall (freebsd-arm-cgo), const IP_RECVOPTS = 5 +pkg syscall (freebsd-arm-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-arm-cgo), const IP_RECVTOS = 68 +pkg syscall (freebsd-arm-cgo), const IP_RECVTTL = 65 +pkg syscall (freebsd-arm-cgo), const IP_RETOPTS = 8 +pkg syscall (freebsd-arm-cgo), const IP_RF = 32768 +pkg syscall (freebsd-arm-cgo), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-arm-cgo), const IP_RSVP_ON = 15 +pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-arm-cgo), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-arm-cgo), const IP_TOS = 3 +pkg syscall (freebsd-arm-cgo), const IP_TTL = 4 +pkg syscall (freebsd-arm-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-arm-cgo), const ISIG = 128 +pkg syscall (freebsd-arm-cgo), const ISTRIP = 32 +pkg syscall (freebsd-arm-cgo), const IXANY = 2048 +pkg syscall (freebsd-arm-cgo), const IXOFF = 1024 +pkg syscall (freebsd-arm-cgo), const IXON = 512 +pkg syscall (freebsd-arm-cgo), const ImplementsGetwd = false +pkg syscall (freebsd-arm-cgo), const LOCK_EX = 2 +pkg syscall (freebsd-arm-cgo), const LOCK_NB = 4 +pkg syscall (freebsd-arm-cgo), const LOCK_SH = 1 +pkg syscall (freebsd-arm-cgo), const LOCK_UN = 8 +pkg syscall (freebsd-arm-cgo), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-arm-cgo), const MADV_CORE = 9 +pkg syscall (freebsd-arm-cgo), const MADV_DONTNEED = 4 +pkg syscall (freebsd-arm-cgo), const MADV_FREE = 5 +pkg syscall (freebsd-arm-cgo), const MADV_NOCORE = 8 +pkg syscall (freebsd-arm-cgo), const MADV_NORMAL = 0 +pkg syscall (freebsd-arm-cgo), const MADV_NOSYNC = 6 +pkg syscall (freebsd-arm-cgo), const MADV_PROTECT = 10 +pkg syscall (freebsd-arm-cgo), const MADV_RANDOM = 1 +pkg syscall (freebsd-arm-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-arm-cgo), const MADV_WILLNEED = 3 +pkg syscall (freebsd-arm-cgo), const MAP_ANON = 4096 +pkg syscall (freebsd-arm-cgo), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-arm-cgo), const MAP_COPY = 2 +pkg syscall (freebsd-arm-cgo), const MAP_FILE = 0 +pkg syscall (freebsd-arm-cgo), const MAP_FIXED = 16 +pkg syscall (freebsd-arm-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-arm-cgo), const MAP_NOCORE = 131072 +pkg syscall (freebsd-arm-cgo), const MAP_NORESERVE = 64 +pkg syscall (freebsd-arm-cgo), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-arm-cgo), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-arm-cgo), const MAP_PRIVATE = 2 +pkg syscall (freebsd-arm-cgo), const MAP_RENAME = 32 +pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-arm-cgo), const MAP_SHARED = 1 +pkg syscall (freebsd-arm-cgo), const MAP_STACK = 1024 +pkg syscall (freebsd-arm-cgo), const MCL_CURRENT = 1 +pkg syscall (freebsd-arm-cgo), const MCL_FUTURE = 2 +pkg syscall (freebsd-arm-cgo), const MSG_COMPAT = 32768 +pkg syscall (freebsd-arm-cgo), const MSG_CTRUNC = 32 +pkg syscall (freebsd-arm-cgo), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-arm-cgo), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-arm-cgo), const MSG_EOF = 256 +pkg syscall (freebsd-arm-cgo), const MSG_EOR = 8 +pkg syscall (freebsd-arm-cgo), const MSG_NBIO = 16384 +pkg syscall (freebsd-arm-cgo), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-arm-cgo), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-arm-cgo), const MSG_OOB = 1 +pkg syscall (freebsd-arm-cgo), const MSG_PEEK = 2 +pkg syscall (freebsd-arm-cgo), const MSG_TRUNC = 16 +pkg syscall (freebsd-arm-cgo), const MSG_WAITALL = 64 +pkg syscall (freebsd-arm-cgo), const MS_ASYNC = 1 +pkg syscall (freebsd-arm-cgo), const MS_INVALIDATE = 2 +pkg syscall (freebsd-arm-cgo), const MS_SYNC = 0 +pkg syscall (freebsd-arm-cgo), const NET_RT_DUMP = 1 +pkg syscall (freebsd-arm-cgo), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-arm-cgo), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-arm-cgo), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-arm-cgo), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-arm-cgo), const NET_RT_MAXID = 6 +pkg syscall (freebsd-arm-cgo), const NOFLSH = 2147483648 +pkg syscall (freebsd-arm-cgo), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-arm-cgo), const NOTE_CHILD = 4 +pkg syscall (freebsd-arm-cgo), const NOTE_DELETE = 1 +pkg syscall (freebsd-arm-cgo), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-arm-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-arm-cgo), const NOTE_EXTEND = 4 +pkg syscall (freebsd-arm-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-arm-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-arm-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-arm-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-arm-cgo), const NOTE_FFNOP = 0 +pkg syscall (freebsd-arm-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-arm-cgo), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-arm-cgo), const NOTE_LINK = 16 +pkg syscall (freebsd-arm-cgo), const NOTE_LOWAT = 1 +pkg syscall (freebsd-arm-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-arm-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-arm-cgo), const NOTE_RENAME = 32 +pkg syscall (freebsd-arm-cgo), const NOTE_REVOKE = 64 +pkg syscall (freebsd-arm-cgo), const NOTE_TRACK = 1 +pkg syscall (freebsd-arm-cgo), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-arm-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-arm-cgo), const NOTE_WRITE = 2 +pkg syscall (freebsd-arm-cgo), const OCRNL = 16 +pkg syscall (freebsd-arm-cgo), const ONLCR = 2 +pkg syscall (freebsd-arm-cgo), const ONLRET = 64 +pkg syscall (freebsd-arm-cgo), const ONOCR = 32 +pkg syscall (freebsd-arm-cgo), const ONOEOT = 8 +pkg syscall (freebsd-arm-cgo), const OPOST = 1 +pkg syscall (freebsd-arm-cgo), const O_ACCMODE = 3 +pkg syscall (freebsd-arm-cgo), const O_APPEND = 8 +pkg syscall (freebsd-arm-cgo), const O_ASYNC = 64 +pkg syscall (freebsd-arm-cgo), const O_CLOEXEC = 0 +pkg syscall (freebsd-arm-cgo), const O_CREAT = 512 +pkg syscall (freebsd-arm-cgo), const O_DIRECT = 65536 +pkg syscall (freebsd-arm-cgo), const O_DIRECTORY = 131072 +pkg syscall (freebsd-arm-cgo), const O_EXCL = 2048 +pkg syscall (freebsd-arm-cgo), const O_EXEC = 262144 +pkg syscall (freebsd-arm-cgo), const O_EXLOCK = 32 +pkg syscall (freebsd-arm-cgo), const O_FSYNC = 128 +pkg syscall (freebsd-arm-cgo), const O_NDELAY = 4 +pkg syscall (freebsd-arm-cgo), const O_NOCTTY = 32768 +pkg syscall (freebsd-arm-cgo), const O_NOFOLLOW = 256 +pkg syscall (freebsd-arm-cgo), const O_NONBLOCK = 4 +pkg syscall (freebsd-arm-cgo), const O_SHLOCK = 16 +pkg syscall (freebsd-arm-cgo), const O_SYNC = 128 +pkg syscall (freebsd-arm-cgo), const O_TRUNC = 1024 +pkg syscall (freebsd-arm-cgo), const O_TTY_INIT = 524288 +pkg syscall (freebsd-arm-cgo), const PARENB = 4096 +pkg syscall (freebsd-arm-cgo), const PARMRK = 8 +pkg syscall (freebsd-arm-cgo), const PARODD = 8192 +pkg syscall (freebsd-arm-cgo), const PENDIN = 536870912 +pkg syscall (freebsd-arm-cgo), const PROT_EXEC = 4 +pkg syscall (freebsd-arm-cgo), const PROT_NONE = 0 +pkg syscall (freebsd-arm-cgo), const PROT_READ = 1 +pkg syscall (freebsd-arm-cgo), const PROT_WRITE = 2 +pkg syscall (freebsd-arm-cgo), const PTRACE_CONT = 7 +pkg syscall (freebsd-arm-cgo), const PTRACE_KILL = 8 +pkg syscall (freebsd-arm-cgo), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-arm-cgo), const RLIMIT_AS = 10 +pkg syscall (freebsd-arm-cgo), const RLIMIT_CORE = 4 +pkg syscall (freebsd-arm-cgo), const RLIMIT_CPU = 0 +pkg syscall (freebsd-arm-cgo), const RLIMIT_DATA = 2 +pkg syscall (freebsd-arm-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-arm-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-arm-cgo), const RLIMIT_STACK = 3 +pkg syscall (freebsd-arm-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-arm-cgo), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-arm-cgo), const RTAX_BRD = 7 +pkg syscall (freebsd-arm-cgo), const RTAX_DST = 0 +pkg syscall (freebsd-arm-cgo), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-arm-cgo), const RTAX_GENMASK = 3 +pkg syscall (freebsd-arm-cgo), const RTAX_IFA = 5 +pkg syscall (freebsd-arm-cgo), const RTAX_IFP = 4 +pkg syscall (freebsd-arm-cgo), const RTAX_MAX = 8 +pkg syscall (freebsd-arm-cgo), const RTAX_NETMASK = 2 +pkg syscall (freebsd-arm-cgo), const RTA_AUTHOR = 64 +pkg syscall (freebsd-arm-cgo), const RTA_BRD = 128 +pkg syscall (freebsd-arm-cgo), const RTA_DST = 1 +pkg syscall (freebsd-arm-cgo), const RTA_GATEWAY = 2 +pkg syscall (freebsd-arm-cgo), const RTA_GENMASK = 8 +pkg syscall (freebsd-arm-cgo), const RTA_IFA = 32 +pkg syscall (freebsd-arm-cgo), const RTA_IFP = 16 +pkg syscall (freebsd-arm-cgo), const RTA_NETMASK = 4 +pkg syscall (freebsd-arm-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-arm-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-arm-cgo), const RTF_DONE = 64 +pkg syscall (freebsd-arm-cgo), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-arm-cgo), const RTF_FMASK = 268752904 +pkg syscall (freebsd-arm-cgo), const RTF_GATEWAY = 2 +pkg syscall (freebsd-arm-cgo), const RTF_HOST = 4 +pkg syscall (freebsd-arm-cgo), const RTF_LLDATA = 1024 +pkg syscall (freebsd-arm-cgo), const RTF_LLINFO = 1024 +pkg syscall (freebsd-arm-cgo), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-arm-cgo), const RTF_MODIFIED = 32 +pkg syscall (freebsd-arm-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-arm-cgo), const RTF_PINNED = 1048576 +pkg syscall (freebsd-arm-cgo), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-arm-cgo), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-arm-cgo), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-arm-cgo), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-arm-cgo), const RTF_REJECT = 8 +pkg syscall (freebsd-arm-cgo), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-arm-cgo), const RTF_STATIC = 2048 +pkg syscall (freebsd-arm-cgo), const RTF_STICKY = 268435456 +pkg syscall (freebsd-arm-cgo), const RTF_UP = 1 +pkg syscall (freebsd-arm-cgo), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-arm-cgo), const RTM_ADD = 1 +pkg syscall (freebsd-arm-cgo), const RTM_CHANGE = 3 +pkg syscall (freebsd-arm-cgo), const RTM_DELADDR = 13 +pkg syscall (freebsd-arm-cgo), const RTM_DELETE = 2 +pkg syscall (freebsd-arm-cgo), const RTM_DELMADDR = 16 +pkg syscall (freebsd-arm-cgo), const RTM_GET = 4 +pkg syscall (freebsd-arm-cgo), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-arm-cgo), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-arm-cgo), const RTM_IFINFO = 14 +pkg syscall (freebsd-arm-cgo), const RTM_LOCK = 8 +pkg syscall (freebsd-arm-cgo), const RTM_LOSING = 5 +pkg syscall (freebsd-arm-cgo), const RTM_MISS = 7 +pkg syscall (freebsd-arm-cgo), const RTM_NEWADDR = 12 +pkg syscall (freebsd-arm-cgo), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-arm-cgo), const RTM_OLDADD = 9 +pkg syscall (freebsd-arm-cgo), const RTM_OLDDEL = 10 +pkg syscall (freebsd-arm-cgo), const RTM_REDIRECT = 6 +pkg syscall (freebsd-arm-cgo), const RTM_RESOLVE = 11 +pkg syscall (freebsd-arm-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-arm-cgo), const RTM_VERSION = 5 +pkg syscall (freebsd-arm-cgo), const RTV_EXPIRE = 4 +pkg syscall (freebsd-arm-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-arm-cgo), const RTV_MTU = 1 +pkg syscall (freebsd-arm-cgo), const RTV_RPIPE = 8 +pkg syscall (freebsd-arm-cgo), const RTV_RTT = 64 +pkg syscall (freebsd-arm-cgo), const RTV_RTTVAR = 128 +pkg syscall (freebsd-arm-cgo), const RTV_SPIPE = 16 +pkg syscall (freebsd-arm-cgo), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-arm-cgo), const RTV_WEIGHT = 256 +pkg syscall (freebsd-arm-cgo), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-arm-cgo), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-arm-cgo), const RT_NORTREF = 2 +pkg syscall (freebsd-arm-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-arm-cgo), const RUSAGE_SELF = 0 +pkg syscall (freebsd-arm-cgo), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-arm-cgo), const SCM_BINTIME = 4 +pkg syscall (freebsd-arm-cgo), const SCM_CREDS = 3 +pkg syscall (freebsd-arm-cgo), const SCM_RIGHTS = 1 +pkg syscall (freebsd-arm-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-arm-cgo), const SIGBUS = 10 +pkg syscall (freebsd-arm-cgo), const SIGCHLD = 20 +pkg syscall (freebsd-arm-cgo), const SIGCONT = 19 +pkg syscall (freebsd-arm-cgo), const SIGEMT = 7 +pkg syscall (freebsd-arm-cgo), const SIGINFO = 29 +pkg syscall (freebsd-arm-cgo), const SIGIO = 23 +pkg syscall (freebsd-arm-cgo), const SIGIOT = 6 +pkg syscall (freebsd-arm-cgo), const SIGLIBRT = 33 +pkg syscall (freebsd-arm-cgo), const SIGLWP = 32 +pkg syscall (freebsd-arm-cgo), const SIGPROF = 27 +pkg syscall (freebsd-arm-cgo), const SIGSTOP = 17 +pkg syscall (freebsd-arm-cgo), const SIGSYS = 12 +pkg syscall (freebsd-arm-cgo), const SIGTHR = 32 +pkg syscall (freebsd-arm-cgo), const SIGTSTP = 18 +pkg syscall (freebsd-arm-cgo), const SIGTTIN = 21 +pkg syscall (freebsd-arm-cgo), const SIGTTOU = 22 +pkg syscall (freebsd-arm-cgo), const SIGURG = 16 +pkg syscall (freebsd-arm-cgo), const SIGUSR1 = 30 +pkg syscall (freebsd-arm-cgo), const SIGUSR2 = 31 +pkg syscall (freebsd-arm-cgo), const SIGVTALRM = 26 +pkg syscall (freebsd-arm-cgo), const SIGWINCH = 28 +pkg syscall (freebsd-arm-cgo), const SIGXCPU = 24 +pkg syscall (freebsd-arm-cgo), const SIGXFSZ = 25 +pkg syscall (freebsd-arm-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-arm-cgo), const SIOCADDRT = 2150658570 +pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR = 2151967019 +pkg syscall (freebsd-arm-cgo), const SIOCAIFGROUP = 2149869959 +pkg syscall (freebsd-arm-cgo), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-arm-cgo), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-arm-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-arm-cgo), const SIOCDELRT = 2150658571 +pkg syscall (freebsd-arm-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-arm-cgo), const SIOCDIFGROUP = 2149869961 +pkg syscall (freebsd-arm-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-arm-cgo), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-arm-cgo), const SIOCGDRVSPEC = 3223087483 +pkg syscall (freebsd-arm-cgo), const SIOCGETSGCNT = 3222565392 +pkg syscall (freebsd-arm-cgo), const SIOCGETVIFCNT = 3222565391 +pkg syscall (freebsd-arm-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-arm-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-arm-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-arm-cgo), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-arm-cgo), const SIOCGIFCONF = 3221776676 +pkg syscall (freebsd-arm-cgo), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-arm-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-arm-cgo), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-arm-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-arm-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-arm-cgo), const SIOCGIFGMEMB = 3223611786 +pkg syscall (freebsd-arm-cgo), const SIOCGIFGROUP = 3223611784 +pkg syscall (freebsd-arm-cgo), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-arm-cgo), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-arm-cgo), const SIOCGIFMEDIA = 3223873848 +pkg syscall (freebsd-arm-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-arm-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-arm-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-arm-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-arm-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-arm-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS = 3274991931 +pkg syscall (freebsd-arm-cgo), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-arm-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-arm-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-arm-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-arm-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-arm-cgo), const SIOCIFGCLONERS = 3222038904 +pkg syscall (freebsd-arm-cgo), const SIOCSDRVSPEC = 2149345659 +pkg syscall (freebsd-arm-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-arm-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-arm-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-arm-cgo), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-arm-cgo), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-arm-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-arm-cgo), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-arm-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-arm-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-arm-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-arm-cgo), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-arm-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-arm-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-arm-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-arm-cgo), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-arm-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR = 2151967046 +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-arm-cgo), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-arm-cgo), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-arm-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-arm-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-arm-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-arm-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-arm-cgo), const SOCK_RDM = 4 +pkg syscall (freebsd-arm-cgo), const SOL_SOCKET = 65535 +pkg syscall (freebsd-arm-cgo), const SOMAXCONN = 128 +pkg syscall (freebsd-arm-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-arm-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-arm-cgo), const SO_BINTIME = 8192 +pkg syscall (freebsd-arm-cgo), const SO_BROADCAST = 32 +pkg syscall (freebsd-arm-cgo), const SO_DEBUG = 1 +pkg syscall (freebsd-arm-cgo), const SO_DONTROUTE = 16 +pkg syscall (freebsd-arm-cgo), const SO_ERROR = 4103 +pkg syscall (freebsd-arm-cgo), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-arm-cgo), const SO_LABEL = 4105 +pkg syscall (freebsd-arm-cgo), const SO_LINGER = 128 +pkg syscall (freebsd-arm-cgo), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-arm-cgo), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-arm-cgo), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-arm-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-arm-cgo), const SO_NO_DDP = 32768 +pkg syscall (freebsd-arm-cgo), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-arm-cgo), const SO_OOBINLINE = 256 +pkg syscall (freebsd-arm-cgo), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-arm-cgo), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-arm-cgo), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-arm-cgo), const SO_RCVBUF = 4098 +pkg syscall (freebsd-arm-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-arm-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-arm-cgo), const SO_REUSEADDR = 4 +pkg syscall (freebsd-arm-cgo), const SO_REUSEPORT = 512 +pkg syscall (freebsd-arm-cgo), const SO_SETFIB = 4116 +pkg syscall (freebsd-arm-cgo), const SO_SNDBUF = 4097 +pkg syscall (freebsd-arm-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-arm-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-arm-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-arm-cgo), const SO_TYPE = 4104 +pkg syscall (freebsd-arm-cgo), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-arm-cgo), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-arm-cgo), const SYS_ABORT2 = 463 +pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT = 30 +pkg syscall (freebsd-arm-cgo), const SYS_ACCESS = 33 +pkg syscall (freebsd-arm-cgo), const SYS_ACCT = 51 +pkg syscall (freebsd-arm-cgo), const SYS_ADJTIME = 140 +pkg syscall (freebsd-arm-cgo), const SYS_AUDIT = 445 +pkg syscall (freebsd-arm-cgo), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-arm-cgo), const SYS_AUDITON = 446 +pkg syscall (freebsd-arm-cgo), const SYS_BIND = 104 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_NEW = 514 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm-cgo), const SYS_CHDIR = 12 +pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-arm-cgo), const SYS_CHMOD = 15 +pkg syscall (freebsd-arm-cgo), const SYS_CHOWN = 16 +pkg syscall (freebsd-arm-cgo), const SYS_CHROOT = 61 +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-arm-cgo), const SYS_CLOSE = 6 +pkg syscall (freebsd-arm-cgo), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-arm-cgo), const SYS_CONNECT = 98 +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET = 484 +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-arm-cgo), const SYS_DUP = 41 +pkg syscall (freebsd-arm-cgo), const SYS_DUP2 = 90 +pkg syscall (freebsd-arm-cgo), const SYS_EACCESS = 376 +pkg syscall (freebsd-arm-cgo), const SYS_EXECVE = 59 +pkg syscall (freebsd-arm-cgo), const SYS_EXIT = 1 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-arm-cgo), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-arm-cgo), const SYS_FCHDIR = 13 +pkg syscall (freebsd-arm-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-arm-cgo), const SYS_FCHMOD = 124 +pkg syscall (freebsd-arm-cgo), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-arm-cgo), const SYS_FCHOWN = 123 +pkg syscall (freebsd-arm-cgo), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-arm-cgo), const SYS_FCNTL = 92 +pkg syscall (freebsd-arm-cgo), const SYS_FEXECVE = 492 +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-arm-cgo), const SYS_FHOPEN = 298 +pkg syscall (freebsd-arm-cgo), const SYS_FHSTAT = 299 +pkg syscall (freebsd-arm-cgo), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-arm-cgo), const SYS_FLOCK = 131 +pkg syscall (freebsd-arm-cgo), const SYS_FORK = 2 +pkg syscall (freebsd-arm-cgo), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_FTRUNCATE = 201 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_LSEEK = 199 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_MMAP = 197 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PREAD = 173 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PWRITE = 174 +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_TRUNCATE = 200 +pkg syscall (freebsd-arm-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm-cgo), const SYS_FSYNC = 95 +pkg syscall (freebsd-arm-cgo), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-arm-cgo), const SYS_FUTIMES = 206 +pkg syscall (freebsd-arm-cgo), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-arm-cgo), const SYS_GETAUID = 447 +pkg syscall (freebsd-arm-cgo), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-arm-cgo), const SYS_GETDENTS = 272 +pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-arm-cgo), const SYS_GETEGID = 43 +pkg syscall (freebsd-arm-cgo), const SYS_GETEUID = 25 +pkg syscall (freebsd-arm-cgo), const SYS_GETFH = 161 +pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm-cgo), const SYS_GETGID = 47 +pkg syscall (freebsd-arm-cgo), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-arm-cgo), const SYS_GETITIMER = 86 +pkg syscall (freebsd-arm-cgo), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-arm-cgo), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-arm-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-arm-cgo), const SYS_GETPGID = 207 +pkg syscall (freebsd-arm-cgo), const SYS_GETPGRP = 81 +pkg syscall (freebsd-arm-cgo), const SYS_GETPID = 20 +pkg syscall (freebsd-arm-cgo), const SYS_GETPPID = 39 +pkg syscall (freebsd-arm-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-arm-cgo), const SYS_GETRESGID = 361 +pkg syscall (freebsd-arm-cgo), const SYS_GETRESUID = 360 +pkg syscall (freebsd-arm-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-arm-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-arm-cgo), const SYS_GETSID = 310 +pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-arm-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-arm-cgo), const SYS_GETUID = 24 +pkg syscall (freebsd-arm-cgo), const SYS_IOCTL = 54 +pkg syscall (freebsd-arm-cgo), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-arm-cgo), const SYS_JAIL = 338 +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-arm-cgo), const SYS_KENV = 390 +pkg syscall (freebsd-arm-cgo), const SYS_KEVENT = 363 +pkg syscall (freebsd-arm-cgo), const SYS_KILL = 37 +pkg syscall (freebsd-arm-cgo), const SYS_KLDFIND = 306 +pkg syscall (freebsd-arm-cgo), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-arm-cgo), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-arm-cgo), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-arm-cgo), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-arm-cgo), const SYS_KLDSYM = 337 +pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-arm-cgo), const SYS_KQUEUE = 362 +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-arm-cgo), const SYS_KTRACE = 45 +pkg syscall (freebsd-arm-cgo), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-arm-cgo), const SYS_LCHMOD = 274 +pkg syscall (freebsd-arm-cgo), const SYS_LCHOWN = 254 +pkg syscall (freebsd-arm-cgo), const SYS_LGETFH = 160 +pkg syscall (freebsd-arm-cgo), const SYS_LINK = 9 +pkg syscall (freebsd-arm-cgo), const SYS_LINKAT = 495 +pkg syscall (freebsd-arm-cgo), const SYS_LISTEN = 106 +pkg syscall (freebsd-arm-cgo), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-arm-cgo), const SYS_LSEEK = 478 +pkg syscall (freebsd-arm-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm-cgo), const SYS_LUTIMES = 276 +pkg syscall (freebsd-arm-cgo), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-arm-cgo), const SYS_MADVISE = 75 +pkg syscall (freebsd-arm-cgo), const SYS_MINCORE = 78 +pkg syscall (freebsd-arm-cgo), const SYS_MINHERIT = 250 +pkg syscall (freebsd-arm-cgo), const SYS_MKDIR = 136 +pkg syscall (freebsd-arm-cgo), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-arm-cgo), const SYS_MKFIFO = 132 +pkg syscall (freebsd-arm-cgo), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-arm-cgo), const SYS_MKNOD = 14 +pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm-cgo), const SYS_MLOCK = 203 +pkg syscall (freebsd-arm-cgo), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-arm-cgo), const SYS_MMAP = 477 +pkg syscall (freebsd-arm-cgo), const SYS_MODFIND = 303 +pkg syscall (freebsd-arm-cgo), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-arm-cgo), const SYS_MODNEXT = 300 +pkg syscall (freebsd-arm-cgo), const SYS_MODSTAT = 301 +pkg syscall (freebsd-arm-cgo), const SYS_MOUNT = 21 +pkg syscall (freebsd-arm-cgo), const SYS_MPROTECT = 74 +pkg syscall (freebsd-arm-cgo), const SYS_MSYNC = 65 +pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-arm-cgo), const SYS_MUNMAP = 73 +pkg syscall (freebsd-arm-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-arm-cgo), const SYS_NFSTAT = 279 +pkg syscall (freebsd-arm-cgo), const SYS_NLSTAT = 280 +pkg syscall (freebsd-arm-cgo), const SYS_NMOUNT = 378 +pkg syscall (freebsd-arm-cgo), const SYS_NSTAT = 278 +pkg syscall (freebsd-arm-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-arm-cgo), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-arm-cgo), const SYS_OBREAK = 17 +pkg syscall (freebsd-arm-cgo), const SYS_OPEN = 5 +pkg syscall (freebsd-arm-cgo), const SYS_OPENAT = 499 +pkg syscall (freebsd-arm-cgo), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-arm-cgo), const SYS_OVADVISE = 72 +pkg syscall (freebsd-arm-cgo), const SYS_PATHCONF = 191 +pkg syscall (freebsd-arm-cgo), const SYS_PDFORK = 518 +pkg syscall (freebsd-arm-cgo), const SYS_PDGETPID = 520 +pkg syscall (freebsd-arm-cgo), const SYS_PDKILL = 519 +pkg syscall (freebsd-arm-cgo), const SYS_PIPE = 42 +pkg syscall (freebsd-arm-cgo), const SYS_POLL = 209 +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-arm-cgo), const SYS_PREAD = 475 +pkg syscall (freebsd-arm-cgo), const SYS_PREADV = 289 +pkg syscall (freebsd-arm-cgo), const SYS_PROFIL = 44 +pkg syscall (freebsd-arm-cgo), const SYS_PSELECT = 522 +pkg syscall (freebsd-arm-cgo), const SYS_PTRACE = 26 +pkg syscall (freebsd-arm-cgo), const SYS_PWRITE = 476 +pkg syscall (freebsd-arm-cgo), const SYS_PWRITEV = 290 +pkg syscall (freebsd-arm-cgo), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-arm-cgo), const SYS_READ = 3 +pkg syscall (freebsd-arm-cgo), const SYS_READLINK = 58 +pkg syscall (freebsd-arm-cgo), const SYS_READLINKAT = 500 +pkg syscall (freebsd-arm-cgo), const SYS_READV = 120 +pkg syscall (freebsd-arm-cgo), const SYS_REBOOT = 55 +pkg syscall (freebsd-arm-cgo), const SYS_RECVFROM = 29 +pkg syscall (freebsd-arm-cgo), const SYS_RECVMSG = 27 +pkg syscall (freebsd-arm-cgo), const SYS_RENAME = 128 +pkg syscall (freebsd-arm-cgo), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-arm-cgo), const SYS_REVOKE = 56 +pkg syscall (freebsd-arm-cgo), const SYS_RFORK = 251 +pkg syscall (freebsd-arm-cgo), const SYS_RMDIR = 137 +pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO = 166 +pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-arm-cgo), const SYS_SBRK = 69 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-arm-cgo), const SYS_SELECT = 93 +pkg syscall (freebsd-arm-cgo), const SYS_SENDFILE = 393 +pkg syscall (freebsd-arm-cgo), const SYS_SENDMSG = 28 +pkg syscall (freebsd-arm-cgo), const SYS_SENDTO = 133 +pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-arm-cgo), const SYS_SETAUID = 448 +pkg syscall (freebsd-arm-cgo), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-arm-cgo), const SYS_SETEGID = 182 +pkg syscall (freebsd-arm-cgo), const SYS_SETEUID = 183 +pkg syscall (freebsd-arm-cgo), const SYS_SETFIB = 175 +pkg syscall (freebsd-arm-cgo), const SYS_SETGID = 181 +pkg syscall (freebsd-arm-cgo), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-arm-cgo), const SYS_SETITIMER = 83 +pkg syscall (freebsd-arm-cgo), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-arm-cgo), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-arm-cgo), const SYS_SETPGID = 82 +pkg syscall (freebsd-arm-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-arm-cgo), const SYS_SETREGID = 127 +pkg syscall (freebsd-arm-cgo), const SYS_SETRESGID = 312 +pkg syscall (freebsd-arm-cgo), const SYS_SETRESUID = 311 +pkg syscall (freebsd-arm-cgo), const SYS_SETREUID = 126 +pkg syscall (freebsd-arm-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-arm-cgo), const SYS_SETSID = 147 +pkg syscall (freebsd-arm-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-arm-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-arm-cgo), const SYS_SETUID = 23 +pkg syscall (freebsd-arm-cgo), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-arm-cgo), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-arm-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-arm-cgo), const SYS_SIGACTION = 416 +pkg syscall (freebsd-arm-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-arm-cgo), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-arm-cgo), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-arm-cgo), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-arm-cgo), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-arm-cgo), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-arm-cgo), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-arm-cgo), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-arm-cgo), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-arm-cgo), const SYS_SOCKET = 97 +pkg syscall (freebsd-arm-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-arm-cgo), const SYS_SSTK = 70 +pkg syscall (freebsd-arm-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-arm-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-arm-cgo), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-arm-cgo), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-arm-cgo), const SYS_SWAPON = 85 +pkg syscall (freebsd-arm-cgo), const SYS_SYMLINK = 57 +pkg syscall (freebsd-arm-cgo), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-arm-cgo), const SYS_SYNC = 36 +pkg syscall (freebsd-arm-cgo), const SYS_SYSARCH = 165 +pkg syscall (freebsd-arm-cgo), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-arm-cgo), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL = 433 +pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-arm-cgo), const SYS_THR_NEW = 455 +pkg syscall (freebsd-arm-cgo), const SYS_THR_SELF = 432 +pkg syscall (freebsd-arm-cgo), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-arm-cgo), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-arm-cgo), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-arm-cgo), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-arm-cgo), const SYS_UMASK = 60 +pkg syscall (freebsd-arm-cgo), const SYS_UNDELETE = 205 +pkg syscall (freebsd-arm-cgo), const SYS_UNLINK = 10 +pkg syscall (freebsd-arm-cgo), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-arm-cgo), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-arm-cgo), const SYS_UTIMES = 138 +pkg syscall (freebsd-arm-cgo), const SYS_UTRACE = 335 +pkg syscall (freebsd-arm-cgo), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-arm-cgo), const SYS_VFORK = 66 +pkg syscall (freebsd-arm-cgo), const SYS_WAIT4 = 7 +pkg syscall (freebsd-arm-cgo), const SYS_WAIT6 = 532 +pkg syscall (freebsd-arm-cgo), const SYS_WRITE = 4 +pkg syscall (freebsd-arm-cgo), const SYS_WRITEV = 121 +pkg syscall (freebsd-arm-cgo), const SYS_YIELD = 321 +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_LOCK = 434 +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_UNLOCK = 435 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-arm-cgo), const SYS___GETCWD = 326 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-arm-cgo), const SYS___SETUGID = 374 +pkg syscall (freebsd-arm-cgo), const SYS___SYSCTL = 202 +pkg syscall (freebsd-arm-cgo), const S_IFMT = 61440 +pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr = 24 +pkg syscall (freebsd-arm-cgo), const SizeofBpfInsn = 8 +pkg syscall (freebsd-arm-cgo), const SizeofBpfProgram = 8 +pkg syscall (freebsd-arm-cgo), const SizeofBpfStat = 8 +pkg syscall (freebsd-arm-cgo), const SizeofBpfVersion = 4 +pkg syscall (freebsd-arm-cgo), const SizeofBpfZbuf = 12 +pkg syscall (freebsd-arm-cgo), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-arm-cgo), const SizeofCmsghdr = 12 +pkg syscall (freebsd-arm-cgo), const SizeofIPMreq = 8 +pkg syscall (freebsd-arm-cgo), const SizeofIPMreqn = 12 +pkg syscall (freebsd-arm-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-arm-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-arm-cgo), const SizeofIfData = 88 +pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr = 104 +pkg syscall (freebsd-arm-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-arm-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-arm-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-arm-cgo), const SizeofLinger = 8 +pkg syscall (freebsd-arm-cgo), const SizeofMsghdr = 28 +pkg syscall (freebsd-arm-cgo), const SizeofRtMetrics = 56 +pkg syscall (freebsd-arm-cgo), const SizeofRtMsghdr = 92 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink = 56 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix = 108 +pkg syscall (freebsd-arm-cgo), const TCIFLUSH = 1 +pkg syscall (freebsd-arm-cgo), const TCIOFLUSH = 3 +pkg syscall (freebsd-arm-cgo), const TCOFLUSH = 2 +pkg syscall (freebsd-arm-cgo), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-arm-cgo), const TCP_CONGESTION = 64 +pkg syscall (freebsd-arm-cgo), const TCP_INFO = 32 +pkg syscall (freebsd-arm-cgo), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-arm-cgo), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-arm-cgo), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-arm-cgo), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-arm-cgo), const TCP_MAXBURST = 4 +pkg syscall (freebsd-arm-cgo), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-arm-cgo), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-arm-cgo), const TCP_MAXSEG = 2 +pkg syscall (freebsd-arm-cgo), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-arm-cgo), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-arm-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-arm-cgo), const TCP_MD5SIG = 16 +pkg syscall (freebsd-arm-cgo), const TCP_MINMSS = 216 +pkg syscall (freebsd-arm-cgo), const TCP_MSS = 536 +pkg syscall (freebsd-arm-cgo), const TCP_NOOPT = 8 +pkg syscall (freebsd-arm-cgo), const TCP_NOPUSH = 4 +pkg syscall (freebsd-arm-cgo), const TCSAFLUSH = 2 +pkg syscall (freebsd-arm-cgo), const TIOCCBRK = 536900730 +pkg syscall (freebsd-arm-cgo), const TIOCCDTR = 536900728 +pkg syscall (freebsd-arm-cgo), const TIOCCONS = 2147775586 +pkg syscall (freebsd-arm-cgo), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-arm-cgo), const TIOCEXCL = 536900621 +pkg syscall (freebsd-arm-cgo), const TIOCEXT = 2147775584 +pkg syscall (freebsd-arm-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-arm-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-arm-cgo), const TIOCGETA = 1076655123 +pkg syscall (freebsd-arm-cgo), const TIOCGETD = 1074033690 +pkg syscall (freebsd-arm-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-arm-cgo), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-arm-cgo), const TIOCGSID = 1074033763 +pkg syscall (freebsd-arm-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-arm-cgo), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-arm-cgo), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-arm-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-arm-cgo), const TIOCMGET = 1074033770 +pkg syscall (freebsd-arm-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-arm-cgo), const TIOCMSET = 2147775597 +pkg syscall (freebsd-arm-cgo), const TIOCM_CAR = 64 +pkg syscall (freebsd-arm-cgo), const TIOCM_CD = 64 +pkg syscall (freebsd-arm-cgo), const TIOCM_CTS = 32 +pkg syscall (freebsd-arm-cgo), const TIOCM_DCD = 64 +pkg syscall (freebsd-arm-cgo), const TIOCM_DSR = 256 +pkg syscall (freebsd-arm-cgo), const TIOCM_DTR = 2 +pkg syscall (freebsd-arm-cgo), const TIOCM_LE = 1 +pkg syscall (freebsd-arm-cgo), const TIOCM_RI = 128 +pkg syscall (freebsd-arm-cgo), const TIOCM_RNG = 128 +pkg syscall (freebsd-arm-cgo), const TIOCM_RTS = 4 +pkg syscall (freebsd-arm-cgo), const TIOCM_SR = 16 +pkg syscall (freebsd-arm-cgo), const TIOCM_ST = 8 +pkg syscall (freebsd-arm-cgo), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-arm-cgo), const TIOCNXCL = 536900622 +pkg syscall (freebsd-arm-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-arm-cgo), const TIOCPKT = 2147775600 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_START = 8 +pkg syscall (freebsd-arm-cgo), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-arm-cgo), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-arm-cgo), const TIOCSBRK = 536900731 +pkg syscall (freebsd-arm-cgo), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-arm-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-arm-cgo), const TIOCSDTR = 536900729 +pkg syscall (freebsd-arm-cgo), const TIOCSETA = 2150396948 +pkg syscall (freebsd-arm-cgo), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-arm-cgo), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-arm-cgo), const TIOCSETD = 2147775515 +pkg syscall (freebsd-arm-cgo), const TIOCSIG = 537162847 +pkg syscall (freebsd-arm-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-arm-cgo), const TIOCSTART = 536900718 +pkg syscall (freebsd-arm-cgo), const TIOCSTAT = 536900709 +pkg syscall (freebsd-arm-cgo), const TIOCSTI = 2147578994 +pkg syscall (freebsd-arm-cgo), const TIOCSTOP = 536900719 +pkg syscall (freebsd-arm-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP = 1074558041 +pkg syscall (freebsd-arm-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-arm-cgo), const TOSTOP = 4194304 +pkg syscall (freebsd-arm-cgo), const VDISCARD = 15 +pkg syscall (freebsd-arm-cgo), const VDSUSP = 11 +pkg syscall (freebsd-arm-cgo), const VEOF = 0 +pkg syscall (freebsd-arm-cgo), const VEOL = 1 +pkg syscall (freebsd-arm-cgo), const VEOL2 = 2 +pkg syscall (freebsd-arm-cgo), const VERASE = 3 +pkg syscall (freebsd-arm-cgo), const VERASE2 = 7 +pkg syscall (freebsd-arm-cgo), const VINTR = 8 +pkg syscall (freebsd-arm-cgo), const VKILL = 5 +pkg syscall (freebsd-arm-cgo), const VLNEXT = 14 +pkg syscall (freebsd-arm-cgo), const VMIN = 16 +pkg syscall (freebsd-arm-cgo), const VQUIT = 9 +pkg syscall (freebsd-arm-cgo), const VREPRINT = 6 +pkg syscall (freebsd-arm-cgo), const VSTART = 12 +pkg syscall (freebsd-arm-cgo), const VSTATUS = 18 +pkg syscall (freebsd-arm-cgo), const VSTOP = 13 +pkg syscall (freebsd-arm-cgo), const VSUSP = 10 +pkg syscall (freebsd-arm-cgo), const VTIME = 17 +pkg syscall (freebsd-arm-cgo), const VWERASE = 4 +pkg syscall (freebsd-arm-cgo), const WCONTINUED = 4 +pkg syscall (freebsd-arm-cgo), const WCOREFLAG = 128 +pkg syscall (freebsd-arm-cgo), const WEXITED = 16 +pkg syscall (freebsd-arm-cgo), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-arm-cgo), const WNOHANG = 1 +pkg syscall (freebsd-arm-cgo), const WNOWAIT = 8 +pkg syscall (freebsd-arm-cgo), const WSTOPPED = 2 +pkg syscall (freebsd-arm-cgo), const WTRAPPED = 32 +pkg syscall (freebsd-arm-cgo), const WUNTRACED = 2 +pkg syscall (linux-386), const AF_ALG = 38 +pkg syscall (linux-386), const AF_APPLETALK = 5 +pkg syscall (linux-386), const AF_ASH = 18 +pkg syscall (linux-386), const AF_ATMPVC = 8 +pkg syscall (linux-386), const AF_ATMSVC = 20 +pkg syscall (linux-386), const AF_AX25 = 3 +pkg syscall (linux-386), const AF_BLUETOOTH = 31 +pkg syscall (linux-386), const AF_BRIDGE = 7 +pkg syscall (linux-386), const AF_CAIF = 37 +pkg syscall (linux-386), const AF_CAN = 29 +pkg syscall (linux-386), const AF_DECnet = 12 +pkg syscall (linux-386), const AF_ECONET = 19 +pkg syscall (linux-386), const AF_FILE = 1 +pkg syscall (linux-386), const AF_IEEE802154 = 36 +pkg syscall (linux-386), const AF_INET6 = 10 +pkg syscall (linux-386), const AF_IPX = 4 +pkg syscall (linux-386), const AF_IRDA = 23 +pkg syscall (linux-386), const AF_ISDN = 34 +pkg syscall (linux-386), const AF_IUCV = 32 +pkg syscall (linux-386), const AF_KEY = 15 +pkg syscall (linux-386), const AF_LLC = 26 +pkg syscall (linux-386), const AF_LOCAL = 1 +pkg syscall (linux-386), const AF_MAX = 39 +pkg syscall (linux-386), const AF_NETBEUI = 13 +pkg syscall (linux-386), const AF_NETLINK = 16 +pkg syscall (linux-386), const AF_NETROM = 6 +pkg syscall (linux-386), const AF_PACKET = 17 +pkg syscall (linux-386), const AF_PHONET = 35 +pkg syscall (linux-386), const AF_PPPOX = 24 +pkg syscall (linux-386), const AF_RDS = 21 +pkg syscall (linux-386), const AF_ROSE = 11 +pkg syscall (linux-386), const AF_ROUTE = 16 +pkg syscall (linux-386), const AF_RXRPC = 33 +pkg syscall (linux-386), const AF_SECURITY = 14 +pkg syscall (linux-386), const AF_SNA = 22 +pkg syscall (linux-386), const AF_TIPC = 30 +pkg syscall (linux-386), const AF_WANPIPE = 25 +pkg syscall (linux-386), const AF_X25 = 9 +pkg syscall (linux-386), const ARPHRD_ADAPT = 264 +pkg syscall (linux-386), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-386), const ARPHRD_ARCNET = 7 +pkg syscall (linux-386), const ARPHRD_ASH = 781 +pkg syscall (linux-386), const ARPHRD_ATM = 19 +pkg syscall (linux-386), const ARPHRD_AX25 = 3 +pkg syscall (linux-386), const ARPHRD_BIF = 775 +pkg syscall (linux-386), const ARPHRD_CHAOS = 5 +pkg syscall (linux-386), const ARPHRD_CISCO = 513 +pkg syscall (linux-386), const ARPHRD_CSLIP = 257 +pkg syscall (linux-386), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-386), const ARPHRD_DDCMP = 517 +pkg syscall (linux-386), const ARPHRD_DLCI = 15 +pkg syscall (linux-386), const ARPHRD_ECONET = 782 +pkg syscall (linux-386), const ARPHRD_EETHER = 2 +pkg syscall (linux-386), const ARPHRD_ETHER = 1 +pkg syscall (linux-386), const ARPHRD_EUI64 = 27 +pkg syscall (linux-386), const ARPHRD_FCAL = 785 +pkg syscall (linux-386), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-386), const ARPHRD_FCPL = 786 +pkg syscall (linux-386), const ARPHRD_FCPP = 784 +pkg syscall (linux-386), const ARPHRD_FDDI = 774 +pkg syscall (linux-386), const ARPHRD_FRAD = 770 +pkg syscall (linux-386), const ARPHRD_HDLC = 513 +pkg syscall (linux-386), const ARPHRD_HIPPI = 780 +pkg syscall (linux-386), const ARPHRD_HWX25 = 272 +pkg syscall (linux-386), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-386), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-386), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-386), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-386), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-386), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-386), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-386), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-386), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-386), const ARPHRD_IPDDP = 777 +pkg syscall (linux-386), const ARPHRD_IPGRE = 778 +pkg syscall (linux-386), const ARPHRD_IRDA = 783 +pkg syscall (linux-386), const ARPHRD_LAPB = 516 +pkg syscall (linux-386), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-386), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-386), const ARPHRD_METRICOM = 23 +pkg syscall (linux-386), const ARPHRD_NETROM = 0 +pkg syscall (linux-386), const ARPHRD_NONE = 65534 +pkg syscall (linux-386), const ARPHRD_PIMREG = 779 +pkg syscall (linux-386), const ARPHRD_PPP = 512 +pkg syscall (linux-386), const ARPHRD_PRONET = 4 +pkg syscall (linux-386), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-386), const ARPHRD_ROSE = 270 +pkg syscall (linux-386), const ARPHRD_RSRVD = 260 +pkg syscall (linux-386), const ARPHRD_SIT = 776 +pkg syscall (linux-386), const ARPHRD_SKIP = 771 +pkg syscall (linux-386), const ARPHRD_SLIP = 256 +pkg syscall (linux-386), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-386), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-386), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-386), const ARPHRD_VOID = 65535 +pkg syscall (linux-386), const ARPHRD_X25 = 271 +pkg syscall (linux-386), const B0 = 0 +pkg syscall (linux-386), const B1000000 = 4104 +pkg syscall (linux-386), const B110 = 3 +pkg syscall (linux-386), const B115200 = 4098 +pkg syscall (linux-386), const B1152000 = 4105 +pkg syscall (linux-386), const B1200 = 9 +pkg syscall (linux-386), const B134 = 4 +pkg syscall (linux-386), const B150 = 5 +pkg syscall (linux-386), const B1500000 = 4106 +pkg syscall (linux-386), const B1800 = 10 +pkg syscall (linux-386), const B19200 = 14 +pkg syscall (linux-386), const B200 = 6 +pkg syscall (linux-386), const B2000000 = 4107 +pkg syscall (linux-386), const B230400 = 4099 +pkg syscall (linux-386), const B2400 = 11 +pkg syscall (linux-386), const B2500000 = 4108 +pkg syscall (linux-386), const B300 = 7 +pkg syscall (linux-386), const B3000000 = 4109 +pkg syscall (linux-386), const B3500000 = 4110 +pkg syscall (linux-386), const B38400 = 15 +pkg syscall (linux-386), const B4000000 = 4111 +pkg syscall (linux-386), const B460800 = 4100 +pkg syscall (linux-386), const B4800 = 12 +pkg syscall (linux-386), const B50 = 1 +pkg syscall (linux-386), const B500000 = 4101 +pkg syscall (linux-386), const B57600 = 4097 +pkg syscall (linux-386), const B576000 = 4102 +pkg syscall (linux-386), const B600 = 8 +pkg syscall (linux-386), const B75 = 2 +pkg syscall (linux-386), const B921600 = 4103 +pkg syscall (linux-386), const B9600 = 13 +pkg syscall (linux-386), const BPF_A = 16 +pkg syscall (linux-386), const BPF_ABS = 32 +pkg syscall (linux-386), const BPF_ADD = 0 +pkg syscall (linux-386), const BPF_ALU = 4 +pkg syscall (linux-386), const BPF_AND = 80 +pkg syscall (linux-386), const BPF_B = 16 +pkg syscall (linux-386), const BPF_DIV = 48 +pkg syscall (linux-386), const BPF_H = 8 +pkg syscall (linux-386), const BPF_IMM = 0 +pkg syscall (linux-386), const BPF_IND = 64 +pkg syscall (linux-386), const BPF_JA = 0 +pkg syscall (linux-386), const BPF_JEQ = 16 +pkg syscall (linux-386), const BPF_JGE = 48 +pkg syscall (linux-386), const BPF_JGT = 32 +pkg syscall (linux-386), const BPF_JMP = 5 +pkg syscall (linux-386), const BPF_JSET = 64 +pkg syscall (linux-386), const BPF_K = 0 +pkg syscall (linux-386), const BPF_LD = 0 +pkg syscall (linux-386), const BPF_LDX = 1 +pkg syscall (linux-386), const BPF_LEN = 128 +pkg syscall (linux-386), const BPF_LSH = 96 +pkg syscall (linux-386), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-386), const BPF_MAXINSNS = 4096 +pkg syscall (linux-386), const BPF_MEM = 96 +pkg syscall (linux-386), const BPF_MEMWORDS = 16 +pkg syscall (linux-386), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-386), const BPF_MISC = 7 +pkg syscall (linux-386), const BPF_MSH = 160 +pkg syscall (linux-386), const BPF_MUL = 32 +pkg syscall (linux-386), const BPF_NEG = 128 +pkg syscall (linux-386), const BPF_OR = 64 +pkg syscall (linux-386), const BPF_RET = 6 +pkg syscall (linux-386), const BPF_RSH = 112 +pkg syscall (linux-386), const BPF_ST = 2 +pkg syscall (linux-386), const BPF_STX = 3 +pkg syscall (linux-386), const BPF_SUB = 16 +pkg syscall (linux-386), const BPF_TAX = 0 +pkg syscall (linux-386), const BPF_TXA = 128 +pkg syscall (linux-386), const BPF_W = 0 +pkg syscall (linux-386), const BPF_X = 8 +pkg syscall (linux-386), const BRKINT = 2 +pkg syscall (linux-386), const CLOCAL = 2048 +pkg syscall (linux-386), const CREAD = 128 +pkg syscall (linux-386), const CS5 = 0 +pkg syscall (linux-386), const CS6 = 16 +pkg syscall (linux-386), const CS7 = 32 +pkg syscall (linux-386), const CS8 = 48 +pkg syscall (linux-386), const CSIZE = 48 +pkg syscall (linux-386), const CSTOPB = 64 +pkg syscall (linux-386), const DT_BLK = 6 +pkg syscall (linux-386), const DT_CHR = 2 +pkg syscall (linux-386), const DT_DIR = 4 +pkg syscall (linux-386), const DT_FIFO = 1 +pkg syscall (linux-386), const DT_LNK = 10 +pkg syscall (linux-386), const DT_REG = 8 +pkg syscall (linux-386), const DT_SOCK = 12 +pkg syscall (linux-386), const DT_UNKNOWN = 0 +pkg syscall (linux-386), const DT_WHT = 14 +pkg syscall (linux-386), const E2BIG = 7 +pkg syscall (linux-386), const EACCES = 13 +pkg syscall (linux-386), const EADDRINUSE = 98 +pkg syscall (linux-386), const EADDRNOTAVAIL = 99 +pkg syscall (linux-386), const EADV = 68 +pkg syscall (linux-386), const EAFNOSUPPORT = 97 +pkg syscall (linux-386), const EAGAIN = 11 +pkg syscall (linux-386), const EALREADY = 114 +pkg syscall (linux-386), const EBADE = 52 +pkg syscall (linux-386), const EBADF = 9 +pkg syscall (linux-386), const EBADFD = 77 +pkg syscall (linux-386), const EBADMSG = 74 +pkg syscall (linux-386), const EBADR = 53 +pkg syscall (linux-386), const EBADRQC = 56 +pkg syscall (linux-386), const EBADSLT = 57 +pkg syscall (linux-386), const EBFONT = 59 +pkg syscall (linux-386), const EBUSY = 16 +pkg syscall (linux-386), const ECANCELED = 125 +pkg syscall (linux-386), const ECHILD = 10 +pkg syscall (linux-386), const ECHO = 8 +pkg syscall (linux-386), const ECHOCTL = 512 +pkg syscall (linux-386), const ECHOE = 16 +pkg syscall (linux-386), const ECHOK = 32 +pkg syscall (linux-386), const ECHOKE = 2048 +pkg syscall (linux-386), const ECHONL = 64 +pkg syscall (linux-386), const ECHOPRT = 1024 +pkg syscall (linux-386), const ECHRNG = 44 +pkg syscall (linux-386), const ECOMM = 70 +pkg syscall (linux-386), const ECONNABORTED = 103 +pkg syscall (linux-386), const ECONNREFUSED = 111 +pkg syscall (linux-386), const ECONNRESET = 104 +pkg syscall (linux-386), const EDEADLK = 35 +pkg syscall (linux-386), const EDEADLOCK = 35 +pkg syscall (linux-386), const EDESTADDRREQ = 89 +pkg syscall (linux-386), const EDOM = 33 +pkg syscall (linux-386), const EDOTDOT = 73 +pkg syscall (linux-386), const EDQUOT = 122 +pkg syscall (linux-386), const EEXIST = 17 +pkg syscall (linux-386), const EFAULT = 14 +pkg syscall (linux-386), const EFBIG = 27 +pkg syscall (linux-386), const EHOSTDOWN = 112 +pkg syscall (linux-386), const EHOSTUNREACH = 113 +pkg syscall (linux-386), const EIDRM = 43 +pkg syscall (linux-386), const EILSEQ = 84 +pkg syscall (linux-386), const EINPROGRESS = 115 +pkg syscall (linux-386), const EINTR = 4 +pkg syscall (linux-386), const EINVAL = 22 +pkg syscall (linux-386), const EIO = 5 +pkg syscall (linux-386), const EISCONN = 106 +pkg syscall (linux-386), const EISDIR = 21 +pkg syscall (linux-386), const EISNAM = 120 +pkg syscall (linux-386), const EKEYEXPIRED = 127 +pkg syscall (linux-386), const EKEYREJECTED = 129 +pkg syscall (linux-386), const EKEYREVOKED = 128 +pkg syscall (linux-386), const EL2HLT = 51 +pkg syscall (linux-386), const EL2NSYNC = 45 +pkg syscall (linux-386), const EL3HLT = 46 +pkg syscall (linux-386), const EL3RST = 47 +pkg syscall (linux-386), const ELIBACC = 79 +pkg syscall (linux-386), const ELIBBAD = 80 +pkg syscall (linux-386), const ELIBEXEC = 83 +pkg syscall (linux-386), const ELIBMAX = 82 +pkg syscall (linux-386), const ELIBSCN = 81 +pkg syscall (linux-386), const ELNRNG = 48 +pkg syscall (linux-386), const ELOOP = 40 +pkg syscall (linux-386), const EMEDIUMTYPE = 124 +pkg syscall (linux-386), const EMFILE = 24 +pkg syscall (linux-386), const EMLINK = 31 +pkg syscall (linux-386), const EMSGSIZE = 90 +pkg syscall (linux-386), const EMULTIHOP = 72 +pkg syscall (linux-386), const ENAMETOOLONG = 36 +pkg syscall (linux-386), const ENAVAIL = 119 +pkg syscall (linux-386), const ENETDOWN = 100 +pkg syscall (linux-386), const ENETRESET = 102 +pkg syscall (linux-386), const ENETUNREACH = 101 +pkg syscall (linux-386), const ENFILE = 23 +pkg syscall (linux-386), const ENOANO = 55 +pkg syscall (linux-386), const ENOBUFS = 105 +pkg syscall (linux-386), const ENOCSI = 50 +pkg syscall (linux-386), const ENODATA = 61 +pkg syscall (linux-386), const ENODEV = 19 +pkg syscall (linux-386), const ENOEXEC = 8 +pkg syscall (linux-386), const ENOKEY = 126 +pkg syscall (linux-386), const ENOLCK = 37 +pkg syscall (linux-386), const ENOLINK = 67 +pkg syscall (linux-386), const ENOMEDIUM = 123 +pkg syscall (linux-386), const ENOMEM = 12 +pkg syscall (linux-386), const ENOMSG = 42 +pkg syscall (linux-386), const ENONET = 64 +pkg syscall (linux-386), const ENOPKG = 65 +pkg syscall (linux-386), const ENOPROTOOPT = 92 +pkg syscall (linux-386), const ENOSPC = 28 +pkg syscall (linux-386), const ENOSR = 63 +pkg syscall (linux-386), const ENOSTR = 60 +pkg syscall (linux-386), const ENOSYS = 38 +pkg syscall (linux-386), const ENOTBLK = 15 +pkg syscall (linux-386), const ENOTCONN = 107 +pkg syscall (linux-386), const ENOTDIR = 20 +pkg syscall (linux-386), const ENOTEMPTY = 39 +pkg syscall (linux-386), const ENOTNAM = 118 +pkg syscall (linux-386), const ENOTRECOVERABLE = 131 +pkg syscall (linux-386), const ENOTSOCK = 88 +pkg syscall (linux-386), const ENOTSUP = 95 +pkg syscall (linux-386), const ENOTTY = 25 +pkg syscall (linux-386), const ENOTUNIQ = 76 +pkg syscall (linux-386), const ENXIO = 6 +pkg syscall (linux-386), const EOPNOTSUPP = 95 +pkg syscall (linux-386), const EOVERFLOW = 75 +pkg syscall (linux-386), const EOWNERDEAD = 130 +pkg syscall (linux-386), const EPERM = 1 +pkg syscall (linux-386), const EPFNOSUPPORT = 96 +pkg syscall (linux-386), const EPIPE = 32 +pkg syscall (linux-386), const EPOLLERR = 8 +pkg syscall (linux-386), const EPOLLET = -2147483648 +pkg syscall (linux-386), const EPOLLHUP = 16 +pkg syscall (linux-386), const EPOLLIN = 1 +pkg syscall (linux-386), const EPOLLMSG = 1024 +pkg syscall (linux-386), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-386), const EPOLLOUT = 4 +pkg syscall (linux-386), const EPOLLPRI = 2 +pkg syscall (linux-386), const EPOLLRDBAND = 128 +pkg syscall (linux-386), const EPOLLRDHUP = 8192 +pkg syscall (linux-386), const EPOLLRDNORM = 64 +pkg syscall (linux-386), const EPOLLWRBAND = 512 +pkg syscall (linux-386), const EPOLLWRNORM = 256 +pkg syscall (linux-386), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-386), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-386), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-386), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-386), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-386), const EPROTO = 71 +pkg syscall (linux-386), const EPROTONOSUPPORT = 93 +pkg syscall (linux-386), const EPROTOTYPE = 91 +pkg syscall (linux-386), const ERANGE = 34 +pkg syscall (linux-386), const EREMCHG = 78 +pkg syscall (linux-386), const EREMOTE = 66 +pkg syscall (linux-386), const EREMOTEIO = 121 +pkg syscall (linux-386), const ERESTART = 85 +pkg syscall (linux-386), const ERFKILL = 132 +pkg syscall (linux-386), const EROFS = 30 +pkg syscall (linux-386), const ESHUTDOWN = 108 +pkg syscall (linux-386), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-386), const ESPIPE = 29 +pkg syscall (linux-386), const ESRCH = 3 +pkg syscall (linux-386), const ESRMNT = 69 +pkg syscall (linux-386), const ESTALE = 116 +pkg syscall (linux-386), const ESTRPIPE = 86 +pkg syscall (linux-386), const ETH_P_1588 = 35063 +pkg syscall (linux-386), const ETH_P_8021Q = 33024 +pkg syscall (linux-386), const ETH_P_802_2 = 4 +pkg syscall (linux-386), const ETH_P_802_3 = 1 +pkg syscall (linux-386), const ETH_P_AARP = 33011 +pkg syscall (linux-386), const ETH_P_ALL = 3 +pkg syscall (linux-386), const ETH_P_AOE = 34978 +pkg syscall (linux-386), const ETH_P_ARCNET = 26 +pkg syscall (linux-386), const ETH_P_ARP = 2054 +pkg syscall (linux-386), const ETH_P_ATALK = 32923 +pkg syscall (linux-386), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-386), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-386), const ETH_P_AX25 = 2 +pkg syscall (linux-386), const ETH_P_BPQ = 2303 +pkg syscall (linux-386), const ETH_P_CAIF = 247 +pkg syscall (linux-386), const ETH_P_CAN = 12 +pkg syscall (linux-386), const ETH_P_CONTROL = 22 +pkg syscall (linux-386), const ETH_P_CUST = 24582 +pkg syscall (linux-386), const ETH_P_DDCMP = 6 +pkg syscall (linux-386), const ETH_P_DEC = 24576 +pkg syscall (linux-386), const ETH_P_DIAG = 24581 +pkg syscall (linux-386), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-386), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-386), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-386), const ETH_P_DSA = 27 +pkg syscall (linux-386), const ETH_P_ECONET = 24 +pkg syscall (linux-386), const ETH_P_EDSA = 56026 +pkg syscall (linux-386), const ETH_P_FCOE = 35078 +pkg syscall (linux-386), const ETH_P_FIP = 35092 +pkg syscall (linux-386), const ETH_P_HDLC = 25 +pkg syscall (linux-386), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-386), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-386), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-386), const ETH_P_IP = 2048 +pkg syscall (linux-386), const ETH_P_IPV6 = 34525 +pkg syscall (linux-386), const ETH_P_IPX = 33079 +pkg syscall (linux-386), const ETH_P_IRDA = 23 +pkg syscall (linux-386), const ETH_P_LAT = 24580 +pkg syscall (linux-386), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-386), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-386), const ETH_P_LOOP = 96 +pkg syscall (linux-386), const ETH_P_MOBITEX = 21 +pkg syscall (linux-386), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-386), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-386), const ETH_P_PAE = 34958 +pkg syscall (linux-386), const ETH_P_PAUSE = 34824 +pkg syscall (linux-386), const ETH_P_PHONET = 245 +pkg syscall (linux-386), const ETH_P_PPPTALK = 16 +pkg syscall (linux-386), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-386), const ETH_P_PPP_MP = 8 +pkg syscall (linux-386), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-386), const ETH_P_PUP = 512 +pkg syscall (linux-386), const ETH_P_PUPAT = 513 +pkg syscall (linux-386), const ETH_P_RARP = 32821 +pkg syscall (linux-386), const ETH_P_SCA = 24583 +pkg syscall (linux-386), const ETH_P_SLOW = 34825 +pkg syscall (linux-386), const ETH_P_SNAP = 5 +pkg syscall (linux-386), const ETH_P_TEB = 25944 +pkg syscall (linux-386), const ETH_P_TIPC = 35018 +pkg syscall (linux-386), const ETH_P_TRAILER = 28 +pkg syscall (linux-386), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-386), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-386), const ETH_P_WCCP = 34878 +pkg syscall (linux-386), const ETH_P_X25 = 2053 +pkg syscall (linux-386), const ETIME = 62 +pkg syscall (linux-386), const ETIMEDOUT = 110 +pkg syscall (linux-386), const ETOOMANYREFS = 109 +pkg syscall (linux-386), const ETXTBSY = 26 +pkg syscall (linux-386), const EUCLEAN = 117 +pkg syscall (linux-386), const EUNATCH = 49 +pkg syscall (linux-386), const EUSERS = 87 +pkg syscall (linux-386), const EWOULDBLOCK = 11 +pkg syscall (linux-386), const EXDEV = 18 +pkg syscall (linux-386), const EXFULL = 54 +pkg syscall (linux-386), const FD_CLOEXEC = 1 +pkg syscall (linux-386), const FD_SETSIZE = 1024 +pkg syscall (linux-386), const FLUSHO = 4096 +pkg syscall (linux-386), const F_DUPFD = 0 +pkg syscall (linux-386), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-386), const F_EXLCK = 4 +pkg syscall (linux-386), const F_GETFD = 1 +pkg syscall (linux-386), const F_GETFL = 3 +pkg syscall (linux-386), const F_GETLEASE = 1025 +pkg syscall (linux-386), const F_GETLK = 12 +pkg syscall (linux-386), const F_GETLK64 = 12 +pkg syscall (linux-386), const F_GETOWN = 9 +pkg syscall (linux-386), const F_GETOWN_EX = 16 +pkg syscall (linux-386), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-386), const F_GETSIG = 11 +pkg syscall (linux-386), const F_LOCK = 1 +pkg syscall (linux-386), const F_NOTIFY = 1026 +pkg syscall (linux-386), const F_OK = 0 +pkg syscall (linux-386), const F_RDLCK = 0 +pkg syscall (linux-386), const F_SETFD = 2 +pkg syscall (linux-386), const F_SETFL = 4 +pkg syscall (linux-386), const F_SETLEASE = 1024 +pkg syscall (linux-386), const F_SETLK = 13 +pkg syscall (linux-386), const F_SETLK64 = 13 +pkg syscall (linux-386), const F_SETLKW = 14 +pkg syscall (linux-386), const F_SETLKW64 = 14 +pkg syscall (linux-386), const F_SETOWN = 8 +pkg syscall (linux-386), const F_SETOWN_EX = 15 +pkg syscall (linux-386), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-386), const F_SETSIG = 10 +pkg syscall (linux-386), const F_SHLCK = 8 +pkg syscall (linux-386), const F_TEST = 3 +pkg syscall (linux-386), const F_TLOCK = 2 +pkg syscall (linux-386), const F_ULOCK = 0 +pkg syscall (linux-386), const F_UNLCK = 2 +pkg syscall (linux-386), const F_WRLCK = 1 +pkg syscall (linux-386), const HUPCL = 1024 +pkg syscall (linux-386), const ICANON = 2 +pkg syscall (linux-386), const ICRNL = 256 +pkg syscall (linux-386), const IEXTEN = 32768 +pkg syscall (linux-386), const IFA_ADDRESS = 1 +pkg syscall (linux-386), const IFA_ANYCAST = 5 +pkg syscall (linux-386), const IFA_BROADCAST = 4 +pkg syscall (linux-386), const IFA_CACHEINFO = 6 +pkg syscall (linux-386), const IFA_F_DADFAILED = 8 +pkg syscall (linux-386), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-386), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-386), const IFA_F_NODAD = 2 +pkg syscall (linux-386), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-386), const IFA_F_PERMANENT = 128 +pkg syscall (linux-386), const IFA_F_SECONDARY = 1 +pkg syscall (linux-386), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-386), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-386), const IFA_LABEL = 3 +pkg syscall (linux-386), const IFA_LOCAL = 2 +pkg syscall (linux-386), const IFA_MAX = 7 +pkg syscall (linux-386), const IFA_MULTICAST = 7 +pkg syscall (linux-386), const IFA_UNSPEC = 0 +pkg syscall (linux-386), const IFF_ALLMULTI = 512 +pkg syscall (linux-386), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-386), const IFF_DEBUG = 4 +pkg syscall (linux-386), const IFF_DYNAMIC = 32768 +pkg syscall (linux-386), const IFF_LOOPBACK = 8 +pkg syscall (linux-386), const IFF_MASTER = 1024 +pkg syscall (linux-386), const IFF_MULTICAST = 4096 +pkg syscall (linux-386), const IFF_NOARP = 128 +pkg syscall (linux-386), const IFF_NOTRAILERS = 32 +pkg syscall (linux-386), const IFF_NO_PI = 4096 +pkg syscall (linux-386), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-386), const IFF_POINTOPOINT = 16 +pkg syscall (linux-386), const IFF_PORTSEL = 8192 +pkg syscall (linux-386), const IFF_PROMISC = 256 +pkg syscall (linux-386), const IFF_RUNNING = 64 +pkg syscall (linux-386), const IFF_SLAVE = 2048 +pkg syscall (linux-386), const IFF_TAP = 2 +pkg syscall (linux-386), const IFF_TUN = 1 +pkg syscall (linux-386), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-386), const IFF_VNET_HDR = 16384 +pkg syscall (linux-386), const IFLA_ADDRESS = 1 +pkg syscall (linux-386), const IFLA_BROADCAST = 2 +pkg syscall (linux-386), const IFLA_COST = 8 +pkg syscall (linux-386), const IFLA_IFALIAS = 20 +pkg syscall (linux-386), const IFLA_IFNAME = 3 +pkg syscall (linux-386), const IFLA_LINK = 5 +pkg syscall (linux-386), const IFLA_LINKINFO = 18 +pkg syscall (linux-386), const IFLA_LINKMODE = 17 +pkg syscall (linux-386), const IFLA_MAP = 14 +pkg syscall (linux-386), const IFLA_MASTER = 10 +pkg syscall (linux-386), const IFLA_MAX = 29 +pkg syscall (linux-386), const IFLA_MTU = 4 +pkg syscall (linux-386), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-386), const IFLA_OPERSTATE = 16 +pkg syscall (linux-386), const IFLA_PRIORITY = 9 +pkg syscall (linux-386), const IFLA_PROTINFO = 12 +pkg syscall (linux-386), const IFLA_QDISC = 6 +pkg syscall (linux-386), const IFLA_STATS = 7 +pkg syscall (linux-386), const IFLA_TXQLEN = 13 +pkg syscall (linux-386), const IFLA_UNSPEC = 0 +pkg syscall (linux-386), const IFLA_WEIGHT = 15 +pkg syscall (linux-386), const IFLA_WIRELESS = 11 +pkg syscall (linux-386), const IFNAMSIZ = 16 +pkg syscall (linux-386), const IGNBRK = 1 +pkg syscall (linux-386), const IGNCR = 128 +pkg syscall (linux-386), const IGNPAR = 4 +pkg syscall (linux-386), const IMAXBEL = 8192 +pkg syscall (linux-386), const INLCR = 64 +pkg syscall (linux-386), const INPCK = 16 +pkg syscall (linux-386), const IN_ACCESS = 1 +pkg syscall (linux-386), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-386), const IN_ATTRIB = 4 +pkg syscall (linux-386), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-386), const IN_CLASSA_MAX = 128 +pkg syscall (linux-386), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-386), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-386), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-386), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-386), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-386), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-386), const IN_CLASSC_HOST = 255 +pkg syscall (linux-386), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-386), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-386), const IN_CLOEXEC = 524288 +pkg syscall (linux-386), const IN_CLOSE = 24 +pkg syscall (linux-386), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-386), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-386), const IN_CREATE = 256 +pkg syscall (linux-386), const IN_DELETE = 512 +pkg syscall (linux-386), const IN_DELETE_SELF = 1024 +pkg syscall (linux-386), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-386), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-386), const IN_IGNORED = 32768 +pkg syscall (linux-386), const IN_ISDIR = 1073741824 +pkg syscall (linux-386), const IN_LOOPBACKNET = 127 +pkg syscall (linux-386), const IN_MASK_ADD = 536870912 +pkg syscall (linux-386), const IN_MODIFY = 2 +pkg syscall (linux-386), const IN_MOVE = 192 +pkg syscall (linux-386), const IN_MOVED_FROM = 64 +pkg syscall (linux-386), const IN_MOVED_TO = 128 +pkg syscall (linux-386), const IN_MOVE_SELF = 2048 +pkg syscall (linux-386), const IN_NONBLOCK = 2048 +pkg syscall (linux-386), const IN_ONESHOT = 2147483648 +pkg syscall (linux-386), const IN_ONLYDIR = 16777216 +pkg syscall (linux-386), const IN_OPEN = 32 +pkg syscall (linux-386), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-386), const IN_UNMOUNT = 8192 +pkg syscall (linux-386), const IPPROTO_AH = 51 +pkg syscall (linux-386), const IPPROTO_COMP = 108 +pkg syscall (linux-386), const IPPROTO_DCCP = 33 +pkg syscall (linux-386), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-386), const IPPROTO_EGP = 8 +pkg syscall (linux-386), const IPPROTO_ENCAP = 98 +pkg syscall (linux-386), const IPPROTO_ESP = 50 +pkg syscall (linux-386), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-386), const IPPROTO_GRE = 47 +pkg syscall (linux-386), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-386), const IPPROTO_ICMP = 1 +pkg syscall (linux-386), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-386), const IPPROTO_IDP = 22 +pkg syscall (linux-386), const IPPROTO_IGMP = 2 +pkg syscall (linux-386), const IPPROTO_IPIP = 4 +pkg syscall (linux-386), const IPPROTO_MTP = 92 +pkg syscall (linux-386), const IPPROTO_NONE = 59 +pkg syscall (linux-386), const IPPROTO_PIM = 103 +pkg syscall (linux-386), const IPPROTO_PUP = 12 +pkg syscall (linux-386), const IPPROTO_RAW = 255 +pkg syscall (linux-386), const IPPROTO_ROUTING = 43 +pkg syscall (linux-386), const IPPROTO_RSVP = 46 +pkg syscall (linux-386), const IPPROTO_SCTP = 132 +pkg syscall (linux-386), const IPPROTO_TP = 29 +pkg syscall (linux-386), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-386), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-386), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-386), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-386), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-386), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-386), const IPV6_2292RTHDR = 5 +pkg syscall (linux-386), const IPV6_ADDRFORM = 1 +pkg syscall (linux-386), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-386), const IPV6_AUTHHDR = 10 +pkg syscall (linux-386), const IPV6_CHECKSUM = 7 +pkg syscall (linux-386), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-386), const IPV6_DSTOPTS = 59 +pkg syscall (linux-386), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-386), const IPV6_HOPOPTS = 54 +pkg syscall (linux-386), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-386), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-386), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-386), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-386), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-386), const IPV6_MTU = 24 +pkg syscall (linux-386), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-386), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-386), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-386), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-386), const IPV6_NEXTHOP = 9 +pkg syscall (linux-386), const IPV6_PKTINFO = 50 +pkg syscall (linux-386), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-386), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-386), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-386), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-386), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-386), const IPV6_RECVERR = 25 +pkg syscall (linux-386), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-386), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-386), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-386), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-386), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-386), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-386), const IPV6_RTHDR = 57 +pkg syscall (linux-386), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-386), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-386), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-386), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-386), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-386), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-386), const IPV6_TCLASS = 67 +pkg syscall (linux-386), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-386), const IPV6_V6ONLY = 26 +pkg syscall (linux-386), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-386), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-386), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-386), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-386), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-386), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-386), const IP_DF = 16384 +pkg syscall (linux-386), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-386), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-386), const IP_FREEBIND = 15 +pkg syscall (linux-386), const IP_HDRINCL = 3 +pkg syscall (linux-386), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-386), const IP_MAXPACKET = 65535 +pkg syscall (linux-386), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-386), const IP_MF = 8192 +pkg syscall (linux-386), const IP_MINTTL = 21 +pkg syscall (linux-386), const IP_MSFILTER = 41 +pkg syscall (linux-386), const IP_MSS = 576 +pkg syscall (linux-386), const IP_MTU = 14 +pkg syscall (linux-386), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-386), const IP_MULTICAST_IF = 32 +pkg syscall (linux-386), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-386), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-386), const IP_OFFMASK = 8191 +pkg syscall (linux-386), const IP_OPTIONS = 4 +pkg syscall (linux-386), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-386), const IP_PASSSEC = 18 +pkg syscall (linux-386), const IP_PKTINFO = 8 +pkg syscall (linux-386), const IP_PKTOPTIONS = 9 +pkg syscall (linux-386), const IP_PMTUDISC = 10 +pkg syscall (linux-386), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-386), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-386), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-386), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-386), const IP_RECVERR = 11 +pkg syscall (linux-386), const IP_RECVOPTS = 6 +pkg syscall (linux-386), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-386), const IP_RECVRETOPTS = 7 +pkg syscall (linux-386), const IP_RECVTOS = 13 +pkg syscall (linux-386), const IP_RECVTTL = 12 +pkg syscall (linux-386), const IP_RETOPTS = 7 +pkg syscall (linux-386), const IP_RF = 32768 +pkg syscall (linux-386), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-386), const IP_TOS = 1 +pkg syscall (linux-386), const IP_TRANSPARENT = 19 +pkg syscall (linux-386), const IP_TTL = 2 +pkg syscall (linux-386), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-386), const IP_XFRM_POLICY = 17 +pkg syscall (linux-386), const ISIG = 1 +pkg syscall (linux-386), const ISTRIP = 32 +pkg syscall (linux-386), const IUCLC = 512 +pkg syscall (linux-386), const IUTF8 = 16384 +pkg syscall (linux-386), const IXANY = 2048 +pkg syscall (linux-386), const IXOFF = 4096 +pkg syscall (linux-386), const IXON = 1024 +pkg syscall (linux-386), const ImplementsGetwd = true +pkg syscall (linux-386), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-386), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-386), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-386), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-386), const LOCK_EX = 2 +pkg syscall (linux-386), const LOCK_NB = 4 +pkg syscall (linux-386), const LOCK_SH = 1 +pkg syscall (linux-386), const LOCK_UN = 8 +pkg syscall (linux-386), const MADV_DOFORK = 11 +pkg syscall (linux-386), const MADV_DONTFORK = 10 +pkg syscall (linux-386), const MADV_DONTNEED = 4 +pkg syscall (linux-386), const MADV_HUGEPAGE = 14 +pkg syscall (linux-386), const MADV_HWPOISON = 100 +pkg syscall (linux-386), const MADV_MERGEABLE = 12 +pkg syscall (linux-386), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-386), const MADV_NORMAL = 0 +pkg syscall (linux-386), const MADV_RANDOM = 1 +pkg syscall (linux-386), const MADV_REMOVE = 9 +pkg syscall (linux-386), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-386), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-386), const MADV_WILLNEED = 3 +pkg syscall (linux-386), const MAP_32BIT = 64 +pkg syscall (linux-386), const MAP_ANON = 32 +pkg syscall (linux-386), const MAP_ANONYMOUS = 32 +pkg syscall (linux-386), const MAP_DENYWRITE = 2048 +pkg syscall (linux-386), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-386), const MAP_FILE = 0 +pkg syscall (linux-386), const MAP_FIXED = 16 +pkg syscall (linux-386), const MAP_GROWSDOWN = 256 +pkg syscall (linux-386), const MAP_HUGETLB = 262144 +pkg syscall (linux-386), const MAP_LOCKED = 8192 +pkg syscall (linux-386), const MAP_NONBLOCK = 65536 +pkg syscall (linux-386), const MAP_NORESERVE = 16384 +pkg syscall (linux-386), const MAP_POPULATE = 32768 +pkg syscall (linux-386), const MAP_PRIVATE = 2 +pkg syscall (linux-386), const MAP_SHARED = 1 +pkg syscall (linux-386), const MAP_STACK = 131072 +pkg syscall (linux-386), const MAP_TYPE = 15 +pkg syscall (linux-386), const MCL_CURRENT = 1 +pkg syscall (linux-386), const MCL_FUTURE = 2 +pkg syscall (linux-386), const MNT_DETACH = 2 +pkg syscall (linux-386), const MNT_EXPIRE = 4 +pkg syscall (linux-386), const MNT_FORCE = 1 +pkg syscall (linux-386), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-386), const MSG_CONFIRM = 2048 +pkg syscall (linux-386), const MSG_CTRUNC = 8 +pkg syscall (linux-386), const MSG_DONTROUTE = 4 +pkg syscall (linux-386), const MSG_DONTWAIT = 64 +pkg syscall (linux-386), const MSG_EOR = 128 +pkg syscall (linux-386), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-386), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-386), const MSG_FASTOPEN ideal-int +pkg syscall (linux-386), const MSG_FIN = 512 +pkg syscall (linux-386), const MSG_MORE = 32768 +pkg syscall (linux-386), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-386), const MSG_OOB = 1 +pkg syscall (linux-386), const MSG_PEEK = 2 +pkg syscall (linux-386), const MSG_PROXY = 16 +pkg syscall (linux-386), const MSG_RST = 4096 +pkg syscall (linux-386), const MSG_SYN = 1024 +pkg syscall (linux-386), const MSG_TRUNC = 32 +pkg syscall (linux-386), const MSG_TRYHARD = 4 +pkg syscall (linux-386), const MSG_WAITALL = 256 +pkg syscall (linux-386), const MSG_WAITFORONE = 65536 +pkg syscall (linux-386), const MS_ACTIVE = 1073741824 +pkg syscall (linux-386), const MS_ASYNC = 1 +pkg syscall (linux-386), const MS_BIND = 4096 +pkg syscall (linux-386), const MS_DIRSYNC = 128 +pkg syscall (linux-386), const MS_INVALIDATE = 2 +pkg syscall (linux-386), const MS_I_VERSION = 8388608 +pkg syscall (linux-386), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-386), const MS_MANDLOCK = 64 +pkg syscall (linux-386), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-386), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-386), const MS_MOVE = 8192 +pkg syscall (linux-386), const MS_NOATIME = 1024 +pkg syscall (linux-386), const MS_NODEV = 4 +pkg syscall (linux-386), const MS_NODIRATIME = 2048 +pkg syscall (linux-386), const MS_NOEXEC = 8 +pkg syscall (linux-386), const MS_NOSUID = 2 +pkg syscall (linux-386), const MS_NOUSER = -2147483648 +pkg syscall (linux-386), const MS_POSIXACL = 65536 +pkg syscall (linux-386), const MS_PRIVATE = 262144 +pkg syscall (linux-386), const MS_RDONLY = 1 +pkg syscall (linux-386), const MS_REC = 16384 +pkg syscall (linux-386), const MS_RELATIME = 2097152 +pkg syscall (linux-386), const MS_REMOUNT = 32 +pkg syscall (linux-386), const MS_RMT_MASK = 8388689 +pkg syscall (linux-386), const MS_SHARED = 1048576 +pkg syscall (linux-386), const MS_SILENT = 32768 +pkg syscall (linux-386), const MS_SLAVE = 524288 +pkg syscall (linux-386), const MS_STRICTATIME = 16777216 +pkg syscall (linux-386), const MS_SYNC = 4 +pkg syscall (linux-386), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-386), const MS_UNBINDABLE = 131072 +pkg syscall (linux-386), const NAME_MAX = 255 +pkg syscall (linux-386), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-386), const NETLINK_AUDIT = 9 +pkg syscall (linux-386), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-386), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-386), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-386), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-386), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-386), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-386), const NETLINK_FIREWALL = 3 +pkg syscall (linux-386), const NETLINK_GENERIC = 16 +pkg syscall (linux-386), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-386), const NETLINK_IP6_FW = 13 +pkg syscall (linux-386), const NETLINK_ISCSI = 8 +pkg syscall (linux-386), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-386), const NETLINK_NETFILTER = 12 +pkg syscall (linux-386), const NETLINK_NFLOG = 5 +pkg syscall (linux-386), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-386), const NETLINK_PKTINFO = 3 +pkg syscall (linux-386), const NETLINK_ROUTE = 0 +pkg syscall (linux-386), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-386), const NETLINK_SELINUX = 7 +pkg syscall (linux-386), const NETLINK_UNUSED = 1 +pkg syscall (linux-386), const NETLINK_USERSOCK = 2 +pkg syscall (linux-386), const NETLINK_XFRM = 6 +pkg syscall (linux-386), const NLA_ALIGNTO = 4 +pkg syscall (linux-386), const NLA_F_NESTED = 32768 +pkg syscall (linux-386), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-386), const NLA_HDRLEN = 4 +pkg syscall (linux-386), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-386), const NLMSG_DONE = 3 +pkg syscall (linux-386), const NLMSG_ERROR = 2 +pkg syscall (linux-386), const NLMSG_HDRLEN = 16 +pkg syscall (linux-386), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-386), const NLMSG_NOOP = 1 +pkg syscall (linux-386), const NLMSG_OVERRUN = 4 +pkg syscall (linux-386), const NLM_F_ACK = 4 +pkg syscall (linux-386), const NLM_F_APPEND = 2048 +pkg syscall (linux-386), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-386), const NLM_F_CREATE = 1024 +pkg syscall (linux-386), const NLM_F_DUMP = 768 +pkg syscall (linux-386), const NLM_F_ECHO = 8 +pkg syscall (linux-386), const NLM_F_EXCL = 512 +pkg syscall (linux-386), const NLM_F_MATCH = 512 +pkg syscall (linux-386), const NLM_F_MULTI = 2 +pkg syscall (linux-386), const NLM_F_REPLACE = 256 +pkg syscall (linux-386), const NLM_F_REQUEST = 1 +pkg syscall (linux-386), const NLM_F_ROOT = 256 +pkg syscall (linux-386), const NOFLSH = 128 +pkg syscall (linux-386), const OCRNL = 8 +pkg syscall (linux-386), const OFDEL = 128 +pkg syscall (linux-386), const OFILL = 64 +pkg syscall (linux-386), const OLCUC = 2 +pkg syscall (linux-386), const ONLCR = 4 +pkg syscall (linux-386), const ONLRET = 32 +pkg syscall (linux-386), const ONOCR = 16 +pkg syscall (linux-386), const OPOST = 1 +pkg syscall (linux-386), const O_ACCMODE = 3 +pkg syscall (linux-386), const O_APPEND = 1024 +pkg syscall (linux-386), const O_ASYNC = 8192 +pkg syscall (linux-386), const O_CLOEXEC = 524288 +pkg syscall (linux-386), const O_CREAT = 64 +pkg syscall (linux-386), const O_DIRECT = 16384 +pkg syscall (linux-386), const O_DIRECTORY = 65536 +pkg syscall (linux-386), const O_DSYNC = 4096 +pkg syscall (linux-386), const O_EXCL = 128 +pkg syscall (linux-386), const O_FSYNC = 1052672 +pkg syscall (linux-386), const O_LARGEFILE = 32768 +pkg syscall (linux-386), const O_NDELAY = 2048 +pkg syscall (linux-386), const O_NOATIME = 262144 +pkg syscall (linux-386), const O_NOCTTY = 256 +pkg syscall (linux-386), const O_NOFOLLOW = 131072 +pkg syscall (linux-386), const O_NONBLOCK = 2048 +pkg syscall (linux-386), const O_RSYNC = 1052672 +pkg syscall (linux-386), const O_SYNC = 1052672 +pkg syscall (linux-386), const O_TRUNC = 512 +pkg syscall (linux-386), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-386), const PACKET_BROADCAST = 1 +pkg syscall (linux-386), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-386), const PACKET_FASTROUTE = 6 +pkg syscall (linux-386), const PACKET_HOST = 0 +pkg syscall (linux-386), const PACKET_LOOPBACK = 5 +pkg syscall (linux-386), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-386), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-386), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-386), const PACKET_MULTICAST = 2 +pkg syscall (linux-386), const PACKET_OTHERHOST = 3 +pkg syscall (linux-386), const PACKET_OUTGOING = 4 +pkg syscall (linux-386), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-386), const PACKET_RX_RING = 5 +pkg syscall (linux-386), const PACKET_STATISTICS = 6 +pkg syscall (linux-386), const PARENB = 256 +pkg syscall (linux-386), const PARMRK = 8 +pkg syscall (linux-386), const PARODD = 512 +pkg syscall (linux-386), const PENDIN = 16384 +pkg syscall (linux-386), const PROT_EXEC = 4 +pkg syscall (linux-386), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-386), const PROT_GROWSUP = 33554432 +pkg syscall (linux-386), const PROT_NONE = 0 +pkg syscall (linux-386), const PROT_READ = 1 +pkg syscall (linux-386), const PROT_WRITE = 2 +pkg syscall (linux-386), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-386), const PR_CAPBSET_READ = 23 +pkg syscall (linux-386), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-386), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-386), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-386), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-386), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-386), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-386), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-386), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-386), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-386), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-386), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-386), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-386), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-386), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-386), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-386), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-386), const PR_GET_ENDIAN = 19 +pkg syscall (linux-386), const PR_GET_FPEMU = 9 +pkg syscall (linux-386), const PR_GET_FPEXC = 11 +pkg syscall (linux-386), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-386), const PR_GET_NAME = 16 +pkg syscall (linux-386), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-386), const PR_GET_SECCOMP = 21 +pkg syscall (linux-386), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-386), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-386), const PR_GET_TIMING = 13 +pkg syscall (linux-386), const PR_GET_TSC = 25 +pkg syscall (linux-386), const PR_GET_UNALIGN = 5 +pkg syscall (linux-386), const PR_MCE_KILL = 33 +pkg syscall (linux-386), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-386), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-386), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-386), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-386), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-386), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-386), const PR_SET_ENDIAN = 20 +pkg syscall (linux-386), const PR_SET_FPEMU = 10 +pkg syscall (linux-386), const PR_SET_FPEXC = 12 +pkg syscall (linux-386), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-386), const PR_SET_NAME = 15 +pkg syscall (linux-386), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-386), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-386), const PR_SET_SECCOMP = 22 +pkg syscall (linux-386), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-386), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-386), const PR_SET_TIMING = 14 +pkg syscall (linux-386), const PR_SET_TSC = 26 +pkg syscall (linux-386), const PR_SET_UNALIGN = 6 +pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-386), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-386), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-386), const PR_TSC_ENABLE = 1 +pkg syscall (linux-386), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-386), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-386), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-386), const PTRACE_ATTACH = 16 +pkg syscall (linux-386), const PTRACE_CONT = 7 +pkg syscall (linux-386), const PTRACE_DETACH = 17 +pkg syscall (linux-386), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-386), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-386), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-386), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-386), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-386), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-386), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-386), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-386), const PTRACE_GETFPXREGS = 18 +pkg syscall (linux-386), const PTRACE_GETREGS = 12 +pkg syscall (linux-386), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-386), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-386), const PTRACE_GET_THREAD_AREA = 25 +pkg syscall (linux-386), const PTRACE_KILL = 8 +pkg syscall (linux-386), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-386), const PTRACE_O_MASK = 127 +pkg syscall (linux-386), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-386), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-386), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-386), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-386), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-386), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-386), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-386), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-386), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-386), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-386), const PTRACE_POKEDATA = 5 +pkg syscall (linux-386), const PTRACE_POKETEXT = 4 +pkg syscall (linux-386), const PTRACE_POKEUSR = 6 +pkg syscall (linux-386), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-386), const PTRACE_SETFPXREGS = 19 +pkg syscall (linux-386), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-386), const PTRACE_SETREGS = 13 +pkg syscall (linux-386), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-386), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-386), const PTRACE_SET_THREAD_AREA = 26 +pkg syscall (linux-386), const PTRACE_SINGLEBLOCK = 33 +pkg syscall (linux-386), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-386), const PTRACE_SYSCALL = 24 +pkg syscall (linux-386), const PTRACE_SYSEMU = 31 +pkg syscall (linux-386), const PTRACE_SYSEMU_SINGLESTEP = 32 +pkg syscall (linux-386), const PTRACE_TRACEME = 0 +pkg syscall (linux-386), const PathMax = 4096 +pkg syscall (linux-386), const RLIMIT_AS = 9 +pkg syscall (linux-386), const RLIMIT_CORE = 4 +pkg syscall (linux-386), const RLIMIT_CPU = 0 +pkg syscall (linux-386), const RLIMIT_DATA = 2 +pkg syscall (linux-386), const RLIMIT_FSIZE = 1 +pkg syscall (linux-386), const RLIMIT_NOFILE = 7 +pkg syscall (linux-386), const RLIMIT_STACK = 3 +pkg syscall (linux-386), const RLIM_INFINITY = -1 +pkg syscall (linux-386), const RTAX_ADVMSS = 8 +pkg syscall (linux-386), const RTAX_CWND = 7 +pkg syscall (linux-386), const RTAX_FEATURES = 12 +pkg syscall (linux-386), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-386), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-386), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-386), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-386), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-386), const RTAX_INITCWND = 11 +pkg syscall (linux-386), const RTAX_INITRWND = 14 +pkg syscall (linux-386), const RTAX_LOCK = 1 +pkg syscall (linux-386), const RTAX_MAX = 14 +pkg syscall (linux-386), const RTAX_MTU = 2 +pkg syscall (linux-386), const RTAX_REORDERING = 9 +pkg syscall (linux-386), const RTAX_RTO_MIN = 13 +pkg syscall (linux-386), const RTAX_RTT = 4 +pkg syscall (linux-386), const RTAX_RTTVAR = 5 +pkg syscall (linux-386), const RTAX_SSTHRESH = 6 +pkg syscall (linux-386), const RTAX_UNSPEC = 0 +pkg syscall (linux-386), const RTAX_WINDOW = 3 +pkg syscall (linux-386), const RTA_ALIGNTO = 4 +pkg syscall (linux-386), const RTA_CACHEINFO = 12 +pkg syscall (linux-386), const RTA_DST = 1 +pkg syscall (linux-386), const RTA_FLOW = 11 +pkg syscall (linux-386), const RTA_GATEWAY = 5 +pkg syscall (linux-386), const RTA_IIF = 3 +pkg syscall (linux-386), const RTA_MAX = 16 +pkg syscall (linux-386), const RTA_METRICS = 8 +pkg syscall (linux-386), const RTA_MULTIPATH = 9 +pkg syscall (linux-386), const RTA_OIF = 4 +pkg syscall (linux-386), const RTA_PREFSRC = 7 +pkg syscall (linux-386), const RTA_PRIORITY = 6 +pkg syscall (linux-386), const RTA_SRC = 2 +pkg syscall (linux-386), const RTA_TABLE = 15 +pkg syscall (linux-386), const RTA_UNSPEC = 0 +pkg syscall (linux-386), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-386), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-386), const RTCF_LOG = 33554432 +pkg syscall (linux-386), const RTCF_MASQ = 4194304 +pkg syscall (linux-386), const RTCF_NAT = 8388608 +pkg syscall (linux-386), const RTCF_VALVE = 2097152 +pkg syscall (linux-386), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-386), const RTF_ADDRCONF = 262144 +pkg syscall (linux-386), const RTF_ALLONLINK = 131072 +pkg syscall (linux-386), const RTF_BROADCAST = 268435456 +pkg syscall (linux-386), const RTF_CACHE = 16777216 +pkg syscall (linux-386), const RTF_DEFAULT = 65536 +pkg syscall (linux-386), const RTF_DYNAMIC = 16 +pkg syscall (linux-386), const RTF_FLOW = 33554432 +pkg syscall (linux-386), const RTF_GATEWAY = 2 +pkg syscall (linux-386), const RTF_HOST = 4 +pkg syscall (linux-386), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-386), const RTF_IRTT = 256 +pkg syscall (linux-386), const RTF_LINKRT = 1048576 +pkg syscall (linux-386), const RTF_LOCAL = 2147483648 +pkg syscall (linux-386), const RTF_MODIFIED = 32 +pkg syscall (linux-386), const RTF_MSS = 64 +pkg syscall (linux-386), const RTF_MTU = 64 +pkg syscall (linux-386), const RTF_MULTICAST = 536870912 +pkg syscall (linux-386), const RTF_NAT = 134217728 +pkg syscall (linux-386), const RTF_NOFORWARD = 4096 +pkg syscall (linux-386), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-386), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-386), const RTF_POLICY = 67108864 +pkg syscall (linux-386), const RTF_REINSTATE = 8 +pkg syscall (linux-386), const RTF_REJECT = 512 +pkg syscall (linux-386), const RTF_STATIC = 1024 +pkg syscall (linux-386), const RTF_THROW = 8192 +pkg syscall (linux-386), const RTF_UP = 1 +pkg syscall (linux-386), const RTF_WINDOW = 128 +pkg syscall (linux-386), const RTF_XRESOLVE = 2048 +pkg syscall (linux-386), const RTM_BASE = 16 +pkg syscall (linux-386), const RTM_DELACTION = 49 +pkg syscall (linux-386), const RTM_DELADDR = 21 +pkg syscall (linux-386), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-386), const RTM_DELLINK = 17 +pkg syscall (linux-386), const RTM_DELNEIGH = 29 +pkg syscall (linux-386), const RTM_DELQDISC = 37 +pkg syscall (linux-386), const RTM_DELROUTE = 25 +pkg syscall (linux-386), const RTM_DELRULE = 33 +pkg syscall (linux-386), const RTM_DELTCLASS = 41 +pkg syscall (linux-386), const RTM_DELTFILTER = 45 +pkg syscall (linux-386), const RTM_F_CLONED = 512 +pkg syscall (linux-386), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-386), const RTM_F_NOTIFY = 256 +pkg syscall (linux-386), const RTM_F_PREFIX = 2048 +pkg syscall (linux-386), const RTM_GETACTION = 50 +pkg syscall (linux-386), const RTM_GETADDR = 22 +pkg syscall (linux-386), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-386), const RTM_GETANYCAST = 62 +pkg syscall (linux-386), const RTM_GETDCB = 78 +pkg syscall (linux-386), const RTM_GETLINK = 18 +pkg syscall (linux-386), const RTM_GETMULTICAST = 58 +pkg syscall (linux-386), const RTM_GETNEIGH = 30 +pkg syscall (linux-386), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-386), const RTM_GETQDISC = 38 +pkg syscall (linux-386), const RTM_GETROUTE = 26 +pkg syscall (linux-386), const RTM_GETRULE = 34 +pkg syscall (linux-386), const RTM_GETTCLASS = 42 +pkg syscall (linux-386), const RTM_GETTFILTER = 46 +pkg syscall (linux-386), const RTM_MAX = 79 +pkg syscall (linux-386), const RTM_NEWACTION = 48 +pkg syscall (linux-386), const RTM_NEWADDR = 20 +pkg syscall (linux-386), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-386), const RTM_NEWLINK = 16 +pkg syscall (linux-386), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-386), const RTM_NEWNEIGH = 28 +pkg syscall (linux-386), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-386), const RTM_NEWPREFIX = 52 +pkg syscall (linux-386), const RTM_NEWQDISC = 36 +pkg syscall (linux-386), const RTM_NEWROUTE = 24 +pkg syscall (linux-386), const RTM_NEWRULE = 32 +pkg syscall (linux-386), const RTM_NEWTCLASS = 40 +pkg syscall (linux-386), const RTM_NEWTFILTER = 44 +pkg syscall (linux-386), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-386), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-386), const RTM_SETDCB = 79 +pkg syscall (linux-386), const RTM_SETLINK = 19 +pkg syscall (linux-386), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-386), const RTNH_ALIGNTO = 4 +pkg syscall (linux-386), const RTNH_F_DEAD = 1 +pkg syscall (linux-386), const RTNH_F_ONLINK = 4 +pkg syscall (linux-386), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-386), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-386), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-386), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-386), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-386), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-386), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-386), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-386), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-386), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-386), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-386), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-386), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-386), const RTNLGRP_LINK = 1 +pkg syscall (linux-386), const RTNLGRP_LINK ideal-int +pkg syscall (linux-386), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-386), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-386), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-386), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-386), const RTNLGRP_NONE = 0 +pkg syscall (linux-386), const RTNLGRP_NONE ideal-int +pkg syscall (linux-386), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-386), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-386), const RTNLGRP_TC = 4 +pkg syscall (linux-386), const RTNLGRP_TC ideal-int +pkg syscall (linux-386), const RTN_ANYCAST = 4 +pkg syscall (linux-386), const RTN_BLACKHOLE = 6 +pkg syscall (linux-386), const RTN_BROADCAST = 3 +pkg syscall (linux-386), const RTN_LOCAL = 2 +pkg syscall (linux-386), const RTN_MAX = 11 +pkg syscall (linux-386), const RTN_MULTICAST = 5 +pkg syscall (linux-386), const RTN_NAT = 10 +pkg syscall (linux-386), const RTN_PROHIBIT = 8 +pkg syscall (linux-386), const RTN_THROW = 9 +pkg syscall (linux-386), const RTN_UNICAST = 1 +pkg syscall (linux-386), const RTN_UNREACHABLE = 7 +pkg syscall (linux-386), const RTN_UNSPEC = 0 +pkg syscall (linux-386), const RTN_XRESOLVE = 11 +pkg syscall (linux-386), const RTPROT_BIRD = 12 +pkg syscall (linux-386), const RTPROT_BOOT = 3 +pkg syscall (linux-386), const RTPROT_DHCP = 16 +pkg syscall (linux-386), const RTPROT_DNROUTED = 13 +pkg syscall (linux-386), const RTPROT_GATED = 8 +pkg syscall (linux-386), const RTPROT_KERNEL = 2 +pkg syscall (linux-386), const RTPROT_MRT = 10 +pkg syscall (linux-386), const RTPROT_NTK = 15 +pkg syscall (linux-386), const RTPROT_RA = 9 +pkg syscall (linux-386), const RTPROT_REDIRECT = 1 +pkg syscall (linux-386), const RTPROT_STATIC = 4 +pkg syscall (linux-386), const RTPROT_UNSPEC = 0 +pkg syscall (linux-386), const RTPROT_XORP = 14 +pkg syscall (linux-386), const RTPROT_ZEBRA = 11 +pkg syscall (linux-386), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-386), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-386), const RT_CLASS_MAIN = 254 +pkg syscall (linux-386), const RT_CLASS_MAX = 255 +pkg syscall (linux-386), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-386), const RT_SCOPE_HOST = 254 +pkg syscall (linux-386), const RT_SCOPE_LINK = 253 +pkg syscall (linux-386), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-386), const RT_SCOPE_SITE = 200 +pkg syscall (linux-386), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-386), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-386), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-386), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-386), const RT_TABLE_MAIN = 254 +pkg syscall (linux-386), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-386), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-386), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-386), const RUSAGE_SELF = 0 +pkg syscall (linux-386), const RUSAGE_THREAD = 1 +pkg syscall (linux-386), const SCM_CREDENTIALS = 2 +pkg syscall (linux-386), const SCM_RIGHTS = 1 +pkg syscall (linux-386), const SCM_TIMESTAMP = 29 +pkg syscall (linux-386), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-386), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-386), const SIGBUS = 7 +pkg syscall (linux-386), const SIGCHLD = 17 +pkg syscall (linux-386), const SIGCLD = 17 +pkg syscall (linux-386), const SIGCONT = 18 +pkg syscall (linux-386), const SIGIO = 29 +pkg syscall (linux-386), const SIGIOT = 6 +pkg syscall (linux-386), const SIGPOLL = 29 +pkg syscall (linux-386), const SIGPROF = 27 +pkg syscall (linux-386), const SIGPWR = 30 +pkg syscall (linux-386), const SIGSTKFLT = 16 +pkg syscall (linux-386), const SIGSTOP = 19 +pkg syscall (linux-386), const SIGSYS = 31 +pkg syscall (linux-386), const SIGTSTP = 20 +pkg syscall (linux-386), const SIGTTIN = 21 +pkg syscall (linux-386), const SIGTTOU = 22 +pkg syscall (linux-386), const SIGUNUSED = 31 +pkg syscall (linux-386), const SIGURG = 23 +pkg syscall (linux-386), const SIGUSR1 = 10 +pkg syscall (linux-386), const SIGUSR2 = 12 +pkg syscall (linux-386), const SIGVTALRM = 26 +pkg syscall (linux-386), const SIGWINCH = 28 +pkg syscall (linux-386), const SIGXCPU = 24 +pkg syscall (linux-386), const SIGXFSZ = 25 +pkg syscall (linux-386), const SIOCADDDLCI = 35200 +pkg syscall (linux-386), const SIOCADDMULTI = 35121 +pkg syscall (linux-386), const SIOCADDRT = 35083 +pkg syscall (linux-386), const SIOCATMARK = 35077 +pkg syscall (linux-386), const SIOCDARP = 35155 +pkg syscall (linux-386), const SIOCDELDLCI = 35201 +pkg syscall (linux-386), const SIOCDELMULTI = 35122 +pkg syscall (linux-386), const SIOCDELRT = 35084 +pkg syscall (linux-386), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-386), const SIOCDIFADDR = 35126 +pkg syscall (linux-386), const SIOCDRARP = 35168 +pkg syscall (linux-386), const SIOCGARP = 35156 +pkg syscall (linux-386), const SIOCGIFADDR = 35093 +pkg syscall (linux-386), const SIOCGIFBR = 35136 +pkg syscall (linux-386), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-386), const SIOCGIFCONF = 35090 +pkg syscall (linux-386), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-386), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-386), const SIOCGIFENCAP = 35109 +pkg syscall (linux-386), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-386), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-386), const SIOCGIFINDEX = 35123 +pkg syscall (linux-386), const SIOCGIFMAP = 35184 +pkg syscall (linux-386), const SIOCGIFMEM = 35103 +pkg syscall (linux-386), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-386), const SIOCGIFMTU = 35105 +pkg syscall (linux-386), const SIOCGIFNAME = 35088 +pkg syscall (linux-386), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-386), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-386), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-386), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-386), const SIOCGPGRP = 35076 +pkg syscall (linux-386), const SIOCGRARP = 35169 +pkg syscall (linux-386), const SIOCGSTAMP = 35078 +pkg syscall (linux-386), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-386), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-386), const SIOCRTMSG = 35085 +pkg syscall (linux-386), const SIOCSARP = 35157 +pkg syscall (linux-386), const SIOCSIFADDR = 35094 +pkg syscall (linux-386), const SIOCSIFBR = 35137 +pkg syscall (linux-386), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-386), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-386), const SIOCSIFENCAP = 35110 +pkg syscall (linux-386), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-386), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-386), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-386), const SIOCSIFLINK = 35089 +pkg syscall (linux-386), const SIOCSIFMAP = 35185 +pkg syscall (linux-386), const SIOCSIFMEM = 35104 +pkg syscall (linux-386), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-386), const SIOCSIFMTU = 35106 +pkg syscall (linux-386), const SIOCSIFNAME = 35107 +pkg syscall (linux-386), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-386), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-386), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-386), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-386), const SIOCSPGRP = 35074 +pkg syscall (linux-386), const SIOCSRARP = 35170 +pkg syscall (linux-386), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-386), const SOCK_DCCP = 6 +pkg syscall (linux-386), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-386), const SOCK_PACKET = 10 +pkg syscall (linux-386), const SOCK_RDM = 4 +pkg syscall (linux-386), const SOL_AAL = 265 +pkg syscall (linux-386), const SOL_ATM = 264 +pkg syscall (linux-386), const SOL_DECNET = 261 +pkg syscall (linux-386), const SOL_ICMPV6 = 58 +pkg syscall (linux-386), const SOL_IP = 0 +pkg syscall (linux-386), const SOL_IPV6 = 41 +pkg syscall (linux-386), const SOL_IRDA = 266 +pkg syscall (linux-386), const SOL_PACKET = 263 +pkg syscall (linux-386), const SOL_RAW = 255 +pkg syscall (linux-386), const SOL_SOCKET = 1 +pkg syscall (linux-386), const SOL_TCP = 6 +pkg syscall (linux-386), const SOL_X25 = 262 +pkg syscall (linux-386), const SOMAXCONN = 128 +pkg syscall (linux-386), const SO_ACCEPTCONN = 30 +pkg syscall (linux-386), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-386), const SO_BINDTODEVICE = 25 +pkg syscall (linux-386), const SO_BROADCAST = 6 +pkg syscall (linux-386), const SO_BSDCOMPAT = 14 +pkg syscall (linux-386), const SO_DEBUG = 1 +pkg syscall (linux-386), const SO_DETACH_FILTER = 27 +pkg syscall (linux-386), const SO_DOMAIN = 39 +pkg syscall (linux-386), const SO_DONTROUTE = 5 +pkg syscall (linux-386), const SO_ERROR = 4 +pkg syscall (linux-386), const SO_KEEPALIVE = 9 +pkg syscall (linux-386), const SO_LINGER = 13 +pkg syscall (linux-386), const SO_MARK = 36 +pkg syscall (linux-386), const SO_NO_CHECK = 11 +pkg syscall (linux-386), const SO_OOBINLINE = 10 +pkg syscall (linux-386), const SO_PASSCRED = 16 +pkg syscall (linux-386), const SO_PASSSEC = 34 +pkg syscall (linux-386), const SO_PEERCRED = 17 +pkg syscall (linux-386), const SO_PEERNAME = 28 +pkg syscall (linux-386), const SO_PEERSEC = 31 +pkg syscall (linux-386), const SO_PRIORITY = 12 +pkg syscall (linux-386), const SO_PROTOCOL = 38 +pkg syscall (linux-386), const SO_RCVBUF = 8 +pkg syscall (linux-386), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-386), const SO_RCVLOWAT = 18 +pkg syscall (linux-386), const SO_RCVTIMEO = 20 +pkg syscall (linux-386), const SO_REUSEADDR = 2 +pkg syscall (linux-386), const SO_RXQ_OVFL = 40 +pkg syscall (linux-386), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-386), const SO_SNDBUF = 7 +pkg syscall (linux-386), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-386), const SO_SNDLOWAT = 19 +pkg syscall (linux-386), const SO_SNDTIMEO = 21 +pkg syscall (linux-386), const SO_TIMESTAMP = 29 +pkg syscall (linux-386), const SO_TIMESTAMPING = 37 +pkg syscall (linux-386), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-386), const SO_TYPE = 3 +pkg syscall (linux-386), const SYS_ACCESS = 33 +pkg syscall (linux-386), const SYS_ACCT = 51 +pkg syscall (linux-386), const SYS_ADD_KEY = 286 +pkg syscall (linux-386), const SYS_ADJTIMEX = 124 +pkg syscall (linux-386), const SYS_AFS_SYSCALL = 137 +pkg syscall (linux-386), const SYS_ALARM = 27 +pkg syscall (linux-386), const SYS_BDFLUSH = 134 +pkg syscall (linux-386), const SYS_BREAK = 17 +pkg syscall (linux-386), const SYS_BRK = 45 +pkg syscall (linux-386), const SYS_CAPGET = 184 +pkg syscall (linux-386), const SYS_CAPSET = 185 +pkg syscall (linux-386), const SYS_CHDIR = 12 +pkg syscall (linux-386), const SYS_CHMOD = 15 +pkg syscall (linux-386), const SYS_CHOWN = 182 +pkg syscall (linux-386), const SYS_CHOWN32 = 212 +pkg syscall (linux-386), const SYS_CHROOT = 61 +pkg syscall (linux-386), const SYS_CLOCK_GETRES = 266 +pkg syscall (linux-386), const SYS_CLOCK_GETTIME = 265 +pkg syscall (linux-386), const SYS_CLOCK_NANOSLEEP = 267 +pkg syscall (linux-386), const SYS_CLOCK_SETTIME = 264 +pkg syscall (linux-386), const SYS_CLONE = 120 +pkg syscall (linux-386), const SYS_CLOSE = 6 +pkg syscall (linux-386), const SYS_CREAT = 8 +pkg syscall (linux-386), const SYS_CREATE_MODULE = 127 +pkg syscall (linux-386), const SYS_DELETE_MODULE = 129 +pkg syscall (linux-386), const SYS_DUP = 41 +pkg syscall (linux-386), const SYS_DUP2 = 63 +pkg syscall (linux-386), const SYS_DUP3 = 330 +pkg syscall (linux-386), const SYS_EPOLL_CREATE = 254 +pkg syscall (linux-386), const SYS_EPOLL_CREATE1 = 329 +pkg syscall (linux-386), const SYS_EPOLL_CTL = 255 +pkg syscall (linux-386), const SYS_EPOLL_PWAIT = 319 +pkg syscall (linux-386), const SYS_EPOLL_WAIT = 256 +pkg syscall (linux-386), const SYS_EVENTFD = 323 +pkg syscall (linux-386), const SYS_EVENTFD2 = 328 +pkg syscall (linux-386), const SYS_EXECVE = 11 +pkg syscall (linux-386), const SYS_EXIT = 1 +pkg syscall (linux-386), const SYS_EXIT_GROUP = 252 +pkg syscall (linux-386), const SYS_FACCESSAT = 307 +pkg syscall (linux-386), const SYS_FADVISE64 = 250 +pkg syscall (linux-386), const SYS_FADVISE64_64 = 272 +pkg syscall (linux-386), const SYS_FALLOCATE = 324 +pkg syscall (linux-386), const SYS_FANOTIFY_INIT = 338 +pkg syscall (linux-386), const SYS_FANOTIFY_MARK = 339 +pkg syscall (linux-386), const SYS_FCHDIR = 133 +pkg syscall (linux-386), const SYS_FCHMOD = 94 +pkg syscall (linux-386), const SYS_FCHMODAT = 306 +pkg syscall (linux-386), const SYS_FCHOWN = 95 +pkg syscall (linux-386), const SYS_FCHOWN32 = 207 +pkg syscall (linux-386), const SYS_FCHOWNAT = 298 +pkg syscall (linux-386), const SYS_FCNTL = 55 +pkg syscall (linux-386), const SYS_FCNTL64 = 221 +pkg syscall (linux-386), const SYS_FDATASYNC = 148 +pkg syscall (linux-386), const SYS_FGETXATTR = 231 +pkg syscall (linux-386), const SYS_FLISTXATTR = 234 +pkg syscall (linux-386), const SYS_FLOCK = 143 +pkg syscall (linux-386), const SYS_FORK = 2 +pkg syscall (linux-386), const SYS_FREMOVEXATTR = 237 +pkg syscall (linux-386), const SYS_FSETXATTR = 228 +pkg syscall (linux-386), const SYS_FSTAT = 108 +pkg syscall (linux-386), const SYS_FSTAT64 = 197 +pkg syscall (linux-386), const SYS_FSTATAT64 = 300 +pkg syscall (linux-386), const SYS_FSTATFS = 100 +pkg syscall (linux-386), const SYS_FSTATFS64 = 269 +pkg syscall (linux-386), const SYS_FSYNC = 118 +pkg syscall (linux-386), const SYS_FTIME = 35 +pkg syscall (linux-386), const SYS_FTRUNCATE = 93 +pkg syscall (linux-386), const SYS_FTRUNCATE64 = 194 +pkg syscall (linux-386), const SYS_FUTEX = 240 +pkg syscall (linux-386), const SYS_FUTIMESAT = 299 +pkg syscall (linux-386), const SYS_GETCPU = 318 +pkg syscall (linux-386), const SYS_GETCWD = 183 +pkg syscall (linux-386), const SYS_GETDENTS = 141 +pkg syscall (linux-386), const SYS_GETDENTS64 = 220 +pkg syscall (linux-386), const SYS_GETEGID = 50 +pkg syscall (linux-386), const SYS_GETEGID32 = 202 +pkg syscall (linux-386), const SYS_GETEUID = 49 +pkg syscall (linux-386), const SYS_GETEUID32 = 201 +pkg syscall (linux-386), const SYS_GETGID = 47 +pkg syscall (linux-386), const SYS_GETGID32 = 200 +pkg syscall (linux-386), const SYS_GETGROUPS = 80 +pkg syscall (linux-386), const SYS_GETGROUPS32 = 205 +pkg syscall (linux-386), const SYS_GETITIMER = 105 +pkg syscall (linux-386), const SYS_GETPGID = 132 +pkg syscall (linux-386), const SYS_GETPGRP = 65 +pkg syscall (linux-386), const SYS_GETPID = 20 +pkg syscall (linux-386), const SYS_GETPMSG = 188 +pkg syscall (linux-386), const SYS_GETPPID = 64 +pkg syscall (linux-386), const SYS_GETPRIORITY = 96 +pkg syscall (linux-386), const SYS_GETRESGID = 171 +pkg syscall (linux-386), const SYS_GETRESGID32 = 211 +pkg syscall (linux-386), const SYS_GETRESUID = 165 +pkg syscall (linux-386), const SYS_GETRESUID32 = 209 +pkg syscall (linux-386), const SYS_GETRLIMIT = 76 +pkg syscall (linux-386), const SYS_GETRUSAGE = 77 +pkg syscall (linux-386), const SYS_GETSID = 147 +pkg syscall (linux-386), const SYS_GETTID = 224 +pkg syscall (linux-386), const SYS_GETTIMEOFDAY = 78 +pkg syscall (linux-386), const SYS_GETUID = 24 +pkg syscall (linux-386), const SYS_GETUID32 = 199 +pkg syscall (linux-386), const SYS_GETXATTR = 229 +pkg syscall (linux-386), const SYS_GET_KERNEL_SYMS = 130 +pkg syscall (linux-386), const SYS_GET_MEMPOLICY = 275 +pkg syscall (linux-386), const SYS_GET_ROBUST_LIST = 312 +pkg syscall (linux-386), const SYS_GET_THREAD_AREA = 244 +pkg syscall (linux-386), const SYS_GTTY = 32 +pkg syscall (linux-386), const SYS_IDLE = 112 +pkg syscall (linux-386), const SYS_INIT_MODULE = 128 +pkg syscall (linux-386), const SYS_INOTIFY_ADD_WATCH = 292 +pkg syscall (linux-386), const SYS_INOTIFY_INIT = 291 +pkg syscall (linux-386), const SYS_INOTIFY_INIT1 = 332 +pkg syscall (linux-386), const SYS_INOTIFY_RM_WATCH = 293 +pkg syscall (linux-386), const SYS_IOCTL = 54 +pkg syscall (linux-386), const SYS_IOPERM = 101 +pkg syscall (linux-386), const SYS_IOPL = 110 +pkg syscall (linux-386), const SYS_IOPRIO_GET = 290 +pkg syscall (linux-386), const SYS_IOPRIO_SET = 289 +pkg syscall (linux-386), const SYS_IO_CANCEL = 249 +pkg syscall (linux-386), const SYS_IO_DESTROY = 246 +pkg syscall (linux-386), const SYS_IO_GETEVENTS = 247 +pkg syscall (linux-386), const SYS_IO_SETUP = 245 +pkg syscall (linux-386), const SYS_IO_SUBMIT = 248 +pkg syscall (linux-386), const SYS_IPC = 117 +pkg syscall (linux-386), const SYS_KEXEC_LOAD = 283 +pkg syscall (linux-386), const SYS_KEYCTL = 288 +pkg syscall (linux-386), const SYS_KILL = 37 +pkg syscall (linux-386), const SYS_LCHOWN = 16 +pkg syscall (linux-386), const SYS_LCHOWN32 = 198 +pkg syscall (linux-386), const SYS_LGETXATTR = 230 +pkg syscall (linux-386), const SYS_LINK = 9 +pkg syscall (linux-386), const SYS_LINKAT = 303 +pkg syscall (linux-386), const SYS_LISTXATTR = 232 +pkg syscall (linux-386), const SYS_LLISTXATTR = 233 +pkg syscall (linux-386), const SYS_LOCK = 53 +pkg syscall (linux-386), const SYS_LOOKUP_DCOOKIE = 253 +pkg syscall (linux-386), const SYS_LREMOVEXATTR = 236 +pkg syscall (linux-386), const SYS_LSEEK = 19 +pkg syscall (linux-386), const SYS_LSETXATTR = 227 +pkg syscall (linux-386), const SYS_LSTAT = 107 +pkg syscall (linux-386), const SYS_LSTAT64 = 196 +pkg syscall (linux-386), const SYS_MADVISE = 219 +pkg syscall (linux-386), const SYS_MADVISE1 = 219 +pkg syscall (linux-386), const SYS_MBIND = 274 +pkg syscall (linux-386), const SYS_MIGRATE_PAGES = 294 +pkg syscall (linux-386), const SYS_MINCORE = 218 +pkg syscall (linux-386), const SYS_MKDIR = 39 +pkg syscall (linux-386), const SYS_MKDIRAT = 296 +pkg syscall (linux-386), const SYS_MKNOD = 14 +pkg syscall (linux-386), const SYS_MKNODAT = 297 +pkg syscall (linux-386), const SYS_MLOCK = 150 +pkg syscall (linux-386), const SYS_MLOCKALL = 152 +pkg syscall (linux-386), const SYS_MMAP = 90 +pkg syscall (linux-386), const SYS_MMAP2 = 192 +pkg syscall (linux-386), const SYS_MODIFY_LDT = 123 +pkg syscall (linux-386), const SYS_MOUNT = 21 +pkg syscall (linux-386), const SYS_MOVE_PAGES = 317 +pkg syscall (linux-386), const SYS_MPROTECT = 125 +pkg syscall (linux-386), const SYS_MPX = 56 +pkg syscall (linux-386), const SYS_MQ_GETSETATTR = 282 +pkg syscall (linux-386), const SYS_MQ_NOTIFY = 281 +pkg syscall (linux-386), const SYS_MQ_OPEN = 277 +pkg syscall (linux-386), const SYS_MQ_TIMEDRECEIVE = 280 +pkg syscall (linux-386), const SYS_MQ_TIMEDSEND = 279 +pkg syscall (linux-386), const SYS_MQ_UNLINK = 278 +pkg syscall (linux-386), const SYS_MREMAP = 163 +pkg syscall (linux-386), const SYS_MSYNC = 144 +pkg syscall (linux-386), const SYS_MUNLOCK = 151 +pkg syscall (linux-386), const SYS_MUNLOCKALL = 153 +pkg syscall (linux-386), const SYS_MUNMAP = 91 +pkg syscall (linux-386), const SYS_NANOSLEEP = 162 +pkg syscall (linux-386), const SYS_NFSSERVCTL = 169 +pkg syscall (linux-386), const SYS_NICE = 34 +pkg syscall (linux-386), const SYS_OLDFSTAT = 28 +pkg syscall (linux-386), const SYS_OLDLSTAT = 84 +pkg syscall (linux-386), const SYS_OLDOLDUNAME = 59 +pkg syscall (linux-386), const SYS_OLDSTAT = 18 +pkg syscall (linux-386), const SYS_OLDUNAME = 109 +pkg syscall (linux-386), const SYS_OPEN = 5 +pkg syscall (linux-386), const SYS_OPENAT = 295 +pkg syscall (linux-386), const SYS_PAUSE = 29 +pkg syscall (linux-386), const SYS_PERF_EVENT_OPEN = 336 +pkg syscall (linux-386), const SYS_PERSONALITY = 136 +pkg syscall (linux-386), const SYS_PIPE = 42 +pkg syscall (linux-386), const SYS_PIPE2 = 331 +pkg syscall (linux-386), const SYS_PIVOT_ROOT = 217 +pkg syscall (linux-386), const SYS_POLL = 168 +pkg syscall (linux-386), const SYS_PPOLL = 309 +pkg syscall (linux-386), const SYS_PRCTL = 172 +pkg syscall (linux-386), const SYS_PREAD64 = 180 +pkg syscall (linux-386), const SYS_PREADV = 333 +pkg syscall (linux-386), const SYS_PRLIMIT64 = 340 +pkg syscall (linux-386), const SYS_PROF = 44 +pkg syscall (linux-386), const SYS_PROFIL = 98 +pkg syscall (linux-386), const SYS_PSELECT6 = 308 +pkg syscall (linux-386), const SYS_PTRACE = 26 +pkg syscall (linux-386), const SYS_PUTPMSG = 189 +pkg syscall (linux-386), const SYS_PWRITE64 = 181 +pkg syscall (linux-386), const SYS_PWRITEV = 334 +pkg syscall (linux-386), const SYS_QUERY_MODULE = 167 +pkg syscall (linux-386), const SYS_QUOTACTL = 131 +pkg syscall (linux-386), const SYS_READ = 3 +pkg syscall (linux-386), const SYS_READAHEAD = 225 +pkg syscall (linux-386), const SYS_READDIR = 89 +pkg syscall (linux-386), const SYS_READLINK = 85 +pkg syscall (linux-386), const SYS_READLINKAT = 305 +pkg syscall (linux-386), const SYS_READV = 145 +pkg syscall (linux-386), const SYS_REBOOT = 88 +pkg syscall (linux-386), const SYS_RECVMMSG = 337 +pkg syscall (linux-386), const SYS_REMAP_FILE_PAGES = 257 +pkg syscall (linux-386), const SYS_REMOVEXATTR = 235 +pkg syscall (linux-386), const SYS_RENAME = 38 +pkg syscall (linux-386), const SYS_RENAMEAT = 302 +pkg syscall (linux-386), const SYS_REQUEST_KEY = 287 +pkg syscall (linux-386), const SYS_RESTART_SYSCALL = 0 +pkg syscall (linux-386), const SYS_RMDIR = 40 +pkg syscall (linux-386), const SYS_RT_SIGACTION = 174 +pkg syscall (linux-386), const SYS_RT_SIGPENDING = 176 +pkg syscall (linux-386), const SYS_RT_SIGPROCMASK = 175 +pkg syscall (linux-386), const SYS_RT_SIGQUEUEINFO = 178 +pkg syscall (linux-386), const SYS_RT_SIGRETURN = 173 +pkg syscall (linux-386), const SYS_RT_SIGSUSPEND = 179 +pkg syscall (linux-386), const SYS_RT_SIGTIMEDWAIT = 177 +pkg syscall (linux-386), const SYS_RT_TGSIGQUEUEINFO = 335 +pkg syscall (linux-386), const SYS_SCHED_GETAFFINITY = 242 +pkg syscall (linux-386), const SYS_SCHED_GETPARAM = 155 +pkg syscall (linux-386), const SYS_SCHED_GETSCHEDULER = 157 +pkg syscall (linux-386), const SYS_SCHED_GET_PRIORITY_MAX = 159 +pkg syscall (linux-386), const SYS_SCHED_GET_PRIORITY_MIN = 160 +pkg syscall (linux-386), const SYS_SCHED_RR_GET_INTERVAL = 161 +pkg syscall (linux-386), const SYS_SCHED_SETAFFINITY = 241 +pkg syscall (linux-386), const SYS_SCHED_SETPARAM = 154 +pkg syscall (linux-386), const SYS_SCHED_SETSCHEDULER = 156 +pkg syscall (linux-386), const SYS_SCHED_YIELD = 158 +pkg syscall (linux-386), const SYS_SELECT = 82 +pkg syscall (linux-386), const SYS_SENDFILE = 187 +pkg syscall (linux-386), const SYS_SENDFILE64 = 239 +pkg syscall (linux-386), const SYS_SETDOMAINNAME = 121 +pkg syscall (linux-386), const SYS_SETFSGID = 139 +pkg syscall (linux-386), const SYS_SETFSGID32 = 216 +pkg syscall (linux-386), const SYS_SETFSUID = 138 +pkg syscall (linux-386), const SYS_SETFSUID32 = 215 +pkg syscall (linux-386), const SYS_SETGID = 46 +pkg syscall (linux-386), const SYS_SETGID32 = 214 +pkg syscall (linux-386), const SYS_SETGROUPS = 81 +pkg syscall (linux-386), const SYS_SETGROUPS32 = 206 +pkg syscall (linux-386), const SYS_SETHOSTNAME = 74 +pkg syscall (linux-386), const SYS_SETITIMER = 104 +pkg syscall (linux-386), const SYS_SETPGID = 57 +pkg syscall (linux-386), const SYS_SETPRIORITY = 97 +pkg syscall (linux-386), const SYS_SETREGID = 71 +pkg syscall (linux-386), const SYS_SETREGID32 = 204 +pkg syscall (linux-386), const SYS_SETRESGID = 170 +pkg syscall (linux-386), const SYS_SETRESGID32 = 210 +pkg syscall (linux-386), const SYS_SETRESUID = 164 +pkg syscall (linux-386), const SYS_SETRESUID32 = 208 +pkg syscall (linux-386), const SYS_SETREUID = 70 +pkg syscall (linux-386), const SYS_SETREUID32 = 203 +pkg syscall (linux-386), const SYS_SETRLIMIT = 75 +pkg syscall (linux-386), const SYS_SETSID = 66 +pkg syscall (linux-386), const SYS_SETTIMEOFDAY = 79 +pkg syscall (linux-386), const SYS_SETUID = 23 +pkg syscall (linux-386), const SYS_SETUID32 = 213 +pkg syscall (linux-386), const SYS_SETXATTR = 226 +pkg syscall (linux-386), const SYS_SET_MEMPOLICY = 276 +pkg syscall (linux-386), const SYS_SET_ROBUST_LIST = 311 +pkg syscall (linux-386), const SYS_SET_THREAD_AREA = 243 +pkg syscall (linux-386), const SYS_SET_TID_ADDRESS = 258 +pkg syscall (linux-386), const SYS_SGETMASK = 68 +pkg syscall (linux-386), const SYS_SIGACTION = 67 +pkg syscall (linux-386), const SYS_SIGALTSTACK = 186 +pkg syscall (linux-386), const SYS_SIGNAL = 48 +pkg syscall (linux-386), const SYS_SIGNALFD = 321 +pkg syscall (linux-386), const SYS_SIGNALFD4 = 327 +pkg syscall (linux-386), const SYS_SIGPENDING = 73 +pkg syscall (linux-386), const SYS_SIGPROCMASK = 126 +pkg syscall (linux-386), const SYS_SIGRETURN = 119 +pkg syscall (linux-386), const SYS_SIGSUSPEND = 72 +pkg syscall (linux-386), const SYS_SOCKETCALL = 102 +pkg syscall (linux-386), const SYS_SPLICE = 313 +pkg syscall (linux-386), const SYS_SSETMASK = 69 +pkg syscall (linux-386), const SYS_STAT = 106 +pkg syscall (linux-386), const SYS_STAT64 = 195 +pkg syscall (linux-386), const SYS_STATFS = 99 +pkg syscall (linux-386), const SYS_STATFS64 = 268 +pkg syscall (linux-386), const SYS_STIME = 25 +pkg syscall (linux-386), const SYS_STTY = 31 +pkg syscall (linux-386), const SYS_SWAPOFF = 115 +pkg syscall (linux-386), const SYS_SWAPON = 87 +pkg syscall (linux-386), const SYS_SYMLINK = 83 +pkg syscall (linux-386), const SYS_SYMLINKAT = 304 +pkg syscall (linux-386), const SYS_SYNC = 36 +pkg syscall (linux-386), const SYS_SYNC_FILE_RANGE = 314 +pkg syscall (linux-386), const SYS_SYSFS = 135 +pkg syscall (linux-386), const SYS_SYSINFO = 116 +pkg syscall (linux-386), const SYS_SYSLOG = 103 +pkg syscall (linux-386), const SYS_TEE = 315 +pkg syscall (linux-386), const SYS_TGKILL = 270 +pkg syscall (linux-386), const SYS_TIME = 13 +pkg syscall (linux-386), const SYS_TIMERFD_CREATE = 322 +pkg syscall (linux-386), const SYS_TIMERFD_GETTIME = 326 +pkg syscall (linux-386), const SYS_TIMERFD_SETTIME = 325 +pkg syscall (linux-386), const SYS_TIMER_CREATE = 259 +pkg syscall (linux-386), const SYS_TIMER_DELETE = 263 +pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN = 262 +pkg syscall (linux-386), const SYS_TIMER_GETTIME = 261 +pkg syscall (linux-386), const SYS_TIMER_SETTIME = 260 +pkg syscall (linux-386), const SYS_TIMES = 43 +pkg syscall (linux-386), const SYS_TKILL = 238 +pkg syscall (linux-386), const SYS_TRUNCATE = 92 +pkg syscall (linux-386), const SYS_TRUNCATE64 = 193 +pkg syscall (linux-386), const SYS_UGETRLIMIT = 191 +pkg syscall (linux-386), const SYS_ULIMIT = 58 +pkg syscall (linux-386), const SYS_UMASK = 60 +pkg syscall (linux-386), const SYS_UMOUNT = 22 +pkg syscall (linux-386), const SYS_UMOUNT2 = 52 +pkg syscall (linux-386), const SYS_UNAME = 122 +pkg syscall (linux-386), const SYS_UNLINK = 10 +pkg syscall (linux-386), const SYS_UNLINKAT = 301 +pkg syscall (linux-386), const SYS_UNSHARE = 310 +pkg syscall (linux-386), const SYS_USELIB = 86 +pkg syscall (linux-386), const SYS_USTAT = 62 +pkg syscall (linux-386), const SYS_UTIME = 30 +pkg syscall (linux-386), const SYS_UTIMENSAT = 320 +pkg syscall (linux-386), const SYS_UTIMES = 271 +pkg syscall (linux-386), const SYS_VFORK = 190 +pkg syscall (linux-386), const SYS_VHANGUP = 111 +pkg syscall (linux-386), const SYS_VM86 = 166 +pkg syscall (linux-386), const SYS_VM86OLD = 113 +pkg syscall (linux-386), const SYS_VMSPLICE = 316 +pkg syscall (linux-386), const SYS_VSERVER = 273 +pkg syscall (linux-386), const SYS_WAIT4 = 114 +pkg syscall (linux-386), const SYS_WAITID = 284 +pkg syscall (linux-386), const SYS_WAITPID = 7 +pkg syscall (linux-386), const SYS_WRITE = 4 +pkg syscall (linux-386), const SYS_WRITEV = 146 +pkg syscall (linux-386), const SYS__LLSEEK = 140 +pkg syscall (linux-386), const SYS__NEWSELECT = 142 +pkg syscall (linux-386), const SYS__SYSCTL = 149 +pkg syscall (linux-386), const S_BLKSIZE = 512 +pkg syscall (linux-386), const S_IEXEC = 64 +pkg syscall (linux-386), const S_IFMT = 61440 +pkg syscall (linux-386), const S_IREAD = 256 +pkg syscall (linux-386), const S_IRGRP = 32 +pkg syscall (linux-386), const S_IROTH = 4 +pkg syscall (linux-386), const S_IRWXG = 56 +pkg syscall (linux-386), const S_IRWXO = 7 +pkg syscall (linux-386), const S_IRWXU = 448 +pkg syscall (linux-386), const S_IWGRP = 16 +pkg syscall (linux-386), const S_IWOTH = 2 +pkg syscall (linux-386), const S_IWRITE = 128 +pkg syscall (linux-386), const S_IXGRP = 8 +pkg syscall (linux-386), const S_IXOTH = 1 +pkg syscall (linux-386), const SizeofCmsghdr = 12 +pkg syscall (linux-386), const SizeofIPMreq = 8 +pkg syscall (linux-386), const SizeofIPMreqn = 12 +pkg syscall (linux-386), const SizeofIPv6Mreq = 20 +pkg syscall (linux-386), const SizeofIfAddrmsg = 8 +pkg syscall (linux-386), const SizeofIfInfomsg = 16 +pkg syscall (linux-386), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-386), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-386), const SizeofInotifyEvent = 16 +pkg syscall (linux-386), const SizeofLinger = 8 +pkg syscall (linux-386), const SizeofMsghdr = 28 +pkg syscall (linux-386), const SizeofNlAttr = 4 +pkg syscall (linux-386), const SizeofNlMsgerr = 20 +pkg syscall (linux-386), const SizeofNlMsghdr = 16 +pkg syscall (linux-386), const SizeofRtAttr = 4 +pkg syscall (linux-386), const SizeofRtGenmsg = 1 +pkg syscall (linux-386), const SizeofRtMsg = 12 +pkg syscall (linux-386), const SizeofRtNexthop = 8 +pkg syscall (linux-386), const SizeofSockFilter = 8 +pkg syscall (linux-386), const SizeofSockFprog = 8 +pkg syscall (linux-386), const SizeofSockaddrAny = 112 +pkg syscall (linux-386), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-386), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-386), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-386), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-386), const SizeofSockaddrUnix = 110 +pkg syscall (linux-386), const SizeofTCPInfo = 104 +pkg syscall (linux-386), const SizeofTCPInfo ideal-int +pkg syscall (linux-386), const SizeofUcred = 12 +pkg syscall (linux-386), const TCGETS = 21505 +pkg syscall (linux-386), const TCP_CONGESTION = 13 +pkg syscall (linux-386), const TCP_CORK = 3 +pkg syscall (linux-386), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-386), const TCP_INFO = 11 +pkg syscall (linux-386), const TCP_KEEPCNT = 6 +pkg syscall (linux-386), const TCP_KEEPIDLE = 4 +pkg syscall (linux-386), const TCP_KEEPINTVL = 5 +pkg syscall (linux-386), const TCP_LINGER2 = 8 +pkg syscall (linux-386), const TCP_MAXSEG = 2 +pkg syscall (linux-386), const TCP_MAXWIN = 65535 +pkg syscall (linux-386), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-386), const TCP_MD5SIG = 14 +pkg syscall (linux-386), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-386), const TCP_MSS = 512 +pkg syscall (linux-386), const TCP_QUICKACK = 12 +pkg syscall (linux-386), const TCP_SYNCNT = 7 +pkg syscall (linux-386), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-386), const TCSETS = 21506 +pkg syscall (linux-386), const TIOCCBRK = 21544 +pkg syscall (linux-386), const TIOCCONS = 21533 +pkg syscall (linux-386), const TIOCEXCL = 21516 +pkg syscall (linux-386), const TIOCGDEV = 2147767346 +pkg syscall (linux-386), const TIOCGETD = 21540 +pkg syscall (linux-386), const TIOCGICOUNT = 21597 +pkg syscall (linux-386), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-386), const TIOCGPGRP = 21519 +pkg syscall (linux-386), const TIOCGPTN = 2147767344 +pkg syscall (linux-386), const TIOCGRS485 = 21550 +pkg syscall (linux-386), const TIOCGSERIAL = 21534 +pkg syscall (linux-386), const TIOCGSID = 21545 +pkg syscall (linux-386), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-386), const TIOCGWINSZ = 21523 +pkg syscall (linux-386), const TIOCINQ = 21531 +pkg syscall (linux-386), const TIOCLINUX = 21532 +pkg syscall (linux-386), const TIOCMBIC = 21527 +pkg syscall (linux-386), const TIOCMBIS = 21526 +pkg syscall (linux-386), const TIOCMGET = 21525 +pkg syscall (linux-386), const TIOCMIWAIT = 21596 +pkg syscall (linux-386), const TIOCMSET = 21528 +pkg syscall (linux-386), const TIOCM_CAR = 64 +pkg syscall (linux-386), const TIOCM_CD = 64 +pkg syscall (linux-386), const TIOCM_CTS = 32 +pkg syscall (linux-386), const TIOCM_DSR = 256 +pkg syscall (linux-386), const TIOCM_DTR = 2 +pkg syscall (linux-386), const TIOCM_LE = 1 +pkg syscall (linux-386), const TIOCM_RI = 128 +pkg syscall (linux-386), const TIOCM_RNG = 128 +pkg syscall (linux-386), const TIOCM_RTS = 4 +pkg syscall (linux-386), const TIOCM_SR = 16 +pkg syscall (linux-386), const TIOCM_ST = 8 +pkg syscall (linux-386), const TIOCNOTTY = 21538 +pkg syscall (linux-386), const TIOCNXCL = 21517 +pkg syscall (linux-386), const TIOCOUTQ = 21521 +pkg syscall (linux-386), const TIOCPKT = 21536 +pkg syscall (linux-386), const TIOCPKT_DATA = 0 +pkg syscall (linux-386), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-386), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-386), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-386), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-386), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-386), const TIOCPKT_START = 8 +pkg syscall (linux-386), const TIOCPKT_STOP = 4 +pkg syscall (linux-386), const TIOCSBRK = 21543 +pkg syscall (linux-386), const TIOCSCTTY = 21518 +pkg syscall (linux-386), const TIOCSERCONFIG = 21587 +pkg syscall (linux-386), const TIOCSERGETLSR = 21593 +pkg syscall (linux-386), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-386), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-386), const TIOCSERGWILD = 21588 +pkg syscall (linux-386), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-386), const TIOCSERSWILD = 21589 +pkg syscall (linux-386), const TIOCSER_TEMT = 1 +pkg syscall (linux-386), const TIOCSETD = 21539 +pkg syscall (linux-386), const TIOCSIG = 1074025526 +pkg syscall (linux-386), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-386), const TIOCSPGRP = 21520 +pkg syscall (linux-386), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-386), const TIOCSRS485 = 21551 +pkg syscall (linux-386), const TIOCSSERIAL = 21535 +pkg syscall (linux-386), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-386), const TIOCSTI = 21522 +pkg syscall (linux-386), const TIOCSWINSZ = 21524 +pkg syscall (linux-386), const TOSTOP = 256 +pkg syscall (linux-386), const TUNATTACHFILTER = 1074287829 +pkg syscall (linux-386), const TUNDETACHFILTER = 1074287830 +pkg syscall (linux-386), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-386), const TUNGETIFF = 2147767506 +pkg syscall (linux-386), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-386), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-386), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-386), const TUNSETGROUP = 1074025678 +pkg syscall (linux-386), const TUNSETIFF = 1074025674 +pkg syscall (linux-386), const TUNSETLINK = 1074025677 +pkg syscall (linux-386), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-386), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-386), const TUNSETOWNER = 1074025676 +pkg syscall (linux-386), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-386), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-386), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-386), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-386), const VDISCARD = 13 +pkg syscall (linux-386), const VEOF = 4 +pkg syscall (linux-386), const VEOL = 11 +pkg syscall (linux-386), const VEOL2 = 16 +pkg syscall (linux-386), const VERASE = 2 +pkg syscall (linux-386), const VINTR = 0 +pkg syscall (linux-386), const VKILL = 3 +pkg syscall (linux-386), const VLNEXT = 15 +pkg syscall (linux-386), const VMIN = 6 +pkg syscall (linux-386), const VQUIT = 1 +pkg syscall (linux-386), const VREPRINT = 12 +pkg syscall (linux-386), const VSTART = 8 +pkg syscall (linux-386), const VSTOP = 9 +pkg syscall (linux-386), const VSUSP = 10 +pkg syscall (linux-386), const VSWTC = 7 +pkg syscall (linux-386), const VTIME = 5 +pkg syscall (linux-386), const VWERASE = 14 +pkg syscall (linux-386), const WALL = 1073741824 +pkg syscall (linux-386), const WCLONE = 2147483648 +pkg syscall (linux-386), const WCONTINUED = 8 +pkg syscall (linux-386), const WEXITED = 4 +pkg syscall (linux-386), const WNOHANG = 1 +pkg syscall (linux-386), const WNOTHREAD = 536870912 +pkg syscall (linux-386), const WNOWAIT = 16777216 +pkg syscall (linux-386), const WORDSIZE = 32 +pkg syscall (linux-386), const WSTOPPED = 2 +pkg syscall (linux-386), const WUNTRACED = 2 +pkg syscall (linux-386), const XCASE = 4 +pkg syscall (linux-386), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-386), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-386), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-386), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-386), func Pipe2([]int, int) error +pkg syscall (linux-386), func PtraceSyscall(int, int) error +pkg syscall (linux-386), func Removexattr(string, string) error +pkg syscall (linux-386), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-386), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-386), type SysProcAttr struct, Ctty int +pkg syscall (linux-386), type TCPInfo struct +pkg syscall (linux-386), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-386), type TCPInfo struct, Ato uint32 +pkg syscall (linux-386), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-386), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-386), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-386), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-386), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-386), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-386), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-386), type TCPInfo struct, Lost uint32 +pkg syscall (linux-386), type TCPInfo struct, Options uint8 +pkg syscall (linux-386), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-386), type TCPInfo struct, Probes uint8 +pkg syscall (linux-386), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-386), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-386), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-386), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-386), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-386), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-386), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-386), type TCPInfo struct, Rto uint32 +pkg syscall (linux-386), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-386), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-386), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-386), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-386), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-386), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-386), type TCPInfo struct, State uint8 +pkg syscall (linux-386), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-386), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-386-cgo), const AF_ALG = 38 +pkg syscall (linux-386-cgo), const AF_APPLETALK = 5 +pkg syscall (linux-386-cgo), const AF_ASH = 18 +pkg syscall (linux-386-cgo), const AF_ATMPVC = 8 +pkg syscall (linux-386-cgo), const AF_ATMSVC = 20 +pkg syscall (linux-386-cgo), const AF_AX25 = 3 +pkg syscall (linux-386-cgo), const AF_BLUETOOTH = 31 +pkg syscall (linux-386-cgo), const AF_BRIDGE = 7 +pkg syscall (linux-386-cgo), const AF_CAIF = 37 +pkg syscall (linux-386-cgo), const AF_CAN = 29 +pkg syscall (linux-386-cgo), const AF_DECnet = 12 +pkg syscall (linux-386-cgo), const AF_ECONET = 19 +pkg syscall (linux-386-cgo), const AF_FILE = 1 +pkg syscall (linux-386-cgo), const AF_IEEE802154 = 36 +pkg syscall (linux-386-cgo), const AF_INET6 = 10 +pkg syscall (linux-386-cgo), const AF_IPX = 4 +pkg syscall (linux-386-cgo), const AF_IRDA = 23 +pkg syscall (linux-386-cgo), const AF_ISDN = 34 +pkg syscall (linux-386-cgo), const AF_IUCV = 32 +pkg syscall (linux-386-cgo), const AF_KEY = 15 +pkg syscall (linux-386-cgo), const AF_LLC = 26 +pkg syscall (linux-386-cgo), const AF_LOCAL = 1 +pkg syscall (linux-386-cgo), const AF_MAX = 39 +pkg syscall (linux-386-cgo), const AF_NETBEUI = 13 +pkg syscall (linux-386-cgo), const AF_NETLINK = 16 +pkg syscall (linux-386-cgo), const AF_NETROM = 6 +pkg syscall (linux-386-cgo), const AF_PACKET = 17 +pkg syscall (linux-386-cgo), const AF_PHONET = 35 +pkg syscall (linux-386-cgo), const AF_PPPOX = 24 +pkg syscall (linux-386-cgo), const AF_RDS = 21 +pkg syscall (linux-386-cgo), const AF_ROSE = 11 +pkg syscall (linux-386-cgo), const AF_ROUTE = 16 +pkg syscall (linux-386-cgo), const AF_RXRPC = 33 +pkg syscall (linux-386-cgo), const AF_SECURITY = 14 +pkg syscall (linux-386-cgo), const AF_SNA = 22 +pkg syscall (linux-386-cgo), const AF_TIPC = 30 +pkg syscall (linux-386-cgo), const AF_WANPIPE = 25 +pkg syscall (linux-386-cgo), const AF_X25 = 9 +pkg syscall (linux-386-cgo), const ARPHRD_ADAPT = 264 +pkg syscall (linux-386-cgo), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-386-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (linux-386-cgo), const ARPHRD_ASH = 781 +pkg syscall (linux-386-cgo), const ARPHRD_ATM = 19 +pkg syscall (linux-386-cgo), const ARPHRD_AX25 = 3 +pkg syscall (linux-386-cgo), const ARPHRD_BIF = 775 +pkg syscall (linux-386-cgo), const ARPHRD_CHAOS = 5 +pkg syscall (linux-386-cgo), const ARPHRD_CISCO = 513 +pkg syscall (linux-386-cgo), const ARPHRD_CSLIP = 257 +pkg syscall (linux-386-cgo), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-386-cgo), const ARPHRD_DDCMP = 517 +pkg syscall (linux-386-cgo), const ARPHRD_DLCI = 15 +pkg syscall (linux-386-cgo), const ARPHRD_ECONET = 782 +pkg syscall (linux-386-cgo), const ARPHRD_EETHER = 2 +pkg syscall (linux-386-cgo), const ARPHRD_ETHER = 1 +pkg syscall (linux-386-cgo), const ARPHRD_EUI64 = 27 +pkg syscall (linux-386-cgo), const ARPHRD_FCAL = 785 +pkg syscall (linux-386-cgo), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-386-cgo), const ARPHRD_FCPL = 786 +pkg syscall (linux-386-cgo), const ARPHRD_FCPP = 784 +pkg syscall (linux-386-cgo), const ARPHRD_FDDI = 774 +pkg syscall (linux-386-cgo), const ARPHRD_FRAD = 770 +pkg syscall (linux-386-cgo), const ARPHRD_HDLC = 513 +pkg syscall (linux-386-cgo), const ARPHRD_HIPPI = 780 +pkg syscall (linux-386-cgo), const ARPHRD_HWX25 = 272 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-386-cgo), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-386-cgo), const ARPHRD_IPDDP = 777 +pkg syscall (linux-386-cgo), const ARPHRD_IPGRE = 778 +pkg syscall (linux-386-cgo), const ARPHRD_IRDA = 783 +pkg syscall (linux-386-cgo), const ARPHRD_LAPB = 516 +pkg syscall (linux-386-cgo), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-386-cgo), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-386-cgo), const ARPHRD_METRICOM = 23 +pkg syscall (linux-386-cgo), const ARPHRD_NETROM = 0 +pkg syscall (linux-386-cgo), const ARPHRD_NONE = 65534 +pkg syscall (linux-386-cgo), const ARPHRD_PIMREG = 779 +pkg syscall (linux-386-cgo), const ARPHRD_PPP = 512 +pkg syscall (linux-386-cgo), const ARPHRD_PRONET = 4 +pkg syscall (linux-386-cgo), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-386-cgo), const ARPHRD_ROSE = 270 +pkg syscall (linux-386-cgo), const ARPHRD_RSRVD = 260 +pkg syscall (linux-386-cgo), const ARPHRD_SIT = 776 +pkg syscall (linux-386-cgo), const ARPHRD_SKIP = 771 +pkg syscall (linux-386-cgo), const ARPHRD_SLIP = 256 +pkg syscall (linux-386-cgo), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-386-cgo), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-386-cgo), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-386-cgo), const ARPHRD_VOID = 65535 +pkg syscall (linux-386-cgo), const ARPHRD_X25 = 271 +pkg syscall (linux-386-cgo), const B0 = 0 +pkg syscall (linux-386-cgo), const B1000000 = 4104 +pkg syscall (linux-386-cgo), const B110 = 3 +pkg syscall (linux-386-cgo), const B115200 = 4098 +pkg syscall (linux-386-cgo), const B1152000 = 4105 +pkg syscall (linux-386-cgo), const B1200 = 9 +pkg syscall (linux-386-cgo), const B134 = 4 +pkg syscall (linux-386-cgo), const B150 = 5 +pkg syscall (linux-386-cgo), const B1500000 = 4106 +pkg syscall (linux-386-cgo), const B1800 = 10 +pkg syscall (linux-386-cgo), const B19200 = 14 +pkg syscall (linux-386-cgo), const B200 = 6 +pkg syscall (linux-386-cgo), const B2000000 = 4107 +pkg syscall (linux-386-cgo), const B230400 = 4099 +pkg syscall (linux-386-cgo), const B2400 = 11 +pkg syscall (linux-386-cgo), const B2500000 = 4108 +pkg syscall (linux-386-cgo), const B300 = 7 +pkg syscall (linux-386-cgo), const B3000000 = 4109 +pkg syscall (linux-386-cgo), const B3500000 = 4110 +pkg syscall (linux-386-cgo), const B38400 = 15 +pkg syscall (linux-386-cgo), const B4000000 = 4111 +pkg syscall (linux-386-cgo), const B460800 = 4100 +pkg syscall (linux-386-cgo), const B4800 = 12 +pkg syscall (linux-386-cgo), const B50 = 1 +pkg syscall (linux-386-cgo), const B500000 = 4101 +pkg syscall (linux-386-cgo), const B57600 = 4097 +pkg syscall (linux-386-cgo), const B576000 = 4102 +pkg syscall (linux-386-cgo), const B600 = 8 +pkg syscall (linux-386-cgo), const B75 = 2 +pkg syscall (linux-386-cgo), const B921600 = 4103 +pkg syscall (linux-386-cgo), const B9600 = 13 +pkg syscall (linux-386-cgo), const BPF_A = 16 +pkg syscall (linux-386-cgo), const BPF_ABS = 32 +pkg syscall (linux-386-cgo), const BPF_ADD = 0 +pkg syscall (linux-386-cgo), const BPF_ALU = 4 +pkg syscall (linux-386-cgo), const BPF_AND = 80 +pkg syscall (linux-386-cgo), const BPF_B = 16 +pkg syscall (linux-386-cgo), const BPF_DIV = 48 +pkg syscall (linux-386-cgo), const BPF_H = 8 +pkg syscall (linux-386-cgo), const BPF_IMM = 0 +pkg syscall (linux-386-cgo), const BPF_IND = 64 +pkg syscall (linux-386-cgo), const BPF_JA = 0 +pkg syscall (linux-386-cgo), const BPF_JEQ = 16 +pkg syscall (linux-386-cgo), const BPF_JGE = 48 +pkg syscall (linux-386-cgo), const BPF_JGT = 32 +pkg syscall (linux-386-cgo), const BPF_JMP = 5 +pkg syscall (linux-386-cgo), const BPF_JSET = 64 +pkg syscall (linux-386-cgo), const BPF_K = 0 +pkg syscall (linux-386-cgo), const BPF_LD = 0 +pkg syscall (linux-386-cgo), const BPF_LDX = 1 +pkg syscall (linux-386-cgo), const BPF_LEN = 128 +pkg syscall (linux-386-cgo), const BPF_LSH = 96 +pkg syscall (linux-386-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-386-cgo), const BPF_MAXINSNS = 4096 +pkg syscall (linux-386-cgo), const BPF_MEM = 96 +pkg syscall (linux-386-cgo), const BPF_MEMWORDS = 16 +pkg syscall (linux-386-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-386-cgo), const BPF_MISC = 7 +pkg syscall (linux-386-cgo), const BPF_MSH = 160 +pkg syscall (linux-386-cgo), const BPF_MUL = 32 +pkg syscall (linux-386-cgo), const BPF_NEG = 128 +pkg syscall (linux-386-cgo), const BPF_OR = 64 +pkg syscall (linux-386-cgo), const BPF_RET = 6 +pkg syscall (linux-386-cgo), const BPF_RSH = 112 +pkg syscall (linux-386-cgo), const BPF_ST = 2 +pkg syscall (linux-386-cgo), const BPF_STX = 3 +pkg syscall (linux-386-cgo), const BPF_SUB = 16 +pkg syscall (linux-386-cgo), const BPF_TAX = 0 +pkg syscall (linux-386-cgo), const BPF_TXA = 128 +pkg syscall (linux-386-cgo), const BPF_W = 0 +pkg syscall (linux-386-cgo), const BPF_X = 8 +pkg syscall (linux-386-cgo), const BRKINT = 2 +pkg syscall (linux-386-cgo), const CLOCAL = 2048 +pkg syscall (linux-386-cgo), const CREAD = 128 +pkg syscall (linux-386-cgo), const CS5 = 0 +pkg syscall (linux-386-cgo), const CS6 = 16 +pkg syscall (linux-386-cgo), const CS7 = 32 +pkg syscall (linux-386-cgo), const CS8 = 48 +pkg syscall (linux-386-cgo), const CSIZE = 48 +pkg syscall (linux-386-cgo), const CSTOPB = 64 +pkg syscall (linux-386-cgo), const DT_BLK = 6 +pkg syscall (linux-386-cgo), const DT_CHR = 2 +pkg syscall (linux-386-cgo), const DT_DIR = 4 +pkg syscall (linux-386-cgo), const DT_FIFO = 1 +pkg syscall (linux-386-cgo), const DT_LNK = 10 +pkg syscall (linux-386-cgo), const DT_REG = 8 +pkg syscall (linux-386-cgo), const DT_SOCK = 12 +pkg syscall (linux-386-cgo), const DT_UNKNOWN = 0 +pkg syscall (linux-386-cgo), const DT_WHT = 14 +pkg syscall (linux-386-cgo), const E2BIG = 7 +pkg syscall (linux-386-cgo), const EACCES = 13 +pkg syscall (linux-386-cgo), const EADDRINUSE = 98 +pkg syscall (linux-386-cgo), const EADDRNOTAVAIL = 99 +pkg syscall (linux-386-cgo), const EADV = 68 +pkg syscall (linux-386-cgo), const EAFNOSUPPORT = 97 +pkg syscall (linux-386-cgo), const EAGAIN = 11 +pkg syscall (linux-386-cgo), const EALREADY = 114 +pkg syscall (linux-386-cgo), const EBADE = 52 +pkg syscall (linux-386-cgo), const EBADF = 9 +pkg syscall (linux-386-cgo), const EBADFD = 77 +pkg syscall (linux-386-cgo), const EBADMSG = 74 +pkg syscall (linux-386-cgo), const EBADR = 53 +pkg syscall (linux-386-cgo), const EBADRQC = 56 +pkg syscall (linux-386-cgo), const EBADSLT = 57 +pkg syscall (linux-386-cgo), const EBFONT = 59 +pkg syscall (linux-386-cgo), const EBUSY = 16 +pkg syscall (linux-386-cgo), const ECANCELED = 125 +pkg syscall (linux-386-cgo), const ECHILD = 10 +pkg syscall (linux-386-cgo), const ECHO = 8 +pkg syscall (linux-386-cgo), const ECHOCTL = 512 +pkg syscall (linux-386-cgo), const ECHOE = 16 +pkg syscall (linux-386-cgo), const ECHOK = 32 +pkg syscall (linux-386-cgo), const ECHOKE = 2048 +pkg syscall (linux-386-cgo), const ECHONL = 64 +pkg syscall (linux-386-cgo), const ECHOPRT = 1024 +pkg syscall (linux-386-cgo), const ECHRNG = 44 +pkg syscall (linux-386-cgo), const ECOMM = 70 +pkg syscall (linux-386-cgo), const ECONNABORTED = 103 +pkg syscall (linux-386-cgo), const ECONNREFUSED = 111 +pkg syscall (linux-386-cgo), const ECONNRESET = 104 +pkg syscall (linux-386-cgo), const EDEADLK = 35 +pkg syscall (linux-386-cgo), const EDEADLOCK = 35 +pkg syscall (linux-386-cgo), const EDESTADDRREQ = 89 +pkg syscall (linux-386-cgo), const EDOM = 33 +pkg syscall (linux-386-cgo), const EDOTDOT = 73 +pkg syscall (linux-386-cgo), const EDQUOT = 122 +pkg syscall (linux-386-cgo), const EEXIST = 17 +pkg syscall (linux-386-cgo), const EFAULT = 14 +pkg syscall (linux-386-cgo), const EFBIG = 27 +pkg syscall (linux-386-cgo), const EHOSTDOWN = 112 +pkg syscall (linux-386-cgo), const EHOSTUNREACH = 113 +pkg syscall (linux-386-cgo), const EIDRM = 43 +pkg syscall (linux-386-cgo), const EILSEQ = 84 +pkg syscall (linux-386-cgo), const EINPROGRESS = 115 +pkg syscall (linux-386-cgo), const EINTR = 4 +pkg syscall (linux-386-cgo), const EINVAL = 22 +pkg syscall (linux-386-cgo), const EIO = 5 +pkg syscall (linux-386-cgo), const EISCONN = 106 +pkg syscall (linux-386-cgo), const EISDIR = 21 +pkg syscall (linux-386-cgo), const EISNAM = 120 +pkg syscall (linux-386-cgo), const EKEYEXPIRED = 127 +pkg syscall (linux-386-cgo), const EKEYREJECTED = 129 +pkg syscall (linux-386-cgo), const EKEYREVOKED = 128 +pkg syscall (linux-386-cgo), const EL2HLT = 51 +pkg syscall (linux-386-cgo), const EL2NSYNC = 45 +pkg syscall (linux-386-cgo), const EL3HLT = 46 +pkg syscall (linux-386-cgo), const EL3RST = 47 +pkg syscall (linux-386-cgo), const ELIBACC = 79 +pkg syscall (linux-386-cgo), const ELIBBAD = 80 +pkg syscall (linux-386-cgo), const ELIBEXEC = 83 +pkg syscall (linux-386-cgo), const ELIBMAX = 82 +pkg syscall (linux-386-cgo), const ELIBSCN = 81 +pkg syscall (linux-386-cgo), const ELNRNG = 48 +pkg syscall (linux-386-cgo), const ELOOP = 40 +pkg syscall (linux-386-cgo), const EMEDIUMTYPE = 124 +pkg syscall (linux-386-cgo), const EMFILE = 24 +pkg syscall (linux-386-cgo), const EMLINK = 31 +pkg syscall (linux-386-cgo), const EMSGSIZE = 90 +pkg syscall (linux-386-cgo), const EMULTIHOP = 72 +pkg syscall (linux-386-cgo), const ENAMETOOLONG = 36 +pkg syscall (linux-386-cgo), const ENAVAIL = 119 +pkg syscall (linux-386-cgo), const ENETDOWN = 100 +pkg syscall (linux-386-cgo), const ENETRESET = 102 +pkg syscall (linux-386-cgo), const ENETUNREACH = 101 +pkg syscall (linux-386-cgo), const ENFILE = 23 +pkg syscall (linux-386-cgo), const ENOANO = 55 +pkg syscall (linux-386-cgo), const ENOBUFS = 105 +pkg syscall (linux-386-cgo), const ENOCSI = 50 +pkg syscall (linux-386-cgo), const ENODATA = 61 +pkg syscall (linux-386-cgo), const ENODEV = 19 +pkg syscall (linux-386-cgo), const ENOEXEC = 8 +pkg syscall (linux-386-cgo), const ENOKEY = 126 +pkg syscall (linux-386-cgo), const ENOLCK = 37 +pkg syscall (linux-386-cgo), const ENOLINK = 67 +pkg syscall (linux-386-cgo), const ENOMEDIUM = 123 +pkg syscall (linux-386-cgo), const ENOMEM = 12 +pkg syscall (linux-386-cgo), const ENOMSG = 42 +pkg syscall (linux-386-cgo), const ENONET = 64 +pkg syscall (linux-386-cgo), const ENOPKG = 65 +pkg syscall (linux-386-cgo), const ENOPROTOOPT = 92 +pkg syscall (linux-386-cgo), const ENOSPC = 28 +pkg syscall (linux-386-cgo), const ENOSR = 63 +pkg syscall (linux-386-cgo), const ENOSTR = 60 +pkg syscall (linux-386-cgo), const ENOSYS = 38 +pkg syscall (linux-386-cgo), const ENOTBLK = 15 +pkg syscall (linux-386-cgo), const ENOTCONN = 107 +pkg syscall (linux-386-cgo), const ENOTDIR = 20 +pkg syscall (linux-386-cgo), const ENOTEMPTY = 39 +pkg syscall (linux-386-cgo), const ENOTNAM = 118 +pkg syscall (linux-386-cgo), const ENOTRECOVERABLE = 131 +pkg syscall (linux-386-cgo), const ENOTSOCK = 88 +pkg syscall (linux-386-cgo), const ENOTSUP = 95 +pkg syscall (linux-386-cgo), const ENOTTY = 25 +pkg syscall (linux-386-cgo), const ENOTUNIQ = 76 +pkg syscall (linux-386-cgo), const ENXIO = 6 +pkg syscall (linux-386-cgo), const EOPNOTSUPP = 95 +pkg syscall (linux-386-cgo), const EOVERFLOW = 75 +pkg syscall (linux-386-cgo), const EOWNERDEAD = 130 +pkg syscall (linux-386-cgo), const EPERM = 1 +pkg syscall (linux-386-cgo), const EPFNOSUPPORT = 96 +pkg syscall (linux-386-cgo), const EPIPE = 32 +pkg syscall (linux-386-cgo), const EPOLLERR = 8 +pkg syscall (linux-386-cgo), const EPOLLET = -2147483648 +pkg syscall (linux-386-cgo), const EPOLLHUP = 16 +pkg syscall (linux-386-cgo), const EPOLLIN = 1 +pkg syscall (linux-386-cgo), const EPOLLMSG = 1024 +pkg syscall (linux-386-cgo), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-386-cgo), const EPOLLOUT = 4 +pkg syscall (linux-386-cgo), const EPOLLPRI = 2 +pkg syscall (linux-386-cgo), const EPOLLRDBAND = 128 +pkg syscall (linux-386-cgo), const EPOLLRDHUP = 8192 +pkg syscall (linux-386-cgo), const EPOLLRDNORM = 64 +pkg syscall (linux-386-cgo), const EPOLLWRBAND = 512 +pkg syscall (linux-386-cgo), const EPOLLWRNORM = 256 +pkg syscall (linux-386-cgo), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-386-cgo), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-386-cgo), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-386-cgo), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-386-cgo), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-386-cgo), const EPROTO = 71 +pkg syscall (linux-386-cgo), const EPROTONOSUPPORT = 93 +pkg syscall (linux-386-cgo), const EPROTOTYPE = 91 +pkg syscall (linux-386-cgo), const ERANGE = 34 +pkg syscall (linux-386-cgo), const EREMCHG = 78 +pkg syscall (linux-386-cgo), const EREMOTE = 66 +pkg syscall (linux-386-cgo), const EREMOTEIO = 121 +pkg syscall (linux-386-cgo), const ERESTART = 85 +pkg syscall (linux-386-cgo), const ERFKILL = 132 +pkg syscall (linux-386-cgo), const EROFS = 30 +pkg syscall (linux-386-cgo), const ESHUTDOWN = 108 +pkg syscall (linux-386-cgo), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-386-cgo), const ESPIPE = 29 +pkg syscall (linux-386-cgo), const ESRCH = 3 +pkg syscall (linux-386-cgo), const ESRMNT = 69 +pkg syscall (linux-386-cgo), const ESTALE = 116 +pkg syscall (linux-386-cgo), const ESTRPIPE = 86 +pkg syscall (linux-386-cgo), const ETH_P_1588 = 35063 +pkg syscall (linux-386-cgo), const ETH_P_8021Q = 33024 +pkg syscall (linux-386-cgo), const ETH_P_802_2 = 4 +pkg syscall (linux-386-cgo), const ETH_P_802_3 = 1 +pkg syscall (linux-386-cgo), const ETH_P_AARP = 33011 +pkg syscall (linux-386-cgo), const ETH_P_ALL = 3 +pkg syscall (linux-386-cgo), const ETH_P_AOE = 34978 +pkg syscall (linux-386-cgo), const ETH_P_ARCNET = 26 +pkg syscall (linux-386-cgo), const ETH_P_ARP = 2054 +pkg syscall (linux-386-cgo), const ETH_P_ATALK = 32923 +pkg syscall (linux-386-cgo), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-386-cgo), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-386-cgo), const ETH_P_AX25 = 2 +pkg syscall (linux-386-cgo), const ETH_P_BPQ = 2303 +pkg syscall (linux-386-cgo), const ETH_P_CAIF = 247 +pkg syscall (linux-386-cgo), const ETH_P_CAN = 12 +pkg syscall (linux-386-cgo), const ETH_P_CONTROL = 22 +pkg syscall (linux-386-cgo), const ETH_P_CUST = 24582 +pkg syscall (linux-386-cgo), const ETH_P_DDCMP = 6 +pkg syscall (linux-386-cgo), const ETH_P_DEC = 24576 +pkg syscall (linux-386-cgo), const ETH_P_DIAG = 24581 +pkg syscall (linux-386-cgo), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-386-cgo), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-386-cgo), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-386-cgo), const ETH_P_DSA = 27 +pkg syscall (linux-386-cgo), const ETH_P_ECONET = 24 +pkg syscall (linux-386-cgo), const ETH_P_EDSA = 56026 +pkg syscall (linux-386-cgo), const ETH_P_FCOE = 35078 +pkg syscall (linux-386-cgo), const ETH_P_FIP = 35092 +pkg syscall (linux-386-cgo), const ETH_P_HDLC = 25 +pkg syscall (linux-386-cgo), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-386-cgo), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-386-cgo), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-386-cgo), const ETH_P_IP = 2048 +pkg syscall (linux-386-cgo), const ETH_P_IPV6 = 34525 +pkg syscall (linux-386-cgo), const ETH_P_IPX = 33079 +pkg syscall (linux-386-cgo), const ETH_P_IRDA = 23 +pkg syscall (linux-386-cgo), const ETH_P_LAT = 24580 +pkg syscall (linux-386-cgo), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-386-cgo), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-386-cgo), const ETH_P_LOOP = 96 +pkg syscall (linux-386-cgo), const ETH_P_MOBITEX = 21 +pkg syscall (linux-386-cgo), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-386-cgo), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-386-cgo), const ETH_P_PAE = 34958 +pkg syscall (linux-386-cgo), const ETH_P_PAUSE = 34824 +pkg syscall (linux-386-cgo), const ETH_P_PHONET = 245 +pkg syscall (linux-386-cgo), const ETH_P_PPPTALK = 16 +pkg syscall (linux-386-cgo), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-386-cgo), const ETH_P_PPP_MP = 8 +pkg syscall (linux-386-cgo), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-386-cgo), const ETH_P_PUP = 512 +pkg syscall (linux-386-cgo), const ETH_P_PUPAT = 513 +pkg syscall (linux-386-cgo), const ETH_P_RARP = 32821 +pkg syscall (linux-386-cgo), const ETH_P_SCA = 24583 +pkg syscall (linux-386-cgo), const ETH_P_SLOW = 34825 +pkg syscall (linux-386-cgo), const ETH_P_SNAP = 5 +pkg syscall (linux-386-cgo), const ETH_P_TEB = 25944 +pkg syscall (linux-386-cgo), const ETH_P_TIPC = 35018 +pkg syscall (linux-386-cgo), const ETH_P_TRAILER = 28 +pkg syscall (linux-386-cgo), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-386-cgo), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-386-cgo), const ETH_P_WCCP = 34878 +pkg syscall (linux-386-cgo), const ETH_P_X25 = 2053 +pkg syscall (linux-386-cgo), const ETIME = 62 +pkg syscall (linux-386-cgo), const ETIMEDOUT = 110 +pkg syscall (linux-386-cgo), const ETOOMANYREFS = 109 +pkg syscall (linux-386-cgo), const ETXTBSY = 26 +pkg syscall (linux-386-cgo), const EUCLEAN = 117 +pkg syscall (linux-386-cgo), const EUNATCH = 49 +pkg syscall (linux-386-cgo), const EUSERS = 87 +pkg syscall (linux-386-cgo), const EWOULDBLOCK = 11 +pkg syscall (linux-386-cgo), const EXDEV = 18 +pkg syscall (linux-386-cgo), const EXFULL = 54 +pkg syscall (linux-386-cgo), const FD_CLOEXEC = 1 +pkg syscall (linux-386-cgo), const FD_SETSIZE = 1024 +pkg syscall (linux-386-cgo), const FLUSHO = 4096 +pkg syscall (linux-386-cgo), const F_DUPFD = 0 +pkg syscall (linux-386-cgo), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-386-cgo), const F_EXLCK = 4 +pkg syscall (linux-386-cgo), const F_GETFD = 1 +pkg syscall (linux-386-cgo), const F_GETFL = 3 +pkg syscall (linux-386-cgo), const F_GETLEASE = 1025 +pkg syscall (linux-386-cgo), const F_GETLK = 12 +pkg syscall (linux-386-cgo), const F_GETLK64 = 12 +pkg syscall (linux-386-cgo), const F_GETOWN = 9 +pkg syscall (linux-386-cgo), const F_GETOWN_EX = 16 +pkg syscall (linux-386-cgo), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-386-cgo), const F_GETSIG = 11 +pkg syscall (linux-386-cgo), const F_LOCK = 1 +pkg syscall (linux-386-cgo), const F_NOTIFY = 1026 +pkg syscall (linux-386-cgo), const F_OK = 0 +pkg syscall (linux-386-cgo), const F_RDLCK = 0 +pkg syscall (linux-386-cgo), const F_SETFD = 2 +pkg syscall (linux-386-cgo), const F_SETFL = 4 +pkg syscall (linux-386-cgo), const F_SETLEASE = 1024 +pkg syscall (linux-386-cgo), const F_SETLK = 13 +pkg syscall (linux-386-cgo), const F_SETLK64 = 13 +pkg syscall (linux-386-cgo), const F_SETLKW = 14 +pkg syscall (linux-386-cgo), const F_SETLKW64 = 14 +pkg syscall (linux-386-cgo), const F_SETOWN = 8 +pkg syscall (linux-386-cgo), const F_SETOWN_EX = 15 +pkg syscall (linux-386-cgo), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-386-cgo), const F_SETSIG = 10 +pkg syscall (linux-386-cgo), const F_SHLCK = 8 +pkg syscall (linux-386-cgo), const F_TEST = 3 +pkg syscall (linux-386-cgo), const F_TLOCK = 2 +pkg syscall (linux-386-cgo), const F_ULOCK = 0 +pkg syscall (linux-386-cgo), const F_UNLCK = 2 +pkg syscall (linux-386-cgo), const F_WRLCK = 1 +pkg syscall (linux-386-cgo), const HUPCL = 1024 +pkg syscall (linux-386-cgo), const ICANON = 2 +pkg syscall (linux-386-cgo), const ICRNL = 256 +pkg syscall (linux-386-cgo), const IEXTEN = 32768 +pkg syscall (linux-386-cgo), const IFA_ADDRESS = 1 +pkg syscall (linux-386-cgo), const IFA_ANYCAST = 5 +pkg syscall (linux-386-cgo), const IFA_BROADCAST = 4 +pkg syscall (linux-386-cgo), const IFA_CACHEINFO = 6 +pkg syscall (linux-386-cgo), const IFA_F_DADFAILED = 8 +pkg syscall (linux-386-cgo), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-386-cgo), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-386-cgo), const IFA_F_NODAD = 2 +pkg syscall (linux-386-cgo), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-386-cgo), const IFA_F_PERMANENT = 128 +pkg syscall (linux-386-cgo), const IFA_F_SECONDARY = 1 +pkg syscall (linux-386-cgo), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-386-cgo), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-386-cgo), const IFA_LABEL = 3 +pkg syscall (linux-386-cgo), const IFA_LOCAL = 2 +pkg syscall (linux-386-cgo), const IFA_MAX = 7 +pkg syscall (linux-386-cgo), const IFA_MULTICAST = 7 +pkg syscall (linux-386-cgo), const IFA_UNSPEC = 0 +pkg syscall (linux-386-cgo), const IFF_ALLMULTI = 512 +pkg syscall (linux-386-cgo), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-386-cgo), const IFF_DEBUG = 4 +pkg syscall (linux-386-cgo), const IFF_DYNAMIC = 32768 +pkg syscall (linux-386-cgo), const IFF_LOOPBACK = 8 +pkg syscall (linux-386-cgo), const IFF_MASTER = 1024 +pkg syscall (linux-386-cgo), const IFF_MULTICAST = 4096 +pkg syscall (linux-386-cgo), const IFF_NOARP = 128 +pkg syscall (linux-386-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (linux-386-cgo), const IFF_NO_PI = 4096 +pkg syscall (linux-386-cgo), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-386-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (linux-386-cgo), const IFF_PORTSEL = 8192 +pkg syscall (linux-386-cgo), const IFF_PROMISC = 256 +pkg syscall (linux-386-cgo), const IFF_RUNNING = 64 +pkg syscall (linux-386-cgo), const IFF_SLAVE = 2048 +pkg syscall (linux-386-cgo), const IFF_TAP = 2 +pkg syscall (linux-386-cgo), const IFF_TUN = 1 +pkg syscall (linux-386-cgo), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-386-cgo), const IFF_VNET_HDR = 16384 +pkg syscall (linux-386-cgo), const IFLA_ADDRESS = 1 +pkg syscall (linux-386-cgo), const IFLA_BROADCAST = 2 +pkg syscall (linux-386-cgo), const IFLA_COST = 8 +pkg syscall (linux-386-cgo), const IFLA_IFALIAS = 20 +pkg syscall (linux-386-cgo), const IFLA_IFNAME = 3 +pkg syscall (linux-386-cgo), const IFLA_LINK = 5 +pkg syscall (linux-386-cgo), const IFLA_LINKINFO = 18 +pkg syscall (linux-386-cgo), const IFLA_LINKMODE = 17 +pkg syscall (linux-386-cgo), const IFLA_MAP = 14 +pkg syscall (linux-386-cgo), const IFLA_MASTER = 10 +pkg syscall (linux-386-cgo), const IFLA_MAX = 29 +pkg syscall (linux-386-cgo), const IFLA_MTU = 4 +pkg syscall (linux-386-cgo), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-386-cgo), const IFLA_OPERSTATE = 16 +pkg syscall (linux-386-cgo), const IFLA_PRIORITY = 9 +pkg syscall (linux-386-cgo), const IFLA_PROTINFO = 12 +pkg syscall (linux-386-cgo), const IFLA_QDISC = 6 +pkg syscall (linux-386-cgo), const IFLA_STATS = 7 +pkg syscall (linux-386-cgo), const IFLA_TXQLEN = 13 +pkg syscall (linux-386-cgo), const IFLA_UNSPEC = 0 +pkg syscall (linux-386-cgo), const IFLA_WEIGHT = 15 +pkg syscall (linux-386-cgo), const IFLA_WIRELESS = 11 +pkg syscall (linux-386-cgo), const IFNAMSIZ = 16 +pkg syscall (linux-386-cgo), const IGNBRK = 1 +pkg syscall (linux-386-cgo), const IGNCR = 128 +pkg syscall (linux-386-cgo), const IGNPAR = 4 +pkg syscall (linux-386-cgo), const IMAXBEL = 8192 +pkg syscall (linux-386-cgo), const INLCR = 64 +pkg syscall (linux-386-cgo), const INPCK = 16 +pkg syscall (linux-386-cgo), const IN_ACCESS = 1 +pkg syscall (linux-386-cgo), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-386-cgo), const IN_ATTRIB = 4 +pkg syscall (linux-386-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-386-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (linux-386-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-386-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-386-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-386-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-386-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-386-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-386-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (linux-386-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-386-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-386-cgo), const IN_CLOEXEC = 524288 +pkg syscall (linux-386-cgo), const IN_CLOSE = 24 +pkg syscall (linux-386-cgo), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-386-cgo), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-386-cgo), const IN_CREATE = 256 +pkg syscall (linux-386-cgo), const IN_DELETE = 512 +pkg syscall (linux-386-cgo), const IN_DELETE_SELF = 1024 +pkg syscall (linux-386-cgo), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-386-cgo), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-386-cgo), const IN_IGNORED = 32768 +pkg syscall (linux-386-cgo), const IN_ISDIR = 1073741824 +pkg syscall (linux-386-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (linux-386-cgo), const IN_MASK_ADD = 536870912 +pkg syscall (linux-386-cgo), const IN_MODIFY = 2 +pkg syscall (linux-386-cgo), const IN_MOVE = 192 +pkg syscall (linux-386-cgo), const IN_MOVED_FROM = 64 +pkg syscall (linux-386-cgo), const IN_MOVED_TO = 128 +pkg syscall (linux-386-cgo), const IN_MOVE_SELF = 2048 +pkg syscall (linux-386-cgo), const IN_NONBLOCK = 2048 +pkg syscall (linux-386-cgo), const IN_ONESHOT = 2147483648 +pkg syscall (linux-386-cgo), const IN_ONLYDIR = 16777216 +pkg syscall (linux-386-cgo), const IN_OPEN = 32 +pkg syscall (linux-386-cgo), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-386-cgo), const IN_UNMOUNT = 8192 +pkg syscall (linux-386-cgo), const IPPROTO_AH = 51 +pkg syscall (linux-386-cgo), const IPPROTO_COMP = 108 +pkg syscall (linux-386-cgo), const IPPROTO_DCCP = 33 +pkg syscall (linux-386-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-386-cgo), const IPPROTO_EGP = 8 +pkg syscall (linux-386-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (linux-386-cgo), const IPPROTO_ESP = 50 +pkg syscall (linux-386-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-386-cgo), const IPPROTO_GRE = 47 +pkg syscall (linux-386-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-386-cgo), const IPPROTO_ICMP = 1 +pkg syscall (linux-386-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-386-cgo), const IPPROTO_IDP = 22 +pkg syscall (linux-386-cgo), const IPPROTO_IGMP = 2 +pkg syscall (linux-386-cgo), const IPPROTO_IPIP = 4 +pkg syscall (linux-386-cgo), const IPPROTO_MTP = 92 +pkg syscall (linux-386-cgo), const IPPROTO_NONE = 59 +pkg syscall (linux-386-cgo), const IPPROTO_PIM = 103 +pkg syscall (linux-386-cgo), const IPPROTO_PUP = 12 +pkg syscall (linux-386-cgo), const IPPROTO_RAW = 255 +pkg syscall (linux-386-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (linux-386-cgo), const IPPROTO_RSVP = 46 +pkg syscall (linux-386-cgo), const IPPROTO_SCTP = 132 +pkg syscall (linux-386-cgo), const IPPROTO_TP = 29 +pkg syscall (linux-386-cgo), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-386-cgo), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-386-cgo), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-386-cgo), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-386-cgo), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-386-cgo), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-386-cgo), const IPV6_2292RTHDR = 5 +pkg syscall (linux-386-cgo), const IPV6_ADDRFORM = 1 +pkg syscall (linux-386-cgo), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-386-cgo), const IPV6_AUTHHDR = 10 +pkg syscall (linux-386-cgo), const IPV6_CHECKSUM = 7 +pkg syscall (linux-386-cgo), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-386-cgo), const IPV6_DSTOPTS = 59 +pkg syscall (linux-386-cgo), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-386-cgo), const IPV6_HOPOPTS = 54 +pkg syscall (linux-386-cgo), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-386-cgo), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-386-cgo), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-386-cgo), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-386-cgo), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-386-cgo), const IPV6_MTU = 24 +pkg syscall (linux-386-cgo), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-386-cgo), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-386-cgo), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-386-cgo), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-386-cgo), const IPV6_NEXTHOP = 9 +pkg syscall (linux-386-cgo), const IPV6_PKTINFO = 50 +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-386-cgo), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-386-cgo), const IPV6_RECVERR = 25 +pkg syscall (linux-386-cgo), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-386-cgo), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-386-cgo), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-386-cgo), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-386-cgo), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-386-cgo), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-386-cgo), const IPV6_RTHDR = 57 +pkg syscall (linux-386-cgo), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-386-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-386-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-386-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-386-cgo), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-386-cgo), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-386-cgo), const IPV6_TCLASS = 67 +pkg syscall (linux-386-cgo), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-386-cgo), const IPV6_V6ONLY = 26 +pkg syscall (linux-386-cgo), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-386-cgo), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-386-cgo), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-386-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-386-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-386-cgo), const IP_DF = 16384 +pkg syscall (linux-386-cgo), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-386-cgo), const IP_FREEBIND = 15 +pkg syscall (linux-386-cgo), const IP_HDRINCL = 3 +pkg syscall (linux-386-cgo), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-386-cgo), const IP_MAXPACKET = 65535 +pkg syscall (linux-386-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-386-cgo), const IP_MF = 8192 +pkg syscall (linux-386-cgo), const IP_MINTTL = 21 +pkg syscall (linux-386-cgo), const IP_MSFILTER = 41 +pkg syscall (linux-386-cgo), const IP_MSS = 576 +pkg syscall (linux-386-cgo), const IP_MTU = 14 +pkg syscall (linux-386-cgo), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-386-cgo), const IP_MULTICAST_IF = 32 +pkg syscall (linux-386-cgo), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-386-cgo), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-386-cgo), const IP_OFFMASK = 8191 +pkg syscall (linux-386-cgo), const IP_OPTIONS = 4 +pkg syscall (linux-386-cgo), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-386-cgo), const IP_PASSSEC = 18 +pkg syscall (linux-386-cgo), const IP_PKTINFO = 8 +pkg syscall (linux-386-cgo), const IP_PKTOPTIONS = 9 +pkg syscall (linux-386-cgo), const IP_PMTUDISC = 10 +pkg syscall (linux-386-cgo), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-386-cgo), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-386-cgo), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-386-cgo), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-386-cgo), const IP_RECVERR = 11 +pkg syscall (linux-386-cgo), const IP_RECVOPTS = 6 +pkg syscall (linux-386-cgo), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-386-cgo), const IP_RECVRETOPTS = 7 +pkg syscall (linux-386-cgo), const IP_RECVTOS = 13 +pkg syscall (linux-386-cgo), const IP_RECVTTL = 12 +pkg syscall (linux-386-cgo), const IP_RETOPTS = 7 +pkg syscall (linux-386-cgo), const IP_RF = 32768 +pkg syscall (linux-386-cgo), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-386-cgo), const IP_TOS = 1 +pkg syscall (linux-386-cgo), const IP_TRANSPARENT = 19 +pkg syscall (linux-386-cgo), const IP_TTL = 2 +pkg syscall (linux-386-cgo), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-386-cgo), const IP_XFRM_POLICY = 17 +pkg syscall (linux-386-cgo), const ISIG = 1 +pkg syscall (linux-386-cgo), const ISTRIP = 32 +pkg syscall (linux-386-cgo), const IUCLC = 512 +pkg syscall (linux-386-cgo), const IUTF8 = 16384 +pkg syscall (linux-386-cgo), const IXANY = 2048 +pkg syscall (linux-386-cgo), const IXOFF = 4096 +pkg syscall (linux-386-cgo), const IXON = 1024 +pkg syscall (linux-386-cgo), const ImplementsGetwd = true +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-386-cgo), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-386-cgo), const LOCK_EX = 2 +pkg syscall (linux-386-cgo), const LOCK_NB = 4 +pkg syscall (linux-386-cgo), const LOCK_SH = 1 +pkg syscall (linux-386-cgo), const LOCK_UN = 8 +pkg syscall (linux-386-cgo), const MADV_DOFORK = 11 +pkg syscall (linux-386-cgo), const MADV_DONTFORK = 10 +pkg syscall (linux-386-cgo), const MADV_DONTNEED = 4 +pkg syscall (linux-386-cgo), const MADV_HUGEPAGE = 14 +pkg syscall (linux-386-cgo), const MADV_HWPOISON = 100 +pkg syscall (linux-386-cgo), const MADV_MERGEABLE = 12 +pkg syscall (linux-386-cgo), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-386-cgo), const MADV_NORMAL = 0 +pkg syscall (linux-386-cgo), const MADV_RANDOM = 1 +pkg syscall (linux-386-cgo), const MADV_REMOVE = 9 +pkg syscall (linux-386-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-386-cgo), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-386-cgo), const MADV_WILLNEED = 3 +pkg syscall (linux-386-cgo), const MAP_32BIT = 64 +pkg syscall (linux-386-cgo), const MAP_ANON = 32 +pkg syscall (linux-386-cgo), const MAP_ANONYMOUS = 32 +pkg syscall (linux-386-cgo), const MAP_DENYWRITE = 2048 +pkg syscall (linux-386-cgo), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-386-cgo), const MAP_FILE = 0 +pkg syscall (linux-386-cgo), const MAP_FIXED = 16 +pkg syscall (linux-386-cgo), const MAP_GROWSDOWN = 256 +pkg syscall (linux-386-cgo), const MAP_HUGETLB = 262144 +pkg syscall (linux-386-cgo), const MAP_LOCKED = 8192 +pkg syscall (linux-386-cgo), const MAP_NONBLOCK = 65536 +pkg syscall (linux-386-cgo), const MAP_NORESERVE = 16384 +pkg syscall (linux-386-cgo), const MAP_POPULATE = 32768 +pkg syscall (linux-386-cgo), const MAP_PRIVATE = 2 +pkg syscall (linux-386-cgo), const MAP_SHARED = 1 +pkg syscall (linux-386-cgo), const MAP_STACK = 131072 +pkg syscall (linux-386-cgo), const MAP_TYPE = 15 +pkg syscall (linux-386-cgo), const MCL_CURRENT = 1 +pkg syscall (linux-386-cgo), const MCL_FUTURE = 2 +pkg syscall (linux-386-cgo), const MNT_DETACH = 2 +pkg syscall (linux-386-cgo), const MNT_EXPIRE = 4 +pkg syscall (linux-386-cgo), const MNT_FORCE = 1 +pkg syscall (linux-386-cgo), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-386-cgo), const MSG_CONFIRM = 2048 +pkg syscall (linux-386-cgo), const MSG_CTRUNC = 8 +pkg syscall (linux-386-cgo), const MSG_DONTROUTE = 4 +pkg syscall (linux-386-cgo), const MSG_DONTWAIT = 64 +pkg syscall (linux-386-cgo), const MSG_EOR = 128 +pkg syscall (linux-386-cgo), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-386-cgo), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-386-cgo), const MSG_FASTOPEN ideal-int +pkg syscall (linux-386-cgo), const MSG_FIN = 512 +pkg syscall (linux-386-cgo), const MSG_MORE = 32768 +pkg syscall (linux-386-cgo), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-386-cgo), const MSG_OOB = 1 +pkg syscall (linux-386-cgo), const MSG_PEEK = 2 +pkg syscall (linux-386-cgo), const MSG_PROXY = 16 +pkg syscall (linux-386-cgo), const MSG_RST = 4096 +pkg syscall (linux-386-cgo), const MSG_SYN = 1024 +pkg syscall (linux-386-cgo), const MSG_TRUNC = 32 +pkg syscall (linux-386-cgo), const MSG_TRYHARD = 4 +pkg syscall (linux-386-cgo), const MSG_WAITALL = 256 +pkg syscall (linux-386-cgo), const MSG_WAITFORONE = 65536 +pkg syscall (linux-386-cgo), const MS_ACTIVE = 1073741824 +pkg syscall (linux-386-cgo), const MS_ASYNC = 1 +pkg syscall (linux-386-cgo), const MS_BIND = 4096 +pkg syscall (linux-386-cgo), const MS_DIRSYNC = 128 +pkg syscall (linux-386-cgo), const MS_INVALIDATE = 2 +pkg syscall (linux-386-cgo), const MS_I_VERSION = 8388608 +pkg syscall (linux-386-cgo), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-386-cgo), const MS_MANDLOCK = 64 +pkg syscall (linux-386-cgo), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-386-cgo), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-386-cgo), const MS_MOVE = 8192 +pkg syscall (linux-386-cgo), const MS_NOATIME = 1024 +pkg syscall (linux-386-cgo), const MS_NODEV = 4 +pkg syscall (linux-386-cgo), const MS_NODIRATIME = 2048 +pkg syscall (linux-386-cgo), const MS_NOEXEC = 8 +pkg syscall (linux-386-cgo), const MS_NOSUID = 2 +pkg syscall (linux-386-cgo), const MS_NOUSER = -2147483648 +pkg syscall (linux-386-cgo), const MS_POSIXACL = 65536 +pkg syscall (linux-386-cgo), const MS_PRIVATE = 262144 +pkg syscall (linux-386-cgo), const MS_RDONLY = 1 +pkg syscall (linux-386-cgo), const MS_REC = 16384 +pkg syscall (linux-386-cgo), const MS_RELATIME = 2097152 +pkg syscall (linux-386-cgo), const MS_REMOUNT = 32 +pkg syscall (linux-386-cgo), const MS_RMT_MASK = 8388689 +pkg syscall (linux-386-cgo), const MS_SHARED = 1048576 +pkg syscall (linux-386-cgo), const MS_SILENT = 32768 +pkg syscall (linux-386-cgo), const MS_SLAVE = 524288 +pkg syscall (linux-386-cgo), const MS_STRICTATIME = 16777216 +pkg syscall (linux-386-cgo), const MS_SYNC = 4 +pkg syscall (linux-386-cgo), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-386-cgo), const MS_UNBINDABLE = 131072 +pkg syscall (linux-386-cgo), const NAME_MAX = 255 +pkg syscall (linux-386-cgo), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-386-cgo), const NETLINK_AUDIT = 9 +pkg syscall (linux-386-cgo), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-386-cgo), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-386-cgo), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-386-cgo), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-386-cgo), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-386-cgo), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-386-cgo), const NETLINK_FIREWALL = 3 +pkg syscall (linux-386-cgo), const NETLINK_GENERIC = 16 +pkg syscall (linux-386-cgo), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-386-cgo), const NETLINK_IP6_FW = 13 +pkg syscall (linux-386-cgo), const NETLINK_ISCSI = 8 +pkg syscall (linux-386-cgo), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-386-cgo), const NETLINK_NETFILTER = 12 +pkg syscall (linux-386-cgo), const NETLINK_NFLOG = 5 +pkg syscall (linux-386-cgo), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-386-cgo), const NETLINK_PKTINFO = 3 +pkg syscall (linux-386-cgo), const NETLINK_ROUTE = 0 +pkg syscall (linux-386-cgo), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-386-cgo), const NETLINK_SELINUX = 7 +pkg syscall (linux-386-cgo), const NETLINK_UNUSED = 1 +pkg syscall (linux-386-cgo), const NETLINK_USERSOCK = 2 +pkg syscall (linux-386-cgo), const NETLINK_XFRM = 6 +pkg syscall (linux-386-cgo), const NLA_ALIGNTO = 4 +pkg syscall (linux-386-cgo), const NLA_F_NESTED = 32768 +pkg syscall (linux-386-cgo), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-386-cgo), const NLA_HDRLEN = 4 +pkg syscall (linux-386-cgo), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-386-cgo), const NLMSG_DONE = 3 +pkg syscall (linux-386-cgo), const NLMSG_ERROR = 2 +pkg syscall (linux-386-cgo), const NLMSG_HDRLEN = 16 +pkg syscall (linux-386-cgo), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-386-cgo), const NLMSG_NOOP = 1 +pkg syscall (linux-386-cgo), const NLMSG_OVERRUN = 4 +pkg syscall (linux-386-cgo), const NLM_F_ACK = 4 +pkg syscall (linux-386-cgo), const NLM_F_APPEND = 2048 +pkg syscall (linux-386-cgo), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-386-cgo), const NLM_F_CREATE = 1024 +pkg syscall (linux-386-cgo), const NLM_F_DUMP = 768 +pkg syscall (linux-386-cgo), const NLM_F_ECHO = 8 +pkg syscall (linux-386-cgo), const NLM_F_EXCL = 512 +pkg syscall (linux-386-cgo), const NLM_F_MATCH = 512 +pkg syscall (linux-386-cgo), const NLM_F_MULTI = 2 +pkg syscall (linux-386-cgo), const NLM_F_REPLACE = 256 +pkg syscall (linux-386-cgo), const NLM_F_REQUEST = 1 +pkg syscall (linux-386-cgo), const NLM_F_ROOT = 256 +pkg syscall (linux-386-cgo), const NOFLSH = 128 +pkg syscall (linux-386-cgo), const OCRNL = 8 +pkg syscall (linux-386-cgo), const OFDEL = 128 +pkg syscall (linux-386-cgo), const OFILL = 64 +pkg syscall (linux-386-cgo), const OLCUC = 2 +pkg syscall (linux-386-cgo), const ONLCR = 4 +pkg syscall (linux-386-cgo), const ONLRET = 32 +pkg syscall (linux-386-cgo), const ONOCR = 16 +pkg syscall (linux-386-cgo), const OPOST = 1 +pkg syscall (linux-386-cgo), const O_ACCMODE = 3 +pkg syscall (linux-386-cgo), const O_APPEND = 1024 +pkg syscall (linux-386-cgo), const O_ASYNC = 8192 +pkg syscall (linux-386-cgo), const O_CLOEXEC = 524288 +pkg syscall (linux-386-cgo), const O_CREAT = 64 +pkg syscall (linux-386-cgo), const O_DIRECT = 16384 +pkg syscall (linux-386-cgo), const O_DIRECTORY = 65536 +pkg syscall (linux-386-cgo), const O_DSYNC = 4096 +pkg syscall (linux-386-cgo), const O_EXCL = 128 +pkg syscall (linux-386-cgo), const O_FSYNC = 1052672 +pkg syscall (linux-386-cgo), const O_LARGEFILE = 32768 +pkg syscall (linux-386-cgo), const O_NDELAY = 2048 +pkg syscall (linux-386-cgo), const O_NOATIME = 262144 +pkg syscall (linux-386-cgo), const O_NOCTTY = 256 +pkg syscall (linux-386-cgo), const O_NOFOLLOW = 131072 +pkg syscall (linux-386-cgo), const O_NONBLOCK = 2048 +pkg syscall (linux-386-cgo), const O_RSYNC = 1052672 +pkg syscall (linux-386-cgo), const O_SYNC = 1052672 +pkg syscall (linux-386-cgo), const O_TRUNC = 512 +pkg syscall (linux-386-cgo), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-386-cgo), const PACKET_BROADCAST = 1 +pkg syscall (linux-386-cgo), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-386-cgo), const PACKET_FASTROUTE = 6 +pkg syscall (linux-386-cgo), const PACKET_HOST = 0 +pkg syscall (linux-386-cgo), const PACKET_LOOPBACK = 5 +pkg syscall (linux-386-cgo), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-386-cgo), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-386-cgo), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-386-cgo), const PACKET_MULTICAST = 2 +pkg syscall (linux-386-cgo), const PACKET_OTHERHOST = 3 +pkg syscall (linux-386-cgo), const PACKET_OUTGOING = 4 +pkg syscall (linux-386-cgo), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-386-cgo), const PACKET_RX_RING = 5 +pkg syscall (linux-386-cgo), const PACKET_STATISTICS = 6 +pkg syscall (linux-386-cgo), const PARENB = 256 +pkg syscall (linux-386-cgo), const PARMRK = 8 +pkg syscall (linux-386-cgo), const PARODD = 512 +pkg syscall (linux-386-cgo), const PENDIN = 16384 +pkg syscall (linux-386-cgo), const PROT_EXEC = 4 +pkg syscall (linux-386-cgo), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-386-cgo), const PROT_GROWSUP = 33554432 +pkg syscall (linux-386-cgo), const PROT_NONE = 0 +pkg syscall (linux-386-cgo), const PROT_READ = 1 +pkg syscall (linux-386-cgo), const PROT_WRITE = 2 +pkg syscall (linux-386-cgo), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-386-cgo), const PR_CAPBSET_READ = 23 +pkg syscall (linux-386-cgo), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-386-cgo), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-386-cgo), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-386-cgo), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-386-cgo), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-386-cgo), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-386-cgo), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-386-cgo), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-386-cgo), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-386-cgo), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-386-cgo), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-386-cgo), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-386-cgo), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-386-cgo), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-386-cgo), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-386-cgo), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-386-cgo), const PR_GET_ENDIAN = 19 +pkg syscall (linux-386-cgo), const PR_GET_FPEMU = 9 +pkg syscall (linux-386-cgo), const PR_GET_FPEXC = 11 +pkg syscall (linux-386-cgo), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-386-cgo), const PR_GET_NAME = 16 +pkg syscall (linux-386-cgo), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-386-cgo), const PR_GET_SECCOMP = 21 +pkg syscall (linux-386-cgo), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-386-cgo), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-386-cgo), const PR_GET_TIMING = 13 +pkg syscall (linux-386-cgo), const PR_GET_TSC = 25 +pkg syscall (linux-386-cgo), const PR_GET_UNALIGN = 5 +pkg syscall (linux-386-cgo), const PR_MCE_KILL = 33 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-386-cgo), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-386-cgo), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-386-cgo), const PR_SET_ENDIAN = 20 +pkg syscall (linux-386-cgo), const PR_SET_FPEMU = 10 +pkg syscall (linux-386-cgo), const PR_SET_FPEXC = 12 +pkg syscall (linux-386-cgo), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-386-cgo), const PR_SET_NAME = 15 +pkg syscall (linux-386-cgo), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-386-cgo), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-386-cgo), const PR_SET_SECCOMP = 22 +pkg syscall (linux-386-cgo), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-386-cgo), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-386-cgo), const PR_SET_TIMING = 14 +pkg syscall (linux-386-cgo), const PR_SET_TSC = 26 +pkg syscall (linux-386-cgo), const PR_SET_UNALIGN = 6 +pkg syscall (linux-386-cgo), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-386-cgo), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-386-cgo), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-386-cgo), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-386-cgo), const PR_TSC_ENABLE = 1 +pkg syscall (linux-386-cgo), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-386-cgo), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-386-cgo), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-386-cgo), const PTRACE_ATTACH = 16 +pkg syscall (linux-386-cgo), const PTRACE_CONT = 7 +pkg syscall (linux-386-cgo), const PTRACE_DETACH = 17 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-386-cgo), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-386-cgo), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-386-cgo), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-386-cgo), const PTRACE_GETFPXREGS = 18 +pkg syscall (linux-386-cgo), const PTRACE_GETREGS = 12 +pkg syscall (linux-386-cgo), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-386-cgo), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-386-cgo), const PTRACE_GET_THREAD_AREA = 25 +pkg syscall (linux-386-cgo), const PTRACE_KILL = 8 +pkg syscall (linux-386-cgo), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-386-cgo), const PTRACE_O_MASK = 127 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-386-cgo), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-386-cgo), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-386-cgo), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-386-cgo), const PTRACE_POKEDATA = 5 +pkg syscall (linux-386-cgo), const PTRACE_POKETEXT = 4 +pkg syscall (linux-386-cgo), const PTRACE_POKEUSR = 6 +pkg syscall (linux-386-cgo), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-386-cgo), const PTRACE_SETFPXREGS = 19 +pkg syscall (linux-386-cgo), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-386-cgo), const PTRACE_SETREGS = 13 +pkg syscall (linux-386-cgo), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-386-cgo), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-386-cgo), const PTRACE_SET_THREAD_AREA = 26 +pkg syscall (linux-386-cgo), const PTRACE_SINGLEBLOCK = 33 +pkg syscall (linux-386-cgo), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-386-cgo), const PTRACE_SYSCALL = 24 +pkg syscall (linux-386-cgo), const PTRACE_SYSEMU = 31 +pkg syscall (linux-386-cgo), const PTRACE_SYSEMU_SINGLESTEP = 32 +pkg syscall (linux-386-cgo), const PTRACE_TRACEME = 0 +pkg syscall (linux-386-cgo), const PathMax = 4096 +pkg syscall (linux-386-cgo), const RLIMIT_AS = 9 +pkg syscall (linux-386-cgo), const RLIMIT_CORE = 4 +pkg syscall (linux-386-cgo), const RLIMIT_CPU = 0 +pkg syscall (linux-386-cgo), const RLIMIT_DATA = 2 +pkg syscall (linux-386-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (linux-386-cgo), const RLIMIT_NOFILE = 7 +pkg syscall (linux-386-cgo), const RLIMIT_STACK = 3 +pkg syscall (linux-386-cgo), const RLIM_INFINITY = -1 +pkg syscall (linux-386-cgo), const RTAX_ADVMSS = 8 +pkg syscall (linux-386-cgo), const RTAX_CWND = 7 +pkg syscall (linux-386-cgo), const RTAX_FEATURES = 12 +pkg syscall (linux-386-cgo), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-386-cgo), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-386-cgo), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-386-cgo), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-386-cgo), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-386-cgo), const RTAX_INITCWND = 11 +pkg syscall (linux-386-cgo), const RTAX_INITRWND = 14 +pkg syscall (linux-386-cgo), const RTAX_LOCK = 1 +pkg syscall (linux-386-cgo), const RTAX_MAX = 14 +pkg syscall (linux-386-cgo), const RTAX_MTU = 2 +pkg syscall (linux-386-cgo), const RTAX_REORDERING = 9 +pkg syscall (linux-386-cgo), const RTAX_RTO_MIN = 13 +pkg syscall (linux-386-cgo), const RTAX_RTT = 4 +pkg syscall (linux-386-cgo), const RTAX_RTTVAR = 5 +pkg syscall (linux-386-cgo), const RTAX_SSTHRESH = 6 +pkg syscall (linux-386-cgo), const RTAX_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RTAX_WINDOW = 3 +pkg syscall (linux-386-cgo), const RTA_ALIGNTO = 4 +pkg syscall (linux-386-cgo), const RTA_CACHEINFO = 12 +pkg syscall (linux-386-cgo), const RTA_DST = 1 +pkg syscall (linux-386-cgo), const RTA_FLOW = 11 +pkg syscall (linux-386-cgo), const RTA_GATEWAY = 5 +pkg syscall (linux-386-cgo), const RTA_IIF = 3 +pkg syscall (linux-386-cgo), const RTA_MAX = 16 +pkg syscall (linux-386-cgo), const RTA_METRICS = 8 +pkg syscall (linux-386-cgo), const RTA_MULTIPATH = 9 +pkg syscall (linux-386-cgo), const RTA_OIF = 4 +pkg syscall (linux-386-cgo), const RTA_PREFSRC = 7 +pkg syscall (linux-386-cgo), const RTA_PRIORITY = 6 +pkg syscall (linux-386-cgo), const RTA_SRC = 2 +pkg syscall (linux-386-cgo), const RTA_TABLE = 15 +pkg syscall (linux-386-cgo), const RTA_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-386-cgo), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-386-cgo), const RTCF_LOG = 33554432 +pkg syscall (linux-386-cgo), const RTCF_MASQ = 4194304 +pkg syscall (linux-386-cgo), const RTCF_NAT = 8388608 +pkg syscall (linux-386-cgo), const RTCF_VALVE = 2097152 +pkg syscall (linux-386-cgo), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-386-cgo), const RTF_ADDRCONF = 262144 +pkg syscall (linux-386-cgo), const RTF_ALLONLINK = 131072 +pkg syscall (linux-386-cgo), const RTF_BROADCAST = 268435456 +pkg syscall (linux-386-cgo), const RTF_CACHE = 16777216 +pkg syscall (linux-386-cgo), const RTF_DEFAULT = 65536 +pkg syscall (linux-386-cgo), const RTF_DYNAMIC = 16 +pkg syscall (linux-386-cgo), const RTF_FLOW = 33554432 +pkg syscall (linux-386-cgo), const RTF_GATEWAY = 2 +pkg syscall (linux-386-cgo), const RTF_HOST = 4 +pkg syscall (linux-386-cgo), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-386-cgo), const RTF_IRTT = 256 +pkg syscall (linux-386-cgo), const RTF_LINKRT = 1048576 +pkg syscall (linux-386-cgo), const RTF_LOCAL = 2147483648 +pkg syscall (linux-386-cgo), const RTF_MODIFIED = 32 +pkg syscall (linux-386-cgo), const RTF_MSS = 64 +pkg syscall (linux-386-cgo), const RTF_MTU = 64 +pkg syscall (linux-386-cgo), const RTF_MULTICAST = 536870912 +pkg syscall (linux-386-cgo), const RTF_NAT = 134217728 +pkg syscall (linux-386-cgo), const RTF_NOFORWARD = 4096 +pkg syscall (linux-386-cgo), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-386-cgo), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-386-cgo), const RTF_POLICY = 67108864 +pkg syscall (linux-386-cgo), const RTF_REINSTATE = 8 +pkg syscall (linux-386-cgo), const RTF_REJECT = 512 +pkg syscall (linux-386-cgo), const RTF_STATIC = 1024 +pkg syscall (linux-386-cgo), const RTF_THROW = 8192 +pkg syscall (linux-386-cgo), const RTF_UP = 1 +pkg syscall (linux-386-cgo), const RTF_WINDOW = 128 +pkg syscall (linux-386-cgo), const RTF_XRESOLVE = 2048 +pkg syscall (linux-386-cgo), const RTM_BASE = 16 +pkg syscall (linux-386-cgo), const RTM_DELACTION = 49 +pkg syscall (linux-386-cgo), const RTM_DELADDR = 21 +pkg syscall (linux-386-cgo), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-386-cgo), const RTM_DELLINK = 17 +pkg syscall (linux-386-cgo), const RTM_DELNEIGH = 29 +pkg syscall (linux-386-cgo), const RTM_DELQDISC = 37 +pkg syscall (linux-386-cgo), const RTM_DELROUTE = 25 +pkg syscall (linux-386-cgo), const RTM_DELRULE = 33 +pkg syscall (linux-386-cgo), const RTM_DELTCLASS = 41 +pkg syscall (linux-386-cgo), const RTM_DELTFILTER = 45 +pkg syscall (linux-386-cgo), const RTM_F_CLONED = 512 +pkg syscall (linux-386-cgo), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-386-cgo), const RTM_F_NOTIFY = 256 +pkg syscall (linux-386-cgo), const RTM_F_PREFIX = 2048 +pkg syscall (linux-386-cgo), const RTM_GETACTION = 50 +pkg syscall (linux-386-cgo), const RTM_GETADDR = 22 +pkg syscall (linux-386-cgo), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-386-cgo), const RTM_GETANYCAST = 62 +pkg syscall (linux-386-cgo), const RTM_GETDCB = 78 +pkg syscall (linux-386-cgo), const RTM_GETLINK = 18 +pkg syscall (linux-386-cgo), const RTM_GETMULTICAST = 58 +pkg syscall (linux-386-cgo), const RTM_GETNEIGH = 30 +pkg syscall (linux-386-cgo), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-386-cgo), const RTM_GETQDISC = 38 +pkg syscall (linux-386-cgo), const RTM_GETROUTE = 26 +pkg syscall (linux-386-cgo), const RTM_GETRULE = 34 +pkg syscall (linux-386-cgo), const RTM_GETTCLASS = 42 +pkg syscall (linux-386-cgo), const RTM_GETTFILTER = 46 +pkg syscall (linux-386-cgo), const RTM_MAX = 79 +pkg syscall (linux-386-cgo), const RTM_NEWACTION = 48 +pkg syscall (linux-386-cgo), const RTM_NEWADDR = 20 +pkg syscall (linux-386-cgo), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-386-cgo), const RTM_NEWLINK = 16 +pkg syscall (linux-386-cgo), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-386-cgo), const RTM_NEWNEIGH = 28 +pkg syscall (linux-386-cgo), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-386-cgo), const RTM_NEWPREFIX = 52 +pkg syscall (linux-386-cgo), const RTM_NEWQDISC = 36 +pkg syscall (linux-386-cgo), const RTM_NEWROUTE = 24 +pkg syscall (linux-386-cgo), const RTM_NEWRULE = 32 +pkg syscall (linux-386-cgo), const RTM_NEWTCLASS = 40 +pkg syscall (linux-386-cgo), const RTM_NEWTFILTER = 44 +pkg syscall (linux-386-cgo), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-386-cgo), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-386-cgo), const RTM_SETDCB = 79 +pkg syscall (linux-386-cgo), const RTM_SETLINK = 19 +pkg syscall (linux-386-cgo), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-386-cgo), const RTNH_ALIGNTO = 4 +pkg syscall (linux-386-cgo), const RTNH_F_DEAD = 1 +pkg syscall (linux-386-cgo), const RTNH_F_ONLINK = 4 +pkg syscall (linux-386-cgo), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-386-cgo), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_LINK = 1 +pkg syscall (linux-386-cgo), const RTNLGRP_LINK ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-386-cgo), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-386-cgo), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_NONE = 0 +pkg syscall (linux-386-cgo), const RTNLGRP_NONE ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-386-cgo), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-386-cgo), const RTNLGRP_TC = 4 +pkg syscall (linux-386-cgo), const RTNLGRP_TC ideal-int +pkg syscall (linux-386-cgo), const RTN_ANYCAST = 4 +pkg syscall (linux-386-cgo), const RTN_BLACKHOLE = 6 +pkg syscall (linux-386-cgo), const RTN_BROADCAST = 3 +pkg syscall (linux-386-cgo), const RTN_LOCAL = 2 +pkg syscall (linux-386-cgo), const RTN_MAX = 11 +pkg syscall (linux-386-cgo), const RTN_MULTICAST = 5 +pkg syscall (linux-386-cgo), const RTN_NAT = 10 +pkg syscall (linux-386-cgo), const RTN_PROHIBIT = 8 +pkg syscall (linux-386-cgo), const RTN_THROW = 9 +pkg syscall (linux-386-cgo), const RTN_UNICAST = 1 +pkg syscall (linux-386-cgo), const RTN_UNREACHABLE = 7 +pkg syscall (linux-386-cgo), const RTN_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RTN_XRESOLVE = 11 +pkg syscall (linux-386-cgo), const RTPROT_BIRD = 12 +pkg syscall (linux-386-cgo), const RTPROT_BOOT = 3 +pkg syscall (linux-386-cgo), const RTPROT_DHCP = 16 +pkg syscall (linux-386-cgo), const RTPROT_DNROUTED = 13 +pkg syscall (linux-386-cgo), const RTPROT_GATED = 8 +pkg syscall (linux-386-cgo), const RTPROT_KERNEL = 2 +pkg syscall (linux-386-cgo), const RTPROT_MRT = 10 +pkg syscall (linux-386-cgo), const RTPROT_NTK = 15 +pkg syscall (linux-386-cgo), const RTPROT_RA = 9 +pkg syscall (linux-386-cgo), const RTPROT_REDIRECT = 1 +pkg syscall (linux-386-cgo), const RTPROT_STATIC = 4 +pkg syscall (linux-386-cgo), const RTPROT_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RTPROT_XORP = 14 +pkg syscall (linux-386-cgo), const RTPROT_ZEBRA = 11 +pkg syscall (linux-386-cgo), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-386-cgo), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-386-cgo), const RT_CLASS_MAIN = 254 +pkg syscall (linux-386-cgo), const RT_CLASS_MAX = 255 +pkg syscall (linux-386-cgo), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RT_SCOPE_HOST = 254 +pkg syscall (linux-386-cgo), const RT_SCOPE_LINK = 253 +pkg syscall (linux-386-cgo), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-386-cgo), const RT_SCOPE_SITE = 200 +pkg syscall (linux-386-cgo), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-386-cgo), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-386-cgo), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-386-cgo), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-386-cgo), const RT_TABLE_MAIN = 254 +pkg syscall (linux-386-cgo), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-386-cgo), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-386-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-386-cgo), const RUSAGE_SELF = 0 +pkg syscall (linux-386-cgo), const RUSAGE_THREAD = 1 +pkg syscall (linux-386-cgo), const SCM_CREDENTIALS = 2 +pkg syscall (linux-386-cgo), const SCM_RIGHTS = 1 +pkg syscall (linux-386-cgo), const SCM_TIMESTAMP = 29 +pkg syscall (linux-386-cgo), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-386-cgo), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-386-cgo), const SIGBUS = 7 +pkg syscall (linux-386-cgo), const SIGCHLD = 17 +pkg syscall (linux-386-cgo), const SIGCLD = 17 +pkg syscall (linux-386-cgo), const SIGCONT = 18 +pkg syscall (linux-386-cgo), const SIGIO = 29 +pkg syscall (linux-386-cgo), const SIGIOT = 6 +pkg syscall (linux-386-cgo), const SIGPOLL = 29 +pkg syscall (linux-386-cgo), const SIGPROF = 27 +pkg syscall (linux-386-cgo), const SIGPWR = 30 +pkg syscall (linux-386-cgo), const SIGSTKFLT = 16 +pkg syscall (linux-386-cgo), const SIGSTOP = 19 +pkg syscall (linux-386-cgo), const SIGSYS = 31 +pkg syscall (linux-386-cgo), const SIGTSTP = 20 +pkg syscall (linux-386-cgo), const SIGTTIN = 21 +pkg syscall (linux-386-cgo), const SIGTTOU = 22 +pkg syscall (linux-386-cgo), const SIGUNUSED = 31 +pkg syscall (linux-386-cgo), const SIGURG = 23 +pkg syscall (linux-386-cgo), const SIGUSR1 = 10 +pkg syscall (linux-386-cgo), const SIGUSR2 = 12 +pkg syscall (linux-386-cgo), const SIGVTALRM = 26 +pkg syscall (linux-386-cgo), const SIGWINCH = 28 +pkg syscall (linux-386-cgo), const SIGXCPU = 24 +pkg syscall (linux-386-cgo), const SIGXFSZ = 25 +pkg syscall (linux-386-cgo), const SIOCADDDLCI = 35200 +pkg syscall (linux-386-cgo), const SIOCADDMULTI = 35121 +pkg syscall (linux-386-cgo), const SIOCADDRT = 35083 +pkg syscall (linux-386-cgo), const SIOCATMARK = 35077 +pkg syscall (linux-386-cgo), const SIOCDARP = 35155 +pkg syscall (linux-386-cgo), const SIOCDELDLCI = 35201 +pkg syscall (linux-386-cgo), const SIOCDELMULTI = 35122 +pkg syscall (linux-386-cgo), const SIOCDELRT = 35084 +pkg syscall (linux-386-cgo), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-386-cgo), const SIOCDIFADDR = 35126 +pkg syscall (linux-386-cgo), const SIOCDRARP = 35168 +pkg syscall (linux-386-cgo), const SIOCGARP = 35156 +pkg syscall (linux-386-cgo), const SIOCGIFADDR = 35093 +pkg syscall (linux-386-cgo), const SIOCGIFBR = 35136 +pkg syscall (linux-386-cgo), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-386-cgo), const SIOCGIFCONF = 35090 +pkg syscall (linux-386-cgo), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-386-cgo), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-386-cgo), const SIOCGIFENCAP = 35109 +pkg syscall (linux-386-cgo), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-386-cgo), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-386-cgo), const SIOCGIFINDEX = 35123 +pkg syscall (linux-386-cgo), const SIOCGIFMAP = 35184 +pkg syscall (linux-386-cgo), const SIOCGIFMEM = 35103 +pkg syscall (linux-386-cgo), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-386-cgo), const SIOCGIFMTU = 35105 +pkg syscall (linux-386-cgo), const SIOCGIFNAME = 35088 +pkg syscall (linux-386-cgo), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-386-cgo), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-386-cgo), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-386-cgo), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-386-cgo), const SIOCGPGRP = 35076 +pkg syscall (linux-386-cgo), const SIOCGRARP = 35169 +pkg syscall (linux-386-cgo), const SIOCGSTAMP = 35078 +pkg syscall (linux-386-cgo), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-386-cgo), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-386-cgo), const SIOCRTMSG = 35085 +pkg syscall (linux-386-cgo), const SIOCSARP = 35157 +pkg syscall (linux-386-cgo), const SIOCSIFADDR = 35094 +pkg syscall (linux-386-cgo), const SIOCSIFBR = 35137 +pkg syscall (linux-386-cgo), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-386-cgo), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-386-cgo), const SIOCSIFENCAP = 35110 +pkg syscall (linux-386-cgo), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-386-cgo), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-386-cgo), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-386-cgo), const SIOCSIFLINK = 35089 +pkg syscall (linux-386-cgo), const SIOCSIFMAP = 35185 +pkg syscall (linux-386-cgo), const SIOCSIFMEM = 35104 +pkg syscall (linux-386-cgo), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-386-cgo), const SIOCSIFMTU = 35106 +pkg syscall (linux-386-cgo), const SIOCSIFNAME = 35107 +pkg syscall (linux-386-cgo), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-386-cgo), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-386-cgo), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-386-cgo), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-386-cgo), const SIOCSPGRP = 35074 +pkg syscall (linux-386-cgo), const SIOCSRARP = 35170 +pkg syscall (linux-386-cgo), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-386-cgo), const SOCK_DCCP = 6 +pkg syscall (linux-386-cgo), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-386-cgo), const SOCK_PACKET = 10 +pkg syscall (linux-386-cgo), const SOCK_RDM = 4 +pkg syscall (linux-386-cgo), const SOL_AAL = 265 +pkg syscall (linux-386-cgo), const SOL_ATM = 264 +pkg syscall (linux-386-cgo), const SOL_DECNET = 261 +pkg syscall (linux-386-cgo), const SOL_ICMPV6 = 58 +pkg syscall (linux-386-cgo), const SOL_IP = 0 +pkg syscall (linux-386-cgo), const SOL_IPV6 = 41 +pkg syscall (linux-386-cgo), const SOL_IRDA = 266 +pkg syscall (linux-386-cgo), const SOL_PACKET = 263 +pkg syscall (linux-386-cgo), const SOL_RAW = 255 +pkg syscall (linux-386-cgo), const SOL_SOCKET = 1 +pkg syscall (linux-386-cgo), const SOL_TCP = 6 +pkg syscall (linux-386-cgo), const SOL_X25 = 262 +pkg syscall (linux-386-cgo), const SOMAXCONN = 128 +pkg syscall (linux-386-cgo), const SO_ACCEPTCONN = 30 +pkg syscall (linux-386-cgo), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-386-cgo), const SO_BINDTODEVICE = 25 +pkg syscall (linux-386-cgo), const SO_BROADCAST = 6 +pkg syscall (linux-386-cgo), const SO_BSDCOMPAT = 14 +pkg syscall (linux-386-cgo), const SO_DEBUG = 1 +pkg syscall (linux-386-cgo), const SO_DETACH_FILTER = 27 +pkg syscall (linux-386-cgo), const SO_DOMAIN = 39 +pkg syscall (linux-386-cgo), const SO_DONTROUTE = 5 +pkg syscall (linux-386-cgo), const SO_ERROR = 4 +pkg syscall (linux-386-cgo), const SO_KEEPALIVE = 9 +pkg syscall (linux-386-cgo), const SO_LINGER = 13 +pkg syscall (linux-386-cgo), const SO_MARK = 36 +pkg syscall (linux-386-cgo), const SO_NO_CHECK = 11 +pkg syscall (linux-386-cgo), const SO_OOBINLINE = 10 +pkg syscall (linux-386-cgo), const SO_PASSCRED = 16 +pkg syscall (linux-386-cgo), const SO_PASSSEC = 34 +pkg syscall (linux-386-cgo), const SO_PEERCRED = 17 +pkg syscall (linux-386-cgo), const SO_PEERNAME = 28 +pkg syscall (linux-386-cgo), const SO_PEERSEC = 31 +pkg syscall (linux-386-cgo), const SO_PRIORITY = 12 +pkg syscall (linux-386-cgo), const SO_PROTOCOL = 38 +pkg syscall (linux-386-cgo), const SO_RCVBUF = 8 +pkg syscall (linux-386-cgo), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-386-cgo), const SO_RCVLOWAT = 18 +pkg syscall (linux-386-cgo), const SO_RCVTIMEO = 20 +pkg syscall (linux-386-cgo), const SO_REUSEADDR = 2 +pkg syscall (linux-386-cgo), const SO_RXQ_OVFL = 40 +pkg syscall (linux-386-cgo), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-386-cgo), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-386-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-386-cgo), const SO_SNDBUF = 7 +pkg syscall (linux-386-cgo), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-386-cgo), const SO_SNDLOWAT = 19 +pkg syscall (linux-386-cgo), const SO_SNDTIMEO = 21 +pkg syscall (linux-386-cgo), const SO_TIMESTAMP = 29 +pkg syscall (linux-386-cgo), const SO_TIMESTAMPING = 37 +pkg syscall (linux-386-cgo), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-386-cgo), const SO_TYPE = 3 +pkg syscall (linux-386-cgo), const SYS_ACCESS = 33 +pkg syscall (linux-386-cgo), const SYS_ACCT = 51 +pkg syscall (linux-386-cgo), const SYS_ADD_KEY = 286 +pkg syscall (linux-386-cgo), const SYS_ADJTIMEX = 124 +pkg syscall (linux-386-cgo), const SYS_AFS_SYSCALL = 137 +pkg syscall (linux-386-cgo), const SYS_ALARM = 27 +pkg syscall (linux-386-cgo), const SYS_BDFLUSH = 134 +pkg syscall (linux-386-cgo), const SYS_BREAK = 17 +pkg syscall (linux-386-cgo), const SYS_BRK = 45 +pkg syscall (linux-386-cgo), const SYS_CAPGET = 184 +pkg syscall (linux-386-cgo), const SYS_CAPSET = 185 +pkg syscall (linux-386-cgo), const SYS_CHDIR = 12 +pkg syscall (linux-386-cgo), const SYS_CHMOD = 15 +pkg syscall (linux-386-cgo), const SYS_CHOWN = 182 +pkg syscall (linux-386-cgo), const SYS_CHOWN32 = 212 +pkg syscall (linux-386-cgo), const SYS_CHROOT = 61 +pkg syscall (linux-386-cgo), const SYS_CLOCK_GETRES = 266 +pkg syscall (linux-386-cgo), const SYS_CLOCK_GETTIME = 265 +pkg syscall (linux-386-cgo), const SYS_CLOCK_NANOSLEEP = 267 +pkg syscall (linux-386-cgo), const SYS_CLOCK_SETTIME = 264 +pkg syscall (linux-386-cgo), const SYS_CLONE = 120 +pkg syscall (linux-386-cgo), const SYS_CLOSE = 6 +pkg syscall (linux-386-cgo), const SYS_CREAT = 8 +pkg syscall (linux-386-cgo), const SYS_CREATE_MODULE = 127 +pkg syscall (linux-386-cgo), const SYS_DELETE_MODULE = 129 +pkg syscall (linux-386-cgo), const SYS_DUP = 41 +pkg syscall (linux-386-cgo), const SYS_DUP2 = 63 +pkg syscall (linux-386-cgo), const SYS_DUP3 = 330 +pkg syscall (linux-386-cgo), const SYS_EPOLL_CREATE = 254 +pkg syscall (linux-386-cgo), const SYS_EPOLL_CREATE1 = 329 +pkg syscall (linux-386-cgo), const SYS_EPOLL_CTL = 255 +pkg syscall (linux-386-cgo), const SYS_EPOLL_PWAIT = 319 +pkg syscall (linux-386-cgo), const SYS_EPOLL_WAIT = 256 +pkg syscall (linux-386-cgo), const SYS_EVENTFD = 323 +pkg syscall (linux-386-cgo), const SYS_EVENTFD2 = 328 +pkg syscall (linux-386-cgo), const SYS_EXECVE = 11 +pkg syscall (linux-386-cgo), const SYS_EXIT = 1 +pkg syscall (linux-386-cgo), const SYS_EXIT_GROUP = 252 +pkg syscall (linux-386-cgo), const SYS_FACCESSAT = 307 +pkg syscall (linux-386-cgo), const SYS_FADVISE64 = 250 +pkg syscall (linux-386-cgo), const SYS_FADVISE64_64 = 272 +pkg syscall (linux-386-cgo), const SYS_FALLOCATE = 324 +pkg syscall (linux-386-cgo), const SYS_FANOTIFY_INIT = 338 +pkg syscall (linux-386-cgo), const SYS_FANOTIFY_MARK = 339 +pkg syscall (linux-386-cgo), const SYS_FCHDIR = 133 +pkg syscall (linux-386-cgo), const SYS_FCHMOD = 94 +pkg syscall (linux-386-cgo), const SYS_FCHMODAT = 306 +pkg syscall (linux-386-cgo), const SYS_FCHOWN = 95 +pkg syscall (linux-386-cgo), const SYS_FCHOWN32 = 207 +pkg syscall (linux-386-cgo), const SYS_FCHOWNAT = 298 +pkg syscall (linux-386-cgo), const SYS_FCNTL = 55 +pkg syscall (linux-386-cgo), const SYS_FCNTL64 = 221 +pkg syscall (linux-386-cgo), const SYS_FDATASYNC = 148 +pkg syscall (linux-386-cgo), const SYS_FGETXATTR = 231 +pkg syscall (linux-386-cgo), const SYS_FLISTXATTR = 234 +pkg syscall (linux-386-cgo), const SYS_FLOCK = 143 +pkg syscall (linux-386-cgo), const SYS_FORK = 2 +pkg syscall (linux-386-cgo), const SYS_FREMOVEXATTR = 237 +pkg syscall (linux-386-cgo), const SYS_FSETXATTR = 228 +pkg syscall (linux-386-cgo), const SYS_FSTAT = 108 +pkg syscall (linux-386-cgo), const SYS_FSTAT64 = 197 +pkg syscall (linux-386-cgo), const SYS_FSTATAT64 = 300 +pkg syscall (linux-386-cgo), const SYS_FSTATFS = 100 +pkg syscall (linux-386-cgo), const SYS_FSTATFS64 = 269 +pkg syscall (linux-386-cgo), const SYS_FSYNC = 118 +pkg syscall (linux-386-cgo), const SYS_FTIME = 35 +pkg syscall (linux-386-cgo), const SYS_FTRUNCATE = 93 +pkg syscall (linux-386-cgo), const SYS_FTRUNCATE64 = 194 +pkg syscall (linux-386-cgo), const SYS_FUTEX = 240 +pkg syscall (linux-386-cgo), const SYS_FUTIMESAT = 299 +pkg syscall (linux-386-cgo), const SYS_GETCPU = 318 +pkg syscall (linux-386-cgo), const SYS_GETCWD = 183 +pkg syscall (linux-386-cgo), const SYS_GETDENTS = 141 +pkg syscall (linux-386-cgo), const SYS_GETDENTS64 = 220 +pkg syscall (linux-386-cgo), const SYS_GETEGID = 50 +pkg syscall (linux-386-cgo), const SYS_GETEGID32 = 202 +pkg syscall (linux-386-cgo), const SYS_GETEUID = 49 +pkg syscall (linux-386-cgo), const SYS_GETEUID32 = 201 +pkg syscall (linux-386-cgo), const SYS_GETGID = 47 +pkg syscall (linux-386-cgo), const SYS_GETGID32 = 200 +pkg syscall (linux-386-cgo), const SYS_GETGROUPS = 80 +pkg syscall (linux-386-cgo), const SYS_GETGROUPS32 = 205 +pkg syscall (linux-386-cgo), const SYS_GETITIMER = 105 +pkg syscall (linux-386-cgo), const SYS_GETPGID = 132 +pkg syscall (linux-386-cgo), const SYS_GETPGRP = 65 +pkg syscall (linux-386-cgo), const SYS_GETPID = 20 +pkg syscall (linux-386-cgo), const SYS_GETPMSG = 188 +pkg syscall (linux-386-cgo), const SYS_GETPPID = 64 +pkg syscall (linux-386-cgo), const SYS_GETPRIORITY = 96 +pkg syscall (linux-386-cgo), const SYS_GETRESGID = 171 +pkg syscall (linux-386-cgo), const SYS_GETRESGID32 = 211 +pkg syscall (linux-386-cgo), const SYS_GETRESUID = 165 +pkg syscall (linux-386-cgo), const SYS_GETRESUID32 = 209 +pkg syscall (linux-386-cgo), const SYS_GETRLIMIT = 76 +pkg syscall (linux-386-cgo), const SYS_GETRUSAGE = 77 +pkg syscall (linux-386-cgo), const SYS_GETSID = 147 +pkg syscall (linux-386-cgo), const SYS_GETTID = 224 +pkg syscall (linux-386-cgo), const SYS_GETTIMEOFDAY = 78 +pkg syscall (linux-386-cgo), const SYS_GETUID = 24 +pkg syscall (linux-386-cgo), const SYS_GETUID32 = 199 +pkg syscall (linux-386-cgo), const SYS_GETXATTR = 229 +pkg syscall (linux-386-cgo), const SYS_GET_KERNEL_SYMS = 130 +pkg syscall (linux-386-cgo), const SYS_GET_MEMPOLICY = 275 +pkg syscall (linux-386-cgo), const SYS_GET_ROBUST_LIST = 312 +pkg syscall (linux-386-cgo), const SYS_GET_THREAD_AREA = 244 +pkg syscall (linux-386-cgo), const SYS_GTTY = 32 +pkg syscall (linux-386-cgo), const SYS_IDLE = 112 +pkg syscall (linux-386-cgo), const SYS_INIT_MODULE = 128 +pkg syscall (linux-386-cgo), const SYS_INOTIFY_ADD_WATCH = 292 +pkg syscall (linux-386-cgo), const SYS_INOTIFY_INIT = 291 +pkg syscall (linux-386-cgo), const SYS_INOTIFY_INIT1 = 332 +pkg syscall (linux-386-cgo), const SYS_INOTIFY_RM_WATCH = 293 +pkg syscall (linux-386-cgo), const SYS_IOCTL = 54 +pkg syscall (linux-386-cgo), const SYS_IOPERM = 101 +pkg syscall (linux-386-cgo), const SYS_IOPL = 110 +pkg syscall (linux-386-cgo), const SYS_IOPRIO_GET = 290 +pkg syscall (linux-386-cgo), const SYS_IOPRIO_SET = 289 +pkg syscall (linux-386-cgo), const SYS_IO_CANCEL = 249 +pkg syscall (linux-386-cgo), const SYS_IO_DESTROY = 246 +pkg syscall (linux-386-cgo), const SYS_IO_GETEVENTS = 247 +pkg syscall (linux-386-cgo), const SYS_IO_SETUP = 245 +pkg syscall (linux-386-cgo), const SYS_IO_SUBMIT = 248 +pkg syscall (linux-386-cgo), const SYS_IPC = 117 +pkg syscall (linux-386-cgo), const SYS_KEXEC_LOAD = 283 +pkg syscall (linux-386-cgo), const SYS_KEYCTL = 288 +pkg syscall (linux-386-cgo), const SYS_KILL = 37 +pkg syscall (linux-386-cgo), const SYS_LCHOWN = 16 +pkg syscall (linux-386-cgo), const SYS_LCHOWN32 = 198 +pkg syscall (linux-386-cgo), const SYS_LGETXATTR = 230 +pkg syscall (linux-386-cgo), const SYS_LINK = 9 +pkg syscall (linux-386-cgo), const SYS_LINKAT = 303 +pkg syscall (linux-386-cgo), const SYS_LISTXATTR = 232 +pkg syscall (linux-386-cgo), const SYS_LLISTXATTR = 233 +pkg syscall (linux-386-cgo), const SYS_LOCK = 53 +pkg syscall (linux-386-cgo), const SYS_LOOKUP_DCOOKIE = 253 +pkg syscall (linux-386-cgo), const SYS_LREMOVEXATTR = 236 +pkg syscall (linux-386-cgo), const SYS_LSEEK = 19 +pkg syscall (linux-386-cgo), const SYS_LSETXATTR = 227 +pkg syscall (linux-386-cgo), const SYS_LSTAT = 107 +pkg syscall (linux-386-cgo), const SYS_LSTAT64 = 196 +pkg syscall (linux-386-cgo), const SYS_MADVISE = 219 +pkg syscall (linux-386-cgo), const SYS_MADVISE1 = 219 +pkg syscall (linux-386-cgo), const SYS_MBIND = 274 +pkg syscall (linux-386-cgo), const SYS_MIGRATE_PAGES = 294 +pkg syscall (linux-386-cgo), const SYS_MINCORE = 218 +pkg syscall (linux-386-cgo), const SYS_MKDIR = 39 +pkg syscall (linux-386-cgo), const SYS_MKDIRAT = 296 +pkg syscall (linux-386-cgo), const SYS_MKNOD = 14 +pkg syscall (linux-386-cgo), const SYS_MKNODAT = 297 +pkg syscall (linux-386-cgo), const SYS_MLOCK = 150 +pkg syscall (linux-386-cgo), const SYS_MLOCKALL = 152 +pkg syscall (linux-386-cgo), const SYS_MMAP = 90 +pkg syscall (linux-386-cgo), const SYS_MMAP2 = 192 +pkg syscall (linux-386-cgo), const SYS_MODIFY_LDT = 123 +pkg syscall (linux-386-cgo), const SYS_MOUNT = 21 +pkg syscall (linux-386-cgo), const SYS_MOVE_PAGES = 317 +pkg syscall (linux-386-cgo), const SYS_MPROTECT = 125 +pkg syscall (linux-386-cgo), const SYS_MPX = 56 +pkg syscall (linux-386-cgo), const SYS_MQ_GETSETATTR = 282 +pkg syscall (linux-386-cgo), const SYS_MQ_NOTIFY = 281 +pkg syscall (linux-386-cgo), const SYS_MQ_OPEN = 277 +pkg syscall (linux-386-cgo), const SYS_MQ_TIMEDRECEIVE = 280 +pkg syscall (linux-386-cgo), const SYS_MQ_TIMEDSEND = 279 +pkg syscall (linux-386-cgo), const SYS_MQ_UNLINK = 278 +pkg syscall (linux-386-cgo), const SYS_MREMAP = 163 +pkg syscall (linux-386-cgo), const SYS_MSYNC = 144 +pkg syscall (linux-386-cgo), const SYS_MUNLOCK = 151 +pkg syscall (linux-386-cgo), const SYS_MUNLOCKALL = 153 +pkg syscall (linux-386-cgo), const SYS_MUNMAP = 91 +pkg syscall (linux-386-cgo), const SYS_NANOSLEEP = 162 +pkg syscall (linux-386-cgo), const SYS_NFSSERVCTL = 169 +pkg syscall (linux-386-cgo), const SYS_NICE = 34 +pkg syscall (linux-386-cgo), const SYS_OLDFSTAT = 28 +pkg syscall (linux-386-cgo), const SYS_OLDLSTAT = 84 +pkg syscall (linux-386-cgo), const SYS_OLDOLDUNAME = 59 +pkg syscall (linux-386-cgo), const SYS_OLDSTAT = 18 +pkg syscall (linux-386-cgo), const SYS_OLDUNAME = 109 +pkg syscall (linux-386-cgo), const SYS_OPEN = 5 +pkg syscall (linux-386-cgo), const SYS_OPENAT = 295 +pkg syscall (linux-386-cgo), const SYS_PAUSE = 29 +pkg syscall (linux-386-cgo), const SYS_PERF_EVENT_OPEN = 336 +pkg syscall (linux-386-cgo), const SYS_PERSONALITY = 136 +pkg syscall (linux-386-cgo), const SYS_PIPE = 42 +pkg syscall (linux-386-cgo), const SYS_PIPE2 = 331 +pkg syscall (linux-386-cgo), const SYS_PIVOT_ROOT = 217 +pkg syscall (linux-386-cgo), const SYS_POLL = 168 +pkg syscall (linux-386-cgo), const SYS_PPOLL = 309 +pkg syscall (linux-386-cgo), const SYS_PRCTL = 172 +pkg syscall (linux-386-cgo), const SYS_PREAD64 = 180 +pkg syscall (linux-386-cgo), const SYS_PREADV = 333 +pkg syscall (linux-386-cgo), const SYS_PRLIMIT64 = 340 +pkg syscall (linux-386-cgo), const SYS_PROF = 44 +pkg syscall (linux-386-cgo), const SYS_PROFIL = 98 +pkg syscall (linux-386-cgo), const SYS_PSELECT6 = 308 +pkg syscall (linux-386-cgo), const SYS_PTRACE = 26 +pkg syscall (linux-386-cgo), const SYS_PUTPMSG = 189 +pkg syscall (linux-386-cgo), const SYS_PWRITE64 = 181 +pkg syscall (linux-386-cgo), const SYS_PWRITEV = 334 +pkg syscall (linux-386-cgo), const SYS_QUERY_MODULE = 167 +pkg syscall (linux-386-cgo), const SYS_QUOTACTL = 131 +pkg syscall (linux-386-cgo), const SYS_READ = 3 +pkg syscall (linux-386-cgo), const SYS_READAHEAD = 225 +pkg syscall (linux-386-cgo), const SYS_READDIR = 89 +pkg syscall (linux-386-cgo), const SYS_READLINK = 85 +pkg syscall (linux-386-cgo), const SYS_READLINKAT = 305 +pkg syscall (linux-386-cgo), const SYS_READV = 145 +pkg syscall (linux-386-cgo), const SYS_REBOOT = 88 +pkg syscall (linux-386-cgo), const SYS_RECVMMSG = 337 +pkg syscall (linux-386-cgo), const SYS_REMAP_FILE_PAGES = 257 +pkg syscall (linux-386-cgo), const SYS_REMOVEXATTR = 235 +pkg syscall (linux-386-cgo), const SYS_RENAME = 38 +pkg syscall (linux-386-cgo), const SYS_RENAMEAT = 302 +pkg syscall (linux-386-cgo), const SYS_REQUEST_KEY = 287 +pkg syscall (linux-386-cgo), const SYS_RESTART_SYSCALL = 0 +pkg syscall (linux-386-cgo), const SYS_RMDIR = 40 +pkg syscall (linux-386-cgo), const SYS_RT_SIGACTION = 174 +pkg syscall (linux-386-cgo), const SYS_RT_SIGPENDING = 176 +pkg syscall (linux-386-cgo), const SYS_RT_SIGPROCMASK = 175 +pkg syscall (linux-386-cgo), const SYS_RT_SIGQUEUEINFO = 178 +pkg syscall (linux-386-cgo), const SYS_RT_SIGRETURN = 173 +pkg syscall (linux-386-cgo), const SYS_RT_SIGSUSPEND = 179 +pkg syscall (linux-386-cgo), const SYS_RT_SIGTIMEDWAIT = 177 +pkg syscall (linux-386-cgo), const SYS_RT_TGSIGQUEUEINFO = 335 +pkg syscall (linux-386-cgo), const SYS_SCHED_GETAFFINITY = 242 +pkg syscall (linux-386-cgo), const SYS_SCHED_GETPARAM = 155 +pkg syscall (linux-386-cgo), const SYS_SCHED_GETSCHEDULER = 157 +pkg syscall (linux-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 159 +pkg syscall (linux-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 160 +pkg syscall (linux-386-cgo), const SYS_SCHED_RR_GET_INTERVAL = 161 +pkg syscall (linux-386-cgo), const SYS_SCHED_SETAFFINITY = 241 +pkg syscall (linux-386-cgo), const SYS_SCHED_SETPARAM = 154 +pkg syscall (linux-386-cgo), const SYS_SCHED_SETSCHEDULER = 156 +pkg syscall (linux-386-cgo), const SYS_SCHED_YIELD = 158 +pkg syscall (linux-386-cgo), const SYS_SELECT = 82 +pkg syscall (linux-386-cgo), const SYS_SENDFILE = 187 +pkg syscall (linux-386-cgo), const SYS_SENDFILE64 = 239 +pkg syscall (linux-386-cgo), const SYS_SETDOMAINNAME = 121 +pkg syscall (linux-386-cgo), const SYS_SETFSGID = 139 +pkg syscall (linux-386-cgo), const SYS_SETFSGID32 = 216 +pkg syscall (linux-386-cgo), const SYS_SETFSUID = 138 +pkg syscall (linux-386-cgo), const SYS_SETFSUID32 = 215 +pkg syscall (linux-386-cgo), const SYS_SETGID = 46 +pkg syscall (linux-386-cgo), const SYS_SETGID32 = 214 +pkg syscall (linux-386-cgo), const SYS_SETGROUPS = 81 +pkg syscall (linux-386-cgo), const SYS_SETGROUPS32 = 206 +pkg syscall (linux-386-cgo), const SYS_SETHOSTNAME = 74 +pkg syscall (linux-386-cgo), const SYS_SETITIMER = 104 +pkg syscall (linux-386-cgo), const SYS_SETPGID = 57 +pkg syscall (linux-386-cgo), const SYS_SETPRIORITY = 97 +pkg syscall (linux-386-cgo), const SYS_SETREGID = 71 +pkg syscall (linux-386-cgo), const SYS_SETREGID32 = 204 +pkg syscall (linux-386-cgo), const SYS_SETRESGID = 170 +pkg syscall (linux-386-cgo), const SYS_SETRESGID32 = 210 +pkg syscall (linux-386-cgo), const SYS_SETRESUID = 164 +pkg syscall (linux-386-cgo), const SYS_SETRESUID32 = 208 +pkg syscall (linux-386-cgo), const SYS_SETREUID = 70 +pkg syscall (linux-386-cgo), const SYS_SETREUID32 = 203 +pkg syscall (linux-386-cgo), const SYS_SETRLIMIT = 75 +pkg syscall (linux-386-cgo), const SYS_SETSID = 66 +pkg syscall (linux-386-cgo), const SYS_SETTIMEOFDAY = 79 +pkg syscall (linux-386-cgo), const SYS_SETUID = 23 +pkg syscall (linux-386-cgo), const SYS_SETUID32 = 213 +pkg syscall (linux-386-cgo), const SYS_SETXATTR = 226 +pkg syscall (linux-386-cgo), const SYS_SET_MEMPOLICY = 276 +pkg syscall (linux-386-cgo), const SYS_SET_ROBUST_LIST = 311 +pkg syscall (linux-386-cgo), const SYS_SET_THREAD_AREA = 243 +pkg syscall (linux-386-cgo), const SYS_SET_TID_ADDRESS = 258 +pkg syscall (linux-386-cgo), const SYS_SGETMASK = 68 +pkg syscall (linux-386-cgo), const SYS_SIGACTION = 67 +pkg syscall (linux-386-cgo), const SYS_SIGALTSTACK = 186 +pkg syscall (linux-386-cgo), const SYS_SIGNAL = 48 +pkg syscall (linux-386-cgo), const SYS_SIGNALFD = 321 +pkg syscall (linux-386-cgo), const SYS_SIGNALFD4 = 327 +pkg syscall (linux-386-cgo), const SYS_SIGPENDING = 73 +pkg syscall (linux-386-cgo), const SYS_SIGPROCMASK = 126 +pkg syscall (linux-386-cgo), const SYS_SIGRETURN = 119 +pkg syscall (linux-386-cgo), const SYS_SIGSUSPEND = 72 +pkg syscall (linux-386-cgo), const SYS_SOCKETCALL = 102 +pkg syscall (linux-386-cgo), const SYS_SPLICE = 313 +pkg syscall (linux-386-cgo), const SYS_SSETMASK = 69 +pkg syscall (linux-386-cgo), const SYS_STAT = 106 +pkg syscall (linux-386-cgo), const SYS_STAT64 = 195 +pkg syscall (linux-386-cgo), const SYS_STATFS = 99 +pkg syscall (linux-386-cgo), const SYS_STATFS64 = 268 +pkg syscall (linux-386-cgo), const SYS_STIME = 25 +pkg syscall (linux-386-cgo), const SYS_STTY = 31 +pkg syscall (linux-386-cgo), const SYS_SWAPOFF = 115 +pkg syscall (linux-386-cgo), const SYS_SWAPON = 87 +pkg syscall (linux-386-cgo), const SYS_SYMLINK = 83 +pkg syscall (linux-386-cgo), const SYS_SYMLINKAT = 304 +pkg syscall (linux-386-cgo), const SYS_SYNC = 36 +pkg syscall (linux-386-cgo), const SYS_SYNC_FILE_RANGE = 314 +pkg syscall (linux-386-cgo), const SYS_SYSFS = 135 +pkg syscall (linux-386-cgo), const SYS_SYSINFO = 116 +pkg syscall (linux-386-cgo), const SYS_SYSLOG = 103 +pkg syscall (linux-386-cgo), const SYS_TEE = 315 +pkg syscall (linux-386-cgo), const SYS_TGKILL = 270 +pkg syscall (linux-386-cgo), const SYS_TIME = 13 +pkg syscall (linux-386-cgo), const SYS_TIMERFD_CREATE = 322 +pkg syscall (linux-386-cgo), const SYS_TIMERFD_GETTIME = 326 +pkg syscall (linux-386-cgo), const SYS_TIMERFD_SETTIME = 325 +pkg syscall (linux-386-cgo), const SYS_TIMER_CREATE = 259 +pkg syscall (linux-386-cgo), const SYS_TIMER_DELETE = 263 +pkg syscall (linux-386-cgo), const SYS_TIMER_GETOVERRUN = 262 +pkg syscall (linux-386-cgo), const SYS_TIMER_GETTIME = 261 +pkg syscall (linux-386-cgo), const SYS_TIMER_SETTIME = 260 +pkg syscall (linux-386-cgo), const SYS_TIMES = 43 +pkg syscall (linux-386-cgo), const SYS_TKILL = 238 +pkg syscall (linux-386-cgo), const SYS_TRUNCATE = 92 +pkg syscall (linux-386-cgo), const SYS_TRUNCATE64 = 193 +pkg syscall (linux-386-cgo), const SYS_UGETRLIMIT = 191 +pkg syscall (linux-386-cgo), const SYS_ULIMIT = 58 +pkg syscall (linux-386-cgo), const SYS_UMASK = 60 +pkg syscall (linux-386-cgo), const SYS_UMOUNT = 22 +pkg syscall (linux-386-cgo), const SYS_UMOUNT2 = 52 +pkg syscall (linux-386-cgo), const SYS_UNAME = 122 +pkg syscall (linux-386-cgo), const SYS_UNLINK = 10 +pkg syscall (linux-386-cgo), const SYS_UNLINKAT = 301 +pkg syscall (linux-386-cgo), const SYS_UNSHARE = 310 +pkg syscall (linux-386-cgo), const SYS_USELIB = 86 +pkg syscall (linux-386-cgo), const SYS_USTAT = 62 +pkg syscall (linux-386-cgo), const SYS_UTIME = 30 +pkg syscall (linux-386-cgo), const SYS_UTIMENSAT = 320 +pkg syscall (linux-386-cgo), const SYS_UTIMES = 271 +pkg syscall (linux-386-cgo), const SYS_VFORK = 190 +pkg syscall (linux-386-cgo), const SYS_VHANGUP = 111 +pkg syscall (linux-386-cgo), const SYS_VM86 = 166 +pkg syscall (linux-386-cgo), const SYS_VM86OLD = 113 +pkg syscall (linux-386-cgo), const SYS_VMSPLICE = 316 +pkg syscall (linux-386-cgo), const SYS_VSERVER = 273 +pkg syscall (linux-386-cgo), const SYS_WAIT4 = 114 +pkg syscall (linux-386-cgo), const SYS_WAITID = 284 +pkg syscall (linux-386-cgo), const SYS_WAITPID = 7 +pkg syscall (linux-386-cgo), const SYS_WRITE = 4 +pkg syscall (linux-386-cgo), const SYS_WRITEV = 146 +pkg syscall (linux-386-cgo), const SYS__LLSEEK = 140 +pkg syscall (linux-386-cgo), const SYS__NEWSELECT = 142 +pkg syscall (linux-386-cgo), const SYS__SYSCTL = 149 +pkg syscall (linux-386-cgo), const S_BLKSIZE = 512 +pkg syscall (linux-386-cgo), const S_IEXEC = 64 +pkg syscall (linux-386-cgo), const S_IFMT = 61440 +pkg syscall (linux-386-cgo), const S_IREAD = 256 +pkg syscall (linux-386-cgo), const S_IRGRP = 32 +pkg syscall (linux-386-cgo), const S_IROTH = 4 +pkg syscall (linux-386-cgo), const S_IRWXG = 56 +pkg syscall (linux-386-cgo), const S_IRWXO = 7 +pkg syscall (linux-386-cgo), const S_IRWXU = 448 +pkg syscall (linux-386-cgo), const S_IWGRP = 16 +pkg syscall (linux-386-cgo), const S_IWOTH = 2 +pkg syscall (linux-386-cgo), const S_IWRITE = 128 +pkg syscall (linux-386-cgo), const S_IXGRP = 8 +pkg syscall (linux-386-cgo), const S_IXOTH = 1 +pkg syscall (linux-386-cgo), const SizeofCmsghdr = 12 +pkg syscall (linux-386-cgo), const SizeofIPMreq = 8 +pkg syscall (linux-386-cgo), const SizeofIPMreqn = 12 +pkg syscall (linux-386-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (linux-386-cgo), const SizeofIfAddrmsg = 8 +pkg syscall (linux-386-cgo), const SizeofIfInfomsg = 16 +pkg syscall (linux-386-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-386-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-386-cgo), const SizeofInotifyEvent = 16 +pkg syscall (linux-386-cgo), const SizeofLinger = 8 +pkg syscall (linux-386-cgo), const SizeofMsghdr = 28 +pkg syscall (linux-386-cgo), const SizeofNlAttr = 4 +pkg syscall (linux-386-cgo), const SizeofNlMsgerr = 20 +pkg syscall (linux-386-cgo), const SizeofNlMsghdr = 16 +pkg syscall (linux-386-cgo), const SizeofRtAttr = 4 +pkg syscall (linux-386-cgo), const SizeofRtGenmsg = 1 +pkg syscall (linux-386-cgo), const SizeofRtMsg = 12 +pkg syscall (linux-386-cgo), const SizeofRtNexthop = 8 +pkg syscall (linux-386-cgo), const SizeofSockFilter = 8 +pkg syscall (linux-386-cgo), const SizeofSockFprog = 8 +pkg syscall (linux-386-cgo), const SizeofSockaddrAny = 112 +pkg syscall (linux-386-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-386-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-386-cgo), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-386-cgo), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-386-cgo), const SizeofSockaddrUnix = 110 +pkg syscall (linux-386-cgo), const SizeofTCPInfo = 104 +pkg syscall (linux-386-cgo), const SizeofTCPInfo ideal-int +pkg syscall (linux-386-cgo), const SizeofUcred = 12 +pkg syscall (linux-386-cgo), const TCGETS = 21505 +pkg syscall (linux-386-cgo), const TCP_CONGESTION = 13 +pkg syscall (linux-386-cgo), const TCP_CORK = 3 +pkg syscall (linux-386-cgo), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-386-cgo), const TCP_INFO = 11 +pkg syscall (linux-386-cgo), const TCP_KEEPCNT = 6 +pkg syscall (linux-386-cgo), const TCP_KEEPIDLE = 4 +pkg syscall (linux-386-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (linux-386-cgo), const TCP_LINGER2 = 8 +pkg syscall (linux-386-cgo), const TCP_MAXSEG = 2 +pkg syscall (linux-386-cgo), const TCP_MAXWIN = 65535 +pkg syscall (linux-386-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-386-cgo), const TCP_MD5SIG = 14 +pkg syscall (linux-386-cgo), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-386-cgo), const TCP_MSS = 512 +pkg syscall (linux-386-cgo), const TCP_QUICKACK = 12 +pkg syscall (linux-386-cgo), const TCP_SYNCNT = 7 +pkg syscall (linux-386-cgo), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-386-cgo), const TCSETS = 21506 +pkg syscall (linux-386-cgo), const TIOCCBRK = 21544 +pkg syscall (linux-386-cgo), const TIOCCONS = 21533 +pkg syscall (linux-386-cgo), const TIOCEXCL = 21516 +pkg syscall (linux-386-cgo), const TIOCGDEV = 2147767346 +pkg syscall (linux-386-cgo), const TIOCGETD = 21540 +pkg syscall (linux-386-cgo), const TIOCGICOUNT = 21597 +pkg syscall (linux-386-cgo), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-386-cgo), const TIOCGPGRP = 21519 +pkg syscall (linux-386-cgo), const TIOCGPTN = 2147767344 +pkg syscall (linux-386-cgo), const TIOCGRS485 = 21550 +pkg syscall (linux-386-cgo), const TIOCGSERIAL = 21534 +pkg syscall (linux-386-cgo), const TIOCGSID = 21545 +pkg syscall (linux-386-cgo), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-386-cgo), const TIOCGWINSZ = 21523 +pkg syscall (linux-386-cgo), const TIOCINQ = 21531 +pkg syscall (linux-386-cgo), const TIOCLINUX = 21532 +pkg syscall (linux-386-cgo), const TIOCMBIC = 21527 +pkg syscall (linux-386-cgo), const TIOCMBIS = 21526 +pkg syscall (linux-386-cgo), const TIOCMGET = 21525 +pkg syscall (linux-386-cgo), const TIOCMIWAIT = 21596 +pkg syscall (linux-386-cgo), const TIOCMSET = 21528 +pkg syscall (linux-386-cgo), const TIOCM_CAR = 64 +pkg syscall (linux-386-cgo), const TIOCM_CD = 64 +pkg syscall (linux-386-cgo), const TIOCM_CTS = 32 +pkg syscall (linux-386-cgo), const TIOCM_DSR = 256 +pkg syscall (linux-386-cgo), const TIOCM_DTR = 2 +pkg syscall (linux-386-cgo), const TIOCM_LE = 1 +pkg syscall (linux-386-cgo), const TIOCM_RI = 128 +pkg syscall (linux-386-cgo), const TIOCM_RNG = 128 +pkg syscall (linux-386-cgo), const TIOCM_RTS = 4 +pkg syscall (linux-386-cgo), const TIOCM_SR = 16 +pkg syscall (linux-386-cgo), const TIOCM_ST = 8 +pkg syscall (linux-386-cgo), const TIOCNOTTY = 21538 +pkg syscall (linux-386-cgo), const TIOCNXCL = 21517 +pkg syscall (linux-386-cgo), const TIOCOUTQ = 21521 +pkg syscall (linux-386-cgo), const TIOCPKT = 21536 +pkg syscall (linux-386-cgo), const TIOCPKT_DATA = 0 +pkg syscall (linux-386-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-386-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-386-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-386-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-386-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-386-cgo), const TIOCPKT_START = 8 +pkg syscall (linux-386-cgo), const TIOCPKT_STOP = 4 +pkg syscall (linux-386-cgo), const TIOCSBRK = 21543 +pkg syscall (linux-386-cgo), const TIOCSCTTY = 21518 +pkg syscall (linux-386-cgo), const TIOCSERCONFIG = 21587 +pkg syscall (linux-386-cgo), const TIOCSERGETLSR = 21593 +pkg syscall (linux-386-cgo), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-386-cgo), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-386-cgo), const TIOCSERGWILD = 21588 +pkg syscall (linux-386-cgo), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-386-cgo), const TIOCSERSWILD = 21589 +pkg syscall (linux-386-cgo), const TIOCSER_TEMT = 1 +pkg syscall (linux-386-cgo), const TIOCSETD = 21539 +pkg syscall (linux-386-cgo), const TIOCSIG = 1074025526 +pkg syscall (linux-386-cgo), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-386-cgo), const TIOCSPGRP = 21520 +pkg syscall (linux-386-cgo), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-386-cgo), const TIOCSRS485 = 21551 +pkg syscall (linux-386-cgo), const TIOCSSERIAL = 21535 +pkg syscall (linux-386-cgo), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-386-cgo), const TIOCSTI = 21522 +pkg syscall (linux-386-cgo), const TIOCSWINSZ = 21524 +pkg syscall (linux-386-cgo), const TOSTOP = 256 +pkg syscall (linux-386-cgo), const TUNATTACHFILTER = 1074287829 +pkg syscall (linux-386-cgo), const TUNDETACHFILTER = 1074287830 +pkg syscall (linux-386-cgo), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-386-cgo), const TUNGETIFF = 2147767506 +pkg syscall (linux-386-cgo), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-386-cgo), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-386-cgo), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-386-cgo), const TUNSETGROUP = 1074025678 +pkg syscall (linux-386-cgo), const TUNSETIFF = 1074025674 +pkg syscall (linux-386-cgo), const TUNSETLINK = 1074025677 +pkg syscall (linux-386-cgo), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-386-cgo), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-386-cgo), const TUNSETOWNER = 1074025676 +pkg syscall (linux-386-cgo), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-386-cgo), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-386-cgo), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-386-cgo), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-386-cgo), const VDISCARD = 13 +pkg syscall (linux-386-cgo), const VEOF = 4 +pkg syscall (linux-386-cgo), const VEOL = 11 +pkg syscall (linux-386-cgo), const VEOL2 = 16 +pkg syscall (linux-386-cgo), const VERASE = 2 +pkg syscall (linux-386-cgo), const VINTR = 0 +pkg syscall (linux-386-cgo), const VKILL = 3 +pkg syscall (linux-386-cgo), const VLNEXT = 15 +pkg syscall (linux-386-cgo), const VMIN = 6 +pkg syscall (linux-386-cgo), const VQUIT = 1 +pkg syscall (linux-386-cgo), const VREPRINT = 12 +pkg syscall (linux-386-cgo), const VSTART = 8 +pkg syscall (linux-386-cgo), const VSTOP = 9 +pkg syscall (linux-386-cgo), const VSUSP = 10 +pkg syscall (linux-386-cgo), const VSWTC = 7 +pkg syscall (linux-386-cgo), const VTIME = 5 +pkg syscall (linux-386-cgo), const VWERASE = 14 +pkg syscall (linux-386-cgo), const WALL = 1073741824 +pkg syscall (linux-386-cgo), const WCLONE = 2147483648 +pkg syscall (linux-386-cgo), const WCONTINUED = 8 +pkg syscall (linux-386-cgo), const WEXITED = 4 +pkg syscall (linux-386-cgo), const WNOHANG = 1 +pkg syscall (linux-386-cgo), const WNOTHREAD = 536870912 +pkg syscall (linux-386-cgo), const WNOWAIT = 16777216 +pkg syscall (linux-386-cgo), const WORDSIZE = 32 +pkg syscall (linux-386-cgo), const WSTOPPED = 2 +pkg syscall (linux-386-cgo), const WUNTRACED = 2 +pkg syscall (linux-386-cgo), const XCASE = 4 +pkg syscall (linux-386-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-386-cgo), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-386-cgo), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-386-cgo), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-386-cgo), func Pipe2([]int, int) error +pkg syscall (linux-386-cgo), func PtraceSyscall(int, int) error +pkg syscall (linux-386-cgo), func Removexattr(string, string) error +pkg syscall (linux-386-cgo), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-386-cgo), type SysProcAttr struct, Ctty int +pkg syscall (linux-386-cgo), type TCPInfo struct +pkg syscall (linux-386-cgo), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Ato uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Lost uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Options uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Probes uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rto uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, State uint8 +pkg syscall (linux-386-cgo), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-386-cgo), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-amd64), const AF_ALG = 38 +pkg syscall (linux-amd64), const AF_APPLETALK = 5 +pkg syscall (linux-amd64), const AF_ASH = 18 +pkg syscall (linux-amd64), const AF_ATMPVC = 8 +pkg syscall (linux-amd64), const AF_ATMSVC = 20 +pkg syscall (linux-amd64), const AF_AX25 = 3 +pkg syscall (linux-amd64), const AF_BLUETOOTH = 31 +pkg syscall (linux-amd64), const AF_BRIDGE = 7 +pkg syscall (linux-amd64), const AF_CAIF = 37 +pkg syscall (linux-amd64), const AF_CAN = 29 +pkg syscall (linux-amd64), const AF_DECnet = 12 +pkg syscall (linux-amd64), const AF_ECONET = 19 +pkg syscall (linux-amd64), const AF_FILE = 1 +pkg syscall (linux-amd64), const AF_IEEE802154 = 36 +pkg syscall (linux-amd64), const AF_INET6 = 10 +pkg syscall (linux-amd64), const AF_IPX = 4 +pkg syscall (linux-amd64), const AF_IRDA = 23 +pkg syscall (linux-amd64), const AF_ISDN = 34 +pkg syscall (linux-amd64), const AF_IUCV = 32 +pkg syscall (linux-amd64), const AF_KEY = 15 +pkg syscall (linux-amd64), const AF_LLC = 26 +pkg syscall (linux-amd64), const AF_LOCAL = 1 +pkg syscall (linux-amd64), const AF_MAX = 39 +pkg syscall (linux-amd64), const AF_NETBEUI = 13 +pkg syscall (linux-amd64), const AF_NETLINK = 16 +pkg syscall (linux-amd64), const AF_NETROM = 6 +pkg syscall (linux-amd64), const AF_PACKET = 17 +pkg syscall (linux-amd64), const AF_PHONET = 35 +pkg syscall (linux-amd64), const AF_PPPOX = 24 +pkg syscall (linux-amd64), const AF_RDS = 21 +pkg syscall (linux-amd64), const AF_ROSE = 11 +pkg syscall (linux-amd64), const AF_ROUTE = 16 +pkg syscall (linux-amd64), const AF_RXRPC = 33 +pkg syscall (linux-amd64), const AF_SECURITY = 14 +pkg syscall (linux-amd64), const AF_SNA = 22 +pkg syscall (linux-amd64), const AF_TIPC = 30 +pkg syscall (linux-amd64), const AF_WANPIPE = 25 +pkg syscall (linux-amd64), const AF_X25 = 9 +pkg syscall (linux-amd64), const ARPHRD_ADAPT = 264 +pkg syscall (linux-amd64), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-amd64), const ARPHRD_ARCNET = 7 +pkg syscall (linux-amd64), const ARPHRD_ASH = 781 +pkg syscall (linux-amd64), const ARPHRD_ATM = 19 +pkg syscall (linux-amd64), const ARPHRD_AX25 = 3 +pkg syscall (linux-amd64), const ARPHRD_BIF = 775 +pkg syscall (linux-amd64), const ARPHRD_CHAOS = 5 +pkg syscall (linux-amd64), const ARPHRD_CISCO = 513 +pkg syscall (linux-amd64), const ARPHRD_CSLIP = 257 +pkg syscall (linux-amd64), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-amd64), const ARPHRD_DDCMP = 517 +pkg syscall (linux-amd64), const ARPHRD_DLCI = 15 +pkg syscall (linux-amd64), const ARPHRD_ECONET = 782 +pkg syscall (linux-amd64), const ARPHRD_EETHER = 2 +pkg syscall (linux-amd64), const ARPHRD_ETHER = 1 +pkg syscall (linux-amd64), const ARPHRD_EUI64 = 27 +pkg syscall (linux-amd64), const ARPHRD_FCAL = 785 +pkg syscall (linux-amd64), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-amd64), const ARPHRD_FCPL = 786 +pkg syscall (linux-amd64), const ARPHRD_FCPP = 784 +pkg syscall (linux-amd64), const ARPHRD_FDDI = 774 +pkg syscall (linux-amd64), const ARPHRD_FRAD = 770 +pkg syscall (linux-amd64), const ARPHRD_HDLC = 513 +pkg syscall (linux-amd64), const ARPHRD_HIPPI = 780 +pkg syscall (linux-amd64), const ARPHRD_HWX25 = 272 +pkg syscall (linux-amd64), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-amd64), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-amd64), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-amd64), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-amd64), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-amd64), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-amd64), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-amd64), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-amd64), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-amd64), const ARPHRD_IPDDP = 777 +pkg syscall (linux-amd64), const ARPHRD_IPGRE = 778 +pkg syscall (linux-amd64), const ARPHRD_IRDA = 783 +pkg syscall (linux-amd64), const ARPHRD_LAPB = 516 +pkg syscall (linux-amd64), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-amd64), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-amd64), const ARPHRD_METRICOM = 23 +pkg syscall (linux-amd64), const ARPHRD_NETROM = 0 +pkg syscall (linux-amd64), const ARPHRD_NONE = 65534 +pkg syscall (linux-amd64), const ARPHRD_PIMREG = 779 +pkg syscall (linux-amd64), const ARPHRD_PPP = 512 +pkg syscall (linux-amd64), const ARPHRD_PRONET = 4 +pkg syscall (linux-amd64), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-amd64), const ARPHRD_ROSE = 270 +pkg syscall (linux-amd64), const ARPHRD_RSRVD = 260 +pkg syscall (linux-amd64), const ARPHRD_SIT = 776 +pkg syscall (linux-amd64), const ARPHRD_SKIP = 771 +pkg syscall (linux-amd64), const ARPHRD_SLIP = 256 +pkg syscall (linux-amd64), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-amd64), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-amd64), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-amd64), const ARPHRD_VOID = 65535 +pkg syscall (linux-amd64), const ARPHRD_X25 = 271 +pkg syscall (linux-amd64), const B0 = 0 +pkg syscall (linux-amd64), const B1000000 = 4104 +pkg syscall (linux-amd64), const B110 = 3 +pkg syscall (linux-amd64), const B115200 = 4098 +pkg syscall (linux-amd64), const B1152000 = 4105 +pkg syscall (linux-amd64), const B1200 = 9 +pkg syscall (linux-amd64), const B134 = 4 +pkg syscall (linux-amd64), const B150 = 5 +pkg syscall (linux-amd64), const B1500000 = 4106 +pkg syscall (linux-amd64), const B1800 = 10 +pkg syscall (linux-amd64), const B19200 = 14 +pkg syscall (linux-amd64), const B200 = 6 +pkg syscall (linux-amd64), const B2000000 = 4107 +pkg syscall (linux-amd64), const B230400 = 4099 +pkg syscall (linux-amd64), const B2400 = 11 +pkg syscall (linux-amd64), const B2500000 = 4108 +pkg syscall (linux-amd64), const B300 = 7 +pkg syscall (linux-amd64), const B3000000 = 4109 +pkg syscall (linux-amd64), const B3500000 = 4110 +pkg syscall (linux-amd64), const B38400 = 15 +pkg syscall (linux-amd64), const B4000000 = 4111 +pkg syscall (linux-amd64), const B460800 = 4100 +pkg syscall (linux-amd64), const B4800 = 12 +pkg syscall (linux-amd64), const B50 = 1 +pkg syscall (linux-amd64), const B500000 = 4101 +pkg syscall (linux-amd64), const B57600 = 4097 +pkg syscall (linux-amd64), const B576000 = 4102 +pkg syscall (linux-amd64), const B600 = 8 +pkg syscall (linux-amd64), const B75 = 2 +pkg syscall (linux-amd64), const B921600 = 4103 +pkg syscall (linux-amd64), const B9600 = 13 +pkg syscall (linux-amd64), const BPF_A = 16 +pkg syscall (linux-amd64), const BPF_ABS = 32 +pkg syscall (linux-amd64), const BPF_ADD = 0 +pkg syscall (linux-amd64), const BPF_ALU = 4 +pkg syscall (linux-amd64), const BPF_AND = 80 +pkg syscall (linux-amd64), const BPF_B = 16 +pkg syscall (linux-amd64), const BPF_DIV = 48 +pkg syscall (linux-amd64), const BPF_H = 8 +pkg syscall (linux-amd64), const BPF_IMM = 0 +pkg syscall (linux-amd64), const BPF_IND = 64 +pkg syscall (linux-amd64), const BPF_JA = 0 +pkg syscall (linux-amd64), const BPF_JEQ = 16 +pkg syscall (linux-amd64), const BPF_JGE = 48 +pkg syscall (linux-amd64), const BPF_JGT = 32 +pkg syscall (linux-amd64), const BPF_JMP = 5 +pkg syscall (linux-amd64), const BPF_JSET = 64 +pkg syscall (linux-amd64), const BPF_K = 0 +pkg syscall (linux-amd64), const BPF_LD = 0 +pkg syscall (linux-amd64), const BPF_LDX = 1 +pkg syscall (linux-amd64), const BPF_LEN = 128 +pkg syscall (linux-amd64), const BPF_LSH = 96 +pkg syscall (linux-amd64), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-amd64), const BPF_MAXINSNS = 4096 +pkg syscall (linux-amd64), const BPF_MEM = 96 +pkg syscall (linux-amd64), const BPF_MEMWORDS = 16 +pkg syscall (linux-amd64), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-amd64), const BPF_MISC = 7 +pkg syscall (linux-amd64), const BPF_MSH = 160 +pkg syscall (linux-amd64), const BPF_MUL = 32 +pkg syscall (linux-amd64), const BPF_NEG = 128 +pkg syscall (linux-amd64), const BPF_OR = 64 +pkg syscall (linux-amd64), const BPF_RET = 6 +pkg syscall (linux-amd64), const BPF_RSH = 112 +pkg syscall (linux-amd64), const BPF_ST = 2 +pkg syscall (linux-amd64), const BPF_STX = 3 +pkg syscall (linux-amd64), const BPF_SUB = 16 +pkg syscall (linux-amd64), const BPF_TAX = 0 +pkg syscall (linux-amd64), const BPF_TXA = 128 +pkg syscall (linux-amd64), const BPF_W = 0 +pkg syscall (linux-amd64), const BPF_X = 8 +pkg syscall (linux-amd64), const BRKINT = 2 +pkg syscall (linux-amd64), const CLOCAL = 2048 +pkg syscall (linux-amd64), const CREAD = 128 +pkg syscall (linux-amd64), const CS5 = 0 +pkg syscall (linux-amd64), const CS6 = 16 +pkg syscall (linux-amd64), const CS7 = 32 +pkg syscall (linux-amd64), const CS8 = 48 +pkg syscall (linux-amd64), const CSIZE = 48 +pkg syscall (linux-amd64), const CSTOPB = 64 +pkg syscall (linux-amd64), const DT_BLK = 6 +pkg syscall (linux-amd64), const DT_CHR = 2 +pkg syscall (linux-amd64), const DT_DIR = 4 +pkg syscall (linux-amd64), const DT_FIFO = 1 +pkg syscall (linux-amd64), const DT_LNK = 10 +pkg syscall (linux-amd64), const DT_REG = 8 +pkg syscall (linux-amd64), const DT_SOCK = 12 +pkg syscall (linux-amd64), const DT_UNKNOWN = 0 +pkg syscall (linux-amd64), const DT_WHT = 14 +pkg syscall (linux-amd64), const E2BIG = 7 +pkg syscall (linux-amd64), const EACCES = 13 +pkg syscall (linux-amd64), const EADDRINUSE = 98 +pkg syscall (linux-amd64), const EADDRNOTAVAIL = 99 +pkg syscall (linux-amd64), const EADV = 68 +pkg syscall (linux-amd64), const EAFNOSUPPORT = 97 +pkg syscall (linux-amd64), const EAGAIN = 11 +pkg syscall (linux-amd64), const EALREADY = 114 +pkg syscall (linux-amd64), const EBADE = 52 +pkg syscall (linux-amd64), const EBADF = 9 +pkg syscall (linux-amd64), const EBADFD = 77 +pkg syscall (linux-amd64), const EBADMSG = 74 +pkg syscall (linux-amd64), const EBADR = 53 +pkg syscall (linux-amd64), const EBADRQC = 56 +pkg syscall (linux-amd64), const EBADSLT = 57 +pkg syscall (linux-amd64), const EBFONT = 59 +pkg syscall (linux-amd64), const EBUSY = 16 +pkg syscall (linux-amd64), const ECANCELED = 125 +pkg syscall (linux-amd64), const ECHILD = 10 +pkg syscall (linux-amd64), const ECHO = 8 +pkg syscall (linux-amd64), const ECHOCTL = 512 +pkg syscall (linux-amd64), const ECHOE = 16 +pkg syscall (linux-amd64), const ECHOK = 32 +pkg syscall (linux-amd64), const ECHOKE = 2048 +pkg syscall (linux-amd64), const ECHONL = 64 +pkg syscall (linux-amd64), const ECHOPRT = 1024 +pkg syscall (linux-amd64), const ECHRNG = 44 +pkg syscall (linux-amd64), const ECOMM = 70 +pkg syscall (linux-amd64), const ECONNABORTED = 103 +pkg syscall (linux-amd64), const ECONNREFUSED = 111 +pkg syscall (linux-amd64), const ECONNRESET = 104 +pkg syscall (linux-amd64), const EDEADLK = 35 +pkg syscall (linux-amd64), const EDEADLOCK = 35 +pkg syscall (linux-amd64), const EDESTADDRREQ = 89 +pkg syscall (linux-amd64), const EDOM = 33 +pkg syscall (linux-amd64), const EDOTDOT = 73 +pkg syscall (linux-amd64), const EDQUOT = 122 +pkg syscall (linux-amd64), const EEXIST = 17 +pkg syscall (linux-amd64), const EFAULT = 14 +pkg syscall (linux-amd64), const EFBIG = 27 +pkg syscall (linux-amd64), const EHOSTDOWN = 112 +pkg syscall (linux-amd64), const EHOSTUNREACH = 113 +pkg syscall (linux-amd64), const EIDRM = 43 +pkg syscall (linux-amd64), const EILSEQ = 84 +pkg syscall (linux-amd64), const EINPROGRESS = 115 +pkg syscall (linux-amd64), const EINTR = 4 +pkg syscall (linux-amd64), const EINVAL = 22 +pkg syscall (linux-amd64), const EIO = 5 +pkg syscall (linux-amd64), const EISCONN = 106 +pkg syscall (linux-amd64), const EISDIR = 21 +pkg syscall (linux-amd64), const EISNAM = 120 +pkg syscall (linux-amd64), const EKEYEXPIRED = 127 +pkg syscall (linux-amd64), const EKEYREJECTED = 129 +pkg syscall (linux-amd64), const EKEYREVOKED = 128 +pkg syscall (linux-amd64), const EL2HLT = 51 +pkg syscall (linux-amd64), const EL2NSYNC = 45 +pkg syscall (linux-amd64), const EL3HLT = 46 +pkg syscall (linux-amd64), const EL3RST = 47 +pkg syscall (linux-amd64), const ELIBACC = 79 +pkg syscall (linux-amd64), const ELIBBAD = 80 +pkg syscall (linux-amd64), const ELIBEXEC = 83 +pkg syscall (linux-amd64), const ELIBMAX = 82 +pkg syscall (linux-amd64), const ELIBSCN = 81 +pkg syscall (linux-amd64), const ELNRNG = 48 +pkg syscall (linux-amd64), const ELOOP = 40 +pkg syscall (linux-amd64), const EMEDIUMTYPE = 124 +pkg syscall (linux-amd64), const EMFILE = 24 +pkg syscall (linux-amd64), const EMLINK = 31 +pkg syscall (linux-amd64), const EMSGSIZE = 90 +pkg syscall (linux-amd64), const EMULTIHOP = 72 +pkg syscall (linux-amd64), const ENAMETOOLONG = 36 +pkg syscall (linux-amd64), const ENAVAIL = 119 +pkg syscall (linux-amd64), const ENETDOWN = 100 +pkg syscall (linux-amd64), const ENETRESET = 102 +pkg syscall (linux-amd64), const ENETUNREACH = 101 +pkg syscall (linux-amd64), const ENFILE = 23 +pkg syscall (linux-amd64), const ENOANO = 55 +pkg syscall (linux-amd64), const ENOBUFS = 105 +pkg syscall (linux-amd64), const ENOCSI = 50 +pkg syscall (linux-amd64), const ENODATA = 61 +pkg syscall (linux-amd64), const ENODEV = 19 +pkg syscall (linux-amd64), const ENOEXEC = 8 +pkg syscall (linux-amd64), const ENOKEY = 126 +pkg syscall (linux-amd64), const ENOLCK = 37 +pkg syscall (linux-amd64), const ENOLINK = 67 +pkg syscall (linux-amd64), const ENOMEDIUM = 123 +pkg syscall (linux-amd64), const ENOMEM = 12 +pkg syscall (linux-amd64), const ENOMSG = 42 +pkg syscall (linux-amd64), const ENONET = 64 +pkg syscall (linux-amd64), const ENOPKG = 65 +pkg syscall (linux-amd64), const ENOPROTOOPT = 92 +pkg syscall (linux-amd64), const ENOSPC = 28 +pkg syscall (linux-amd64), const ENOSR = 63 +pkg syscall (linux-amd64), const ENOSTR = 60 +pkg syscall (linux-amd64), const ENOSYS = 38 +pkg syscall (linux-amd64), const ENOTBLK = 15 +pkg syscall (linux-amd64), const ENOTCONN = 107 +pkg syscall (linux-amd64), const ENOTDIR = 20 +pkg syscall (linux-amd64), const ENOTEMPTY = 39 +pkg syscall (linux-amd64), const ENOTNAM = 118 +pkg syscall (linux-amd64), const ENOTRECOVERABLE = 131 +pkg syscall (linux-amd64), const ENOTSOCK = 88 +pkg syscall (linux-amd64), const ENOTSUP = 95 +pkg syscall (linux-amd64), const ENOTTY = 25 +pkg syscall (linux-amd64), const ENOTUNIQ = 76 +pkg syscall (linux-amd64), const ENXIO = 6 +pkg syscall (linux-amd64), const EOPNOTSUPP = 95 +pkg syscall (linux-amd64), const EOVERFLOW = 75 +pkg syscall (linux-amd64), const EOWNERDEAD = 130 +pkg syscall (linux-amd64), const EPERM = 1 +pkg syscall (linux-amd64), const EPFNOSUPPORT = 96 +pkg syscall (linux-amd64), const EPIPE = 32 +pkg syscall (linux-amd64), const EPOLLERR = 8 +pkg syscall (linux-amd64), const EPOLLET = -2147483648 +pkg syscall (linux-amd64), const EPOLLHUP = 16 +pkg syscall (linux-amd64), const EPOLLIN = 1 +pkg syscall (linux-amd64), const EPOLLMSG = 1024 +pkg syscall (linux-amd64), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-amd64), const EPOLLOUT = 4 +pkg syscall (linux-amd64), const EPOLLPRI = 2 +pkg syscall (linux-amd64), const EPOLLRDBAND = 128 +pkg syscall (linux-amd64), const EPOLLRDHUP = 8192 +pkg syscall (linux-amd64), const EPOLLRDNORM = 64 +pkg syscall (linux-amd64), const EPOLLWRBAND = 512 +pkg syscall (linux-amd64), const EPOLLWRNORM = 256 +pkg syscall (linux-amd64), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-amd64), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-amd64), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-amd64), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-amd64), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-amd64), const EPROTO = 71 +pkg syscall (linux-amd64), const EPROTONOSUPPORT = 93 +pkg syscall (linux-amd64), const EPROTOTYPE = 91 +pkg syscall (linux-amd64), const ERANGE = 34 +pkg syscall (linux-amd64), const EREMCHG = 78 +pkg syscall (linux-amd64), const EREMOTE = 66 +pkg syscall (linux-amd64), const EREMOTEIO = 121 +pkg syscall (linux-amd64), const ERESTART = 85 +pkg syscall (linux-amd64), const ERFKILL = 132 +pkg syscall (linux-amd64), const EROFS = 30 +pkg syscall (linux-amd64), const ESHUTDOWN = 108 +pkg syscall (linux-amd64), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-amd64), const ESPIPE = 29 +pkg syscall (linux-amd64), const ESRCH = 3 +pkg syscall (linux-amd64), const ESRMNT = 69 +pkg syscall (linux-amd64), const ESTALE = 116 +pkg syscall (linux-amd64), const ESTRPIPE = 86 +pkg syscall (linux-amd64), const ETH_P_1588 = 35063 +pkg syscall (linux-amd64), const ETH_P_8021Q = 33024 +pkg syscall (linux-amd64), const ETH_P_802_2 = 4 +pkg syscall (linux-amd64), const ETH_P_802_3 = 1 +pkg syscall (linux-amd64), const ETH_P_AARP = 33011 +pkg syscall (linux-amd64), const ETH_P_ALL = 3 +pkg syscall (linux-amd64), const ETH_P_AOE = 34978 +pkg syscall (linux-amd64), const ETH_P_ARCNET = 26 +pkg syscall (linux-amd64), const ETH_P_ARP = 2054 +pkg syscall (linux-amd64), const ETH_P_ATALK = 32923 +pkg syscall (linux-amd64), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-amd64), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-amd64), const ETH_P_AX25 = 2 +pkg syscall (linux-amd64), const ETH_P_BPQ = 2303 +pkg syscall (linux-amd64), const ETH_P_CAIF = 247 +pkg syscall (linux-amd64), const ETH_P_CAN = 12 +pkg syscall (linux-amd64), const ETH_P_CONTROL = 22 +pkg syscall (linux-amd64), const ETH_P_CUST = 24582 +pkg syscall (linux-amd64), const ETH_P_DDCMP = 6 +pkg syscall (linux-amd64), const ETH_P_DEC = 24576 +pkg syscall (linux-amd64), const ETH_P_DIAG = 24581 +pkg syscall (linux-amd64), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-amd64), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-amd64), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-amd64), const ETH_P_DSA = 27 +pkg syscall (linux-amd64), const ETH_P_ECONET = 24 +pkg syscall (linux-amd64), const ETH_P_EDSA = 56026 +pkg syscall (linux-amd64), const ETH_P_FCOE = 35078 +pkg syscall (linux-amd64), const ETH_P_FIP = 35092 +pkg syscall (linux-amd64), const ETH_P_HDLC = 25 +pkg syscall (linux-amd64), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-amd64), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-amd64), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-amd64), const ETH_P_IP = 2048 +pkg syscall (linux-amd64), const ETH_P_IPV6 = 34525 +pkg syscall (linux-amd64), const ETH_P_IPX = 33079 +pkg syscall (linux-amd64), const ETH_P_IRDA = 23 +pkg syscall (linux-amd64), const ETH_P_LAT = 24580 +pkg syscall (linux-amd64), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-amd64), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-amd64), const ETH_P_LOOP = 96 +pkg syscall (linux-amd64), const ETH_P_MOBITEX = 21 +pkg syscall (linux-amd64), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-amd64), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-amd64), const ETH_P_PAE = 34958 +pkg syscall (linux-amd64), const ETH_P_PAUSE = 34824 +pkg syscall (linux-amd64), const ETH_P_PHONET = 245 +pkg syscall (linux-amd64), const ETH_P_PPPTALK = 16 +pkg syscall (linux-amd64), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-amd64), const ETH_P_PPP_MP = 8 +pkg syscall (linux-amd64), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-amd64), const ETH_P_PUP = 512 +pkg syscall (linux-amd64), const ETH_P_PUPAT = 513 +pkg syscall (linux-amd64), const ETH_P_RARP = 32821 +pkg syscall (linux-amd64), const ETH_P_SCA = 24583 +pkg syscall (linux-amd64), const ETH_P_SLOW = 34825 +pkg syscall (linux-amd64), const ETH_P_SNAP = 5 +pkg syscall (linux-amd64), const ETH_P_TEB = 25944 +pkg syscall (linux-amd64), const ETH_P_TIPC = 35018 +pkg syscall (linux-amd64), const ETH_P_TRAILER = 28 +pkg syscall (linux-amd64), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-amd64), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-amd64), const ETH_P_WCCP = 34878 +pkg syscall (linux-amd64), const ETH_P_X25 = 2053 +pkg syscall (linux-amd64), const ETIME = 62 +pkg syscall (linux-amd64), const ETIMEDOUT = 110 +pkg syscall (linux-amd64), const ETOOMANYREFS = 109 +pkg syscall (linux-amd64), const ETXTBSY = 26 +pkg syscall (linux-amd64), const EUCLEAN = 117 +pkg syscall (linux-amd64), const EUNATCH = 49 +pkg syscall (linux-amd64), const EUSERS = 87 +pkg syscall (linux-amd64), const EWOULDBLOCK = 11 +pkg syscall (linux-amd64), const EXDEV = 18 +pkg syscall (linux-amd64), const EXFULL = 54 +pkg syscall (linux-amd64), const FD_CLOEXEC = 1 +pkg syscall (linux-amd64), const FD_SETSIZE = 1024 +pkg syscall (linux-amd64), const FLUSHO = 4096 +pkg syscall (linux-amd64), const F_DUPFD = 0 +pkg syscall (linux-amd64), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-amd64), const F_EXLCK = 4 +pkg syscall (linux-amd64), const F_GETFD = 1 +pkg syscall (linux-amd64), const F_GETFL = 3 +pkg syscall (linux-amd64), const F_GETLEASE = 1025 +pkg syscall (linux-amd64), const F_GETLK = 5 +pkg syscall (linux-amd64), const F_GETLK64 = 5 +pkg syscall (linux-amd64), const F_GETOWN = 9 +pkg syscall (linux-amd64), const F_GETOWN_EX = 16 +pkg syscall (linux-amd64), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-amd64), const F_GETSIG = 11 +pkg syscall (linux-amd64), const F_LOCK = 1 +pkg syscall (linux-amd64), const F_NOTIFY = 1026 +pkg syscall (linux-amd64), const F_OK = 0 +pkg syscall (linux-amd64), const F_RDLCK = 0 +pkg syscall (linux-amd64), const F_SETFD = 2 +pkg syscall (linux-amd64), const F_SETFL = 4 +pkg syscall (linux-amd64), const F_SETLEASE = 1024 +pkg syscall (linux-amd64), const F_SETLK = 6 +pkg syscall (linux-amd64), const F_SETLK64 = 6 +pkg syscall (linux-amd64), const F_SETLKW = 7 +pkg syscall (linux-amd64), const F_SETLKW64 = 7 +pkg syscall (linux-amd64), const F_SETOWN = 8 +pkg syscall (linux-amd64), const F_SETOWN_EX = 15 +pkg syscall (linux-amd64), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-amd64), const F_SETSIG = 10 +pkg syscall (linux-amd64), const F_SHLCK = 8 +pkg syscall (linux-amd64), const F_TEST = 3 +pkg syscall (linux-amd64), const F_TLOCK = 2 +pkg syscall (linux-amd64), const F_ULOCK = 0 +pkg syscall (linux-amd64), const F_UNLCK = 2 +pkg syscall (linux-amd64), const F_WRLCK = 1 +pkg syscall (linux-amd64), const HUPCL = 1024 +pkg syscall (linux-amd64), const ICANON = 2 +pkg syscall (linux-amd64), const ICRNL = 256 +pkg syscall (linux-amd64), const IEXTEN = 32768 +pkg syscall (linux-amd64), const IFA_ADDRESS = 1 +pkg syscall (linux-amd64), const IFA_ANYCAST = 5 +pkg syscall (linux-amd64), const IFA_BROADCAST = 4 +pkg syscall (linux-amd64), const IFA_CACHEINFO = 6 +pkg syscall (linux-amd64), const IFA_F_DADFAILED = 8 +pkg syscall (linux-amd64), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-amd64), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-amd64), const IFA_F_NODAD = 2 +pkg syscall (linux-amd64), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-amd64), const IFA_F_PERMANENT = 128 +pkg syscall (linux-amd64), const IFA_F_SECONDARY = 1 +pkg syscall (linux-amd64), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-amd64), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-amd64), const IFA_LABEL = 3 +pkg syscall (linux-amd64), const IFA_LOCAL = 2 +pkg syscall (linux-amd64), const IFA_MAX = 7 +pkg syscall (linux-amd64), const IFA_MULTICAST = 7 +pkg syscall (linux-amd64), const IFA_UNSPEC = 0 +pkg syscall (linux-amd64), const IFF_ALLMULTI = 512 +pkg syscall (linux-amd64), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-amd64), const IFF_DEBUG = 4 +pkg syscall (linux-amd64), const IFF_DYNAMIC = 32768 +pkg syscall (linux-amd64), const IFF_LOOPBACK = 8 +pkg syscall (linux-amd64), const IFF_MASTER = 1024 +pkg syscall (linux-amd64), const IFF_MULTICAST = 4096 +pkg syscall (linux-amd64), const IFF_NOARP = 128 +pkg syscall (linux-amd64), const IFF_NOTRAILERS = 32 +pkg syscall (linux-amd64), const IFF_NO_PI = 4096 +pkg syscall (linux-amd64), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-amd64), const IFF_POINTOPOINT = 16 +pkg syscall (linux-amd64), const IFF_PORTSEL = 8192 +pkg syscall (linux-amd64), const IFF_PROMISC = 256 +pkg syscall (linux-amd64), const IFF_RUNNING = 64 +pkg syscall (linux-amd64), const IFF_SLAVE = 2048 +pkg syscall (linux-amd64), const IFF_TAP = 2 +pkg syscall (linux-amd64), const IFF_TUN = 1 +pkg syscall (linux-amd64), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-amd64), const IFF_VNET_HDR = 16384 +pkg syscall (linux-amd64), const IFLA_ADDRESS = 1 +pkg syscall (linux-amd64), const IFLA_BROADCAST = 2 +pkg syscall (linux-amd64), const IFLA_COST = 8 +pkg syscall (linux-amd64), const IFLA_IFALIAS = 20 +pkg syscall (linux-amd64), const IFLA_IFNAME = 3 +pkg syscall (linux-amd64), const IFLA_LINK = 5 +pkg syscall (linux-amd64), const IFLA_LINKINFO = 18 +pkg syscall (linux-amd64), const IFLA_LINKMODE = 17 +pkg syscall (linux-amd64), const IFLA_MAP = 14 +pkg syscall (linux-amd64), const IFLA_MASTER = 10 +pkg syscall (linux-amd64), const IFLA_MAX = 29 +pkg syscall (linux-amd64), const IFLA_MTU = 4 +pkg syscall (linux-amd64), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-amd64), const IFLA_OPERSTATE = 16 +pkg syscall (linux-amd64), const IFLA_PRIORITY = 9 +pkg syscall (linux-amd64), const IFLA_PROTINFO = 12 +pkg syscall (linux-amd64), const IFLA_QDISC = 6 +pkg syscall (linux-amd64), const IFLA_STATS = 7 +pkg syscall (linux-amd64), const IFLA_TXQLEN = 13 +pkg syscall (linux-amd64), const IFLA_UNSPEC = 0 +pkg syscall (linux-amd64), const IFLA_WEIGHT = 15 +pkg syscall (linux-amd64), const IFLA_WIRELESS = 11 +pkg syscall (linux-amd64), const IFNAMSIZ = 16 +pkg syscall (linux-amd64), const IGNBRK = 1 +pkg syscall (linux-amd64), const IGNCR = 128 +pkg syscall (linux-amd64), const IGNPAR = 4 +pkg syscall (linux-amd64), const IMAXBEL = 8192 +pkg syscall (linux-amd64), const INLCR = 64 +pkg syscall (linux-amd64), const INPCK = 16 +pkg syscall (linux-amd64), const IN_ACCESS = 1 +pkg syscall (linux-amd64), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-amd64), const IN_ATTRIB = 4 +pkg syscall (linux-amd64), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-amd64), const IN_CLASSA_MAX = 128 +pkg syscall (linux-amd64), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-amd64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-amd64), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-amd64), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-amd64), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-amd64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-amd64), const IN_CLASSC_HOST = 255 +pkg syscall (linux-amd64), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-amd64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-amd64), const IN_CLOEXEC = 524288 +pkg syscall (linux-amd64), const IN_CLOSE = 24 +pkg syscall (linux-amd64), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-amd64), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-amd64), const IN_CREATE = 256 +pkg syscall (linux-amd64), const IN_DELETE = 512 +pkg syscall (linux-amd64), const IN_DELETE_SELF = 1024 +pkg syscall (linux-amd64), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-amd64), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-amd64), const IN_IGNORED = 32768 +pkg syscall (linux-amd64), const IN_ISDIR = 1073741824 +pkg syscall (linux-amd64), const IN_LOOPBACKNET = 127 +pkg syscall (linux-amd64), const IN_MASK_ADD = 536870912 +pkg syscall (linux-amd64), const IN_MODIFY = 2 +pkg syscall (linux-amd64), const IN_MOVE = 192 +pkg syscall (linux-amd64), const IN_MOVED_FROM = 64 +pkg syscall (linux-amd64), const IN_MOVED_TO = 128 +pkg syscall (linux-amd64), const IN_MOVE_SELF = 2048 +pkg syscall (linux-amd64), const IN_NONBLOCK = 2048 +pkg syscall (linux-amd64), const IN_ONESHOT = 2147483648 +pkg syscall (linux-amd64), const IN_ONLYDIR = 16777216 +pkg syscall (linux-amd64), const IN_OPEN = 32 +pkg syscall (linux-amd64), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-amd64), const IN_UNMOUNT = 8192 +pkg syscall (linux-amd64), const IPPROTO_AH = 51 +pkg syscall (linux-amd64), const IPPROTO_COMP = 108 +pkg syscall (linux-amd64), const IPPROTO_DCCP = 33 +pkg syscall (linux-amd64), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-amd64), const IPPROTO_EGP = 8 +pkg syscall (linux-amd64), const IPPROTO_ENCAP = 98 +pkg syscall (linux-amd64), const IPPROTO_ESP = 50 +pkg syscall (linux-amd64), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-amd64), const IPPROTO_GRE = 47 +pkg syscall (linux-amd64), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-amd64), const IPPROTO_ICMP = 1 +pkg syscall (linux-amd64), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-amd64), const IPPROTO_IDP = 22 +pkg syscall (linux-amd64), const IPPROTO_IGMP = 2 +pkg syscall (linux-amd64), const IPPROTO_IPIP = 4 +pkg syscall (linux-amd64), const IPPROTO_MTP = 92 +pkg syscall (linux-amd64), const IPPROTO_NONE = 59 +pkg syscall (linux-amd64), const IPPROTO_PIM = 103 +pkg syscall (linux-amd64), const IPPROTO_PUP = 12 +pkg syscall (linux-amd64), const IPPROTO_RAW = 255 +pkg syscall (linux-amd64), const IPPROTO_ROUTING = 43 +pkg syscall (linux-amd64), const IPPROTO_RSVP = 46 +pkg syscall (linux-amd64), const IPPROTO_SCTP = 132 +pkg syscall (linux-amd64), const IPPROTO_TP = 29 +pkg syscall (linux-amd64), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-amd64), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-amd64), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-amd64), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-amd64), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-amd64), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-amd64), const IPV6_2292RTHDR = 5 +pkg syscall (linux-amd64), const IPV6_ADDRFORM = 1 +pkg syscall (linux-amd64), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-amd64), const IPV6_AUTHHDR = 10 +pkg syscall (linux-amd64), const IPV6_CHECKSUM = 7 +pkg syscall (linux-amd64), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-amd64), const IPV6_DSTOPTS = 59 +pkg syscall (linux-amd64), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-amd64), const IPV6_HOPOPTS = 54 +pkg syscall (linux-amd64), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-amd64), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-amd64), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-amd64), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-amd64), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-amd64), const IPV6_MTU = 24 +pkg syscall (linux-amd64), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-amd64), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-amd64), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-amd64), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-amd64), const IPV6_NEXTHOP = 9 +pkg syscall (linux-amd64), const IPV6_PKTINFO = 50 +pkg syscall (linux-amd64), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-amd64), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-amd64), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-amd64), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-amd64), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-amd64), const IPV6_RECVERR = 25 +pkg syscall (linux-amd64), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-amd64), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-amd64), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-amd64), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-amd64), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-amd64), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-amd64), const IPV6_RTHDR = 57 +pkg syscall (linux-amd64), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-amd64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-amd64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-amd64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-amd64), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-amd64), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-amd64), const IPV6_TCLASS = 67 +pkg syscall (linux-amd64), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-amd64), const IPV6_V6ONLY = 26 +pkg syscall (linux-amd64), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-amd64), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-amd64), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-amd64), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-amd64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-amd64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-amd64), const IP_DF = 16384 +pkg syscall (linux-amd64), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-amd64), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-amd64), const IP_FREEBIND = 15 +pkg syscall (linux-amd64), const IP_HDRINCL = 3 +pkg syscall (linux-amd64), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-amd64), const IP_MAXPACKET = 65535 +pkg syscall (linux-amd64), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-amd64), const IP_MF = 8192 +pkg syscall (linux-amd64), const IP_MINTTL = 21 +pkg syscall (linux-amd64), const IP_MSFILTER = 41 +pkg syscall (linux-amd64), const IP_MSS = 576 +pkg syscall (linux-amd64), const IP_MTU = 14 +pkg syscall (linux-amd64), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-amd64), const IP_MULTICAST_IF = 32 +pkg syscall (linux-amd64), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-amd64), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-amd64), const IP_OFFMASK = 8191 +pkg syscall (linux-amd64), const IP_OPTIONS = 4 +pkg syscall (linux-amd64), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-amd64), const IP_PASSSEC = 18 +pkg syscall (linux-amd64), const IP_PKTINFO = 8 +pkg syscall (linux-amd64), const IP_PKTOPTIONS = 9 +pkg syscall (linux-amd64), const IP_PMTUDISC = 10 +pkg syscall (linux-amd64), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-amd64), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-amd64), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-amd64), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-amd64), const IP_RECVERR = 11 +pkg syscall (linux-amd64), const IP_RECVOPTS = 6 +pkg syscall (linux-amd64), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-amd64), const IP_RECVRETOPTS = 7 +pkg syscall (linux-amd64), const IP_RECVTOS = 13 +pkg syscall (linux-amd64), const IP_RECVTTL = 12 +pkg syscall (linux-amd64), const IP_RETOPTS = 7 +pkg syscall (linux-amd64), const IP_RF = 32768 +pkg syscall (linux-amd64), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-amd64), const IP_TOS = 1 +pkg syscall (linux-amd64), const IP_TRANSPARENT = 19 +pkg syscall (linux-amd64), const IP_TTL = 2 +pkg syscall (linux-amd64), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-amd64), const IP_XFRM_POLICY = 17 +pkg syscall (linux-amd64), const ISIG = 1 +pkg syscall (linux-amd64), const ISTRIP = 32 +pkg syscall (linux-amd64), const IUCLC = 512 +pkg syscall (linux-amd64), const IUTF8 = 16384 +pkg syscall (linux-amd64), const IXANY = 2048 +pkg syscall (linux-amd64), const IXOFF = 4096 +pkg syscall (linux-amd64), const IXON = 1024 +pkg syscall (linux-amd64), const ImplementsGetwd = true +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-amd64), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-amd64), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-amd64), const LOCK_EX = 2 +pkg syscall (linux-amd64), const LOCK_NB = 4 +pkg syscall (linux-amd64), const LOCK_SH = 1 +pkg syscall (linux-amd64), const LOCK_UN = 8 +pkg syscall (linux-amd64), const MADV_DOFORK = 11 +pkg syscall (linux-amd64), const MADV_DONTFORK = 10 +pkg syscall (linux-amd64), const MADV_DONTNEED = 4 +pkg syscall (linux-amd64), const MADV_HUGEPAGE = 14 +pkg syscall (linux-amd64), const MADV_HWPOISON = 100 +pkg syscall (linux-amd64), const MADV_MERGEABLE = 12 +pkg syscall (linux-amd64), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-amd64), const MADV_NORMAL = 0 +pkg syscall (linux-amd64), const MADV_RANDOM = 1 +pkg syscall (linux-amd64), const MADV_REMOVE = 9 +pkg syscall (linux-amd64), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-amd64), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-amd64), const MADV_WILLNEED = 3 +pkg syscall (linux-amd64), const MAP_32BIT = 64 +pkg syscall (linux-amd64), const MAP_ANON = 32 +pkg syscall (linux-amd64), const MAP_ANONYMOUS = 32 +pkg syscall (linux-amd64), const MAP_DENYWRITE = 2048 +pkg syscall (linux-amd64), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-amd64), const MAP_FILE = 0 +pkg syscall (linux-amd64), const MAP_FIXED = 16 +pkg syscall (linux-amd64), const MAP_GROWSDOWN = 256 +pkg syscall (linux-amd64), const MAP_HUGETLB = 262144 +pkg syscall (linux-amd64), const MAP_LOCKED = 8192 +pkg syscall (linux-amd64), const MAP_NONBLOCK = 65536 +pkg syscall (linux-amd64), const MAP_NORESERVE = 16384 +pkg syscall (linux-amd64), const MAP_POPULATE = 32768 +pkg syscall (linux-amd64), const MAP_PRIVATE = 2 +pkg syscall (linux-amd64), const MAP_SHARED = 1 +pkg syscall (linux-amd64), const MAP_STACK = 131072 +pkg syscall (linux-amd64), const MAP_TYPE = 15 +pkg syscall (linux-amd64), const MCL_CURRENT = 1 +pkg syscall (linux-amd64), const MCL_FUTURE = 2 +pkg syscall (linux-amd64), const MNT_DETACH = 2 +pkg syscall (linux-amd64), const MNT_EXPIRE = 4 +pkg syscall (linux-amd64), const MNT_FORCE = 1 +pkg syscall (linux-amd64), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-amd64), const MSG_CONFIRM = 2048 +pkg syscall (linux-amd64), const MSG_CTRUNC = 8 +pkg syscall (linux-amd64), const MSG_DONTROUTE = 4 +pkg syscall (linux-amd64), const MSG_DONTWAIT = 64 +pkg syscall (linux-amd64), const MSG_EOR = 128 +pkg syscall (linux-amd64), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-amd64), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-amd64), const MSG_FASTOPEN ideal-int +pkg syscall (linux-amd64), const MSG_FIN = 512 +pkg syscall (linux-amd64), const MSG_MORE = 32768 +pkg syscall (linux-amd64), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-amd64), const MSG_OOB = 1 +pkg syscall (linux-amd64), const MSG_PEEK = 2 +pkg syscall (linux-amd64), const MSG_PROXY = 16 +pkg syscall (linux-amd64), const MSG_RST = 4096 +pkg syscall (linux-amd64), const MSG_SYN = 1024 +pkg syscall (linux-amd64), const MSG_TRUNC = 32 +pkg syscall (linux-amd64), const MSG_TRYHARD = 4 +pkg syscall (linux-amd64), const MSG_WAITALL = 256 +pkg syscall (linux-amd64), const MSG_WAITFORONE = 65536 +pkg syscall (linux-amd64), const MS_ACTIVE = 1073741824 +pkg syscall (linux-amd64), const MS_ASYNC = 1 +pkg syscall (linux-amd64), const MS_BIND = 4096 +pkg syscall (linux-amd64), const MS_DIRSYNC = 128 +pkg syscall (linux-amd64), const MS_INVALIDATE = 2 +pkg syscall (linux-amd64), const MS_I_VERSION = 8388608 +pkg syscall (linux-amd64), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-amd64), const MS_MANDLOCK = 64 +pkg syscall (linux-amd64), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-amd64), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-amd64), const MS_MOVE = 8192 +pkg syscall (linux-amd64), const MS_NOATIME = 1024 +pkg syscall (linux-amd64), const MS_NODEV = 4 +pkg syscall (linux-amd64), const MS_NODIRATIME = 2048 +pkg syscall (linux-amd64), const MS_NOEXEC = 8 +pkg syscall (linux-amd64), const MS_NOSUID = 2 +pkg syscall (linux-amd64), const MS_NOUSER = -2147483648 +pkg syscall (linux-amd64), const MS_POSIXACL = 65536 +pkg syscall (linux-amd64), const MS_PRIVATE = 262144 +pkg syscall (linux-amd64), const MS_RDONLY = 1 +pkg syscall (linux-amd64), const MS_REC = 16384 +pkg syscall (linux-amd64), const MS_RELATIME = 2097152 +pkg syscall (linux-amd64), const MS_REMOUNT = 32 +pkg syscall (linux-amd64), const MS_RMT_MASK = 8388689 +pkg syscall (linux-amd64), const MS_SHARED = 1048576 +pkg syscall (linux-amd64), const MS_SILENT = 32768 +pkg syscall (linux-amd64), const MS_SLAVE = 524288 +pkg syscall (linux-amd64), const MS_STRICTATIME = 16777216 +pkg syscall (linux-amd64), const MS_SYNC = 4 +pkg syscall (linux-amd64), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-amd64), const MS_UNBINDABLE = 131072 +pkg syscall (linux-amd64), const NAME_MAX = 255 +pkg syscall (linux-amd64), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-amd64), const NETLINK_AUDIT = 9 +pkg syscall (linux-amd64), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-amd64), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-amd64), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-amd64), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-amd64), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-amd64), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-amd64), const NETLINK_FIREWALL = 3 +pkg syscall (linux-amd64), const NETLINK_GENERIC = 16 +pkg syscall (linux-amd64), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-amd64), const NETLINK_IP6_FW = 13 +pkg syscall (linux-amd64), const NETLINK_ISCSI = 8 +pkg syscall (linux-amd64), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-amd64), const NETLINK_NETFILTER = 12 +pkg syscall (linux-amd64), const NETLINK_NFLOG = 5 +pkg syscall (linux-amd64), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-amd64), const NETLINK_PKTINFO = 3 +pkg syscall (linux-amd64), const NETLINK_ROUTE = 0 +pkg syscall (linux-amd64), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-amd64), const NETLINK_SELINUX = 7 +pkg syscall (linux-amd64), const NETLINK_UNUSED = 1 +pkg syscall (linux-amd64), const NETLINK_USERSOCK = 2 +pkg syscall (linux-amd64), const NETLINK_XFRM = 6 +pkg syscall (linux-amd64), const NLA_ALIGNTO = 4 +pkg syscall (linux-amd64), const NLA_F_NESTED = 32768 +pkg syscall (linux-amd64), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-amd64), const NLA_HDRLEN = 4 +pkg syscall (linux-amd64), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-amd64), const NLMSG_DONE = 3 +pkg syscall (linux-amd64), const NLMSG_ERROR = 2 +pkg syscall (linux-amd64), const NLMSG_HDRLEN = 16 +pkg syscall (linux-amd64), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-amd64), const NLMSG_NOOP = 1 +pkg syscall (linux-amd64), const NLMSG_OVERRUN = 4 +pkg syscall (linux-amd64), const NLM_F_ACK = 4 +pkg syscall (linux-amd64), const NLM_F_APPEND = 2048 +pkg syscall (linux-amd64), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-amd64), const NLM_F_CREATE = 1024 +pkg syscall (linux-amd64), const NLM_F_DUMP = 768 +pkg syscall (linux-amd64), const NLM_F_ECHO = 8 +pkg syscall (linux-amd64), const NLM_F_EXCL = 512 +pkg syscall (linux-amd64), const NLM_F_MATCH = 512 +pkg syscall (linux-amd64), const NLM_F_MULTI = 2 +pkg syscall (linux-amd64), const NLM_F_REPLACE = 256 +pkg syscall (linux-amd64), const NLM_F_REQUEST = 1 +pkg syscall (linux-amd64), const NLM_F_ROOT = 256 +pkg syscall (linux-amd64), const NOFLSH = 128 +pkg syscall (linux-amd64), const OCRNL = 8 +pkg syscall (linux-amd64), const OFDEL = 128 +pkg syscall (linux-amd64), const OFILL = 64 +pkg syscall (linux-amd64), const OLCUC = 2 +pkg syscall (linux-amd64), const ONLCR = 4 +pkg syscall (linux-amd64), const ONLRET = 32 +pkg syscall (linux-amd64), const ONOCR = 16 +pkg syscall (linux-amd64), const OPOST = 1 +pkg syscall (linux-amd64), const O_ACCMODE = 3 +pkg syscall (linux-amd64), const O_APPEND = 1024 +pkg syscall (linux-amd64), const O_ASYNC = 8192 +pkg syscall (linux-amd64), const O_CLOEXEC = 524288 +pkg syscall (linux-amd64), const O_CREAT = 64 +pkg syscall (linux-amd64), const O_DIRECT = 16384 +pkg syscall (linux-amd64), const O_DIRECTORY = 65536 +pkg syscall (linux-amd64), const O_DSYNC = 4096 +pkg syscall (linux-amd64), const O_EXCL = 128 +pkg syscall (linux-amd64), const O_FSYNC = 1052672 +pkg syscall (linux-amd64), const O_LARGEFILE = 0 +pkg syscall (linux-amd64), const O_NDELAY = 2048 +pkg syscall (linux-amd64), const O_NOATIME = 262144 +pkg syscall (linux-amd64), const O_NOCTTY = 256 +pkg syscall (linux-amd64), const O_NOFOLLOW = 131072 +pkg syscall (linux-amd64), const O_NONBLOCK = 2048 +pkg syscall (linux-amd64), const O_RSYNC = 1052672 +pkg syscall (linux-amd64), const O_SYNC = 1052672 +pkg syscall (linux-amd64), const O_TRUNC = 512 +pkg syscall (linux-amd64), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-amd64), const PACKET_BROADCAST = 1 +pkg syscall (linux-amd64), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-amd64), const PACKET_FASTROUTE = 6 +pkg syscall (linux-amd64), const PACKET_HOST = 0 +pkg syscall (linux-amd64), const PACKET_LOOPBACK = 5 +pkg syscall (linux-amd64), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-amd64), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-amd64), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-amd64), const PACKET_MULTICAST = 2 +pkg syscall (linux-amd64), const PACKET_OTHERHOST = 3 +pkg syscall (linux-amd64), const PACKET_OUTGOING = 4 +pkg syscall (linux-amd64), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-amd64), const PACKET_RX_RING = 5 +pkg syscall (linux-amd64), const PACKET_STATISTICS = 6 +pkg syscall (linux-amd64), const PARENB = 256 +pkg syscall (linux-amd64), const PARMRK = 8 +pkg syscall (linux-amd64), const PARODD = 512 +pkg syscall (linux-amd64), const PENDIN = 16384 +pkg syscall (linux-amd64), const PROT_EXEC = 4 +pkg syscall (linux-amd64), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-amd64), const PROT_GROWSUP = 33554432 +pkg syscall (linux-amd64), const PROT_NONE = 0 +pkg syscall (linux-amd64), const PROT_READ = 1 +pkg syscall (linux-amd64), const PROT_WRITE = 2 +pkg syscall (linux-amd64), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-amd64), const PR_CAPBSET_READ = 23 +pkg syscall (linux-amd64), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-amd64), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-amd64), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-amd64), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-amd64), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-amd64), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-amd64), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-amd64), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-amd64), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-amd64), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-amd64), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-amd64), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-amd64), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-amd64), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-amd64), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-amd64), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-amd64), const PR_GET_ENDIAN = 19 +pkg syscall (linux-amd64), const PR_GET_FPEMU = 9 +pkg syscall (linux-amd64), const PR_GET_FPEXC = 11 +pkg syscall (linux-amd64), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-amd64), const PR_GET_NAME = 16 +pkg syscall (linux-amd64), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-amd64), const PR_GET_SECCOMP = 21 +pkg syscall (linux-amd64), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-amd64), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-amd64), const PR_GET_TIMING = 13 +pkg syscall (linux-amd64), const PR_GET_TSC = 25 +pkg syscall (linux-amd64), const PR_GET_UNALIGN = 5 +pkg syscall (linux-amd64), const PR_MCE_KILL = 33 +pkg syscall (linux-amd64), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-amd64), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-amd64), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-amd64), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-amd64), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-amd64), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-amd64), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-amd64), const PR_SET_ENDIAN = 20 +pkg syscall (linux-amd64), const PR_SET_FPEMU = 10 +pkg syscall (linux-amd64), const PR_SET_FPEXC = 12 +pkg syscall (linux-amd64), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-amd64), const PR_SET_NAME = 15 +pkg syscall (linux-amd64), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-amd64), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-amd64), const PR_SET_SECCOMP = 22 +pkg syscall (linux-amd64), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-amd64), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-amd64), const PR_SET_TIMING = 14 +pkg syscall (linux-amd64), const PR_SET_TSC = 26 +pkg syscall (linux-amd64), const PR_SET_UNALIGN = 6 +pkg syscall (linux-amd64), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-amd64), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-amd64), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-amd64), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-amd64), const PR_TSC_ENABLE = 1 +pkg syscall (linux-amd64), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-amd64), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-amd64), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-amd64), const PTRACE_ARCH_PRCTL = 30 +pkg syscall (linux-amd64), const PTRACE_ATTACH = 16 +pkg syscall (linux-amd64), const PTRACE_CONT = 7 +pkg syscall (linux-amd64), const PTRACE_DETACH = 17 +pkg syscall (linux-amd64), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-amd64), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-amd64), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-amd64), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-amd64), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-amd64), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-amd64), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-amd64), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-amd64), const PTRACE_GETFPXREGS = 18 +pkg syscall (linux-amd64), const PTRACE_GETREGS = 12 +pkg syscall (linux-amd64), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-amd64), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-amd64), const PTRACE_GET_THREAD_AREA = 25 +pkg syscall (linux-amd64), const PTRACE_KILL = 8 +pkg syscall (linux-amd64), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-amd64), const PTRACE_O_MASK = 127 +pkg syscall (linux-amd64), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-amd64), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-amd64), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-amd64), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-amd64), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-amd64), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-amd64), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-amd64), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-amd64), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-amd64), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-amd64), const PTRACE_POKEDATA = 5 +pkg syscall (linux-amd64), const PTRACE_POKETEXT = 4 +pkg syscall (linux-amd64), const PTRACE_POKEUSR = 6 +pkg syscall (linux-amd64), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-amd64), const PTRACE_SETFPXREGS = 19 +pkg syscall (linux-amd64), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-amd64), const PTRACE_SETREGS = 13 +pkg syscall (linux-amd64), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-amd64), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-amd64), const PTRACE_SET_THREAD_AREA = 26 +pkg syscall (linux-amd64), const PTRACE_SINGLEBLOCK = 33 +pkg syscall (linux-amd64), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-amd64), const PTRACE_SYSCALL = 24 +pkg syscall (linux-amd64), const PTRACE_SYSEMU = 31 +pkg syscall (linux-amd64), const PTRACE_SYSEMU_SINGLESTEP = 32 +pkg syscall (linux-amd64), const PTRACE_TRACEME = 0 +pkg syscall (linux-amd64), const PathMax = 4096 +pkg syscall (linux-amd64), const RLIMIT_AS = 9 +pkg syscall (linux-amd64), const RLIMIT_CORE = 4 +pkg syscall (linux-amd64), const RLIMIT_CPU = 0 +pkg syscall (linux-amd64), const RLIMIT_DATA = 2 +pkg syscall (linux-amd64), const RLIMIT_FSIZE = 1 +pkg syscall (linux-amd64), const RLIMIT_NOFILE = 7 +pkg syscall (linux-amd64), const RLIMIT_STACK = 3 +pkg syscall (linux-amd64), const RLIM_INFINITY = -1 +pkg syscall (linux-amd64), const RTAX_ADVMSS = 8 +pkg syscall (linux-amd64), const RTAX_CWND = 7 +pkg syscall (linux-amd64), const RTAX_FEATURES = 12 +pkg syscall (linux-amd64), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-amd64), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-amd64), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-amd64), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-amd64), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-amd64), const RTAX_INITCWND = 11 +pkg syscall (linux-amd64), const RTAX_INITRWND = 14 +pkg syscall (linux-amd64), const RTAX_LOCK = 1 +pkg syscall (linux-amd64), const RTAX_MAX = 14 +pkg syscall (linux-amd64), const RTAX_MTU = 2 +pkg syscall (linux-amd64), const RTAX_REORDERING = 9 +pkg syscall (linux-amd64), const RTAX_RTO_MIN = 13 +pkg syscall (linux-amd64), const RTAX_RTT = 4 +pkg syscall (linux-amd64), const RTAX_RTTVAR = 5 +pkg syscall (linux-amd64), const RTAX_SSTHRESH = 6 +pkg syscall (linux-amd64), const RTAX_UNSPEC = 0 +pkg syscall (linux-amd64), const RTAX_WINDOW = 3 +pkg syscall (linux-amd64), const RTA_ALIGNTO = 4 +pkg syscall (linux-amd64), const RTA_CACHEINFO = 12 +pkg syscall (linux-amd64), const RTA_DST = 1 +pkg syscall (linux-amd64), const RTA_FLOW = 11 +pkg syscall (linux-amd64), const RTA_GATEWAY = 5 +pkg syscall (linux-amd64), const RTA_IIF = 3 +pkg syscall (linux-amd64), const RTA_MAX = 16 +pkg syscall (linux-amd64), const RTA_METRICS = 8 +pkg syscall (linux-amd64), const RTA_MULTIPATH = 9 +pkg syscall (linux-amd64), const RTA_OIF = 4 +pkg syscall (linux-amd64), const RTA_PREFSRC = 7 +pkg syscall (linux-amd64), const RTA_PRIORITY = 6 +pkg syscall (linux-amd64), const RTA_SRC = 2 +pkg syscall (linux-amd64), const RTA_TABLE = 15 +pkg syscall (linux-amd64), const RTA_UNSPEC = 0 +pkg syscall (linux-amd64), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-amd64), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-amd64), const RTCF_LOG = 33554432 +pkg syscall (linux-amd64), const RTCF_MASQ = 4194304 +pkg syscall (linux-amd64), const RTCF_NAT = 8388608 +pkg syscall (linux-amd64), const RTCF_VALVE = 2097152 +pkg syscall (linux-amd64), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-amd64), const RTF_ADDRCONF = 262144 +pkg syscall (linux-amd64), const RTF_ALLONLINK = 131072 +pkg syscall (linux-amd64), const RTF_BROADCAST = 268435456 +pkg syscall (linux-amd64), const RTF_CACHE = 16777216 +pkg syscall (linux-amd64), const RTF_DEFAULT = 65536 +pkg syscall (linux-amd64), const RTF_DYNAMIC = 16 +pkg syscall (linux-amd64), const RTF_FLOW = 33554432 +pkg syscall (linux-amd64), const RTF_GATEWAY = 2 +pkg syscall (linux-amd64), const RTF_HOST = 4 +pkg syscall (linux-amd64), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-amd64), const RTF_IRTT = 256 +pkg syscall (linux-amd64), const RTF_LINKRT = 1048576 +pkg syscall (linux-amd64), const RTF_LOCAL = 2147483648 +pkg syscall (linux-amd64), const RTF_MODIFIED = 32 +pkg syscall (linux-amd64), const RTF_MSS = 64 +pkg syscall (linux-amd64), const RTF_MTU = 64 +pkg syscall (linux-amd64), const RTF_MULTICAST = 536870912 +pkg syscall (linux-amd64), const RTF_NAT = 134217728 +pkg syscall (linux-amd64), const RTF_NOFORWARD = 4096 +pkg syscall (linux-amd64), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-amd64), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-amd64), const RTF_POLICY = 67108864 +pkg syscall (linux-amd64), const RTF_REINSTATE = 8 +pkg syscall (linux-amd64), const RTF_REJECT = 512 +pkg syscall (linux-amd64), const RTF_STATIC = 1024 +pkg syscall (linux-amd64), const RTF_THROW = 8192 +pkg syscall (linux-amd64), const RTF_UP = 1 +pkg syscall (linux-amd64), const RTF_WINDOW = 128 +pkg syscall (linux-amd64), const RTF_XRESOLVE = 2048 +pkg syscall (linux-amd64), const RTM_BASE = 16 +pkg syscall (linux-amd64), const RTM_DELACTION = 49 +pkg syscall (linux-amd64), const RTM_DELADDR = 21 +pkg syscall (linux-amd64), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-amd64), const RTM_DELLINK = 17 +pkg syscall (linux-amd64), const RTM_DELNEIGH = 29 +pkg syscall (linux-amd64), const RTM_DELQDISC = 37 +pkg syscall (linux-amd64), const RTM_DELROUTE = 25 +pkg syscall (linux-amd64), const RTM_DELRULE = 33 +pkg syscall (linux-amd64), const RTM_DELTCLASS = 41 +pkg syscall (linux-amd64), const RTM_DELTFILTER = 45 +pkg syscall (linux-amd64), const RTM_F_CLONED = 512 +pkg syscall (linux-amd64), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-amd64), const RTM_F_NOTIFY = 256 +pkg syscall (linux-amd64), const RTM_F_PREFIX = 2048 +pkg syscall (linux-amd64), const RTM_GETACTION = 50 +pkg syscall (linux-amd64), const RTM_GETADDR = 22 +pkg syscall (linux-amd64), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-amd64), const RTM_GETANYCAST = 62 +pkg syscall (linux-amd64), const RTM_GETDCB = 78 +pkg syscall (linux-amd64), const RTM_GETLINK = 18 +pkg syscall (linux-amd64), const RTM_GETMULTICAST = 58 +pkg syscall (linux-amd64), const RTM_GETNEIGH = 30 +pkg syscall (linux-amd64), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-amd64), const RTM_GETQDISC = 38 +pkg syscall (linux-amd64), const RTM_GETROUTE = 26 +pkg syscall (linux-amd64), const RTM_GETRULE = 34 +pkg syscall (linux-amd64), const RTM_GETTCLASS = 42 +pkg syscall (linux-amd64), const RTM_GETTFILTER = 46 +pkg syscall (linux-amd64), const RTM_MAX = 79 +pkg syscall (linux-amd64), const RTM_NEWACTION = 48 +pkg syscall (linux-amd64), const RTM_NEWADDR = 20 +pkg syscall (linux-amd64), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-amd64), const RTM_NEWLINK = 16 +pkg syscall (linux-amd64), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-amd64), const RTM_NEWNEIGH = 28 +pkg syscall (linux-amd64), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-amd64), const RTM_NEWPREFIX = 52 +pkg syscall (linux-amd64), const RTM_NEWQDISC = 36 +pkg syscall (linux-amd64), const RTM_NEWROUTE = 24 +pkg syscall (linux-amd64), const RTM_NEWRULE = 32 +pkg syscall (linux-amd64), const RTM_NEWTCLASS = 40 +pkg syscall (linux-amd64), const RTM_NEWTFILTER = 44 +pkg syscall (linux-amd64), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-amd64), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-amd64), const RTM_SETDCB = 79 +pkg syscall (linux-amd64), const RTM_SETLINK = 19 +pkg syscall (linux-amd64), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-amd64), const RTNH_ALIGNTO = 4 +pkg syscall (linux-amd64), const RTNH_F_DEAD = 1 +pkg syscall (linux-amd64), const RTNH_F_ONLINK = 4 +pkg syscall (linux-amd64), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-amd64), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-amd64), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-amd64), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-amd64), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-amd64), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-amd64), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_LINK = 1 +pkg syscall (linux-amd64), const RTNLGRP_LINK ideal-int +pkg syscall (linux-amd64), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-amd64), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-amd64), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-amd64), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-amd64), const RTNLGRP_NONE = 0 +pkg syscall (linux-amd64), const RTNLGRP_NONE ideal-int +pkg syscall (linux-amd64), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-amd64), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-amd64), const RTNLGRP_TC = 4 +pkg syscall (linux-amd64), const RTNLGRP_TC ideal-int +pkg syscall (linux-amd64), const RTN_ANYCAST = 4 +pkg syscall (linux-amd64), const RTN_BLACKHOLE = 6 +pkg syscall (linux-amd64), const RTN_BROADCAST = 3 +pkg syscall (linux-amd64), const RTN_LOCAL = 2 +pkg syscall (linux-amd64), const RTN_MAX = 11 +pkg syscall (linux-amd64), const RTN_MULTICAST = 5 +pkg syscall (linux-amd64), const RTN_NAT = 10 +pkg syscall (linux-amd64), const RTN_PROHIBIT = 8 +pkg syscall (linux-amd64), const RTN_THROW = 9 +pkg syscall (linux-amd64), const RTN_UNICAST = 1 +pkg syscall (linux-amd64), const RTN_UNREACHABLE = 7 +pkg syscall (linux-amd64), const RTN_UNSPEC = 0 +pkg syscall (linux-amd64), const RTN_XRESOLVE = 11 +pkg syscall (linux-amd64), const RTPROT_BIRD = 12 +pkg syscall (linux-amd64), const RTPROT_BOOT = 3 +pkg syscall (linux-amd64), const RTPROT_DHCP = 16 +pkg syscall (linux-amd64), const RTPROT_DNROUTED = 13 +pkg syscall (linux-amd64), const RTPROT_GATED = 8 +pkg syscall (linux-amd64), const RTPROT_KERNEL = 2 +pkg syscall (linux-amd64), const RTPROT_MRT = 10 +pkg syscall (linux-amd64), const RTPROT_NTK = 15 +pkg syscall (linux-amd64), const RTPROT_RA = 9 +pkg syscall (linux-amd64), const RTPROT_REDIRECT = 1 +pkg syscall (linux-amd64), const RTPROT_STATIC = 4 +pkg syscall (linux-amd64), const RTPROT_UNSPEC = 0 +pkg syscall (linux-amd64), const RTPROT_XORP = 14 +pkg syscall (linux-amd64), const RTPROT_ZEBRA = 11 +pkg syscall (linux-amd64), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-amd64), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-amd64), const RT_CLASS_MAIN = 254 +pkg syscall (linux-amd64), const RT_CLASS_MAX = 255 +pkg syscall (linux-amd64), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-amd64), const RT_SCOPE_HOST = 254 +pkg syscall (linux-amd64), const RT_SCOPE_LINK = 253 +pkg syscall (linux-amd64), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-amd64), const RT_SCOPE_SITE = 200 +pkg syscall (linux-amd64), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-amd64), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-amd64), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-amd64), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-amd64), const RT_TABLE_MAIN = 254 +pkg syscall (linux-amd64), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-amd64), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-amd64), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-amd64), const RUSAGE_SELF = 0 +pkg syscall (linux-amd64), const RUSAGE_THREAD = 1 +pkg syscall (linux-amd64), const SCM_CREDENTIALS = 2 +pkg syscall (linux-amd64), const SCM_RIGHTS = 1 +pkg syscall (linux-amd64), const SCM_TIMESTAMP = 29 +pkg syscall (linux-amd64), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-amd64), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-amd64), const SIGBUS = 7 +pkg syscall (linux-amd64), const SIGCHLD = 17 +pkg syscall (linux-amd64), const SIGCLD = 17 +pkg syscall (linux-amd64), const SIGCONT = 18 +pkg syscall (linux-amd64), const SIGIO = 29 +pkg syscall (linux-amd64), const SIGIOT = 6 +pkg syscall (linux-amd64), const SIGPOLL = 29 +pkg syscall (linux-amd64), const SIGPROF = 27 +pkg syscall (linux-amd64), const SIGPWR = 30 +pkg syscall (linux-amd64), const SIGSTKFLT = 16 +pkg syscall (linux-amd64), const SIGSTOP = 19 +pkg syscall (linux-amd64), const SIGSYS = 31 +pkg syscall (linux-amd64), const SIGTSTP = 20 +pkg syscall (linux-amd64), const SIGTTIN = 21 +pkg syscall (linux-amd64), const SIGTTOU = 22 +pkg syscall (linux-amd64), const SIGUNUSED = 31 +pkg syscall (linux-amd64), const SIGURG = 23 +pkg syscall (linux-amd64), const SIGUSR1 = 10 +pkg syscall (linux-amd64), const SIGUSR2 = 12 +pkg syscall (linux-amd64), const SIGVTALRM = 26 +pkg syscall (linux-amd64), const SIGWINCH = 28 +pkg syscall (linux-amd64), const SIGXCPU = 24 +pkg syscall (linux-amd64), const SIGXFSZ = 25 +pkg syscall (linux-amd64), const SIOCADDDLCI = 35200 +pkg syscall (linux-amd64), const SIOCADDMULTI = 35121 +pkg syscall (linux-amd64), const SIOCADDRT = 35083 +pkg syscall (linux-amd64), const SIOCATMARK = 35077 +pkg syscall (linux-amd64), const SIOCDARP = 35155 +pkg syscall (linux-amd64), const SIOCDELDLCI = 35201 +pkg syscall (linux-amd64), const SIOCDELMULTI = 35122 +pkg syscall (linux-amd64), const SIOCDELRT = 35084 +pkg syscall (linux-amd64), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-amd64), const SIOCDIFADDR = 35126 +pkg syscall (linux-amd64), const SIOCDRARP = 35168 +pkg syscall (linux-amd64), const SIOCGARP = 35156 +pkg syscall (linux-amd64), const SIOCGIFADDR = 35093 +pkg syscall (linux-amd64), const SIOCGIFBR = 35136 +pkg syscall (linux-amd64), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-amd64), const SIOCGIFCONF = 35090 +pkg syscall (linux-amd64), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-amd64), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-amd64), const SIOCGIFENCAP = 35109 +pkg syscall (linux-amd64), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-amd64), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-amd64), const SIOCGIFINDEX = 35123 +pkg syscall (linux-amd64), const SIOCGIFMAP = 35184 +pkg syscall (linux-amd64), const SIOCGIFMEM = 35103 +pkg syscall (linux-amd64), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-amd64), const SIOCGIFMTU = 35105 +pkg syscall (linux-amd64), const SIOCGIFNAME = 35088 +pkg syscall (linux-amd64), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-amd64), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-amd64), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-amd64), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-amd64), const SIOCGPGRP = 35076 +pkg syscall (linux-amd64), const SIOCGRARP = 35169 +pkg syscall (linux-amd64), const SIOCGSTAMP = 35078 +pkg syscall (linux-amd64), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-amd64), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-amd64), const SIOCRTMSG = 35085 +pkg syscall (linux-amd64), const SIOCSARP = 35157 +pkg syscall (linux-amd64), const SIOCSIFADDR = 35094 +pkg syscall (linux-amd64), const SIOCSIFBR = 35137 +pkg syscall (linux-amd64), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-amd64), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-amd64), const SIOCSIFENCAP = 35110 +pkg syscall (linux-amd64), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-amd64), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-amd64), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-amd64), const SIOCSIFLINK = 35089 +pkg syscall (linux-amd64), const SIOCSIFMAP = 35185 +pkg syscall (linux-amd64), const SIOCSIFMEM = 35104 +pkg syscall (linux-amd64), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-amd64), const SIOCSIFMTU = 35106 +pkg syscall (linux-amd64), const SIOCSIFNAME = 35107 +pkg syscall (linux-amd64), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-amd64), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-amd64), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-amd64), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-amd64), const SIOCSPGRP = 35074 +pkg syscall (linux-amd64), const SIOCSRARP = 35170 +pkg syscall (linux-amd64), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-amd64), const SOCK_DCCP = 6 +pkg syscall (linux-amd64), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-amd64), const SOCK_PACKET = 10 +pkg syscall (linux-amd64), const SOCK_RDM = 4 +pkg syscall (linux-amd64), const SOL_AAL = 265 +pkg syscall (linux-amd64), const SOL_ATM = 264 +pkg syscall (linux-amd64), const SOL_DECNET = 261 +pkg syscall (linux-amd64), const SOL_ICMPV6 = 58 +pkg syscall (linux-amd64), const SOL_IP = 0 +pkg syscall (linux-amd64), const SOL_IPV6 = 41 +pkg syscall (linux-amd64), const SOL_IRDA = 266 +pkg syscall (linux-amd64), const SOL_PACKET = 263 +pkg syscall (linux-amd64), const SOL_RAW = 255 +pkg syscall (linux-amd64), const SOL_SOCKET = 1 +pkg syscall (linux-amd64), const SOL_TCP = 6 +pkg syscall (linux-amd64), const SOL_X25 = 262 +pkg syscall (linux-amd64), const SOMAXCONN = 128 +pkg syscall (linux-amd64), const SO_ACCEPTCONN = 30 +pkg syscall (linux-amd64), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-amd64), const SO_BINDTODEVICE = 25 +pkg syscall (linux-amd64), const SO_BROADCAST = 6 +pkg syscall (linux-amd64), const SO_BSDCOMPAT = 14 +pkg syscall (linux-amd64), const SO_DEBUG = 1 +pkg syscall (linux-amd64), const SO_DETACH_FILTER = 27 +pkg syscall (linux-amd64), const SO_DOMAIN = 39 +pkg syscall (linux-amd64), const SO_DONTROUTE = 5 +pkg syscall (linux-amd64), const SO_ERROR = 4 +pkg syscall (linux-amd64), const SO_KEEPALIVE = 9 +pkg syscall (linux-amd64), const SO_LINGER = 13 +pkg syscall (linux-amd64), const SO_MARK = 36 +pkg syscall (linux-amd64), const SO_NO_CHECK = 11 +pkg syscall (linux-amd64), const SO_OOBINLINE = 10 +pkg syscall (linux-amd64), const SO_PASSCRED = 16 +pkg syscall (linux-amd64), const SO_PASSSEC = 34 +pkg syscall (linux-amd64), const SO_PEERCRED = 17 +pkg syscall (linux-amd64), const SO_PEERNAME = 28 +pkg syscall (linux-amd64), const SO_PEERSEC = 31 +pkg syscall (linux-amd64), const SO_PRIORITY = 12 +pkg syscall (linux-amd64), const SO_PROTOCOL = 38 +pkg syscall (linux-amd64), const SO_RCVBUF = 8 +pkg syscall (linux-amd64), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-amd64), const SO_RCVLOWAT = 18 +pkg syscall (linux-amd64), const SO_RCVTIMEO = 20 +pkg syscall (linux-amd64), const SO_REUSEADDR = 2 +pkg syscall (linux-amd64), const SO_RXQ_OVFL = 40 +pkg syscall (linux-amd64), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-amd64), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-amd64), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-amd64), const SO_SNDBUF = 7 +pkg syscall (linux-amd64), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-amd64), const SO_SNDLOWAT = 19 +pkg syscall (linux-amd64), const SO_SNDTIMEO = 21 +pkg syscall (linux-amd64), const SO_TIMESTAMP = 29 +pkg syscall (linux-amd64), const SO_TIMESTAMPING = 37 +pkg syscall (linux-amd64), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-amd64), const SO_TYPE = 3 +pkg syscall (linux-amd64), const SYS_ACCEPT = 43 +pkg syscall (linux-amd64), const SYS_ACCEPT4 = 288 +pkg syscall (linux-amd64), const SYS_ACCESS = 21 +pkg syscall (linux-amd64), const SYS_ACCT = 163 +pkg syscall (linux-amd64), const SYS_ADD_KEY = 248 +pkg syscall (linux-amd64), const SYS_ADJTIMEX = 159 +pkg syscall (linux-amd64), const SYS_AFS_SYSCALL = 183 +pkg syscall (linux-amd64), const SYS_ALARM = 37 +pkg syscall (linux-amd64), const SYS_ARCH_PRCTL = 158 +pkg syscall (linux-amd64), const SYS_BIND = 49 +pkg syscall (linux-amd64), const SYS_BRK = 12 +pkg syscall (linux-amd64), const SYS_CAPGET = 125 +pkg syscall (linux-amd64), const SYS_CAPSET = 126 +pkg syscall (linux-amd64), const SYS_CHDIR = 80 +pkg syscall (linux-amd64), const SYS_CHMOD = 90 +pkg syscall (linux-amd64), const SYS_CHOWN = 92 +pkg syscall (linux-amd64), const SYS_CHROOT = 161 +pkg syscall (linux-amd64), const SYS_CLOCK_GETRES = 229 +pkg syscall (linux-amd64), const SYS_CLOCK_GETTIME = 228 +pkg syscall (linux-amd64), const SYS_CLOCK_NANOSLEEP = 230 +pkg syscall (linux-amd64), const SYS_CLOCK_SETTIME = 227 +pkg syscall (linux-amd64), const SYS_CLONE = 56 +pkg syscall (linux-amd64), const SYS_CLOSE = 3 +pkg syscall (linux-amd64), const SYS_CONNECT = 42 +pkg syscall (linux-amd64), const SYS_CREAT = 85 +pkg syscall (linux-amd64), const SYS_CREATE_MODULE = 174 +pkg syscall (linux-amd64), const SYS_DELETE_MODULE = 176 +pkg syscall (linux-amd64), const SYS_DUP = 32 +pkg syscall (linux-amd64), const SYS_DUP2 = 33 +pkg syscall (linux-amd64), const SYS_DUP3 = 292 +pkg syscall (linux-amd64), const SYS_EPOLL_CREATE = 213 +pkg syscall (linux-amd64), const SYS_EPOLL_CREATE1 = 291 +pkg syscall (linux-amd64), const SYS_EPOLL_CTL = 233 +pkg syscall (linux-amd64), const SYS_EPOLL_CTL_OLD = 214 +pkg syscall (linux-amd64), const SYS_EPOLL_PWAIT = 281 +pkg syscall (linux-amd64), const SYS_EPOLL_WAIT = 232 +pkg syscall (linux-amd64), const SYS_EPOLL_WAIT_OLD = 215 +pkg syscall (linux-amd64), const SYS_EVENTFD = 284 +pkg syscall (linux-amd64), const SYS_EVENTFD2 = 290 +pkg syscall (linux-amd64), const SYS_EXECVE = 59 +pkg syscall (linux-amd64), const SYS_EXIT = 60 +pkg syscall (linux-amd64), const SYS_EXIT_GROUP = 231 +pkg syscall (linux-amd64), const SYS_FACCESSAT = 269 +pkg syscall (linux-amd64), const SYS_FADVISE64 = 221 +pkg syscall (linux-amd64), const SYS_FALLOCATE = 285 +pkg syscall (linux-amd64), const SYS_FANOTIFY_INIT = 300 +pkg syscall (linux-amd64), const SYS_FANOTIFY_MARK = 301 +pkg syscall (linux-amd64), const SYS_FCHDIR = 81 +pkg syscall (linux-amd64), const SYS_FCHMOD = 91 +pkg syscall (linux-amd64), const SYS_FCHMODAT = 268 +pkg syscall (linux-amd64), const SYS_FCHOWN = 93 +pkg syscall (linux-amd64), const SYS_FCHOWNAT = 260 +pkg syscall (linux-amd64), const SYS_FCNTL = 72 +pkg syscall (linux-amd64), const SYS_FDATASYNC = 75 +pkg syscall (linux-amd64), const SYS_FGETXATTR = 193 +pkg syscall (linux-amd64), const SYS_FLISTXATTR = 196 +pkg syscall (linux-amd64), const SYS_FLOCK = 73 +pkg syscall (linux-amd64), const SYS_FORK = 57 +pkg syscall (linux-amd64), const SYS_FREMOVEXATTR = 199 +pkg syscall (linux-amd64), const SYS_FSETXATTR = 190 +pkg syscall (linux-amd64), const SYS_FSTAT = 5 +pkg syscall (linux-amd64), const SYS_FSTATFS = 138 +pkg syscall (linux-amd64), const SYS_FSYNC = 74 +pkg syscall (linux-amd64), const SYS_FTRUNCATE = 77 +pkg syscall (linux-amd64), const SYS_FUTEX = 202 +pkg syscall (linux-amd64), const SYS_FUTIMESAT = 261 +pkg syscall (linux-amd64), const SYS_GETCWD = 79 +pkg syscall (linux-amd64), const SYS_GETDENTS = 78 +pkg syscall (linux-amd64), const SYS_GETDENTS64 = 217 +pkg syscall (linux-amd64), const SYS_GETEGID = 108 +pkg syscall (linux-amd64), const SYS_GETEUID = 107 +pkg syscall (linux-amd64), const SYS_GETGID = 104 +pkg syscall (linux-amd64), const SYS_GETGROUPS = 115 +pkg syscall (linux-amd64), const SYS_GETITIMER = 36 +pkg syscall (linux-amd64), const SYS_GETPEERNAME = 52 +pkg syscall (linux-amd64), const SYS_GETPGID = 121 +pkg syscall (linux-amd64), const SYS_GETPGRP = 111 +pkg syscall (linux-amd64), const SYS_GETPID = 39 +pkg syscall (linux-amd64), const SYS_GETPMSG = 181 +pkg syscall (linux-amd64), const SYS_GETPPID = 110 +pkg syscall (linux-amd64), const SYS_GETPRIORITY = 140 +pkg syscall (linux-amd64), const SYS_GETRESGID = 120 +pkg syscall (linux-amd64), const SYS_GETRESUID = 118 +pkg syscall (linux-amd64), const SYS_GETRLIMIT = 97 +pkg syscall (linux-amd64), const SYS_GETRUSAGE = 98 +pkg syscall (linux-amd64), const SYS_GETSID = 124 +pkg syscall (linux-amd64), const SYS_GETSOCKNAME = 51 +pkg syscall (linux-amd64), const SYS_GETSOCKOPT = 55 +pkg syscall (linux-amd64), const SYS_GETTID = 186 +pkg syscall (linux-amd64), const SYS_GETTIMEOFDAY = 96 +pkg syscall (linux-amd64), const SYS_GETUID = 102 +pkg syscall (linux-amd64), const SYS_GETXATTR = 191 +pkg syscall (linux-amd64), const SYS_GET_KERNEL_SYMS = 177 +pkg syscall (linux-amd64), const SYS_GET_MEMPOLICY = 239 +pkg syscall (linux-amd64), const SYS_GET_ROBUST_LIST = 274 +pkg syscall (linux-amd64), const SYS_GET_THREAD_AREA = 211 +pkg syscall (linux-amd64), const SYS_INIT_MODULE = 175 +pkg syscall (linux-amd64), const SYS_INOTIFY_ADD_WATCH = 254 +pkg syscall (linux-amd64), const SYS_INOTIFY_INIT = 253 +pkg syscall (linux-amd64), const SYS_INOTIFY_INIT1 = 294 +pkg syscall (linux-amd64), const SYS_INOTIFY_RM_WATCH = 255 +pkg syscall (linux-amd64), const SYS_IOCTL = 16 +pkg syscall (linux-amd64), const SYS_IOPERM = 173 +pkg syscall (linux-amd64), const SYS_IOPL = 172 +pkg syscall (linux-amd64), const SYS_IOPRIO_GET = 252 +pkg syscall (linux-amd64), const SYS_IOPRIO_SET = 251 +pkg syscall (linux-amd64), const SYS_IO_CANCEL = 210 +pkg syscall (linux-amd64), const SYS_IO_DESTROY = 207 +pkg syscall (linux-amd64), const SYS_IO_GETEVENTS = 208 +pkg syscall (linux-amd64), const SYS_IO_SETUP = 206 +pkg syscall (linux-amd64), const SYS_IO_SUBMIT = 209 +pkg syscall (linux-amd64), const SYS_KEXEC_LOAD = 246 +pkg syscall (linux-amd64), const SYS_KEYCTL = 250 +pkg syscall (linux-amd64), const SYS_KILL = 62 +pkg syscall (linux-amd64), const SYS_LCHOWN = 94 +pkg syscall (linux-amd64), const SYS_LGETXATTR = 192 +pkg syscall (linux-amd64), const SYS_LINK = 86 +pkg syscall (linux-amd64), const SYS_LINKAT = 265 +pkg syscall (linux-amd64), const SYS_LISTEN = 50 +pkg syscall (linux-amd64), const SYS_LISTXATTR = 194 +pkg syscall (linux-amd64), const SYS_LLISTXATTR = 195 +pkg syscall (linux-amd64), const SYS_LOOKUP_DCOOKIE = 212 +pkg syscall (linux-amd64), const SYS_LREMOVEXATTR = 198 +pkg syscall (linux-amd64), const SYS_LSEEK = 8 +pkg syscall (linux-amd64), const SYS_LSETXATTR = 189 +pkg syscall (linux-amd64), const SYS_LSTAT = 6 +pkg syscall (linux-amd64), const SYS_MADVISE = 28 +pkg syscall (linux-amd64), const SYS_MBIND = 237 +pkg syscall (linux-amd64), const SYS_MIGRATE_PAGES = 256 +pkg syscall (linux-amd64), const SYS_MINCORE = 27 +pkg syscall (linux-amd64), const SYS_MKDIR = 83 +pkg syscall (linux-amd64), const SYS_MKDIRAT = 258 +pkg syscall (linux-amd64), const SYS_MKNOD = 133 +pkg syscall (linux-amd64), const SYS_MKNODAT = 259 +pkg syscall (linux-amd64), const SYS_MLOCK = 149 +pkg syscall (linux-amd64), const SYS_MLOCKALL = 151 +pkg syscall (linux-amd64), const SYS_MMAP = 9 +pkg syscall (linux-amd64), const SYS_MODIFY_LDT = 154 +pkg syscall (linux-amd64), const SYS_MOUNT = 165 +pkg syscall (linux-amd64), const SYS_MOVE_PAGES = 279 +pkg syscall (linux-amd64), const SYS_MPROTECT = 10 +pkg syscall (linux-amd64), const SYS_MQ_GETSETATTR = 245 +pkg syscall (linux-amd64), const SYS_MQ_NOTIFY = 244 +pkg syscall (linux-amd64), const SYS_MQ_OPEN = 240 +pkg syscall (linux-amd64), const SYS_MQ_TIMEDRECEIVE = 243 +pkg syscall (linux-amd64), const SYS_MQ_TIMEDSEND = 242 +pkg syscall (linux-amd64), const SYS_MQ_UNLINK = 241 +pkg syscall (linux-amd64), const SYS_MREMAP = 25 +pkg syscall (linux-amd64), const SYS_MSGCTL = 71 +pkg syscall (linux-amd64), const SYS_MSGGET = 68 +pkg syscall (linux-amd64), const SYS_MSGRCV = 70 +pkg syscall (linux-amd64), const SYS_MSGSND = 69 +pkg syscall (linux-amd64), const SYS_MSYNC = 26 +pkg syscall (linux-amd64), const SYS_MUNLOCK = 150 +pkg syscall (linux-amd64), const SYS_MUNLOCKALL = 152 +pkg syscall (linux-amd64), const SYS_MUNMAP = 11 +pkg syscall (linux-amd64), const SYS_NANOSLEEP = 35 +pkg syscall (linux-amd64), const SYS_NEWFSTATAT = 262 +pkg syscall (linux-amd64), const SYS_NFSSERVCTL = 180 +pkg syscall (linux-amd64), const SYS_OPEN = 2 +pkg syscall (linux-amd64), const SYS_OPENAT = 257 +pkg syscall (linux-amd64), const SYS_PAUSE = 34 +pkg syscall (linux-amd64), const SYS_PERF_EVENT_OPEN = 298 +pkg syscall (linux-amd64), const SYS_PERSONALITY = 135 +pkg syscall (linux-amd64), const SYS_PIPE = 22 +pkg syscall (linux-amd64), const SYS_PIPE2 = 293 +pkg syscall (linux-amd64), const SYS_PIVOT_ROOT = 155 +pkg syscall (linux-amd64), const SYS_POLL = 7 +pkg syscall (linux-amd64), const SYS_PPOLL = 271 +pkg syscall (linux-amd64), const SYS_PRCTL = 157 +pkg syscall (linux-amd64), const SYS_PREAD64 = 17 +pkg syscall (linux-amd64), const SYS_PREADV = 295 +pkg syscall (linux-amd64), const SYS_PRLIMIT64 = 302 +pkg syscall (linux-amd64), const SYS_PSELECT6 = 270 +pkg syscall (linux-amd64), const SYS_PTRACE = 101 +pkg syscall (linux-amd64), const SYS_PUTPMSG = 182 +pkg syscall (linux-amd64), const SYS_PWRITE64 = 18 +pkg syscall (linux-amd64), const SYS_PWRITEV = 296 +pkg syscall (linux-amd64), const SYS_QUERY_MODULE = 178 +pkg syscall (linux-amd64), const SYS_QUOTACTL = 179 +pkg syscall (linux-amd64), const SYS_READ = 0 +pkg syscall (linux-amd64), const SYS_READAHEAD = 187 +pkg syscall (linux-amd64), const SYS_READLINK = 89 +pkg syscall (linux-amd64), const SYS_READLINKAT = 267 +pkg syscall (linux-amd64), const SYS_READV = 19 +pkg syscall (linux-amd64), const SYS_REBOOT = 169 +pkg syscall (linux-amd64), const SYS_RECVFROM = 45 +pkg syscall (linux-amd64), const SYS_RECVMMSG = 299 +pkg syscall (linux-amd64), const SYS_RECVMSG = 47 +pkg syscall (linux-amd64), const SYS_REMAP_FILE_PAGES = 216 +pkg syscall (linux-amd64), const SYS_REMOVEXATTR = 197 +pkg syscall (linux-amd64), const SYS_RENAME = 82 +pkg syscall (linux-amd64), const SYS_RENAMEAT = 264 +pkg syscall (linux-amd64), const SYS_REQUEST_KEY = 249 +pkg syscall (linux-amd64), const SYS_RESTART_SYSCALL = 219 +pkg syscall (linux-amd64), const SYS_RMDIR = 84 +pkg syscall (linux-amd64), const SYS_RT_SIGACTION = 13 +pkg syscall (linux-amd64), const SYS_RT_SIGPENDING = 127 +pkg syscall (linux-amd64), const SYS_RT_SIGPROCMASK = 14 +pkg syscall (linux-amd64), const SYS_RT_SIGQUEUEINFO = 129 +pkg syscall (linux-amd64), const SYS_RT_SIGRETURN = 15 +pkg syscall (linux-amd64), const SYS_RT_SIGSUSPEND = 130 +pkg syscall (linux-amd64), const SYS_RT_SIGTIMEDWAIT = 128 +pkg syscall (linux-amd64), const SYS_RT_TGSIGQUEUEINFO = 297 +pkg syscall (linux-amd64), const SYS_SCHED_GETAFFINITY = 204 +pkg syscall (linux-amd64), const SYS_SCHED_GETPARAM = 143 +pkg syscall (linux-amd64), const SYS_SCHED_GETSCHEDULER = 145 +pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MAX = 146 +pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MIN = 147 +pkg syscall (linux-amd64), const SYS_SCHED_RR_GET_INTERVAL = 148 +pkg syscall (linux-amd64), const SYS_SCHED_SETAFFINITY = 203 +pkg syscall (linux-amd64), const SYS_SCHED_SETPARAM = 142 +pkg syscall (linux-amd64), const SYS_SCHED_SETSCHEDULER = 144 +pkg syscall (linux-amd64), const SYS_SCHED_YIELD = 24 +pkg syscall (linux-amd64), const SYS_SECURITY = 185 +pkg syscall (linux-amd64), const SYS_SELECT = 23 +pkg syscall (linux-amd64), const SYS_SEMCTL = 66 +pkg syscall (linux-amd64), const SYS_SEMGET = 64 +pkg syscall (linux-amd64), const SYS_SEMOP = 65 +pkg syscall (linux-amd64), const SYS_SEMTIMEDOP = 220 +pkg syscall (linux-amd64), const SYS_SENDFILE = 40 +pkg syscall (linux-amd64), const SYS_SENDMSG = 46 +pkg syscall (linux-amd64), const SYS_SENDTO = 44 +pkg syscall (linux-amd64), const SYS_SETDOMAINNAME = 171 +pkg syscall (linux-amd64), const SYS_SETFSGID = 123 +pkg syscall (linux-amd64), const SYS_SETFSUID = 122 +pkg syscall (linux-amd64), const SYS_SETGID = 106 +pkg syscall (linux-amd64), const SYS_SETGROUPS = 116 +pkg syscall (linux-amd64), const SYS_SETHOSTNAME = 170 +pkg syscall (linux-amd64), const SYS_SETITIMER = 38 +pkg syscall (linux-amd64), const SYS_SETPGID = 109 +pkg syscall (linux-amd64), const SYS_SETPRIORITY = 141 +pkg syscall (linux-amd64), const SYS_SETREGID = 114 +pkg syscall (linux-amd64), const SYS_SETRESGID = 119 +pkg syscall (linux-amd64), const SYS_SETRESUID = 117 +pkg syscall (linux-amd64), const SYS_SETREUID = 113 +pkg syscall (linux-amd64), const SYS_SETRLIMIT = 160 +pkg syscall (linux-amd64), const SYS_SETSID = 112 +pkg syscall (linux-amd64), const SYS_SETSOCKOPT = 54 +pkg syscall (linux-amd64), const SYS_SETTIMEOFDAY = 164 +pkg syscall (linux-amd64), const SYS_SETUID = 105 +pkg syscall (linux-amd64), const SYS_SETXATTR = 188 +pkg syscall (linux-amd64), const SYS_SET_MEMPOLICY = 238 +pkg syscall (linux-amd64), const SYS_SET_ROBUST_LIST = 273 +pkg syscall (linux-amd64), const SYS_SET_THREAD_AREA = 205 +pkg syscall (linux-amd64), const SYS_SET_TID_ADDRESS = 218 +pkg syscall (linux-amd64), const SYS_SHMAT = 30 +pkg syscall (linux-amd64), const SYS_SHMCTL = 31 +pkg syscall (linux-amd64), const SYS_SHMDT = 67 +pkg syscall (linux-amd64), const SYS_SHMGET = 29 +pkg syscall (linux-amd64), const SYS_SHUTDOWN = 48 +pkg syscall (linux-amd64), const SYS_SIGALTSTACK = 131 +pkg syscall (linux-amd64), const SYS_SIGNALFD = 282 +pkg syscall (linux-amd64), const SYS_SIGNALFD4 = 289 +pkg syscall (linux-amd64), const SYS_SOCKET = 41 +pkg syscall (linux-amd64), const SYS_SOCKETPAIR = 53 +pkg syscall (linux-amd64), const SYS_SPLICE = 275 +pkg syscall (linux-amd64), const SYS_STAT = 4 +pkg syscall (linux-amd64), const SYS_STATFS = 137 +pkg syscall (linux-amd64), const SYS_SWAPOFF = 168 +pkg syscall (linux-amd64), const SYS_SWAPON = 167 +pkg syscall (linux-amd64), const SYS_SYMLINK = 88 +pkg syscall (linux-amd64), const SYS_SYMLINKAT = 266 +pkg syscall (linux-amd64), const SYS_SYNC = 162 +pkg syscall (linux-amd64), const SYS_SYNC_FILE_RANGE = 277 +pkg syscall (linux-amd64), const SYS_SYSFS = 139 +pkg syscall (linux-amd64), const SYS_SYSINFO = 99 +pkg syscall (linux-amd64), const SYS_SYSLOG = 103 +pkg syscall (linux-amd64), const SYS_TEE = 276 +pkg syscall (linux-amd64), const SYS_TGKILL = 234 +pkg syscall (linux-amd64), const SYS_TIME = 201 +pkg syscall (linux-amd64), const SYS_TIMERFD_CREATE = 283 +pkg syscall (linux-amd64), const SYS_TIMERFD_GETTIME = 287 +pkg syscall (linux-amd64), const SYS_TIMERFD_SETTIME = 286 +pkg syscall (linux-amd64), const SYS_TIMER_CREATE = 222 +pkg syscall (linux-amd64), const SYS_TIMER_DELETE = 226 +pkg syscall (linux-amd64), const SYS_TIMER_GETOVERRUN = 225 +pkg syscall (linux-amd64), const SYS_TIMER_GETTIME = 224 +pkg syscall (linux-amd64), const SYS_TIMER_SETTIME = 223 +pkg syscall (linux-amd64), const SYS_TIMES = 100 +pkg syscall (linux-amd64), const SYS_TKILL = 200 +pkg syscall (linux-amd64), const SYS_TRUNCATE = 76 +pkg syscall (linux-amd64), const SYS_TUXCALL = 184 +pkg syscall (linux-amd64), const SYS_UMASK = 95 +pkg syscall (linux-amd64), const SYS_UMOUNT2 = 166 +pkg syscall (linux-amd64), const SYS_UNAME = 63 +pkg syscall (linux-amd64), const SYS_UNLINK = 87 +pkg syscall (linux-amd64), const SYS_UNLINKAT = 263 +pkg syscall (linux-amd64), const SYS_UNSHARE = 272 +pkg syscall (linux-amd64), const SYS_USELIB = 134 +pkg syscall (linux-amd64), const SYS_USTAT = 136 +pkg syscall (linux-amd64), const SYS_UTIME = 132 +pkg syscall (linux-amd64), const SYS_UTIMENSAT = 280 +pkg syscall (linux-amd64), const SYS_UTIMES = 235 +pkg syscall (linux-amd64), const SYS_VFORK = 58 +pkg syscall (linux-amd64), const SYS_VHANGUP = 153 +pkg syscall (linux-amd64), const SYS_VMSPLICE = 278 +pkg syscall (linux-amd64), const SYS_VSERVER = 236 +pkg syscall (linux-amd64), const SYS_WAIT4 = 61 +pkg syscall (linux-amd64), const SYS_WAITID = 247 +pkg syscall (linux-amd64), const SYS_WRITE = 1 +pkg syscall (linux-amd64), const SYS_WRITEV = 20 +pkg syscall (linux-amd64), const SYS__SYSCTL = 156 +pkg syscall (linux-amd64), const S_BLKSIZE = 512 +pkg syscall (linux-amd64), const S_IEXEC = 64 +pkg syscall (linux-amd64), const S_IFMT = 61440 +pkg syscall (linux-amd64), const S_IREAD = 256 +pkg syscall (linux-amd64), const S_IRGRP = 32 +pkg syscall (linux-amd64), const S_IROTH = 4 +pkg syscall (linux-amd64), const S_IRWXG = 56 +pkg syscall (linux-amd64), const S_IRWXO = 7 +pkg syscall (linux-amd64), const S_IRWXU = 448 +pkg syscall (linux-amd64), const S_IWGRP = 16 +pkg syscall (linux-amd64), const S_IWOTH = 2 +pkg syscall (linux-amd64), const S_IWRITE = 128 +pkg syscall (linux-amd64), const S_IXGRP = 8 +pkg syscall (linux-amd64), const S_IXOTH = 1 +pkg syscall (linux-amd64), const SizeofCmsghdr = 16 +pkg syscall (linux-amd64), const SizeofIPMreq = 8 +pkg syscall (linux-amd64), const SizeofIPMreqn = 12 +pkg syscall (linux-amd64), const SizeofIPv6Mreq = 20 +pkg syscall (linux-amd64), const SizeofIfAddrmsg = 8 +pkg syscall (linux-amd64), const SizeofIfInfomsg = 16 +pkg syscall (linux-amd64), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-amd64), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-amd64), const SizeofInotifyEvent = 16 +pkg syscall (linux-amd64), const SizeofLinger = 8 +pkg syscall (linux-amd64), const SizeofMsghdr = 56 +pkg syscall (linux-amd64), const SizeofNlAttr = 4 +pkg syscall (linux-amd64), const SizeofNlMsgerr = 20 +pkg syscall (linux-amd64), const SizeofNlMsghdr = 16 +pkg syscall (linux-amd64), const SizeofRtAttr = 4 +pkg syscall (linux-amd64), const SizeofRtGenmsg = 1 +pkg syscall (linux-amd64), const SizeofRtMsg = 12 +pkg syscall (linux-amd64), const SizeofRtNexthop = 8 +pkg syscall (linux-amd64), const SizeofSockFilter = 8 +pkg syscall (linux-amd64), const SizeofSockFprog = 16 +pkg syscall (linux-amd64), const SizeofSockaddrAny = 112 +pkg syscall (linux-amd64), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-amd64), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-amd64), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-amd64), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-amd64), const SizeofSockaddrUnix = 110 +pkg syscall (linux-amd64), const SizeofTCPInfo = 104 +pkg syscall (linux-amd64), const SizeofTCPInfo ideal-int +pkg syscall (linux-amd64), const SizeofUcred = 12 +pkg syscall (linux-amd64), const TCGETS = 21505 +pkg syscall (linux-amd64), const TCP_CONGESTION = 13 +pkg syscall (linux-amd64), const TCP_CORK = 3 +pkg syscall (linux-amd64), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-amd64), const TCP_INFO = 11 +pkg syscall (linux-amd64), const TCP_KEEPCNT = 6 +pkg syscall (linux-amd64), const TCP_KEEPIDLE = 4 +pkg syscall (linux-amd64), const TCP_KEEPINTVL = 5 +pkg syscall (linux-amd64), const TCP_LINGER2 = 8 +pkg syscall (linux-amd64), const TCP_MAXSEG = 2 +pkg syscall (linux-amd64), const TCP_MAXWIN = 65535 +pkg syscall (linux-amd64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-amd64), const TCP_MD5SIG = 14 +pkg syscall (linux-amd64), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-amd64), const TCP_MSS = 512 +pkg syscall (linux-amd64), const TCP_QUICKACK = 12 +pkg syscall (linux-amd64), const TCP_SYNCNT = 7 +pkg syscall (linux-amd64), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-amd64), const TCSETS = 21506 +pkg syscall (linux-amd64), const TIOCCBRK = 21544 +pkg syscall (linux-amd64), const TIOCCONS = 21533 +pkg syscall (linux-amd64), const TIOCEXCL = 21516 +pkg syscall (linux-amd64), const TIOCGDEV = 2147767346 +pkg syscall (linux-amd64), const TIOCGETD = 21540 +pkg syscall (linux-amd64), const TIOCGICOUNT = 21597 +pkg syscall (linux-amd64), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-amd64), const TIOCGPGRP = 21519 +pkg syscall (linux-amd64), const TIOCGPTN = 2147767344 +pkg syscall (linux-amd64), const TIOCGRS485 = 21550 +pkg syscall (linux-amd64), const TIOCGSERIAL = 21534 +pkg syscall (linux-amd64), const TIOCGSID = 21545 +pkg syscall (linux-amd64), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-amd64), const TIOCGWINSZ = 21523 +pkg syscall (linux-amd64), const TIOCINQ = 21531 +pkg syscall (linux-amd64), const TIOCLINUX = 21532 +pkg syscall (linux-amd64), const TIOCMBIC = 21527 +pkg syscall (linux-amd64), const TIOCMBIS = 21526 +pkg syscall (linux-amd64), const TIOCMGET = 21525 +pkg syscall (linux-amd64), const TIOCMIWAIT = 21596 +pkg syscall (linux-amd64), const TIOCMSET = 21528 +pkg syscall (linux-amd64), const TIOCM_CAR = 64 +pkg syscall (linux-amd64), const TIOCM_CD = 64 +pkg syscall (linux-amd64), const TIOCM_CTS = 32 +pkg syscall (linux-amd64), const TIOCM_DSR = 256 +pkg syscall (linux-amd64), const TIOCM_DTR = 2 +pkg syscall (linux-amd64), const TIOCM_LE = 1 +pkg syscall (linux-amd64), const TIOCM_RI = 128 +pkg syscall (linux-amd64), const TIOCM_RNG = 128 +pkg syscall (linux-amd64), const TIOCM_RTS = 4 +pkg syscall (linux-amd64), const TIOCM_SR = 16 +pkg syscall (linux-amd64), const TIOCM_ST = 8 +pkg syscall (linux-amd64), const TIOCNOTTY = 21538 +pkg syscall (linux-amd64), const TIOCNXCL = 21517 +pkg syscall (linux-amd64), const TIOCOUTQ = 21521 +pkg syscall (linux-amd64), const TIOCPKT = 21536 +pkg syscall (linux-amd64), const TIOCPKT_DATA = 0 +pkg syscall (linux-amd64), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-amd64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-amd64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-amd64), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-amd64), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-amd64), const TIOCPKT_START = 8 +pkg syscall (linux-amd64), const TIOCPKT_STOP = 4 +pkg syscall (linux-amd64), const TIOCSBRK = 21543 +pkg syscall (linux-amd64), const TIOCSCTTY = 21518 +pkg syscall (linux-amd64), const TIOCSERCONFIG = 21587 +pkg syscall (linux-amd64), const TIOCSERGETLSR = 21593 +pkg syscall (linux-amd64), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-amd64), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-amd64), const TIOCSERGWILD = 21588 +pkg syscall (linux-amd64), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-amd64), const TIOCSERSWILD = 21589 +pkg syscall (linux-amd64), const TIOCSER_TEMT = 1 +pkg syscall (linux-amd64), const TIOCSETD = 21539 +pkg syscall (linux-amd64), const TIOCSIG = 1074025526 +pkg syscall (linux-amd64), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-amd64), const TIOCSPGRP = 21520 +pkg syscall (linux-amd64), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-amd64), const TIOCSRS485 = 21551 +pkg syscall (linux-amd64), const TIOCSSERIAL = 21535 +pkg syscall (linux-amd64), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-amd64), const TIOCSTI = 21522 +pkg syscall (linux-amd64), const TIOCSWINSZ = 21524 +pkg syscall (linux-amd64), const TOSTOP = 256 +pkg syscall (linux-amd64), const TUNATTACHFILTER = 1074812117 +pkg syscall (linux-amd64), const TUNDETACHFILTER = 1074812118 +pkg syscall (linux-amd64), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-amd64), const TUNGETIFF = 2147767506 +pkg syscall (linux-amd64), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-amd64), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-amd64), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-amd64), const TUNSETGROUP = 1074025678 +pkg syscall (linux-amd64), const TUNSETIFF = 1074025674 +pkg syscall (linux-amd64), const TUNSETLINK = 1074025677 +pkg syscall (linux-amd64), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-amd64), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-amd64), const TUNSETOWNER = 1074025676 +pkg syscall (linux-amd64), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-amd64), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-amd64), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-amd64), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-amd64), const VDISCARD = 13 +pkg syscall (linux-amd64), const VEOF = 4 +pkg syscall (linux-amd64), const VEOL = 11 +pkg syscall (linux-amd64), const VEOL2 = 16 +pkg syscall (linux-amd64), const VERASE = 2 +pkg syscall (linux-amd64), const VINTR = 0 +pkg syscall (linux-amd64), const VKILL = 3 +pkg syscall (linux-amd64), const VLNEXT = 15 +pkg syscall (linux-amd64), const VMIN = 6 +pkg syscall (linux-amd64), const VQUIT = 1 +pkg syscall (linux-amd64), const VREPRINT = 12 +pkg syscall (linux-amd64), const VSTART = 8 +pkg syscall (linux-amd64), const VSTOP = 9 +pkg syscall (linux-amd64), const VSUSP = 10 +pkg syscall (linux-amd64), const VSWTC = 7 +pkg syscall (linux-amd64), const VTIME = 5 +pkg syscall (linux-amd64), const VWERASE = 14 +pkg syscall (linux-amd64), const WALL = 1073741824 +pkg syscall (linux-amd64), const WCLONE = 2147483648 +pkg syscall (linux-amd64), const WCONTINUED = 8 +pkg syscall (linux-amd64), const WEXITED = 4 +pkg syscall (linux-amd64), const WNOHANG = 1 +pkg syscall (linux-amd64), const WNOTHREAD = 536870912 +pkg syscall (linux-amd64), const WNOWAIT = 16777216 +pkg syscall (linux-amd64), const WORDSIZE = 64 +pkg syscall (linux-amd64), const WSTOPPED = 2 +pkg syscall (linux-amd64), const WUNTRACED = 2 +pkg syscall (linux-amd64), const XCASE = 4 +pkg syscall (linux-amd64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-amd64), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-amd64), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-amd64), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-amd64), func Pipe2([]int, int) error +pkg syscall (linux-amd64), func PtraceSyscall(int, int) error +pkg syscall (linux-amd64), func Removexattr(string, string) error +pkg syscall (linux-amd64), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-amd64), type SysProcAttr struct, Ctty int +pkg syscall (linux-amd64), type TCPInfo struct +pkg syscall (linux-amd64), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Ato uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Lost uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Options uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Probes uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Rto uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-amd64), type TCPInfo struct, State uint8 +pkg syscall (linux-amd64), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-amd64), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-amd64-cgo), const AF_ALG = 38 +pkg syscall (linux-amd64-cgo), const AF_APPLETALK = 5 +pkg syscall (linux-amd64-cgo), const AF_ASH = 18 +pkg syscall (linux-amd64-cgo), const AF_ATMPVC = 8 +pkg syscall (linux-amd64-cgo), const AF_ATMSVC = 20 +pkg syscall (linux-amd64-cgo), const AF_AX25 = 3 +pkg syscall (linux-amd64-cgo), const AF_BLUETOOTH = 31 +pkg syscall (linux-amd64-cgo), const AF_BRIDGE = 7 +pkg syscall (linux-amd64-cgo), const AF_CAIF = 37 +pkg syscall (linux-amd64-cgo), const AF_CAN = 29 +pkg syscall (linux-amd64-cgo), const AF_DECnet = 12 +pkg syscall (linux-amd64-cgo), const AF_ECONET = 19 +pkg syscall (linux-amd64-cgo), const AF_FILE = 1 +pkg syscall (linux-amd64-cgo), const AF_IEEE802154 = 36 +pkg syscall (linux-amd64-cgo), const AF_INET6 = 10 +pkg syscall (linux-amd64-cgo), const AF_IPX = 4 +pkg syscall (linux-amd64-cgo), const AF_IRDA = 23 +pkg syscall (linux-amd64-cgo), const AF_ISDN = 34 +pkg syscall (linux-amd64-cgo), const AF_IUCV = 32 +pkg syscall (linux-amd64-cgo), const AF_KEY = 15 +pkg syscall (linux-amd64-cgo), const AF_LLC = 26 +pkg syscall (linux-amd64-cgo), const AF_LOCAL = 1 +pkg syscall (linux-amd64-cgo), const AF_MAX = 39 +pkg syscall (linux-amd64-cgo), const AF_NETBEUI = 13 +pkg syscall (linux-amd64-cgo), const AF_NETLINK = 16 +pkg syscall (linux-amd64-cgo), const AF_NETROM = 6 +pkg syscall (linux-amd64-cgo), const AF_PACKET = 17 +pkg syscall (linux-amd64-cgo), const AF_PHONET = 35 +pkg syscall (linux-amd64-cgo), const AF_PPPOX = 24 +pkg syscall (linux-amd64-cgo), const AF_RDS = 21 +pkg syscall (linux-amd64-cgo), const AF_ROSE = 11 +pkg syscall (linux-amd64-cgo), const AF_ROUTE = 16 +pkg syscall (linux-amd64-cgo), const AF_RXRPC = 33 +pkg syscall (linux-amd64-cgo), const AF_SECURITY = 14 +pkg syscall (linux-amd64-cgo), const AF_SNA = 22 +pkg syscall (linux-amd64-cgo), const AF_TIPC = 30 +pkg syscall (linux-amd64-cgo), const AF_WANPIPE = 25 +pkg syscall (linux-amd64-cgo), const AF_X25 = 9 +pkg syscall (linux-amd64-cgo), const ARPHRD_ADAPT = 264 +pkg syscall (linux-amd64-cgo), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-amd64-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (linux-amd64-cgo), const ARPHRD_ASH = 781 +pkg syscall (linux-amd64-cgo), const ARPHRD_ATM = 19 +pkg syscall (linux-amd64-cgo), const ARPHRD_AX25 = 3 +pkg syscall (linux-amd64-cgo), const ARPHRD_BIF = 775 +pkg syscall (linux-amd64-cgo), const ARPHRD_CHAOS = 5 +pkg syscall (linux-amd64-cgo), const ARPHRD_CISCO = 513 +pkg syscall (linux-amd64-cgo), const ARPHRD_CSLIP = 257 +pkg syscall (linux-amd64-cgo), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-amd64-cgo), const ARPHRD_DDCMP = 517 +pkg syscall (linux-amd64-cgo), const ARPHRD_DLCI = 15 +pkg syscall (linux-amd64-cgo), const ARPHRD_ECONET = 782 +pkg syscall (linux-amd64-cgo), const ARPHRD_EETHER = 2 +pkg syscall (linux-amd64-cgo), const ARPHRD_ETHER = 1 +pkg syscall (linux-amd64-cgo), const ARPHRD_EUI64 = 27 +pkg syscall (linux-amd64-cgo), const ARPHRD_FCAL = 785 +pkg syscall (linux-amd64-cgo), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-amd64-cgo), const ARPHRD_FCPL = 786 +pkg syscall (linux-amd64-cgo), const ARPHRD_FCPP = 784 +pkg syscall (linux-amd64-cgo), const ARPHRD_FDDI = 774 +pkg syscall (linux-amd64-cgo), const ARPHRD_FRAD = 770 +pkg syscall (linux-amd64-cgo), const ARPHRD_HDLC = 513 +pkg syscall (linux-amd64-cgo), const ARPHRD_HIPPI = 780 +pkg syscall (linux-amd64-cgo), const ARPHRD_HWX25 = 272 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-amd64-cgo), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-amd64-cgo), const ARPHRD_IPDDP = 777 +pkg syscall (linux-amd64-cgo), const ARPHRD_IPGRE = 778 +pkg syscall (linux-amd64-cgo), const ARPHRD_IRDA = 783 +pkg syscall (linux-amd64-cgo), const ARPHRD_LAPB = 516 +pkg syscall (linux-amd64-cgo), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-amd64-cgo), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-amd64-cgo), const ARPHRD_METRICOM = 23 +pkg syscall (linux-amd64-cgo), const ARPHRD_NETROM = 0 +pkg syscall (linux-amd64-cgo), const ARPHRD_NONE = 65534 +pkg syscall (linux-amd64-cgo), const ARPHRD_PIMREG = 779 +pkg syscall (linux-amd64-cgo), const ARPHRD_PPP = 512 +pkg syscall (linux-amd64-cgo), const ARPHRD_PRONET = 4 +pkg syscall (linux-amd64-cgo), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-amd64-cgo), const ARPHRD_ROSE = 270 +pkg syscall (linux-amd64-cgo), const ARPHRD_RSRVD = 260 +pkg syscall (linux-amd64-cgo), const ARPHRD_SIT = 776 +pkg syscall (linux-amd64-cgo), const ARPHRD_SKIP = 771 +pkg syscall (linux-amd64-cgo), const ARPHRD_SLIP = 256 +pkg syscall (linux-amd64-cgo), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-amd64-cgo), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-amd64-cgo), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-amd64-cgo), const ARPHRD_VOID = 65535 +pkg syscall (linux-amd64-cgo), const ARPHRD_X25 = 271 +pkg syscall (linux-amd64-cgo), const B0 = 0 +pkg syscall (linux-amd64-cgo), const B1000000 = 4104 +pkg syscall (linux-amd64-cgo), const B110 = 3 +pkg syscall (linux-amd64-cgo), const B115200 = 4098 +pkg syscall (linux-amd64-cgo), const B1152000 = 4105 +pkg syscall (linux-amd64-cgo), const B1200 = 9 +pkg syscall (linux-amd64-cgo), const B134 = 4 +pkg syscall (linux-amd64-cgo), const B150 = 5 +pkg syscall (linux-amd64-cgo), const B1500000 = 4106 +pkg syscall (linux-amd64-cgo), const B1800 = 10 +pkg syscall (linux-amd64-cgo), const B19200 = 14 +pkg syscall (linux-amd64-cgo), const B200 = 6 +pkg syscall (linux-amd64-cgo), const B2000000 = 4107 +pkg syscall (linux-amd64-cgo), const B230400 = 4099 +pkg syscall (linux-amd64-cgo), const B2400 = 11 +pkg syscall (linux-amd64-cgo), const B2500000 = 4108 +pkg syscall (linux-amd64-cgo), const B300 = 7 +pkg syscall (linux-amd64-cgo), const B3000000 = 4109 +pkg syscall (linux-amd64-cgo), const B3500000 = 4110 +pkg syscall (linux-amd64-cgo), const B38400 = 15 +pkg syscall (linux-amd64-cgo), const B4000000 = 4111 +pkg syscall (linux-amd64-cgo), const B460800 = 4100 +pkg syscall (linux-amd64-cgo), const B4800 = 12 +pkg syscall (linux-amd64-cgo), const B50 = 1 +pkg syscall (linux-amd64-cgo), const B500000 = 4101 +pkg syscall (linux-amd64-cgo), const B57600 = 4097 +pkg syscall (linux-amd64-cgo), const B576000 = 4102 +pkg syscall (linux-amd64-cgo), const B600 = 8 +pkg syscall (linux-amd64-cgo), const B75 = 2 +pkg syscall (linux-amd64-cgo), const B921600 = 4103 +pkg syscall (linux-amd64-cgo), const B9600 = 13 +pkg syscall (linux-amd64-cgo), const BPF_A = 16 +pkg syscall (linux-amd64-cgo), const BPF_ABS = 32 +pkg syscall (linux-amd64-cgo), const BPF_ADD = 0 +pkg syscall (linux-amd64-cgo), const BPF_ALU = 4 +pkg syscall (linux-amd64-cgo), const BPF_AND = 80 +pkg syscall (linux-amd64-cgo), const BPF_B = 16 +pkg syscall (linux-amd64-cgo), const BPF_DIV = 48 +pkg syscall (linux-amd64-cgo), const BPF_H = 8 +pkg syscall (linux-amd64-cgo), const BPF_IMM = 0 +pkg syscall (linux-amd64-cgo), const BPF_IND = 64 +pkg syscall (linux-amd64-cgo), const BPF_JA = 0 +pkg syscall (linux-amd64-cgo), const BPF_JEQ = 16 +pkg syscall (linux-amd64-cgo), const BPF_JGE = 48 +pkg syscall (linux-amd64-cgo), const BPF_JGT = 32 +pkg syscall (linux-amd64-cgo), const BPF_JMP = 5 +pkg syscall (linux-amd64-cgo), const BPF_JSET = 64 +pkg syscall (linux-amd64-cgo), const BPF_K = 0 +pkg syscall (linux-amd64-cgo), const BPF_LD = 0 +pkg syscall (linux-amd64-cgo), const BPF_LDX = 1 +pkg syscall (linux-amd64-cgo), const BPF_LEN = 128 +pkg syscall (linux-amd64-cgo), const BPF_LSH = 96 +pkg syscall (linux-amd64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-amd64-cgo), const BPF_MAXINSNS = 4096 +pkg syscall (linux-amd64-cgo), const BPF_MEM = 96 +pkg syscall (linux-amd64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (linux-amd64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-amd64-cgo), const BPF_MISC = 7 +pkg syscall (linux-amd64-cgo), const BPF_MSH = 160 +pkg syscall (linux-amd64-cgo), const BPF_MUL = 32 +pkg syscall (linux-amd64-cgo), const BPF_NEG = 128 +pkg syscall (linux-amd64-cgo), const BPF_OR = 64 +pkg syscall (linux-amd64-cgo), const BPF_RET = 6 +pkg syscall (linux-amd64-cgo), const BPF_RSH = 112 +pkg syscall (linux-amd64-cgo), const BPF_ST = 2 +pkg syscall (linux-amd64-cgo), const BPF_STX = 3 +pkg syscall (linux-amd64-cgo), const BPF_SUB = 16 +pkg syscall (linux-amd64-cgo), const BPF_TAX = 0 +pkg syscall (linux-amd64-cgo), const BPF_TXA = 128 +pkg syscall (linux-amd64-cgo), const BPF_W = 0 +pkg syscall (linux-amd64-cgo), const BPF_X = 8 +pkg syscall (linux-amd64-cgo), const BRKINT = 2 +pkg syscall (linux-amd64-cgo), const CLOCAL = 2048 +pkg syscall (linux-amd64-cgo), const CREAD = 128 +pkg syscall (linux-amd64-cgo), const CS5 = 0 +pkg syscall (linux-amd64-cgo), const CS6 = 16 +pkg syscall (linux-amd64-cgo), const CS7 = 32 +pkg syscall (linux-amd64-cgo), const CS8 = 48 +pkg syscall (linux-amd64-cgo), const CSIZE = 48 +pkg syscall (linux-amd64-cgo), const CSTOPB = 64 +pkg syscall (linux-amd64-cgo), const DT_BLK = 6 +pkg syscall (linux-amd64-cgo), const DT_CHR = 2 +pkg syscall (linux-amd64-cgo), const DT_DIR = 4 +pkg syscall (linux-amd64-cgo), const DT_FIFO = 1 +pkg syscall (linux-amd64-cgo), const DT_LNK = 10 +pkg syscall (linux-amd64-cgo), const DT_REG = 8 +pkg syscall (linux-amd64-cgo), const DT_SOCK = 12 +pkg syscall (linux-amd64-cgo), const DT_UNKNOWN = 0 +pkg syscall (linux-amd64-cgo), const DT_WHT = 14 +pkg syscall (linux-amd64-cgo), const E2BIG = 7 +pkg syscall (linux-amd64-cgo), const EACCES = 13 +pkg syscall (linux-amd64-cgo), const EADDRINUSE = 98 +pkg syscall (linux-amd64-cgo), const EADDRNOTAVAIL = 99 +pkg syscall (linux-amd64-cgo), const EADV = 68 +pkg syscall (linux-amd64-cgo), const EAFNOSUPPORT = 97 +pkg syscall (linux-amd64-cgo), const EAGAIN = 11 +pkg syscall (linux-amd64-cgo), const EALREADY = 114 +pkg syscall (linux-amd64-cgo), const EBADE = 52 +pkg syscall (linux-amd64-cgo), const EBADF = 9 +pkg syscall (linux-amd64-cgo), const EBADFD = 77 +pkg syscall (linux-amd64-cgo), const EBADMSG = 74 +pkg syscall (linux-amd64-cgo), const EBADR = 53 +pkg syscall (linux-amd64-cgo), const EBADRQC = 56 +pkg syscall (linux-amd64-cgo), const EBADSLT = 57 +pkg syscall (linux-amd64-cgo), const EBFONT = 59 +pkg syscall (linux-amd64-cgo), const EBUSY = 16 +pkg syscall (linux-amd64-cgo), const ECANCELED = 125 +pkg syscall (linux-amd64-cgo), const ECHILD = 10 +pkg syscall (linux-amd64-cgo), const ECHO = 8 +pkg syscall (linux-amd64-cgo), const ECHOCTL = 512 +pkg syscall (linux-amd64-cgo), const ECHOE = 16 +pkg syscall (linux-amd64-cgo), const ECHOK = 32 +pkg syscall (linux-amd64-cgo), const ECHOKE = 2048 +pkg syscall (linux-amd64-cgo), const ECHONL = 64 +pkg syscall (linux-amd64-cgo), const ECHOPRT = 1024 +pkg syscall (linux-amd64-cgo), const ECHRNG = 44 +pkg syscall (linux-amd64-cgo), const ECOMM = 70 +pkg syscall (linux-amd64-cgo), const ECONNABORTED = 103 +pkg syscall (linux-amd64-cgo), const ECONNREFUSED = 111 +pkg syscall (linux-amd64-cgo), const ECONNRESET = 104 +pkg syscall (linux-amd64-cgo), const EDEADLK = 35 +pkg syscall (linux-amd64-cgo), const EDEADLOCK = 35 +pkg syscall (linux-amd64-cgo), const EDESTADDRREQ = 89 +pkg syscall (linux-amd64-cgo), const EDOM = 33 +pkg syscall (linux-amd64-cgo), const EDOTDOT = 73 +pkg syscall (linux-amd64-cgo), const EDQUOT = 122 +pkg syscall (linux-amd64-cgo), const EEXIST = 17 +pkg syscall (linux-amd64-cgo), const EFAULT = 14 +pkg syscall (linux-amd64-cgo), const EFBIG = 27 +pkg syscall (linux-amd64-cgo), const EHOSTDOWN = 112 +pkg syscall (linux-amd64-cgo), const EHOSTUNREACH = 113 +pkg syscall (linux-amd64-cgo), const EIDRM = 43 +pkg syscall (linux-amd64-cgo), const EILSEQ = 84 +pkg syscall (linux-amd64-cgo), const EINPROGRESS = 115 +pkg syscall (linux-amd64-cgo), const EINTR = 4 +pkg syscall (linux-amd64-cgo), const EINVAL = 22 +pkg syscall (linux-amd64-cgo), const EIO = 5 +pkg syscall (linux-amd64-cgo), const EISCONN = 106 +pkg syscall (linux-amd64-cgo), const EISDIR = 21 +pkg syscall (linux-amd64-cgo), const EISNAM = 120 +pkg syscall (linux-amd64-cgo), const EKEYEXPIRED = 127 +pkg syscall (linux-amd64-cgo), const EKEYREJECTED = 129 +pkg syscall (linux-amd64-cgo), const EKEYREVOKED = 128 +pkg syscall (linux-amd64-cgo), const EL2HLT = 51 +pkg syscall (linux-amd64-cgo), const EL2NSYNC = 45 +pkg syscall (linux-amd64-cgo), const EL3HLT = 46 +pkg syscall (linux-amd64-cgo), const EL3RST = 47 +pkg syscall (linux-amd64-cgo), const ELIBACC = 79 +pkg syscall (linux-amd64-cgo), const ELIBBAD = 80 +pkg syscall (linux-amd64-cgo), const ELIBEXEC = 83 +pkg syscall (linux-amd64-cgo), const ELIBMAX = 82 +pkg syscall (linux-amd64-cgo), const ELIBSCN = 81 +pkg syscall (linux-amd64-cgo), const ELNRNG = 48 +pkg syscall (linux-amd64-cgo), const ELOOP = 40 +pkg syscall (linux-amd64-cgo), const EMEDIUMTYPE = 124 +pkg syscall (linux-amd64-cgo), const EMFILE = 24 +pkg syscall (linux-amd64-cgo), const EMLINK = 31 +pkg syscall (linux-amd64-cgo), const EMSGSIZE = 90 +pkg syscall (linux-amd64-cgo), const EMULTIHOP = 72 +pkg syscall (linux-amd64-cgo), const ENAMETOOLONG = 36 +pkg syscall (linux-amd64-cgo), const ENAVAIL = 119 +pkg syscall (linux-amd64-cgo), const ENETDOWN = 100 +pkg syscall (linux-amd64-cgo), const ENETRESET = 102 +pkg syscall (linux-amd64-cgo), const ENETUNREACH = 101 +pkg syscall (linux-amd64-cgo), const ENFILE = 23 +pkg syscall (linux-amd64-cgo), const ENOANO = 55 +pkg syscall (linux-amd64-cgo), const ENOBUFS = 105 +pkg syscall (linux-amd64-cgo), const ENOCSI = 50 +pkg syscall (linux-amd64-cgo), const ENODATA = 61 +pkg syscall (linux-amd64-cgo), const ENODEV = 19 +pkg syscall (linux-amd64-cgo), const ENOEXEC = 8 +pkg syscall (linux-amd64-cgo), const ENOKEY = 126 +pkg syscall (linux-amd64-cgo), const ENOLCK = 37 +pkg syscall (linux-amd64-cgo), const ENOLINK = 67 +pkg syscall (linux-amd64-cgo), const ENOMEDIUM = 123 +pkg syscall (linux-amd64-cgo), const ENOMEM = 12 +pkg syscall (linux-amd64-cgo), const ENOMSG = 42 +pkg syscall (linux-amd64-cgo), const ENONET = 64 +pkg syscall (linux-amd64-cgo), const ENOPKG = 65 +pkg syscall (linux-amd64-cgo), const ENOPROTOOPT = 92 +pkg syscall (linux-amd64-cgo), const ENOSPC = 28 +pkg syscall (linux-amd64-cgo), const ENOSR = 63 +pkg syscall (linux-amd64-cgo), const ENOSTR = 60 +pkg syscall (linux-amd64-cgo), const ENOSYS = 38 +pkg syscall (linux-amd64-cgo), const ENOTBLK = 15 +pkg syscall (linux-amd64-cgo), const ENOTCONN = 107 +pkg syscall (linux-amd64-cgo), const ENOTDIR = 20 +pkg syscall (linux-amd64-cgo), const ENOTEMPTY = 39 +pkg syscall (linux-amd64-cgo), const ENOTNAM = 118 +pkg syscall (linux-amd64-cgo), const ENOTRECOVERABLE = 131 +pkg syscall (linux-amd64-cgo), const ENOTSOCK = 88 +pkg syscall (linux-amd64-cgo), const ENOTSUP = 95 +pkg syscall (linux-amd64-cgo), const ENOTTY = 25 +pkg syscall (linux-amd64-cgo), const ENOTUNIQ = 76 +pkg syscall (linux-amd64-cgo), const ENXIO = 6 +pkg syscall (linux-amd64-cgo), const EOPNOTSUPP = 95 +pkg syscall (linux-amd64-cgo), const EOVERFLOW = 75 +pkg syscall (linux-amd64-cgo), const EOWNERDEAD = 130 +pkg syscall (linux-amd64-cgo), const EPERM = 1 +pkg syscall (linux-amd64-cgo), const EPFNOSUPPORT = 96 +pkg syscall (linux-amd64-cgo), const EPIPE = 32 +pkg syscall (linux-amd64-cgo), const EPOLLERR = 8 +pkg syscall (linux-amd64-cgo), const EPOLLET = -2147483648 +pkg syscall (linux-amd64-cgo), const EPOLLHUP = 16 +pkg syscall (linux-amd64-cgo), const EPOLLIN = 1 +pkg syscall (linux-amd64-cgo), const EPOLLMSG = 1024 +pkg syscall (linux-amd64-cgo), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-amd64-cgo), const EPOLLOUT = 4 +pkg syscall (linux-amd64-cgo), const EPOLLPRI = 2 +pkg syscall (linux-amd64-cgo), const EPOLLRDBAND = 128 +pkg syscall (linux-amd64-cgo), const EPOLLRDHUP = 8192 +pkg syscall (linux-amd64-cgo), const EPOLLRDNORM = 64 +pkg syscall (linux-amd64-cgo), const EPOLLWRBAND = 512 +pkg syscall (linux-amd64-cgo), const EPOLLWRNORM = 256 +pkg syscall (linux-amd64-cgo), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-amd64-cgo), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-amd64-cgo), const EPROTO = 71 +pkg syscall (linux-amd64-cgo), const EPROTONOSUPPORT = 93 +pkg syscall (linux-amd64-cgo), const EPROTOTYPE = 91 +pkg syscall (linux-amd64-cgo), const ERANGE = 34 +pkg syscall (linux-amd64-cgo), const EREMCHG = 78 +pkg syscall (linux-amd64-cgo), const EREMOTE = 66 +pkg syscall (linux-amd64-cgo), const EREMOTEIO = 121 +pkg syscall (linux-amd64-cgo), const ERESTART = 85 +pkg syscall (linux-amd64-cgo), const ERFKILL = 132 +pkg syscall (linux-amd64-cgo), const EROFS = 30 +pkg syscall (linux-amd64-cgo), const ESHUTDOWN = 108 +pkg syscall (linux-amd64-cgo), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-amd64-cgo), const ESPIPE = 29 +pkg syscall (linux-amd64-cgo), const ESRCH = 3 +pkg syscall (linux-amd64-cgo), const ESRMNT = 69 +pkg syscall (linux-amd64-cgo), const ESTALE = 116 +pkg syscall (linux-amd64-cgo), const ESTRPIPE = 86 +pkg syscall (linux-amd64-cgo), const ETH_P_1588 = 35063 +pkg syscall (linux-amd64-cgo), const ETH_P_8021Q = 33024 +pkg syscall (linux-amd64-cgo), const ETH_P_802_2 = 4 +pkg syscall (linux-amd64-cgo), const ETH_P_802_3 = 1 +pkg syscall (linux-amd64-cgo), const ETH_P_AARP = 33011 +pkg syscall (linux-amd64-cgo), const ETH_P_ALL = 3 +pkg syscall (linux-amd64-cgo), const ETH_P_AOE = 34978 +pkg syscall (linux-amd64-cgo), const ETH_P_ARCNET = 26 +pkg syscall (linux-amd64-cgo), const ETH_P_ARP = 2054 +pkg syscall (linux-amd64-cgo), const ETH_P_ATALK = 32923 +pkg syscall (linux-amd64-cgo), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-amd64-cgo), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-amd64-cgo), const ETH_P_AX25 = 2 +pkg syscall (linux-amd64-cgo), const ETH_P_BPQ = 2303 +pkg syscall (linux-amd64-cgo), const ETH_P_CAIF = 247 +pkg syscall (linux-amd64-cgo), const ETH_P_CAN = 12 +pkg syscall (linux-amd64-cgo), const ETH_P_CONTROL = 22 +pkg syscall (linux-amd64-cgo), const ETH_P_CUST = 24582 +pkg syscall (linux-amd64-cgo), const ETH_P_DDCMP = 6 +pkg syscall (linux-amd64-cgo), const ETH_P_DEC = 24576 +pkg syscall (linux-amd64-cgo), const ETH_P_DIAG = 24581 +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-amd64-cgo), const ETH_P_DSA = 27 +pkg syscall (linux-amd64-cgo), const ETH_P_ECONET = 24 +pkg syscall (linux-amd64-cgo), const ETH_P_EDSA = 56026 +pkg syscall (linux-amd64-cgo), const ETH_P_FCOE = 35078 +pkg syscall (linux-amd64-cgo), const ETH_P_FIP = 35092 +pkg syscall (linux-amd64-cgo), const ETH_P_HDLC = 25 +pkg syscall (linux-amd64-cgo), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-amd64-cgo), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-amd64-cgo), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-amd64-cgo), const ETH_P_IP = 2048 +pkg syscall (linux-amd64-cgo), const ETH_P_IPV6 = 34525 +pkg syscall (linux-amd64-cgo), const ETH_P_IPX = 33079 +pkg syscall (linux-amd64-cgo), const ETH_P_IRDA = 23 +pkg syscall (linux-amd64-cgo), const ETH_P_LAT = 24580 +pkg syscall (linux-amd64-cgo), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-amd64-cgo), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-amd64-cgo), const ETH_P_LOOP = 96 +pkg syscall (linux-amd64-cgo), const ETH_P_MOBITEX = 21 +pkg syscall (linux-amd64-cgo), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-amd64-cgo), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-amd64-cgo), const ETH_P_PAE = 34958 +pkg syscall (linux-amd64-cgo), const ETH_P_PAUSE = 34824 +pkg syscall (linux-amd64-cgo), const ETH_P_PHONET = 245 +pkg syscall (linux-amd64-cgo), const ETH_P_PPPTALK = 16 +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_MP = 8 +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-amd64-cgo), const ETH_P_PUP = 512 +pkg syscall (linux-amd64-cgo), const ETH_P_PUPAT = 513 +pkg syscall (linux-amd64-cgo), const ETH_P_RARP = 32821 +pkg syscall (linux-amd64-cgo), const ETH_P_SCA = 24583 +pkg syscall (linux-amd64-cgo), const ETH_P_SLOW = 34825 +pkg syscall (linux-amd64-cgo), const ETH_P_SNAP = 5 +pkg syscall (linux-amd64-cgo), const ETH_P_TEB = 25944 +pkg syscall (linux-amd64-cgo), const ETH_P_TIPC = 35018 +pkg syscall (linux-amd64-cgo), const ETH_P_TRAILER = 28 +pkg syscall (linux-amd64-cgo), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-amd64-cgo), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-amd64-cgo), const ETH_P_WCCP = 34878 +pkg syscall (linux-amd64-cgo), const ETH_P_X25 = 2053 +pkg syscall (linux-amd64-cgo), const ETIME = 62 +pkg syscall (linux-amd64-cgo), const ETIMEDOUT = 110 +pkg syscall (linux-amd64-cgo), const ETOOMANYREFS = 109 +pkg syscall (linux-amd64-cgo), const ETXTBSY = 26 +pkg syscall (linux-amd64-cgo), const EUCLEAN = 117 +pkg syscall (linux-amd64-cgo), const EUNATCH = 49 +pkg syscall (linux-amd64-cgo), const EUSERS = 87 +pkg syscall (linux-amd64-cgo), const EWOULDBLOCK = 11 +pkg syscall (linux-amd64-cgo), const EXDEV = 18 +pkg syscall (linux-amd64-cgo), const EXFULL = 54 +pkg syscall (linux-amd64-cgo), const FD_CLOEXEC = 1 +pkg syscall (linux-amd64-cgo), const FD_SETSIZE = 1024 +pkg syscall (linux-amd64-cgo), const FLUSHO = 4096 +pkg syscall (linux-amd64-cgo), const F_DUPFD = 0 +pkg syscall (linux-amd64-cgo), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-amd64-cgo), const F_EXLCK = 4 +pkg syscall (linux-amd64-cgo), const F_GETFD = 1 +pkg syscall (linux-amd64-cgo), const F_GETFL = 3 +pkg syscall (linux-amd64-cgo), const F_GETLEASE = 1025 +pkg syscall (linux-amd64-cgo), const F_GETLK = 5 +pkg syscall (linux-amd64-cgo), const F_GETLK64 = 5 +pkg syscall (linux-amd64-cgo), const F_GETOWN = 9 +pkg syscall (linux-amd64-cgo), const F_GETOWN_EX = 16 +pkg syscall (linux-amd64-cgo), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-amd64-cgo), const F_GETSIG = 11 +pkg syscall (linux-amd64-cgo), const F_LOCK = 1 +pkg syscall (linux-amd64-cgo), const F_NOTIFY = 1026 +pkg syscall (linux-amd64-cgo), const F_OK = 0 +pkg syscall (linux-amd64-cgo), const F_RDLCK = 0 +pkg syscall (linux-amd64-cgo), const F_SETFD = 2 +pkg syscall (linux-amd64-cgo), const F_SETFL = 4 +pkg syscall (linux-amd64-cgo), const F_SETLEASE = 1024 +pkg syscall (linux-amd64-cgo), const F_SETLK = 6 +pkg syscall (linux-amd64-cgo), const F_SETLK64 = 6 +pkg syscall (linux-amd64-cgo), const F_SETLKW = 7 +pkg syscall (linux-amd64-cgo), const F_SETLKW64 = 7 +pkg syscall (linux-amd64-cgo), const F_SETOWN = 8 +pkg syscall (linux-amd64-cgo), const F_SETOWN_EX = 15 +pkg syscall (linux-amd64-cgo), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-amd64-cgo), const F_SETSIG = 10 +pkg syscall (linux-amd64-cgo), const F_SHLCK = 8 +pkg syscall (linux-amd64-cgo), const F_TEST = 3 +pkg syscall (linux-amd64-cgo), const F_TLOCK = 2 +pkg syscall (linux-amd64-cgo), const F_ULOCK = 0 +pkg syscall (linux-amd64-cgo), const F_UNLCK = 2 +pkg syscall (linux-amd64-cgo), const F_WRLCK = 1 +pkg syscall (linux-amd64-cgo), const HUPCL = 1024 +pkg syscall (linux-amd64-cgo), const ICANON = 2 +pkg syscall (linux-amd64-cgo), const ICRNL = 256 +pkg syscall (linux-amd64-cgo), const IEXTEN = 32768 +pkg syscall (linux-amd64-cgo), const IFA_ADDRESS = 1 +pkg syscall (linux-amd64-cgo), const IFA_ANYCAST = 5 +pkg syscall (linux-amd64-cgo), const IFA_BROADCAST = 4 +pkg syscall (linux-amd64-cgo), const IFA_CACHEINFO = 6 +pkg syscall (linux-amd64-cgo), const IFA_F_DADFAILED = 8 +pkg syscall (linux-amd64-cgo), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-amd64-cgo), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-amd64-cgo), const IFA_F_NODAD = 2 +pkg syscall (linux-amd64-cgo), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-amd64-cgo), const IFA_F_PERMANENT = 128 +pkg syscall (linux-amd64-cgo), const IFA_F_SECONDARY = 1 +pkg syscall (linux-amd64-cgo), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-amd64-cgo), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-amd64-cgo), const IFA_LABEL = 3 +pkg syscall (linux-amd64-cgo), const IFA_LOCAL = 2 +pkg syscall (linux-amd64-cgo), const IFA_MAX = 7 +pkg syscall (linux-amd64-cgo), const IFA_MULTICAST = 7 +pkg syscall (linux-amd64-cgo), const IFA_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (linux-amd64-cgo), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-amd64-cgo), const IFF_DEBUG = 4 +pkg syscall (linux-amd64-cgo), const IFF_DYNAMIC = 32768 +pkg syscall (linux-amd64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (linux-amd64-cgo), const IFF_MASTER = 1024 +pkg syscall (linux-amd64-cgo), const IFF_MULTICAST = 4096 +pkg syscall (linux-amd64-cgo), const IFF_NOARP = 128 +pkg syscall (linux-amd64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (linux-amd64-cgo), const IFF_NO_PI = 4096 +pkg syscall (linux-amd64-cgo), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-amd64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (linux-amd64-cgo), const IFF_PORTSEL = 8192 +pkg syscall (linux-amd64-cgo), const IFF_PROMISC = 256 +pkg syscall (linux-amd64-cgo), const IFF_RUNNING = 64 +pkg syscall (linux-amd64-cgo), const IFF_SLAVE = 2048 +pkg syscall (linux-amd64-cgo), const IFF_TAP = 2 +pkg syscall (linux-amd64-cgo), const IFF_TUN = 1 +pkg syscall (linux-amd64-cgo), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-amd64-cgo), const IFF_VNET_HDR = 16384 +pkg syscall (linux-amd64-cgo), const IFLA_ADDRESS = 1 +pkg syscall (linux-amd64-cgo), const IFLA_BROADCAST = 2 +pkg syscall (linux-amd64-cgo), const IFLA_COST = 8 +pkg syscall (linux-amd64-cgo), const IFLA_IFALIAS = 20 +pkg syscall (linux-amd64-cgo), const IFLA_IFNAME = 3 +pkg syscall (linux-amd64-cgo), const IFLA_LINK = 5 +pkg syscall (linux-amd64-cgo), const IFLA_LINKINFO = 18 +pkg syscall (linux-amd64-cgo), const IFLA_LINKMODE = 17 +pkg syscall (linux-amd64-cgo), const IFLA_MAP = 14 +pkg syscall (linux-amd64-cgo), const IFLA_MASTER = 10 +pkg syscall (linux-amd64-cgo), const IFLA_MAX = 29 +pkg syscall (linux-amd64-cgo), const IFLA_MTU = 4 +pkg syscall (linux-amd64-cgo), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-amd64-cgo), const IFLA_OPERSTATE = 16 +pkg syscall (linux-amd64-cgo), const IFLA_PRIORITY = 9 +pkg syscall (linux-amd64-cgo), const IFLA_PROTINFO = 12 +pkg syscall (linux-amd64-cgo), const IFLA_QDISC = 6 +pkg syscall (linux-amd64-cgo), const IFLA_STATS = 7 +pkg syscall (linux-amd64-cgo), const IFLA_TXQLEN = 13 +pkg syscall (linux-amd64-cgo), const IFLA_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const IFLA_WEIGHT = 15 +pkg syscall (linux-amd64-cgo), const IFLA_WIRELESS = 11 +pkg syscall (linux-amd64-cgo), const IFNAMSIZ = 16 +pkg syscall (linux-amd64-cgo), const IGNBRK = 1 +pkg syscall (linux-amd64-cgo), const IGNCR = 128 +pkg syscall (linux-amd64-cgo), const IGNPAR = 4 +pkg syscall (linux-amd64-cgo), const IMAXBEL = 8192 +pkg syscall (linux-amd64-cgo), const INLCR = 64 +pkg syscall (linux-amd64-cgo), const INPCK = 16 +pkg syscall (linux-amd64-cgo), const IN_ACCESS = 1 +pkg syscall (linux-amd64-cgo), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-amd64-cgo), const IN_ATTRIB = 4 +pkg syscall (linux-amd64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-amd64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (linux-amd64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-amd64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-amd64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-amd64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-amd64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-amd64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-amd64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (linux-amd64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-amd64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-amd64-cgo), const IN_CLOEXEC = 524288 +pkg syscall (linux-amd64-cgo), const IN_CLOSE = 24 +pkg syscall (linux-amd64-cgo), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-amd64-cgo), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-amd64-cgo), const IN_CREATE = 256 +pkg syscall (linux-amd64-cgo), const IN_DELETE = 512 +pkg syscall (linux-amd64-cgo), const IN_DELETE_SELF = 1024 +pkg syscall (linux-amd64-cgo), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-amd64-cgo), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-amd64-cgo), const IN_IGNORED = 32768 +pkg syscall (linux-amd64-cgo), const IN_ISDIR = 1073741824 +pkg syscall (linux-amd64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (linux-amd64-cgo), const IN_MASK_ADD = 536870912 +pkg syscall (linux-amd64-cgo), const IN_MODIFY = 2 +pkg syscall (linux-amd64-cgo), const IN_MOVE = 192 +pkg syscall (linux-amd64-cgo), const IN_MOVED_FROM = 64 +pkg syscall (linux-amd64-cgo), const IN_MOVED_TO = 128 +pkg syscall (linux-amd64-cgo), const IN_MOVE_SELF = 2048 +pkg syscall (linux-amd64-cgo), const IN_NONBLOCK = 2048 +pkg syscall (linux-amd64-cgo), const IN_ONESHOT = 2147483648 +pkg syscall (linux-amd64-cgo), const IN_ONLYDIR = 16777216 +pkg syscall (linux-amd64-cgo), const IN_OPEN = 32 +pkg syscall (linux-amd64-cgo), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-amd64-cgo), const IN_UNMOUNT = 8192 +pkg syscall (linux-amd64-cgo), const IPPROTO_AH = 51 +pkg syscall (linux-amd64-cgo), const IPPROTO_COMP = 108 +pkg syscall (linux-amd64-cgo), const IPPROTO_DCCP = 33 +pkg syscall (linux-amd64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-amd64-cgo), const IPPROTO_EGP = 8 +pkg syscall (linux-amd64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (linux-amd64-cgo), const IPPROTO_ESP = 50 +pkg syscall (linux-amd64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-amd64-cgo), const IPPROTO_GRE = 47 +pkg syscall (linux-amd64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-amd64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (linux-amd64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-amd64-cgo), const IPPROTO_IDP = 22 +pkg syscall (linux-amd64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (linux-amd64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (linux-amd64-cgo), const IPPROTO_MTP = 92 +pkg syscall (linux-amd64-cgo), const IPPROTO_NONE = 59 +pkg syscall (linux-amd64-cgo), const IPPROTO_PIM = 103 +pkg syscall (linux-amd64-cgo), const IPPROTO_PUP = 12 +pkg syscall (linux-amd64-cgo), const IPPROTO_RAW = 255 +pkg syscall (linux-amd64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (linux-amd64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (linux-amd64-cgo), const IPPROTO_SCTP = 132 +pkg syscall (linux-amd64-cgo), const IPPROTO_TP = 29 +pkg syscall (linux-amd64-cgo), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-amd64-cgo), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-amd64-cgo), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-amd64-cgo), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-amd64-cgo), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-amd64-cgo), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-amd64-cgo), const IPV6_2292RTHDR = 5 +pkg syscall (linux-amd64-cgo), const IPV6_ADDRFORM = 1 +pkg syscall (linux-amd64-cgo), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-amd64-cgo), const IPV6_AUTHHDR = 10 +pkg syscall (linux-amd64-cgo), const IPV6_CHECKSUM = 7 +pkg syscall (linux-amd64-cgo), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-amd64-cgo), const IPV6_DSTOPTS = 59 +pkg syscall (linux-amd64-cgo), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-amd64-cgo), const IPV6_HOPOPTS = 54 +pkg syscall (linux-amd64-cgo), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-amd64-cgo), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-amd64-cgo), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-amd64-cgo), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-amd64-cgo), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-amd64-cgo), const IPV6_MTU = 24 +pkg syscall (linux-amd64-cgo), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-amd64-cgo), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-amd64-cgo), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-amd64-cgo), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-amd64-cgo), const IPV6_NEXTHOP = 9 +pkg syscall (linux-amd64-cgo), const IPV6_PKTINFO = 50 +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-amd64-cgo), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-amd64-cgo), const IPV6_RECVERR = 25 +pkg syscall (linux-amd64-cgo), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-amd64-cgo), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-amd64-cgo), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-amd64-cgo), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-amd64-cgo), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-amd64-cgo), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR = 57 +pkg syscall (linux-amd64-cgo), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-amd64-cgo), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-amd64-cgo), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-amd64-cgo), const IPV6_TCLASS = 67 +pkg syscall (linux-amd64-cgo), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-amd64-cgo), const IPV6_V6ONLY = 26 +pkg syscall (linux-amd64-cgo), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-amd64-cgo), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-amd64-cgo), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-amd64-cgo), const IP_DF = 16384 +pkg syscall (linux-amd64-cgo), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-amd64-cgo), const IP_FREEBIND = 15 +pkg syscall (linux-amd64-cgo), const IP_HDRINCL = 3 +pkg syscall (linux-amd64-cgo), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-amd64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (linux-amd64-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-amd64-cgo), const IP_MF = 8192 +pkg syscall (linux-amd64-cgo), const IP_MINTTL = 21 +pkg syscall (linux-amd64-cgo), const IP_MSFILTER = 41 +pkg syscall (linux-amd64-cgo), const IP_MSS = 576 +pkg syscall (linux-amd64-cgo), const IP_MTU = 14 +pkg syscall (linux-amd64-cgo), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-amd64-cgo), const IP_MULTICAST_IF = 32 +pkg syscall (linux-amd64-cgo), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-amd64-cgo), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-amd64-cgo), const IP_OFFMASK = 8191 +pkg syscall (linux-amd64-cgo), const IP_OPTIONS = 4 +pkg syscall (linux-amd64-cgo), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-amd64-cgo), const IP_PASSSEC = 18 +pkg syscall (linux-amd64-cgo), const IP_PKTINFO = 8 +pkg syscall (linux-amd64-cgo), const IP_PKTOPTIONS = 9 +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC = 10 +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-amd64-cgo), const IP_RECVERR = 11 +pkg syscall (linux-amd64-cgo), const IP_RECVOPTS = 6 +pkg syscall (linux-amd64-cgo), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-amd64-cgo), const IP_RECVRETOPTS = 7 +pkg syscall (linux-amd64-cgo), const IP_RECVTOS = 13 +pkg syscall (linux-amd64-cgo), const IP_RECVTTL = 12 +pkg syscall (linux-amd64-cgo), const IP_RETOPTS = 7 +pkg syscall (linux-amd64-cgo), const IP_RF = 32768 +pkg syscall (linux-amd64-cgo), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-amd64-cgo), const IP_TOS = 1 +pkg syscall (linux-amd64-cgo), const IP_TRANSPARENT = 19 +pkg syscall (linux-amd64-cgo), const IP_TTL = 2 +pkg syscall (linux-amd64-cgo), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-amd64-cgo), const IP_XFRM_POLICY = 17 +pkg syscall (linux-amd64-cgo), const ISIG = 1 +pkg syscall (linux-amd64-cgo), const ISTRIP = 32 +pkg syscall (linux-amd64-cgo), const IUCLC = 512 +pkg syscall (linux-amd64-cgo), const IUTF8 = 16384 +pkg syscall (linux-amd64-cgo), const IXANY = 2048 +pkg syscall (linux-amd64-cgo), const IXOFF = 4096 +pkg syscall (linux-amd64-cgo), const IXON = 1024 +pkg syscall (linux-amd64-cgo), const ImplementsGetwd = true +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-amd64-cgo), const LOCK_EX = 2 +pkg syscall (linux-amd64-cgo), const LOCK_NB = 4 +pkg syscall (linux-amd64-cgo), const LOCK_SH = 1 +pkg syscall (linux-amd64-cgo), const LOCK_UN = 8 +pkg syscall (linux-amd64-cgo), const MADV_DOFORK = 11 +pkg syscall (linux-amd64-cgo), const MADV_DONTFORK = 10 +pkg syscall (linux-amd64-cgo), const MADV_DONTNEED = 4 +pkg syscall (linux-amd64-cgo), const MADV_HUGEPAGE = 14 +pkg syscall (linux-amd64-cgo), const MADV_HWPOISON = 100 +pkg syscall (linux-amd64-cgo), const MADV_MERGEABLE = 12 +pkg syscall (linux-amd64-cgo), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-amd64-cgo), const MADV_NORMAL = 0 +pkg syscall (linux-amd64-cgo), const MADV_RANDOM = 1 +pkg syscall (linux-amd64-cgo), const MADV_REMOVE = 9 +pkg syscall (linux-amd64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-amd64-cgo), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-amd64-cgo), const MADV_WILLNEED = 3 +pkg syscall (linux-amd64-cgo), const MAP_32BIT = 64 +pkg syscall (linux-amd64-cgo), const MAP_ANON = 32 +pkg syscall (linux-amd64-cgo), const MAP_ANONYMOUS = 32 +pkg syscall (linux-amd64-cgo), const MAP_DENYWRITE = 2048 +pkg syscall (linux-amd64-cgo), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-amd64-cgo), const MAP_FILE = 0 +pkg syscall (linux-amd64-cgo), const MAP_FIXED = 16 +pkg syscall (linux-amd64-cgo), const MAP_GROWSDOWN = 256 +pkg syscall (linux-amd64-cgo), const MAP_HUGETLB = 262144 +pkg syscall (linux-amd64-cgo), const MAP_LOCKED = 8192 +pkg syscall (linux-amd64-cgo), const MAP_NONBLOCK = 65536 +pkg syscall (linux-amd64-cgo), const MAP_NORESERVE = 16384 +pkg syscall (linux-amd64-cgo), const MAP_POPULATE = 32768 +pkg syscall (linux-amd64-cgo), const MAP_PRIVATE = 2 +pkg syscall (linux-amd64-cgo), const MAP_SHARED = 1 +pkg syscall (linux-amd64-cgo), const MAP_STACK = 131072 +pkg syscall (linux-amd64-cgo), const MAP_TYPE = 15 +pkg syscall (linux-amd64-cgo), const MCL_CURRENT = 1 +pkg syscall (linux-amd64-cgo), const MCL_FUTURE = 2 +pkg syscall (linux-amd64-cgo), const MNT_DETACH = 2 +pkg syscall (linux-amd64-cgo), const MNT_EXPIRE = 4 +pkg syscall (linux-amd64-cgo), const MNT_FORCE = 1 +pkg syscall (linux-amd64-cgo), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-amd64-cgo), const MSG_CONFIRM = 2048 +pkg syscall (linux-amd64-cgo), const MSG_CTRUNC = 8 +pkg syscall (linux-amd64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (linux-amd64-cgo), const MSG_DONTWAIT = 64 +pkg syscall (linux-amd64-cgo), const MSG_EOR = 128 +pkg syscall (linux-amd64-cgo), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-amd64-cgo), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-amd64-cgo), const MSG_FASTOPEN ideal-int +pkg syscall (linux-amd64-cgo), const MSG_FIN = 512 +pkg syscall (linux-amd64-cgo), const MSG_MORE = 32768 +pkg syscall (linux-amd64-cgo), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-amd64-cgo), const MSG_OOB = 1 +pkg syscall (linux-amd64-cgo), const MSG_PEEK = 2 +pkg syscall (linux-amd64-cgo), const MSG_PROXY = 16 +pkg syscall (linux-amd64-cgo), const MSG_RST = 4096 +pkg syscall (linux-amd64-cgo), const MSG_SYN = 1024 +pkg syscall (linux-amd64-cgo), const MSG_TRUNC = 32 +pkg syscall (linux-amd64-cgo), const MSG_TRYHARD = 4 +pkg syscall (linux-amd64-cgo), const MSG_WAITALL = 256 +pkg syscall (linux-amd64-cgo), const MSG_WAITFORONE = 65536 +pkg syscall (linux-amd64-cgo), const MS_ACTIVE = 1073741824 +pkg syscall (linux-amd64-cgo), const MS_ASYNC = 1 +pkg syscall (linux-amd64-cgo), const MS_BIND = 4096 +pkg syscall (linux-amd64-cgo), const MS_DIRSYNC = 128 +pkg syscall (linux-amd64-cgo), const MS_INVALIDATE = 2 +pkg syscall (linux-amd64-cgo), const MS_I_VERSION = 8388608 +pkg syscall (linux-amd64-cgo), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-amd64-cgo), const MS_MANDLOCK = 64 +pkg syscall (linux-amd64-cgo), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-amd64-cgo), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-amd64-cgo), const MS_MOVE = 8192 +pkg syscall (linux-amd64-cgo), const MS_NOATIME = 1024 +pkg syscall (linux-amd64-cgo), const MS_NODEV = 4 +pkg syscall (linux-amd64-cgo), const MS_NODIRATIME = 2048 +pkg syscall (linux-amd64-cgo), const MS_NOEXEC = 8 +pkg syscall (linux-amd64-cgo), const MS_NOSUID = 2 +pkg syscall (linux-amd64-cgo), const MS_NOUSER = -2147483648 +pkg syscall (linux-amd64-cgo), const MS_POSIXACL = 65536 +pkg syscall (linux-amd64-cgo), const MS_PRIVATE = 262144 +pkg syscall (linux-amd64-cgo), const MS_RDONLY = 1 +pkg syscall (linux-amd64-cgo), const MS_REC = 16384 +pkg syscall (linux-amd64-cgo), const MS_RELATIME = 2097152 +pkg syscall (linux-amd64-cgo), const MS_REMOUNT = 32 +pkg syscall (linux-amd64-cgo), const MS_RMT_MASK = 8388689 +pkg syscall (linux-amd64-cgo), const MS_SHARED = 1048576 +pkg syscall (linux-amd64-cgo), const MS_SILENT = 32768 +pkg syscall (linux-amd64-cgo), const MS_SLAVE = 524288 +pkg syscall (linux-amd64-cgo), const MS_STRICTATIME = 16777216 +pkg syscall (linux-amd64-cgo), const MS_SYNC = 4 +pkg syscall (linux-amd64-cgo), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-amd64-cgo), const MS_UNBINDABLE = 131072 +pkg syscall (linux-amd64-cgo), const NAME_MAX = 255 +pkg syscall (linux-amd64-cgo), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-amd64-cgo), const NETLINK_AUDIT = 9 +pkg syscall (linux-amd64-cgo), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-amd64-cgo), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-amd64-cgo), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-amd64-cgo), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-amd64-cgo), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-amd64-cgo), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-amd64-cgo), const NETLINK_FIREWALL = 3 +pkg syscall (linux-amd64-cgo), const NETLINK_GENERIC = 16 +pkg syscall (linux-amd64-cgo), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-amd64-cgo), const NETLINK_IP6_FW = 13 +pkg syscall (linux-amd64-cgo), const NETLINK_ISCSI = 8 +pkg syscall (linux-amd64-cgo), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-amd64-cgo), const NETLINK_NETFILTER = 12 +pkg syscall (linux-amd64-cgo), const NETLINK_NFLOG = 5 +pkg syscall (linux-amd64-cgo), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-amd64-cgo), const NETLINK_PKTINFO = 3 +pkg syscall (linux-amd64-cgo), const NETLINK_ROUTE = 0 +pkg syscall (linux-amd64-cgo), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-amd64-cgo), const NETLINK_SELINUX = 7 +pkg syscall (linux-amd64-cgo), const NETLINK_UNUSED = 1 +pkg syscall (linux-amd64-cgo), const NETLINK_USERSOCK = 2 +pkg syscall (linux-amd64-cgo), const NETLINK_XFRM = 6 +pkg syscall (linux-amd64-cgo), const NLA_ALIGNTO = 4 +pkg syscall (linux-amd64-cgo), const NLA_F_NESTED = 32768 +pkg syscall (linux-amd64-cgo), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-amd64-cgo), const NLA_HDRLEN = 4 +pkg syscall (linux-amd64-cgo), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-amd64-cgo), const NLMSG_DONE = 3 +pkg syscall (linux-amd64-cgo), const NLMSG_ERROR = 2 +pkg syscall (linux-amd64-cgo), const NLMSG_HDRLEN = 16 +pkg syscall (linux-amd64-cgo), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-amd64-cgo), const NLMSG_NOOP = 1 +pkg syscall (linux-amd64-cgo), const NLMSG_OVERRUN = 4 +pkg syscall (linux-amd64-cgo), const NLM_F_ACK = 4 +pkg syscall (linux-amd64-cgo), const NLM_F_APPEND = 2048 +pkg syscall (linux-amd64-cgo), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-amd64-cgo), const NLM_F_CREATE = 1024 +pkg syscall (linux-amd64-cgo), const NLM_F_DUMP = 768 +pkg syscall (linux-amd64-cgo), const NLM_F_ECHO = 8 +pkg syscall (linux-amd64-cgo), const NLM_F_EXCL = 512 +pkg syscall (linux-amd64-cgo), const NLM_F_MATCH = 512 +pkg syscall (linux-amd64-cgo), const NLM_F_MULTI = 2 +pkg syscall (linux-amd64-cgo), const NLM_F_REPLACE = 256 +pkg syscall (linux-amd64-cgo), const NLM_F_REQUEST = 1 +pkg syscall (linux-amd64-cgo), const NLM_F_ROOT = 256 +pkg syscall (linux-amd64-cgo), const NOFLSH = 128 +pkg syscall (linux-amd64-cgo), const OCRNL = 8 +pkg syscall (linux-amd64-cgo), const OFDEL = 128 +pkg syscall (linux-amd64-cgo), const OFILL = 64 +pkg syscall (linux-amd64-cgo), const OLCUC = 2 +pkg syscall (linux-amd64-cgo), const ONLCR = 4 +pkg syscall (linux-amd64-cgo), const ONLRET = 32 +pkg syscall (linux-amd64-cgo), const ONOCR = 16 +pkg syscall (linux-amd64-cgo), const OPOST = 1 +pkg syscall (linux-amd64-cgo), const O_ACCMODE = 3 +pkg syscall (linux-amd64-cgo), const O_APPEND = 1024 +pkg syscall (linux-amd64-cgo), const O_ASYNC = 8192 +pkg syscall (linux-amd64-cgo), const O_CLOEXEC = 524288 +pkg syscall (linux-amd64-cgo), const O_CREAT = 64 +pkg syscall (linux-amd64-cgo), const O_DIRECT = 16384 +pkg syscall (linux-amd64-cgo), const O_DIRECTORY = 65536 +pkg syscall (linux-amd64-cgo), const O_DSYNC = 4096 +pkg syscall (linux-amd64-cgo), const O_EXCL = 128 +pkg syscall (linux-amd64-cgo), const O_FSYNC = 1052672 +pkg syscall (linux-amd64-cgo), const O_LARGEFILE = 0 +pkg syscall (linux-amd64-cgo), const O_NDELAY = 2048 +pkg syscall (linux-amd64-cgo), const O_NOATIME = 262144 +pkg syscall (linux-amd64-cgo), const O_NOCTTY = 256 +pkg syscall (linux-amd64-cgo), const O_NOFOLLOW = 131072 +pkg syscall (linux-amd64-cgo), const O_NONBLOCK = 2048 +pkg syscall (linux-amd64-cgo), const O_RSYNC = 1052672 +pkg syscall (linux-amd64-cgo), const O_SYNC = 1052672 +pkg syscall (linux-amd64-cgo), const O_TRUNC = 512 +pkg syscall (linux-amd64-cgo), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-amd64-cgo), const PACKET_BROADCAST = 1 +pkg syscall (linux-amd64-cgo), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-amd64-cgo), const PACKET_FASTROUTE = 6 +pkg syscall (linux-amd64-cgo), const PACKET_HOST = 0 +pkg syscall (linux-amd64-cgo), const PACKET_LOOPBACK = 5 +pkg syscall (linux-amd64-cgo), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-amd64-cgo), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-amd64-cgo), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-amd64-cgo), const PACKET_MULTICAST = 2 +pkg syscall (linux-amd64-cgo), const PACKET_OTHERHOST = 3 +pkg syscall (linux-amd64-cgo), const PACKET_OUTGOING = 4 +pkg syscall (linux-amd64-cgo), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-amd64-cgo), const PACKET_RX_RING = 5 +pkg syscall (linux-amd64-cgo), const PACKET_STATISTICS = 6 +pkg syscall (linux-amd64-cgo), const PARENB = 256 +pkg syscall (linux-amd64-cgo), const PARMRK = 8 +pkg syscall (linux-amd64-cgo), const PARODD = 512 +pkg syscall (linux-amd64-cgo), const PENDIN = 16384 +pkg syscall (linux-amd64-cgo), const PROT_EXEC = 4 +pkg syscall (linux-amd64-cgo), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-amd64-cgo), const PROT_GROWSUP = 33554432 +pkg syscall (linux-amd64-cgo), const PROT_NONE = 0 +pkg syscall (linux-amd64-cgo), const PROT_READ = 1 +pkg syscall (linux-amd64-cgo), const PROT_WRITE = 2 +pkg syscall (linux-amd64-cgo), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-amd64-cgo), const PR_CAPBSET_READ = 23 +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-amd64-cgo), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-amd64-cgo), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-amd64-cgo), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-amd64-cgo), const PR_GET_ENDIAN = 19 +pkg syscall (linux-amd64-cgo), const PR_GET_FPEMU = 9 +pkg syscall (linux-amd64-cgo), const PR_GET_FPEXC = 11 +pkg syscall (linux-amd64-cgo), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-amd64-cgo), const PR_GET_NAME = 16 +pkg syscall (linux-amd64-cgo), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-amd64-cgo), const PR_GET_SECCOMP = 21 +pkg syscall (linux-amd64-cgo), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-amd64-cgo), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-amd64-cgo), const PR_GET_TIMING = 13 +pkg syscall (linux-amd64-cgo), const PR_GET_TSC = 25 +pkg syscall (linux-amd64-cgo), const PR_GET_UNALIGN = 5 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL = 33 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-amd64-cgo), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-amd64-cgo), const PR_SET_ENDIAN = 20 +pkg syscall (linux-amd64-cgo), const PR_SET_FPEMU = 10 +pkg syscall (linux-amd64-cgo), const PR_SET_FPEXC = 12 +pkg syscall (linux-amd64-cgo), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-amd64-cgo), const PR_SET_NAME = 15 +pkg syscall (linux-amd64-cgo), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-amd64-cgo), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-amd64-cgo), const PR_SET_SECCOMP = 22 +pkg syscall (linux-amd64-cgo), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-amd64-cgo), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-amd64-cgo), const PR_SET_TIMING = 14 +pkg syscall (linux-amd64-cgo), const PR_SET_TSC = 26 +pkg syscall (linux-amd64-cgo), const PR_SET_UNALIGN = 6 +pkg syscall (linux-amd64-cgo), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-amd64-cgo), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-amd64-cgo), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-amd64-cgo), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-amd64-cgo), const PR_TSC_ENABLE = 1 +pkg syscall (linux-amd64-cgo), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-amd64-cgo), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-amd64-cgo), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-amd64-cgo), const PTRACE_ARCH_PRCTL = 30 +pkg syscall (linux-amd64-cgo), const PTRACE_ATTACH = 16 +pkg syscall (linux-amd64-cgo), const PTRACE_CONT = 7 +pkg syscall (linux-amd64-cgo), const PTRACE_DETACH = 17 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-amd64-cgo), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-amd64-cgo), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-amd64-cgo), const PTRACE_GETFPXREGS = 18 +pkg syscall (linux-amd64-cgo), const PTRACE_GETREGS = 12 +pkg syscall (linux-amd64-cgo), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-amd64-cgo), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-amd64-cgo), const PTRACE_GET_THREAD_AREA = 25 +pkg syscall (linux-amd64-cgo), const PTRACE_KILL = 8 +pkg syscall (linux-amd64-cgo), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-amd64-cgo), const PTRACE_O_MASK = 127 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-amd64-cgo), const PTRACE_POKEDATA = 5 +pkg syscall (linux-amd64-cgo), const PTRACE_POKETEXT = 4 +pkg syscall (linux-amd64-cgo), const PTRACE_POKEUSR = 6 +pkg syscall (linux-amd64-cgo), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-amd64-cgo), const PTRACE_SETFPXREGS = 19 +pkg syscall (linux-amd64-cgo), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-amd64-cgo), const PTRACE_SETREGS = 13 +pkg syscall (linux-amd64-cgo), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-amd64-cgo), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-amd64-cgo), const PTRACE_SET_THREAD_AREA = 26 +pkg syscall (linux-amd64-cgo), const PTRACE_SINGLEBLOCK = 33 +pkg syscall (linux-amd64-cgo), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-amd64-cgo), const PTRACE_SYSCALL = 24 +pkg syscall (linux-amd64-cgo), const PTRACE_SYSEMU = 31 +pkg syscall (linux-amd64-cgo), const PTRACE_SYSEMU_SINGLESTEP = 32 +pkg syscall (linux-amd64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (linux-amd64-cgo), const PathMax = 4096 +pkg syscall (linux-amd64-cgo), const RLIMIT_AS = 9 +pkg syscall (linux-amd64-cgo), const RLIMIT_CORE = 4 +pkg syscall (linux-amd64-cgo), const RLIMIT_CPU = 0 +pkg syscall (linux-amd64-cgo), const RLIMIT_DATA = 2 +pkg syscall (linux-amd64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (linux-amd64-cgo), const RLIMIT_NOFILE = 7 +pkg syscall (linux-amd64-cgo), const RLIMIT_STACK = 3 +pkg syscall (linux-amd64-cgo), const RLIM_INFINITY = -1 +pkg syscall (linux-amd64-cgo), const RTAX_ADVMSS = 8 +pkg syscall (linux-amd64-cgo), const RTAX_CWND = 7 +pkg syscall (linux-amd64-cgo), const RTAX_FEATURES = 12 +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-amd64-cgo), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-amd64-cgo), const RTAX_INITCWND = 11 +pkg syscall (linux-amd64-cgo), const RTAX_INITRWND = 14 +pkg syscall (linux-amd64-cgo), const RTAX_LOCK = 1 +pkg syscall (linux-amd64-cgo), const RTAX_MAX = 14 +pkg syscall (linux-amd64-cgo), const RTAX_MTU = 2 +pkg syscall (linux-amd64-cgo), const RTAX_REORDERING = 9 +pkg syscall (linux-amd64-cgo), const RTAX_RTO_MIN = 13 +pkg syscall (linux-amd64-cgo), const RTAX_RTT = 4 +pkg syscall (linux-amd64-cgo), const RTAX_RTTVAR = 5 +pkg syscall (linux-amd64-cgo), const RTAX_SSTHRESH = 6 +pkg syscall (linux-amd64-cgo), const RTAX_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RTAX_WINDOW = 3 +pkg syscall (linux-amd64-cgo), const RTA_ALIGNTO = 4 +pkg syscall (linux-amd64-cgo), const RTA_CACHEINFO = 12 +pkg syscall (linux-amd64-cgo), const RTA_DST = 1 +pkg syscall (linux-amd64-cgo), const RTA_FLOW = 11 +pkg syscall (linux-amd64-cgo), const RTA_GATEWAY = 5 +pkg syscall (linux-amd64-cgo), const RTA_IIF = 3 +pkg syscall (linux-amd64-cgo), const RTA_MAX = 16 +pkg syscall (linux-amd64-cgo), const RTA_METRICS = 8 +pkg syscall (linux-amd64-cgo), const RTA_MULTIPATH = 9 +pkg syscall (linux-amd64-cgo), const RTA_OIF = 4 +pkg syscall (linux-amd64-cgo), const RTA_PREFSRC = 7 +pkg syscall (linux-amd64-cgo), const RTA_PRIORITY = 6 +pkg syscall (linux-amd64-cgo), const RTA_SRC = 2 +pkg syscall (linux-amd64-cgo), const RTA_TABLE = 15 +pkg syscall (linux-amd64-cgo), const RTA_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-amd64-cgo), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-amd64-cgo), const RTCF_LOG = 33554432 +pkg syscall (linux-amd64-cgo), const RTCF_MASQ = 4194304 +pkg syscall (linux-amd64-cgo), const RTCF_NAT = 8388608 +pkg syscall (linux-amd64-cgo), const RTCF_VALVE = 2097152 +pkg syscall (linux-amd64-cgo), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-amd64-cgo), const RTF_ADDRCONF = 262144 +pkg syscall (linux-amd64-cgo), const RTF_ALLONLINK = 131072 +pkg syscall (linux-amd64-cgo), const RTF_BROADCAST = 268435456 +pkg syscall (linux-amd64-cgo), const RTF_CACHE = 16777216 +pkg syscall (linux-amd64-cgo), const RTF_DEFAULT = 65536 +pkg syscall (linux-amd64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (linux-amd64-cgo), const RTF_FLOW = 33554432 +pkg syscall (linux-amd64-cgo), const RTF_GATEWAY = 2 +pkg syscall (linux-amd64-cgo), const RTF_HOST = 4 +pkg syscall (linux-amd64-cgo), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-amd64-cgo), const RTF_IRTT = 256 +pkg syscall (linux-amd64-cgo), const RTF_LINKRT = 1048576 +pkg syscall (linux-amd64-cgo), const RTF_LOCAL = 2147483648 +pkg syscall (linux-amd64-cgo), const RTF_MODIFIED = 32 +pkg syscall (linux-amd64-cgo), const RTF_MSS = 64 +pkg syscall (linux-amd64-cgo), const RTF_MTU = 64 +pkg syscall (linux-amd64-cgo), const RTF_MULTICAST = 536870912 +pkg syscall (linux-amd64-cgo), const RTF_NAT = 134217728 +pkg syscall (linux-amd64-cgo), const RTF_NOFORWARD = 4096 +pkg syscall (linux-amd64-cgo), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-amd64-cgo), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-amd64-cgo), const RTF_POLICY = 67108864 +pkg syscall (linux-amd64-cgo), const RTF_REINSTATE = 8 +pkg syscall (linux-amd64-cgo), const RTF_REJECT = 512 +pkg syscall (linux-amd64-cgo), const RTF_STATIC = 1024 +pkg syscall (linux-amd64-cgo), const RTF_THROW = 8192 +pkg syscall (linux-amd64-cgo), const RTF_UP = 1 +pkg syscall (linux-amd64-cgo), const RTF_WINDOW = 128 +pkg syscall (linux-amd64-cgo), const RTF_XRESOLVE = 2048 +pkg syscall (linux-amd64-cgo), const RTM_BASE = 16 +pkg syscall (linux-amd64-cgo), const RTM_DELACTION = 49 +pkg syscall (linux-amd64-cgo), const RTM_DELADDR = 21 +pkg syscall (linux-amd64-cgo), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-amd64-cgo), const RTM_DELLINK = 17 +pkg syscall (linux-amd64-cgo), const RTM_DELNEIGH = 29 +pkg syscall (linux-amd64-cgo), const RTM_DELQDISC = 37 +pkg syscall (linux-amd64-cgo), const RTM_DELROUTE = 25 +pkg syscall (linux-amd64-cgo), const RTM_DELRULE = 33 +pkg syscall (linux-amd64-cgo), const RTM_DELTCLASS = 41 +pkg syscall (linux-amd64-cgo), const RTM_DELTFILTER = 45 +pkg syscall (linux-amd64-cgo), const RTM_F_CLONED = 512 +pkg syscall (linux-amd64-cgo), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-amd64-cgo), const RTM_F_NOTIFY = 256 +pkg syscall (linux-amd64-cgo), const RTM_F_PREFIX = 2048 +pkg syscall (linux-amd64-cgo), const RTM_GETACTION = 50 +pkg syscall (linux-amd64-cgo), const RTM_GETADDR = 22 +pkg syscall (linux-amd64-cgo), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-amd64-cgo), const RTM_GETANYCAST = 62 +pkg syscall (linux-amd64-cgo), const RTM_GETDCB = 78 +pkg syscall (linux-amd64-cgo), const RTM_GETLINK = 18 +pkg syscall (linux-amd64-cgo), const RTM_GETMULTICAST = 58 +pkg syscall (linux-amd64-cgo), const RTM_GETNEIGH = 30 +pkg syscall (linux-amd64-cgo), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-amd64-cgo), const RTM_GETQDISC = 38 +pkg syscall (linux-amd64-cgo), const RTM_GETROUTE = 26 +pkg syscall (linux-amd64-cgo), const RTM_GETRULE = 34 +pkg syscall (linux-amd64-cgo), const RTM_GETTCLASS = 42 +pkg syscall (linux-amd64-cgo), const RTM_GETTFILTER = 46 +pkg syscall (linux-amd64-cgo), const RTM_MAX = 79 +pkg syscall (linux-amd64-cgo), const RTM_NEWACTION = 48 +pkg syscall (linux-amd64-cgo), const RTM_NEWADDR = 20 +pkg syscall (linux-amd64-cgo), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-amd64-cgo), const RTM_NEWLINK = 16 +pkg syscall (linux-amd64-cgo), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-amd64-cgo), const RTM_NEWNEIGH = 28 +pkg syscall (linux-amd64-cgo), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-amd64-cgo), const RTM_NEWPREFIX = 52 +pkg syscall (linux-amd64-cgo), const RTM_NEWQDISC = 36 +pkg syscall (linux-amd64-cgo), const RTM_NEWROUTE = 24 +pkg syscall (linux-amd64-cgo), const RTM_NEWRULE = 32 +pkg syscall (linux-amd64-cgo), const RTM_NEWTCLASS = 40 +pkg syscall (linux-amd64-cgo), const RTM_NEWTFILTER = 44 +pkg syscall (linux-amd64-cgo), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-amd64-cgo), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-amd64-cgo), const RTM_SETDCB = 79 +pkg syscall (linux-amd64-cgo), const RTM_SETLINK = 19 +pkg syscall (linux-amd64-cgo), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-amd64-cgo), const RTNH_ALIGNTO = 4 +pkg syscall (linux-amd64-cgo), const RTNH_F_DEAD = 1 +pkg syscall (linux-amd64-cgo), const RTNH_F_ONLINK = 4 +pkg syscall (linux-amd64-cgo), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-amd64-cgo), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_LINK = 1 +pkg syscall (linux-amd64-cgo), const RTNLGRP_LINK ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-amd64-cgo), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-amd64-cgo), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_NONE = 0 +pkg syscall (linux-amd64-cgo), const RTNLGRP_NONE ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-amd64-cgo), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-amd64-cgo), const RTNLGRP_TC = 4 +pkg syscall (linux-amd64-cgo), const RTNLGRP_TC ideal-int +pkg syscall (linux-amd64-cgo), const RTN_ANYCAST = 4 +pkg syscall (linux-amd64-cgo), const RTN_BLACKHOLE = 6 +pkg syscall (linux-amd64-cgo), const RTN_BROADCAST = 3 +pkg syscall (linux-amd64-cgo), const RTN_LOCAL = 2 +pkg syscall (linux-amd64-cgo), const RTN_MAX = 11 +pkg syscall (linux-amd64-cgo), const RTN_MULTICAST = 5 +pkg syscall (linux-amd64-cgo), const RTN_NAT = 10 +pkg syscall (linux-amd64-cgo), const RTN_PROHIBIT = 8 +pkg syscall (linux-amd64-cgo), const RTN_THROW = 9 +pkg syscall (linux-amd64-cgo), const RTN_UNICAST = 1 +pkg syscall (linux-amd64-cgo), const RTN_UNREACHABLE = 7 +pkg syscall (linux-amd64-cgo), const RTN_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RTN_XRESOLVE = 11 +pkg syscall (linux-amd64-cgo), const RTPROT_BIRD = 12 +pkg syscall (linux-amd64-cgo), const RTPROT_BOOT = 3 +pkg syscall (linux-amd64-cgo), const RTPROT_DHCP = 16 +pkg syscall (linux-amd64-cgo), const RTPROT_DNROUTED = 13 +pkg syscall (linux-amd64-cgo), const RTPROT_GATED = 8 +pkg syscall (linux-amd64-cgo), const RTPROT_KERNEL = 2 +pkg syscall (linux-amd64-cgo), const RTPROT_MRT = 10 +pkg syscall (linux-amd64-cgo), const RTPROT_NTK = 15 +pkg syscall (linux-amd64-cgo), const RTPROT_RA = 9 +pkg syscall (linux-amd64-cgo), const RTPROT_REDIRECT = 1 +pkg syscall (linux-amd64-cgo), const RTPROT_STATIC = 4 +pkg syscall (linux-amd64-cgo), const RTPROT_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RTPROT_XORP = 14 +pkg syscall (linux-amd64-cgo), const RTPROT_ZEBRA = 11 +pkg syscall (linux-amd64-cgo), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-amd64-cgo), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-amd64-cgo), const RT_CLASS_MAIN = 254 +pkg syscall (linux-amd64-cgo), const RT_CLASS_MAX = 255 +pkg syscall (linux-amd64-cgo), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RT_SCOPE_HOST = 254 +pkg syscall (linux-amd64-cgo), const RT_SCOPE_LINK = 253 +pkg syscall (linux-amd64-cgo), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-amd64-cgo), const RT_SCOPE_SITE = 200 +pkg syscall (linux-amd64-cgo), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-amd64-cgo), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-amd64-cgo), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-amd64-cgo), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-amd64-cgo), const RT_TABLE_MAIN = 254 +pkg syscall (linux-amd64-cgo), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-amd64-cgo), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-amd64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-amd64-cgo), const RUSAGE_SELF = 0 +pkg syscall (linux-amd64-cgo), const RUSAGE_THREAD = 1 +pkg syscall (linux-amd64-cgo), const SCM_CREDENTIALS = 2 +pkg syscall (linux-amd64-cgo), const SCM_RIGHTS = 1 +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMP = 29 +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-amd64-cgo), const SIGBUS = 7 +pkg syscall (linux-amd64-cgo), const SIGCHLD = 17 +pkg syscall (linux-amd64-cgo), const SIGCLD = 17 +pkg syscall (linux-amd64-cgo), const SIGCONT = 18 +pkg syscall (linux-amd64-cgo), const SIGIO = 29 +pkg syscall (linux-amd64-cgo), const SIGIOT = 6 +pkg syscall (linux-amd64-cgo), const SIGPOLL = 29 +pkg syscall (linux-amd64-cgo), const SIGPROF = 27 +pkg syscall (linux-amd64-cgo), const SIGPWR = 30 +pkg syscall (linux-amd64-cgo), const SIGSTKFLT = 16 +pkg syscall (linux-amd64-cgo), const SIGSTOP = 19 +pkg syscall (linux-amd64-cgo), const SIGSYS = 31 +pkg syscall (linux-amd64-cgo), const SIGTSTP = 20 +pkg syscall (linux-amd64-cgo), const SIGTTIN = 21 +pkg syscall (linux-amd64-cgo), const SIGTTOU = 22 +pkg syscall (linux-amd64-cgo), const SIGUNUSED = 31 +pkg syscall (linux-amd64-cgo), const SIGURG = 23 +pkg syscall (linux-amd64-cgo), const SIGUSR1 = 10 +pkg syscall (linux-amd64-cgo), const SIGUSR2 = 12 +pkg syscall (linux-amd64-cgo), const SIGVTALRM = 26 +pkg syscall (linux-amd64-cgo), const SIGWINCH = 28 +pkg syscall (linux-amd64-cgo), const SIGXCPU = 24 +pkg syscall (linux-amd64-cgo), const SIGXFSZ = 25 +pkg syscall (linux-amd64-cgo), const SIOCADDDLCI = 35200 +pkg syscall (linux-amd64-cgo), const SIOCADDMULTI = 35121 +pkg syscall (linux-amd64-cgo), const SIOCADDRT = 35083 +pkg syscall (linux-amd64-cgo), const SIOCATMARK = 35077 +pkg syscall (linux-amd64-cgo), const SIOCDARP = 35155 +pkg syscall (linux-amd64-cgo), const SIOCDELDLCI = 35201 +pkg syscall (linux-amd64-cgo), const SIOCDELMULTI = 35122 +pkg syscall (linux-amd64-cgo), const SIOCDELRT = 35084 +pkg syscall (linux-amd64-cgo), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-amd64-cgo), const SIOCDIFADDR = 35126 +pkg syscall (linux-amd64-cgo), const SIOCDRARP = 35168 +pkg syscall (linux-amd64-cgo), const SIOCGARP = 35156 +pkg syscall (linux-amd64-cgo), const SIOCGIFADDR = 35093 +pkg syscall (linux-amd64-cgo), const SIOCGIFBR = 35136 +pkg syscall (linux-amd64-cgo), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-amd64-cgo), const SIOCGIFCONF = 35090 +pkg syscall (linux-amd64-cgo), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-amd64-cgo), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-amd64-cgo), const SIOCGIFENCAP = 35109 +pkg syscall (linux-amd64-cgo), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-amd64-cgo), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-amd64-cgo), const SIOCGIFINDEX = 35123 +pkg syscall (linux-amd64-cgo), const SIOCGIFMAP = 35184 +pkg syscall (linux-amd64-cgo), const SIOCGIFMEM = 35103 +pkg syscall (linux-amd64-cgo), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-amd64-cgo), const SIOCGIFMTU = 35105 +pkg syscall (linux-amd64-cgo), const SIOCGIFNAME = 35088 +pkg syscall (linux-amd64-cgo), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-amd64-cgo), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-amd64-cgo), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-amd64-cgo), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-amd64-cgo), const SIOCGPGRP = 35076 +pkg syscall (linux-amd64-cgo), const SIOCGRARP = 35169 +pkg syscall (linux-amd64-cgo), const SIOCGSTAMP = 35078 +pkg syscall (linux-amd64-cgo), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-amd64-cgo), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-amd64-cgo), const SIOCRTMSG = 35085 +pkg syscall (linux-amd64-cgo), const SIOCSARP = 35157 +pkg syscall (linux-amd64-cgo), const SIOCSIFADDR = 35094 +pkg syscall (linux-amd64-cgo), const SIOCSIFBR = 35137 +pkg syscall (linux-amd64-cgo), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-amd64-cgo), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-amd64-cgo), const SIOCSIFENCAP = 35110 +pkg syscall (linux-amd64-cgo), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-amd64-cgo), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-amd64-cgo), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-amd64-cgo), const SIOCSIFLINK = 35089 +pkg syscall (linux-amd64-cgo), const SIOCSIFMAP = 35185 +pkg syscall (linux-amd64-cgo), const SIOCSIFMEM = 35104 +pkg syscall (linux-amd64-cgo), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-amd64-cgo), const SIOCSIFMTU = 35106 +pkg syscall (linux-amd64-cgo), const SIOCSIFNAME = 35107 +pkg syscall (linux-amd64-cgo), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-amd64-cgo), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-amd64-cgo), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-amd64-cgo), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-amd64-cgo), const SIOCSPGRP = 35074 +pkg syscall (linux-amd64-cgo), const SIOCSRARP = 35170 +pkg syscall (linux-amd64-cgo), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-amd64-cgo), const SOCK_DCCP = 6 +pkg syscall (linux-amd64-cgo), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-amd64-cgo), const SOCK_PACKET = 10 +pkg syscall (linux-amd64-cgo), const SOCK_RDM = 4 +pkg syscall (linux-amd64-cgo), const SOL_AAL = 265 +pkg syscall (linux-amd64-cgo), const SOL_ATM = 264 +pkg syscall (linux-amd64-cgo), const SOL_DECNET = 261 +pkg syscall (linux-amd64-cgo), const SOL_ICMPV6 = 58 +pkg syscall (linux-amd64-cgo), const SOL_IP = 0 +pkg syscall (linux-amd64-cgo), const SOL_IPV6 = 41 +pkg syscall (linux-amd64-cgo), const SOL_IRDA = 266 +pkg syscall (linux-amd64-cgo), const SOL_PACKET = 263 +pkg syscall (linux-amd64-cgo), const SOL_RAW = 255 +pkg syscall (linux-amd64-cgo), const SOL_SOCKET = 1 +pkg syscall (linux-amd64-cgo), const SOL_TCP = 6 +pkg syscall (linux-amd64-cgo), const SOL_X25 = 262 +pkg syscall (linux-amd64-cgo), const SOMAXCONN = 128 +pkg syscall (linux-amd64-cgo), const SO_ACCEPTCONN = 30 +pkg syscall (linux-amd64-cgo), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-amd64-cgo), const SO_BINDTODEVICE = 25 +pkg syscall (linux-amd64-cgo), const SO_BROADCAST = 6 +pkg syscall (linux-amd64-cgo), const SO_BSDCOMPAT = 14 +pkg syscall (linux-amd64-cgo), const SO_DEBUG = 1 +pkg syscall (linux-amd64-cgo), const SO_DETACH_FILTER = 27 +pkg syscall (linux-amd64-cgo), const SO_DOMAIN = 39 +pkg syscall (linux-amd64-cgo), const SO_DONTROUTE = 5 +pkg syscall (linux-amd64-cgo), const SO_ERROR = 4 +pkg syscall (linux-amd64-cgo), const SO_KEEPALIVE = 9 +pkg syscall (linux-amd64-cgo), const SO_LINGER = 13 +pkg syscall (linux-amd64-cgo), const SO_MARK = 36 +pkg syscall (linux-amd64-cgo), const SO_NO_CHECK = 11 +pkg syscall (linux-amd64-cgo), const SO_OOBINLINE = 10 +pkg syscall (linux-amd64-cgo), const SO_PASSCRED = 16 +pkg syscall (linux-amd64-cgo), const SO_PASSSEC = 34 +pkg syscall (linux-amd64-cgo), const SO_PEERCRED = 17 +pkg syscall (linux-amd64-cgo), const SO_PEERNAME = 28 +pkg syscall (linux-amd64-cgo), const SO_PEERSEC = 31 +pkg syscall (linux-amd64-cgo), const SO_PRIORITY = 12 +pkg syscall (linux-amd64-cgo), const SO_PROTOCOL = 38 +pkg syscall (linux-amd64-cgo), const SO_RCVBUF = 8 +pkg syscall (linux-amd64-cgo), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-amd64-cgo), const SO_RCVLOWAT = 18 +pkg syscall (linux-amd64-cgo), const SO_RCVTIMEO = 20 +pkg syscall (linux-amd64-cgo), const SO_REUSEADDR = 2 +pkg syscall (linux-amd64-cgo), const SO_RXQ_OVFL = 40 +pkg syscall (linux-amd64-cgo), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-amd64-cgo), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-amd64-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-amd64-cgo), const SO_SNDBUF = 7 +pkg syscall (linux-amd64-cgo), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-amd64-cgo), const SO_SNDLOWAT = 19 +pkg syscall (linux-amd64-cgo), const SO_SNDTIMEO = 21 +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMP = 29 +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMPING = 37 +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-amd64-cgo), const SO_TYPE = 3 +pkg syscall (linux-amd64-cgo), const SYS_ACCEPT = 43 +pkg syscall (linux-amd64-cgo), const SYS_ACCEPT4 = 288 +pkg syscall (linux-amd64-cgo), const SYS_ACCESS = 21 +pkg syscall (linux-amd64-cgo), const SYS_ACCT = 163 +pkg syscall (linux-amd64-cgo), const SYS_ADD_KEY = 248 +pkg syscall (linux-amd64-cgo), const SYS_ADJTIMEX = 159 +pkg syscall (linux-amd64-cgo), const SYS_AFS_SYSCALL = 183 +pkg syscall (linux-amd64-cgo), const SYS_ALARM = 37 +pkg syscall (linux-amd64-cgo), const SYS_ARCH_PRCTL = 158 +pkg syscall (linux-amd64-cgo), const SYS_BIND = 49 +pkg syscall (linux-amd64-cgo), const SYS_BRK = 12 +pkg syscall (linux-amd64-cgo), const SYS_CAPGET = 125 +pkg syscall (linux-amd64-cgo), const SYS_CAPSET = 126 +pkg syscall (linux-amd64-cgo), const SYS_CHDIR = 80 +pkg syscall (linux-amd64-cgo), const SYS_CHMOD = 90 +pkg syscall (linux-amd64-cgo), const SYS_CHOWN = 92 +pkg syscall (linux-amd64-cgo), const SYS_CHROOT = 161 +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_GETRES = 229 +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_GETTIME = 228 +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_NANOSLEEP = 230 +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_SETTIME = 227 +pkg syscall (linux-amd64-cgo), const SYS_CLONE = 56 +pkg syscall (linux-amd64-cgo), const SYS_CLOSE = 3 +pkg syscall (linux-amd64-cgo), const SYS_CONNECT = 42 +pkg syscall (linux-amd64-cgo), const SYS_CREAT = 85 +pkg syscall (linux-amd64-cgo), const SYS_CREATE_MODULE = 174 +pkg syscall (linux-amd64-cgo), const SYS_DELETE_MODULE = 176 +pkg syscall (linux-amd64-cgo), const SYS_DUP = 32 +pkg syscall (linux-amd64-cgo), const SYS_DUP2 = 33 +pkg syscall (linux-amd64-cgo), const SYS_DUP3 = 292 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CREATE = 213 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CREATE1 = 291 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CTL = 233 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CTL_OLD = 214 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_PWAIT = 281 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_WAIT = 232 +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_WAIT_OLD = 215 +pkg syscall (linux-amd64-cgo), const SYS_EVENTFD = 284 +pkg syscall (linux-amd64-cgo), const SYS_EVENTFD2 = 290 +pkg syscall (linux-amd64-cgo), const SYS_EXECVE = 59 +pkg syscall (linux-amd64-cgo), const SYS_EXIT = 60 +pkg syscall (linux-amd64-cgo), const SYS_EXIT_GROUP = 231 +pkg syscall (linux-amd64-cgo), const SYS_FACCESSAT = 269 +pkg syscall (linux-amd64-cgo), const SYS_FADVISE64 = 221 +pkg syscall (linux-amd64-cgo), const SYS_FALLOCATE = 285 +pkg syscall (linux-amd64-cgo), const SYS_FANOTIFY_INIT = 300 +pkg syscall (linux-amd64-cgo), const SYS_FANOTIFY_MARK = 301 +pkg syscall (linux-amd64-cgo), const SYS_FCHDIR = 81 +pkg syscall (linux-amd64-cgo), const SYS_FCHMOD = 91 +pkg syscall (linux-amd64-cgo), const SYS_FCHMODAT = 268 +pkg syscall (linux-amd64-cgo), const SYS_FCHOWN = 93 +pkg syscall (linux-amd64-cgo), const SYS_FCHOWNAT = 260 +pkg syscall (linux-amd64-cgo), const SYS_FCNTL = 72 +pkg syscall (linux-amd64-cgo), const SYS_FDATASYNC = 75 +pkg syscall (linux-amd64-cgo), const SYS_FGETXATTR = 193 +pkg syscall (linux-amd64-cgo), const SYS_FLISTXATTR = 196 +pkg syscall (linux-amd64-cgo), const SYS_FLOCK = 73 +pkg syscall (linux-amd64-cgo), const SYS_FORK = 57 +pkg syscall (linux-amd64-cgo), const SYS_FREMOVEXATTR = 199 +pkg syscall (linux-amd64-cgo), const SYS_FSETXATTR = 190 +pkg syscall (linux-amd64-cgo), const SYS_FSTAT = 5 +pkg syscall (linux-amd64-cgo), const SYS_FSTATFS = 138 +pkg syscall (linux-amd64-cgo), const SYS_FSYNC = 74 +pkg syscall (linux-amd64-cgo), const SYS_FTRUNCATE = 77 +pkg syscall (linux-amd64-cgo), const SYS_FUTEX = 202 +pkg syscall (linux-amd64-cgo), const SYS_FUTIMESAT = 261 +pkg syscall (linux-amd64-cgo), const SYS_GETCWD = 79 +pkg syscall (linux-amd64-cgo), const SYS_GETDENTS = 78 +pkg syscall (linux-amd64-cgo), const SYS_GETDENTS64 = 217 +pkg syscall (linux-amd64-cgo), const SYS_GETEGID = 108 +pkg syscall (linux-amd64-cgo), const SYS_GETEUID = 107 +pkg syscall (linux-amd64-cgo), const SYS_GETGID = 104 +pkg syscall (linux-amd64-cgo), const SYS_GETGROUPS = 115 +pkg syscall (linux-amd64-cgo), const SYS_GETITIMER = 36 +pkg syscall (linux-amd64-cgo), const SYS_GETPEERNAME = 52 +pkg syscall (linux-amd64-cgo), const SYS_GETPGID = 121 +pkg syscall (linux-amd64-cgo), const SYS_GETPGRP = 111 +pkg syscall (linux-amd64-cgo), const SYS_GETPID = 39 +pkg syscall (linux-amd64-cgo), const SYS_GETPMSG = 181 +pkg syscall (linux-amd64-cgo), const SYS_GETPPID = 110 +pkg syscall (linux-amd64-cgo), const SYS_GETPRIORITY = 140 +pkg syscall (linux-amd64-cgo), const SYS_GETRESGID = 120 +pkg syscall (linux-amd64-cgo), const SYS_GETRESUID = 118 +pkg syscall (linux-amd64-cgo), const SYS_GETRLIMIT = 97 +pkg syscall (linux-amd64-cgo), const SYS_GETRUSAGE = 98 +pkg syscall (linux-amd64-cgo), const SYS_GETSID = 124 +pkg syscall (linux-amd64-cgo), const SYS_GETSOCKNAME = 51 +pkg syscall (linux-amd64-cgo), const SYS_GETSOCKOPT = 55 +pkg syscall (linux-amd64-cgo), const SYS_GETTID = 186 +pkg syscall (linux-amd64-cgo), const SYS_GETTIMEOFDAY = 96 +pkg syscall (linux-amd64-cgo), const SYS_GETUID = 102 +pkg syscall (linux-amd64-cgo), const SYS_GETXATTR = 191 +pkg syscall (linux-amd64-cgo), const SYS_GET_KERNEL_SYMS = 177 +pkg syscall (linux-amd64-cgo), const SYS_GET_MEMPOLICY = 239 +pkg syscall (linux-amd64-cgo), const SYS_GET_ROBUST_LIST = 274 +pkg syscall (linux-amd64-cgo), const SYS_GET_THREAD_AREA = 211 +pkg syscall (linux-amd64-cgo), const SYS_INIT_MODULE = 175 +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_ADD_WATCH = 254 +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_INIT = 253 +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_INIT1 = 294 +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_RM_WATCH = 255 +pkg syscall (linux-amd64-cgo), const SYS_IOCTL = 16 +pkg syscall (linux-amd64-cgo), const SYS_IOPERM = 173 +pkg syscall (linux-amd64-cgo), const SYS_IOPL = 172 +pkg syscall (linux-amd64-cgo), const SYS_IOPRIO_GET = 252 +pkg syscall (linux-amd64-cgo), const SYS_IOPRIO_SET = 251 +pkg syscall (linux-amd64-cgo), const SYS_IO_CANCEL = 210 +pkg syscall (linux-amd64-cgo), const SYS_IO_DESTROY = 207 +pkg syscall (linux-amd64-cgo), const SYS_IO_GETEVENTS = 208 +pkg syscall (linux-amd64-cgo), const SYS_IO_SETUP = 206 +pkg syscall (linux-amd64-cgo), const SYS_IO_SUBMIT = 209 +pkg syscall (linux-amd64-cgo), const SYS_KEXEC_LOAD = 246 +pkg syscall (linux-amd64-cgo), const SYS_KEYCTL = 250 +pkg syscall (linux-amd64-cgo), const SYS_KILL = 62 +pkg syscall (linux-amd64-cgo), const SYS_LCHOWN = 94 +pkg syscall (linux-amd64-cgo), const SYS_LGETXATTR = 192 +pkg syscall (linux-amd64-cgo), const SYS_LINK = 86 +pkg syscall (linux-amd64-cgo), const SYS_LINKAT = 265 +pkg syscall (linux-amd64-cgo), const SYS_LISTEN = 50 +pkg syscall (linux-amd64-cgo), const SYS_LISTXATTR = 194 +pkg syscall (linux-amd64-cgo), const SYS_LLISTXATTR = 195 +pkg syscall (linux-amd64-cgo), const SYS_LOOKUP_DCOOKIE = 212 +pkg syscall (linux-amd64-cgo), const SYS_LREMOVEXATTR = 198 +pkg syscall (linux-amd64-cgo), const SYS_LSEEK = 8 +pkg syscall (linux-amd64-cgo), const SYS_LSETXATTR = 189 +pkg syscall (linux-amd64-cgo), const SYS_LSTAT = 6 +pkg syscall (linux-amd64-cgo), const SYS_MADVISE = 28 +pkg syscall (linux-amd64-cgo), const SYS_MBIND = 237 +pkg syscall (linux-amd64-cgo), const SYS_MIGRATE_PAGES = 256 +pkg syscall (linux-amd64-cgo), const SYS_MINCORE = 27 +pkg syscall (linux-amd64-cgo), const SYS_MKDIR = 83 +pkg syscall (linux-amd64-cgo), const SYS_MKDIRAT = 258 +pkg syscall (linux-amd64-cgo), const SYS_MKNOD = 133 +pkg syscall (linux-amd64-cgo), const SYS_MKNODAT = 259 +pkg syscall (linux-amd64-cgo), const SYS_MLOCK = 149 +pkg syscall (linux-amd64-cgo), const SYS_MLOCKALL = 151 +pkg syscall (linux-amd64-cgo), const SYS_MMAP = 9 +pkg syscall (linux-amd64-cgo), const SYS_MODIFY_LDT = 154 +pkg syscall (linux-amd64-cgo), const SYS_MOUNT = 165 +pkg syscall (linux-amd64-cgo), const SYS_MOVE_PAGES = 279 +pkg syscall (linux-amd64-cgo), const SYS_MPROTECT = 10 +pkg syscall (linux-amd64-cgo), const SYS_MQ_GETSETATTR = 245 +pkg syscall (linux-amd64-cgo), const SYS_MQ_NOTIFY = 244 +pkg syscall (linux-amd64-cgo), const SYS_MQ_OPEN = 240 +pkg syscall (linux-amd64-cgo), const SYS_MQ_TIMEDRECEIVE = 243 +pkg syscall (linux-amd64-cgo), const SYS_MQ_TIMEDSEND = 242 +pkg syscall (linux-amd64-cgo), const SYS_MQ_UNLINK = 241 +pkg syscall (linux-amd64-cgo), const SYS_MREMAP = 25 +pkg syscall (linux-amd64-cgo), const SYS_MSGCTL = 71 +pkg syscall (linux-amd64-cgo), const SYS_MSGGET = 68 +pkg syscall (linux-amd64-cgo), const SYS_MSGRCV = 70 +pkg syscall (linux-amd64-cgo), const SYS_MSGSND = 69 +pkg syscall (linux-amd64-cgo), const SYS_MSYNC = 26 +pkg syscall (linux-amd64-cgo), const SYS_MUNLOCK = 150 +pkg syscall (linux-amd64-cgo), const SYS_MUNLOCKALL = 152 +pkg syscall (linux-amd64-cgo), const SYS_MUNMAP = 11 +pkg syscall (linux-amd64-cgo), const SYS_NANOSLEEP = 35 +pkg syscall (linux-amd64-cgo), const SYS_NEWFSTATAT = 262 +pkg syscall (linux-amd64-cgo), const SYS_NFSSERVCTL = 180 +pkg syscall (linux-amd64-cgo), const SYS_OPEN = 2 +pkg syscall (linux-amd64-cgo), const SYS_OPENAT = 257 +pkg syscall (linux-amd64-cgo), const SYS_PAUSE = 34 +pkg syscall (linux-amd64-cgo), const SYS_PERF_EVENT_OPEN = 298 +pkg syscall (linux-amd64-cgo), const SYS_PERSONALITY = 135 +pkg syscall (linux-amd64-cgo), const SYS_PIPE = 22 +pkg syscall (linux-amd64-cgo), const SYS_PIPE2 = 293 +pkg syscall (linux-amd64-cgo), const SYS_PIVOT_ROOT = 155 +pkg syscall (linux-amd64-cgo), const SYS_POLL = 7 +pkg syscall (linux-amd64-cgo), const SYS_PPOLL = 271 +pkg syscall (linux-amd64-cgo), const SYS_PRCTL = 157 +pkg syscall (linux-amd64-cgo), const SYS_PREAD64 = 17 +pkg syscall (linux-amd64-cgo), const SYS_PREADV = 295 +pkg syscall (linux-amd64-cgo), const SYS_PRLIMIT64 = 302 +pkg syscall (linux-amd64-cgo), const SYS_PSELECT6 = 270 +pkg syscall (linux-amd64-cgo), const SYS_PTRACE = 101 +pkg syscall (linux-amd64-cgo), const SYS_PUTPMSG = 182 +pkg syscall (linux-amd64-cgo), const SYS_PWRITE64 = 18 +pkg syscall (linux-amd64-cgo), const SYS_PWRITEV = 296 +pkg syscall (linux-amd64-cgo), const SYS_QUERY_MODULE = 178 +pkg syscall (linux-amd64-cgo), const SYS_QUOTACTL = 179 +pkg syscall (linux-amd64-cgo), const SYS_READ = 0 +pkg syscall (linux-amd64-cgo), const SYS_READAHEAD = 187 +pkg syscall (linux-amd64-cgo), const SYS_READLINK = 89 +pkg syscall (linux-amd64-cgo), const SYS_READLINKAT = 267 +pkg syscall (linux-amd64-cgo), const SYS_READV = 19 +pkg syscall (linux-amd64-cgo), const SYS_REBOOT = 169 +pkg syscall (linux-amd64-cgo), const SYS_RECVFROM = 45 +pkg syscall (linux-amd64-cgo), const SYS_RECVMMSG = 299 +pkg syscall (linux-amd64-cgo), const SYS_RECVMSG = 47 +pkg syscall (linux-amd64-cgo), const SYS_REMAP_FILE_PAGES = 216 +pkg syscall (linux-amd64-cgo), const SYS_REMOVEXATTR = 197 +pkg syscall (linux-amd64-cgo), const SYS_RENAME = 82 +pkg syscall (linux-amd64-cgo), const SYS_RENAMEAT = 264 +pkg syscall (linux-amd64-cgo), const SYS_REQUEST_KEY = 249 +pkg syscall (linux-amd64-cgo), const SYS_RESTART_SYSCALL = 219 +pkg syscall (linux-amd64-cgo), const SYS_RMDIR = 84 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGACTION = 13 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGPENDING = 127 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGPROCMASK = 14 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGQUEUEINFO = 129 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGRETURN = 15 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGSUSPEND = 130 +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGTIMEDWAIT = 128 +pkg syscall (linux-amd64-cgo), const SYS_RT_TGSIGQUEUEINFO = 297 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETAFFINITY = 204 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETPARAM = 143 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETSCHEDULER = 145 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 146 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 147 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL = 148 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETAFFINITY = 203 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETPARAM = 142 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETSCHEDULER = 144 +pkg syscall (linux-amd64-cgo), const SYS_SCHED_YIELD = 24 +pkg syscall (linux-amd64-cgo), const SYS_SECURITY = 185 +pkg syscall (linux-amd64-cgo), const SYS_SELECT = 23 +pkg syscall (linux-amd64-cgo), const SYS_SEMCTL = 66 +pkg syscall (linux-amd64-cgo), const SYS_SEMGET = 64 +pkg syscall (linux-amd64-cgo), const SYS_SEMOP = 65 +pkg syscall (linux-amd64-cgo), const SYS_SEMTIMEDOP = 220 +pkg syscall (linux-amd64-cgo), const SYS_SENDFILE = 40 +pkg syscall (linux-amd64-cgo), const SYS_SENDMSG = 46 +pkg syscall (linux-amd64-cgo), const SYS_SENDTO = 44 +pkg syscall (linux-amd64-cgo), const SYS_SETDOMAINNAME = 171 +pkg syscall (linux-amd64-cgo), const SYS_SETFSGID = 123 +pkg syscall (linux-amd64-cgo), const SYS_SETFSUID = 122 +pkg syscall (linux-amd64-cgo), const SYS_SETGID = 106 +pkg syscall (linux-amd64-cgo), const SYS_SETGROUPS = 116 +pkg syscall (linux-amd64-cgo), const SYS_SETHOSTNAME = 170 +pkg syscall (linux-amd64-cgo), const SYS_SETITIMER = 38 +pkg syscall (linux-amd64-cgo), const SYS_SETPGID = 109 +pkg syscall (linux-amd64-cgo), const SYS_SETPRIORITY = 141 +pkg syscall (linux-amd64-cgo), const SYS_SETREGID = 114 +pkg syscall (linux-amd64-cgo), const SYS_SETRESGID = 119 +pkg syscall (linux-amd64-cgo), const SYS_SETRESUID = 117 +pkg syscall (linux-amd64-cgo), const SYS_SETREUID = 113 +pkg syscall (linux-amd64-cgo), const SYS_SETRLIMIT = 160 +pkg syscall (linux-amd64-cgo), const SYS_SETSID = 112 +pkg syscall (linux-amd64-cgo), const SYS_SETSOCKOPT = 54 +pkg syscall (linux-amd64-cgo), const SYS_SETTIMEOFDAY = 164 +pkg syscall (linux-amd64-cgo), const SYS_SETUID = 105 +pkg syscall (linux-amd64-cgo), const SYS_SETXATTR = 188 +pkg syscall (linux-amd64-cgo), const SYS_SET_MEMPOLICY = 238 +pkg syscall (linux-amd64-cgo), const SYS_SET_ROBUST_LIST = 273 +pkg syscall (linux-amd64-cgo), const SYS_SET_THREAD_AREA = 205 +pkg syscall (linux-amd64-cgo), const SYS_SET_TID_ADDRESS = 218 +pkg syscall (linux-amd64-cgo), const SYS_SHMAT = 30 +pkg syscall (linux-amd64-cgo), const SYS_SHMCTL = 31 +pkg syscall (linux-amd64-cgo), const SYS_SHMDT = 67 +pkg syscall (linux-amd64-cgo), const SYS_SHMGET = 29 +pkg syscall (linux-amd64-cgo), const SYS_SHUTDOWN = 48 +pkg syscall (linux-amd64-cgo), const SYS_SIGALTSTACK = 131 +pkg syscall (linux-amd64-cgo), const SYS_SIGNALFD = 282 +pkg syscall (linux-amd64-cgo), const SYS_SIGNALFD4 = 289 +pkg syscall (linux-amd64-cgo), const SYS_SOCKET = 41 +pkg syscall (linux-amd64-cgo), const SYS_SOCKETPAIR = 53 +pkg syscall (linux-amd64-cgo), const SYS_SPLICE = 275 +pkg syscall (linux-amd64-cgo), const SYS_STAT = 4 +pkg syscall (linux-amd64-cgo), const SYS_STATFS = 137 +pkg syscall (linux-amd64-cgo), const SYS_SWAPOFF = 168 +pkg syscall (linux-amd64-cgo), const SYS_SWAPON = 167 +pkg syscall (linux-amd64-cgo), const SYS_SYMLINK = 88 +pkg syscall (linux-amd64-cgo), const SYS_SYMLINKAT = 266 +pkg syscall (linux-amd64-cgo), const SYS_SYNC = 162 +pkg syscall (linux-amd64-cgo), const SYS_SYNC_FILE_RANGE = 277 +pkg syscall (linux-amd64-cgo), const SYS_SYSFS = 139 +pkg syscall (linux-amd64-cgo), const SYS_SYSINFO = 99 +pkg syscall (linux-amd64-cgo), const SYS_SYSLOG = 103 +pkg syscall (linux-amd64-cgo), const SYS_TEE = 276 +pkg syscall (linux-amd64-cgo), const SYS_TGKILL = 234 +pkg syscall (linux-amd64-cgo), const SYS_TIME = 201 +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_CREATE = 283 +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_GETTIME = 287 +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_SETTIME = 286 +pkg syscall (linux-amd64-cgo), const SYS_TIMER_CREATE = 222 +pkg syscall (linux-amd64-cgo), const SYS_TIMER_DELETE = 226 +pkg syscall (linux-amd64-cgo), const SYS_TIMER_GETOVERRUN = 225 +pkg syscall (linux-amd64-cgo), const SYS_TIMER_GETTIME = 224 +pkg syscall (linux-amd64-cgo), const SYS_TIMER_SETTIME = 223 +pkg syscall (linux-amd64-cgo), const SYS_TIMES = 100 +pkg syscall (linux-amd64-cgo), const SYS_TKILL = 200 +pkg syscall (linux-amd64-cgo), const SYS_TRUNCATE = 76 +pkg syscall (linux-amd64-cgo), const SYS_TUXCALL = 184 +pkg syscall (linux-amd64-cgo), const SYS_UMASK = 95 +pkg syscall (linux-amd64-cgo), const SYS_UMOUNT2 = 166 +pkg syscall (linux-amd64-cgo), const SYS_UNAME = 63 +pkg syscall (linux-amd64-cgo), const SYS_UNLINK = 87 +pkg syscall (linux-amd64-cgo), const SYS_UNLINKAT = 263 +pkg syscall (linux-amd64-cgo), const SYS_UNSHARE = 272 +pkg syscall (linux-amd64-cgo), const SYS_USELIB = 134 +pkg syscall (linux-amd64-cgo), const SYS_USTAT = 136 +pkg syscall (linux-amd64-cgo), const SYS_UTIME = 132 +pkg syscall (linux-amd64-cgo), const SYS_UTIMENSAT = 280 +pkg syscall (linux-amd64-cgo), const SYS_UTIMES = 235 +pkg syscall (linux-amd64-cgo), const SYS_VFORK = 58 +pkg syscall (linux-amd64-cgo), const SYS_VHANGUP = 153 +pkg syscall (linux-amd64-cgo), const SYS_VMSPLICE = 278 +pkg syscall (linux-amd64-cgo), const SYS_VSERVER = 236 +pkg syscall (linux-amd64-cgo), const SYS_WAIT4 = 61 +pkg syscall (linux-amd64-cgo), const SYS_WAITID = 247 +pkg syscall (linux-amd64-cgo), const SYS_WRITE = 1 +pkg syscall (linux-amd64-cgo), const SYS_WRITEV = 20 +pkg syscall (linux-amd64-cgo), const SYS__SYSCTL = 156 +pkg syscall (linux-amd64-cgo), const S_BLKSIZE = 512 +pkg syscall (linux-amd64-cgo), const S_IEXEC = 64 +pkg syscall (linux-amd64-cgo), const S_IFMT = 61440 +pkg syscall (linux-amd64-cgo), const S_IREAD = 256 +pkg syscall (linux-amd64-cgo), const S_IRGRP = 32 +pkg syscall (linux-amd64-cgo), const S_IROTH = 4 +pkg syscall (linux-amd64-cgo), const S_IRWXG = 56 +pkg syscall (linux-amd64-cgo), const S_IRWXO = 7 +pkg syscall (linux-amd64-cgo), const S_IRWXU = 448 +pkg syscall (linux-amd64-cgo), const S_IWGRP = 16 +pkg syscall (linux-amd64-cgo), const S_IWOTH = 2 +pkg syscall (linux-amd64-cgo), const S_IWRITE = 128 +pkg syscall (linux-amd64-cgo), const S_IXGRP = 8 +pkg syscall (linux-amd64-cgo), const S_IXOTH = 1 +pkg syscall (linux-amd64-cgo), const SizeofCmsghdr = 16 +pkg syscall (linux-amd64-cgo), const SizeofIPMreq = 8 +pkg syscall (linux-amd64-cgo), const SizeofIPMreqn = 12 +pkg syscall (linux-amd64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (linux-amd64-cgo), const SizeofIfAddrmsg = 8 +pkg syscall (linux-amd64-cgo), const SizeofIfInfomsg = 16 +pkg syscall (linux-amd64-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-amd64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-amd64-cgo), const SizeofInotifyEvent = 16 +pkg syscall (linux-amd64-cgo), const SizeofLinger = 8 +pkg syscall (linux-amd64-cgo), const SizeofMsghdr = 56 +pkg syscall (linux-amd64-cgo), const SizeofNlAttr = 4 +pkg syscall (linux-amd64-cgo), const SizeofNlMsgerr = 20 +pkg syscall (linux-amd64-cgo), const SizeofNlMsghdr = 16 +pkg syscall (linux-amd64-cgo), const SizeofRtAttr = 4 +pkg syscall (linux-amd64-cgo), const SizeofRtGenmsg = 1 +pkg syscall (linux-amd64-cgo), const SizeofRtMsg = 12 +pkg syscall (linux-amd64-cgo), const SizeofRtNexthop = 8 +pkg syscall (linux-amd64-cgo), const SizeofSockFilter = 8 +pkg syscall (linux-amd64-cgo), const SizeofSockFprog = 16 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrAny = 112 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-amd64-cgo), const SizeofSockaddrUnix = 110 +pkg syscall (linux-amd64-cgo), const SizeofTCPInfo = 104 +pkg syscall (linux-amd64-cgo), const SizeofTCPInfo ideal-int +pkg syscall (linux-amd64-cgo), const SizeofUcred = 12 +pkg syscall (linux-amd64-cgo), const TCGETS = 21505 +pkg syscall (linux-amd64-cgo), const TCP_CONGESTION = 13 +pkg syscall (linux-amd64-cgo), const TCP_CORK = 3 +pkg syscall (linux-amd64-cgo), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-amd64-cgo), const TCP_INFO = 11 +pkg syscall (linux-amd64-cgo), const TCP_KEEPCNT = 6 +pkg syscall (linux-amd64-cgo), const TCP_KEEPIDLE = 4 +pkg syscall (linux-amd64-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (linux-amd64-cgo), const TCP_LINGER2 = 8 +pkg syscall (linux-amd64-cgo), const TCP_MAXSEG = 2 +pkg syscall (linux-amd64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (linux-amd64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-amd64-cgo), const TCP_MD5SIG = 14 +pkg syscall (linux-amd64-cgo), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-amd64-cgo), const TCP_MSS = 512 +pkg syscall (linux-amd64-cgo), const TCP_QUICKACK = 12 +pkg syscall (linux-amd64-cgo), const TCP_SYNCNT = 7 +pkg syscall (linux-amd64-cgo), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-amd64-cgo), const TCSETS = 21506 +pkg syscall (linux-amd64-cgo), const TIOCCBRK = 21544 +pkg syscall (linux-amd64-cgo), const TIOCCONS = 21533 +pkg syscall (linux-amd64-cgo), const TIOCEXCL = 21516 +pkg syscall (linux-amd64-cgo), const TIOCGDEV = 2147767346 +pkg syscall (linux-amd64-cgo), const TIOCGETD = 21540 +pkg syscall (linux-amd64-cgo), const TIOCGICOUNT = 21597 +pkg syscall (linux-amd64-cgo), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-amd64-cgo), const TIOCGPGRP = 21519 +pkg syscall (linux-amd64-cgo), const TIOCGPTN = 2147767344 +pkg syscall (linux-amd64-cgo), const TIOCGRS485 = 21550 +pkg syscall (linux-amd64-cgo), const TIOCGSERIAL = 21534 +pkg syscall (linux-amd64-cgo), const TIOCGSID = 21545 +pkg syscall (linux-amd64-cgo), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-amd64-cgo), const TIOCGWINSZ = 21523 +pkg syscall (linux-amd64-cgo), const TIOCINQ = 21531 +pkg syscall (linux-amd64-cgo), const TIOCLINUX = 21532 +pkg syscall (linux-amd64-cgo), const TIOCMBIC = 21527 +pkg syscall (linux-amd64-cgo), const TIOCMBIS = 21526 +pkg syscall (linux-amd64-cgo), const TIOCMGET = 21525 +pkg syscall (linux-amd64-cgo), const TIOCMIWAIT = 21596 +pkg syscall (linux-amd64-cgo), const TIOCMSET = 21528 +pkg syscall (linux-amd64-cgo), const TIOCM_CAR = 64 +pkg syscall (linux-amd64-cgo), const TIOCM_CD = 64 +pkg syscall (linux-amd64-cgo), const TIOCM_CTS = 32 +pkg syscall (linux-amd64-cgo), const TIOCM_DSR = 256 +pkg syscall (linux-amd64-cgo), const TIOCM_DTR = 2 +pkg syscall (linux-amd64-cgo), const TIOCM_LE = 1 +pkg syscall (linux-amd64-cgo), const TIOCM_RI = 128 +pkg syscall (linux-amd64-cgo), const TIOCM_RNG = 128 +pkg syscall (linux-amd64-cgo), const TIOCM_RTS = 4 +pkg syscall (linux-amd64-cgo), const TIOCM_SR = 16 +pkg syscall (linux-amd64-cgo), const TIOCM_ST = 8 +pkg syscall (linux-amd64-cgo), const TIOCNOTTY = 21538 +pkg syscall (linux-amd64-cgo), const TIOCNXCL = 21517 +pkg syscall (linux-amd64-cgo), const TIOCOUTQ = 21521 +pkg syscall (linux-amd64-cgo), const TIOCPKT = 21536 +pkg syscall (linux-amd64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (linux-amd64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-amd64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-amd64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-amd64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-amd64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-amd64-cgo), const TIOCPKT_START = 8 +pkg syscall (linux-amd64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (linux-amd64-cgo), const TIOCSBRK = 21543 +pkg syscall (linux-amd64-cgo), const TIOCSCTTY = 21518 +pkg syscall (linux-amd64-cgo), const TIOCSERCONFIG = 21587 +pkg syscall (linux-amd64-cgo), const TIOCSERGETLSR = 21593 +pkg syscall (linux-amd64-cgo), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-amd64-cgo), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-amd64-cgo), const TIOCSERGWILD = 21588 +pkg syscall (linux-amd64-cgo), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-amd64-cgo), const TIOCSERSWILD = 21589 +pkg syscall (linux-amd64-cgo), const TIOCSER_TEMT = 1 +pkg syscall (linux-amd64-cgo), const TIOCSETD = 21539 +pkg syscall (linux-amd64-cgo), const TIOCSIG = 1074025526 +pkg syscall (linux-amd64-cgo), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-amd64-cgo), const TIOCSPGRP = 21520 +pkg syscall (linux-amd64-cgo), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-amd64-cgo), const TIOCSRS485 = 21551 +pkg syscall (linux-amd64-cgo), const TIOCSSERIAL = 21535 +pkg syscall (linux-amd64-cgo), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-amd64-cgo), const TIOCSTI = 21522 +pkg syscall (linux-amd64-cgo), const TIOCSWINSZ = 21524 +pkg syscall (linux-amd64-cgo), const TOSTOP = 256 +pkg syscall (linux-amd64-cgo), const TUNATTACHFILTER = 1074812117 +pkg syscall (linux-amd64-cgo), const TUNDETACHFILTER = 1074812118 +pkg syscall (linux-amd64-cgo), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-amd64-cgo), const TUNGETIFF = 2147767506 +pkg syscall (linux-amd64-cgo), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-amd64-cgo), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-amd64-cgo), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-amd64-cgo), const TUNSETGROUP = 1074025678 +pkg syscall (linux-amd64-cgo), const TUNSETIFF = 1074025674 +pkg syscall (linux-amd64-cgo), const TUNSETLINK = 1074025677 +pkg syscall (linux-amd64-cgo), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-amd64-cgo), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-amd64-cgo), const TUNSETOWNER = 1074025676 +pkg syscall (linux-amd64-cgo), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-amd64-cgo), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-amd64-cgo), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-amd64-cgo), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-amd64-cgo), const VDISCARD = 13 +pkg syscall (linux-amd64-cgo), const VEOF = 4 +pkg syscall (linux-amd64-cgo), const VEOL = 11 +pkg syscall (linux-amd64-cgo), const VEOL2 = 16 +pkg syscall (linux-amd64-cgo), const VERASE = 2 +pkg syscall (linux-amd64-cgo), const VINTR = 0 +pkg syscall (linux-amd64-cgo), const VKILL = 3 +pkg syscall (linux-amd64-cgo), const VLNEXT = 15 +pkg syscall (linux-amd64-cgo), const VMIN = 6 +pkg syscall (linux-amd64-cgo), const VQUIT = 1 +pkg syscall (linux-amd64-cgo), const VREPRINT = 12 +pkg syscall (linux-amd64-cgo), const VSTART = 8 +pkg syscall (linux-amd64-cgo), const VSTOP = 9 +pkg syscall (linux-amd64-cgo), const VSUSP = 10 +pkg syscall (linux-amd64-cgo), const VSWTC = 7 +pkg syscall (linux-amd64-cgo), const VTIME = 5 +pkg syscall (linux-amd64-cgo), const VWERASE = 14 +pkg syscall (linux-amd64-cgo), const WALL = 1073741824 +pkg syscall (linux-amd64-cgo), const WCLONE = 2147483648 +pkg syscall (linux-amd64-cgo), const WCONTINUED = 8 +pkg syscall (linux-amd64-cgo), const WEXITED = 4 +pkg syscall (linux-amd64-cgo), const WNOHANG = 1 +pkg syscall (linux-amd64-cgo), const WNOTHREAD = 536870912 +pkg syscall (linux-amd64-cgo), const WNOWAIT = 16777216 +pkg syscall (linux-amd64-cgo), const WORDSIZE = 64 +pkg syscall (linux-amd64-cgo), const WSTOPPED = 2 +pkg syscall (linux-amd64-cgo), const WUNTRACED = 2 +pkg syscall (linux-amd64-cgo), const XCASE = 4 +pkg syscall (linux-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-amd64-cgo), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-amd64-cgo), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Pipe2([]int, int) error +pkg syscall (linux-amd64-cgo), func PtraceSyscall(int, int) error +pkg syscall (linux-amd64-cgo), func Removexattr(string, string) error +pkg syscall (linux-amd64-cgo), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (linux-amd64-cgo), type TCPInfo struct +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Ato uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Lost uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Options uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Probes uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rto uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, State uint8 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-amd64-cgo), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-arm), const AF_ALG = 38 +pkg syscall (linux-arm), const AF_APPLETALK = 5 +pkg syscall (linux-arm), const AF_ASH = 18 +pkg syscall (linux-arm), const AF_ATMPVC = 8 +pkg syscall (linux-arm), const AF_ATMSVC = 20 +pkg syscall (linux-arm), const AF_AX25 = 3 +pkg syscall (linux-arm), const AF_BLUETOOTH = 31 +pkg syscall (linux-arm), const AF_BRIDGE = 7 +pkg syscall (linux-arm), const AF_CAIF = 37 +pkg syscall (linux-arm), const AF_CAN = 29 +pkg syscall (linux-arm), const AF_DECnet = 12 +pkg syscall (linux-arm), const AF_ECONET = 19 +pkg syscall (linux-arm), const AF_FILE = 1 +pkg syscall (linux-arm), const AF_IEEE802154 = 36 +pkg syscall (linux-arm), const AF_INET6 = 10 +pkg syscall (linux-arm), const AF_IPX = 4 +pkg syscall (linux-arm), const AF_IRDA = 23 +pkg syscall (linux-arm), const AF_ISDN = 34 +pkg syscall (linux-arm), const AF_IUCV = 32 +pkg syscall (linux-arm), const AF_KEY = 15 +pkg syscall (linux-arm), const AF_LLC = 26 +pkg syscall (linux-arm), const AF_LOCAL = 1 +pkg syscall (linux-arm), const AF_MAX = 39 +pkg syscall (linux-arm), const AF_NETBEUI = 13 +pkg syscall (linux-arm), const AF_NETLINK = 16 +pkg syscall (linux-arm), const AF_NETROM = 6 +pkg syscall (linux-arm), const AF_PACKET = 17 +pkg syscall (linux-arm), const AF_PHONET = 35 +pkg syscall (linux-arm), const AF_PPPOX = 24 +pkg syscall (linux-arm), const AF_RDS = 21 +pkg syscall (linux-arm), const AF_ROSE = 11 +pkg syscall (linux-arm), const AF_ROUTE = 16 +pkg syscall (linux-arm), const AF_RXRPC = 33 +pkg syscall (linux-arm), const AF_SECURITY = 14 +pkg syscall (linux-arm), const AF_SNA = 22 +pkg syscall (linux-arm), const AF_TIPC = 30 +pkg syscall (linux-arm), const AF_WANPIPE = 25 +pkg syscall (linux-arm), const AF_X25 = 9 +pkg syscall (linux-arm), const ARPHRD_ADAPT = 264 +pkg syscall (linux-arm), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-arm), const ARPHRD_ARCNET = 7 +pkg syscall (linux-arm), const ARPHRD_ASH = 781 +pkg syscall (linux-arm), const ARPHRD_ATM = 19 +pkg syscall (linux-arm), const ARPHRD_AX25 = 3 +pkg syscall (linux-arm), const ARPHRD_BIF = 775 +pkg syscall (linux-arm), const ARPHRD_CHAOS = 5 +pkg syscall (linux-arm), const ARPHRD_CISCO = 513 +pkg syscall (linux-arm), const ARPHRD_CSLIP = 257 +pkg syscall (linux-arm), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-arm), const ARPHRD_DDCMP = 517 +pkg syscall (linux-arm), const ARPHRD_DLCI = 15 +pkg syscall (linux-arm), const ARPHRD_ECONET = 782 +pkg syscall (linux-arm), const ARPHRD_EETHER = 2 +pkg syscall (linux-arm), const ARPHRD_ETHER = 1 +pkg syscall (linux-arm), const ARPHRD_EUI64 = 27 +pkg syscall (linux-arm), const ARPHRD_FCAL = 785 +pkg syscall (linux-arm), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-arm), const ARPHRD_FCPL = 786 +pkg syscall (linux-arm), const ARPHRD_FCPP = 784 +pkg syscall (linux-arm), const ARPHRD_FDDI = 774 +pkg syscall (linux-arm), const ARPHRD_FRAD = 770 +pkg syscall (linux-arm), const ARPHRD_HDLC = 513 +pkg syscall (linux-arm), const ARPHRD_HIPPI = 780 +pkg syscall (linux-arm), const ARPHRD_HWX25 = 272 +pkg syscall (linux-arm), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-arm), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-arm), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-arm), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-arm), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-arm), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-arm), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-arm), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-arm), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-arm), const ARPHRD_IPDDP = 777 +pkg syscall (linux-arm), const ARPHRD_IPGRE = 778 +pkg syscall (linux-arm), const ARPHRD_IRDA = 783 +pkg syscall (linux-arm), const ARPHRD_LAPB = 516 +pkg syscall (linux-arm), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-arm), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-arm), const ARPHRD_METRICOM = 23 +pkg syscall (linux-arm), const ARPHRD_NETROM = 0 +pkg syscall (linux-arm), const ARPHRD_NONE = 65534 +pkg syscall (linux-arm), const ARPHRD_PIMREG = 779 +pkg syscall (linux-arm), const ARPHRD_PPP = 512 +pkg syscall (linux-arm), const ARPHRD_PRONET = 4 +pkg syscall (linux-arm), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-arm), const ARPHRD_ROSE = 270 +pkg syscall (linux-arm), const ARPHRD_RSRVD = 260 +pkg syscall (linux-arm), const ARPHRD_SIT = 776 +pkg syscall (linux-arm), const ARPHRD_SKIP = 771 +pkg syscall (linux-arm), const ARPHRD_SLIP = 256 +pkg syscall (linux-arm), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-arm), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-arm), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-arm), const ARPHRD_VOID = 65535 +pkg syscall (linux-arm), const ARPHRD_X25 = 271 +pkg syscall (linux-arm), const B0 = 0 +pkg syscall (linux-arm), const B1000000 = 4104 +pkg syscall (linux-arm), const B110 = 3 +pkg syscall (linux-arm), const B115200 = 4098 +pkg syscall (linux-arm), const B1152000 = 4105 +pkg syscall (linux-arm), const B1200 = 9 +pkg syscall (linux-arm), const B134 = 4 +pkg syscall (linux-arm), const B150 = 5 +pkg syscall (linux-arm), const B1500000 = 4106 +pkg syscall (linux-arm), const B1800 = 10 +pkg syscall (linux-arm), const B19200 = 14 +pkg syscall (linux-arm), const B200 = 6 +pkg syscall (linux-arm), const B2000000 = 4107 +pkg syscall (linux-arm), const B230400 = 4099 +pkg syscall (linux-arm), const B2400 = 11 +pkg syscall (linux-arm), const B2500000 = 4108 +pkg syscall (linux-arm), const B300 = 7 +pkg syscall (linux-arm), const B3000000 = 4109 +pkg syscall (linux-arm), const B3500000 = 4110 +pkg syscall (linux-arm), const B38400 = 15 +pkg syscall (linux-arm), const B4000000 = 4111 +pkg syscall (linux-arm), const B460800 = 4100 +pkg syscall (linux-arm), const B4800 = 12 +pkg syscall (linux-arm), const B50 = 1 +pkg syscall (linux-arm), const B500000 = 4101 +pkg syscall (linux-arm), const B57600 = 4097 +pkg syscall (linux-arm), const B576000 = 4102 +pkg syscall (linux-arm), const B600 = 8 +pkg syscall (linux-arm), const B75 = 2 +pkg syscall (linux-arm), const B921600 = 4103 +pkg syscall (linux-arm), const B9600 = 13 +pkg syscall (linux-arm), const BPF_A = 16 +pkg syscall (linux-arm), const BPF_ABS = 32 +pkg syscall (linux-arm), const BPF_ADD = 0 +pkg syscall (linux-arm), const BPF_ALU = 4 +pkg syscall (linux-arm), const BPF_AND = 80 +pkg syscall (linux-arm), const BPF_B = 16 +pkg syscall (linux-arm), const BPF_DIV = 48 +pkg syscall (linux-arm), const BPF_H = 8 +pkg syscall (linux-arm), const BPF_IMM = 0 +pkg syscall (linux-arm), const BPF_IND = 64 +pkg syscall (linux-arm), const BPF_JA = 0 +pkg syscall (linux-arm), const BPF_JEQ = 16 +pkg syscall (linux-arm), const BPF_JGE = 48 +pkg syscall (linux-arm), const BPF_JGT = 32 +pkg syscall (linux-arm), const BPF_JMP = 5 +pkg syscall (linux-arm), const BPF_JSET = 64 +pkg syscall (linux-arm), const BPF_K = 0 +pkg syscall (linux-arm), const BPF_LD = 0 +pkg syscall (linux-arm), const BPF_LDX = 1 +pkg syscall (linux-arm), const BPF_LEN = 128 +pkg syscall (linux-arm), const BPF_LSH = 96 +pkg syscall (linux-arm), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-arm), const BPF_MAXINSNS = 4096 +pkg syscall (linux-arm), const BPF_MEM = 96 +pkg syscall (linux-arm), const BPF_MEMWORDS = 16 +pkg syscall (linux-arm), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-arm), const BPF_MISC = 7 +pkg syscall (linux-arm), const BPF_MSH = 160 +pkg syscall (linux-arm), const BPF_MUL = 32 +pkg syscall (linux-arm), const BPF_NEG = 128 +pkg syscall (linux-arm), const BPF_OR = 64 +pkg syscall (linux-arm), const BPF_RET = 6 +pkg syscall (linux-arm), const BPF_RSH = 112 +pkg syscall (linux-arm), const BPF_ST = 2 +pkg syscall (linux-arm), const BPF_STX = 3 +pkg syscall (linux-arm), const BPF_SUB = 16 +pkg syscall (linux-arm), const BPF_TAX = 0 +pkg syscall (linux-arm), const BPF_TXA = 128 +pkg syscall (linux-arm), const BPF_W = 0 +pkg syscall (linux-arm), const BPF_X = 8 +pkg syscall (linux-arm), const BRKINT = 2 +pkg syscall (linux-arm), const CLOCAL = 2048 +pkg syscall (linux-arm), const CREAD = 128 +pkg syscall (linux-arm), const CS5 = 0 +pkg syscall (linux-arm), const CS6 = 16 +pkg syscall (linux-arm), const CS7 = 32 +pkg syscall (linux-arm), const CS8 = 48 +pkg syscall (linux-arm), const CSIZE = 48 +pkg syscall (linux-arm), const CSTOPB = 64 +pkg syscall (linux-arm), const DT_BLK = 6 +pkg syscall (linux-arm), const DT_CHR = 2 +pkg syscall (linux-arm), const DT_DIR = 4 +pkg syscall (linux-arm), const DT_FIFO = 1 +pkg syscall (linux-arm), const DT_LNK = 10 +pkg syscall (linux-arm), const DT_REG = 8 +pkg syscall (linux-arm), const DT_SOCK = 12 +pkg syscall (linux-arm), const DT_UNKNOWN = 0 +pkg syscall (linux-arm), const DT_WHT = 14 +pkg syscall (linux-arm), const E2BIG = 7 +pkg syscall (linux-arm), const EACCES = 13 +pkg syscall (linux-arm), const EADDRINUSE = 98 +pkg syscall (linux-arm), const EADDRNOTAVAIL = 99 +pkg syscall (linux-arm), const EADV = 68 +pkg syscall (linux-arm), const EAFNOSUPPORT = 97 +pkg syscall (linux-arm), const EAGAIN = 11 +pkg syscall (linux-arm), const EALREADY = 114 +pkg syscall (linux-arm), const EBADE = 52 +pkg syscall (linux-arm), const EBADF = 9 +pkg syscall (linux-arm), const EBADFD = 77 +pkg syscall (linux-arm), const EBADMSG = 74 +pkg syscall (linux-arm), const EBADR = 53 +pkg syscall (linux-arm), const EBADRQC = 56 +pkg syscall (linux-arm), const EBADSLT = 57 +pkg syscall (linux-arm), const EBFONT = 59 +pkg syscall (linux-arm), const EBUSY = 16 +pkg syscall (linux-arm), const ECANCELED = 125 +pkg syscall (linux-arm), const ECHILD = 10 +pkg syscall (linux-arm), const ECHO = 8 +pkg syscall (linux-arm), const ECHOCTL = 512 +pkg syscall (linux-arm), const ECHOE = 16 +pkg syscall (linux-arm), const ECHOK = 32 +pkg syscall (linux-arm), const ECHOKE = 2048 +pkg syscall (linux-arm), const ECHONL = 64 +pkg syscall (linux-arm), const ECHOPRT = 1024 +pkg syscall (linux-arm), const ECHRNG = 44 +pkg syscall (linux-arm), const ECOMM = 70 +pkg syscall (linux-arm), const ECONNABORTED = 103 +pkg syscall (linux-arm), const ECONNREFUSED = 111 +pkg syscall (linux-arm), const ECONNRESET = 104 +pkg syscall (linux-arm), const EDEADLK = 35 +pkg syscall (linux-arm), const EDEADLOCK = 35 +pkg syscall (linux-arm), const EDESTADDRREQ = 89 +pkg syscall (linux-arm), const EDOM = 33 +pkg syscall (linux-arm), const EDOTDOT = 73 +pkg syscall (linux-arm), const EDQUOT = 122 +pkg syscall (linux-arm), const EEXIST = 17 +pkg syscall (linux-arm), const EFAULT = 14 +pkg syscall (linux-arm), const EFBIG = 27 +pkg syscall (linux-arm), const EHOSTDOWN = 112 +pkg syscall (linux-arm), const EHOSTUNREACH = 113 +pkg syscall (linux-arm), const EHWPOISON = 133 +pkg syscall (linux-arm), const EIDRM = 43 +pkg syscall (linux-arm), const EILSEQ = 84 +pkg syscall (linux-arm), const EINPROGRESS = 115 +pkg syscall (linux-arm), const EINTR = 4 +pkg syscall (linux-arm), const EINVAL = 22 +pkg syscall (linux-arm), const EIO = 5 +pkg syscall (linux-arm), const EISCONN = 106 +pkg syscall (linux-arm), const EISDIR = 21 +pkg syscall (linux-arm), const EISNAM = 120 +pkg syscall (linux-arm), const EKEYEXPIRED = 127 +pkg syscall (linux-arm), const EKEYREJECTED = 129 +pkg syscall (linux-arm), const EKEYREVOKED = 128 +pkg syscall (linux-arm), const EL2HLT = 51 +pkg syscall (linux-arm), const EL2NSYNC = 45 +pkg syscall (linux-arm), const EL3HLT = 46 +pkg syscall (linux-arm), const EL3RST = 47 +pkg syscall (linux-arm), const ELF_NGREG = 18 +pkg syscall (linux-arm), const ELF_PRARGSZ = 80 +pkg syscall (linux-arm), const ELIBACC = 79 +pkg syscall (linux-arm), const ELIBBAD = 80 +pkg syscall (linux-arm), const ELIBEXEC = 83 +pkg syscall (linux-arm), const ELIBMAX = 82 +pkg syscall (linux-arm), const ELIBSCN = 81 +pkg syscall (linux-arm), const ELNRNG = 48 +pkg syscall (linux-arm), const ELOOP = 40 +pkg syscall (linux-arm), const EMEDIUMTYPE = 124 +pkg syscall (linux-arm), const EMFILE = 24 +pkg syscall (linux-arm), const EMLINK = 31 +pkg syscall (linux-arm), const EMSGSIZE = 90 +pkg syscall (linux-arm), const EMULTIHOP = 72 +pkg syscall (linux-arm), const ENAMETOOLONG = 36 +pkg syscall (linux-arm), const ENAVAIL = 119 +pkg syscall (linux-arm), const ENETDOWN = 100 +pkg syscall (linux-arm), const ENETRESET = 102 +pkg syscall (linux-arm), const ENETUNREACH = 101 +pkg syscall (linux-arm), const ENFILE = 23 +pkg syscall (linux-arm), const ENOANO = 55 +pkg syscall (linux-arm), const ENOBUFS = 105 +pkg syscall (linux-arm), const ENOCSI = 50 +pkg syscall (linux-arm), const ENODATA = 61 +pkg syscall (linux-arm), const ENODEV = 19 +pkg syscall (linux-arm), const ENOEXEC = 8 +pkg syscall (linux-arm), const ENOKEY = 126 +pkg syscall (linux-arm), const ENOLCK = 37 +pkg syscall (linux-arm), const ENOLINK = 67 +pkg syscall (linux-arm), const ENOMEDIUM = 123 +pkg syscall (linux-arm), const ENOMEM = 12 +pkg syscall (linux-arm), const ENOMSG = 42 +pkg syscall (linux-arm), const ENONET = 64 +pkg syscall (linux-arm), const ENOPKG = 65 +pkg syscall (linux-arm), const ENOPROTOOPT = 92 +pkg syscall (linux-arm), const ENOSPC = 28 +pkg syscall (linux-arm), const ENOSR = 63 +pkg syscall (linux-arm), const ENOSTR = 60 +pkg syscall (linux-arm), const ENOSYS = 38 +pkg syscall (linux-arm), const ENOTBLK = 15 +pkg syscall (linux-arm), const ENOTCONN = 107 +pkg syscall (linux-arm), const ENOTDIR = 20 +pkg syscall (linux-arm), const ENOTEMPTY = 39 +pkg syscall (linux-arm), const ENOTNAM = 118 +pkg syscall (linux-arm), const ENOTRECOVERABLE = 131 +pkg syscall (linux-arm), const ENOTSOCK = 88 +pkg syscall (linux-arm), const ENOTSUP = 95 +pkg syscall (linux-arm), const ENOTTY = 25 +pkg syscall (linux-arm), const ENOTUNIQ = 76 +pkg syscall (linux-arm), const ENXIO = 6 +pkg syscall (linux-arm), const EOPNOTSUPP = 95 +pkg syscall (linux-arm), const EOVERFLOW = 75 +pkg syscall (linux-arm), const EOWNERDEAD = 130 +pkg syscall (linux-arm), const EPERM = 1 +pkg syscall (linux-arm), const EPFNOSUPPORT = 96 +pkg syscall (linux-arm), const EPIPE = 32 +pkg syscall (linux-arm), const EPOLLERR = 8 +pkg syscall (linux-arm), const EPOLLET = -2147483648 +pkg syscall (linux-arm), const EPOLLHUP = 16 +pkg syscall (linux-arm), const EPOLLIN = 1 +pkg syscall (linux-arm), const EPOLLMSG = 1024 +pkg syscall (linux-arm), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-arm), const EPOLLOUT = 4 +pkg syscall (linux-arm), const EPOLLPRI = 2 +pkg syscall (linux-arm), const EPOLLRDBAND = 128 +pkg syscall (linux-arm), const EPOLLRDHUP = 8192 +pkg syscall (linux-arm), const EPOLLRDNORM = 64 +pkg syscall (linux-arm), const EPOLLWRBAND = 512 +pkg syscall (linux-arm), const EPOLLWRNORM = 256 +pkg syscall (linux-arm), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-arm), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-arm), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-arm), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-arm), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-arm), const EPROTO = 71 +pkg syscall (linux-arm), const EPROTONOSUPPORT = 93 +pkg syscall (linux-arm), const EPROTOTYPE = 91 +pkg syscall (linux-arm), const ERANGE = 34 +pkg syscall (linux-arm), const EREMCHG = 78 +pkg syscall (linux-arm), const EREMOTE = 66 +pkg syscall (linux-arm), const EREMOTEIO = 121 +pkg syscall (linux-arm), const ERESTART = 85 +pkg syscall (linux-arm), const ERFKILL = 132 +pkg syscall (linux-arm), const EROFS = 30 +pkg syscall (linux-arm), const ESHUTDOWN = 108 +pkg syscall (linux-arm), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-arm), const ESPIPE = 29 +pkg syscall (linux-arm), const ESRCH = 3 +pkg syscall (linux-arm), const ESRMNT = 69 +pkg syscall (linux-arm), const ESTALE = 116 +pkg syscall (linux-arm), const ESTRPIPE = 86 +pkg syscall (linux-arm), const ETH_P_1588 = 35063 +pkg syscall (linux-arm), const ETH_P_8021Q = 33024 +pkg syscall (linux-arm), const ETH_P_802_2 = 4 +pkg syscall (linux-arm), const ETH_P_802_3 = 1 +pkg syscall (linux-arm), const ETH_P_AARP = 33011 +pkg syscall (linux-arm), const ETH_P_ALL = 3 +pkg syscall (linux-arm), const ETH_P_AOE = 34978 +pkg syscall (linux-arm), const ETH_P_ARCNET = 26 +pkg syscall (linux-arm), const ETH_P_ARP = 2054 +pkg syscall (linux-arm), const ETH_P_ATALK = 32923 +pkg syscall (linux-arm), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-arm), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-arm), const ETH_P_AX25 = 2 +pkg syscall (linux-arm), const ETH_P_BPQ = 2303 +pkg syscall (linux-arm), const ETH_P_CAIF = 247 +pkg syscall (linux-arm), const ETH_P_CAN = 12 +pkg syscall (linux-arm), const ETH_P_CONTROL = 22 +pkg syscall (linux-arm), const ETH_P_CUST = 24582 +pkg syscall (linux-arm), const ETH_P_DDCMP = 6 +pkg syscall (linux-arm), const ETH_P_DEC = 24576 +pkg syscall (linux-arm), const ETH_P_DIAG = 24581 +pkg syscall (linux-arm), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-arm), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-arm), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-arm), const ETH_P_DSA = 27 +pkg syscall (linux-arm), const ETH_P_ECONET = 24 +pkg syscall (linux-arm), const ETH_P_EDSA = 56026 +pkg syscall (linux-arm), const ETH_P_FCOE = 35078 +pkg syscall (linux-arm), const ETH_P_FIP = 35092 +pkg syscall (linux-arm), const ETH_P_HDLC = 25 +pkg syscall (linux-arm), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-arm), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-arm), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-arm), const ETH_P_IP = 2048 +pkg syscall (linux-arm), const ETH_P_IPV6 = 34525 +pkg syscall (linux-arm), const ETH_P_IPX = 33079 +pkg syscall (linux-arm), const ETH_P_IRDA = 23 +pkg syscall (linux-arm), const ETH_P_LAT = 24580 +pkg syscall (linux-arm), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-arm), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-arm), const ETH_P_LOOP = 96 +pkg syscall (linux-arm), const ETH_P_MOBITEX = 21 +pkg syscall (linux-arm), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-arm), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-arm), const ETH_P_PAE = 34958 +pkg syscall (linux-arm), const ETH_P_PAUSE = 34824 +pkg syscall (linux-arm), const ETH_P_PHONET = 245 +pkg syscall (linux-arm), const ETH_P_PPPTALK = 16 +pkg syscall (linux-arm), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-arm), const ETH_P_PPP_MP = 8 +pkg syscall (linux-arm), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-arm), const ETH_P_PUP = 512 +pkg syscall (linux-arm), const ETH_P_PUPAT = 513 +pkg syscall (linux-arm), const ETH_P_RARP = 32821 +pkg syscall (linux-arm), const ETH_P_SCA = 24583 +pkg syscall (linux-arm), const ETH_P_SLOW = 34825 +pkg syscall (linux-arm), const ETH_P_SNAP = 5 +pkg syscall (linux-arm), const ETH_P_TEB = 25944 +pkg syscall (linux-arm), const ETH_P_TIPC = 35018 +pkg syscall (linux-arm), const ETH_P_TRAILER = 28 +pkg syscall (linux-arm), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-arm), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-arm), const ETH_P_WCCP = 34878 +pkg syscall (linux-arm), const ETH_P_X25 = 2053 +pkg syscall (linux-arm), const ETIME = 62 +pkg syscall (linux-arm), const ETIMEDOUT = 110 +pkg syscall (linux-arm), const ETOOMANYREFS = 109 +pkg syscall (linux-arm), const ETXTBSY = 26 +pkg syscall (linux-arm), const EUCLEAN = 117 +pkg syscall (linux-arm), const EUNATCH = 49 +pkg syscall (linux-arm), const EUSERS = 87 +pkg syscall (linux-arm), const EWOULDBLOCK = 11 +pkg syscall (linux-arm), const EXDEV = 18 +pkg syscall (linux-arm), const EXFULL = 54 +pkg syscall (linux-arm), const FD_CLOEXEC = 1 +pkg syscall (linux-arm), const FD_SETSIZE = 1024 +pkg syscall (linux-arm), const FLUSHO = 4096 +pkg syscall (linux-arm), const F_DUPFD = 0 +pkg syscall (linux-arm), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-arm), const F_EXLCK = 4 +pkg syscall (linux-arm), const F_GETFD = 1 +pkg syscall (linux-arm), const F_GETFL = 3 +pkg syscall (linux-arm), const F_GETLEASE = 1025 +pkg syscall (linux-arm), const F_GETLK = 12 +pkg syscall (linux-arm), const F_GETLK64 = 12 +pkg syscall (linux-arm), const F_GETOWN = 9 +pkg syscall (linux-arm), const F_GETOWN_EX = 16 +pkg syscall (linux-arm), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-arm), const F_GETSIG = 11 +pkg syscall (linux-arm), const F_LOCK = 1 +pkg syscall (linux-arm), const F_NOTIFY = 1026 +pkg syscall (linux-arm), const F_OK = 0 +pkg syscall (linux-arm), const F_RDLCK = 0 +pkg syscall (linux-arm), const F_SETFD = 2 +pkg syscall (linux-arm), const F_SETFL = 4 +pkg syscall (linux-arm), const F_SETLEASE = 1024 +pkg syscall (linux-arm), const F_SETLK = 13 +pkg syscall (linux-arm), const F_SETLK64 = 13 +pkg syscall (linux-arm), const F_SETLKW = 14 +pkg syscall (linux-arm), const F_SETLKW64 = 14 +pkg syscall (linux-arm), const F_SETOWN = 8 +pkg syscall (linux-arm), const F_SETOWN_EX = 15 +pkg syscall (linux-arm), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-arm), const F_SETSIG = 10 +pkg syscall (linux-arm), const F_SHLCK = 8 +pkg syscall (linux-arm), const F_TEST = 3 +pkg syscall (linux-arm), const F_TLOCK = 2 +pkg syscall (linux-arm), const F_ULOCK = 0 +pkg syscall (linux-arm), const F_UNLCK = 2 +pkg syscall (linux-arm), const F_WRLCK = 1 +pkg syscall (linux-arm), const HUPCL = 1024 +pkg syscall (linux-arm), const ICANON = 2 +pkg syscall (linux-arm), const ICRNL = 256 +pkg syscall (linux-arm), const IEXTEN = 32768 +pkg syscall (linux-arm), const IFA_ADDRESS = 1 +pkg syscall (linux-arm), const IFA_ANYCAST = 5 +pkg syscall (linux-arm), const IFA_BROADCAST = 4 +pkg syscall (linux-arm), const IFA_CACHEINFO = 6 +pkg syscall (linux-arm), const IFA_F_DADFAILED = 8 +pkg syscall (linux-arm), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-arm), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-arm), const IFA_F_NODAD = 2 +pkg syscall (linux-arm), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-arm), const IFA_F_PERMANENT = 128 +pkg syscall (linux-arm), const IFA_F_SECONDARY = 1 +pkg syscall (linux-arm), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-arm), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-arm), const IFA_LABEL = 3 +pkg syscall (linux-arm), const IFA_LOCAL = 2 +pkg syscall (linux-arm), const IFA_MAX = 7 +pkg syscall (linux-arm), const IFA_MULTICAST = 7 +pkg syscall (linux-arm), const IFA_UNSPEC = 0 +pkg syscall (linux-arm), const IFF_ALLMULTI = 512 +pkg syscall (linux-arm), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-arm), const IFF_DEBUG = 4 +pkg syscall (linux-arm), const IFF_DYNAMIC = 32768 +pkg syscall (linux-arm), const IFF_LOOPBACK = 8 +pkg syscall (linux-arm), const IFF_MASTER = 1024 +pkg syscall (linux-arm), const IFF_MULTICAST = 4096 +pkg syscall (linux-arm), const IFF_NOARP = 128 +pkg syscall (linux-arm), const IFF_NOTRAILERS = 32 +pkg syscall (linux-arm), const IFF_NO_PI = 4096 +pkg syscall (linux-arm), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-arm), const IFF_POINTOPOINT = 16 +pkg syscall (linux-arm), const IFF_PORTSEL = 8192 +pkg syscall (linux-arm), const IFF_PROMISC = 256 +pkg syscall (linux-arm), const IFF_RUNNING = 64 +pkg syscall (linux-arm), const IFF_SLAVE = 2048 +pkg syscall (linux-arm), const IFF_TAP = 2 +pkg syscall (linux-arm), const IFF_TUN = 1 +pkg syscall (linux-arm), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-arm), const IFF_VNET_HDR = 16384 +pkg syscall (linux-arm), const IFLA_ADDRESS = 1 +pkg syscall (linux-arm), const IFLA_BROADCAST = 2 +pkg syscall (linux-arm), const IFLA_COST = 8 +pkg syscall (linux-arm), const IFLA_IFALIAS = 20 +pkg syscall (linux-arm), const IFLA_IFNAME = 3 +pkg syscall (linux-arm), const IFLA_LINK = 5 +pkg syscall (linux-arm), const IFLA_LINKINFO = 18 +pkg syscall (linux-arm), const IFLA_LINKMODE = 17 +pkg syscall (linux-arm), const IFLA_MAP = 14 +pkg syscall (linux-arm), const IFLA_MASTER = 10 +pkg syscall (linux-arm), const IFLA_MAX = 29 +pkg syscall (linux-arm), const IFLA_MTU = 4 +pkg syscall (linux-arm), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-arm), const IFLA_OPERSTATE = 16 +pkg syscall (linux-arm), const IFLA_PRIORITY = 9 +pkg syscall (linux-arm), const IFLA_PROTINFO = 12 +pkg syscall (linux-arm), const IFLA_QDISC = 6 +pkg syscall (linux-arm), const IFLA_STATS = 7 +pkg syscall (linux-arm), const IFLA_TXQLEN = 13 +pkg syscall (linux-arm), const IFLA_UNSPEC = 0 +pkg syscall (linux-arm), const IFLA_WEIGHT = 15 +pkg syscall (linux-arm), const IFLA_WIRELESS = 11 +pkg syscall (linux-arm), const IFNAMSIZ = 16 +pkg syscall (linux-arm), const IGNBRK = 1 +pkg syscall (linux-arm), const IGNCR = 128 +pkg syscall (linux-arm), const IGNPAR = 4 +pkg syscall (linux-arm), const IMAXBEL = 8192 +pkg syscall (linux-arm), const INLCR = 64 +pkg syscall (linux-arm), const INPCK = 16 +pkg syscall (linux-arm), const IN_ACCESS = 1 +pkg syscall (linux-arm), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-arm), const IN_ATTRIB = 4 +pkg syscall (linux-arm), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-arm), const IN_CLASSA_MAX = 128 +pkg syscall (linux-arm), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-arm), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-arm), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-arm), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-arm), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-arm), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-arm), const IN_CLASSC_HOST = 255 +pkg syscall (linux-arm), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-arm), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-arm), const IN_CLOEXEC = 524288 +pkg syscall (linux-arm), const IN_CLOSE = 24 +pkg syscall (linux-arm), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-arm), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-arm), const IN_CREATE = 256 +pkg syscall (linux-arm), const IN_DELETE = 512 +pkg syscall (linux-arm), const IN_DELETE_SELF = 1024 +pkg syscall (linux-arm), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-arm), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-arm), const IN_IGNORED = 32768 +pkg syscall (linux-arm), const IN_ISDIR = 1073741824 +pkg syscall (linux-arm), const IN_LOOPBACKNET = 127 +pkg syscall (linux-arm), const IN_MASK_ADD = 536870912 +pkg syscall (linux-arm), const IN_MODIFY = 2 +pkg syscall (linux-arm), const IN_MOVE = 192 +pkg syscall (linux-arm), const IN_MOVED_FROM = 64 +pkg syscall (linux-arm), const IN_MOVED_TO = 128 +pkg syscall (linux-arm), const IN_MOVE_SELF = 2048 +pkg syscall (linux-arm), const IN_NONBLOCK = 2048 +pkg syscall (linux-arm), const IN_ONESHOT = 2147483648 +pkg syscall (linux-arm), const IN_ONLYDIR = 16777216 +pkg syscall (linux-arm), const IN_OPEN = 32 +pkg syscall (linux-arm), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-arm), const IN_UNMOUNT = 8192 +pkg syscall (linux-arm), const IPPROTO_AH = 51 +pkg syscall (linux-arm), const IPPROTO_COMP = 108 +pkg syscall (linux-arm), const IPPROTO_DCCP = 33 +pkg syscall (linux-arm), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-arm), const IPPROTO_EGP = 8 +pkg syscall (linux-arm), const IPPROTO_ENCAP = 98 +pkg syscall (linux-arm), const IPPROTO_ESP = 50 +pkg syscall (linux-arm), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-arm), const IPPROTO_GRE = 47 +pkg syscall (linux-arm), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-arm), const IPPROTO_ICMP = 1 +pkg syscall (linux-arm), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-arm), const IPPROTO_IDP = 22 +pkg syscall (linux-arm), const IPPROTO_IGMP = 2 +pkg syscall (linux-arm), const IPPROTO_IPIP = 4 +pkg syscall (linux-arm), const IPPROTO_MTP = 92 +pkg syscall (linux-arm), const IPPROTO_NONE = 59 +pkg syscall (linux-arm), const IPPROTO_PIM = 103 +pkg syscall (linux-arm), const IPPROTO_PUP = 12 +pkg syscall (linux-arm), const IPPROTO_RAW = 255 +pkg syscall (linux-arm), const IPPROTO_ROUTING = 43 +pkg syscall (linux-arm), const IPPROTO_RSVP = 46 +pkg syscall (linux-arm), const IPPROTO_SCTP = 132 +pkg syscall (linux-arm), const IPPROTO_TP = 29 +pkg syscall (linux-arm), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-arm), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-arm), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-arm), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-arm), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-arm), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-arm), const IPV6_2292RTHDR = 5 +pkg syscall (linux-arm), const IPV6_ADDRFORM = 1 +pkg syscall (linux-arm), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-arm), const IPV6_AUTHHDR = 10 +pkg syscall (linux-arm), const IPV6_CHECKSUM = 7 +pkg syscall (linux-arm), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-arm), const IPV6_DSTOPTS = 59 +pkg syscall (linux-arm), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-arm), const IPV6_HOPOPTS = 54 +pkg syscall (linux-arm), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-arm), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-arm), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-arm), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-arm), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-arm), const IPV6_MTU = 24 +pkg syscall (linux-arm), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-arm), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-arm), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-arm), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-arm), const IPV6_NEXTHOP = 9 +pkg syscall (linux-arm), const IPV6_PKTINFO = 50 +pkg syscall (linux-arm), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-arm), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-arm), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-arm), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-arm), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-arm), const IPV6_RECVERR = 25 +pkg syscall (linux-arm), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-arm), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-arm), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-arm), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-arm), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-arm), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-arm), const IPV6_RTHDR = 57 +pkg syscall (linux-arm), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-arm), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-arm), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-arm), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-arm), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-arm), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-arm), const IPV6_TCLASS = 67 +pkg syscall (linux-arm), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-arm), const IPV6_V6ONLY = 26 +pkg syscall (linux-arm), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-arm), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-arm), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-arm), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-arm), const IP_DF = 16384 +pkg syscall (linux-arm), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-arm), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-arm), const IP_FREEBIND = 15 +pkg syscall (linux-arm), const IP_HDRINCL = 3 +pkg syscall (linux-arm), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-arm), const IP_MAXPACKET = 65535 +pkg syscall (linux-arm), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-arm), const IP_MF = 8192 +pkg syscall (linux-arm), const IP_MINTTL = 21 +pkg syscall (linux-arm), const IP_MSFILTER = 41 +pkg syscall (linux-arm), const IP_MSS = 576 +pkg syscall (linux-arm), const IP_MTU = 14 +pkg syscall (linux-arm), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-arm), const IP_MULTICAST_IF = 32 +pkg syscall (linux-arm), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-arm), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-arm), const IP_OFFMASK = 8191 +pkg syscall (linux-arm), const IP_OPTIONS = 4 +pkg syscall (linux-arm), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-arm), const IP_PASSSEC = 18 +pkg syscall (linux-arm), const IP_PKTINFO = 8 +pkg syscall (linux-arm), const IP_PKTOPTIONS = 9 +pkg syscall (linux-arm), const IP_PMTUDISC = 10 +pkg syscall (linux-arm), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-arm), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-arm), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-arm), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-arm), const IP_RECVERR = 11 +pkg syscall (linux-arm), const IP_RECVOPTS = 6 +pkg syscall (linux-arm), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-arm), const IP_RECVRETOPTS = 7 +pkg syscall (linux-arm), const IP_RECVTOS = 13 +pkg syscall (linux-arm), const IP_RECVTTL = 12 +pkg syscall (linux-arm), const IP_RETOPTS = 7 +pkg syscall (linux-arm), const IP_RF = 32768 +pkg syscall (linux-arm), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-arm), const IP_TOS = 1 +pkg syscall (linux-arm), const IP_TRANSPARENT = 19 +pkg syscall (linux-arm), const IP_TTL = 2 +pkg syscall (linux-arm), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-arm), const IP_XFRM_POLICY = 17 +pkg syscall (linux-arm), const ISIG = 1 +pkg syscall (linux-arm), const ISTRIP = 32 +pkg syscall (linux-arm), const IUCLC = 512 +pkg syscall (linux-arm), const IUTF8 = 16384 +pkg syscall (linux-arm), const IXANY = 2048 +pkg syscall (linux-arm), const IXOFF = 4096 +pkg syscall (linux-arm), const IXON = 1024 +pkg syscall (linux-arm), const ImplementsGetwd = true +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-arm), const LOCK_EX = 2 +pkg syscall (linux-arm), const LOCK_NB = 4 +pkg syscall (linux-arm), const LOCK_SH = 1 +pkg syscall (linux-arm), const LOCK_UN = 8 +pkg syscall (linux-arm), const MADV_DOFORK = 11 +pkg syscall (linux-arm), const MADV_DONTFORK = 10 +pkg syscall (linux-arm), const MADV_DONTNEED = 4 +pkg syscall (linux-arm), const MADV_HUGEPAGE = 14 +pkg syscall (linux-arm), const MADV_HWPOISON = 100 +pkg syscall (linux-arm), const MADV_MERGEABLE = 12 +pkg syscall (linux-arm), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-arm), const MADV_NORMAL = 0 +pkg syscall (linux-arm), const MADV_RANDOM = 1 +pkg syscall (linux-arm), const MADV_REMOVE = 9 +pkg syscall (linux-arm), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-arm), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-arm), const MADV_WILLNEED = 3 +pkg syscall (linux-arm), const MAP_ANON = 32 +pkg syscall (linux-arm), const MAP_ANONYMOUS = 32 +pkg syscall (linux-arm), const MAP_DENYWRITE = 2048 +pkg syscall (linux-arm), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-arm), const MAP_FILE = 0 +pkg syscall (linux-arm), const MAP_FIXED = 16 +pkg syscall (linux-arm), const MAP_GROWSDOWN = 256 +pkg syscall (linux-arm), const MAP_LOCKED = 8192 +pkg syscall (linux-arm), const MAP_NONBLOCK = 65536 +pkg syscall (linux-arm), const MAP_NORESERVE = 16384 +pkg syscall (linux-arm), const MAP_POPULATE = 32768 +pkg syscall (linux-arm), const MAP_PRIVATE = 2 +pkg syscall (linux-arm), const MAP_SHARED = 1 +pkg syscall (linux-arm), const MAP_TYPE = 15 +pkg syscall (linux-arm), const MCL_CURRENT = 1 +pkg syscall (linux-arm), const MCL_FUTURE = 2 +pkg syscall (linux-arm), const MNT_DETACH = 2 +pkg syscall (linux-arm), const MNT_EXPIRE = 4 +pkg syscall (linux-arm), const MNT_FORCE = 1 +pkg syscall (linux-arm), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-arm), const MSG_CONFIRM = 2048 +pkg syscall (linux-arm), const MSG_CTRUNC = 8 +pkg syscall (linux-arm), const MSG_DONTROUTE = 4 +pkg syscall (linux-arm), const MSG_DONTWAIT = 64 +pkg syscall (linux-arm), const MSG_EOR = 128 +pkg syscall (linux-arm), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-arm), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-arm), const MSG_FASTOPEN ideal-int +pkg syscall (linux-arm), const MSG_FIN = 512 +pkg syscall (linux-arm), const MSG_MORE = 32768 +pkg syscall (linux-arm), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-arm), const MSG_OOB = 1 +pkg syscall (linux-arm), const MSG_PEEK = 2 +pkg syscall (linux-arm), const MSG_PROXY = 16 +pkg syscall (linux-arm), const MSG_RST = 4096 +pkg syscall (linux-arm), const MSG_SYN = 1024 +pkg syscall (linux-arm), const MSG_TRUNC = 32 +pkg syscall (linux-arm), const MSG_TRYHARD = 4 +pkg syscall (linux-arm), const MSG_WAITALL = 256 +pkg syscall (linux-arm), const MSG_WAITFORONE = 65536 +pkg syscall (linux-arm), const MS_ACTIVE = 1073741824 +pkg syscall (linux-arm), const MS_ASYNC = 1 +pkg syscall (linux-arm), const MS_BIND = 4096 +pkg syscall (linux-arm), const MS_DIRSYNC = 128 +pkg syscall (linux-arm), const MS_INVALIDATE = 2 +pkg syscall (linux-arm), const MS_I_VERSION = 8388608 +pkg syscall (linux-arm), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-arm), const MS_MANDLOCK = 64 +pkg syscall (linux-arm), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-arm), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-arm), const MS_MOVE = 8192 +pkg syscall (linux-arm), const MS_NOATIME = 1024 +pkg syscall (linux-arm), const MS_NODEV = 4 +pkg syscall (linux-arm), const MS_NODIRATIME = 2048 +pkg syscall (linux-arm), const MS_NOEXEC = 8 +pkg syscall (linux-arm), const MS_NOSUID = 2 +pkg syscall (linux-arm), const MS_NOUSER = -2147483648 +pkg syscall (linux-arm), const MS_POSIXACL = 65536 +pkg syscall (linux-arm), const MS_PRIVATE = 262144 +pkg syscall (linux-arm), const MS_RDONLY = 1 +pkg syscall (linux-arm), const MS_REC = 16384 +pkg syscall (linux-arm), const MS_RELATIME = 2097152 +pkg syscall (linux-arm), const MS_REMOUNT = 32 +pkg syscall (linux-arm), const MS_RMT_MASK = 8388689 +pkg syscall (linux-arm), const MS_SHARED = 1048576 +pkg syscall (linux-arm), const MS_SILENT = 32768 +pkg syscall (linux-arm), const MS_SLAVE = 524288 +pkg syscall (linux-arm), const MS_STRICTATIME = 16777216 +pkg syscall (linux-arm), const MS_SYNC = 4 +pkg syscall (linux-arm), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-arm), const MS_UNBINDABLE = 131072 +pkg syscall (linux-arm), const NAME_MAX = 255 +pkg syscall (linux-arm), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-arm), const NETLINK_AUDIT = 9 +pkg syscall (linux-arm), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-arm), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-arm), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-arm), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-arm), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-arm), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-arm), const NETLINK_FIREWALL = 3 +pkg syscall (linux-arm), const NETLINK_GENERIC = 16 +pkg syscall (linux-arm), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-arm), const NETLINK_IP6_FW = 13 +pkg syscall (linux-arm), const NETLINK_ISCSI = 8 +pkg syscall (linux-arm), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-arm), const NETLINK_NETFILTER = 12 +pkg syscall (linux-arm), const NETLINK_NFLOG = 5 +pkg syscall (linux-arm), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-arm), const NETLINK_PKTINFO = 3 +pkg syscall (linux-arm), const NETLINK_RDMA = 20 +pkg syscall (linux-arm), const NETLINK_ROUTE = 0 +pkg syscall (linux-arm), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-arm), const NETLINK_SELINUX = 7 +pkg syscall (linux-arm), const NETLINK_UNUSED = 1 +pkg syscall (linux-arm), const NETLINK_USERSOCK = 2 +pkg syscall (linux-arm), const NETLINK_XFRM = 6 +pkg syscall (linux-arm), const NLA_ALIGNTO = 4 +pkg syscall (linux-arm), const NLA_F_NESTED = 32768 +pkg syscall (linux-arm), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-arm), const NLA_HDRLEN = 4 +pkg syscall (linux-arm), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-arm), const NLMSG_DONE = 3 +pkg syscall (linux-arm), const NLMSG_ERROR = 2 +pkg syscall (linux-arm), const NLMSG_HDRLEN = 16 +pkg syscall (linux-arm), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-arm), const NLMSG_NOOP = 1 +pkg syscall (linux-arm), const NLMSG_OVERRUN = 4 +pkg syscall (linux-arm), const NLM_F_ACK = 4 +pkg syscall (linux-arm), const NLM_F_APPEND = 2048 +pkg syscall (linux-arm), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-arm), const NLM_F_CREATE = 1024 +pkg syscall (linux-arm), const NLM_F_DUMP = 768 +pkg syscall (linux-arm), const NLM_F_ECHO = 8 +pkg syscall (linux-arm), const NLM_F_EXCL = 512 +pkg syscall (linux-arm), const NLM_F_MATCH = 512 +pkg syscall (linux-arm), const NLM_F_MULTI = 2 +pkg syscall (linux-arm), const NLM_F_REPLACE = 256 +pkg syscall (linux-arm), const NLM_F_REQUEST = 1 +pkg syscall (linux-arm), const NLM_F_ROOT = 256 +pkg syscall (linux-arm), const NOFLSH = 128 +pkg syscall (linux-arm), const OCRNL = 8 +pkg syscall (linux-arm), const OFDEL = 128 +pkg syscall (linux-arm), const OFILL = 64 +pkg syscall (linux-arm), const OLCUC = 2 +pkg syscall (linux-arm), const ONLCR = 4 +pkg syscall (linux-arm), const ONLRET = 32 +pkg syscall (linux-arm), const ONOCR = 16 +pkg syscall (linux-arm), const OPOST = 1 +pkg syscall (linux-arm), const O_ACCMODE = 3 +pkg syscall (linux-arm), const O_APPEND = 1024 +pkg syscall (linux-arm), const O_ASYNC = 8192 +pkg syscall (linux-arm), const O_CLOEXEC = 524288 +pkg syscall (linux-arm), const O_CREAT = 64 +pkg syscall (linux-arm), const O_DIRECT = 65536 +pkg syscall (linux-arm), const O_DIRECTORY = 16384 +pkg syscall (linux-arm), const O_DSYNC = 4096 +pkg syscall (linux-arm), const O_EXCL = 128 +pkg syscall (linux-arm), const O_FSYNC = 4096 +pkg syscall (linux-arm), const O_LARGEFILE = 131072 +pkg syscall (linux-arm), const O_NDELAY = 2048 +pkg syscall (linux-arm), const O_NOATIME = 262144 +pkg syscall (linux-arm), const O_NOCTTY = 256 +pkg syscall (linux-arm), const O_NOFOLLOW = 32768 +pkg syscall (linux-arm), const O_NONBLOCK = 2048 +pkg syscall (linux-arm), const O_RSYNC = 4096 +pkg syscall (linux-arm), const O_SYNC = 4096 +pkg syscall (linux-arm), const O_TRUNC = 512 +pkg syscall (linux-arm), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-arm), const PACKET_BROADCAST = 1 +pkg syscall (linux-arm), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-arm), const PACKET_FASTROUTE = 6 +pkg syscall (linux-arm), const PACKET_HOST = 0 +pkg syscall (linux-arm), const PACKET_LOOPBACK = 5 +pkg syscall (linux-arm), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-arm), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-arm), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-arm), const PACKET_MULTICAST = 2 +pkg syscall (linux-arm), const PACKET_OTHERHOST = 3 +pkg syscall (linux-arm), const PACKET_OUTGOING = 4 +pkg syscall (linux-arm), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-arm), const PACKET_RX_RING = 5 +pkg syscall (linux-arm), const PACKET_STATISTICS = 6 +pkg syscall (linux-arm), const PARENB = 256 +pkg syscall (linux-arm), const PARMRK = 8 +pkg syscall (linux-arm), const PARODD = 512 +pkg syscall (linux-arm), const PENDIN = 16384 +pkg syscall (linux-arm), const PROT_EXEC = 4 +pkg syscall (linux-arm), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-arm), const PROT_GROWSUP = 33554432 +pkg syscall (linux-arm), const PROT_NONE = 0 +pkg syscall (linux-arm), const PROT_READ = 1 +pkg syscall (linux-arm), const PROT_WRITE = 2 +pkg syscall (linux-arm), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-arm), const PR_CAPBSET_READ = 23 +pkg syscall (linux-arm), const PR_CLEAR_SECCOMP_FILTER = 37 +pkg syscall (linux-arm), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-arm), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-arm), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-arm), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-arm), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-arm), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-arm), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-arm), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-arm), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-arm), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-arm), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-arm), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-arm), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-arm), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-arm), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-arm), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-arm), const PR_GET_ENDIAN = 19 +pkg syscall (linux-arm), const PR_GET_FPEMU = 9 +pkg syscall (linux-arm), const PR_GET_FPEXC = 11 +pkg syscall (linux-arm), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-arm), const PR_GET_NAME = 16 +pkg syscall (linux-arm), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-arm), const PR_GET_SECCOMP = 21 +pkg syscall (linux-arm), const PR_GET_SECCOMP_FILTER = 35 +pkg syscall (linux-arm), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-arm), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-arm), const PR_GET_TIMING = 13 +pkg syscall (linux-arm), const PR_GET_TSC = 25 +pkg syscall (linux-arm), const PR_GET_UNALIGN = 5 +pkg syscall (linux-arm), const PR_MCE_KILL = 33 +pkg syscall (linux-arm), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-arm), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-arm), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-arm), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-arm), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-arm), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-arm), const PR_SECCOMP_FILTER_EVENT = 1 +pkg syscall (linux-arm), const PR_SECCOMP_FILTER_SYSCALL = 0 +pkg syscall (linux-arm), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-arm), const PR_SET_ENDIAN = 20 +pkg syscall (linux-arm), const PR_SET_FPEMU = 10 +pkg syscall (linux-arm), const PR_SET_FPEXC = 12 +pkg syscall (linux-arm), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-arm), const PR_SET_NAME = 15 +pkg syscall (linux-arm), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-arm), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-arm), const PR_SET_SECCOMP = 22 +pkg syscall (linux-arm), const PR_SET_SECCOMP_FILTER = 36 +pkg syscall (linux-arm), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-arm), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-arm), const PR_SET_TIMING = 14 +pkg syscall (linux-arm), const PR_SET_TSC = 26 +pkg syscall (linux-arm), const PR_SET_UNALIGN = 6 +pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-arm), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-arm), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-arm), const PR_TSC_ENABLE = 1 +pkg syscall (linux-arm), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-arm), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-arm), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-arm), const PTRACE_ATTACH = 16 +pkg syscall (linux-arm), const PTRACE_CONT = 7 +pkg syscall (linux-arm), const PTRACE_DETACH = 17 +pkg syscall (linux-arm), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-arm), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-arm), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-arm), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-arm), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-arm), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-arm), const PTRACE_GETCRUNCHREGS = 25 +pkg syscall (linux-arm), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-arm), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-arm), const PTRACE_GETHBPREGS = 29 +pkg syscall (linux-arm), const PTRACE_GETREGS = 12 +pkg syscall (linux-arm), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-arm), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-arm), const PTRACE_GETVFPREGS = 27 +pkg syscall (linux-arm), const PTRACE_GETWMMXREGS = 18 +pkg syscall (linux-arm), const PTRACE_GET_THREAD_AREA = 22 +pkg syscall (linux-arm), const PTRACE_KILL = 8 +pkg syscall (linux-arm), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-arm), const PTRACE_O_MASK = 127 +pkg syscall (linux-arm), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-arm), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-arm), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-arm), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-arm), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-arm), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-arm), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-arm), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-arm), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-arm), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-arm), const PTRACE_POKEDATA = 5 +pkg syscall (linux-arm), const PTRACE_POKETEXT = 4 +pkg syscall (linux-arm), const PTRACE_POKEUSR = 6 +pkg syscall (linux-arm), const PTRACE_SETCRUNCHREGS = 26 +pkg syscall (linux-arm), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-arm), const PTRACE_SETHBPREGS = 30 +pkg syscall (linux-arm), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-arm), const PTRACE_SETREGS = 13 +pkg syscall (linux-arm), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-arm), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-arm), const PTRACE_SETVFPREGS = 28 +pkg syscall (linux-arm), const PTRACE_SETWMMXREGS = 19 +pkg syscall (linux-arm), const PTRACE_SET_SYSCALL = 23 +pkg syscall (linux-arm), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-arm), const PTRACE_SYSCALL = 24 +pkg syscall (linux-arm), const PTRACE_TRACEME = 0 +pkg syscall (linux-arm), const PT_DATA_ADDR = 65540 +pkg syscall (linux-arm), const PT_TEXT_ADDR = 65536 +pkg syscall (linux-arm), const PT_TEXT_END_ADDR = 65544 +pkg syscall (linux-arm), const PathMax = 4096 +pkg syscall (linux-arm), const RLIMIT_AS = 9 +pkg syscall (linux-arm), const RLIMIT_CORE = 4 +pkg syscall (linux-arm), const RLIMIT_CPU = 0 +pkg syscall (linux-arm), const RLIMIT_DATA = 2 +pkg syscall (linux-arm), const RLIMIT_FSIZE = 1 +pkg syscall (linux-arm), const RLIMIT_NOFILE = 7 +pkg syscall (linux-arm), const RLIMIT_STACK = 3 +pkg syscall (linux-arm), const RLIM_INFINITY = -1 +pkg syscall (linux-arm), const RTAX_ADVMSS = 8 +pkg syscall (linux-arm), const RTAX_CWND = 7 +pkg syscall (linux-arm), const RTAX_FEATURES = 12 +pkg syscall (linux-arm), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-arm), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-arm), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-arm), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-arm), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-arm), const RTAX_INITCWND = 11 +pkg syscall (linux-arm), const RTAX_INITRWND = 14 +pkg syscall (linux-arm), const RTAX_LOCK = 1 +pkg syscall (linux-arm), const RTAX_MAX = 14 +pkg syscall (linux-arm), const RTAX_MTU = 2 +pkg syscall (linux-arm), const RTAX_REORDERING = 9 +pkg syscall (linux-arm), const RTAX_RTO_MIN = 13 +pkg syscall (linux-arm), const RTAX_RTT = 4 +pkg syscall (linux-arm), const RTAX_RTTVAR = 5 +pkg syscall (linux-arm), const RTAX_SSTHRESH = 6 +pkg syscall (linux-arm), const RTAX_UNSPEC = 0 +pkg syscall (linux-arm), const RTAX_WINDOW = 3 +pkg syscall (linux-arm), const RTA_ALIGNTO = 4 +pkg syscall (linux-arm), const RTA_CACHEINFO = 12 +pkg syscall (linux-arm), const RTA_DST = 1 +pkg syscall (linux-arm), const RTA_FLOW = 11 +pkg syscall (linux-arm), const RTA_GATEWAY = 5 +pkg syscall (linux-arm), const RTA_IIF = 3 +pkg syscall (linux-arm), const RTA_MAX = 16 +pkg syscall (linux-arm), const RTA_METRICS = 8 +pkg syscall (linux-arm), const RTA_MULTIPATH = 9 +pkg syscall (linux-arm), const RTA_OIF = 4 +pkg syscall (linux-arm), const RTA_PREFSRC = 7 +pkg syscall (linux-arm), const RTA_PRIORITY = 6 +pkg syscall (linux-arm), const RTA_SRC = 2 +pkg syscall (linux-arm), const RTA_TABLE = 15 +pkg syscall (linux-arm), const RTA_UNSPEC = 0 +pkg syscall (linux-arm), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-arm), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-arm), const RTCF_LOG = 33554432 +pkg syscall (linux-arm), const RTCF_MASQ = 4194304 +pkg syscall (linux-arm), const RTCF_NAT = 8388608 +pkg syscall (linux-arm), const RTCF_VALVE = 2097152 +pkg syscall (linux-arm), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-arm), const RTF_ADDRCONF = 262144 +pkg syscall (linux-arm), const RTF_ALLONLINK = 131072 +pkg syscall (linux-arm), const RTF_BROADCAST = 268435456 +pkg syscall (linux-arm), const RTF_CACHE = 16777216 +pkg syscall (linux-arm), const RTF_DEFAULT = 65536 +pkg syscall (linux-arm), const RTF_DYNAMIC = 16 +pkg syscall (linux-arm), const RTF_FLOW = 33554432 +pkg syscall (linux-arm), const RTF_GATEWAY = 2 +pkg syscall (linux-arm), const RTF_HOST = 4 +pkg syscall (linux-arm), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-arm), const RTF_IRTT = 256 +pkg syscall (linux-arm), const RTF_LINKRT = 1048576 +pkg syscall (linux-arm), const RTF_LOCAL = 2147483648 +pkg syscall (linux-arm), const RTF_MODIFIED = 32 +pkg syscall (linux-arm), const RTF_MSS = 64 +pkg syscall (linux-arm), const RTF_MTU = 64 +pkg syscall (linux-arm), const RTF_MULTICAST = 536870912 +pkg syscall (linux-arm), const RTF_NAT = 134217728 +pkg syscall (linux-arm), const RTF_NOFORWARD = 4096 +pkg syscall (linux-arm), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-arm), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-arm), const RTF_POLICY = 67108864 +pkg syscall (linux-arm), const RTF_REINSTATE = 8 +pkg syscall (linux-arm), const RTF_REJECT = 512 +pkg syscall (linux-arm), const RTF_STATIC = 1024 +pkg syscall (linux-arm), const RTF_THROW = 8192 +pkg syscall (linux-arm), const RTF_UP = 1 +pkg syscall (linux-arm), const RTF_WINDOW = 128 +pkg syscall (linux-arm), const RTF_XRESOLVE = 2048 +pkg syscall (linux-arm), const RTM_BASE = 16 +pkg syscall (linux-arm), const RTM_DELACTION = 49 +pkg syscall (linux-arm), const RTM_DELADDR = 21 +pkg syscall (linux-arm), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-arm), const RTM_DELLINK = 17 +pkg syscall (linux-arm), const RTM_DELNEIGH = 29 +pkg syscall (linux-arm), const RTM_DELQDISC = 37 +pkg syscall (linux-arm), const RTM_DELROUTE = 25 +pkg syscall (linux-arm), const RTM_DELRULE = 33 +pkg syscall (linux-arm), const RTM_DELTCLASS = 41 +pkg syscall (linux-arm), const RTM_DELTFILTER = 45 +pkg syscall (linux-arm), const RTM_F_CLONED = 512 +pkg syscall (linux-arm), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-arm), const RTM_F_NOTIFY = 256 +pkg syscall (linux-arm), const RTM_F_PREFIX = 2048 +pkg syscall (linux-arm), const RTM_GETACTION = 50 +pkg syscall (linux-arm), const RTM_GETADDR = 22 +pkg syscall (linux-arm), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-arm), const RTM_GETANYCAST = 62 +pkg syscall (linux-arm), const RTM_GETDCB = 78 +pkg syscall (linux-arm), const RTM_GETLINK = 18 +pkg syscall (linux-arm), const RTM_GETMULTICAST = 58 +pkg syscall (linux-arm), const RTM_GETNEIGH = 30 +pkg syscall (linux-arm), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-arm), const RTM_GETQDISC = 38 +pkg syscall (linux-arm), const RTM_GETROUTE = 26 +pkg syscall (linux-arm), const RTM_GETRULE = 34 +pkg syscall (linux-arm), const RTM_GETTCLASS = 42 +pkg syscall (linux-arm), const RTM_GETTFILTER = 46 +pkg syscall (linux-arm), const RTM_MAX = 79 +pkg syscall (linux-arm), const RTM_NEWACTION = 48 +pkg syscall (linux-arm), const RTM_NEWADDR = 20 +pkg syscall (linux-arm), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-arm), const RTM_NEWLINK = 16 +pkg syscall (linux-arm), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-arm), const RTM_NEWNEIGH = 28 +pkg syscall (linux-arm), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-arm), const RTM_NEWPREFIX = 52 +pkg syscall (linux-arm), const RTM_NEWQDISC = 36 +pkg syscall (linux-arm), const RTM_NEWROUTE = 24 +pkg syscall (linux-arm), const RTM_NEWRULE = 32 +pkg syscall (linux-arm), const RTM_NEWTCLASS = 40 +pkg syscall (linux-arm), const RTM_NEWTFILTER = 44 +pkg syscall (linux-arm), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-arm), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-arm), const RTM_SETDCB = 79 +pkg syscall (linux-arm), const RTM_SETLINK = 19 +pkg syscall (linux-arm), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-arm), const RTNH_ALIGNTO = 4 +pkg syscall (linux-arm), const RTNH_F_DEAD = 1 +pkg syscall (linux-arm), const RTNH_F_ONLINK = 4 +pkg syscall (linux-arm), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-arm), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-arm), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-arm), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-arm), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-arm), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-arm), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-arm), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-arm), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-arm), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-arm), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-arm), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-arm), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-arm), const RTNLGRP_LINK = 1 +pkg syscall (linux-arm), const RTNLGRP_LINK ideal-int +pkg syscall (linux-arm), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-arm), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-arm), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-arm), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-arm), const RTNLGRP_NONE = 0 +pkg syscall (linux-arm), const RTNLGRP_NONE ideal-int +pkg syscall (linux-arm), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-arm), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-arm), const RTNLGRP_TC = 4 +pkg syscall (linux-arm), const RTNLGRP_TC ideal-int +pkg syscall (linux-arm), const RTN_ANYCAST = 4 +pkg syscall (linux-arm), const RTN_BLACKHOLE = 6 +pkg syscall (linux-arm), const RTN_BROADCAST = 3 +pkg syscall (linux-arm), const RTN_LOCAL = 2 +pkg syscall (linux-arm), const RTN_MAX = 11 +pkg syscall (linux-arm), const RTN_MULTICAST = 5 +pkg syscall (linux-arm), const RTN_NAT = 10 +pkg syscall (linux-arm), const RTN_PROHIBIT = 8 +pkg syscall (linux-arm), const RTN_THROW = 9 +pkg syscall (linux-arm), const RTN_UNICAST = 1 +pkg syscall (linux-arm), const RTN_UNREACHABLE = 7 +pkg syscall (linux-arm), const RTN_UNSPEC = 0 +pkg syscall (linux-arm), const RTN_XRESOLVE = 11 +pkg syscall (linux-arm), const RTPROT_BIRD = 12 +pkg syscall (linux-arm), const RTPROT_BOOT = 3 +pkg syscall (linux-arm), const RTPROT_DHCP = 16 +pkg syscall (linux-arm), const RTPROT_DNROUTED = 13 +pkg syscall (linux-arm), const RTPROT_GATED = 8 +pkg syscall (linux-arm), const RTPROT_KERNEL = 2 +pkg syscall (linux-arm), const RTPROT_MRT = 10 +pkg syscall (linux-arm), const RTPROT_NTK = 15 +pkg syscall (linux-arm), const RTPROT_RA = 9 +pkg syscall (linux-arm), const RTPROT_REDIRECT = 1 +pkg syscall (linux-arm), const RTPROT_STATIC = 4 +pkg syscall (linux-arm), const RTPROT_UNSPEC = 0 +pkg syscall (linux-arm), const RTPROT_XORP = 14 +pkg syscall (linux-arm), const RTPROT_ZEBRA = 11 +pkg syscall (linux-arm), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-arm), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-arm), const RT_CLASS_MAIN = 254 +pkg syscall (linux-arm), const RT_CLASS_MAX = 255 +pkg syscall (linux-arm), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-arm), const RT_SCOPE_HOST = 254 +pkg syscall (linux-arm), const RT_SCOPE_LINK = 253 +pkg syscall (linux-arm), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-arm), const RT_SCOPE_SITE = 200 +pkg syscall (linux-arm), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-arm), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-arm), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-arm), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-arm), const RT_TABLE_MAIN = 254 +pkg syscall (linux-arm), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-arm), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-arm), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-arm), const RUSAGE_SELF = 0 +pkg syscall (linux-arm), const RUSAGE_THREAD = 1 +pkg syscall (linux-arm), const SCM_CREDENTIALS = 2 +pkg syscall (linux-arm), const SCM_RIGHTS = 1 +pkg syscall (linux-arm), const SCM_TIMESTAMP = 29 +pkg syscall (linux-arm), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-arm), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-arm), const SIGBUS = 7 +pkg syscall (linux-arm), const SIGCHLD = 17 +pkg syscall (linux-arm), const SIGCLD = 17 +pkg syscall (linux-arm), const SIGCONT = 18 +pkg syscall (linux-arm), const SIGIO = 29 +pkg syscall (linux-arm), const SIGIOT = 6 +pkg syscall (linux-arm), const SIGPOLL = 29 +pkg syscall (linux-arm), const SIGPROF = 27 +pkg syscall (linux-arm), const SIGPWR = 30 +pkg syscall (linux-arm), const SIGSTKFLT = 16 +pkg syscall (linux-arm), const SIGSTOP = 19 +pkg syscall (linux-arm), const SIGSYS = 31 +pkg syscall (linux-arm), const SIGTSTP = 20 +pkg syscall (linux-arm), const SIGTTIN = 21 +pkg syscall (linux-arm), const SIGTTOU = 22 +pkg syscall (linux-arm), const SIGUNUSED = 31 +pkg syscall (linux-arm), const SIGURG = 23 +pkg syscall (linux-arm), const SIGUSR1 = 10 +pkg syscall (linux-arm), const SIGUSR2 = 12 +pkg syscall (linux-arm), const SIGVTALRM = 26 +pkg syscall (linux-arm), const SIGWINCH = 28 +pkg syscall (linux-arm), const SIGXCPU = 24 +pkg syscall (linux-arm), const SIGXFSZ = 25 +pkg syscall (linux-arm), const SIOCADDDLCI = 35200 +pkg syscall (linux-arm), const SIOCADDMULTI = 35121 +pkg syscall (linux-arm), const SIOCADDRT = 35083 +pkg syscall (linux-arm), const SIOCATMARK = 35077 +pkg syscall (linux-arm), const SIOCDARP = 35155 +pkg syscall (linux-arm), const SIOCDELDLCI = 35201 +pkg syscall (linux-arm), const SIOCDELMULTI = 35122 +pkg syscall (linux-arm), const SIOCDELRT = 35084 +pkg syscall (linux-arm), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-arm), const SIOCDIFADDR = 35126 +pkg syscall (linux-arm), const SIOCDRARP = 35168 +pkg syscall (linux-arm), const SIOCGARP = 35156 +pkg syscall (linux-arm), const SIOCGIFADDR = 35093 +pkg syscall (linux-arm), const SIOCGIFBR = 35136 +pkg syscall (linux-arm), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-arm), const SIOCGIFCONF = 35090 +pkg syscall (linux-arm), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-arm), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-arm), const SIOCGIFENCAP = 35109 +pkg syscall (linux-arm), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-arm), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-arm), const SIOCGIFINDEX = 35123 +pkg syscall (linux-arm), const SIOCGIFMAP = 35184 +pkg syscall (linux-arm), const SIOCGIFMEM = 35103 +pkg syscall (linux-arm), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-arm), const SIOCGIFMTU = 35105 +pkg syscall (linux-arm), const SIOCGIFNAME = 35088 +pkg syscall (linux-arm), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-arm), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-arm), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-arm), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-arm), const SIOCGPGRP = 35076 +pkg syscall (linux-arm), const SIOCGRARP = 35169 +pkg syscall (linux-arm), const SIOCGSTAMP = 35078 +pkg syscall (linux-arm), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-arm), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-arm), const SIOCRTMSG = 35085 +pkg syscall (linux-arm), const SIOCSARP = 35157 +pkg syscall (linux-arm), const SIOCSIFADDR = 35094 +pkg syscall (linux-arm), const SIOCSIFBR = 35137 +pkg syscall (linux-arm), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-arm), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-arm), const SIOCSIFENCAP = 35110 +pkg syscall (linux-arm), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-arm), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-arm), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-arm), const SIOCSIFLINK = 35089 +pkg syscall (linux-arm), const SIOCSIFMAP = 35185 +pkg syscall (linux-arm), const SIOCSIFMEM = 35104 +pkg syscall (linux-arm), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-arm), const SIOCSIFMTU = 35106 +pkg syscall (linux-arm), const SIOCSIFNAME = 35107 +pkg syscall (linux-arm), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-arm), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-arm), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-arm), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-arm), const SIOCSPGRP = 35074 +pkg syscall (linux-arm), const SIOCSRARP = 35170 +pkg syscall (linux-arm), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-arm), const SOCK_DCCP = 6 +pkg syscall (linux-arm), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-arm), const SOCK_PACKET = 10 +pkg syscall (linux-arm), const SOCK_RDM = 4 +pkg syscall (linux-arm), const SOL_AAL = 265 +pkg syscall (linux-arm), const SOL_ATM = 264 +pkg syscall (linux-arm), const SOL_DECNET = 261 +pkg syscall (linux-arm), const SOL_ICMPV6 = 58 +pkg syscall (linux-arm), const SOL_IP = 0 +pkg syscall (linux-arm), const SOL_IPV6 = 41 +pkg syscall (linux-arm), const SOL_IRDA = 266 +pkg syscall (linux-arm), const SOL_PACKET = 263 +pkg syscall (linux-arm), const SOL_RAW = 255 +pkg syscall (linux-arm), const SOL_SOCKET = 1 +pkg syscall (linux-arm), const SOL_TCP = 6 +pkg syscall (linux-arm), const SOL_X25 = 262 +pkg syscall (linux-arm), const SOMAXCONN = 128 +pkg syscall (linux-arm), const SO_ACCEPTCONN = 30 +pkg syscall (linux-arm), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-arm), const SO_BINDTODEVICE = 25 +pkg syscall (linux-arm), const SO_BROADCAST = 6 +pkg syscall (linux-arm), const SO_BSDCOMPAT = 14 +pkg syscall (linux-arm), const SO_DEBUG = 1 +pkg syscall (linux-arm), const SO_DETACH_FILTER = 27 +pkg syscall (linux-arm), const SO_DOMAIN = 39 +pkg syscall (linux-arm), const SO_DONTROUTE = 5 +pkg syscall (linux-arm), const SO_ERROR = 4 +pkg syscall (linux-arm), const SO_KEEPALIVE = 9 +pkg syscall (linux-arm), const SO_LINGER = 13 +pkg syscall (linux-arm), const SO_MARK = 36 +pkg syscall (linux-arm), const SO_NO_CHECK = 11 +pkg syscall (linux-arm), const SO_OOBINLINE = 10 +pkg syscall (linux-arm), const SO_PASSCRED = 16 +pkg syscall (linux-arm), const SO_PASSSEC = 34 +pkg syscall (linux-arm), const SO_PEERCRED = 17 +pkg syscall (linux-arm), const SO_PEERNAME = 28 +pkg syscall (linux-arm), const SO_PEERSEC = 31 +pkg syscall (linux-arm), const SO_PRIORITY = 12 +pkg syscall (linux-arm), const SO_PROTOCOL = 38 +pkg syscall (linux-arm), const SO_RCVBUF = 8 +pkg syscall (linux-arm), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-arm), const SO_RCVLOWAT = 18 +pkg syscall (linux-arm), const SO_RCVTIMEO = 20 +pkg syscall (linux-arm), const SO_REUSEADDR = 2 +pkg syscall (linux-arm), const SO_RXQ_OVFL = 40 +pkg syscall (linux-arm), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-arm), const SO_SNDBUF = 7 +pkg syscall (linux-arm), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-arm), const SO_SNDLOWAT = 19 +pkg syscall (linux-arm), const SO_SNDTIMEO = 21 +pkg syscall (linux-arm), const SO_TIMESTAMP = 29 +pkg syscall (linux-arm), const SO_TIMESTAMPING = 37 +pkg syscall (linux-arm), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-arm), const SO_TYPE = 3 +pkg syscall (linux-arm), const SYS_ACCEPT = 285 +pkg syscall (linux-arm), const SYS_ACCEPT4 = 366 +pkg syscall (linux-arm), const SYS_ACCESS = 33 +pkg syscall (linux-arm), const SYS_ACCT = 51 +pkg syscall (linux-arm), const SYS_ADD_KEY = 309 +pkg syscall (linux-arm), const SYS_ADJTIMEX = 124 +pkg syscall (linux-arm), const SYS_ALARM = 27 +pkg syscall (linux-arm), const SYS_ARM_FADVISE64_64 = 270 +pkg syscall (linux-arm), const SYS_ARM_SYNC_FILE_RANGE = 341 +pkg syscall (linux-arm), const SYS_BDFLUSH = 134 +pkg syscall (linux-arm), const SYS_BIND = 282 +pkg syscall (linux-arm), const SYS_BRK = 45 +pkg syscall (linux-arm), const SYS_CAPGET = 184 +pkg syscall (linux-arm), const SYS_CAPSET = 185 +pkg syscall (linux-arm), const SYS_CHDIR = 12 +pkg syscall (linux-arm), const SYS_CHMOD = 15 +pkg syscall (linux-arm), const SYS_CHOWN = 182 +pkg syscall (linux-arm), const SYS_CHOWN32 = 212 +pkg syscall (linux-arm), const SYS_CHROOT = 61 +pkg syscall (linux-arm), const SYS_CLOCK_ADJTIME = 372 +pkg syscall (linux-arm), const SYS_CLOCK_GETRES = 264 +pkg syscall (linux-arm), const SYS_CLOCK_GETTIME = 263 +pkg syscall (linux-arm), const SYS_CLOCK_NANOSLEEP = 265 +pkg syscall (linux-arm), const SYS_CLOCK_SETTIME = 262 +pkg syscall (linux-arm), const SYS_CLONE = 120 +pkg syscall (linux-arm), const SYS_CLOSE = 6 +pkg syscall (linux-arm), const SYS_CONNECT = 283 +pkg syscall (linux-arm), const SYS_CREAT = 8 +pkg syscall (linux-arm), const SYS_DELETE_MODULE = 129 +pkg syscall (linux-arm), const SYS_DUP = 41 +pkg syscall (linux-arm), const SYS_DUP2 = 63 +pkg syscall (linux-arm), const SYS_DUP3 = 358 +pkg syscall (linux-arm), const SYS_EPOLL_CREATE = 250 +pkg syscall (linux-arm), const SYS_EPOLL_CREATE1 = 357 +pkg syscall (linux-arm), const SYS_EPOLL_CTL = 251 +pkg syscall (linux-arm), const SYS_EPOLL_PWAIT = 346 +pkg syscall (linux-arm), const SYS_EPOLL_WAIT = 252 +pkg syscall (linux-arm), const SYS_EVENTFD = 351 +pkg syscall (linux-arm), const SYS_EVENTFD2 = 356 +pkg syscall (linux-arm), const SYS_EXECVE = 11 +pkg syscall (linux-arm), const SYS_EXIT = 1 +pkg syscall (linux-arm), const SYS_EXIT_GROUP = 248 +pkg syscall (linux-arm), const SYS_FACCESSAT = 334 +pkg syscall (linux-arm), const SYS_FALLOCATE = 352 +pkg syscall (linux-arm), const SYS_FANOTIFY_INIT = 367 +pkg syscall (linux-arm), const SYS_FANOTIFY_MARK = 368 +pkg syscall (linux-arm), const SYS_FCHDIR = 133 +pkg syscall (linux-arm), const SYS_FCHMOD = 94 +pkg syscall (linux-arm), const SYS_FCHMODAT = 333 +pkg syscall (linux-arm), const SYS_FCHOWN = 95 +pkg syscall (linux-arm), const SYS_FCHOWN32 = 207 +pkg syscall (linux-arm), const SYS_FCHOWNAT = 325 +pkg syscall (linux-arm), const SYS_FCNTL = 55 +pkg syscall (linux-arm), const SYS_FCNTL64 = 221 +pkg syscall (linux-arm), const SYS_FDATASYNC = 148 +pkg syscall (linux-arm), const SYS_FGETXATTR = 231 +pkg syscall (linux-arm), const SYS_FLISTXATTR = 234 +pkg syscall (linux-arm), const SYS_FLOCK = 143 +pkg syscall (linux-arm), const SYS_FORK = 2 +pkg syscall (linux-arm), const SYS_FREMOVEXATTR = 237 +pkg syscall (linux-arm), const SYS_FSETXATTR = 228 +pkg syscall (linux-arm), const SYS_FSTAT = 108 +pkg syscall (linux-arm), const SYS_FSTAT64 = 197 +pkg syscall (linux-arm), const SYS_FSTATAT64 = 327 +pkg syscall (linux-arm), const SYS_FSTATFS = 100 +pkg syscall (linux-arm), const SYS_FSTATFS64 = 267 +pkg syscall (linux-arm), const SYS_FSYNC = 118 +pkg syscall (linux-arm), const SYS_FTRUNCATE = 93 +pkg syscall (linux-arm), const SYS_FTRUNCATE64 = 194 +pkg syscall (linux-arm), const SYS_FUTEX = 240 +pkg syscall (linux-arm), const SYS_FUTIMESAT = 326 +pkg syscall (linux-arm), const SYS_GETCPU = 345 +pkg syscall (linux-arm), const SYS_GETCWD = 183 +pkg syscall (linux-arm), const SYS_GETDENTS = 141 +pkg syscall (linux-arm), const SYS_GETDENTS64 = 217 +pkg syscall (linux-arm), const SYS_GETEGID = 50 +pkg syscall (linux-arm), const SYS_GETEGID32 = 202 +pkg syscall (linux-arm), const SYS_GETEUID = 49 +pkg syscall (linux-arm), const SYS_GETEUID32 = 201 +pkg syscall (linux-arm), const SYS_GETGID = 47 +pkg syscall (linux-arm), const SYS_GETGID32 = 200 +pkg syscall (linux-arm), const SYS_GETGROUPS = 80 +pkg syscall (linux-arm), const SYS_GETGROUPS32 = 205 +pkg syscall (linux-arm), const SYS_GETITIMER = 105 +pkg syscall (linux-arm), const SYS_GETPEERNAME = 287 +pkg syscall (linux-arm), const SYS_GETPGID = 132 +pkg syscall (linux-arm), const SYS_GETPGRP = 65 +pkg syscall (linux-arm), const SYS_GETPID = 20 +pkg syscall (linux-arm), const SYS_GETPPID = 64 +pkg syscall (linux-arm), const SYS_GETPRIORITY = 96 +pkg syscall (linux-arm), const SYS_GETRESGID = 171 +pkg syscall (linux-arm), const SYS_GETRESGID32 = 211 +pkg syscall (linux-arm), const SYS_GETRESUID = 165 +pkg syscall (linux-arm), const SYS_GETRESUID32 = 209 +pkg syscall (linux-arm), const SYS_GETRLIMIT = 76 +pkg syscall (linux-arm), const SYS_GETRUSAGE = 77 +pkg syscall (linux-arm), const SYS_GETSID = 147 +pkg syscall (linux-arm), const SYS_GETSOCKNAME = 286 +pkg syscall (linux-arm), const SYS_GETSOCKOPT = 295 +pkg syscall (linux-arm), const SYS_GETTID = 224 +pkg syscall (linux-arm), const SYS_GETTIMEOFDAY = 78 +pkg syscall (linux-arm), const SYS_GETUID = 24 +pkg syscall (linux-arm), const SYS_GETUID32 = 199 +pkg syscall (linux-arm), const SYS_GETXATTR = 229 +pkg syscall (linux-arm), const SYS_GET_MEMPOLICY = 320 +pkg syscall (linux-arm), const SYS_GET_ROBUST_LIST = 339 +pkg syscall (linux-arm), const SYS_INIT_MODULE = 128 +pkg syscall (linux-arm), const SYS_INOTIFY_ADD_WATCH = 317 +pkg syscall (linux-arm), const SYS_INOTIFY_INIT = 316 +pkg syscall (linux-arm), const SYS_INOTIFY_INIT1 = 360 +pkg syscall (linux-arm), const SYS_INOTIFY_RM_WATCH = 318 +pkg syscall (linux-arm), const SYS_IOCTL = 54 +pkg syscall (linux-arm), const SYS_IOPRIO_GET = 315 +pkg syscall (linux-arm), const SYS_IOPRIO_SET = 314 +pkg syscall (linux-arm), const SYS_IO_CANCEL = 247 +pkg syscall (linux-arm), const SYS_IO_DESTROY = 244 +pkg syscall (linux-arm), const SYS_IO_GETEVENTS = 245 +pkg syscall (linux-arm), const SYS_IO_SETUP = 243 +pkg syscall (linux-arm), const SYS_IO_SUBMIT = 246 +pkg syscall (linux-arm), const SYS_IPC = 117 +pkg syscall (linux-arm), const SYS_KEXEC_LOAD = 347 +pkg syscall (linux-arm), const SYS_KEYCTL = 311 +pkg syscall (linux-arm), const SYS_KILL = 37 +pkg syscall (linux-arm), const SYS_LCHOWN = 16 +pkg syscall (linux-arm), const SYS_LCHOWN32 = 198 +pkg syscall (linux-arm), const SYS_LGETXATTR = 230 +pkg syscall (linux-arm), const SYS_LINK = 9 +pkg syscall (linux-arm), const SYS_LINKAT = 330 +pkg syscall (linux-arm), const SYS_LISTEN = 284 +pkg syscall (linux-arm), const SYS_LISTXATTR = 232 +pkg syscall (linux-arm), const SYS_LLISTXATTR = 233 +pkg syscall (linux-arm), const SYS_LOOKUP_DCOOKIE = 249 +pkg syscall (linux-arm), const SYS_LREMOVEXATTR = 236 +pkg syscall (linux-arm), const SYS_LSEEK = 19 +pkg syscall (linux-arm), const SYS_LSETXATTR = 227 +pkg syscall (linux-arm), const SYS_LSTAT = 107 +pkg syscall (linux-arm), const SYS_LSTAT64 = 196 +pkg syscall (linux-arm), const SYS_MADVISE = 220 +pkg syscall (linux-arm), const SYS_MBIND = 319 +pkg syscall (linux-arm), const SYS_MINCORE = 219 +pkg syscall (linux-arm), const SYS_MKDIR = 39 +pkg syscall (linux-arm), const SYS_MKDIRAT = 323 +pkg syscall (linux-arm), const SYS_MKNOD = 14 +pkg syscall (linux-arm), const SYS_MKNODAT = 324 +pkg syscall (linux-arm), const SYS_MLOCK = 150 +pkg syscall (linux-arm), const SYS_MLOCKALL = 152 +pkg syscall (linux-arm), const SYS_MMAP = 90 +pkg syscall (linux-arm), const SYS_MMAP2 = 192 +pkg syscall (linux-arm), const SYS_MOUNT = 21 +pkg syscall (linux-arm), const SYS_MOVE_PAGES = 344 +pkg syscall (linux-arm), const SYS_MPROTECT = 125 +pkg syscall (linux-arm), const SYS_MQ_GETSETATTR = 279 +pkg syscall (linux-arm), const SYS_MQ_NOTIFY = 278 +pkg syscall (linux-arm), const SYS_MQ_OPEN = 274 +pkg syscall (linux-arm), const SYS_MQ_TIMEDRECEIVE = 277 +pkg syscall (linux-arm), const SYS_MQ_TIMEDSEND = 276 +pkg syscall (linux-arm), const SYS_MQ_UNLINK = 275 +pkg syscall (linux-arm), const SYS_MREMAP = 163 +pkg syscall (linux-arm), const SYS_MSGCTL = 304 +pkg syscall (linux-arm), const SYS_MSGGET = 303 +pkg syscall (linux-arm), const SYS_MSGRCV = 302 +pkg syscall (linux-arm), const SYS_MSGSND = 301 +pkg syscall (linux-arm), const SYS_MSYNC = 144 +pkg syscall (linux-arm), const SYS_MUNLOCK = 151 +pkg syscall (linux-arm), const SYS_MUNLOCKALL = 153 +pkg syscall (linux-arm), const SYS_MUNMAP = 91 +pkg syscall (linux-arm), const SYS_NAME_TO_HANDLE_AT = 370 +pkg syscall (linux-arm), const SYS_NANOSLEEP = 162 +pkg syscall (linux-arm), const SYS_NFSSERVCTL = 169 +pkg syscall (linux-arm), const SYS_NICE = 34 +pkg syscall (linux-arm), const SYS_OABI_SYSCALL_BASE = 0 +pkg syscall (linux-arm), const SYS_OPEN = 5 +pkg syscall (linux-arm), const SYS_OPENAT = 322 +pkg syscall (linux-arm), const SYS_OPEN_BY_HANDLE_AT = 371 +pkg syscall (linux-arm), const SYS_PAUSE = 29 +pkg syscall (linux-arm), const SYS_PCICONFIG_IOBASE = 271 +pkg syscall (linux-arm), const SYS_PCICONFIG_READ = 272 +pkg syscall (linux-arm), const SYS_PCICONFIG_WRITE = 273 +pkg syscall (linux-arm), const SYS_PERF_EVENT_OPEN = 364 +pkg syscall (linux-arm), const SYS_PERSONALITY = 136 +pkg syscall (linux-arm), const SYS_PIPE = 42 +pkg syscall (linux-arm), const SYS_PIPE2 = 359 +pkg syscall (linux-arm), const SYS_PIVOT_ROOT = 218 +pkg syscall (linux-arm), const SYS_POLL = 168 +pkg syscall (linux-arm), const SYS_PPOLL = 336 +pkg syscall (linux-arm), const SYS_PRCTL = 172 +pkg syscall (linux-arm), const SYS_PREAD64 = 180 +pkg syscall (linux-arm), const SYS_PREADV = 361 +pkg syscall (linux-arm), const SYS_PRLIMIT64 = 369 +pkg syscall (linux-arm), const SYS_PROCESS_VM_READV = 376 +pkg syscall (linux-arm), const SYS_PROCESS_VM_WRITEV = 377 +pkg syscall (linux-arm), const SYS_PSELECT6 = 335 +pkg syscall (linux-arm), const SYS_PTRACE = 26 +pkg syscall (linux-arm), const SYS_PWRITE64 = 181 +pkg syscall (linux-arm), const SYS_PWRITEV = 362 +pkg syscall (linux-arm), const SYS_QUOTACTL = 131 +pkg syscall (linux-arm), const SYS_READ = 3 +pkg syscall (linux-arm), const SYS_READAHEAD = 225 +pkg syscall (linux-arm), const SYS_READDIR = 89 +pkg syscall (linux-arm), const SYS_READLINK = 85 +pkg syscall (linux-arm), const SYS_READLINKAT = 332 +pkg syscall (linux-arm), const SYS_READV = 145 +pkg syscall (linux-arm), const SYS_REBOOT = 88 +pkg syscall (linux-arm), const SYS_RECV = 291 +pkg syscall (linux-arm), const SYS_RECVFROM = 292 +pkg syscall (linux-arm), const SYS_RECVMMSG = 365 +pkg syscall (linux-arm), const SYS_RECVMSG = 297 +pkg syscall (linux-arm), const SYS_REMAP_FILE_PAGES = 253 +pkg syscall (linux-arm), const SYS_REMOVEXATTR = 235 +pkg syscall (linux-arm), const SYS_RENAME = 38 +pkg syscall (linux-arm), const SYS_RENAMEAT = 329 +pkg syscall (linux-arm), const SYS_REQUEST_KEY = 310 +pkg syscall (linux-arm), const SYS_RESTART_SYSCALL = 0 +pkg syscall (linux-arm), const SYS_RMDIR = 40 +pkg syscall (linux-arm), const SYS_RT_SIGACTION = 174 +pkg syscall (linux-arm), const SYS_RT_SIGPENDING = 176 +pkg syscall (linux-arm), const SYS_RT_SIGPROCMASK = 175 +pkg syscall (linux-arm), const SYS_RT_SIGQUEUEINFO = 178 +pkg syscall (linux-arm), const SYS_RT_SIGRETURN = 173 +pkg syscall (linux-arm), const SYS_RT_SIGSUSPEND = 179 +pkg syscall (linux-arm), const SYS_RT_SIGTIMEDWAIT = 177 +pkg syscall (linux-arm), const SYS_RT_TGSIGQUEUEINFO = 363 +pkg syscall (linux-arm), const SYS_SCHED_GETAFFINITY = 242 +pkg syscall (linux-arm), const SYS_SCHED_GETPARAM = 155 +pkg syscall (linux-arm), const SYS_SCHED_GETSCHEDULER = 157 +pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MAX = 159 +pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MIN = 160 +pkg syscall (linux-arm), const SYS_SCHED_RR_GET_INTERVAL = 161 +pkg syscall (linux-arm), const SYS_SCHED_SETAFFINITY = 241 +pkg syscall (linux-arm), const SYS_SCHED_SETPARAM = 154 +pkg syscall (linux-arm), const SYS_SCHED_SETSCHEDULER = 156 +pkg syscall (linux-arm), const SYS_SCHED_YIELD = 158 +pkg syscall (linux-arm), const SYS_SELECT = 82 +pkg syscall (linux-arm), const SYS_SEMCTL = 300 +pkg syscall (linux-arm), const SYS_SEMGET = 299 +pkg syscall (linux-arm), const SYS_SEMOP = 298 +pkg syscall (linux-arm), const SYS_SEMTIMEDOP = 312 +pkg syscall (linux-arm), const SYS_SEND = 289 +pkg syscall (linux-arm), const SYS_SENDFILE = 187 +pkg syscall (linux-arm), const SYS_SENDFILE64 = 239 +pkg syscall (linux-arm), const SYS_SENDMMSG = 374 +pkg syscall (linux-arm), const SYS_SENDMSG = 296 +pkg syscall (linux-arm), const SYS_SENDTO = 290 +pkg syscall (linux-arm), const SYS_SETDOMAINNAME = 121 +pkg syscall (linux-arm), const SYS_SETFSGID = 139 +pkg syscall (linux-arm), const SYS_SETFSGID32 = 216 +pkg syscall (linux-arm), const SYS_SETFSUID = 138 +pkg syscall (linux-arm), const SYS_SETFSUID32 = 215 +pkg syscall (linux-arm), const SYS_SETGID = 46 +pkg syscall (linux-arm), const SYS_SETGID32 = 214 +pkg syscall (linux-arm), const SYS_SETGROUPS = 81 +pkg syscall (linux-arm), const SYS_SETGROUPS32 = 206 +pkg syscall (linux-arm), const SYS_SETHOSTNAME = 74 +pkg syscall (linux-arm), const SYS_SETITIMER = 104 +pkg syscall (linux-arm), const SYS_SETNS = 375 +pkg syscall (linux-arm), const SYS_SETPGID = 57 +pkg syscall (linux-arm), const SYS_SETPRIORITY = 97 +pkg syscall (linux-arm), const SYS_SETREGID = 71 +pkg syscall (linux-arm), const SYS_SETREGID32 = 204 +pkg syscall (linux-arm), const SYS_SETRESGID = 170 +pkg syscall (linux-arm), const SYS_SETRESGID32 = 210 +pkg syscall (linux-arm), const SYS_SETRESUID = 164 +pkg syscall (linux-arm), const SYS_SETRESUID32 = 208 +pkg syscall (linux-arm), const SYS_SETREUID = 70 +pkg syscall (linux-arm), const SYS_SETREUID32 = 203 +pkg syscall (linux-arm), const SYS_SETRLIMIT = 75 +pkg syscall (linux-arm), const SYS_SETSID = 66 +pkg syscall (linux-arm), const SYS_SETSOCKOPT = 294 +pkg syscall (linux-arm), const SYS_SETTIMEOFDAY = 79 +pkg syscall (linux-arm), const SYS_SETUID = 23 +pkg syscall (linux-arm), const SYS_SETUID32 = 213 +pkg syscall (linux-arm), const SYS_SETXATTR = 226 +pkg syscall (linux-arm), const SYS_SET_MEMPOLICY = 321 +pkg syscall (linux-arm), const SYS_SET_ROBUST_LIST = 338 +pkg syscall (linux-arm), const SYS_SET_TID_ADDRESS = 256 +pkg syscall (linux-arm), const SYS_SHMAT = 305 +pkg syscall (linux-arm), const SYS_SHMCTL = 308 +pkg syscall (linux-arm), const SYS_SHMDT = 306 +pkg syscall (linux-arm), const SYS_SHMGET = 307 +pkg syscall (linux-arm), const SYS_SHUTDOWN = 293 +pkg syscall (linux-arm), const SYS_SIGACTION = 67 +pkg syscall (linux-arm), const SYS_SIGALTSTACK = 186 +pkg syscall (linux-arm), const SYS_SIGNALFD = 349 +pkg syscall (linux-arm), const SYS_SIGNALFD4 = 355 +pkg syscall (linux-arm), const SYS_SIGPENDING = 73 +pkg syscall (linux-arm), const SYS_SIGPROCMASK = 126 +pkg syscall (linux-arm), const SYS_SIGRETURN = 119 +pkg syscall (linux-arm), const SYS_SIGSUSPEND = 72 +pkg syscall (linux-arm), const SYS_SOCKET = 281 +pkg syscall (linux-arm), const SYS_SOCKETCALL = 102 +pkg syscall (linux-arm), const SYS_SOCKETPAIR = 288 +pkg syscall (linux-arm), const SYS_SPLICE = 340 +pkg syscall (linux-arm), const SYS_STAT = 106 +pkg syscall (linux-arm), const SYS_STAT64 = 195 +pkg syscall (linux-arm), const SYS_STATFS = 99 +pkg syscall (linux-arm), const SYS_STATFS64 = 266 +pkg syscall (linux-arm), const SYS_STIME = 25 +pkg syscall (linux-arm), const SYS_SWAPOFF = 115 +pkg syscall (linux-arm), const SYS_SWAPON = 87 +pkg syscall (linux-arm), const SYS_SYMLINK = 83 +pkg syscall (linux-arm), const SYS_SYMLINKAT = 331 +pkg syscall (linux-arm), const SYS_SYNC = 36 +pkg syscall (linux-arm), const SYS_SYNCFS = 373 +pkg syscall (linux-arm), const SYS_SYSCALL = 113 +pkg syscall (linux-arm), const SYS_SYSCALL_BASE = 0 +pkg syscall (linux-arm), const SYS_SYSFS = 135 +pkg syscall (linux-arm), const SYS_SYSINFO = 116 +pkg syscall (linux-arm), const SYS_SYSLOG = 103 +pkg syscall (linux-arm), const SYS_TEE = 342 +pkg syscall (linux-arm), const SYS_TGKILL = 268 +pkg syscall (linux-arm), const SYS_TIME = 13 +pkg syscall (linux-arm), const SYS_TIMERFD_CREATE = 350 +pkg syscall (linux-arm), const SYS_TIMERFD_GETTIME = 354 +pkg syscall (linux-arm), const SYS_TIMERFD_SETTIME = 353 +pkg syscall (linux-arm), const SYS_TIMER_CREATE = 257 +pkg syscall (linux-arm), const SYS_TIMER_DELETE = 261 +pkg syscall (linux-arm), const SYS_TIMER_GETOVERRUN = 260 +pkg syscall (linux-arm), const SYS_TIMER_GETTIME = 259 +pkg syscall (linux-arm), const SYS_TIMER_SETTIME = 258 +pkg syscall (linux-arm), const SYS_TIMES = 43 +pkg syscall (linux-arm), const SYS_TKILL = 238 +pkg syscall (linux-arm), const SYS_TRUNCATE = 92 +pkg syscall (linux-arm), const SYS_TRUNCATE64 = 193 +pkg syscall (linux-arm), const SYS_UGETRLIMIT = 191 +pkg syscall (linux-arm), const SYS_UMASK = 60 +pkg syscall (linux-arm), const SYS_UMOUNT = 22 +pkg syscall (linux-arm), const SYS_UMOUNT2 = 52 +pkg syscall (linux-arm), const SYS_UNAME = 122 +pkg syscall (linux-arm), const SYS_UNLINK = 10 +pkg syscall (linux-arm), const SYS_UNLINKAT = 328 +pkg syscall (linux-arm), const SYS_UNSHARE = 337 +pkg syscall (linux-arm), const SYS_USELIB = 86 +pkg syscall (linux-arm), const SYS_USTAT = 62 +pkg syscall (linux-arm), const SYS_UTIME = 30 +pkg syscall (linux-arm), const SYS_UTIMENSAT = 348 +pkg syscall (linux-arm), const SYS_UTIMES = 269 +pkg syscall (linux-arm), const SYS_VFORK = 190 +pkg syscall (linux-arm), const SYS_VHANGUP = 111 +pkg syscall (linux-arm), const SYS_VMSPLICE = 343 +pkg syscall (linux-arm), const SYS_VSERVER = 313 +pkg syscall (linux-arm), const SYS_WAIT4 = 114 +pkg syscall (linux-arm), const SYS_WAITID = 280 +pkg syscall (linux-arm), const SYS_WRITE = 4 +pkg syscall (linux-arm), const SYS_WRITEV = 146 +pkg syscall (linux-arm), const SYS__LLSEEK = 140 +pkg syscall (linux-arm), const SYS__NEWSELECT = 142 +pkg syscall (linux-arm), const SYS__SYSCTL = 149 +pkg syscall (linux-arm), const S_BLKSIZE = 512 +pkg syscall (linux-arm), const S_IEXEC = 64 +pkg syscall (linux-arm), const S_IFMT = 61440 +pkg syscall (linux-arm), const S_IREAD = 256 +pkg syscall (linux-arm), const S_IRGRP = 32 +pkg syscall (linux-arm), const S_IROTH = 4 +pkg syscall (linux-arm), const S_IRWXG = 56 +pkg syscall (linux-arm), const S_IRWXO = 7 +pkg syscall (linux-arm), const S_IRWXU = 448 +pkg syscall (linux-arm), const S_IWGRP = 16 +pkg syscall (linux-arm), const S_IWOTH = 2 +pkg syscall (linux-arm), const S_IWRITE = 128 +pkg syscall (linux-arm), const S_IXGRP = 8 +pkg syscall (linux-arm), const S_IXOTH = 1 +pkg syscall (linux-arm), const SizeofCmsghdr = 12 +pkg syscall (linux-arm), const SizeofIPMreq = 8 +pkg syscall (linux-arm), const SizeofIPMreqn = 12 +pkg syscall (linux-arm), const SizeofIPv6Mreq = 20 +pkg syscall (linux-arm), const SizeofIfAddrmsg = 8 +pkg syscall (linux-arm), const SizeofIfInfomsg = 16 +pkg syscall (linux-arm), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-arm), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-arm), const SizeofInotifyEvent = 16 +pkg syscall (linux-arm), const SizeofLinger = 8 +pkg syscall (linux-arm), const SizeofMsghdr = 28 +pkg syscall (linux-arm), const SizeofNlAttr = 4 +pkg syscall (linux-arm), const SizeofNlMsgerr = 20 +pkg syscall (linux-arm), const SizeofNlMsghdr = 16 +pkg syscall (linux-arm), const SizeofRtAttr = 4 +pkg syscall (linux-arm), const SizeofRtGenmsg = 1 +pkg syscall (linux-arm), const SizeofRtMsg = 12 +pkg syscall (linux-arm), const SizeofRtNexthop = 8 +pkg syscall (linux-arm), const SizeofSockFilter = 8 +pkg syscall (linux-arm), const SizeofSockFprog = 8 +pkg syscall (linux-arm), const SizeofSockaddrAny = 112 +pkg syscall (linux-arm), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-arm), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-arm), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-arm), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-arm), const SizeofSockaddrUnix = 110 +pkg syscall (linux-arm), const SizeofTCPInfo = 104 +pkg syscall (linux-arm), const SizeofTCPInfo ideal-int +pkg syscall (linux-arm), const SizeofUcred = 12 +pkg syscall (linux-arm), const TCGETS = 21505 +pkg syscall (linux-arm), const TCP_CONGESTION = 13 +pkg syscall (linux-arm), const TCP_CORK = 3 +pkg syscall (linux-arm), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-arm), const TCP_INFO = 11 +pkg syscall (linux-arm), const TCP_KEEPCNT = 6 +pkg syscall (linux-arm), const TCP_KEEPIDLE = 4 +pkg syscall (linux-arm), const TCP_KEEPINTVL = 5 +pkg syscall (linux-arm), const TCP_LINGER2 = 8 +pkg syscall (linux-arm), const TCP_MAXSEG = 2 +pkg syscall (linux-arm), const TCP_MAXWIN = 65535 +pkg syscall (linux-arm), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-arm), const TCP_MD5SIG = 14 +pkg syscall (linux-arm), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-arm), const TCP_MSS = 512 +pkg syscall (linux-arm), const TCP_QUICKACK = 12 +pkg syscall (linux-arm), const TCP_SYNCNT = 7 +pkg syscall (linux-arm), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-arm), const TCSETS = 21506 +pkg syscall (linux-arm), const TIOCCBRK = 21544 +pkg syscall (linux-arm), const TIOCCONS = 21533 +pkg syscall (linux-arm), const TIOCEXCL = 21516 +pkg syscall (linux-arm), const TIOCGDEV = 2147767346 +pkg syscall (linux-arm), const TIOCGETD = 21540 +pkg syscall (linux-arm), const TIOCGICOUNT = 21597 +pkg syscall (linux-arm), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-arm), const TIOCGPGRP = 21519 +pkg syscall (linux-arm), const TIOCGPTN = 2147767344 +pkg syscall (linux-arm), const TIOCGRS485 = 21550 +pkg syscall (linux-arm), const TIOCGSERIAL = 21534 +pkg syscall (linux-arm), const TIOCGSID = 21545 +pkg syscall (linux-arm), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-arm), const TIOCGWINSZ = 21523 +pkg syscall (linux-arm), const TIOCINQ = 21531 +pkg syscall (linux-arm), const TIOCLINUX = 21532 +pkg syscall (linux-arm), const TIOCMBIC = 21527 +pkg syscall (linux-arm), const TIOCMBIS = 21526 +pkg syscall (linux-arm), const TIOCMGET = 21525 +pkg syscall (linux-arm), const TIOCMIWAIT = 21596 +pkg syscall (linux-arm), const TIOCMSET = 21528 +pkg syscall (linux-arm), const TIOCM_CAR = 64 +pkg syscall (linux-arm), const TIOCM_CD = 64 +pkg syscall (linux-arm), const TIOCM_CTS = 32 +pkg syscall (linux-arm), const TIOCM_DSR = 256 +pkg syscall (linux-arm), const TIOCM_DTR = 2 +pkg syscall (linux-arm), const TIOCM_LE = 1 +pkg syscall (linux-arm), const TIOCM_RI = 128 +pkg syscall (linux-arm), const TIOCM_RNG = 128 +pkg syscall (linux-arm), const TIOCM_RTS = 4 +pkg syscall (linux-arm), const TIOCM_SR = 16 +pkg syscall (linux-arm), const TIOCM_ST = 8 +pkg syscall (linux-arm), const TIOCNOTTY = 21538 +pkg syscall (linux-arm), const TIOCNXCL = 21517 +pkg syscall (linux-arm), const TIOCOUTQ = 21521 +pkg syscall (linux-arm), const TIOCPKT = 21536 +pkg syscall (linux-arm), const TIOCPKT_DATA = 0 +pkg syscall (linux-arm), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-arm), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-arm), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-arm), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-arm), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-arm), const TIOCPKT_START = 8 +pkg syscall (linux-arm), const TIOCPKT_STOP = 4 +pkg syscall (linux-arm), const TIOCSBRK = 21543 +pkg syscall (linux-arm), const TIOCSCTTY = 21518 +pkg syscall (linux-arm), const TIOCSERCONFIG = 21587 +pkg syscall (linux-arm), const TIOCSERGETLSR = 21593 +pkg syscall (linux-arm), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-arm), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-arm), const TIOCSERGWILD = 21588 +pkg syscall (linux-arm), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-arm), const TIOCSERSWILD = 21589 +pkg syscall (linux-arm), const TIOCSER_TEMT = 1 +pkg syscall (linux-arm), const TIOCSETD = 21539 +pkg syscall (linux-arm), const TIOCSIG = 1074025526 +pkg syscall (linux-arm), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-arm), const TIOCSPGRP = 21520 +pkg syscall (linux-arm), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-arm), const TIOCSRS485 = 21551 +pkg syscall (linux-arm), const TIOCSSERIAL = 21535 +pkg syscall (linux-arm), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-arm), const TIOCSTI = 21522 +pkg syscall (linux-arm), const TIOCSWINSZ = 21524 +pkg syscall (linux-arm), const TIOCVHANGUP = 21559 +pkg syscall (linux-arm), const TOSTOP = 256 +pkg syscall (linux-arm), const TUNATTACHFILTER = 1074287829 +pkg syscall (linux-arm), const TUNDETACHFILTER = 1074287830 +pkg syscall (linux-arm), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-arm), const TUNGETIFF = 2147767506 +pkg syscall (linux-arm), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-arm), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-arm), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-arm), const TUNSETGROUP = 1074025678 +pkg syscall (linux-arm), const TUNSETIFF = 1074025674 +pkg syscall (linux-arm), const TUNSETLINK = 1074025677 +pkg syscall (linux-arm), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-arm), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-arm), const TUNSETOWNER = 1074025676 +pkg syscall (linux-arm), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-arm), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-arm), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-arm), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-arm), const VDISCARD = 13 +pkg syscall (linux-arm), const VEOF = 4 +pkg syscall (linux-arm), const VEOL = 11 +pkg syscall (linux-arm), const VEOL2 = 16 +pkg syscall (linux-arm), const VERASE = 2 +pkg syscall (linux-arm), const VINTR = 0 +pkg syscall (linux-arm), const VKILL = 3 +pkg syscall (linux-arm), const VLNEXT = 15 +pkg syscall (linux-arm), const VMIN = 6 +pkg syscall (linux-arm), const VQUIT = 1 +pkg syscall (linux-arm), const VREPRINT = 12 +pkg syscall (linux-arm), const VSTART = 8 +pkg syscall (linux-arm), const VSTOP = 9 +pkg syscall (linux-arm), const VSUSP = 10 +pkg syscall (linux-arm), const VSWTC = 7 +pkg syscall (linux-arm), const VTIME = 5 +pkg syscall (linux-arm), const VWERASE = 14 +pkg syscall (linux-arm), const WALL = 1073741824 +pkg syscall (linux-arm), const WCLONE = 2147483648 +pkg syscall (linux-arm), const WCONTINUED = 8 +pkg syscall (linux-arm), const WEXITED = 4 +pkg syscall (linux-arm), const WNOHANG = 1 +pkg syscall (linux-arm), const WNOTHREAD = 536870912 +pkg syscall (linux-arm), const WNOWAIT = 16777216 +pkg syscall (linux-arm), const WORDSIZE = 32 +pkg syscall (linux-arm), const WSTOPPED = 2 +pkg syscall (linux-arm), const WUNTRACED = 2 +pkg syscall (linux-arm), const XCASE = 4 +pkg syscall (linux-arm), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-arm), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-arm), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-arm), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-arm), func Pipe2([]int, int) error +pkg syscall (linux-arm), func PtraceSyscall(int, int) error +pkg syscall (linux-arm), func Removexattr(string, string) error +pkg syscall (linux-arm), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-arm), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-arm), type SysProcAttr struct, Ctty int +pkg syscall (linux-arm), type TCPInfo struct +pkg syscall (linux-arm), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-arm), type TCPInfo struct, Ato uint32 +pkg syscall (linux-arm), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-arm), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-arm), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-arm), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-arm), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-arm), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-arm), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-arm), type TCPInfo struct, Lost uint32 +pkg syscall (linux-arm), type TCPInfo struct, Options uint8 +pkg syscall (linux-arm), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-arm), type TCPInfo struct, Probes uint8 +pkg syscall (linux-arm), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-arm), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-arm), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-arm), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-arm), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-arm), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-arm), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-arm), type TCPInfo struct, Rto uint32 +pkg syscall (linux-arm), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-arm), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-arm), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-arm), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-arm), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-arm), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-arm), type TCPInfo struct, State uint8 +pkg syscall (linux-arm), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-arm), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-arm-cgo), const AF_ALG = 38 +pkg syscall (linux-arm-cgo), const AF_APPLETALK = 5 +pkg syscall (linux-arm-cgo), const AF_ASH = 18 +pkg syscall (linux-arm-cgo), const AF_ATMPVC = 8 +pkg syscall (linux-arm-cgo), const AF_ATMSVC = 20 +pkg syscall (linux-arm-cgo), const AF_AX25 = 3 +pkg syscall (linux-arm-cgo), const AF_BLUETOOTH = 31 +pkg syscall (linux-arm-cgo), const AF_BRIDGE = 7 +pkg syscall (linux-arm-cgo), const AF_CAIF = 37 +pkg syscall (linux-arm-cgo), const AF_CAN = 29 +pkg syscall (linux-arm-cgo), const AF_DECnet = 12 +pkg syscall (linux-arm-cgo), const AF_ECONET = 19 +pkg syscall (linux-arm-cgo), const AF_FILE = 1 +pkg syscall (linux-arm-cgo), const AF_IEEE802154 = 36 +pkg syscall (linux-arm-cgo), const AF_INET6 = 10 +pkg syscall (linux-arm-cgo), const AF_IPX = 4 +pkg syscall (linux-arm-cgo), const AF_IRDA = 23 +pkg syscall (linux-arm-cgo), const AF_ISDN = 34 +pkg syscall (linux-arm-cgo), const AF_IUCV = 32 +pkg syscall (linux-arm-cgo), const AF_KEY = 15 +pkg syscall (linux-arm-cgo), const AF_LLC = 26 +pkg syscall (linux-arm-cgo), const AF_LOCAL = 1 +pkg syscall (linux-arm-cgo), const AF_MAX = 39 +pkg syscall (linux-arm-cgo), const AF_NETBEUI = 13 +pkg syscall (linux-arm-cgo), const AF_NETLINK = 16 +pkg syscall (linux-arm-cgo), const AF_NETROM = 6 +pkg syscall (linux-arm-cgo), const AF_PACKET = 17 +pkg syscall (linux-arm-cgo), const AF_PHONET = 35 +pkg syscall (linux-arm-cgo), const AF_PPPOX = 24 +pkg syscall (linux-arm-cgo), const AF_RDS = 21 +pkg syscall (linux-arm-cgo), const AF_ROSE = 11 +pkg syscall (linux-arm-cgo), const AF_ROUTE = 16 +pkg syscall (linux-arm-cgo), const AF_RXRPC = 33 +pkg syscall (linux-arm-cgo), const AF_SECURITY = 14 +pkg syscall (linux-arm-cgo), const AF_SNA = 22 +pkg syscall (linux-arm-cgo), const AF_TIPC = 30 +pkg syscall (linux-arm-cgo), const AF_WANPIPE = 25 +pkg syscall (linux-arm-cgo), const AF_X25 = 9 +pkg syscall (linux-arm-cgo), const ARPHRD_ADAPT = 264 +pkg syscall (linux-arm-cgo), const ARPHRD_APPLETLK = 8 +pkg syscall (linux-arm-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (linux-arm-cgo), const ARPHRD_ASH = 781 +pkg syscall (linux-arm-cgo), const ARPHRD_ATM = 19 +pkg syscall (linux-arm-cgo), const ARPHRD_AX25 = 3 +pkg syscall (linux-arm-cgo), const ARPHRD_BIF = 775 +pkg syscall (linux-arm-cgo), const ARPHRD_CHAOS = 5 +pkg syscall (linux-arm-cgo), const ARPHRD_CISCO = 513 +pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP = 257 +pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP6 = 259 +pkg syscall (linux-arm-cgo), const ARPHRD_DDCMP = 517 +pkg syscall (linux-arm-cgo), const ARPHRD_DLCI = 15 +pkg syscall (linux-arm-cgo), const ARPHRD_ECONET = 782 +pkg syscall (linux-arm-cgo), const ARPHRD_EETHER = 2 +pkg syscall (linux-arm-cgo), const ARPHRD_ETHER = 1 +pkg syscall (linux-arm-cgo), const ARPHRD_EUI64 = 27 +pkg syscall (linux-arm-cgo), const ARPHRD_FCAL = 785 +pkg syscall (linux-arm-cgo), const ARPHRD_FCFABRIC = 787 +pkg syscall (linux-arm-cgo), const ARPHRD_FCPL = 786 +pkg syscall (linux-arm-cgo), const ARPHRD_FCPP = 784 +pkg syscall (linux-arm-cgo), const ARPHRD_FDDI = 774 +pkg syscall (linux-arm-cgo), const ARPHRD_FRAD = 770 +pkg syscall (linux-arm-cgo), const ARPHRD_HDLC = 513 +pkg syscall (linux-arm-cgo), const ARPHRD_HIPPI = 780 +pkg syscall (linux-arm-cgo), const ARPHRD_HWX25 = 272 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211 = 801 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_PRISM = 802 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_RADIOTAP = 803 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154 = 804 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154_PHY = 805 +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802_TR = 800 +pkg syscall (linux-arm-cgo), const ARPHRD_INFINIBAND = 32 +pkg syscall (linux-arm-cgo), const ARPHRD_IPDDP = 777 +pkg syscall (linux-arm-cgo), const ARPHRD_IPGRE = 778 +pkg syscall (linux-arm-cgo), const ARPHRD_IRDA = 783 +pkg syscall (linux-arm-cgo), const ARPHRD_LAPB = 516 +pkg syscall (linux-arm-cgo), const ARPHRD_LOCALTLK = 773 +pkg syscall (linux-arm-cgo), const ARPHRD_LOOPBACK = 772 +pkg syscall (linux-arm-cgo), const ARPHRD_METRICOM = 23 +pkg syscall (linux-arm-cgo), const ARPHRD_NETROM = 0 +pkg syscall (linux-arm-cgo), const ARPHRD_NONE = 65534 +pkg syscall (linux-arm-cgo), const ARPHRD_PIMREG = 779 +pkg syscall (linux-arm-cgo), const ARPHRD_PPP = 512 +pkg syscall (linux-arm-cgo), const ARPHRD_PRONET = 4 +pkg syscall (linux-arm-cgo), const ARPHRD_RAWHDLC = 518 +pkg syscall (linux-arm-cgo), const ARPHRD_ROSE = 270 +pkg syscall (linux-arm-cgo), const ARPHRD_RSRVD = 260 +pkg syscall (linux-arm-cgo), const ARPHRD_SIT = 776 +pkg syscall (linux-arm-cgo), const ARPHRD_SKIP = 771 +pkg syscall (linux-arm-cgo), const ARPHRD_SLIP = 256 +pkg syscall (linux-arm-cgo), const ARPHRD_SLIP6 = 258 +pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL = 768 +pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL6 = 769 +pkg syscall (linux-arm-cgo), const ARPHRD_VOID = 65535 +pkg syscall (linux-arm-cgo), const ARPHRD_X25 = 271 +pkg syscall (linux-arm-cgo), const B0 = 0 +pkg syscall (linux-arm-cgo), const B1000000 = 4104 +pkg syscall (linux-arm-cgo), const B110 = 3 +pkg syscall (linux-arm-cgo), const B115200 = 4098 +pkg syscall (linux-arm-cgo), const B1152000 = 4105 +pkg syscall (linux-arm-cgo), const B1200 = 9 +pkg syscall (linux-arm-cgo), const B134 = 4 +pkg syscall (linux-arm-cgo), const B150 = 5 +pkg syscall (linux-arm-cgo), const B1500000 = 4106 +pkg syscall (linux-arm-cgo), const B1800 = 10 +pkg syscall (linux-arm-cgo), const B19200 = 14 +pkg syscall (linux-arm-cgo), const B200 = 6 +pkg syscall (linux-arm-cgo), const B2000000 = 4107 +pkg syscall (linux-arm-cgo), const B230400 = 4099 +pkg syscall (linux-arm-cgo), const B2400 = 11 +pkg syscall (linux-arm-cgo), const B2500000 = 4108 +pkg syscall (linux-arm-cgo), const B300 = 7 +pkg syscall (linux-arm-cgo), const B3000000 = 4109 +pkg syscall (linux-arm-cgo), const B3500000 = 4110 +pkg syscall (linux-arm-cgo), const B38400 = 15 +pkg syscall (linux-arm-cgo), const B4000000 = 4111 +pkg syscall (linux-arm-cgo), const B460800 = 4100 +pkg syscall (linux-arm-cgo), const B4800 = 12 +pkg syscall (linux-arm-cgo), const B50 = 1 +pkg syscall (linux-arm-cgo), const B500000 = 4101 +pkg syscall (linux-arm-cgo), const B57600 = 4097 +pkg syscall (linux-arm-cgo), const B576000 = 4102 +pkg syscall (linux-arm-cgo), const B600 = 8 +pkg syscall (linux-arm-cgo), const B75 = 2 +pkg syscall (linux-arm-cgo), const B921600 = 4103 +pkg syscall (linux-arm-cgo), const B9600 = 13 +pkg syscall (linux-arm-cgo), const BPF_A = 16 +pkg syscall (linux-arm-cgo), const BPF_ABS = 32 +pkg syscall (linux-arm-cgo), const BPF_ADD = 0 +pkg syscall (linux-arm-cgo), const BPF_ALU = 4 +pkg syscall (linux-arm-cgo), const BPF_AND = 80 +pkg syscall (linux-arm-cgo), const BPF_B = 16 +pkg syscall (linux-arm-cgo), const BPF_DIV = 48 +pkg syscall (linux-arm-cgo), const BPF_H = 8 +pkg syscall (linux-arm-cgo), const BPF_IMM = 0 +pkg syscall (linux-arm-cgo), const BPF_IND = 64 +pkg syscall (linux-arm-cgo), const BPF_JA = 0 +pkg syscall (linux-arm-cgo), const BPF_JEQ = 16 +pkg syscall (linux-arm-cgo), const BPF_JGE = 48 +pkg syscall (linux-arm-cgo), const BPF_JGT = 32 +pkg syscall (linux-arm-cgo), const BPF_JMP = 5 +pkg syscall (linux-arm-cgo), const BPF_JSET = 64 +pkg syscall (linux-arm-cgo), const BPF_K = 0 +pkg syscall (linux-arm-cgo), const BPF_LD = 0 +pkg syscall (linux-arm-cgo), const BPF_LDX = 1 +pkg syscall (linux-arm-cgo), const BPF_LEN = 128 +pkg syscall (linux-arm-cgo), const BPF_LSH = 96 +pkg syscall (linux-arm-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (linux-arm-cgo), const BPF_MAXINSNS = 4096 +pkg syscall (linux-arm-cgo), const BPF_MEM = 96 +pkg syscall (linux-arm-cgo), const BPF_MEMWORDS = 16 +pkg syscall (linux-arm-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (linux-arm-cgo), const BPF_MISC = 7 +pkg syscall (linux-arm-cgo), const BPF_MSH = 160 +pkg syscall (linux-arm-cgo), const BPF_MUL = 32 +pkg syscall (linux-arm-cgo), const BPF_NEG = 128 +pkg syscall (linux-arm-cgo), const BPF_OR = 64 +pkg syscall (linux-arm-cgo), const BPF_RET = 6 +pkg syscall (linux-arm-cgo), const BPF_RSH = 112 +pkg syscall (linux-arm-cgo), const BPF_ST = 2 +pkg syscall (linux-arm-cgo), const BPF_STX = 3 +pkg syscall (linux-arm-cgo), const BPF_SUB = 16 +pkg syscall (linux-arm-cgo), const BPF_TAX = 0 +pkg syscall (linux-arm-cgo), const BPF_TXA = 128 +pkg syscall (linux-arm-cgo), const BPF_W = 0 +pkg syscall (linux-arm-cgo), const BPF_X = 8 +pkg syscall (linux-arm-cgo), const BRKINT = 2 +pkg syscall (linux-arm-cgo), const CLOCAL = 2048 +pkg syscall (linux-arm-cgo), const CREAD = 128 +pkg syscall (linux-arm-cgo), const CS5 = 0 +pkg syscall (linux-arm-cgo), const CS6 = 16 +pkg syscall (linux-arm-cgo), const CS7 = 32 +pkg syscall (linux-arm-cgo), const CS8 = 48 +pkg syscall (linux-arm-cgo), const CSIZE = 48 +pkg syscall (linux-arm-cgo), const CSTOPB = 64 +pkg syscall (linux-arm-cgo), const DT_BLK = 6 +pkg syscall (linux-arm-cgo), const DT_CHR = 2 +pkg syscall (linux-arm-cgo), const DT_DIR = 4 +pkg syscall (linux-arm-cgo), const DT_FIFO = 1 +pkg syscall (linux-arm-cgo), const DT_LNK = 10 +pkg syscall (linux-arm-cgo), const DT_REG = 8 +pkg syscall (linux-arm-cgo), const DT_SOCK = 12 +pkg syscall (linux-arm-cgo), const DT_UNKNOWN = 0 +pkg syscall (linux-arm-cgo), const DT_WHT = 14 +pkg syscall (linux-arm-cgo), const E2BIG = 7 +pkg syscall (linux-arm-cgo), const EACCES = 13 +pkg syscall (linux-arm-cgo), const EADDRINUSE = 98 +pkg syscall (linux-arm-cgo), const EADDRNOTAVAIL = 99 +pkg syscall (linux-arm-cgo), const EADV = 68 +pkg syscall (linux-arm-cgo), const EAFNOSUPPORT = 97 +pkg syscall (linux-arm-cgo), const EAGAIN = 11 +pkg syscall (linux-arm-cgo), const EALREADY = 114 +pkg syscall (linux-arm-cgo), const EBADE = 52 +pkg syscall (linux-arm-cgo), const EBADF = 9 +pkg syscall (linux-arm-cgo), const EBADFD = 77 +pkg syscall (linux-arm-cgo), const EBADMSG = 74 +pkg syscall (linux-arm-cgo), const EBADR = 53 +pkg syscall (linux-arm-cgo), const EBADRQC = 56 +pkg syscall (linux-arm-cgo), const EBADSLT = 57 +pkg syscall (linux-arm-cgo), const EBFONT = 59 +pkg syscall (linux-arm-cgo), const EBUSY = 16 +pkg syscall (linux-arm-cgo), const ECANCELED = 125 +pkg syscall (linux-arm-cgo), const ECHILD = 10 +pkg syscall (linux-arm-cgo), const ECHO = 8 +pkg syscall (linux-arm-cgo), const ECHOCTL = 512 +pkg syscall (linux-arm-cgo), const ECHOE = 16 +pkg syscall (linux-arm-cgo), const ECHOK = 32 +pkg syscall (linux-arm-cgo), const ECHOKE = 2048 +pkg syscall (linux-arm-cgo), const ECHONL = 64 +pkg syscall (linux-arm-cgo), const ECHOPRT = 1024 +pkg syscall (linux-arm-cgo), const ECHRNG = 44 +pkg syscall (linux-arm-cgo), const ECOMM = 70 +pkg syscall (linux-arm-cgo), const ECONNABORTED = 103 +pkg syscall (linux-arm-cgo), const ECONNREFUSED = 111 +pkg syscall (linux-arm-cgo), const ECONNRESET = 104 +pkg syscall (linux-arm-cgo), const EDEADLK = 35 +pkg syscall (linux-arm-cgo), const EDEADLOCK = 35 +pkg syscall (linux-arm-cgo), const EDESTADDRREQ = 89 +pkg syscall (linux-arm-cgo), const EDOM = 33 +pkg syscall (linux-arm-cgo), const EDOTDOT = 73 +pkg syscall (linux-arm-cgo), const EDQUOT = 122 +pkg syscall (linux-arm-cgo), const EEXIST = 17 +pkg syscall (linux-arm-cgo), const EFAULT = 14 +pkg syscall (linux-arm-cgo), const EFBIG = 27 +pkg syscall (linux-arm-cgo), const EHOSTDOWN = 112 +pkg syscall (linux-arm-cgo), const EHOSTUNREACH = 113 +pkg syscall (linux-arm-cgo), const EHWPOISON = 133 +pkg syscall (linux-arm-cgo), const EIDRM = 43 +pkg syscall (linux-arm-cgo), const EILSEQ = 84 +pkg syscall (linux-arm-cgo), const EINPROGRESS = 115 +pkg syscall (linux-arm-cgo), const EINTR = 4 +pkg syscall (linux-arm-cgo), const EINVAL = 22 +pkg syscall (linux-arm-cgo), const EIO = 5 +pkg syscall (linux-arm-cgo), const EISCONN = 106 +pkg syscall (linux-arm-cgo), const EISDIR = 21 +pkg syscall (linux-arm-cgo), const EISNAM = 120 +pkg syscall (linux-arm-cgo), const EKEYEXPIRED = 127 +pkg syscall (linux-arm-cgo), const EKEYREJECTED = 129 +pkg syscall (linux-arm-cgo), const EKEYREVOKED = 128 +pkg syscall (linux-arm-cgo), const EL2HLT = 51 +pkg syscall (linux-arm-cgo), const EL2NSYNC = 45 +pkg syscall (linux-arm-cgo), const EL3HLT = 46 +pkg syscall (linux-arm-cgo), const EL3RST = 47 +pkg syscall (linux-arm-cgo), const ELF_NGREG = 18 +pkg syscall (linux-arm-cgo), const ELF_PRARGSZ = 80 +pkg syscall (linux-arm-cgo), const ELIBACC = 79 +pkg syscall (linux-arm-cgo), const ELIBBAD = 80 +pkg syscall (linux-arm-cgo), const ELIBEXEC = 83 +pkg syscall (linux-arm-cgo), const ELIBMAX = 82 +pkg syscall (linux-arm-cgo), const ELIBSCN = 81 +pkg syscall (linux-arm-cgo), const ELNRNG = 48 +pkg syscall (linux-arm-cgo), const ELOOP = 40 +pkg syscall (linux-arm-cgo), const EMEDIUMTYPE = 124 +pkg syscall (linux-arm-cgo), const EMFILE = 24 +pkg syscall (linux-arm-cgo), const EMLINK = 31 +pkg syscall (linux-arm-cgo), const EMSGSIZE = 90 +pkg syscall (linux-arm-cgo), const EMULTIHOP = 72 +pkg syscall (linux-arm-cgo), const ENAMETOOLONG = 36 +pkg syscall (linux-arm-cgo), const ENAVAIL = 119 +pkg syscall (linux-arm-cgo), const ENETDOWN = 100 +pkg syscall (linux-arm-cgo), const ENETRESET = 102 +pkg syscall (linux-arm-cgo), const ENETUNREACH = 101 +pkg syscall (linux-arm-cgo), const ENFILE = 23 +pkg syscall (linux-arm-cgo), const ENOANO = 55 +pkg syscall (linux-arm-cgo), const ENOBUFS = 105 +pkg syscall (linux-arm-cgo), const ENOCSI = 50 +pkg syscall (linux-arm-cgo), const ENODATA = 61 +pkg syscall (linux-arm-cgo), const ENODEV = 19 +pkg syscall (linux-arm-cgo), const ENOEXEC = 8 +pkg syscall (linux-arm-cgo), const ENOKEY = 126 +pkg syscall (linux-arm-cgo), const ENOLCK = 37 +pkg syscall (linux-arm-cgo), const ENOLINK = 67 +pkg syscall (linux-arm-cgo), const ENOMEDIUM = 123 +pkg syscall (linux-arm-cgo), const ENOMEM = 12 +pkg syscall (linux-arm-cgo), const ENOMSG = 42 +pkg syscall (linux-arm-cgo), const ENONET = 64 +pkg syscall (linux-arm-cgo), const ENOPKG = 65 +pkg syscall (linux-arm-cgo), const ENOPROTOOPT = 92 +pkg syscall (linux-arm-cgo), const ENOSPC = 28 +pkg syscall (linux-arm-cgo), const ENOSR = 63 +pkg syscall (linux-arm-cgo), const ENOSTR = 60 +pkg syscall (linux-arm-cgo), const ENOSYS = 38 +pkg syscall (linux-arm-cgo), const ENOTBLK = 15 +pkg syscall (linux-arm-cgo), const ENOTCONN = 107 +pkg syscall (linux-arm-cgo), const ENOTDIR = 20 +pkg syscall (linux-arm-cgo), const ENOTEMPTY = 39 +pkg syscall (linux-arm-cgo), const ENOTNAM = 118 +pkg syscall (linux-arm-cgo), const ENOTRECOVERABLE = 131 +pkg syscall (linux-arm-cgo), const ENOTSOCK = 88 +pkg syscall (linux-arm-cgo), const ENOTSUP = 95 +pkg syscall (linux-arm-cgo), const ENOTTY = 25 +pkg syscall (linux-arm-cgo), const ENOTUNIQ = 76 +pkg syscall (linux-arm-cgo), const ENXIO = 6 +pkg syscall (linux-arm-cgo), const EOPNOTSUPP = 95 +pkg syscall (linux-arm-cgo), const EOVERFLOW = 75 +pkg syscall (linux-arm-cgo), const EOWNERDEAD = 130 +pkg syscall (linux-arm-cgo), const EPERM = 1 +pkg syscall (linux-arm-cgo), const EPFNOSUPPORT = 96 +pkg syscall (linux-arm-cgo), const EPIPE = 32 +pkg syscall (linux-arm-cgo), const EPOLLERR = 8 +pkg syscall (linux-arm-cgo), const EPOLLET = -2147483648 +pkg syscall (linux-arm-cgo), const EPOLLHUP = 16 +pkg syscall (linux-arm-cgo), const EPOLLIN = 1 +pkg syscall (linux-arm-cgo), const EPOLLMSG = 1024 +pkg syscall (linux-arm-cgo), const EPOLLONESHOT = 1073741824 +pkg syscall (linux-arm-cgo), const EPOLLOUT = 4 +pkg syscall (linux-arm-cgo), const EPOLLPRI = 2 +pkg syscall (linux-arm-cgo), const EPOLLRDBAND = 128 +pkg syscall (linux-arm-cgo), const EPOLLRDHUP = 8192 +pkg syscall (linux-arm-cgo), const EPOLLRDNORM = 64 +pkg syscall (linux-arm-cgo), const EPOLLWRBAND = 512 +pkg syscall (linux-arm-cgo), const EPOLLWRNORM = 256 +pkg syscall (linux-arm-cgo), const EPOLL_CLOEXEC = 524288 +pkg syscall (linux-arm-cgo), const EPOLL_CTL_ADD = 1 +pkg syscall (linux-arm-cgo), const EPOLL_CTL_DEL = 2 +pkg syscall (linux-arm-cgo), const EPOLL_CTL_MOD = 3 +pkg syscall (linux-arm-cgo), const EPOLL_NONBLOCK = 2048 +pkg syscall (linux-arm-cgo), const EPROTO = 71 +pkg syscall (linux-arm-cgo), const EPROTONOSUPPORT = 93 +pkg syscall (linux-arm-cgo), const EPROTOTYPE = 91 +pkg syscall (linux-arm-cgo), const ERANGE = 34 +pkg syscall (linux-arm-cgo), const EREMCHG = 78 +pkg syscall (linux-arm-cgo), const EREMOTE = 66 +pkg syscall (linux-arm-cgo), const EREMOTEIO = 121 +pkg syscall (linux-arm-cgo), const ERESTART = 85 +pkg syscall (linux-arm-cgo), const ERFKILL = 132 +pkg syscall (linux-arm-cgo), const EROFS = 30 +pkg syscall (linux-arm-cgo), const ESHUTDOWN = 108 +pkg syscall (linux-arm-cgo), const ESOCKTNOSUPPORT = 94 +pkg syscall (linux-arm-cgo), const ESPIPE = 29 +pkg syscall (linux-arm-cgo), const ESRCH = 3 +pkg syscall (linux-arm-cgo), const ESRMNT = 69 +pkg syscall (linux-arm-cgo), const ESTALE = 116 +pkg syscall (linux-arm-cgo), const ESTRPIPE = 86 +pkg syscall (linux-arm-cgo), const ETH_P_1588 = 35063 +pkg syscall (linux-arm-cgo), const ETH_P_8021Q = 33024 +pkg syscall (linux-arm-cgo), const ETH_P_802_2 = 4 +pkg syscall (linux-arm-cgo), const ETH_P_802_3 = 1 +pkg syscall (linux-arm-cgo), const ETH_P_AARP = 33011 +pkg syscall (linux-arm-cgo), const ETH_P_ALL = 3 +pkg syscall (linux-arm-cgo), const ETH_P_AOE = 34978 +pkg syscall (linux-arm-cgo), const ETH_P_ARCNET = 26 +pkg syscall (linux-arm-cgo), const ETH_P_ARP = 2054 +pkg syscall (linux-arm-cgo), const ETH_P_ATALK = 32923 +pkg syscall (linux-arm-cgo), const ETH_P_ATMFATE = 34948 +pkg syscall (linux-arm-cgo), const ETH_P_ATMMPOA = 34892 +pkg syscall (linux-arm-cgo), const ETH_P_AX25 = 2 +pkg syscall (linux-arm-cgo), const ETH_P_BPQ = 2303 +pkg syscall (linux-arm-cgo), const ETH_P_CAIF = 247 +pkg syscall (linux-arm-cgo), const ETH_P_CAN = 12 +pkg syscall (linux-arm-cgo), const ETH_P_CONTROL = 22 +pkg syscall (linux-arm-cgo), const ETH_P_CUST = 24582 +pkg syscall (linux-arm-cgo), const ETH_P_DDCMP = 6 +pkg syscall (linux-arm-cgo), const ETH_P_DEC = 24576 +pkg syscall (linux-arm-cgo), const ETH_P_DIAG = 24581 +pkg syscall (linux-arm-cgo), const ETH_P_DNA_DL = 24577 +pkg syscall (linux-arm-cgo), const ETH_P_DNA_RC = 24578 +pkg syscall (linux-arm-cgo), const ETH_P_DNA_RT = 24579 +pkg syscall (linux-arm-cgo), const ETH_P_DSA = 27 +pkg syscall (linux-arm-cgo), const ETH_P_ECONET = 24 +pkg syscall (linux-arm-cgo), const ETH_P_EDSA = 56026 +pkg syscall (linux-arm-cgo), const ETH_P_FCOE = 35078 +pkg syscall (linux-arm-cgo), const ETH_P_FIP = 35092 +pkg syscall (linux-arm-cgo), const ETH_P_HDLC = 25 +pkg syscall (linux-arm-cgo), const ETH_P_IEEE802154 = 246 +pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUP = 2560 +pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUPAT = 2561 +pkg syscall (linux-arm-cgo), const ETH_P_IP = 2048 +pkg syscall (linux-arm-cgo), const ETH_P_IPV6 = 34525 +pkg syscall (linux-arm-cgo), const ETH_P_IPX = 33079 +pkg syscall (linux-arm-cgo), const ETH_P_IRDA = 23 +pkg syscall (linux-arm-cgo), const ETH_P_LAT = 24580 +pkg syscall (linux-arm-cgo), const ETH_P_LINK_CTL = 34924 +pkg syscall (linux-arm-cgo), const ETH_P_LOCALTALK = 9 +pkg syscall (linux-arm-cgo), const ETH_P_LOOP = 96 +pkg syscall (linux-arm-cgo), const ETH_P_MOBITEX = 21 +pkg syscall (linux-arm-cgo), const ETH_P_MPLS_MC = 34888 +pkg syscall (linux-arm-cgo), const ETH_P_MPLS_UC = 34887 +pkg syscall (linux-arm-cgo), const ETH_P_PAE = 34958 +pkg syscall (linux-arm-cgo), const ETH_P_PAUSE = 34824 +pkg syscall (linux-arm-cgo), const ETH_P_PHONET = 245 +pkg syscall (linux-arm-cgo), const ETH_P_PPPTALK = 16 +pkg syscall (linux-arm-cgo), const ETH_P_PPP_DISC = 34915 +pkg syscall (linux-arm-cgo), const ETH_P_PPP_MP = 8 +pkg syscall (linux-arm-cgo), const ETH_P_PPP_SES = 34916 +pkg syscall (linux-arm-cgo), const ETH_P_PUP = 512 +pkg syscall (linux-arm-cgo), const ETH_P_PUPAT = 513 +pkg syscall (linux-arm-cgo), const ETH_P_RARP = 32821 +pkg syscall (linux-arm-cgo), const ETH_P_SCA = 24583 +pkg syscall (linux-arm-cgo), const ETH_P_SLOW = 34825 +pkg syscall (linux-arm-cgo), const ETH_P_SNAP = 5 +pkg syscall (linux-arm-cgo), const ETH_P_TEB = 25944 +pkg syscall (linux-arm-cgo), const ETH_P_TIPC = 35018 +pkg syscall (linux-arm-cgo), const ETH_P_TRAILER = 28 +pkg syscall (linux-arm-cgo), const ETH_P_TR_802_2 = 17 +pkg syscall (linux-arm-cgo), const ETH_P_WAN_PPP = 7 +pkg syscall (linux-arm-cgo), const ETH_P_WCCP = 34878 +pkg syscall (linux-arm-cgo), const ETH_P_X25 = 2053 +pkg syscall (linux-arm-cgo), const ETIME = 62 +pkg syscall (linux-arm-cgo), const ETIMEDOUT = 110 +pkg syscall (linux-arm-cgo), const ETOOMANYREFS = 109 +pkg syscall (linux-arm-cgo), const ETXTBSY = 26 +pkg syscall (linux-arm-cgo), const EUCLEAN = 117 +pkg syscall (linux-arm-cgo), const EUNATCH = 49 +pkg syscall (linux-arm-cgo), const EUSERS = 87 +pkg syscall (linux-arm-cgo), const EWOULDBLOCK = 11 +pkg syscall (linux-arm-cgo), const EXDEV = 18 +pkg syscall (linux-arm-cgo), const EXFULL = 54 +pkg syscall (linux-arm-cgo), const FD_CLOEXEC = 1 +pkg syscall (linux-arm-cgo), const FD_SETSIZE = 1024 +pkg syscall (linux-arm-cgo), const FLUSHO = 4096 +pkg syscall (linux-arm-cgo), const F_DUPFD = 0 +pkg syscall (linux-arm-cgo), const F_DUPFD_CLOEXEC = 1030 +pkg syscall (linux-arm-cgo), const F_EXLCK = 4 +pkg syscall (linux-arm-cgo), const F_GETFD = 1 +pkg syscall (linux-arm-cgo), const F_GETFL = 3 +pkg syscall (linux-arm-cgo), const F_GETLEASE = 1025 +pkg syscall (linux-arm-cgo), const F_GETLK = 12 +pkg syscall (linux-arm-cgo), const F_GETLK64 = 12 +pkg syscall (linux-arm-cgo), const F_GETOWN = 9 +pkg syscall (linux-arm-cgo), const F_GETOWN_EX = 16 +pkg syscall (linux-arm-cgo), const F_GETPIPE_SZ = 1032 +pkg syscall (linux-arm-cgo), const F_GETSIG = 11 +pkg syscall (linux-arm-cgo), const F_LOCK = 1 +pkg syscall (linux-arm-cgo), const F_NOTIFY = 1026 +pkg syscall (linux-arm-cgo), const F_OK = 0 +pkg syscall (linux-arm-cgo), const F_RDLCK = 0 +pkg syscall (linux-arm-cgo), const F_SETFD = 2 +pkg syscall (linux-arm-cgo), const F_SETFL = 4 +pkg syscall (linux-arm-cgo), const F_SETLEASE = 1024 +pkg syscall (linux-arm-cgo), const F_SETLK = 13 +pkg syscall (linux-arm-cgo), const F_SETLK64 = 13 +pkg syscall (linux-arm-cgo), const F_SETLKW = 14 +pkg syscall (linux-arm-cgo), const F_SETLKW64 = 14 +pkg syscall (linux-arm-cgo), const F_SETOWN = 8 +pkg syscall (linux-arm-cgo), const F_SETOWN_EX = 15 +pkg syscall (linux-arm-cgo), const F_SETPIPE_SZ = 1031 +pkg syscall (linux-arm-cgo), const F_SETSIG = 10 +pkg syscall (linux-arm-cgo), const F_SHLCK = 8 +pkg syscall (linux-arm-cgo), const F_TEST = 3 +pkg syscall (linux-arm-cgo), const F_TLOCK = 2 +pkg syscall (linux-arm-cgo), const F_ULOCK = 0 +pkg syscall (linux-arm-cgo), const F_UNLCK = 2 +pkg syscall (linux-arm-cgo), const F_WRLCK = 1 +pkg syscall (linux-arm-cgo), const HUPCL = 1024 +pkg syscall (linux-arm-cgo), const ICANON = 2 +pkg syscall (linux-arm-cgo), const ICRNL = 256 +pkg syscall (linux-arm-cgo), const IEXTEN = 32768 +pkg syscall (linux-arm-cgo), const IFA_ADDRESS = 1 +pkg syscall (linux-arm-cgo), const IFA_ANYCAST = 5 +pkg syscall (linux-arm-cgo), const IFA_BROADCAST = 4 +pkg syscall (linux-arm-cgo), const IFA_CACHEINFO = 6 +pkg syscall (linux-arm-cgo), const IFA_F_DADFAILED = 8 +pkg syscall (linux-arm-cgo), const IFA_F_DEPRECATED = 32 +pkg syscall (linux-arm-cgo), const IFA_F_HOMEADDRESS = 16 +pkg syscall (linux-arm-cgo), const IFA_F_NODAD = 2 +pkg syscall (linux-arm-cgo), const IFA_F_OPTIMISTIC = 4 +pkg syscall (linux-arm-cgo), const IFA_F_PERMANENT = 128 +pkg syscall (linux-arm-cgo), const IFA_F_SECONDARY = 1 +pkg syscall (linux-arm-cgo), const IFA_F_TEMPORARY = 1 +pkg syscall (linux-arm-cgo), const IFA_F_TENTATIVE = 64 +pkg syscall (linux-arm-cgo), const IFA_LABEL = 3 +pkg syscall (linux-arm-cgo), const IFA_LOCAL = 2 +pkg syscall (linux-arm-cgo), const IFA_MAX = 7 +pkg syscall (linux-arm-cgo), const IFA_MULTICAST = 7 +pkg syscall (linux-arm-cgo), const IFA_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const IFF_ALLMULTI = 512 +pkg syscall (linux-arm-cgo), const IFF_AUTOMEDIA = 16384 +pkg syscall (linux-arm-cgo), const IFF_DEBUG = 4 +pkg syscall (linux-arm-cgo), const IFF_DYNAMIC = 32768 +pkg syscall (linux-arm-cgo), const IFF_LOOPBACK = 8 +pkg syscall (linux-arm-cgo), const IFF_MASTER = 1024 +pkg syscall (linux-arm-cgo), const IFF_MULTICAST = 4096 +pkg syscall (linux-arm-cgo), const IFF_NOARP = 128 +pkg syscall (linux-arm-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (linux-arm-cgo), const IFF_NO_PI = 4096 +pkg syscall (linux-arm-cgo), const IFF_ONE_QUEUE = 8192 +pkg syscall (linux-arm-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (linux-arm-cgo), const IFF_PORTSEL = 8192 +pkg syscall (linux-arm-cgo), const IFF_PROMISC = 256 +pkg syscall (linux-arm-cgo), const IFF_RUNNING = 64 +pkg syscall (linux-arm-cgo), const IFF_SLAVE = 2048 +pkg syscall (linux-arm-cgo), const IFF_TAP = 2 +pkg syscall (linux-arm-cgo), const IFF_TUN = 1 +pkg syscall (linux-arm-cgo), const IFF_TUN_EXCL = 32768 +pkg syscall (linux-arm-cgo), const IFF_VNET_HDR = 16384 +pkg syscall (linux-arm-cgo), const IFLA_ADDRESS = 1 +pkg syscall (linux-arm-cgo), const IFLA_BROADCAST = 2 +pkg syscall (linux-arm-cgo), const IFLA_COST = 8 +pkg syscall (linux-arm-cgo), const IFLA_IFALIAS = 20 +pkg syscall (linux-arm-cgo), const IFLA_IFNAME = 3 +pkg syscall (linux-arm-cgo), const IFLA_LINK = 5 +pkg syscall (linux-arm-cgo), const IFLA_LINKINFO = 18 +pkg syscall (linux-arm-cgo), const IFLA_LINKMODE = 17 +pkg syscall (linux-arm-cgo), const IFLA_MAP = 14 +pkg syscall (linux-arm-cgo), const IFLA_MASTER = 10 +pkg syscall (linux-arm-cgo), const IFLA_MAX = 29 +pkg syscall (linux-arm-cgo), const IFLA_MTU = 4 +pkg syscall (linux-arm-cgo), const IFLA_NET_NS_PID = 19 +pkg syscall (linux-arm-cgo), const IFLA_OPERSTATE = 16 +pkg syscall (linux-arm-cgo), const IFLA_PRIORITY = 9 +pkg syscall (linux-arm-cgo), const IFLA_PROTINFO = 12 +pkg syscall (linux-arm-cgo), const IFLA_QDISC = 6 +pkg syscall (linux-arm-cgo), const IFLA_STATS = 7 +pkg syscall (linux-arm-cgo), const IFLA_TXQLEN = 13 +pkg syscall (linux-arm-cgo), const IFLA_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const IFLA_WEIGHT = 15 +pkg syscall (linux-arm-cgo), const IFLA_WIRELESS = 11 +pkg syscall (linux-arm-cgo), const IFNAMSIZ = 16 +pkg syscall (linux-arm-cgo), const IGNBRK = 1 +pkg syscall (linux-arm-cgo), const IGNCR = 128 +pkg syscall (linux-arm-cgo), const IGNPAR = 4 +pkg syscall (linux-arm-cgo), const IMAXBEL = 8192 +pkg syscall (linux-arm-cgo), const INLCR = 64 +pkg syscall (linux-arm-cgo), const INPCK = 16 +pkg syscall (linux-arm-cgo), const IN_ACCESS = 1 +pkg syscall (linux-arm-cgo), const IN_ALL_EVENTS = 4095 +pkg syscall (linux-arm-cgo), const IN_ATTRIB = 4 +pkg syscall (linux-arm-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (linux-arm-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (linux-arm-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (linux-arm-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (linux-arm-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (linux-arm-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (linux-arm-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (linux-arm-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (linux-arm-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (linux-arm-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (linux-arm-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (linux-arm-cgo), const IN_CLOEXEC = 524288 +pkg syscall (linux-arm-cgo), const IN_CLOSE = 24 +pkg syscall (linux-arm-cgo), const IN_CLOSE_NOWRITE = 16 +pkg syscall (linux-arm-cgo), const IN_CLOSE_WRITE = 8 +pkg syscall (linux-arm-cgo), const IN_CREATE = 256 +pkg syscall (linux-arm-cgo), const IN_DELETE = 512 +pkg syscall (linux-arm-cgo), const IN_DELETE_SELF = 1024 +pkg syscall (linux-arm-cgo), const IN_DONT_FOLLOW = 33554432 +pkg syscall (linux-arm-cgo), const IN_EXCL_UNLINK = 67108864 +pkg syscall (linux-arm-cgo), const IN_IGNORED = 32768 +pkg syscall (linux-arm-cgo), const IN_ISDIR = 1073741824 +pkg syscall (linux-arm-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (linux-arm-cgo), const IN_MASK_ADD = 536870912 +pkg syscall (linux-arm-cgo), const IN_MODIFY = 2 +pkg syscall (linux-arm-cgo), const IN_MOVE = 192 +pkg syscall (linux-arm-cgo), const IN_MOVED_FROM = 64 +pkg syscall (linux-arm-cgo), const IN_MOVED_TO = 128 +pkg syscall (linux-arm-cgo), const IN_MOVE_SELF = 2048 +pkg syscall (linux-arm-cgo), const IN_NONBLOCK = 2048 +pkg syscall (linux-arm-cgo), const IN_ONESHOT = 2147483648 +pkg syscall (linux-arm-cgo), const IN_ONLYDIR = 16777216 +pkg syscall (linux-arm-cgo), const IN_OPEN = 32 +pkg syscall (linux-arm-cgo), const IN_Q_OVERFLOW = 16384 +pkg syscall (linux-arm-cgo), const IN_UNMOUNT = 8192 +pkg syscall (linux-arm-cgo), const IPPROTO_AH = 51 +pkg syscall (linux-arm-cgo), const IPPROTO_COMP = 108 +pkg syscall (linux-arm-cgo), const IPPROTO_DCCP = 33 +pkg syscall (linux-arm-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (linux-arm-cgo), const IPPROTO_EGP = 8 +pkg syscall (linux-arm-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (linux-arm-cgo), const IPPROTO_ESP = 50 +pkg syscall (linux-arm-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (linux-arm-cgo), const IPPROTO_GRE = 47 +pkg syscall (linux-arm-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (linux-arm-cgo), const IPPROTO_ICMP = 1 +pkg syscall (linux-arm-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (linux-arm-cgo), const IPPROTO_IDP = 22 +pkg syscall (linux-arm-cgo), const IPPROTO_IGMP = 2 +pkg syscall (linux-arm-cgo), const IPPROTO_IPIP = 4 +pkg syscall (linux-arm-cgo), const IPPROTO_MTP = 92 +pkg syscall (linux-arm-cgo), const IPPROTO_NONE = 59 +pkg syscall (linux-arm-cgo), const IPPROTO_PIM = 103 +pkg syscall (linux-arm-cgo), const IPPROTO_PUP = 12 +pkg syscall (linux-arm-cgo), const IPPROTO_RAW = 255 +pkg syscall (linux-arm-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (linux-arm-cgo), const IPPROTO_RSVP = 46 +pkg syscall (linux-arm-cgo), const IPPROTO_SCTP = 132 +pkg syscall (linux-arm-cgo), const IPPROTO_TP = 29 +pkg syscall (linux-arm-cgo), const IPPROTO_UDPLITE = 136 +pkg syscall (linux-arm-cgo), const IPV6_2292DSTOPTS = 4 +pkg syscall (linux-arm-cgo), const IPV6_2292HOPLIMIT = 8 +pkg syscall (linux-arm-cgo), const IPV6_2292HOPOPTS = 3 +pkg syscall (linux-arm-cgo), const IPV6_2292PKTINFO = 2 +pkg syscall (linux-arm-cgo), const IPV6_2292PKTOPTIONS = 6 +pkg syscall (linux-arm-cgo), const IPV6_2292RTHDR = 5 +pkg syscall (linux-arm-cgo), const IPV6_ADDRFORM = 1 +pkg syscall (linux-arm-cgo), const IPV6_ADD_MEMBERSHIP = 20 +pkg syscall (linux-arm-cgo), const IPV6_AUTHHDR = 10 +pkg syscall (linux-arm-cgo), const IPV6_CHECKSUM = 7 +pkg syscall (linux-arm-cgo), const IPV6_DROP_MEMBERSHIP = 21 +pkg syscall (linux-arm-cgo), const IPV6_DSTOPTS = 59 +pkg syscall (linux-arm-cgo), const IPV6_HOPLIMIT = 52 +pkg syscall (linux-arm-cgo), const IPV6_HOPOPTS = 54 +pkg syscall (linux-arm-cgo), const IPV6_IPSEC_POLICY = 34 +pkg syscall (linux-arm-cgo), const IPV6_JOIN_ANYCAST = 27 +pkg syscall (linux-arm-cgo), const IPV6_JOIN_GROUP = 20 +pkg syscall (linux-arm-cgo), const IPV6_LEAVE_ANYCAST = 28 +pkg syscall (linux-arm-cgo), const IPV6_LEAVE_GROUP = 21 +pkg syscall (linux-arm-cgo), const IPV6_MTU = 24 +pkg syscall (linux-arm-cgo), const IPV6_MTU_DISCOVER = 23 +pkg syscall (linux-arm-cgo), const IPV6_MULTICAST_HOPS = 18 +pkg syscall (linux-arm-cgo), const IPV6_MULTICAST_IF = 17 +pkg syscall (linux-arm-cgo), const IPV6_MULTICAST_LOOP = 19 +pkg syscall (linux-arm-cgo), const IPV6_NEXTHOP = 9 +pkg syscall (linux-arm-cgo), const IPV6_PKTINFO = 50 +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DO = 2 +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DONT = 0 +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_PROBE = 3 +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_WANT = 1 +pkg syscall (linux-arm-cgo), const IPV6_RECVDSTOPTS = 58 +pkg syscall (linux-arm-cgo), const IPV6_RECVERR = 25 +pkg syscall (linux-arm-cgo), const IPV6_RECVHOPLIMIT = 51 +pkg syscall (linux-arm-cgo), const IPV6_RECVHOPOPTS = 53 +pkg syscall (linux-arm-cgo), const IPV6_RECVPKTINFO = 49 +pkg syscall (linux-arm-cgo), const IPV6_RECVRTHDR = 56 +pkg syscall (linux-arm-cgo), const IPV6_RECVTCLASS = 66 +pkg syscall (linux-arm-cgo), const IPV6_ROUTER_ALERT = 22 +pkg syscall (linux-arm-cgo), const IPV6_RTHDR = 57 +pkg syscall (linux-arm-cgo), const IPV6_RTHDRDSTOPTS = 55 +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (linux-arm-cgo), const IPV6_RXDSTOPTS = 59 +pkg syscall (linux-arm-cgo), const IPV6_RXHOPOPTS = 54 +pkg syscall (linux-arm-cgo), const IPV6_TCLASS = 67 +pkg syscall (linux-arm-cgo), const IPV6_UNICAST_HOPS = 16 +pkg syscall (linux-arm-cgo), const IPV6_V6ONLY = 26 +pkg syscall (linux-arm-cgo), const IPV6_XFRM_POLICY = 35 +pkg syscall (linux-arm-cgo), const IP_ADD_MEMBERSHIP = 35 +pkg syscall (linux-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 39 +pkg syscall (linux-arm-cgo), const IP_BLOCK_SOURCE = 38 +pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (linux-arm-cgo), const IP_DF = 16384 +pkg syscall (linux-arm-cgo), const IP_DROP_MEMBERSHIP = 36 +pkg syscall (linux-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 40 +pkg syscall (linux-arm-cgo), const IP_FREEBIND = 15 +pkg syscall (linux-arm-cgo), const IP_HDRINCL = 3 +pkg syscall (linux-arm-cgo), const IP_IPSEC_POLICY = 16 +pkg syscall (linux-arm-cgo), const IP_MAXPACKET = 65535 +pkg syscall (linux-arm-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (linux-arm-cgo), const IP_MF = 8192 +pkg syscall (linux-arm-cgo), const IP_MINTTL = 21 +pkg syscall (linux-arm-cgo), const IP_MSFILTER = 41 +pkg syscall (linux-arm-cgo), const IP_MSS = 576 +pkg syscall (linux-arm-cgo), const IP_MTU = 14 +pkg syscall (linux-arm-cgo), const IP_MTU_DISCOVER = 10 +pkg syscall (linux-arm-cgo), const IP_MULTICAST_IF = 32 +pkg syscall (linux-arm-cgo), const IP_MULTICAST_LOOP = 34 +pkg syscall (linux-arm-cgo), const IP_MULTICAST_TTL = 33 +pkg syscall (linux-arm-cgo), const IP_OFFMASK = 8191 +pkg syscall (linux-arm-cgo), const IP_OPTIONS = 4 +pkg syscall (linux-arm-cgo), const IP_ORIGDSTADDR = 20 +pkg syscall (linux-arm-cgo), const IP_PASSSEC = 18 +pkg syscall (linux-arm-cgo), const IP_PKTINFO = 8 +pkg syscall (linux-arm-cgo), const IP_PKTOPTIONS = 9 +pkg syscall (linux-arm-cgo), const IP_PMTUDISC = 10 +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DO = 2 +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DONT = 0 +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_PROBE = 3 +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_WANT = 1 +pkg syscall (linux-arm-cgo), const IP_RECVERR = 11 +pkg syscall (linux-arm-cgo), const IP_RECVOPTS = 6 +pkg syscall (linux-arm-cgo), const IP_RECVORIGDSTADDR = 20 +pkg syscall (linux-arm-cgo), const IP_RECVRETOPTS = 7 +pkg syscall (linux-arm-cgo), const IP_RECVTOS = 13 +pkg syscall (linux-arm-cgo), const IP_RECVTTL = 12 +pkg syscall (linux-arm-cgo), const IP_RETOPTS = 7 +pkg syscall (linux-arm-cgo), const IP_RF = 32768 +pkg syscall (linux-arm-cgo), const IP_ROUTER_ALERT = 5 +pkg syscall (linux-arm-cgo), const IP_TOS = 1 +pkg syscall (linux-arm-cgo), const IP_TRANSPARENT = 19 +pkg syscall (linux-arm-cgo), const IP_TTL = 2 +pkg syscall (linux-arm-cgo), const IP_UNBLOCK_SOURCE = 37 +pkg syscall (linux-arm-cgo), const IP_XFRM_POLICY = 17 +pkg syscall (linux-arm-cgo), const ISIG = 1 +pkg syscall (linux-arm-cgo), const ISTRIP = 32 +pkg syscall (linux-arm-cgo), const IUCLC = 512 +pkg syscall (linux-arm-cgo), const IUTF8 = 16384 +pkg syscall (linux-arm-cgo), const IXANY = 2048 +pkg syscall (linux-arm-cgo), const IXOFF = 4096 +pkg syscall (linux-arm-cgo), const IXON = 1024 +pkg syscall (linux-arm-cgo), const ImplementsGetwd = true +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_OFF = 0 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_ON = 2309737967 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_HALT = 3454992675 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC = 1163412803 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART = 19088743 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 = 2712847316 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC1 = 4276215469 +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC2 = 672274793 +pkg syscall (linux-arm-cgo), const LOCK_EX = 2 +pkg syscall (linux-arm-cgo), const LOCK_NB = 4 +pkg syscall (linux-arm-cgo), const LOCK_SH = 1 +pkg syscall (linux-arm-cgo), const LOCK_UN = 8 +pkg syscall (linux-arm-cgo), const MADV_DOFORK = 11 +pkg syscall (linux-arm-cgo), const MADV_DONTFORK = 10 +pkg syscall (linux-arm-cgo), const MADV_DONTNEED = 4 +pkg syscall (linux-arm-cgo), const MADV_HUGEPAGE = 14 +pkg syscall (linux-arm-cgo), const MADV_HWPOISON = 100 +pkg syscall (linux-arm-cgo), const MADV_MERGEABLE = 12 +pkg syscall (linux-arm-cgo), const MADV_NOHUGEPAGE = 15 +pkg syscall (linux-arm-cgo), const MADV_NORMAL = 0 +pkg syscall (linux-arm-cgo), const MADV_RANDOM = 1 +pkg syscall (linux-arm-cgo), const MADV_REMOVE = 9 +pkg syscall (linux-arm-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (linux-arm-cgo), const MADV_UNMERGEABLE = 13 +pkg syscall (linux-arm-cgo), const MADV_WILLNEED = 3 +pkg syscall (linux-arm-cgo), const MAP_ANON = 32 +pkg syscall (linux-arm-cgo), const MAP_ANONYMOUS = 32 +pkg syscall (linux-arm-cgo), const MAP_DENYWRITE = 2048 +pkg syscall (linux-arm-cgo), const MAP_EXECUTABLE = 4096 +pkg syscall (linux-arm-cgo), const MAP_FILE = 0 +pkg syscall (linux-arm-cgo), const MAP_FIXED = 16 +pkg syscall (linux-arm-cgo), const MAP_GROWSDOWN = 256 +pkg syscall (linux-arm-cgo), const MAP_LOCKED = 8192 +pkg syscall (linux-arm-cgo), const MAP_NONBLOCK = 65536 +pkg syscall (linux-arm-cgo), const MAP_NORESERVE = 16384 +pkg syscall (linux-arm-cgo), const MAP_POPULATE = 32768 +pkg syscall (linux-arm-cgo), const MAP_PRIVATE = 2 +pkg syscall (linux-arm-cgo), const MAP_SHARED = 1 +pkg syscall (linux-arm-cgo), const MAP_TYPE = 15 +pkg syscall (linux-arm-cgo), const MCL_CURRENT = 1 +pkg syscall (linux-arm-cgo), const MCL_FUTURE = 2 +pkg syscall (linux-arm-cgo), const MNT_DETACH = 2 +pkg syscall (linux-arm-cgo), const MNT_EXPIRE = 4 +pkg syscall (linux-arm-cgo), const MNT_FORCE = 1 +pkg syscall (linux-arm-cgo), const MSG_CMSG_CLOEXEC = 1073741824 +pkg syscall (linux-arm-cgo), const MSG_CONFIRM = 2048 +pkg syscall (linux-arm-cgo), const MSG_CTRUNC = 8 +pkg syscall (linux-arm-cgo), const MSG_DONTROUTE = 4 +pkg syscall (linux-arm-cgo), const MSG_DONTWAIT = 64 +pkg syscall (linux-arm-cgo), const MSG_EOR = 128 +pkg syscall (linux-arm-cgo), const MSG_ERRQUEUE = 8192 +pkg syscall (linux-arm-cgo), const MSG_FASTOPEN = 536870912 +pkg syscall (linux-arm-cgo), const MSG_FIN = 512 +pkg syscall (linux-arm-cgo), const MSG_MORE = 32768 +pkg syscall (linux-arm-cgo), const MSG_NOSIGNAL = 16384 +pkg syscall (linux-arm-cgo), const MSG_OOB = 1 +pkg syscall (linux-arm-cgo), const MSG_PEEK = 2 +pkg syscall (linux-arm-cgo), const MSG_PROXY = 16 +pkg syscall (linux-arm-cgo), const MSG_RST = 4096 +pkg syscall (linux-arm-cgo), const MSG_SYN = 1024 +pkg syscall (linux-arm-cgo), const MSG_TRUNC = 32 +pkg syscall (linux-arm-cgo), const MSG_TRYHARD = 4 +pkg syscall (linux-arm-cgo), const MSG_WAITALL = 256 +pkg syscall (linux-arm-cgo), const MSG_WAITFORONE = 65536 +pkg syscall (linux-arm-cgo), const MS_ACTIVE = 1073741824 +pkg syscall (linux-arm-cgo), const MS_ASYNC = 1 +pkg syscall (linux-arm-cgo), const MS_BIND = 4096 +pkg syscall (linux-arm-cgo), const MS_DIRSYNC = 128 +pkg syscall (linux-arm-cgo), const MS_INVALIDATE = 2 +pkg syscall (linux-arm-cgo), const MS_I_VERSION = 8388608 +pkg syscall (linux-arm-cgo), const MS_KERNMOUNT = 4194304 +pkg syscall (linux-arm-cgo), const MS_MANDLOCK = 64 +pkg syscall (linux-arm-cgo), const MS_MGC_MSK = 4294901760 +pkg syscall (linux-arm-cgo), const MS_MGC_VAL = 3236757504 +pkg syscall (linux-arm-cgo), const MS_MOVE = 8192 +pkg syscall (linux-arm-cgo), const MS_NOATIME = 1024 +pkg syscall (linux-arm-cgo), const MS_NODEV = 4 +pkg syscall (linux-arm-cgo), const MS_NODIRATIME = 2048 +pkg syscall (linux-arm-cgo), const MS_NOEXEC = 8 +pkg syscall (linux-arm-cgo), const MS_NOSUID = 2 +pkg syscall (linux-arm-cgo), const MS_NOUSER = -2147483648 +pkg syscall (linux-arm-cgo), const MS_POSIXACL = 65536 +pkg syscall (linux-arm-cgo), const MS_PRIVATE = 262144 +pkg syscall (linux-arm-cgo), const MS_RDONLY = 1 +pkg syscall (linux-arm-cgo), const MS_REC = 16384 +pkg syscall (linux-arm-cgo), const MS_RELATIME = 2097152 +pkg syscall (linux-arm-cgo), const MS_REMOUNT = 32 +pkg syscall (linux-arm-cgo), const MS_RMT_MASK = 8388689 +pkg syscall (linux-arm-cgo), const MS_SHARED = 1048576 +pkg syscall (linux-arm-cgo), const MS_SILENT = 32768 +pkg syscall (linux-arm-cgo), const MS_SLAVE = 524288 +pkg syscall (linux-arm-cgo), const MS_STRICTATIME = 16777216 +pkg syscall (linux-arm-cgo), const MS_SYNC = 4 +pkg syscall (linux-arm-cgo), const MS_SYNCHRONOUS = 16 +pkg syscall (linux-arm-cgo), const MS_UNBINDABLE = 131072 +pkg syscall (linux-arm-cgo), const NAME_MAX = 255 +pkg syscall (linux-arm-cgo), const NETLINK_ADD_MEMBERSHIP = 1 +pkg syscall (linux-arm-cgo), const NETLINK_AUDIT = 9 +pkg syscall (linux-arm-cgo), const NETLINK_BROADCAST_ERROR = 4 +pkg syscall (linux-arm-cgo), const NETLINK_CONNECTOR = 11 +pkg syscall (linux-arm-cgo), const NETLINK_DNRTMSG = 14 +pkg syscall (linux-arm-cgo), const NETLINK_DROP_MEMBERSHIP = 2 +pkg syscall (linux-arm-cgo), const NETLINK_ECRYPTFS = 19 +pkg syscall (linux-arm-cgo), const NETLINK_FIB_LOOKUP = 10 +pkg syscall (linux-arm-cgo), const NETLINK_FIREWALL = 3 +pkg syscall (linux-arm-cgo), const NETLINK_GENERIC = 16 +pkg syscall (linux-arm-cgo), const NETLINK_INET_DIAG = 4 +pkg syscall (linux-arm-cgo), const NETLINK_IP6_FW = 13 +pkg syscall (linux-arm-cgo), const NETLINK_ISCSI = 8 +pkg syscall (linux-arm-cgo), const NETLINK_KOBJECT_UEVENT = 15 +pkg syscall (linux-arm-cgo), const NETLINK_NETFILTER = 12 +pkg syscall (linux-arm-cgo), const NETLINK_NFLOG = 5 +pkg syscall (linux-arm-cgo), const NETLINK_NO_ENOBUFS = 5 +pkg syscall (linux-arm-cgo), const NETLINK_PKTINFO = 3 +pkg syscall (linux-arm-cgo), const NETLINK_RDMA = 20 +pkg syscall (linux-arm-cgo), const NETLINK_ROUTE = 0 +pkg syscall (linux-arm-cgo), const NETLINK_SCSITRANSPORT = 18 +pkg syscall (linux-arm-cgo), const NETLINK_SELINUX = 7 +pkg syscall (linux-arm-cgo), const NETLINK_UNUSED = 1 +pkg syscall (linux-arm-cgo), const NETLINK_USERSOCK = 2 +pkg syscall (linux-arm-cgo), const NETLINK_XFRM = 6 +pkg syscall (linux-arm-cgo), const NLA_ALIGNTO = 4 +pkg syscall (linux-arm-cgo), const NLA_F_NESTED = 32768 +pkg syscall (linux-arm-cgo), const NLA_F_NET_BYTEORDER = 16384 +pkg syscall (linux-arm-cgo), const NLA_HDRLEN = 4 +pkg syscall (linux-arm-cgo), const NLMSG_ALIGNTO = 4 +pkg syscall (linux-arm-cgo), const NLMSG_DONE = 3 +pkg syscall (linux-arm-cgo), const NLMSG_ERROR = 2 +pkg syscall (linux-arm-cgo), const NLMSG_HDRLEN = 16 +pkg syscall (linux-arm-cgo), const NLMSG_MIN_TYPE = 16 +pkg syscall (linux-arm-cgo), const NLMSG_NOOP = 1 +pkg syscall (linux-arm-cgo), const NLMSG_OVERRUN = 4 +pkg syscall (linux-arm-cgo), const NLM_F_ACK = 4 +pkg syscall (linux-arm-cgo), const NLM_F_APPEND = 2048 +pkg syscall (linux-arm-cgo), const NLM_F_ATOMIC = 1024 +pkg syscall (linux-arm-cgo), const NLM_F_CREATE = 1024 +pkg syscall (linux-arm-cgo), const NLM_F_DUMP = 768 +pkg syscall (linux-arm-cgo), const NLM_F_ECHO = 8 +pkg syscall (linux-arm-cgo), const NLM_F_EXCL = 512 +pkg syscall (linux-arm-cgo), const NLM_F_MATCH = 512 +pkg syscall (linux-arm-cgo), const NLM_F_MULTI = 2 +pkg syscall (linux-arm-cgo), const NLM_F_REPLACE = 256 +pkg syscall (linux-arm-cgo), const NLM_F_REQUEST = 1 +pkg syscall (linux-arm-cgo), const NLM_F_ROOT = 256 +pkg syscall (linux-arm-cgo), const NOFLSH = 128 +pkg syscall (linux-arm-cgo), const OCRNL = 8 +pkg syscall (linux-arm-cgo), const OFDEL = 128 +pkg syscall (linux-arm-cgo), const OFILL = 64 +pkg syscall (linux-arm-cgo), const OLCUC = 2 +pkg syscall (linux-arm-cgo), const ONLCR = 4 +pkg syscall (linux-arm-cgo), const ONLRET = 32 +pkg syscall (linux-arm-cgo), const ONOCR = 16 +pkg syscall (linux-arm-cgo), const OPOST = 1 +pkg syscall (linux-arm-cgo), const O_ACCMODE = 3 +pkg syscall (linux-arm-cgo), const O_APPEND = 1024 +pkg syscall (linux-arm-cgo), const O_ASYNC = 8192 +pkg syscall (linux-arm-cgo), const O_CLOEXEC = 524288 +pkg syscall (linux-arm-cgo), const O_CREAT = 64 +pkg syscall (linux-arm-cgo), const O_DIRECT = 65536 +pkg syscall (linux-arm-cgo), const O_DIRECTORY = 16384 +pkg syscall (linux-arm-cgo), const O_DSYNC = 4096 +pkg syscall (linux-arm-cgo), const O_EXCL = 128 +pkg syscall (linux-arm-cgo), const O_FSYNC = 4096 +pkg syscall (linux-arm-cgo), const O_LARGEFILE = 131072 +pkg syscall (linux-arm-cgo), const O_NDELAY = 2048 +pkg syscall (linux-arm-cgo), const O_NOATIME = 262144 +pkg syscall (linux-arm-cgo), const O_NOCTTY = 256 +pkg syscall (linux-arm-cgo), const O_NOFOLLOW = 32768 +pkg syscall (linux-arm-cgo), const O_NONBLOCK = 2048 +pkg syscall (linux-arm-cgo), const O_RSYNC = 4096 +pkg syscall (linux-arm-cgo), const O_SYNC = 4096 +pkg syscall (linux-arm-cgo), const O_TRUNC = 512 +pkg syscall (linux-arm-cgo), const PACKET_ADD_MEMBERSHIP = 1 +pkg syscall (linux-arm-cgo), const PACKET_BROADCAST = 1 +pkg syscall (linux-arm-cgo), const PACKET_DROP_MEMBERSHIP = 2 +pkg syscall (linux-arm-cgo), const PACKET_FASTROUTE = 6 +pkg syscall (linux-arm-cgo), const PACKET_HOST = 0 +pkg syscall (linux-arm-cgo), const PACKET_LOOPBACK = 5 +pkg syscall (linux-arm-cgo), const PACKET_MR_ALLMULTI = 2 +pkg syscall (linux-arm-cgo), const PACKET_MR_MULTICAST = 0 +pkg syscall (linux-arm-cgo), const PACKET_MR_PROMISC = 1 +pkg syscall (linux-arm-cgo), const PACKET_MULTICAST = 2 +pkg syscall (linux-arm-cgo), const PACKET_OTHERHOST = 3 +pkg syscall (linux-arm-cgo), const PACKET_OUTGOING = 4 +pkg syscall (linux-arm-cgo), const PACKET_RECV_OUTPUT = 3 +pkg syscall (linux-arm-cgo), const PACKET_RX_RING = 5 +pkg syscall (linux-arm-cgo), const PACKET_STATISTICS = 6 +pkg syscall (linux-arm-cgo), const PARENB = 256 +pkg syscall (linux-arm-cgo), const PARMRK = 8 +pkg syscall (linux-arm-cgo), const PARODD = 512 +pkg syscall (linux-arm-cgo), const PENDIN = 16384 +pkg syscall (linux-arm-cgo), const PROT_EXEC = 4 +pkg syscall (linux-arm-cgo), const PROT_GROWSDOWN = 16777216 +pkg syscall (linux-arm-cgo), const PROT_GROWSUP = 33554432 +pkg syscall (linux-arm-cgo), const PROT_NONE = 0 +pkg syscall (linux-arm-cgo), const PROT_READ = 1 +pkg syscall (linux-arm-cgo), const PROT_WRITE = 2 +pkg syscall (linux-arm-cgo), const PR_CAPBSET_DROP = 24 +pkg syscall (linux-arm-cgo), const PR_CAPBSET_READ = 23 +pkg syscall (linux-arm-cgo), const PR_CLEAR_SECCOMP_FILTER = 37 +pkg syscall (linux-arm-cgo), const PR_ENDIAN_BIG = 0 +pkg syscall (linux-arm-cgo), const PR_ENDIAN_LITTLE = 1 +pkg syscall (linux-arm-cgo), const PR_ENDIAN_PPC_LITTLE = 2 +pkg syscall (linux-arm-cgo), const PR_FPEMU_NOPRINT = 1 +pkg syscall (linux-arm-cgo), const PR_FPEMU_SIGFPE = 2 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_ASYNC = 2 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_DISABLED = 0 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_DIV = 65536 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_INV = 1048576 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_NONRECOV = 1 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_OVF = 131072 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_PRECISE = 3 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_RES = 524288 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_SW_ENABLE = 128 +pkg syscall (linux-arm-cgo), const PR_FP_EXC_UND = 262144 +pkg syscall (linux-arm-cgo), const PR_GET_DUMPABLE = 3 +pkg syscall (linux-arm-cgo), const PR_GET_ENDIAN = 19 +pkg syscall (linux-arm-cgo), const PR_GET_FPEMU = 9 +pkg syscall (linux-arm-cgo), const PR_GET_FPEXC = 11 +pkg syscall (linux-arm-cgo), const PR_GET_KEEPCAPS = 7 +pkg syscall (linux-arm-cgo), const PR_GET_NAME = 16 +pkg syscall (linux-arm-cgo), const PR_GET_PDEATHSIG = 2 +pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP = 21 +pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP_FILTER = 35 +pkg syscall (linux-arm-cgo), const PR_GET_SECUREBITS = 27 +pkg syscall (linux-arm-cgo), const PR_GET_TIMERSLACK = 30 +pkg syscall (linux-arm-cgo), const PR_GET_TIMING = 13 +pkg syscall (linux-arm-cgo), const PR_GET_TSC = 25 +pkg syscall (linux-arm-cgo), const PR_GET_UNALIGN = 5 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL = 33 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR = 0 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT = 2 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY = 1 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET = 34 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE = 0 +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET = 1 +pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_EVENT = 1 +pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_SYSCALL = 0 +pkg syscall (linux-arm-cgo), const PR_SET_DUMPABLE = 4 +pkg syscall (linux-arm-cgo), const PR_SET_ENDIAN = 20 +pkg syscall (linux-arm-cgo), const PR_SET_FPEMU = 10 +pkg syscall (linux-arm-cgo), const PR_SET_FPEXC = 12 +pkg syscall (linux-arm-cgo), const PR_SET_KEEPCAPS = 8 +pkg syscall (linux-arm-cgo), const PR_SET_NAME = 15 +pkg syscall (linux-arm-cgo), const PR_SET_PDEATHSIG = 1 +pkg syscall (linux-arm-cgo), const PR_SET_PTRACER = 1499557217 +pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP = 22 +pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP_FILTER = 36 +pkg syscall (linux-arm-cgo), const PR_SET_SECUREBITS = 28 +pkg syscall (linux-arm-cgo), const PR_SET_TIMERSLACK = 29 +pkg syscall (linux-arm-cgo), const PR_SET_TIMING = 14 +pkg syscall (linux-arm-cgo), const PR_SET_TSC = 26 +pkg syscall (linux-arm-cgo), const PR_SET_UNALIGN = 6 +pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_DISABLE = 31 +pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_ENABLE = 32 +pkg syscall (linux-arm-cgo), const PR_TIMING_STATISTICAL = 0 +pkg syscall (linux-arm-cgo), const PR_TIMING_TIMESTAMP = 1 +pkg syscall (linux-arm-cgo), const PR_TSC_ENABLE = 1 +pkg syscall (linux-arm-cgo), const PR_TSC_SIGSEGV = 2 +pkg syscall (linux-arm-cgo), const PR_UNALIGN_NOPRINT = 1 +pkg syscall (linux-arm-cgo), const PR_UNALIGN_SIGBUS = 2 +pkg syscall (linux-arm-cgo), const PTRACE_ATTACH = 16 +pkg syscall (linux-arm-cgo), const PTRACE_CONT = 7 +pkg syscall (linux-arm-cgo), const PTRACE_DETACH = 17 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_CLONE = 3 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXEC = 4 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXIT = 6 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_FORK = 1 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK = 2 +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK_DONE = 5 +pkg syscall (linux-arm-cgo), const PTRACE_GETCRUNCHREGS = 25 +pkg syscall (linux-arm-cgo), const PTRACE_GETEVENTMSG = 16897 +pkg syscall (linux-arm-cgo), const PTRACE_GETFPREGS = 14 +pkg syscall (linux-arm-cgo), const PTRACE_GETHBPREGS = 29 +pkg syscall (linux-arm-cgo), const PTRACE_GETREGS = 12 +pkg syscall (linux-arm-cgo), const PTRACE_GETREGSET = 16900 +pkg syscall (linux-arm-cgo), const PTRACE_GETSIGINFO = 16898 +pkg syscall (linux-arm-cgo), const PTRACE_GETVFPREGS = 27 +pkg syscall (linux-arm-cgo), const PTRACE_GETWMMXREGS = 18 +pkg syscall (linux-arm-cgo), const PTRACE_GET_THREAD_AREA = 22 +pkg syscall (linux-arm-cgo), const PTRACE_KILL = 8 +pkg syscall (linux-arm-cgo), const PTRACE_OLDSETOPTIONS = 21 +pkg syscall (linux-arm-cgo), const PTRACE_O_MASK = 127 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACECLONE = 8 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXEC = 16 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXIT = 64 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEFORK = 2 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACESYSGOOD = 1 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORK = 4 +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORKDONE = 32 +pkg syscall (linux-arm-cgo), const PTRACE_PEEKDATA = 2 +pkg syscall (linux-arm-cgo), const PTRACE_PEEKTEXT = 1 +pkg syscall (linux-arm-cgo), const PTRACE_PEEKUSR = 3 +pkg syscall (linux-arm-cgo), const PTRACE_POKEDATA = 5 +pkg syscall (linux-arm-cgo), const PTRACE_POKETEXT = 4 +pkg syscall (linux-arm-cgo), const PTRACE_POKEUSR = 6 +pkg syscall (linux-arm-cgo), const PTRACE_SETCRUNCHREGS = 26 +pkg syscall (linux-arm-cgo), const PTRACE_SETFPREGS = 15 +pkg syscall (linux-arm-cgo), const PTRACE_SETHBPREGS = 30 +pkg syscall (linux-arm-cgo), const PTRACE_SETOPTIONS = 16896 +pkg syscall (linux-arm-cgo), const PTRACE_SETREGS = 13 +pkg syscall (linux-arm-cgo), const PTRACE_SETREGSET = 16901 +pkg syscall (linux-arm-cgo), const PTRACE_SETSIGINFO = 16899 +pkg syscall (linux-arm-cgo), const PTRACE_SETVFPREGS = 28 +pkg syscall (linux-arm-cgo), const PTRACE_SETWMMXREGS = 19 +pkg syscall (linux-arm-cgo), const PTRACE_SET_SYSCALL = 23 +pkg syscall (linux-arm-cgo), const PTRACE_SINGLESTEP = 9 +pkg syscall (linux-arm-cgo), const PTRACE_SYSCALL = 24 +pkg syscall (linux-arm-cgo), const PTRACE_TRACEME = 0 +pkg syscall (linux-arm-cgo), const PT_DATA_ADDR = 65540 +pkg syscall (linux-arm-cgo), const PT_TEXT_ADDR = 65536 +pkg syscall (linux-arm-cgo), const PT_TEXT_END_ADDR = 65544 +pkg syscall (linux-arm-cgo), const PathMax = 4096 +pkg syscall (linux-arm-cgo), const RLIMIT_AS = 9 +pkg syscall (linux-arm-cgo), const RLIMIT_CORE = 4 +pkg syscall (linux-arm-cgo), const RLIMIT_CPU = 0 +pkg syscall (linux-arm-cgo), const RLIMIT_DATA = 2 +pkg syscall (linux-arm-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (linux-arm-cgo), const RLIMIT_NOFILE = 7 +pkg syscall (linux-arm-cgo), const RLIMIT_STACK = 3 +pkg syscall (linux-arm-cgo), const RLIM_INFINITY = -1 +pkg syscall (linux-arm-cgo), const RTAX_ADVMSS = 8 +pkg syscall (linux-arm-cgo), const RTAX_CWND = 7 +pkg syscall (linux-arm-cgo), const RTAX_FEATURES = 12 +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ALLFRAG = 8 +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ECN = 1 +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_SACK = 2 +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_TIMESTAMP = 4 +pkg syscall (linux-arm-cgo), const RTAX_HOPLIMIT = 10 +pkg syscall (linux-arm-cgo), const RTAX_INITCWND = 11 +pkg syscall (linux-arm-cgo), const RTAX_INITRWND = 14 +pkg syscall (linux-arm-cgo), const RTAX_LOCK = 1 +pkg syscall (linux-arm-cgo), const RTAX_MAX = 14 +pkg syscall (linux-arm-cgo), const RTAX_MTU = 2 +pkg syscall (linux-arm-cgo), const RTAX_REORDERING = 9 +pkg syscall (linux-arm-cgo), const RTAX_RTO_MIN = 13 +pkg syscall (linux-arm-cgo), const RTAX_RTT = 4 +pkg syscall (linux-arm-cgo), const RTAX_RTTVAR = 5 +pkg syscall (linux-arm-cgo), const RTAX_SSTHRESH = 6 +pkg syscall (linux-arm-cgo), const RTAX_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RTAX_WINDOW = 3 +pkg syscall (linux-arm-cgo), const RTA_ALIGNTO = 4 +pkg syscall (linux-arm-cgo), const RTA_CACHEINFO = 12 +pkg syscall (linux-arm-cgo), const RTA_DST = 1 +pkg syscall (linux-arm-cgo), const RTA_FLOW = 11 +pkg syscall (linux-arm-cgo), const RTA_GATEWAY = 5 +pkg syscall (linux-arm-cgo), const RTA_IIF = 3 +pkg syscall (linux-arm-cgo), const RTA_MAX = 16 +pkg syscall (linux-arm-cgo), const RTA_METRICS = 8 +pkg syscall (linux-arm-cgo), const RTA_MULTIPATH = 9 +pkg syscall (linux-arm-cgo), const RTA_OIF = 4 +pkg syscall (linux-arm-cgo), const RTA_PREFSRC = 7 +pkg syscall (linux-arm-cgo), const RTA_PRIORITY = 6 +pkg syscall (linux-arm-cgo), const RTA_SRC = 2 +pkg syscall (linux-arm-cgo), const RTA_TABLE = 15 +pkg syscall (linux-arm-cgo), const RTA_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RTCF_DIRECTSRC = 67108864 +pkg syscall (linux-arm-cgo), const RTCF_DOREDIRECT = 16777216 +pkg syscall (linux-arm-cgo), const RTCF_LOG = 33554432 +pkg syscall (linux-arm-cgo), const RTCF_MASQ = 4194304 +pkg syscall (linux-arm-cgo), const RTCF_NAT = 8388608 +pkg syscall (linux-arm-cgo), const RTCF_VALVE = 2097152 +pkg syscall (linux-arm-cgo), const RTF_ADDRCLASSMASK = 4160749568 +pkg syscall (linux-arm-cgo), const RTF_ADDRCONF = 262144 +pkg syscall (linux-arm-cgo), const RTF_ALLONLINK = 131072 +pkg syscall (linux-arm-cgo), const RTF_BROADCAST = 268435456 +pkg syscall (linux-arm-cgo), const RTF_CACHE = 16777216 +pkg syscall (linux-arm-cgo), const RTF_DEFAULT = 65536 +pkg syscall (linux-arm-cgo), const RTF_DYNAMIC = 16 +pkg syscall (linux-arm-cgo), const RTF_FLOW = 33554432 +pkg syscall (linux-arm-cgo), const RTF_GATEWAY = 2 +pkg syscall (linux-arm-cgo), const RTF_HOST = 4 +pkg syscall (linux-arm-cgo), const RTF_INTERFACE = 1073741824 +pkg syscall (linux-arm-cgo), const RTF_IRTT = 256 +pkg syscall (linux-arm-cgo), const RTF_LINKRT = 1048576 +pkg syscall (linux-arm-cgo), const RTF_LOCAL = 2147483648 +pkg syscall (linux-arm-cgo), const RTF_MODIFIED = 32 +pkg syscall (linux-arm-cgo), const RTF_MSS = 64 +pkg syscall (linux-arm-cgo), const RTF_MTU = 64 +pkg syscall (linux-arm-cgo), const RTF_MULTICAST = 536870912 +pkg syscall (linux-arm-cgo), const RTF_NAT = 134217728 +pkg syscall (linux-arm-cgo), const RTF_NOFORWARD = 4096 +pkg syscall (linux-arm-cgo), const RTF_NONEXTHOP = 2097152 +pkg syscall (linux-arm-cgo), const RTF_NOPMTUDISC = 16384 +pkg syscall (linux-arm-cgo), const RTF_POLICY = 67108864 +pkg syscall (linux-arm-cgo), const RTF_REINSTATE = 8 +pkg syscall (linux-arm-cgo), const RTF_REJECT = 512 +pkg syscall (linux-arm-cgo), const RTF_STATIC = 1024 +pkg syscall (linux-arm-cgo), const RTF_THROW = 8192 +pkg syscall (linux-arm-cgo), const RTF_UP = 1 +pkg syscall (linux-arm-cgo), const RTF_WINDOW = 128 +pkg syscall (linux-arm-cgo), const RTF_XRESOLVE = 2048 +pkg syscall (linux-arm-cgo), const RTM_BASE = 16 +pkg syscall (linux-arm-cgo), const RTM_DELACTION = 49 +pkg syscall (linux-arm-cgo), const RTM_DELADDR = 21 +pkg syscall (linux-arm-cgo), const RTM_DELADDRLABEL = 73 +pkg syscall (linux-arm-cgo), const RTM_DELLINK = 17 +pkg syscall (linux-arm-cgo), const RTM_DELNEIGH = 29 +pkg syscall (linux-arm-cgo), const RTM_DELQDISC = 37 +pkg syscall (linux-arm-cgo), const RTM_DELROUTE = 25 +pkg syscall (linux-arm-cgo), const RTM_DELRULE = 33 +pkg syscall (linux-arm-cgo), const RTM_DELTCLASS = 41 +pkg syscall (linux-arm-cgo), const RTM_DELTFILTER = 45 +pkg syscall (linux-arm-cgo), const RTM_F_CLONED = 512 +pkg syscall (linux-arm-cgo), const RTM_F_EQUALIZE = 1024 +pkg syscall (linux-arm-cgo), const RTM_F_NOTIFY = 256 +pkg syscall (linux-arm-cgo), const RTM_F_PREFIX = 2048 +pkg syscall (linux-arm-cgo), const RTM_GETACTION = 50 +pkg syscall (linux-arm-cgo), const RTM_GETADDR = 22 +pkg syscall (linux-arm-cgo), const RTM_GETADDRLABEL = 74 +pkg syscall (linux-arm-cgo), const RTM_GETANYCAST = 62 +pkg syscall (linux-arm-cgo), const RTM_GETDCB = 78 +pkg syscall (linux-arm-cgo), const RTM_GETLINK = 18 +pkg syscall (linux-arm-cgo), const RTM_GETMULTICAST = 58 +pkg syscall (linux-arm-cgo), const RTM_GETNEIGH = 30 +pkg syscall (linux-arm-cgo), const RTM_GETNEIGHTBL = 66 +pkg syscall (linux-arm-cgo), const RTM_GETQDISC = 38 +pkg syscall (linux-arm-cgo), const RTM_GETROUTE = 26 +pkg syscall (linux-arm-cgo), const RTM_GETRULE = 34 +pkg syscall (linux-arm-cgo), const RTM_GETTCLASS = 42 +pkg syscall (linux-arm-cgo), const RTM_GETTFILTER = 46 +pkg syscall (linux-arm-cgo), const RTM_MAX = 79 +pkg syscall (linux-arm-cgo), const RTM_NEWACTION = 48 +pkg syscall (linux-arm-cgo), const RTM_NEWADDR = 20 +pkg syscall (linux-arm-cgo), const RTM_NEWADDRLABEL = 72 +pkg syscall (linux-arm-cgo), const RTM_NEWLINK = 16 +pkg syscall (linux-arm-cgo), const RTM_NEWNDUSEROPT = 68 +pkg syscall (linux-arm-cgo), const RTM_NEWNEIGH = 28 +pkg syscall (linux-arm-cgo), const RTM_NEWNEIGHTBL = 64 +pkg syscall (linux-arm-cgo), const RTM_NEWPREFIX = 52 +pkg syscall (linux-arm-cgo), const RTM_NEWQDISC = 36 +pkg syscall (linux-arm-cgo), const RTM_NEWROUTE = 24 +pkg syscall (linux-arm-cgo), const RTM_NEWRULE = 32 +pkg syscall (linux-arm-cgo), const RTM_NEWTCLASS = 40 +pkg syscall (linux-arm-cgo), const RTM_NEWTFILTER = 44 +pkg syscall (linux-arm-cgo), const RTM_NR_FAMILIES = 16 +pkg syscall (linux-arm-cgo), const RTM_NR_MSGTYPES = 64 +pkg syscall (linux-arm-cgo), const RTM_SETDCB = 79 +pkg syscall (linux-arm-cgo), const RTM_SETLINK = 19 +pkg syscall (linux-arm-cgo), const RTM_SETNEIGHTBL = 67 +pkg syscall (linux-arm-cgo), const RTNH_ALIGNTO = 4 +pkg syscall (linux-arm-cgo), const RTNH_F_DEAD = 1 +pkg syscall (linux-arm-cgo), const RTNH_F_ONLINK = 4 +pkg syscall (linux-arm-cgo), const RTNH_F_PERVASIVE = 2 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_IFADDR = 5 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_MROUTE = 6 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_ROUTE = 7 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_RULE = 8 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFADDR = 9 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFINFO = 12 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_MROUTE = 10 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_PREFIX = 18 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_ROUTE = 11 +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_RULE = 19 +pkg syscall (linux-arm-cgo), const RTNLGRP_LINK = 1 +pkg syscall (linux-arm-cgo), const RTNLGRP_ND_USEROPT = 20 +pkg syscall (linux-arm-cgo), const RTNLGRP_NEIGH = 3 +pkg syscall (linux-arm-cgo), const RTNLGRP_NONE = 0 +pkg syscall (linux-arm-cgo), const RTNLGRP_NOTIFY = 2 +pkg syscall (linux-arm-cgo), const RTNLGRP_TC = 4 +pkg syscall (linux-arm-cgo), const RTN_ANYCAST = 4 +pkg syscall (linux-arm-cgo), const RTN_BLACKHOLE = 6 +pkg syscall (linux-arm-cgo), const RTN_BROADCAST = 3 +pkg syscall (linux-arm-cgo), const RTN_LOCAL = 2 +pkg syscall (linux-arm-cgo), const RTN_MAX = 11 +pkg syscall (linux-arm-cgo), const RTN_MULTICAST = 5 +pkg syscall (linux-arm-cgo), const RTN_NAT = 10 +pkg syscall (linux-arm-cgo), const RTN_PROHIBIT = 8 +pkg syscall (linux-arm-cgo), const RTN_THROW = 9 +pkg syscall (linux-arm-cgo), const RTN_UNICAST = 1 +pkg syscall (linux-arm-cgo), const RTN_UNREACHABLE = 7 +pkg syscall (linux-arm-cgo), const RTN_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RTN_XRESOLVE = 11 +pkg syscall (linux-arm-cgo), const RTPROT_BIRD = 12 +pkg syscall (linux-arm-cgo), const RTPROT_BOOT = 3 +pkg syscall (linux-arm-cgo), const RTPROT_DHCP = 16 +pkg syscall (linux-arm-cgo), const RTPROT_DNROUTED = 13 +pkg syscall (linux-arm-cgo), const RTPROT_GATED = 8 +pkg syscall (linux-arm-cgo), const RTPROT_KERNEL = 2 +pkg syscall (linux-arm-cgo), const RTPROT_MRT = 10 +pkg syscall (linux-arm-cgo), const RTPROT_NTK = 15 +pkg syscall (linux-arm-cgo), const RTPROT_RA = 9 +pkg syscall (linux-arm-cgo), const RTPROT_REDIRECT = 1 +pkg syscall (linux-arm-cgo), const RTPROT_STATIC = 4 +pkg syscall (linux-arm-cgo), const RTPROT_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RTPROT_XORP = 14 +pkg syscall (linux-arm-cgo), const RTPROT_ZEBRA = 11 +pkg syscall (linux-arm-cgo), const RT_CLASS_DEFAULT = 253 +pkg syscall (linux-arm-cgo), const RT_CLASS_LOCAL = 255 +pkg syscall (linux-arm-cgo), const RT_CLASS_MAIN = 254 +pkg syscall (linux-arm-cgo), const RT_CLASS_MAX = 255 +pkg syscall (linux-arm-cgo), const RT_CLASS_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RT_SCOPE_HOST = 254 +pkg syscall (linux-arm-cgo), const RT_SCOPE_LINK = 253 +pkg syscall (linux-arm-cgo), const RT_SCOPE_NOWHERE = 255 +pkg syscall (linux-arm-cgo), const RT_SCOPE_SITE = 200 +pkg syscall (linux-arm-cgo), const RT_SCOPE_UNIVERSE = 0 +pkg syscall (linux-arm-cgo), const RT_TABLE_COMPAT = 252 +pkg syscall (linux-arm-cgo), const RT_TABLE_DEFAULT = 253 +pkg syscall (linux-arm-cgo), const RT_TABLE_LOCAL = 255 +pkg syscall (linux-arm-cgo), const RT_TABLE_MAIN = 254 +pkg syscall (linux-arm-cgo), const RT_TABLE_MAX = 4294967295 +pkg syscall (linux-arm-cgo), const RT_TABLE_UNSPEC = 0 +pkg syscall (linux-arm-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (linux-arm-cgo), const RUSAGE_SELF = 0 +pkg syscall (linux-arm-cgo), const RUSAGE_THREAD = 1 +pkg syscall (linux-arm-cgo), const SCM_CREDENTIALS = 2 +pkg syscall (linux-arm-cgo), const SCM_RIGHTS = 1 +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMP = 29 +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPING = 37 +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPNS = 35 +pkg syscall (linux-arm-cgo), const SIGBUS = 7 +pkg syscall (linux-arm-cgo), const SIGCHLD = 17 +pkg syscall (linux-arm-cgo), const SIGCLD = 17 +pkg syscall (linux-arm-cgo), const SIGCONT = 18 +pkg syscall (linux-arm-cgo), const SIGIO = 29 +pkg syscall (linux-arm-cgo), const SIGIOT = 6 +pkg syscall (linux-arm-cgo), const SIGPOLL = 29 +pkg syscall (linux-arm-cgo), const SIGPROF = 27 +pkg syscall (linux-arm-cgo), const SIGPWR = 30 +pkg syscall (linux-arm-cgo), const SIGSTKFLT = 16 +pkg syscall (linux-arm-cgo), const SIGSTOP = 19 +pkg syscall (linux-arm-cgo), const SIGSYS = 31 +pkg syscall (linux-arm-cgo), const SIGTSTP = 20 +pkg syscall (linux-arm-cgo), const SIGTTIN = 21 +pkg syscall (linux-arm-cgo), const SIGTTOU = 22 +pkg syscall (linux-arm-cgo), const SIGUNUSED = 31 +pkg syscall (linux-arm-cgo), const SIGURG = 23 +pkg syscall (linux-arm-cgo), const SIGUSR1 = 10 +pkg syscall (linux-arm-cgo), const SIGUSR2 = 12 +pkg syscall (linux-arm-cgo), const SIGVTALRM = 26 +pkg syscall (linux-arm-cgo), const SIGWINCH = 28 +pkg syscall (linux-arm-cgo), const SIGXCPU = 24 +pkg syscall (linux-arm-cgo), const SIGXFSZ = 25 +pkg syscall (linux-arm-cgo), const SIOCADDDLCI = 35200 +pkg syscall (linux-arm-cgo), const SIOCADDMULTI = 35121 +pkg syscall (linux-arm-cgo), const SIOCADDRT = 35083 +pkg syscall (linux-arm-cgo), const SIOCATMARK = 35077 +pkg syscall (linux-arm-cgo), const SIOCDARP = 35155 +pkg syscall (linux-arm-cgo), const SIOCDELDLCI = 35201 +pkg syscall (linux-arm-cgo), const SIOCDELMULTI = 35122 +pkg syscall (linux-arm-cgo), const SIOCDELRT = 35084 +pkg syscall (linux-arm-cgo), const SIOCDEVPRIVATE = 35312 +pkg syscall (linux-arm-cgo), const SIOCDIFADDR = 35126 +pkg syscall (linux-arm-cgo), const SIOCDRARP = 35168 +pkg syscall (linux-arm-cgo), const SIOCGARP = 35156 +pkg syscall (linux-arm-cgo), const SIOCGIFADDR = 35093 +pkg syscall (linux-arm-cgo), const SIOCGIFBR = 35136 +pkg syscall (linux-arm-cgo), const SIOCGIFBRDADDR = 35097 +pkg syscall (linux-arm-cgo), const SIOCGIFCONF = 35090 +pkg syscall (linux-arm-cgo), const SIOCGIFCOUNT = 35128 +pkg syscall (linux-arm-cgo), const SIOCGIFDSTADDR = 35095 +pkg syscall (linux-arm-cgo), const SIOCGIFENCAP = 35109 +pkg syscall (linux-arm-cgo), const SIOCGIFFLAGS = 35091 +pkg syscall (linux-arm-cgo), const SIOCGIFHWADDR = 35111 +pkg syscall (linux-arm-cgo), const SIOCGIFINDEX = 35123 +pkg syscall (linux-arm-cgo), const SIOCGIFMAP = 35184 +pkg syscall (linux-arm-cgo), const SIOCGIFMEM = 35103 +pkg syscall (linux-arm-cgo), const SIOCGIFMETRIC = 35101 +pkg syscall (linux-arm-cgo), const SIOCGIFMTU = 35105 +pkg syscall (linux-arm-cgo), const SIOCGIFNAME = 35088 +pkg syscall (linux-arm-cgo), const SIOCGIFNETMASK = 35099 +pkg syscall (linux-arm-cgo), const SIOCGIFPFLAGS = 35125 +pkg syscall (linux-arm-cgo), const SIOCGIFSLAVE = 35113 +pkg syscall (linux-arm-cgo), const SIOCGIFTXQLEN = 35138 +pkg syscall (linux-arm-cgo), const SIOCGPGRP = 35076 +pkg syscall (linux-arm-cgo), const SIOCGRARP = 35169 +pkg syscall (linux-arm-cgo), const SIOCGSTAMP = 35078 +pkg syscall (linux-arm-cgo), const SIOCGSTAMPNS = 35079 +pkg syscall (linux-arm-cgo), const SIOCPROTOPRIVATE = 35296 +pkg syscall (linux-arm-cgo), const SIOCRTMSG = 35085 +pkg syscall (linux-arm-cgo), const SIOCSARP = 35157 +pkg syscall (linux-arm-cgo), const SIOCSIFADDR = 35094 +pkg syscall (linux-arm-cgo), const SIOCSIFBR = 35137 +pkg syscall (linux-arm-cgo), const SIOCSIFBRDADDR = 35098 +pkg syscall (linux-arm-cgo), const SIOCSIFDSTADDR = 35096 +pkg syscall (linux-arm-cgo), const SIOCSIFENCAP = 35110 +pkg syscall (linux-arm-cgo), const SIOCSIFFLAGS = 35092 +pkg syscall (linux-arm-cgo), const SIOCSIFHWADDR = 35108 +pkg syscall (linux-arm-cgo), const SIOCSIFHWBROADCAST = 35127 +pkg syscall (linux-arm-cgo), const SIOCSIFLINK = 35089 +pkg syscall (linux-arm-cgo), const SIOCSIFMAP = 35185 +pkg syscall (linux-arm-cgo), const SIOCSIFMEM = 35104 +pkg syscall (linux-arm-cgo), const SIOCSIFMETRIC = 35102 +pkg syscall (linux-arm-cgo), const SIOCSIFMTU = 35106 +pkg syscall (linux-arm-cgo), const SIOCSIFNAME = 35107 +pkg syscall (linux-arm-cgo), const SIOCSIFNETMASK = 35100 +pkg syscall (linux-arm-cgo), const SIOCSIFPFLAGS = 35124 +pkg syscall (linux-arm-cgo), const SIOCSIFSLAVE = 35120 +pkg syscall (linux-arm-cgo), const SIOCSIFTXQLEN = 35139 +pkg syscall (linux-arm-cgo), const SIOCSPGRP = 35074 +pkg syscall (linux-arm-cgo), const SIOCSRARP = 35170 +pkg syscall (linux-arm-cgo), const SOCK_CLOEXEC = 524288 +pkg syscall (linux-arm-cgo), const SOCK_DCCP = 6 +pkg syscall (linux-arm-cgo), const SOCK_NONBLOCK = 2048 +pkg syscall (linux-arm-cgo), const SOCK_PACKET = 10 +pkg syscall (linux-arm-cgo), const SOCK_RDM = 4 +pkg syscall (linux-arm-cgo), const SOL_AAL = 265 +pkg syscall (linux-arm-cgo), const SOL_ATM = 264 +pkg syscall (linux-arm-cgo), const SOL_DECNET = 261 +pkg syscall (linux-arm-cgo), const SOL_ICMPV6 = 58 +pkg syscall (linux-arm-cgo), const SOL_IP = 0 +pkg syscall (linux-arm-cgo), const SOL_IPV6 = 41 +pkg syscall (linux-arm-cgo), const SOL_IRDA = 266 +pkg syscall (linux-arm-cgo), const SOL_PACKET = 263 +pkg syscall (linux-arm-cgo), const SOL_RAW = 255 +pkg syscall (linux-arm-cgo), const SOL_SOCKET = 1 +pkg syscall (linux-arm-cgo), const SOL_TCP = 6 +pkg syscall (linux-arm-cgo), const SOL_X25 = 262 +pkg syscall (linux-arm-cgo), const SOMAXCONN = 128 +pkg syscall (linux-arm-cgo), const SO_ACCEPTCONN = 30 +pkg syscall (linux-arm-cgo), const SO_ATTACH_FILTER = 26 +pkg syscall (linux-arm-cgo), const SO_BINDTODEVICE = 25 +pkg syscall (linux-arm-cgo), const SO_BROADCAST = 6 +pkg syscall (linux-arm-cgo), const SO_BSDCOMPAT = 14 +pkg syscall (linux-arm-cgo), const SO_DEBUG = 1 +pkg syscall (linux-arm-cgo), const SO_DETACH_FILTER = 27 +pkg syscall (linux-arm-cgo), const SO_DOMAIN = 39 +pkg syscall (linux-arm-cgo), const SO_DONTROUTE = 5 +pkg syscall (linux-arm-cgo), const SO_ERROR = 4 +pkg syscall (linux-arm-cgo), const SO_KEEPALIVE = 9 +pkg syscall (linux-arm-cgo), const SO_LINGER = 13 +pkg syscall (linux-arm-cgo), const SO_MARK = 36 +pkg syscall (linux-arm-cgo), const SO_NO_CHECK = 11 +pkg syscall (linux-arm-cgo), const SO_OOBINLINE = 10 +pkg syscall (linux-arm-cgo), const SO_PASSCRED = 16 +pkg syscall (linux-arm-cgo), const SO_PASSSEC = 34 +pkg syscall (linux-arm-cgo), const SO_PEERCRED = 17 +pkg syscall (linux-arm-cgo), const SO_PEERNAME = 28 +pkg syscall (linux-arm-cgo), const SO_PEERSEC = 31 +pkg syscall (linux-arm-cgo), const SO_PRIORITY = 12 +pkg syscall (linux-arm-cgo), const SO_PROTOCOL = 38 +pkg syscall (linux-arm-cgo), const SO_RCVBUF = 8 +pkg syscall (linux-arm-cgo), const SO_RCVBUFFORCE = 33 +pkg syscall (linux-arm-cgo), const SO_RCVLOWAT = 18 +pkg syscall (linux-arm-cgo), const SO_RCVTIMEO = 20 +pkg syscall (linux-arm-cgo), const SO_REUSEADDR = 2 +pkg syscall (linux-arm-cgo), const SO_RXQ_OVFL = 40 +pkg syscall (linux-arm-cgo), const SO_SECURITY_AUTHENTICATION = 22 +pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_NETWORK = 24 +pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23 +pkg syscall (linux-arm-cgo), const SO_SNDBUF = 7 +pkg syscall (linux-arm-cgo), const SO_SNDBUFFORCE = 32 +pkg syscall (linux-arm-cgo), const SO_SNDLOWAT = 19 +pkg syscall (linux-arm-cgo), const SO_SNDTIMEO = 21 +pkg syscall (linux-arm-cgo), const SO_TIMESTAMP = 29 +pkg syscall (linux-arm-cgo), const SO_TIMESTAMPING = 37 +pkg syscall (linux-arm-cgo), const SO_TIMESTAMPNS = 35 +pkg syscall (linux-arm-cgo), const SO_TYPE = 3 +pkg syscall (linux-arm-cgo), const SYS_ACCEPT = 285 +pkg syscall (linux-arm-cgo), const SYS_ACCEPT4 = 366 +pkg syscall (linux-arm-cgo), const SYS_ACCESS = 33 +pkg syscall (linux-arm-cgo), const SYS_ACCT = 51 +pkg syscall (linux-arm-cgo), const SYS_ADD_KEY = 309 +pkg syscall (linux-arm-cgo), const SYS_ADJTIMEX = 124 +pkg syscall (linux-arm-cgo), const SYS_ALARM = 27 +pkg syscall (linux-arm-cgo), const SYS_ARM_FADVISE64_64 = 270 +pkg syscall (linux-arm-cgo), const SYS_ARM_SYNC_FILE_RANGE = 341 +pkg syscall (linux-arm-cgo), const SYS_BDFLUSH = 134 +pkg syscall (linux-arm-cgo), const SYS_BIND = 282 +pkg syscall (linux-arm-cgo), const SYS_BRK = 45 +pkg syscall (linux-arm-cgo), const SYS_CAPGET = 184 +pkg syscall (linux-arm-cgo), const SYS_CAPSET = 185 +pkg syscall (linux-arm-cgo), const SYS_CHDIR = 12 +pkg syscall (linux-arm-cgo), const SYS_CHMOD = 15 +pkg syscall (linux-arm-cgo), const SYS_CHOWN = 182 +pkg syscall (linux-arm-cgo), const SYS_CHOWN32 = 212 +pkg syscall (linux-arm-cgo), const SYS_CHROOT = 61 +pkg syscall (linux-arm-cgo), const SYS_CLOCK_ADJTIME = 372 +pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETRES = 264 +pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETTIME = 263 +pkg syscall (linux-arm-cgo), const SYS_CLOCK_NANOSLEEP = 265 +pkg syscall (linux-arm-cgo), const SYS_CLOCK_SETTIME = 262 +pkg syscall (linux-arm-cgo), const SYS_CLONE = 120 +pkg syscall (linux-arm-cgo), const SYS_CLOSE = 6 +pkg syscall (linux-arm-cgo), const SYS_CONNECT = 283 +pkg syscall (linux-arm-cgo), const SYS_CREAT = 8 +pkg syscall (linux-arm-cgo), const SYS_DELETE_MODULE = 129 +pkg syscall (linux-arm-cgo), const SYS_DUP = 41 +pkg syscall (linux-arm-cgo), const SYS_DUP2 = 63 +pkg syscall (linux-arm-cgo), const SYS_DUP3 = 358 +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE = 250 +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE1 = 357 +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CTL = 251 +pkg syscall (linux-arm-cgo), const SYS_EPOLL_PWAIT = 346 +pkg syscall (linux-arm-cgo), const SYS_EPOLL_WAIT = 252 +pkg syscall (linux-arm-cgo), const SYS_EVENTFD = 351 +pkg syscall (linux-arm-cgo), const SYS_EVENTFD2 = 356 +pkg syscall (linux-arm-cgo), const SYS_EXECVE = 11 +pkg syscall (linux-arm-cgo), const SYS_EXIT = 1 +pkg syscall (linux-arm-cgo), const SYS_EXIT_GROUP = 248 +pkg syscall (linux-arm-cgo), const SYS_FACCESSAT = 334 +pkg syscall (linux-arm-cgo), const SYS_FALLOCATE = 352 +pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_INIT = 367 +pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_MARK = 368 +pkg syscall (linux-arm-cgo), const SYS_FCHDIR = 133 +pkg syscall (linux-arm-cgo), const SYS_FCHMOD = 94 +pkg syscall (linux-arm-cgo), const SYS_FCHMODAT = 333 +pkg syscall (linux-arm-cgo), const SYS_FCHOWN = 95 +pkg syscall (linux-arm-cgo), const SYS_FCHOWN32 = 207 +pkg syscall (linux-arm-cgo), const SYS_FCHOWNAT = 325 +pkg syscall (linux-arm-cgo), const SYS_FCNTL = 55 +pkg syscall (linux-arm-cgo), const SYS_FCNTL64 = 221 +pkg syscall (linux-arm-cgo), const SYS_FDATASYNC = 148 +pkg syscall (linux-arm-cgo), const SYS_FGETXATTR = 231 +pkg syscall (linux-arm-cgo), const SYS_FLISTXATTR = 234 +pkg syscall (linux-arm-cgo), const SYS_FLOCK = 143 +pkg syscall (linux-arm-cgo), const SYS_FORK = 2 +pkg syscall (linux-arm-cgo), const SYS_FREMOVEXATTR = 237 +pkg syscall (linux-arm-cgo), const SYS_FSETXATTR = 228 +pkg syscall (linux-arm-cgo), const SYS_FSTAT = 108 +pkg syscall (linux-arm-cgo), const SYS_FSTAT64 = 197 +pkg syscall (linux-arm-cgo), const SYS_FSTATAT64 = 327 +pkg syscall (linux-arm-cgo), const SYS_FSTATFS = 100 +pkg syscall (linux-arm-cgo), const SYS_FSTATFS64 = 267 +pkg syscall (linux-arm-cgo), const SYS_FSYNC = 118 +pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE = 93 +pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE64 = 194 +pkg syscall (linux-arm-cgo), const SYS_FUTEX = 240 +pkg syscall (linux-arm-cgo), const SYS_FUTIMESAT = 326 +pkg syscall (linux-arm-cgo), const SYS_GETCPU = 345 +pkg syscall (linux-arm-cgo), const SYS_GETCWD = 183 +pkg syscall (linux-arm-cgo), const SYS_GETDENTS = 141 +pkg syscall (linux-arm-cgo), const SYS_GETDENTS64 = 217 +pkg syscall (linux-arm-cgo), const SYS_GETEGID = 50 +pkg syscall (linux-arm-cgo), const SYS_GETEGID32 = 202 +pkg syscall (linux-arm-cgo), const SYS_GETEUID = 49 +pkg syscall (linux-arm-cgo), const SYS_GETEUID32 = 201 +pkg syscall (linux-arm-cgo), const SYS_GETGID = 47 +pkg syscall (linux-arm-cgo), const SYS_GETGID32 = 200 +pkg syscall (linux-arm-cgo), const SYS_GETGROUPS = 80 +pkg syscall (linux-arm-cgo), const SYS_GETGROUPS32 = 205 +pkg syscall (linux-arm-cgo), const SYS_GETITIMER = 105 +pkg syscall (linux-arm-cgo), const SYS_GETPEERNAME = 287 +pkg syscall (linux-arm-cgo), const SYS_GETPGID = 132 +pkg syscall (linux-arm-cgo), const SYS_GETPGRP = 65 +pkg syscall (linux-arm-cgo), const SYS_GETPID = 20 +pkg syscall (linux-arm-cgo), const SYS_GETPPID = 64 +pkg syscall (linux-arm-cgo), const SYS_GETPRIORITY = 96 +pkg syscall (linux-arm-cgo), const SYS_GETRESGID = 171 +pkg syscall (linux-arm-cgo), const SYS_GETRESGID32 = 211 +pkg syscall (linux-arm-cgo), const SYS_GETRESUID = 165 +pkg syscall (linux-arm-cgo), const SYS_GETRESUID32 = 209 +pkg syscall (linux-arm-cgo), const SYS_GETRLIMIT = 76 +pkg syscall (linux-arm-cgo), const SYS_GETRUSAGE = 77 +pkg syscall (linux-arm-cgo), const SYS_GETSID = 147 +pkg syscall (linux-arm-cgo), const SYS_GETSOCKNAME = 286 +pkg syscall (linux-arm-cgo), const SYS_GETSOCKOPT = 295 +pkg syscall (linux-arm-cgo), const SYS_GETTID = 224 +pkg syscall (linux-arm-cgo), const SYS_GETTIMEOFDAY = 78 +pkg syscall (linux-arm-cgo), const SYS_GETUID = 24 +pkg syscall (linux-arm-cgo), const SYS_GETUID32 = 199 +pkg syscall (linux-arm-cgo), const SYS_GETXATTR = 229 +pkg syscall (linux-arm-cgo), const SYS_GET_MEMPOLICY = 320 +pkg syscall (linux-arm-cgo), const SYS_GET_ROBUST_LIST = 339 +pkg syscall (linux-arm-cgo), const SYS_INIT_MODULE = 128 +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_ADD_WATCH = 317 +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT = 316 +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT1 = 360 +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_RM_WATCH = 318 +pkg syscall (linux-arm-cgo), const SYS_IOCTL = 54 +pkg syscall (linux-arm-cgo), const SYS_IOPRIO_GET = 315 +pkg syscall (linux-arm-cgo), const SYS_IOPRIO_SET = 314 +pkg syscall (linux-arm-cgo), const SYS_IO_CANCEL = 247 +pkg syscall (linux-arm-cgo), const SYS_IO_DESTROY = 244 +pkg syscall (linux-arm-cgo), const SYS_IO_GETEVENTS = 245 +pkg syscall (linux-arm-cgo), const SYS_IO_SETUP = 243 +pkg syscall (linux-arm-cgo), const SYS_IO_SUBMIT = 246 +pkg syscall (linux-arm-cgo), const SYS_IPC = 117 +pkg syscall (linux-arm-cgo), const SYS_KEXEC_LOAD = 347 +pkg syscall (linux-arm-cgo), const SYS_KEYCTL = 311 +pkg syscall (linux-arm-cgo), const SYS_KILL = 37 +pkg syscall (linux-arm-cgo), const SYS_LCHOWN = 16 +pkg syscall (linux-arm-cgo), const SYS_LCHOWN32 = 198 +pkg syscall (linux-arm-cgo), const SYS_LGETXATTR = 230 +pkg syscall (linux-arm-cgo), const SYS_LINK = 9 +pkg syscall (linux-arm-cgo), const SYS_LINKAT = 330 +pkg syscall (linux-arm-cgo), const SYS_LISTEN = 284 +pkg syscall (linux-arm-cgo), const SYS_LISTXATTR = 232 +pkg syscall (linux-arm-cgo), const SYS_LLISTXATTR = 233 +pkg syscall (linux-arm-cgo), const SYS_LOOKUP_DCOOKIE = 249 +pkg syscall (linux-arm-cgo), const SYS_LREMOVEXATTR = 236 +pkg syscall (linux-arm-cgo), const SYS_LSEEK = 19 +pkg syscall (linux-arm-cgo), const SYS_LSETXATTR = 227 +pkg syscall (linux-arm-cgo), const SYS_LSTAT = 107 +pkg syscall (linux-arm-cgo), const SYS_LSTAT64 = 196 +pkg syscall (linux-arm-cgo), const SYS_MADVISE = 220 +pkg syscall (linux-arm-cgo), const SYS_MBIND = 319 +pkg syscall (linux-arm-cgo), const SYS_MINCORE = 219 +pkg syscall (linux-arm-cgo), const SYS_MKDIR = 39 +pkg syscall (linux-arm-cgo), const SYS_MKDIRAT = 323 +pkg syscall (linux-arm-cgo), const SYS_MKNOD = 14 +pkg syscall (linux-arm-cgo), const SYS_MKNODAT = 324 +pkg syscall (linux-arm-cgo), const SYS_MLOCK = 150 +pkg syscall (linux-arm-cgo), const SYS_MLOCKALL = 152 +pkg syscall (linux-arm-cgo), const SYS_MMAP = 90 +pkg syscall (linux-arm-cgo), const SYS_MMAP2 = 192 +pkg syscall (linux-arm-cgo), const SYS_MOUNT = 21 +pkg syscall (linux-arm-cgo), const SYS_MOVE_PAGES = 344 +pkg syscall (linux-arm-cgo), const SYS_MPROTECT = 125 +pkg syscall (linux-arm-cgo), const SYS_MQ_GETSETATTR = 279 +pkg syscall (linux-arm-cgo), const SYS_MQ_NOTIFY = 278 +pkg syscall (linux-arm-cgo), const SYS_MQ_OPEN = 274 +pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDRECEIVE = 277 +pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDSEND = 276 +pkg syscall (linux-arm-cgo), const SYS_MQ_UNLINK = 275 +pkg syscall (linux-arm-cgo), const SYS_MREMAP = 163 +pkg syscall (linux-arm-cgo), const SYS_MSGCTL = 304 +pkg syscall (linux-arm-cgo), const SYS_MSGGET = 303 +pkg syscall (linux-arm-cgo), const SYS_MSGRCV = 302 +pkg syscall (linux-arm-cgo), const SYS_MSGSND = 301 +pkg syscall (linux-arm-cgo), const SYS_MSYNC = 144 +pkg syscall (linux-arm-cgo), const SYS_MUNLOCK = 151 +pkg syscall (linux-arm-cgo), const SYS_MUNLOCKALL = 153 +pkg syscall (linux-arm-cgo), const SYS_MUNMAP = 91 +pkg syscall (linux-arm-cgo), const SYS_NAME_TO_HANDLE_AT = 370 +pkg syscall (linux-arm-cgo), const SYS_NANOSLEEP = 162 +pkg syscall (linux-arm-cgo), const SYS_NFSSERVCTL = 169 +pkg syscall (linux-arm-cgo), const SYS_NICE = 34 +pkg syscall (linux-arm-cgo), const SYS_OABI_SYSCALL_BASE = 0 +pkg syscall (linux-arm-cgo), const SYS_OPEN = 5 +pkg syscall (linux-arm-cgo), const SYS_OPENAT = 322 +pkg syscall (linux-arm-cgo), const SYS_OPEN_BY_HANDLE_AT = 371 +pkg syscall (linux-arm-cgo), const SYS_PAUSE = 29 +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_IOBASE = 271 +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_READ = 272 +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_WRITE = 273 +pkg syscall (linux-arm-cgo), const SYS_PERF_EVENT_OPEN = 364 +pkg syscall (linux-arm-cgo), const SYS_PERSONALITY = 136 +pkg syscall (linux-arm-cgo), const SYS_PIPE = 42 +pkg syscall (linux-arm-cgo), const SYS_PIPE2 = 359 +pkg syscall (linux-arm-cgo), const SYS_PIVOT_ROOT = 218 +pkg syscall (linux-arm-cgo), const SYS_POLL = 168 +pkg syscall (linux-arm-cgo), const SYS_PPOLL = 336 +pkg syscall (linux-arm-cgo), const SYS_PRCTL = 172 +pkg syscall (linux-arm-cgo), const SYS_PREAD64 = 180 +pkg syscall (linux-arm-cgo), const SYS_PREADV = 361 +pkg syscall (linux-arm-cgo), const SYS_PRLIMIT64 = 369 +pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_READV = 376 +pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_WRITEV = 377 +pkg syscall (linux-arm-cgo), const SYS_PSELECT6 = 335 +pkg syscall (linux-arm-cgo), const SYS_PTRACE = 26 +pkg syscall (linux-arm-cgo), const SYS_PWRITE64 = 181 +pkg syscall (linux-arm-cgo), const SYS_PWRITEV = 362 +pkg syscall (linux-arm-cgo), const SYS_QUOTACTL = 131 +pkg syscall (linux-arm-cgo), const SYS_READ = 3 +pkg syscall (linux-arm-cgo), const SYS_READAHEAD = 225 +pkg syscall (linux-arm-cgo), const SYS_READDIR = 89 +pkg syscall (linux-arm-cgo), const SYS_READLINK = 85 +pkg syscall (linux-arm-cgo), const SYS_READLINKAT = 332 +pkg syscall (linux-arm-cgo), const SYS_READV = 145 +pkg syscall (linux-arm-cgo), const SYS_REBOOT = 88 +pkg syscall (linux-arm-cgo), const SYS_RECV = 291 +pkg syscall (linux-arm-cgo), const SYS_RECVFROM = 292 +pkg syscall (linux-arm-cgo), const SYS_RECVMMSG = 365 +pkg syscall (linux-arm-cgo), const SYS_RECVMSG = 297 +pkg syscall (linux-arm-cgo), const SYS_REMAP_FILE_PAGES = 253 +pkg syscall (linux-arm-cgo), const SYS_REMOVEXATTR = 235 +pkg syscall (linux-arm-cgo), const SYS_RENAME = 38 +pkg syscall (linux-arm-cgo), const SYS_RENAMEAT = 329 +pkg syscall (linux-arm-cgo), const SYS_REQUEST_KEY = 310 +pkg syscall (linux-arm-cgo), const SYS_RESTART_SYSCALL = 0 +pkg syscall (linux-arm-cgo), const SYS_RMDIR = 40 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGACTION = 174 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGPENDING = 176 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGPROCMASK = 175 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGQUEUEINFO = 178 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGRETURN = 173 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGSUSPEND = 179 +pkg syscall (linux-arm-cgo), const SYS_RT_SIGTIMEDWAIT = 177 +pkg syscall (linux-arm-cgo), const SYS_RT_TGSIGQUEUEINFO = 363 +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETAFFINITY = 242 +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETPARAM = 155 +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETSCHEDULER = 157 +pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 159 +pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 160 +pkg syscall (linux-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL = 161 +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETAFFINITY = 241 +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETPARAM = 154 +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETSCHEDULER = 156 +pkg syscall (linux-arm-cgo), const SYS_SCHED_YIELD = 158 +pkg syscall (linux-arm-cgo), const SYS_SELECT = 82 +pkg syscall (linux-arm-cgo), const SYS_SEMCTL = 300 +pkg syscall (linux-arm-cgo), const SYS_SEMGET = 299 +pkg syscall (linux-arm-cgo), const SYS_SEMOP = 298 +pkg syscall (linux-arm-cgo), const SYS_SEMTIMEDOP = 312 +pkg syscall (linux-arm-cgo), const SYS_SEND = 289 +pkg syscall (linux-arm-cgo), const SYS_SENDFILE = 187 +pkg syscall (linux-arm-cgo), const SYS_SENDFILE64 = 239 +pkg syscall (linux-arm-cgo), const SYS_SENDMMSG = 374 +pkg syscall (linux-arm-cgo), const SYS_SENDMSG = 296 +pkg syscall (linux-arm-cgo), const SYS_SENDTO = 290 +pkg syscall (linux-arm-cgo), const SYS_SETDOMAINNAME = 121 +pkg syscall (linux-arm-cgo), const SYS_SETFSGID = 139 +pkg syscall (linux-arm-cgo), const SYS_SETFSGID32 = 216 +pkg syscall (linux-arm-cgo), const SYS_SETFSUID = 138 +pkg syscall (linux-arm-cgo), const SYS_SETFSUID32 = 215 +pkg syscall (linux-arm-cgo), const SYS_SETGID = 46 +pkg syscall (linux-arm-cgo), const SYS_SETGID32 = 214 +pkg syscall (linux-arm-cgo), const SYS_SETGROUPS = 81 +pkg syscall (linux-arm-cgo), const SYS_SETGROUPS32 = 206 +pkg syscall (linux-arm-cgo), const SYS_SETHOSTNAME = 74 +pkg syscall (linux-arm-cgo), const SYS_SETITIMER = 104 +pkg syscall (linux-arm-cgo), const SYS_SETNS = 375 +pkg syscall (linux-arm-cgo), const SYS_SETPGID = 57 +pkg syscall (linux-arm-cgo), const SYS_SETPRIORITY = 97 +pkg syscall (linux-arm-cgo), const SYS_SETREGID = 71 +pkg syscall (linux-arm-cgo), const SYS_SETREGID32 = 204 +pkg syscall (linux-arm-cgo), const SYS_SETRESGID = 170 +pkg syscall (linux-arm-cgo), const SYS_SETRESGID32 = 210 +pkg syscall (linux-arm-cgo), const SYS_SETRESUID = 164 +pkg syscall (linux-arm-cgo), const SYS_SETRESUID32 = 208 +pkg syscall (linux-arm-cgo), const SYS_SETREUID = 70 +pkg syscall (linux-arm-cgo), const SYS_SETREUID32 = 203 +pkg syscall (linux-arm-cgo), const SYS_SETRLIMIT = 75 +pkg syscall (linux-arm-cgo), const SYS_SETSID = 66 +pkg syscall (linux-arm-cgo), const SYS_SETSOCKOPT = 294 +pkg syscall (linux-arm-cgo), const SYS_SETTIMEOFDAY = 79 +pkg syscall (linux-arm-cgo), const SYS_SETUID = 23 +pkg syscall (linux-arm-cgo), const SYS_SETUID32 = 213 +pkg syscall (linux-arm-cgo), const SYS_SETXATTR = 226 +pkg syscall (linux-arm-cgo), const SYS_SET_MEMPOLICY = 321 +pkg syscall (linux-arm-cgo), const SYS_SET_ROBUST_LIST = 338 +pkg syscall (linux-arm-cgo), const SYS_SET_TID_ADDRESS = 256 +pkg syscall (linux-arm-cgo), const SYS_SHMAT = 305 +pkg syscall (linux-arm-cgo), const SYS_SHMCTL = 308 +pkg syscall (linux-arm-cgo), const SYS_SHMDT = 306 +pkg syscall (linux-arm-cgo), const SYS_SHMGET = 307 +pkg syscall (linux-arm-cgo), const SYS_SHUTDOWN = 293 +pkg syscall (linux-arm-cgo), const SYS_SIGACTION = 67 +pkg syscall (linux-arm-cgo), const SYS_SIGALTSTACK = 186 +pkg syscall (linux-arm-cgo), const SYS_SIGNALFD = 349 +pkg syscall (linux-arm-cgo), const SYS_SIGNALFD4 = 355 +pkg syscall (linux-arm-cgo), const SYS_SIGPENDING = 73 +pkg syscall (linux-arm-cgo), const SYS_SIGPROCMASK = 126 +pkg syscall (linux-arm-cgo), const SYS_SIGRETURN = 119 +pkg syscall (linux-arm-cgo), const SYS_SIGSUSPEND = 72 +pkg syscall (linux-arm-cgo), const SYS_SOCKET = 281 +pkg syscall (linux-arm-cgo), const SYS_SOCKETCALL = 102 +pkg syscall (linux-arm-cgo), const SYS_SOCKETPAIR = 288 +pkg syscall (linux-arm-cgo), const SYS_SPLICE = 340 +pkg syscall (linux-arm-cgo), const SYS_STAT = 106 +pkg syscall (linux-arm-cgo), const SYS_STAT64 = 195 +pkg syscall (linux-arm-cgo), const SYS_STATFS = 99 +pkg syscall (linux-arm-cgo), const SYS_STATFS64 = 266 +pkg syscall (linux-arm-cgo), const SYS_STIME = 25 +pkg syscall (linux-arm-cgo), const SYS_SWAPOFF = 115 +pkg syscall (linux-arm-cgo), const SYS_SWAPON = 87 +pkg syscall (linux-arm-cgo), const SYS_SYMLINK = 83 +pkg syscall (linux-arm-cgo), const SYS_SYMLINKAT = 331 +pkg syscall (linux-arm-cgo), const SYS_SYNC = 36 +pkg syscall (linux-arm-cgo), const SYS_SYNCFS = 373 +pkg syscall (linux-arm-cgo), const SYS_SYSCALL = 113 +pkg syscall (linux-arm-cgo), const SYS_SYSCALL_BASE = 0 +pkg syscall (linux-arm-cgo), const SYS_SYSFS = 135 +pkg syscall (linux-arm-cgo), const SYS_SYSINFO = 116 +pkg syscall (linux-arm-cgo), const SYS_SYSLOG = 103 +pkg syscall (linux-arm-cgo), const SYS_TEE = 342 +pkg syscall (linux-arm-cgo), const SYS_TGKILL = 268 +pkg syscall (linux-arm-cgo), const SYS_TIME = 13 +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_CREATE = 350 +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_GETTIME = 354 +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_SETTIME = 353 +pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE = 257 +pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE = 261 +pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN = 260 +pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME = 259 +pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME = 258 +pkg syscall (linux-arm-cgo), const SYS_TIMES = 43 +pkg syscall (linux-arm-cgo), const SYS_TKILL = 238 +pkg syscall (linux-arm-cgo), const SYS_TRUNCATE = 92 +pkg syscall (linux-arm-cgo), const SYS_TRUNCATE64 = 193 +pkg syscall (linux-arm-cgo), const SYS_UGETRLIMIT = 191 +pkg syscall (linux-arm-cgo), const SYS_UMASK = 60 +pkg syscall (linux-arm-cgo), const SYS_UMOUNT = 22 +pkg syscall (linux-arm-cgo), const SYS_UMOUNT2 = 52 +pkg syscall (linux-arm-cgo), const SYS_UNAME = 122 +pkg syscall (linux-arm-cgo), const SYS_UNLINK = 10 +pkg syscall (linux-arm-cgo), const SYS_UNLINKAT = 328 +pkg syscall (linux-arm-cgo), const SYS_UNSHARE = 337 +pkg syscall (linux-arm-cgo), const SYS_USELIB = 86 +pkg syscall (linux-arm-cgo), const SYS_USTAT = 62 +pkg syscall (linux-arm-cgo), const SYS_UTIME = 30 +pkg syscall (linux-arm-cgo), const SYS_UTIMENSAT = 348 +pkg syscall (linux-arm-cgo), const SYS_UTIMES = 269 +pkg syscall (linux-arm-cgo), const SYS_VFORK = 190 +pkg syscall (linux-arm-cgo), const SYS_VHANGUP = 111 +pkg syscall (linux-arm-cgo), const SYS_VMSPLICE = 343 +pkg syscall (linux-arm-cgo), const SYS_VSERVER = 313 +pkg syscall (linux-arm-cgo), const SYS_WAIT4 = 114 +pkg syscall (linux-arm-cgo), const SYS_WAITID = 280 +pkg syscall (linux-arm-cgo), const SYS_WRITE = 4 +pkg syscall (linux-arm-cgo), const SYS_WRITEV = 146 +pkg syscall (linux-arm-cgo), const SYS__LLSEEK = 140 +pkg syscall (linux-arm-cgo), const SYS__NEWSELECT = 142 +pkg syscall (linux-arm-cgo), const SYS__SYSCTL = 149 +pkg syscall (linux-arm-cgo), const S_BLKSIZE = 512 +pkg syscall (linux-arm-cgo), const S_IEXEC = 64 +pkg syscall (linux-arm-cgo), const S_IFMT = 61440 +pkg syscall (linux-arm-cgo), const S_IREAD = 256 +pkg syscall (linux-arm-cgo), const S_IRGRP = 32 +pkg syscall (linux-arm-cgo), const S_IROTH = 4 +pkg syscall (linux-arm-cgo), const S_IRWXG = 56 +pkg syscall (linux-arm-cgo), const S_IRWXO = 7 +pkg syscall (linux-arm-cgo), const S_IRWXU = 448 +pkg syscall (linux-arm-cgo), const S_IWGRP = 16 +pkg syscall (linux-arm-cgo), const S_IWOTH = 2 +pkg syscall (linux-arm-cgo), const S_IWRITE = 128 +pkg syscall (linux-arm-cgo), const S_IXGRP = 8 +pkg syscall (linux-arm-cgo), const S_IXOTH = 1 +pkg syscall (linux-arm-cgo), const SizeofCmsghdr = 12 +pkg syscall (linux-arm-cgo), const SizeofIPMreq = 8 +pkg syscall (linux-arm-cgo), const SizeofIPMreqn = 12 +pkg syscall (linux-arm-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (linux-arm-cgo), const SizeofIfAddrmsg = 8 +pkg syscall (linux-arm-cgo), const SizeofIfInfomsg = 16 +pkg syscall (linux-arm-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (linux-arm-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (linux-arm-cgo), const SizeofInotifyEvent = 16 +pkg syscall (linux-arm-cgo), const SizeofLinger = 8 +pkg syscall (linux-arm-cgo), const SizeofMsghdr = 28 +pkg syscall (linux-arm-cgo), const SizeofNlAttr = 4 +pkg syscall (linux-arm-cgo), const SizeofNlMsgerr = 20 +pkg syscall (linux-arm-cgo), const SizeofNlMsghdr = 16 +pkg syscall (linux-arm-cgo), const SizeofRtAttr = 4 +pkg syscall (linux-arm-cgo), const SizeofRtGenmsg = 1 +pkg syscall (linux-arm-cgo), const SizeofRtMsg = 12 +pkg syscall (linux-arm-cgo), const SizeofRtNexthop = 8 +pkg syscall (linux-arm-cgo), const SizeofSockFilter = 8 +pkg syscall (linux-arm-cgo), const SizeofSockFprog = 8 +pkg syscall (linux-arm-cgo), const SizeofSockaddrAny = 112 +pkg syscall (linux-arm-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (linux-arm-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (linux-arm-cgo), const SizeofSockaddrLinklayer = 20 +pkg syscall (linux-arm-cgo), const SizeofSockaddrNetlink = 12 +pkg syscall (linux-arm-cgo), const SizeofSockaddrUnix = 110 +pkg syscall (linux-arm-cgo), const SizeofTCPInfo = 104 +pkg syscall (linux-arm-cgo), const SizeofUcred = 12 +pkg syscall (linux-arm-cgo), const TCGETS = 21505 +pkg syscall (linux-arm-cgo), const TCP_CONGESTION = 13 +pkg syscall (linux-arm-cgo), const TCP_CORK = 3 +pkg syscall (linux-arm-cgo), const TCP_DEFER_ACCEPT = 9 +pkg syscall (linux-arm-cgo), const TCP_INFO = 11 +pkg syscall (linux-arm-cgo), const TCP_KEEPCNT = 6 +pkg syscall (linux-arm-cgo), const TCP_KEEPIDLE = 4 +pkg syscall (linux-arm-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (linux-arm-cgo), const TCP_LINGER2 = 8 +pkg syscall (linux-arm-cgo), const TCP_MAXSEG = 2 +pkg syscall (linux-arm-cgo), const TCP_MAXWIN = 65535 +pkg syscall (linux-arm-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (linux-arm-cgo), const TCP_MD5SIG = 14 +pkg syscall (linux-arm-cgo), const TCP_MD5SIG_MAXKEYLEN = 80 +pkg syscall (linux-arm-cgo), const TCP_MSS = 512 +pkg syscall (linux-arm-cgo), const TCP_QUICKACK = 12 +pkg syscall (linux-arm-cgo), const TCP_SYNCNT = 7 +pkg syscall (linux-arm-cgo), const TCP_WINDOW_CLAMP = 10 +pkg syscall (linux-arm-cgo), const TCSETS = 21506 +pkg syscall (linux-arm-cgo), const TIOCCBRK = 21544 +pkg syscall (linux-arm-cgo), const TIOCCONS = 21533 +pkg syscall (linux-arm-cgo), const TIOCEXCL = 21516 +pkg syscall (linux-arm-cgo), const TIOCGDEV = 2147767346 +pkg syscall (linux-arm-cgo), const TIOCGETD = 21540 +pkg syscall (linux-arm-cgo), const TIOCGICOUNT = 21597 +pkg syscall (linux-arm-cgo), const TIOCGLCKTRMIOS = 21590 +pkg syscall (linux-arm-cgo), const TIOCGPGRP = 21519 +pkg syscall (linux-arm-cgo), const TIOCGPTN = 2147767344 +pkg syscall (linux-arm-cgo), const TIOCGRS485 = 21550 +pkg syscall (linux-arm-cgo), const TIOCGSERIAL = 21534 +pkg syscall (linux-arm-cgo), const TIOCGSID = 21545 +pkg syscall (linux-arm-cgo), const TIOCGSOFTCAR = 21529 +pkg syscall (linux-arm-cgo), const TIOCGWINSZ = 21523 +pkg syscall (linux-arm-cgo), const TIOCINQ = 21531 +pkg syscall (linux-arm-cgo), const TIOCLINUX = 21532 +pkg syscall (linux-arm-cgo), const TIOCMBIC = 21527 +pkg syscall (linux-arm-cgo), const TIOCMBIS = 21526 +pkg syscall (linux-arm-cgo), const TIOCMGET = 21525 +pkg syscall (linux-arm-cgo), const TIOCMIWAIT = 21596 +pkg syscall (linux-arm-cgo), const TIOCMSET = 21528 +pkg syscall (linux-arm-cgo), const TIOCM_CAR = 64 +pkg syscall (linux-arm-cgo), const TIOCM_CD = 64 +pkg syscall (linux-arm-cgo), const TIOCM_CTS = 32 +pkg syscall (linux-arm-cgo), const TIOCM_DSR = 256 +pkg syscall (linux-arm-cgo), const TIOCM_DTR = 2 +pkg syscall (linux-arm-cgo), const TIOCM_LE = 1 +pkg syscall (linux-arm-cgo), const TIOCM_RI = 128 +pkg syscall (linux-arm-cgo), const TIOCM_RNG = 128 +pkg syscall (linux-arm-cgo), const TIOCM_RTS = 4 +pkg syscall (linux-arm-cgo), const TIOCM_SR = 16 +pkg syscall (linux-arm-cgo), const TIOCM_ST = 8 +pkg syscall (linux-arm-cgo), const TIOCNOTTY = 21538 +pkg syscall (linux-arm-cgo), const TIOCNXCL = 21517 +pkg syscall (linux-arm-cgo), const TIOCOUTQ = 21521 +pkg syscall (linux-arm-cgo), const TIOCPKT = 21536 +pkg syscall (linux-arm-cgo), const TIOCPKT_DATA = 0 +pkg syscall (linux-arm-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (linux-arm-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (linux-arm-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (linux-arm-cgo), const TIOCPKT_START = 8 +pkg syscall (linux-arm-cgo), const TIOCPKT_STOP = 4 +pkg syscall (linux-arm-cgo), const TIOCSBRK = 21543 +pkg syscall (linux-arm-cgo), const TIOCSCTTY = 21518 +pkg syscall (linux-arm-cgo), const TIOCSERCONFIG = 21587 +pkg syscall (linux-arm-cgo), const TIOCSERGETLSR = 21593 +pkg syscall (linux-arm-cgo), const TIOCSERGETMULTI = 21594 +pkg syscall (linux-arm-cgo), const TIOCSERGSTRUCT = 21592 +pkg syscall (linux-arm-cgo), const TIOCSERGWILD = 21588 +pkg syscall (linux-arm-cgo), const TIOCSERSETMULTI = 21595 +pkg syscall (linux-arm-cgo), const TIOCSERSWILD = 21589 +pkg syscall (linux-arm-cgo), const TIOCSER_TEMT = 1 +pkg syscall (linux-arm-cgo), const TIOCSETD = 21539 +pkg syscall (linux-arm-cgo), const TIOCSIG = 1074025526 +pkg syscall (linux-arm-cgo), const TIOCSLCKTRMIOS = 21591 +pkg syscall (linux-arm-cgo), const TIOCSPGRP = 21520 +pkg syscall (linux-arm-cgo), const TIOCSPTLCK = 1074025521 +pkg syscall (linux-arm-cgo), const TIOCSRS485 = 21551 +pkg syscall (linux-arm-cgo), const TIOCSSERIAL = 21535 +pkg syscall (linux-arm-cgo), const TIOCSSOFTCAR = 21530 +pkg syscall (linux-arm-cgo), const TIOCSTI = 21522 +pkg syscall (linux-arm-cgo), const TIOCSWINSZ = 21524 +pkg syscall (linux-arm-cgo), const TIOCVHANGUP = 21559 +pkg syscall (linux-arm-cgo), const TOSTOP = 256 +pkg syscall (linux-arm-cgo), const TUNATTACHFILTER = 1074287829 +pkg syscall (linux-arm-cgo), const TUNDETACHFILTER = 1074287830 +pkg syscall (linux-arm-cgo), const TUNGETFEATURES = 2147767503 +pkg syscall (linux-arm-cgo), const TUNGETIFF = 2147767506 +pkg syscall (linux-arm-cgo), const TUNGETSNDBUF = 2147767507 +pkg syscall (linux-arm-cgo), const TUNGETVNETHDRSZ = 2147767511 +pkg syscall (linux-arm-cgo), const TUNSETDEBUG = 1074025673 +pkg syscall (linux-arm-cgo), const TUNSETGROUP = 1074025678 +pkg syscall (linux-arm-cgo), const TUNSETIFF = 1074025674 +pkg syscall (linux-arm-cgo), const TUNSETLINK = 1074025677 +pkg syscall (linux-arm-cgo), const TUNSETNOCSUM = 1074025672 +pkg syscall (linux-arm-cgo), const TUNSETOFFLOAD = 1074025680 +pkg syscall (linux-arm-cgo), const TUNSETOWNER = 1074025676 +pkg syscall (linux-arm-cgo), const TUNSETPERSIST = 1074025675 +pkg syscall (linux-arm-cgo), const TUNSETSNDBUF = 1074025684 +pkg syscall (linux-arm-cgo), const TUNSETTXFILTER = 1074025681 +pkg syscall (linux-arm-cgo), const TUNSETVNETHDRSZ = 1074025688 +pkg syscall (linux-arm-cgo), const VDISCARD = 13 +pkg syscall (linux-arm-cgo), const VEOF = 4 +pkg syscall (linux-arm-cgo), const VEOL = 11 +pkg syscall (linux-arm-cgo), const VEOL2 = 16 +pkg syscall (linux-arm-cgo), const VERASE = 2 +pkg syscall (linux-arm-cgo), const VINTR = 0 +pkg syscall (linux-arm-cgo), const VKILL = 3 +pkg syscall (linux-arm-cgo), const VLNEXT = 15 +pkg syscall (linux-arm-cgo), const VMIN = 6 +pkg syscall (linux-arm-cgo), const VQUIT = 1 +pkg syscall (linux-arm-cgo), const VREPRINT = 12 +pkg syscall (linux-arm-cgo), const VSTART = 8 +pkg syscall (linux-arm-cgo), const VSTOP = 9 +pkg syscall (linux-arm-cgo), const VSUSP = 10 +pkg syscall (linux-arm-cgo), const VSWTC = 7 +pkg syscall (linux-arm-cgo), const VTIME = 5 +pkg syscall (linux-arm-cgo), const VWERASE = 14 +pkg syscall (linux-arm-cgo), const WALL = 1073741824 +pkg syscall (linux-arm-cgo), const WCLONE = 2147483648 +pkg syscall (linux-arm-cgo), const WCONTINUED = 8 +pkg syscall (linux-arm-cgo), const WEXITED = 4 +pkg syscall (linux-arm-cgo), const WNOHANG = 1 +pkg syscall (linux-arm-cgo), const WNOTHREAD = 536870912 +pkg syscall (linux-arm-cgo), const WNOWAIT = 16777216 +pkg syscall (linux-arm-cgo), const WORDSIZE = 32 +pkg syscall (linux-arm-cgo), const WSTOPPED = 2 +pkg syscall (linux-arm-cgo), const WUNTRACED = 2 +pkg syscall (linux-arm-cgo), const XCASE = 4 +pkg syscall (netbsd-386), const AF_APPLETALK = 16 +pkg syscall (netbsd-386), const AF_ARP = 28 +pkg syscall (netbsd-386), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-386), const AF_CCITT = 10 +pkg syscall (netbsd-386), const AF_CHAOS = 5 +pkg syscall (netbsd-386), const AF_CNT = 21 +pkg syscall (netbsd-386), const AF_COIP = 20 +pkg syscall (netbsd-386), const AF_DATAKIT = 9 +pkg syscall (netbsd-386), const AF_DECnet = 12 +pkg syscall (netbsd-386), const AF_DLI = 13 +pkg syscall (netbsd-386), const AF_E164 = 26 +pkg syscall (netbsd-386), const AF_ECMA = 8 +pkg syscall (netbsd-386), const AF_HYLINK = 15 +pkg syscall (netbsd-386), const AF_IEEE80211 = 32 +pkg syscall (netbsd-386), const AF_IMPLINK = 3 +pkg syscall (netbsd-386), const AF_INET6 = 24 +pkg syscall (netbsd-386), const AF_IPX = 23 +pkg syscall (netbsd-386), const AF_ISDN = 26 +pkg syscall (netbsd-386), const AF_ISO = 7 +pkg syscall (netbsd-386), const AF_LAT = 14 +pkg syscall (netbsd-386), const AF_LINK = 18 +pkg syscall (netbsd-386), const AF_LOCAL = 1 +pkg syscall (netbsd-386), const AF_MAX = 35 +pkg syscall (netbsd-386), const AF_MPLS = 33 +pkg syscall (netbsd-386), const AF_NATM = 27 +pkg syscall (netbsd-386), const AF_NS = 6 +pkg syscall (netbsd-386), const AF_OROUTE = 17 +pkg syscall (netbsd-386), const AF_OSI = 7 +pkg syscall (netbsd-386), const AF_PUP = 4 +pkg syscall (netbsd-386), const AF_ROUTE = 34 +pkg syscall (netbsd-386), const AF_SNA = 11 +pkg syscall (netbsd-386), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-386), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-386), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-386), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-386), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-386), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-386), const B0 = 0 +pkg syscall (netbsd-386), const B110 = 110 +pkg syscall (netbsd-386), const B115200 = 115200 +pkg syscall (netbsd-386), const B1200 = 1200 +pkg syscall (netbsd-386), const B134 = 134 +pkg syscall (netbsd-386), const B14400 = 14400 +pkg syscall (netbsd-386), const B150 = 150 +pkg syscall (netbsd-386), const B1800 = 1800 +pkg syscall (netbsd-386), const B19200 = 19200 +pkg syscall (netbsd-386), const B200 = 200 +pkg syscall (netbsd-386), const B230400 = 230400 +pkg syscall (netbsd-386), const B2400 = 2400 +pkg syscall (netbsd-386), const B28800 = 28800 +pkg syscall (netbsd-386), const B300 = 300 +pkg syscall (netbsd-386), const B38400 = 38400 +pkg syscall (netbsd-386), const B460800 = 460800 +pkg syscall (netbsd-386), const B4800 = 4800 +pkg syscall (netbsd-386), const B50 = 50 +pkg syscall (netbsd-386), const B57600 = 57600 +pkg syscall (netbsd-386), const B600 = 600 +pkg syscall (netbsd-386), const B7200 = 7200 +pkg syscall (netbsd-386), const B75 = 75 +pkg syscall (netbsd-386), const B76800 = 76800 +pkg syscall (netbsd-386), const B921600 = 921600 +pkg syscall (netbsd-386), const B9600 = 9600 +pkg syscall (netbsd-386), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-386), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-386), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-386), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-386), const BIOCGDLTLIST = 3221766775 +pkg syscall (netbsd-386), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-386), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-386), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-386), const BIOCGRTIMEOUT = 1074545275 +pkg syscall (netbsd-386), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-386), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-386), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-386), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-386), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-386), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-386), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-386), const BIOCSETF = 2148024935 +pkg syscall (netbsd-386), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-386), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-386), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-386), const BIOCSRTIMEOUT = 2148287098 +pkg syscall (netbsd-386), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-386), const BIOCSTCPF = 2148024946 +pkg syscall (netbsd-386), const BIOCSUDPF = 2148024947 +pkg syscall (netbsd-386), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-386), const BPF_A = 16 +pkg syscall (netbsd-386), const BPF_ABS = 32 +pkg syscall (netbsd-386), const BPF_ADD = 0 +pkg syscall (netbsd-386), const BPF_ALIGNMENT = 4 +pkg syscall (netbsd-386), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-386), const BPF_ALU = 4 +pkg syscall (netbsd-386), const BPF_AND = 80 +pkg syscall (netbsd-386), const BPF_B = 16 +pkg syscall (netbsd-386), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-386), const BPF_DIV = 48 +pkg syscall (netbsd-386), const BPF_H = 8 +pkg syscall (netbsd-386), const BPF_IMM = 0 +pkg syscall (netbsd-386), const BPF_IND = 64 +pkg syscall (netbsd-386), const BPF_JA = 0 +pkg syscall (netbsd-386), const BPF_JEQ = 16 +pkg syscall (netbsd-386), const BPF_JGE = 48 +pkg syscall (netbsd-386), const BPF_JGT = 32 +pkg syscall (netbsd-386), const BPF_JMP = 5 +pkg syscall (netbsd-386), const BPF_JSET = 64 +pkg syscall (netbsd-386), const BPF_K = 0 +pkg syscall (netbsd-386), const BPF_LD = 0 +pkg syscall (netbsd-386), const BPF_LDX = 1 +pkg syscall (netbsd-386), const BPF_LEN = 128 +pkg syscall (netbsd-386), const BPF_LSH = 96 +pkg syscall (netbsd-386), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-386), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-386), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-386), const BPF_MEM = 96 +pkg syscall (netbsd-386), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-386), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-386), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-386), const BPF_MISC = 7 +pkg syscall (netbsd-386), const BPF_MSH = 160 +pkg syscall (netbsd-386), const BPF_MUL = 32 +pkg syscall (netbsd-386), const BPF_NEG = 128 +pkg syscall (netbsd-386), const BPF_OR = 64 +pkg syscall (netbsd-386), const BPF_RELEASE = 199606 +pkg syscall (netbsd-386), const BPF_RET = 6 +pkg syscall (netbsd-386), const BPF_RSH = 112 +pkg syscall (netbsd-386), const BPF_ST = 2 +pkg syscall (netbsd-386), const BPF_STX = 3 +pkg syscall (netbsd-386), const BPF_SUB = 16 +pkg syscall (netbsd-386), const BPF_TAX = 0 +pkg syscall (netbsd-386), const BPF_TXA = 128 +pkg syscall (netbsd-386), const BPF_W = 0 +pkg syscall (netbsd-386), const BPF_X = 8 +pkg syscall (netbsd-386), const BRKINT = 2 +pkg syscall (netbsd-386), const CFLUSH = 15 +pkg syscall (netbsd-386), const CLOCAL = 32768 +pkg syscall (netbsd-386), const CREAD = 2048 +pkg syscall (netbsd-386), const CS5 = 0 +pkg syscall (netbsd-386), const CS6 = 256 +pkg syscall (netbsd-386), const CS7 = 512 +pkg syscall (netbsd-386), const CS8 = 768 +pkg syscall (netbsd-386), const CSIZE = 768 +pkg syscall (netbsd-386), const CSTART = 17 +pkg syscall (netbsd-386), const CSTATUS = 20 +pkg syscall (netbsd-386), const CSTOP = 19 +pkg syscall (netbsd-386), const CSTOPB = 1024 +pkg syscall (netbsd-386), const CSUSP = 26 +pkg syscall (netbsd-386), const CTL_MAXNAME = 12 +pkg syscall (netbsd-386), const CTL_NET = 4 +pkg syscall (netbsd-386), const CTL_QUERY = -2 +pkg syscall (netbsd-386), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-386), const DLT_A429 = 184 +pkg syscall (netbsd-386), const DLT_A653_ICM = 185 +pkg syscall (netbsd-386), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-386), const DLT_AOS = 222 +pkg syscall (netbsd-386), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-386), const DLT_ARCNET = 7 +pkg syscall (netbsd-386), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-386), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-386), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-386), const DLT_AURORA = 126 +pkg syscall (netbsd-386), const DLT_AX25 = 3 +pkg syscall (netbsd-386), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-386), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-386), const DLT_CAN20B = 190 +pkg syscall (netbsd-386), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-386), const DLT_CHAOS = 5 +pkg syscall (netbsd-386), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-386), const DLT_C_HDLC = 104 +pkg syscall (netbsd-386), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-386), const DLT_DECT = 221 +pkg syscall (netbsd-386), const DLT_DOCSIS = 143 +pkg syscall (netbsd-386), const DLT_ECONET = 115 +pkg syscall (netbsd-386), const DLT_EN10MB = 1 +pkg syscall (netbsd-386), const DLT_EN3MB = 2 +pkg syscall (netbsd-386), const DLT_ENC = 109 +pkg syscall (netbsd-386), const DLT_ERF = 197 +pkg syscall (netbsd-386), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-386), const DLT_ERF_POS = 176 +pkg syscall (netbsd-386), const DLT_FC_2 = 224 +pkg syscall (netbsd-386), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-386), const DLT_FDDI = 10 +pkg syscall (netbsd-386), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-386), const DLT_FRELAY = 107 +pkg syscall (netbsd-386), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-386), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-386), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-386), const DLT_GPF_F = 171 +pkg syscall (netbsd-386), const DLT_GPF_T = 170 +pkg syscall (netbsd-386), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-386), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-386), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-386), const DLT_HDLC = 16 +pkg syscall (netbsd-386), const DLT_HHDLC = 121 +pkg syscall (netbsd-386), const DLT_HIPPI = 15 +pkg syscall (netbsd-386), const DLT_IBM_SN = 146 +pkg syscall (netbsd-386), const DLT_IBM_SP = 145 +pkg syscall (netbsd-386), const DLT_IEEE802 = 6 +pkg syscall (netbsd-386), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-386), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-386), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-386), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-386), const DLT_IPMB = 199 +pkg syscall (netbsd-386), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-386), const DLT_IPNET = 226 +pkg syscall (netbsd-386), const DLT_IPV4 = 228 +pkg syscall (netbsd-386), const DLT_IPV6 = 229 +pkg syscall (netbsd-386), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-386), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-386), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-386), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-386), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-386), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-386), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-386), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-386), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-386), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-386), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-386), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-386), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-386), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-386), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-386), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-386), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-386), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-386), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-386), const DLT_LAPD = 203 +pkg syscall (netbsd-386), const DLT_LIN = 212 +pkg syscall (netbsd-386), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-386), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-386), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-386), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-386), const DLT_LOOP = 108 +pkg syscall (netbsd-386), const DLT_LTALK = 114 +pkg syscall (netbsd-386), const DLT_MFR = 182 +pkg syscall (netbsd-386), const DLT_MOST = 211 +pkg syscall (netbsd-386), const DLT_MPLS = 219 +pkg syscall (netbsd-386), const DLT_MTP2 = 140 +pkg syscall (netbsd-386), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-386), const DLT_MTP3 = 141 +pkg syscall (netbsd-386), const DLT_NULL = 0 +pkg syscall (netbsd-386), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-386), const DLT_PFLOG = 117 +pkg syscall (netbsd-386), const DLT_PFSYNC = 18 +pkg syscall (netbsd-386), const DLT_PPI = 192 +pkg syscall (netbsd-386), const DLT_PPP = 9 +pkg syscall (netbsd-386), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-386), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-386), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-386), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-386), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-386), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-386), const DLT_PRONET = 4 +pkg syscall (netbsd-386), const DLT_RAIF1 = 198 +pkg syscall (netbsd-386), const DLT_RAW = 12 +pkg syscall (netbsd-386), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-386), const DLT_RIO = 124 +pkg syscall (netbsd-386), const DLT_SCCP = 142 +pkg syscall (netbsd-386), const DLT_SITA = 196 +pkg syscall (netbsd-386), const DLT_SLIP = 8 +pkg syscall (netbsd-386), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-386), const DLT_SUNATM = 123 +pkg syscall (netbsd-386), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-386), const DLT_TZSP = 128 +pkg syscall (netbsd-386), const DLT_USB = 186 +pkg syscall (netbsd-386), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-386), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-386), const DLT_WIHART = 223 +pkg syscall (netbsd-386), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-386), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-386), const DT_BLK = 6 +pkg syscall (netbsd-386), const DT_CHR = 2 +pkg syscall (netbsd-386), const DT_DIR = 4 +pkg syscall (netbsd-386), const DT_FIFO = 1 +pkg syscall (netbsd-386), const DT_LNK = 10 +pkg syscall (netbsd-386), const DT_REG = 8 +pkg syscall (netbsd-386), const DT_SOCK = 12 +pkg syscall (netbsd-386), const DT_UNKNOWN = 0 +pkg syscall (netbsd-386), const DT_WHT = 14 +pkg syscall (netbsd-386), const E2BIG = 7 +pkg syscall (netbsd-386), const EACCES = 13 +pkg syscall (netbsd-386), const EADDRINUSE = 48 +pkg syscall (netbsd-386), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-386), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-386), const EAGAIN = 35 +pkg syscall (netbsd-386), const EALREADY = 37 +pkg syscall (netbsd-386), const EAUTH = 80 +pkg syscall (netbsd-386), const EBADF = 9 +pkg syscall (netbsd-386), const EBADMSG = 88 +pkg syscall (netbsd-386), const EBADRPC = 72 +pkg syscall (netbsd-386), const EBUSY = 16 +pkg syscall (netbsd-386), const ECANCELED = 87 +pkg syscall (netbsd-386), const ECHILD = 10 +pkg syscall (netbsd-386), const ECHO = 8 +pkg syscall (netbsd-386), const ECHOCTL = 64 +pkg syscall (netbsd-386), const ECHOE = 2 +pkg syscall (netbsd-386), const ECHOK = 4 +pkg syscall (netbsd-386), const ECHOKE = 1 +pkg syscall (netbsd-386), const ECHONL = 16 +pkg syscall (netbsd-386), const ECHOPRT = 32 +pkg syscall (netbsd-386), const ECONNABORTED = 53 +pkg syscall (netbsd-386), const ECONNREFUSED = 61 +pkg syscall (netbsd-386), const ECONNRESET = 54 +pkg syscall (netbsd-386), const EDEADLK = 11 +pkg syscall (netbsd-386), const EDESTADDRREQ = 39 +pkg syscall (netbsd-386), const EDOM = 33 +pkg syscall (netbsd-386), const EDQUOT = 69 +pkg syscall (netbsd-386), const EEXIST = 17 +pkg syscall (netbsd-386), const EFAULT = 14 +pkg syscall (netbsd-386), const EFBIG = 27 +pkg syscall (netbsd-386), const EFTYPE = 79 +pkg syscall (netbsd-386), const EHOSTDOWN = 64 +pkg syscall (netbsd-386), const EHOSTUNREACH = 65 +pkg syscall (netbsd-386), const EIDRM = 82 +pkg syscall (netbsd-386), const EILSEQ = 85 +pkg syscall (netbsd-386), const EINPROGRESS = 36 +pkg syscall (netbsd-386), const EINTR = 4 +pkg syscall (netbsd-386), const EINVAL = 22 +pkg syscall (netbsd-386), const EIO = 5 +pkg syscall (netbsd-386), const EISCONN = 56 +pkg syscall (netbsd-386), const EISDIR = 21 +pkg syscall (netbsd-386), const ELAST = 96 +pkg syscall (netbsd-386), const ELOOP = 62 +pkg syscall (netbsd-386), const EMFILE = 24 +pkg syscall (netbsd-386), const EMLINK = 31 +pkg syscall (netbsd-386), const EMSGSIZE = 40 +pkg syscall (netbsd-386), const EMULTIHOP = 94 +pkg syscall (netbsd-386), const EMUL_LINUX = 1 +pkg syscall (netbsd-386), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-386), const EMUL_MAXID = 6 +pkg syscall (netbsd-386), const ENAMETOOLONG = 63 +pkg syscall (netbsd-386), const ENEEDAUTH = 81 +pkg syscall (netbsd-386), const ENETDOWN = 50 +pkg syscall (netbsd-386), const ENETRESET = 52 +pkg syscall (netbsd-386), const ENETUNREACH = 51 +pkg syscall (netbsd-386), const ENFILE = 23 +pkg syscall (netbsd-386), const ENOATTR = 93 +pkg syscall (netbsd-386), const ENOBUFS = 55 +pkg syscall (netbsd-386), const ENODATA = 89 +pkg syscall (netbsd-386), const ENODEV = 19 +pkg syscall (netbsd-386), const ENOEXEC = 8 +pkg syscall (netbsd-386), const ENOLCK = 77 +pkg syscall (netbsd-386), const ENOLINK = 95 +pkg syscall (netbsd-386), const ENOMEM = 12 +pkg syscall (netbsd-386), const ENOMSG = 83 +pkg syscall (netbsd-386), const ENOPROTOOPT = 42 +pkg syscall (netbsd-386), const ENOSPC = 28 +pkg syscall (netbsd-386), const ENOSR = 90 +pkg syscall (netbsd-386), const ENOSTR = 91 +pkg syscall (netbsd-386), const ENOSYS = 78 +pkg syscall (netbsd-386), const ENOTBLK = 15 +pkg syscall (netbsd-386), const ENOTCONN = 57 +pkg syscall (netbsd-386), const ENOTDIR = 20 +pkg syscall (netbsd-386), const ENOTEMPTY = 66 +pkg syscall (netbsd-386), const ENOTSOCK = 38 +pkg syscall (netbsd-386), const ENOTSUP = 86 +pkg syscall (netbsd-386), const ENOTTY = 25 +pkg syscall (netbsd-386), const ENXIO = 6 +pkg syscall (netbsd-386), const EN_SW_CTL_INF = 4096 +pkg syscall (netbsd-386), const EN_SW_CTL_PREC = 768 +pkg syscall (netbsd-386), const EN_SW_CTL_ROUND = 3072 +pkg syscall (netbsd-386), const EN_SW_DATACHAIN = 128 +pkg syscall (netbsd-386), const EN_SW_DENORM = 2 +pkg syscall (netbsd-386), const EN_SW_INVOP = 1 +pkg syscall (netbsd-386), const EN_SW_OVERFLOW = 8 +pkg syscall (netbsd-386), const EN_SW_PRECLOSS = 32 +pkg syscall (netbsd-386), const EN_SW_UNDERFLOW = 16 +pkg syscall (netbsd-386), const EN_SW_ZERODIV = 4 +pkg syscall (netbsd-386), const EOPNOTSUPP = 45 +pkg syscall (netbsd-386), const EOVERFLOW = 84 +pkg syscall (netbsd-386), const EPERM = 1 +pkg syscall (netbsd-386), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-386), const EPIPE = 32 +pkg syscall (netbsd-386), const EPROCLIM = 67 +pkg syscall (netbsd-386), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-386), const EPROGMISMATCH = 75 +pkg syscall (netbsd-386), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-386), const EPROTO = 96 +pkg syscall (netbsd-386), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-386), const EPROTOTYPE = 41 +pkg syscall (netbsd-386), const ERANGE = 34 +pkg syscall (netbsd-386), const EREMOTE = 71 +pkg syscall (netbsd-386), const EROFS = 30 +pkg syscall (netbsd-386), const ERPCMISMATCH = 73 +pkg syscall (netbsd-386), const ESHUTDOWN = 58 +pkg syscall (netbsd-386), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-386), const ESPIPE = 29 +pkg syscall (netbsd-386), const ESRCH = 3 +pkg syscall (netbsd-386), const ESTALE = 70 +pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-386), const ETHERMIN = 46 +pkg syscall (netbsd-386), const ETHERMTU = 1500 +pkg syscall (netbsd-386), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-386), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-386), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-386), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-386), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-386), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-386), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-386), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-386), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-386), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-386), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-386), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-386), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-386), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-386), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-386), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-386), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-386), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-386), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-386), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-386), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-386), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-386), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-386), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-386), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-386), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-386), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-386), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-386), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-386), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-386), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-386), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-386), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-386), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-386), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-386), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-386), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-386), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-386), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-386), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-386), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-386), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-386), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-386), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-386), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-386), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-386), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-386), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-386), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-386), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-386), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-386), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-386), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-386), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-386), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-386), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-386), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-386), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-386), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-386), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-386), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-386), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-386), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-386), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-386), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-386), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-386), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-386), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-386), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-386), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-386), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-386), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-386), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-386), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-386), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-386), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-386), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-386), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-386), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-386), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-386), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-386), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-386), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-386), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-386), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-386), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-386), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-386), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-386), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-386), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-386), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-386), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-386), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-386), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-386), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-386), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-386), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-386), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-386), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-386), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-386), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-386), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-386), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-386), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-386), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-386), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-386), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-386), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-386), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-386), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-386), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-386), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-386), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-386), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-386), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-386), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-386), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-386), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-386), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-386), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-386), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-386), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-386), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-386), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-386), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-386), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-386), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-386), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-386), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-386), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-386), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-386), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-386), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-386), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-386), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-386), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-386), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-386), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-386), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-386), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-386), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-386), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-386), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-386), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-386), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-386), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-386), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-386), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-386), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-386), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-386), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-386), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-386), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-386), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-386), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-386), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-386), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-386), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-386), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-386), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-386), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-386), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-386), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-386), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-386), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-386), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-386), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-386), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-386), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-386), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-386), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-386), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-386), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-386), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-386), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-386), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-386), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-386), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-386), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-386), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-386), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-386), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-386), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-386), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-386), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-386), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-386), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-386), const ETIME = 92 +pkg syscall (netbsd-386), const ETIMEDOUT = 60 +pkg syscall (netbsd-386), const ETOOMANYREFS = 59 +pkg syscall (netbsd-386), const ETXTBSY = 26 +pkg syscall (netbsd-386), const EUSERS = 68 +pkg syscall (netbsd-386), const EVFILT_AIO = 2 +pkg syscall (netbsd-386), const EVFILT_PROC = 4 +pkg syscall (netbsd-386), const EVFILT_READ = 0 +pkg syscall (netbsd-386), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-386), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-386), const EVFILT_TIMER = 6 +pkg syscall (netbsd-386), const EVFILT_VNODE = 3 +pkg syscall (netbsd-386), const EVFILT_WRITE = 1 +pkg syscall (netbsd-386), const EV_ADD = 1 +pkg syscall (netbsd-386), const EV_CLEAR = 32 +pkg syscall (netbsd-386), const EV_DELETE = 2 +pkg syscall (netbsd-386), const EV_DISABLE = 8 +pkg syscall (netbsd-386), const EV_ENABLE = 4 +pkg syscall (netbsd-386), const EV_EOF = 32768 +pkg syscall (netbsd-386), const EV_ERROR = 16384 +pkg syscall (netbsd-386), const EV_FLAG1 = 8192 +pkg syscall (netbsd-386), const EV_ONESHOT = 16 +pkg syscall (netbsd-386), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-386), const EWOULDBLOCK = 35 +pkg syscall (netbsd-386), const EXDEV = 18 +pkg syscall (netbsd-386), const EXTA = 19200 +pkg syscall (netbsd-386), const EXTB = 38400 +pkg syscall (netbsd-386), const EXTPROC = 2048 +pkg syscall (netbsd-386), const FD_CLOEXEC = 1 +pkg syscall (netbsd-386), const FD_SETSIZE = 256 +pkg syscall (netbsd-386), const FLUSHO = 8388608 +pkg syscall (netbsd-386), const F_CLOSEM = 10 +pkg syscall (netbsd-386), const F_DUPFD = 0 +pkg syscall (netbsd-386), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-386), const F_FSCTL = -2147483648 +pkg syscall (netbsd-386), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-386), const F_FSIN = 268435456 +pkg syscall (netbsd-386), const F_FSINOUT = 805306368 +pkg syscall (netbsd-386), const F_FSOUT = 536870912 +pkg syscall (netbsd-386), const F_FSPRIV = 32768 +pkg syscall (netbsd-386), const F_FSVOID = 1073741824 +pkg syscall (netbsd-386), const F_GETFD = 1 +pkg syscall (netbsd-386), const F_GETFL = 3 +pkg syscall (netbsd-386), const F_GETLK = 7 +pkg syscall (netbsd-386), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-386), const F_GETOWN = 5 +pkg syscall (netbsd-386), const F_MAXFD = 11 +pkg syscall (netbsd-386), const F_OK = 0 +pkg syscall (netbsd-386), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-386), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-386), const F_RDLCK = 1 +pkg syscall (netbsd-386), const F_SETFD = 2 +pkg syscall (netbsd-386), const F_SETFL = 4 +pkg syscall (netbsd-386), const F_SETLK = 8 +pkg syscall (netbsd-386), const F_SETLKW = 9 +pkg syscall (netbsd-386), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-386), const F_SETOWN = 6 +pkg syscall (netbsd-386), const F_UNLCK = 2 +pkg syscall (netbsd-386), const F_WRLCK = 3 +pkg syscall (netbsd-386), const HUPCL = 16384 +pkg syscall (netbsd-386), const ICANON = 256 +pkg syscall (netbsd-386), const ICRNL = 256 +pkg syscall (netbsd-386), const IEXTEN = 1024 +pkg syscall (netbsd-386), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-386), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-386), const IFA_ROUTE = 1 +pkg syscall (netbsd-386), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-386), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-386), const IFF_DEBUG = 4 +pkg syscall (netbsd-386), const IFF_LINK0 = 4096 +pkg syscall (netbsd-386), const IFF_LINK1 = 8192 +pkg syscall (netbsd-386), const IFF_LINK2 = 16384 +pkg syscall (netbsd-386), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-386), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-386), const IFF_NOARP = 128 +pkg syscall (netbsd-386), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-386), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-386), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-386), const IFF_PROMISC = 256 +pkg syscall (netbsd-386), const IFF_RUNNING = 64 +pkg syscall (netbsd-386), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-386), const IFNAMSIZ = 16 +pkg syscall (netbsd-386), const IFT_1822 = 2 +pkg syscall (netbsd-386), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-386), const IFT_AAL2 = 187 +pkg syscall (netbsd-386), const IFT_AAL5 = 49 +pkg syscall (netbsd-386), const IFT_ADSL = 94 +pkg syscall (netbsd-386), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-386), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-386), const IFT_ARAP = 88 +pkg syscall (netbsd-386), const IFT_ARCNET = 35 +pkg syscall (netbsd-386), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-386), const IFT_ASYNC = 84 +pkg syscall (netbsd-386), const IFT_ATM = 37 +pkg syscall (netbsd-386), const IFT_ATMDXI = 105 +pkg syscall (netbsd-386), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-386), const IFT_ATMIMA = 107 +pkg syscall (netbsd-386), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-386), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-386), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-386), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-386), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-386), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-386), const IFT_BRIDGE = 209 +pkg syscall (netbsd-386), const IFT_BSC = 83 +pkg syscall (netbsd-386), const IFT_CARP = 248 +pkg syscall (netbsd-386), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-386), const IFT_CEPT = 19 +pkg syscall (netbsd-386), const IFT_CES = 133 +pkg syscall (netbsd-386), const IFT_CHANNEL = 70 +pkg syscall (netbsd-386), const IFT_CNR = 85 +pkg syscall (netbsd-386), const IFT_COFFEE = 132 +pkg syscall (netbsd-386), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-386), const IFT_DCN = 141 +pkg syscall (netbsd-386), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-386), const IFT_DLSW = 74 +pkg syscall (netbsd-386), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-386), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-386), const IFT_DS0 = 81 +pkg syscall (netbsd-386), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-386), const IFT_DS1FDL = 170 +pkg syscall (netbsd-386), const IFT_DS3 = 30 +pkg syscall (netbsd-386), const IFT_DTM = 140 +pkg syscall (netbsd-386), const IFT_DVBASILN = 172 +pkg syscall (netbsd-386), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-386), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-386), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-386), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-386), const IFT_ECONET = 206 +pkg syscall (netbsd-386), const IFT_EON = 25 +pkg syscall (netbsd-386), const IFT_EPLRS = 87 +pkg syscall (netbsd-386), const IFT_ESCON = 73 +pkg syscall (netbsd-386), const IFT_ETHER = 6 +pkg syscall (netbsd-386), const IFT_FAITH = 242 +pkg syscall (netbsd-386), const IFT_FAST = 125 +pkg syscall (netbsd-386), const IFT_FASTETHER = 62 +pkg syscall (netbsd-386), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-386), const IFT_FDDI = 15 +pkg syscall (netbsd-386), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-386), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-386), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-386), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-386), const IFT_FRELAY = 32 +pkg syscall (netbsd-386), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-386), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-386), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-386), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-386), const IFT_G703AT64K = 66 +pkg syscall (netbsd-386), const IFT_GIF = 240 +pkg syscall (netbsd-386), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-386), const IFT_GR303IDT = 178 +pkg syscall (netbsd-386), const IFT_GR303RDT = 177 +pkg syscall (netbsd-386), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-386), const IFT_H323PROXY = 165 +pkg syscall (netbsd-386), const IFT_HDH1822 = 3 +pkg syscall (netbsd-386), const IFT_HDLC = 118 +pkg syscall (netbsd-386), const IFT_HDSL2 = 168 +pkg syscall (netbsd-386), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-386), const IFT_HIPPI = 47 +pkg syscall (netbsd-386), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-386), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-386), const IFT_HSSI = 46 +pkg syscall (netbsd-386), const IFT_HY = 14 +pkg syscall (netbsd-386), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-386), const IFT_IDSL = 154 +pkg syscall (netbsd-386), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-386), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-386), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-386), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-386), const IFT_IFGSN = 145 +pkg syscall (netbsd-386), const IFT_IMT = 190 +pkg syscall (netbsd-386), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-386), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-386), const IFT_IP = 126 +pkg syscall (netbsd-386), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-386), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-386), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-386), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-386), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-386), const IFT_ISDN = 63 +pkg syscall (netbsd-386), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-386), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-386), const IFT_ISDNS = 75 +pkg syscall (netbsd-386), const IFT_ISDNU = 76 +pkg syscall (netbsd-386), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-386), const IFT_ISO88023 = 7 +pkg syscall (netbsd-386), const IFT_ISO88024 = 8 +pkg syscall (netbsd-386), const IFT_ISO88025 = 9 +pkg syscall (netbsd-386), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-386), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-386), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-386), const IFT_ISO88026 = 10 +pkg syscall (netbsd-386), const IFT_ISUP = 179 +pkg syscall (netbsd-386), const IFT_L2VLAN = 135 +pkg syscall (netbsd-386), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-386), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-386), const IFT_LAPB = 16 +pkg syscall (netbsd-386), const IFT_LAPD = 77 +pkg syscall (netbsd-386), const IFT_LAPF = 119 +pkg syscall (netbsd-386), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-386), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-386), const IFT_LOOP = 24 +pkg syscall (netbsd-386), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-386), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-386), const IFT_MIOX25 = 38 +pkg syscall (netbsd-386), const IFT_MODEM = 48 +pkg syscall (netbsd-386), const IFT_MPC = 113 +pkg syscall (netbsd-386), const IFT_MPLS = 166 +pkg syscall (netbsd-386), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-386), const IFT_MSDSL = 143 +pkg syscall (netbsd-386), const IFT_MVL = 191 +pkg syscall (netbsd-386), const IFT_MYRINET = 99 +pkg syscall (netbsd-386), const IFT_NFAS = 175 +pkg syscall (netbsd-386), const IFT_NSIP = 27 +pkg syscall (netbsd-386), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-386), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-386), const IFT_OTHER = 1 +pkg syscall (netbsd-386), const IFT_P10 = 12 +pkg syscall (netbsd-386), const IFT_P80 = 13 +pkg syscall (netbsd-386), const IFT_PARA = 34 +pkg syscall (netbsd-386), const IFT_PFLOG = 245 +pkg syscall (netbsd-386), const IFT_PFSYNC = 246 +pkg syscall (netbsd-386), const IFT_PLC = 174 +pkg syscall (netbsd-386), const IFT_PON155 = 207 +pkg syscall (netbsd-386), const IFT_PON622 = 208 +pkg syscall (netbsd-386), const IFT_POS = 171 +pkg syscall (netbsd-386), const IFT_PPP = 23 +pkg syscall (netbsd-386), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-386), const IFT_PROPATM = 197 +pkg syscall (netbsd-386), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-386), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-386), const IFT_PROPMUX = 54 +pkg syscall (netbsd-386), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-386), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-386), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-386), const IFT_PVC = 241 +pkg syscall (netbsd-386), const IFT_Q2931 = 201 +pkg syscall (netbsd-386), const IFT_QLLC = 68 +pkg syscall (netbsd-386), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-386), const IFT_RADSL = 95 +pkg syscall (netbsd-386), const IFT_REACHDSL = 192 +pkg syscall (netbsd-386), const IFT_RFC1483 = 159 +pkg syscall (netbsd-386), const IFT_RS232 = 33 +pkg syscall (netbsd-386), const IFT_RSRB = 79 +pkg syscall (netbsd-386), const IFT_SDLC = 17 +pkg syscall (netbsd-386), const IFT_SDSL = 96 +pkg syscall (netbsd-386), const IFT_SHDSL = 169 +pkg syscall (netbsd-386), const IFT_SIP = 31 +pkg syscall (netbsd-386), const IFT_SIPSIG = 204 +pkg syscall (netbsd-386), const IFT_SIPTG = 203 +pkg syscall (netbsd-386), const IFT_SLIP = 28 +pkg syscall (netbsd-386), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-386), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-386), const IFT_SONET = 39 +pkg syscall (netbsd-386), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-386), const IFT_SONETPATH = 50 +pkg syscall (netbsd-386), const IFT_SONETVT = 51 +pkg syscall (netbsd-386), const IFT_SRP = 151 +pkg syscall (netbsd-386), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-386), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-386), const IFT_STARLAN = 11 +pkg syscall (netbsd-386), const IFT_STF = 215 +pkg syscall (netbsd-386), const IFT_T1 = 18 +pkg syscall (netbsd-386), const IFT_TDLC = 116 +pkg syscall (netbsd-386), const IFT_TELINK = 200 +pkg syscall (netbsd-386), const IFT_TERMPAD = 91 +pkg syscall (netbsd-386), const IFT_TR008 = 176 +pkg syscall (netbsd-386), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-386), const IFT_TUNNEL = 131 +pkg syscall (netbsd-386), const IFT_ULTRA = 29 +pkg syscall (netbsd-386), const IFT_USB = 160 +pkg syscall (netbsd-386), const IFT_V11 = 64 +pkg syscall (netbsd-386), const IFT_V35 = 45 +pkg syscall (netbsd-386), const IFT_V36 = 65 +pkg syscall (netbsd-386), const IFT_V37 = 120 +pkg syscall (netbsd-386), const IFT_VDSL = 97 +pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-386), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-386), const IFT_VOICEDID = 213 +pkg syscall (netbsd-386), const IFT_VOICEEM = 100 +pkg syscall (netbsd-386), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-386), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-386), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-386), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-386), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-386), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-386), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-386), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-386), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-386), const IFT_X213 = 93 +pkg syscall (netbsd-386), const IFT_X25 = 5 +pkg syscall (netbsd-386), const IFT_X25DDN = 4 +pkg syscall (netbsd-386), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-386), const IFT_X25MLP = 121 +pkg syscall (netbsd-386), const IFT_X25PLE = 40 +pkg syscall (netbsd-386), const IFT_XETHER = 26 +pkg syscall (netbsd-386), const IGNBRK = 1 +pkg syscall (netbsd-386), const IGNCR = 128 +pkg syscall (netbsd-386), const IGNPAR = 4 +pkg syscall (netbsd-386), const IMAXBEL = 8192 +pkg syscall (netbsd-386), const INLCR = 64 +pkg syscall (netbsd-386), const INPCK = 16 +pkg syscall (netbsd-386), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-386), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-386), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-386), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-386), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-386), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-386), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-386), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-386), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-386), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-386), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-386), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-386), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-386), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-386), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-386), const IPPROTO_AH = 51 +pkg syscall (netbsd-386), const IPPROTO_CARP = 112 +pkg syscall (netbsd-386), const IPPROTO_DONE = 257 +pkg syscall (netbsd-386), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-386), const IPPROTO_EGP = 8 +pkg syscall (netbsd-386), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-386), const IPPROTO_EON = 80 +pkg syscall (netbsd-386), const IPPROTO_ESP = 50 +pkg syscall (netbsd-386), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-386), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-386), const IPPROTO_GGP = 3 +pkg syscall (netbsd-386), const IPPROTO_GRE = 47 +pkg syscall (netbsd-386), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-386), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-386), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-386), const IPPROTO_IDP = 22 +pkg syscall (netbsd-386), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-386), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-386), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-386), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-386), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-386), const IPPROTO_MAX = 256 +pkg syscall (netbsd-386), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-386), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-386), const IPPROTO_NONE = 59 +pkg syscall (netbsd-386), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-386), const IPPROTO_PIM = 103 +pkg syscall (netbsd-386), const IPPROTO_PUP = 12 +pkg syscall (netbsd-386), const IPPROTO_RAW = 255 +pkg syscall (netbsd-386), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-386), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-386), const IPPROTO_TP = 29 +pkg syscall (netbsd-386), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-386), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-386), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-386), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-386), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-386), const IPV6_FAITH = 29 +pkg syscall (netbsd-386), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-386), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-386), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-386), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-386), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-386), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-386), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-386), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-386), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-386), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-386), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-386), const IPV6_MMTU = 1280 +pkg syscall (netbsd-386), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-386), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-386), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-386), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-386), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-386), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-386), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-386), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-386), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-386), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-386), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-386), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-386), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-386), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-386), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-386), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-386), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-386), const IPV6_RTHDR = 51 +pkg syscall (netbsd-386), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-386), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-386), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-386), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-386), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-386), const IPV6_TCLASS = 61 +pkg syscall (netbsd-386), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-386), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-386), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-386), const IPV6_VERSION = 96 +pkg syscall (netbsd-386), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-386), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-386), const IP_DF = 16384 +pkg syscall (netbsd-386), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-386), const IP_EF = 32768 +pkg syscall (netbsd-386), const IP_ERRORMTU = 21 +pkg syscall (netbsd-386), const IP_HDRINCL = 2 +pkg syscall (netbsd-386), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-386), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-386), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-386), const IP_MF = 8192 +pkg syscall (netbsd-386), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-386), const IP_MINTTL = 24 +pkg syscall (netbsd-386), const IP_MSS = 576 +pkg syscall (netbsd-386), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-386), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-386), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-386), const IP_OFFMASK = 8191 +pkg syscall (netbsd-386), const IP_OPTIONS = 1 +pkg syscall (netbsd-386), const IP_PORTRANGE = 19 +pkg syscall (netbsd-386), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-386), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-386), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-386), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-386), const IP_RECVIF = 20 +pkg syscall (netbsd-386), const IP_RECVOPTS = 5 +pkg syscall (netbsd-386), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-386), const IP_RECVTTL = 23 +pkg syscall (netbsd-386), const IP_RETOPTS = 8 +pkg syscall (netbsd-386), const IP_RF = 32768 +pkg syscall (netbsd-386), const IP_TOS = 3 +pkg syscall (netbsd-386), const IP_TTL = 4 +pkg syscall (netbsd-386), const ISIG = 128 +pkg syscall (netbsd-386), const ISTRIP = 32 +pkg syscall (netbsd-386), const IXANY = 2048 +pkg syscall (netbsd-386), const IXOFF = 1024 +pkg syscall (netbsd-386), const IXON = 512 +pkg syscall (netbsd-386), const ImplementsGetwd = false +pkg syscall (netbsd-386), const LOCK_EX = 2 +pkg syscall (netbsd-386), const LOCK_NB = 4 +pkg syscall (netbsd-386), const LOCK_SH = 1 +pkg syscall (netbsd-386), const LOCK_UN = 8 +pkg syscall (netbsd-386), const MSG_BCAST = 256 +pkg syscall (netbsd-386), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-386), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-386), const MSG_CTRUNC = 32 +pkg syscall (netbsd-386), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-386), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-386), const MSG_EOR = 8 +pkg syscall (netbsd-386), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-386), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-386), const MSG_MCAST = 512 +pkg syscall (netbsd-386), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-386), const MSG_NBIO = 4096 +pkg syscall (netbsd-386), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-386), const MSG_OOB = 1 +pkg syscall (netbsd-386), const MSG_PEEK = 2 +pkg syscall (netbsd-386), const MSG_TRUNC = 16 +pkg syscall (netbsd-386), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-386), const MSG_WAITALL = 64 +pkg syscall (netbsd-386), const NAME_MAX = 511 +pkg syscall (netbsd-386), const NET_RT_DUMP = 1 +pkg syscall (netbsd-386), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-386), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-386), const NET_RT_MAXID = 6 +pkg syscall (netbsd-386), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-386), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-386), const NOFLSH = 2147483648 +pkg syscall (netbsd-386), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-386), const NOTE_CHILD = 4 +pkg syscall (netbsd-386), const NOTE_DELETE = 1 +pkg syscall (netbsd-386), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-386), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-386), const NOTE_EXTEND = 4 +pkg syscall (netbsd-386), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-386), const NOTE_LINK = 16 +pkg syscall (netbsd-386), const NOTE_LOWAT = 1 +pkg syscall (netbsd-386), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-386), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-386), const NOTE_RENAME = 32 +pkg syscall (netbsd-386), const NOTE_REVOKE = 64 +pkg syscall (netbsd-386), const NOTE_TRACK = 1 +pkg syscall (netbsd-386), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-386), const NOTE_WRITE = 2 +pkg syscall (netbsd-386), const OCRNL = 16 +pkg syscall (netbsd-386), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-386), const ONLCR = 2 +pkg syscall (netbsd-386), const ONLRET = 64 +pkg syscall (netbsd-386), const ONOCR = 32 +pkg syscall (netbsd-386), const ONOEOT = 8 +pkg syscall (netbsd-386), const OPOST = 1 +pkg syscall (netbsd-386), const O_ACCMODE = 3 +pkg syscall (netbsd-386), const O_ALT_IO = 262144 +pkg syscall (netbsd-386), const O_APPEND = 8 +pkg syscall (netbsd-386), const O_ASYNC = 64 +pkg syscall (netbsd-386), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-386), const O_CREAT = 512 +pkg syscall (netbsd-386), const O_DIRECT = 524288 +pkg syscall (netbsd-386), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-386), const O_DSYNC = 65536 +pkg syscall (netbsd-386), const O_EXCL = 2048 +pkg syscall (netbsd-386), const O_EXLOCK = 32 +pkg syscall (netbsd-386), const O_FSYNC = 128 +pkg syscall (netbsd-386), const O_NDELAY = 4 +pkg syscall (netbsd-386), const O_NOCTTY = 32768 +pkg syscall (netbsd-386), const O_NOFOLLOW = 256 +pkg syscall (netbsd-386), const O_NONBLOCK = 4 +pkg syscall (netbsd-386), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-386), const O_RSYNC = 131072 +pkg syscall (netbsd-386), const O_SHLOCK = 16 +pkg syscall (netbsd-386), const O_SYNC = 128 +pkg syscall (netbsd-386), const O_TRUNC = 1024 +pkg syscall (netbsd-386), const PARENB = 4096 +pkg syscall (netbsd-386), const PARMRK = 8 +pkg syscall (netbsd-386), const PARODD = 8192 +pkg syscall (netbsd-386), const PENDIN = 536870912 +pkg syscall (netbsd-386), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-386), const PTRACE_CONT = 7 +pkg syscall (netbsd-386), const PTRACE_KILL = 8 +pkg syscall (netbsd-386), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-386), const RLIMIT_AS = 10 +pkg syscall (netbsd-386), const RLIMIT_CORE = 4 +pkg syscall (netbsd-386), const RLIMIT_CPU = 0 +pkg syscall (netbsd-386), const RLIMIT_DATA = 2 +pkg syscall (netbsd-386), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-386), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-386), const RLIMIT_STACK = 3 +pkg syscall (netbsd-386), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-386), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-386), const RTAX_BRD = 7 +pkg syscall (netbsd-386), const RTAX_DST = 0 +pkg syscall (netbsd-386), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-386), const RTAX_GENMASK = 3 +pkg syscall (netbsd-386), const RTAX_IFA = 5 +pkg syscall (netbsd-386), const RTAX_IFP = 4 +pkg syscall (netbsd-386), const RTAX_MAX = 9 +pkg syscall (netbsd-386), const RTAX_NETMASK = 2 +pkg syscall (netbsd-386), const RTAX_TAG = 8 +pkg syscall (netbsd-386), const RTA_AUTHOR = 64 +pkg syscall (netbsd-386), const RTA_BRD = 128 +pkg syscall (netbsd-386), const RTA_DST = 1 +pkg syscall (netbsd-386), const RTA_GATEWAY = 2 +pkg syscall (netbsd-386), const RTA_GENMASK = 8 +pkg syscall (netbsd-386), const RTA_IFA = 32 +pkg syscall (netbsd-386), const RTA_IFP = 16 +pkg syscall (netbsd-386), const RTA_NETMASK = 4 +pkg syscall (netbsd-386), const RTA_TAG = 256 +pkg syscall (netbsd-386), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-386), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-386), const RTF_CLONED = 8192 +pkg syscall (netbsd-386), const RTF_CLONING = 256 +pkg syscall (netbsd-386), const RTF_DONE = 64 +pkg syscall (netbsd-386), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-386), const RTF_GATEWAY = 2 +pkg syscall (netbsd-386), const RTF_HOST = 4 +pkg syscall (netbsd-386), const RTF_LLINFO = 1024 +pkg syscall (netbsd-386), const RTF_MASK = 128 +pkg syscall (netbsd-386), const RTF_MODIFIED = 32 +pkg syscall (netbsd-386), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-386), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-386), const RTF_REJECT = 8 +pkg syscall (netbsd-386), const RTF_SRC = 65536 +pkg syscall (netbsd-386), const RTF_STATIC = 2048 +pkg syscall (netbsd-386), const RTF_UP = 1 +pkg syscall (netbsd-386), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-386), const RTM_ADD = 1 +pkg syscall (netbsd-386), const RTM_CHANGE = 3 +pkg syscall (netbsd-386), const RTM_CHGADDR = 21 +pkg syscall (netbsd-386), const RTM_DELADDR = 13 +pkg syscall (netbsd-386), const RTM_DELETE = 2 +pkg syscall (netbsd-386), const RTM_GET = 4 +pkg syscall (netbsd-386), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-386), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-386), const RTM_IFINFO = 20 +pkg syscall (netbsd-386), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-386), const RTM_LOCK = 8 +pkg syscall (netbsd-386), const RTM_LOSING = 5 +pkg syscall (netbsd-386), const RTM_MISS = 7 +pkg syscall (netbsd-386), const RTM_NEWADDR = 12 +pkg syscall (netbsd-386), const RTM_OIFINFO = 15 +pkg syscall (netbsd-386), const RTM_OLDADD = 9 +pkg syscall (netbsd-386), const RTM_OLDDEL = 10 +pkg syscall (netbsd-386), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-386), const RTM_REDIRECT = 6 +pkg syscall (netbsd-386), const RTM_RESOLVE = 11 +pkg syscall (netbsd-386), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-386), const RTM_SETGATE = 18 +pkg syscall (netbsd-386), const RTM_VERSION = 4 +pkg syscall (netbsd-386), const RTV_EXPIRE = 4 +pkg syscall (netbsd-386), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-386), const RTV_MTU = 1 +pkg syscall (netbsd-386), const RTV_RPIPE = 8 +pkg syscall (netbsd-386), const RTV_RTT = 64 +pkg syscall (netbsd-386), const RTV_RTTVAR = 128 +pkg syscall (netbsd-386), const RTV_SPIPE = 16 +pkg syscall (netbsd-386), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-386), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-386), const RUSAGE_SELF = 0 +pkg syscall (netbsd-386), const SCM_CREDS = 4 +pkg syscall (netbsd-386), const SCM_RIGHTS = 1 +pkg syscall (netbsd-386), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-386), const SIGBUS = 10 +pkg syscall (netbsd-386), const SIGCHLD = 20 +pkg syscall (netbsd-386), const SIGCONT = 19 +pkg syscall (netbsd-386), const SIGEMT = 7 +pkg syscall (netbsd-386), const SIGINFO = 29 +pkg syscall (netbsd-386), const SIGIO = 23 +pkg syscall (netbsd-386), const SIGIOT = 6 +pkg syscall (netbsd-386), const SIGPROF = 27 +pkg syscall (netbsd-386), const SIGPWR = 32 +pkg syscall (netbsd-386), const SIGSTOP = 17 +pkg syscall (netbsd-386), const SIGSYS = 12 +pkg syscall (netbsd-386), const SIGTSTP = 18 +pkg syscall (netbsd-386), const SIGTTIN = 21 +pkg syscall (netbsd-386), const SIGTTOU = 22 +pkg syscall (netbsd-386), const SIGURG = 16 +pkg syscall (netbsd-386), const SIGUSR1 = 30 +pkg syscall (netbsd-386), const SIGUSR2 = 31 +pkg syscall (netbsd-386), const SIGVTALRM = 26 +pkg syscall (netbsd-386), const SIGWINCH = 28 +pkg syscall (netbsd-386), const SIGXCPU = 24 +pkg syscall (netbsd-386), const SIGXFSZ = 25 +pkg syscall (netbsd-386), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-386), const SIOCADDRT = 2150658570 +pkg syscall (netbsd-386), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-386), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-386), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-386), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-386), const SIOCDELRT = 2150658571 +pkg syscall (netbsd-386), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-386), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-386), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-386), const SIOCGDRVSPEC = 3223087483 +pkg syscall (netbsd-386), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-386), const SIOCGETSGCNT = 3222566196 +pkg syscall (netbsd-386), const SIOCGETVIFCNT = 3222566195 +pkg syscall (netbsd-386), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-386), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-386), const SIOCGIFADDRPREF = 3230951712 +pkg syscall (netbsd-386), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-386), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-386), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-386), const SIOCGIFCONF = 3221776678 +pkg syscall (netbsd-386), const SIOCGIFDATA = 3230951813 +pkg syscall (netbsd-386), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-386), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-386), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-386), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-386), const SIOCGIFMEDIA = 3223873846 +pkg syscall (netbsd-386), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-386), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-386), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-386), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-386), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-386), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-386), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-386), const SIOCGLINKSTR = 3223087495 +pkg syscall (netbsd-386), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-386), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-386), const SIOCGVH = 3230689667 +pkg syscall (netbsd-386), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-386), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-386), const SIOCIFGCLONERS = 3222038904 +pkg syscall (netbsd-386), const SIOCINITIFADDR = 3225708932 +pkg syscall (netbsd-386), const SIOCSDRVSPEC = 2149345659 +pkg syscall (netbsd-386), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-386), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-386), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-386), const SIOCSIFADDRPREF = 2157209887 +pkg syscall (netbsd-386), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-386), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-386), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-386), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-386), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-386), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-386), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-386), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-386), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-386), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-386), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-386), const SIOCSLINKSTR = 2149345672 +pkg syscall (netbsd-386), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-386), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-386), const SIOCSVH = 3230689666 +pkg syscall (netbsd-386), const SIOCZIFDATA = 3230951814 +pkg syscall (netbsd-386), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-386), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-386), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-386), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-386), const SOCK_RDM = 4 +pkg syscall (netbsd-386), const SOL_SOCKET = 65535 +pkg syscall (netbsd-386), const SOMAXCONN = 128 +pkg syscall (netbsd-386), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-386), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-386), const SO_BROADCAST = 32 +pkg syscall (netbsd-386), const SO_DEBUG = 1 +pkg syscall (netbsd-386), const SO_DONTROUTE = 16 +pkg syscall (netbsd-386), const SO_ERROR = 4103 +pkg syscall (netbsd-386), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-386), const SO_LINGER = 128 +pkg syscall (netbsd-386), const SO_NOHEADER = 4106 +pkg syscall (netbsd-386), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-386), const SO_OOBINLINE = 256 +pkg syscall (netbsd-386), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-386), const SO_RCVBUF = 4098 +pkg syscall (netbsd-386), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-386), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-386), const SO_REUSEADDR = 4 +pkg syscall (netbsd-386), const SO_REUSEPORT = 512 +pkg syscall (netbsd-386), const SO_SNDBUF = 4097 +pkg syscall (netbsd-386), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-386), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-386), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-386), const SO_TYPE = 4104 +pkg syscall (netbsd-386), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-386), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-386), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-386), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-386), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-386), const SYS_ACCEPT = 30 +pkg syscall (netbsd-386), const SYS_ACCESS = 33 +pkg syscall (netbsd-386), const SYS_ACCT = 51 +pkg syscall (netbsd-386), const SYS_ADJTIME = 421 +pkg syscall (netbsd-386), const SYS_BIND = 104 +pkg syscall (netbsd-386), const SYS_BREAK = 17 +pkg syscall (netbsd-386), const SYS_CHDIR = 12 +pkg syscall (netbsd-386), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-386), const SYS_CHMOD = 15 +pkg syscall (netbsd-386), const SYS_CHOWN = 16 +pkg syscall (netbsd-386), const SYS_CHROOT = 61 +pkg syscall (netbsd-386), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-386), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-386), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-386), const SYS_CLOSE = 6 +pkg syscall (netbsd-386), const SYS_CONNECT = 98 +pkg syscall (netbsd-386), const SYS_DUP = 41 +pkg syscall (netbsd-386), const SYS_DUP2 = 90 +pkg syscall (netbsd-386), const SYS_DUP3 = 454 +pkg syscall (netbsd-386), const SYS_EXECVE = 59 +pkg syscall (netbsd-386), const SYS_EXIT = 1 +pkg syscall (netbsd-386), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-386), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-386), const SYS_FCHDIR = 13 +pkg syscall (netbsd-386), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-386), const SYS_FCHMOD = 124 +pkg syscall (netbsd-386), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-386), const SYS_FCHOWN = 123 +pkg syscall (netbsd-386), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-386), const SYS_FCHROOT = 297 +pkg syscall (netbsd-386), const SYS_FCNTL = 92 +pkg syscall (netbsd-386), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-386), const SYS_FEXECVE = 465 +pkg syscall (netbsd-386), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-386), const SYS_FHSTAT = 451 +pkg syscall (netbsd-386), const SYS_FKTRACE = 288 +pkg syscall (netbsd-386), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-386), const SYS_FLOCK = 131 +pkg syscall (netbsd-386), const SYS_FORK = 2 +pkg syscall (netbsd-386), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-386), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-386), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-386), const SYS_FSTAT = 440 +pkg syscall (netbsd-386), const SYS_FSTATAT = 466 +pkg syscall (netbsd-386), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-386), const SYS_FSYNC = 95 +pkg syscall (netbsd-386), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-386), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-386), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-386), const SYS_FUTIMES = 423 +pkg syscall (netbsd-386), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-386), const SYS_GETDENTS = 390 +pkg syscall (netbsd-386), const SYS_GETEGID = 43 +pkg syscall (netbsd-386), const SYS_GETEUID = 25 +pkg syscall (netbsd-386), const SYS_GETFH = 395 +pkg syscall (netbsd-386), const SYS_GETGID = 47 +pkg syscall (netbsd-386), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-386), const SYS_GETITIMER = 426 +pkg syscall (netbsd-386), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-386), const SYS_GETPGID = 207 +pkg syscall (netbsd-386), const SYS_GETPGRP = 81 +pkg syscall (netbsd-386), const SYS_GETPID = 20 +pkg syscall (netbsd-386), const SYS_GETPPID = 39 +pkg syscall (netbsd-386), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-386), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-386), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-386), const SYS_GETSID = 286 +pkg syscall (netbsd-386), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-386), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-386), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-386), const SYS_GETUID = 24 +pkg syscall (netbsd-386), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-386), const SYS_GETXATTR = 378 +pkg syscall (netbsd-386), const SYS_IOCTL = 54 +pkg syscall (netbsd-386), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-386), const SYS_KEVENT = 435 +pkg syscall (netbsd-386), const SYS_KILL = 37 +pkg syscall (netbsd-386), const SYS_KQUEUE = 344 +pkg syscall (netbsd-386), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-386), const SYS_KTRACE = 45 +pkg syscall (netbsd-386), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-386), const SYS_LCHMOD = 274 +pkg syscall (netbsd-386), const SYS_LCHOWN = 275 +pkg syscall (netbsd-386), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-386), const SYS_LINK = 9 +pkg syscall (netbsd-386), const SYS_LINKAT = 457 +pkg syscall (netbsd-386), const SYS_LISTEN = 106 +pkg syscall (netbsd-386), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-386), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-386), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-386), const SYS_LSEEK = 199 +pkg syscall (netbsd-386), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-386), const SYS_LSTAT = 441 +pkg syscall (netbsd-386), const SYS_LUTIMES = 424 +pkg syscall (netbsd-386), const SYS_MADVISE = 75 +pkg syscall (netbsd-386), const SYS_MINCORE = 78 +pkg syscall (netbsd-386), const SYS_MINHERIT = 273 +pkg syscall (netbsd-386), const SYS_MKDIR = 136 +pkg syscall (netbsd-386), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-386), const SYS_MKFIFO = 132 +pkg syscall (netbsd-386), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-386), const SYS_MKNOD = 450 +pkg syscall (netbsd-386), const SYS_MKNODAT = 460 +pkg syscall (netbsd-386), const SYS_MLOCK = 203 +pkg syscall (netbsd-386), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-386), const SYS_MMAP = 197 +pkg syscall (netbsd-386), const SYS_MODCTL = 246 +pkg syscall (netbsd-386), const SYS_MOUNT = 410 +pkg syscall (netbsd-386), const SYS_MPROTECT = 74 +pkg syscall (netbsd-386), const SYS_MREMAP = 411 +pkg syscall (netbsd-386), const SYS_MSGCTL = 444 +pkg syscall (netbsd-386), const SYS_MSGGET = 225 +pkg syscall (netbsd-386), const SYS_MSGRCV = 227 +pkg syscall (netbsd-386), const SYS_MSGSND = 226 +pkg syscall (netbsd-386), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-386), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-386), const SYS_MUNMAP = 73 +pkg syscall (netbsd-386), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-386), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-386), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-386), const SYS_OPEN = 5 +pkg syscall (netbsd-386), const SYS_OPENAT = 468 +pkg syscall (netbsd-386), const SYS_PACCEPT = 456 +pkg syscall (netbsd-386), const SYS_PATHCONF = 191 +pkg syscall (netbsd-386), const SYS_PIPE = 42 +pkg syscall (netbsd-386), const SYS_PIPE2 = 453 +pkg syscall (netbsd-386), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-386), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-386), const SYS_POLL = 209 +pkg syscall (netbsd-386), const SYS_POLLTS = 437 +pkg syscall (netbsd-386), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-386), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-386), const SYS_PREAD = 173 +pkg syscall (netbsd-386), const SYS_PREADV = 289 +pkg syscall (netbsd-386), const SYS_PROFIL = 44 +pkg syscall (netbsd-386), const SYS_PSELECT = 436 +pkg syscall (netbsd-386), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-386), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-386), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-386), const SYS_PTRACE = 26 +pkg syscall (netbsd-386), const SYS_PWRITE = 174 +pkg syscall (netbsd-386), const SYS_PWRITEV = 290 +pkg syscall (netbsd-386), const SYS_RASCTL = 343 +pkg syscall (netbsd-386), const SYS_READ = 3 +pkg syscall (netbsd-386), const SYS_READLINK = 58 +pkg syscall (netbsd-386), const SYS_READLINKAT = 469 +pkg syscall (netbsd-386), const SYS_READV = 120 +pkg syscall (netbsd-386), const SYS_REBOOT = 208 +pkg syscall (netbsd-386), const SYS_RECVFROM = 29 +pkg syscall (netbsd-386), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-386), const SYS_RECVMSG = 27 +pkg syscall (netbsd-386), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-386), const SYS_RENAME = 128 +pkg syscall (netbsd-386), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-386), const SYS_REVOKE = 56 +pkg syscall (netbsd-386), const SYS_RMDIR = 137 +pkg syscall (netbsd-386), const SYS_SBRK = 69 +pkg syscall (netbsd-386), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-386), const SYS_SELECT = 417 +pkg syscall (netbsd-386), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-386), const SYS_SEMGET = 221 +pkg syscall (netbsd-386), const SYS_SEMOP = 222 +pkg syscall (netbsd-386), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-386), const SYS_SENDMSG = 28 +pkg syscall (netbsd-386), const SYS_SENDTO = 133 +pkg syscall (netbsd-386), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-386), const SYS_SETEGID = 182 +pkg syscall (netbsd-386), const SYS_SETEUID = 183 +pkg syscall (netbsd-386), const SYS_SETGID = 181 +pkg syscall (netbsd-386), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-386), const SYS_SETITIMER = 425 +pkg syscall (netbsd-386), const SYS_SETPGID = 82 +pkg syscall (netbsd-386), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-386), const SYS_SETREGID = 127 +pkg syscall (netbsd-386), const SYS_SETREUID = 126 +pkg syscall (netbsd-386), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-386), const SYS_SETSID = 147 +pkg syscall (netbsd-386), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-386), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-386), const SYS_SETUID = 23 +pkg syscall (netbsd-386), const SYS_SETXATTR = 375 +pkg syscall (netbsd-386), const SYS_SHMAT = 228 +pkg syscall (netbsd-386), const SYS_SHMCTL = 443 +pkg syscall (netbsd-386), const SYS_SHMDT = 230 +pkg syscall (netbsd-386), const SYS_SHMGET = 231 +pkg syscall (netbsd-386), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-386), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-386), const SYS_SOCKET = 394 +pkg syscall (netbsd-386), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-386), const SYS_SSTK = 70 +pkg syscall (netbsd-386), const SYS_STAT = 439 +pkg syscall (netbsd-386), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-386), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-386), const SYS_SYMLINK = 57 +pkg syscall (netbsd-386), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-386), const SYS_SYNC = 36 +pkg syscall (netbsd-386), const SYS_SYSARCH = 165 +pkg syscall (netbsd-386), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-386), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-386), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-386), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-386), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-386), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-386), const SYS_UMASK = 60 +pkg syscall (netbsd-386), const SYS_UNDELETE = 205 +pkg syscall (netbsd-386), const SYS_UNLINK = 10 +pkg syscall (netbsd-386), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-386), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-386), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-386), const SYS_UTIMES = 420 +pkg syscall (netbsd-386), const SYS_UTRACE = 306 +pkg syscall (netbsd-386), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-386), const SYS_VADVISE = 72 +pkg syscall (netbsd-386), const SYS_VFORK = 66 +pkg syscall (netbsd-386), const SYS_WAIT4 = 449 +pkg syscall (netbsd-386), const SYS_WRITE = 4 +pkg syscall (netbsd-386), const SYS_WRITEV = 121 +pkg syscall (netbsd-386), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-386), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-386), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-386), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-386), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-386), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-386), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-386), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-386), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-386), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-386), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-386), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-386), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-386), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-386), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-386), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-386), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-386), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-386), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-386), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-386), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-386), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-386), const SYS___CLONE = 287 +pkg syscall (netbsd-386), const SYS___GETCWD = 296 +pkg syscall (netbsd-386), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-386), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-386), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-386), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-386), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-386), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-386), const SYS___SEMCTL = 442 +pkg syscall (netbsd-386), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-386), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-386), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-386), const SYS___SYSCTL = 202 +pkg syscall (netbsd-386), const S_ARCH1 = 65536 +pkg syscall (netbsd-386), const S_ARCH2 = 131072 +pkg syscall (netbsd-386), const S_BLKSIZE = 512 +pkg syscall (netbsd-386), const S_IEXEC = 64 +pkg syscall (netbsd-386), const S_IFMT = 61440 +pkg syscall (netbsd-386), const S_IFWHT = 57344 +pkg syscall (netbsd-386), const S_IREAD = 256 +pkg syscall (netbsd-386), const S_IRGRP = 32 +pkg syscall (netbsd-386), const S_IROTH = 4 +pkg syscall (netbsd-386), const S_IRWXG = 56 +pkg syscall (netbsd-386), const S_IRWXO = 7 +pkg syscall (netbsd-386), const S_IRWXU = 448 +pkg syscall (netbsd-386), const S_ISTXT = 512 +pkg syscall (netbsd-386), const S_IWGRP = 16 +pkg syscall (netbsd-386), const S_IWOTH = 2 +pkg syscall (netbsd-386), const S_IWRITE = 128 +pkg syscall (netbsd-386), const S_IXGRP = 8 +pkg syscall (netbsd-386), const S_IXOTH = 1 +pkg syscall (netbsd-386), const S_LOGIN_SET = 1 +pkg syscall (netbsd-386), const SizeofBpfHdr = 20 +pkg syscall (netbsd-386), const SizeofBpfInsn = 8 +pkg syscall (netbsd-386), const SizeofBpfProgram = 8 +pkg syscall (netbsd-386), const SizeofBpfStat = 128 +pkg syscall (netbsd-386), const SizeofBpfVersion = 4 +pkg syscall (netbsd-386), const SizeofCmsghdr = 12 +pkg syscall (netbsd-386), const SizeofIPMreq = 8 +pkg syscall (netbsd-386), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-386), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-386), const SizeofIfData = 132 +pkg syscall (netbsd-386), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-386), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-386), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-386), const SizeofLinger = 8 +pkg syscall (netbsd-386), const SizeofMsghdr = 28 +pkg syscall (netbsd-386), const SizeofRtMetrics = 80 +pkg syscall (netbsd-386), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-386), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-386), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-386), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-386), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-386), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-386), const TCIFLUSH = 1 +pkg syscall (netbsd-386), const TCIOFLUSH = 3 +pkg syscall (netbsd-386), const TCOFLUSH = 2 +pkg syscall (netbsd-386), const TCP_CONGCTL = 32 +pkg syscall (netbsd-386), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-386), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-386), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-386), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-386), const TCP_MAXBURST = 4 +pkg syscall (netbsd-386), const TCP_MAXSEG = 2 +pkg syscall (netbsd-386), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-386), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-386), const TCP_MD5SIG = 16 +pkg syscall (netbsd-386), const TCP_MINMSS = 216 +pkg syscall (netbsd-386), const TCP_MSS = 536 +pkg syscall (netbsd-386), const TCSAFLUSH = 2 +pkg syscall (netbsd-386), const TIOCCBRK = 536900730 +pkg syscall (netbsd-386), const TIOCCDTR = 536900728 +pkg syscall (netbsd-386), const TIOCCONS = 2147775586 +pkg syscall (netbsd-386), const TIOCDCDTIMESTAMP = 1074558040 +pkg syscall (netbsd-386), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-386), const TIOCEXCL = 536900621 +pkg syscall (netbsd-386), const TIOCEXT = 2147775584 +pkg syscall (netbsd-386), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-386), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-386), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-386), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-386), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-386), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-386), const TIOCGETA = 1076655123 +pkg syscall (netbsd-386), const TIOCGETD = 1074033690 +pkg syscall (netbsd-386), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-386), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-386), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-386), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-386), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-386), const TIOCGSID = 1074033763 +pkg syscall (netbsd-386), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-386), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-386), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-386), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-386), const TIOCMGET = 1074033770 +pkg syscall (netbsd-386), const TIOCMSET = 2147775597 +pkg syscall (netbsd-386), const TIOCM_CAR = 64 +pkg syscall (netbsd-386), const TIOCM_CD = 64 +pkg syscall (netbsd-386), const TIOCM_CTS = 32 +pkg syscall (netbsd-386), const TIOCM_DSR = 256 +pkg syscall (netbsd-386), const TIOCM_DTR = 2 +pkg syscall (netbsd-386), const TIOCM_LE = 1 +pkg syscall (netbsd-386), const TIOCM_RI = 128 +pkg syscall (netbsd-386), const TIOCM_RNG = 128 +pkg syscall (netbsd-386), const TIOCM_RTS = 4 +pkg syscall (netbsd-386), const TIOCM_SR = 16 +pkg syscall (netbsd-386), const TIOCM_ST = 8 +pkg syscall (netbsd-386), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-386), const TIOCNXCL = 536900622 +pkg syscall (netbsd-386), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-386), const TIOCPKT = 2147775600 +pkg syscall (netbsd-386), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-386), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-386), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-386), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-386), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-386), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-386), const TIOCPKT_START = 8 +pkg syscall (netbsd-386), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-386), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-386), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-386), const TIOCRCVFRAME = 2147775557 +pkg syscall (netbsd-386), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-386), const TIOCSBRK = 536900731 +pkg syscall (netbsd-386), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-386), const TIOCSDTR = 536900729 +pkg syscall (netbsd-386), const TIOCSETA = 2150396948 +pkg syscall (netbsd-386), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-386), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-386), const TIOCSETD = 2147775515 +pkg syscall (netbsd-386), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-386), const TIOCSIG = 536900703 +pkg syscall (netbsd-386), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-386), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-386), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-386), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-386), const TIOCSTART = 536900718 +pkg syscall (netbsd-386), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-386), const TIOCSTI = 2147578994 +pkg syscall (netbsd-386), const TIOCSTOP = 536900719 +pkg syscall (netbsd-386), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-386), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-386), const TIOCXMTFRAME = 2147775556 +pkg syscall (netbsd-386), const TOSTOP = 4194304 +pkg syscall (netbsd-386), const VDISCARD = 15 +pkg syscall (netbsd-386), const VDSUSP = 11 +pkg syscall (netbsd-386), const VEOF = 0 +pkg syscall (netbsd-386), const VEOL = 1 +pkg syscall (netbsd-386), const VEOL2 = 2 +pkg syscall (netbsd-386), const VERASE = 3 +pkg syscall (netbsd-386), const VINTR = 8 +pkg syscall (netbsd-386), const VKILL = 5 +pkg syscall (netbsd-386), const VLNEXT = 14 +pkg syscall (netbsd-386), const VMIN = 16 +pkg syscall (netbsd-386), const VQUIT = 9 +pkg syscall (netbsd-386), const VREPRINT = 6 +pkg syscall (netbsd-386), const VSTART = 12 +pkg syscall (netbsd-386), const VSTATUS = 18 +pkg syscall (netbsd-386), const VSTOP = 13 +pkg syscall (netbsd-386), const VSUSP = 10 +pkg syscall (netbsd-386), const VTIME = 17 +pkg syscall (netbsd-386), const VWERASE = 4 +pkg syscall (netbsd-386), const WALL = 8 +pkg syscall (netbsd-386), const WALLSIG = 8 +pkg syscall (netbsd-386), const WALTSIG = 4 +pkg syscall (netbsd-386), const WCLONE = 4 +pkg syscall (netbsd-386), const WCOREFLAG = 128 +pkg syscall (netbsd-386), const WNOHANG = 1 +pkg syscall (netbsd-386), const WNOWAIT = 65536 +pkg syscall (netbsd-386), const WNOZOMBIE = 131072 +pkg syscall (netbsd-386), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-386), const WSTOPPED = 127 +pkg syscall (netbsd-386), const WUNTRACED = 2 +pkg syscall (netbsd-386-cgo), const AF_APPLETALK = 16 +pkg syscall (netbsd-386-cgo), const AF_ARP = 28 +pkg syscall (netbsd-386-cgo), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-386-cgo), const AF_CCITT = 10 +pkg syscall (netbsd-386-cgo), const AF_CHAOS = 5 +pkg syscall (netbsd-386-cgo), const AF_CNT = 21 +pkg syscall (netbsd-386-cgo), const AF_COIP = 20 +pkg syscall (netbsd-386-cgo), const AF_DATAKIT = 9 +pkg syscall (netbsd-386-cgo), const AF_DECnet = 12 +pkg syscall (netbsd-386-cgo), const AF_DLI = 13 +pkg syscall (netbsd-386-cgo), const AF_E164 = 26 +pkg syscall (netbsd-386-cgo), const AF_ECMA = 8 +pkg syscall (netbsd-386-cgo), const AF_HYLINK = 15 +pkg syscall (netbsd-386-cgo), const AF_IEEE80211 = 32 +pkg syscall (netbsd-386-cgo), const AF_IMPLINK = 3 +pkg syscall (netbsd-386-cgo), const AF_INET6 = 24 +pkg syscall (netbsd-386-cgo), const AF_IPX = 23 +pkg syscall (netbsd-386-cgo), const AF_ISDN = 26 +pkg syscall (netbsd-386-cgo), const AF_ISO = 7 +pkg syscall (netbsd-386-cgo), const AF_LAT = 14 +pkg syscall (netbsd-386-cgo), const AF_LINK = 18 +pkg syscall (netbsd-386-cgo), const AF_LOCAL = 1 +pkg syscall (netbsd-386-cgo), const AF_MAX = 35 +pkg syscall (netbsd-386-cgo), const AF_MPLS = 33 +pkg syscall (netbsd-386-cgo), const AF_NATM = 27 +pkg syscall (netbsd-386-cgo), const AF_NS = 6 +pkg syscall (netbsd-386-cgo), const AF_OROUTE = 17 +pkg syscall (netbsd-386-cgo), const AF_OSI = 7 +pkg syscall (netbsd-386-cgo), const AF_PUP = 4 +pkg syscall (netbsd-386-cgo), const AF_ROUTE = 34 +pkg syscall (netbsd-386-cgo), const AF_SNA = 11 +pkg syscall (netbsd-386-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-386-cgo), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-386-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-386-cgo), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-386-cgo), const B0 = 0 +pkg syscall (netbsd-386-cgo), const B110 = 110 +pkg syscall (netbsd-386-cgo), const B115200 = 115200 +pkg syscall (netbsd-386-cgo), const B1200 = 1200 +pkg syscall (netbsd-386-cgo), const B134 = 134 +pkg syscall (netbsd-386-cgo), const B14400 = 14400 +pkg syscall (netbsd-386-cgo), const B150 = 150 +pkg syscall (netbsd-386-cgo), const B1800 = 1800 +pkg syscall (netbsd-386-cgo), const B19200 = 19200 +pkg syscall (netbsd-386-cgo), const B200 = 200 +pkg syscall (netbsd-386-cgo), const B230400 = 230400 +pkg syscall (netbsd-386-cgo), const B2400 = 2400 +pkg syscall (netbsd-386-cgo), const B28800 = 28800 +pkg syscall (netbsd-386-cgo), const B300 = 300 +pkg syscall (netbsd-386-cgo), const B38400 = 38400 +pkg syscall (netbsd-386-cgo), const B460800 = 460800 +pkg syscall (netbsd-386-cgo), const B4800 = 4800 +pkg syscall (netbsd-386-cgo), const B50 = 50 +pkg syscall (netbsd-386-cgo), const B57600 = 57600 +pkg syscall (netbsd-386-cgo), const B600 = 600 +pkg syscall (netbsd-386-cgo), const B7200 = 7200 +pkg syscall (netbsd-386-cgo), const B75 = 75 +pkg syscall (netbsd-386-cgo), const B76800 = 76800 +pkg syscall (netbsd-386-cgo), const B921600 = 921600 +pkg syscall (netbsd-386-cgo), const B9600 = 9600 +pkg syscall (netbsd-386-cgo), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-386-cgo), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-386-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-386-cgo), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-386-cgo), const BIOCGDLTLIST = 3221766775 +pkg syscall (netbsd-386-cgo), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-386-cgo), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-386-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-386-cgo), const BIOCGRTIMEOUT = 1074545275 +pkg syscall (netbsd-386-cgo), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-386-cgo), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-386-cgo), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-386-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-386-cgo), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-386-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-386-cgo), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-386-cgo), const BIOCSETF = 2148024935 +pkg syscall (netbsd-386-cgo), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-386-cgo), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-386-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-386-cgo), const BIOCSRTIMEOUT = 2148287098 +pkg syscall (netbsd-386-cgo), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-386-cgo), const BIOCSTCPF = 2148024946 +pkg syscall (netbsd-386-cgo), const BIOCSUDPF = 2148024947 +pkg syscall (netbsd-386-cgo), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-386-cgo), const BPF_A = 16 +pkg syscall (netbsd-386-cgo), const BPF_ABS = 32 +pkg syscall (netbsd-386-cgo), const BPF_ADD = 0 +pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-386-cgo), const BPF_ALU = 4 +pkg syscall (netbsd-386-cgo), const BPF_AND = 80 +pkg syscall (netbsd-386-cgo), const BPF_B = 16 +pkg syscall (netbsd-386-cgo), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-386-cgo), const BPF_DIV = 48 +pkg syscall (netbsd-386-cgo), const BPF_H = 8 +pkg syscall (netbsd-386-cgo), const BPF_IMM = 0 +pkg syscall (netbsd-386-cgo), const BPF_IND = 64 +pkg syscall (netbsd-386-cgo), const BPF_JA = 0 +pkg syscall (netbsd-386-cgo), const BPF_JEQ = 16 +pkg syscall (netbsd-386-cgo), const BPF_JGE = 48 +pkg syscall (netbsd-386-cgo), const BPF_JGT = 32 +pkg syscall (netbsd-386-cgo), const BPF_JMP = 5 +pkg syscall (netbsd-386-cgo), const BPF_JSET = 64 +pkg syscall (netbsd-386-cgo), const BPF_K = 0 +pkg syscall (netbsd-386-cgo), const BPF_LD = 0 +pkg syscall (netbsd-386-cgo), const BPF_LDX = 1 +pkg syscall (netbsd-386-cgo), const BPF_LEN = 128 +pkg syscall (netbsd-386-cgo), const BPF_LSH = 96 +pkg syscall (netbsd-386-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-386-cgo), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-386-cgo), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-386-cgo), const BPF_MEM = 96 +pkg syscall (netbsd-386-cgo), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-386-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-386-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-386-cgo), const BPF_MISC = 7 +pkg syscall (netbsd-386-cgo), const BPF_MSH = 160 +pkg syscall (netbsd-386-cgo), const BPF_MUL = 32 +pkg syscall (netbsd-386-cgo), const BPF_NEG = 128 +pkg syscall (netbsd-386-cgo), const BPF_OR = 64 +pkg syscall (netbsd-386-cgo), const BPF_RELEASE = 199606 +pkg syscall (netbsd-386-cgo), const BPF_RET = 6 +pkg syscall (netbsd-386-cgo), const BPF_RSH = 112 +pkg syscall (netbsd-386-cgo), const BPF_ST = 2 +pkg syscall (netbsd-386-cgo), const BPF_STX = 3 +pkg syscall (netbsd-386-cgo), const BPF_SUB = 16 +pkg syscall (netbsd-386-cgo), const BPF_TAX = 0 +pkg syscall (netbsd-386-cgo), const BPF_TXA = 128 +pkg syscall (netbsd-386-cgo), const BPF_W = 0 +pkg syscall (netbsd-386-cgo), const BPF_X = 8 +pkg syscall (netbsd-386-cgo), const BRKINT = 2 +pkg syscall (netbsd-386-cgo), const CFLUSH = 15 +pkg syscall (netbsd-386-cgo), const CLOCAL = 32768 +pkg syscall (netbsd-386-cgo), const CREAD = 2048 +pkg syscall (netbsd-386-cgo), const CS5 = 0 +pkg syscall (netbsd-386-cgo), const CS6 = 256 +pkg syscall (netbsd-386-cgo), const CS7 = 512 +pkg syscall (netbsd-386-cgo), const CS8 = 768 +pkg syscall (netbsd-386-cgo), const CSIZE = 768 +pkg syscall (netbsd-386-cgo), const CSTART = 17 +pkg syscall (netbsd-386-cgo), const CSTATUS = 20 +pkg syscall (netbsd-386-cgo), const CSTOP = 19 +pkg syscall (netbsd-386-cgo), const CSTOPB = 1024 +pkg syscall (netbsd-386-cgo), const CSUSP = 26 +pkg syscall (netbsd-386-cgo), const CTL_MAXNAME = 12 +pkg syscall (netbsd-386-cgo), const CTL_NET = 4 +pkg syscall (netbsd-386-cgo), const CTL_QUERY = -2 +pkg syscall (netbsd-386-cgo), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-386-cgo), const DLT_A429 = 184 +pkg syscall (netbsd-386-cgo), const DLT_A653_ICM = 185 +pkg syscall (netbsd-386-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-386-cgo), const DLT_AOS = 222 +pkg syscall (netbsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-386-cgo), const DLT_ARCNET = 7 +pkg syscall (netbsd-386-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-386-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-386-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-386-cgo), const DLT_AURORA = 126 +pkg syscall (netbsd-386-cgo), const DLT_AX25 = 3 +pkg syscall (netbsd-386-cgo), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-386-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-386-cgo), const DLT_CAN20B = 190 +pkg syscall (netbsd-386-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-386-cgo), const DLT_CHAOS = 5 +pkg syscall (netbsd-386-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-386-cgo), const DLT_C_HDLC = 104 +pkg syscall (netbsd-386-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-386-cgo), const DLT_DECT = 221 +pkg syscall (netbsd-386-cgo), const DLT_DOCSIS = 143 +pkg syscall (netbsd-386-cgo), const DLT_ECONET = 115 +pkg syscall (netbsd-386-cgo), const DLT_EN10MB = 1 +pkg syscall (netbsd-386-cgo), const DLT_EN3MB = 2 +pkg syscall (netbsd-386-cgo), const DLT_ENC = 109 +pkg syscall (netbsd-386-cgo), const DLT_ERF = 197 +pkg syscall (netbsd-386-cgo), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-386-cgo), const DLT_ERF_POS = 176 +pkg syscall (netbsd-386-cgo), const DLT_FC_2 = 224 +pkg syscall (netbsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-386-cgo), const DLT_FDDI = 10 +pkg syscall (netbsd-386-cgo), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-386-cgo), const DLT_FRELAY = 107 +pkg syscall (netbsd-386-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-386-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-386-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-386-cgo), const DLT_GPF_F = 171 +pkg syscall (netbsd-386-cgo), const DLT_GPF_T = 170 +pkg syscall (netbsd-386-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-386-cgo), const DLT_HDLC = 16 +pkg syscall (netbsd-386-cgo), const DLT_HHDLC = 121 +pkg syscall (netbsd-386-cgo), const DLT_HIPPI = 15 +pkg syscall (netbsd-386-cgo), const DLT_IBM_SN = 146 +pkg syscall (netbsd-386-cgo), const DLT_IBM_SP = 145 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802 = 6 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-386-cgo), const DLT_IPMB = 199 +pkg syscall (netbsd-386-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-386-cgo), const DLT_IPNET = 226 +pkg syscall (netbsd-386-cgo), const DLT_IPV4 = 228 +pkg syscall (netbsd-386-cgo), const DLT_IPV6 = 229 +pkg syscall (netbsd-386-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-386-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-386-cgo), const DLT_LAPD = 203 +pkg syscall (netbsd-386-cgo), const DLT_LIN = 212 +pkg syscall (netbsd-386-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-386-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-386-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-386-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-386-cgo), const DLT_LOOP = 108 +pkg syscall (netbsd-386-cgo), const DLT_LTALK = 114 +pkg syscall (netbsd-386-cgo), const DLT_MFR = 182 +pkg syscall (netbsd-386-cgo), const DLT_MOST = 211 +pkg syscall (netbsd-386-cgo), const DLT_MPLS = 219 +pkg syscall (netbsd-386-cgo), const DLT_MTP2 = 140 +pkg syscall (netbsd-386-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-386-cgo), const DLT_MTP3 = 141 +pkg syscall (netbsd-386-cgo), const DLT_NULL = 0 +pkg syscall (netbsd-386-cgo), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-386-cgo), const DLT_PFLOG = 117 +pkg syscall (netbsd-386-cgo), const DLT_PFSYNC = 18 +pkg syscall (netbsd-386-cgo), const DLT_PPI = 192 +pkg syscall (netbsd-386-cgo), const DLT_PPP = 9 +pkg syscall (netbsd-386-cgo), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-386-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-386-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-386-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-386-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-386-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-386-cgo), const DLT_PRONET = 4 +pkg syscall (netbsd-386-cgo), const DLT_RAIF1 = 198 +pkg syscall (netbsd-386-cgo), const DLT_RAW = 12 +pkg syscall (netbsd-386-cgo), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-386-cgo), const DLT_RIO = 124 +pkg syscall (netbsd-386-cgo), const DLT_SCCP = 142 +pkg syscall (netbsd-386-cgo), const DLT_SITA = 196 +pkg syscall (netbsd-386-cgo), const DLT_SLIP = 8 +pkg syscall (netbsd-386-cgo), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-386-cgo), const DLT_SUNATM = 123 +pkg syscall (netbsd-386-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-386-cgo), const DLT_TZSP = 128 +pkg syscall (netbsd-386-cgo), const DLT_USB = 186 +pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-386-cgo), const DLT_WIHART = 223 +pkg syscall (netbsd-386-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-386-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-386-cgo), const DT_BLK = 6 +pkg syscall (netbsd-386-cgo), const DT_CHR = 2 +pkg syscall (netbsd-386-cgo), const DT_DIR = 4 +pkg syscall (netbsd-386-cgo), const DT_FIFO = 1 +pkg syscall (netbsd-386-cgo), const DT_LNK = 10 +pkg syscall (netbsd-386-cgo), const DT_REG = 8 +pkg syscall (netbsd-386-cgo), const DT_SOCK = 12 +pkg syscall (netbsd-386-cgo), const DT_UNKNOWN = 0 +pkg syscall (netbsd-386-cgo), const DT_WHT = 14 +pkg syscall (netbsd-386-cgo), const E2BIG = 7 +pkg syscall (netbsd-386-cgo), const EACCES = 13 +pkg syscall (netbsd-386-cgo), const EADDRINUSE = 48 +pkg syscall (netbsd-386-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-386-cgo), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-386-cgo), const EAGAIN = 35 +pkg syscall (netbsd-386-cgo), const EALREADY = 37 +pkg syscall (netbsd-386-cgo), const EAUTH = 80 +pkg syscall (netbsd-386-cgo), const EBADF = 9 +pkg syscall (netbsd-386-cgo), const EBADMSG = 88 +pkg syscall (netbsd-386-cgo), const EBADRPC = 72 +pkg syscall (netbsd-386-cgo), const EBUSY = 16 +pkg syscall (netbsd-386-cgo), const ECANCELED = 87 +pkg syscall (netbsd-386-cgo), const ECHILD = 10 +pkg syscall (netbsd-386-cgo), const ECHO = 8 +pkg syscall (netbsd-386-cgo), const ECHOCTL = 64 +pkg syscall (netbsd-386-cgo), const ECHOE = 2 +pkg syscall (netbsd-386-cgo), const ECHOK = 4 +pkg syscall (netbsd-386-cgo), const ECHOKE = 1 +pkg syscall (netbsd-386-cgo), const ECHONL = 16 +pkg syscall (netbsd-386-cgo), const ECHOPRT = 32 +pkg syscall (netbsd-386-cgo), const ECONNABORTED = 53 +pkg syscall (netbsd-386-cgo), const ECONNREFUSED = 61 +pkg syscall (netbsd-386-cgo), const ECONNRESET = 54 +pkg syscall (netbsd-386-cgo), const EDEADLK = 11 +pkg syscall (netbsd-386-cgo), const EDESTADDRREQ = 39 +pkg syscall (netbsd-386-cgo), const EDOM = 33 +pkg syscall (netbsd-386-cgo), const EDQUOT = 69 +pkg syscall (netbsd-386-cgo), const EEXIST = 17 +pkg syscall (netbsd-386-cgo), const EFAULT = 14 +pkg syscall (netbsd-386-cgo), const EFBIG = 27 +pkg syscall (netbsd-386-cgo), const EFTYPE = 79 +pkg syscall (netbsd-386-cgo), const EHOSTDOWN = 64 +pkg syscall (netbsd-386-cgo), const EHOSTUNREACH = 65 +pkg syscall (netbsd-386-cgo), const EIDRM = 82 +pkg syscall (netbsd-386-cgo), const EILSEQ = 85 +pkg syscall (netbsd-386-cgo), const EINPROGRESS = 36 +pkg syscall (netbsd-386-cgo), const EINTR = 4 +pkg syscall (netbsd-386-cgo), const EINVAL = 22 +pkg syscall (netbsd-386-cgo), const EIO = 5 +pkg syscall (netbsd-386-cgo), const EISCONN = 56 +pkg syscall (netbsd-386-cgo), const EISDIR = 21 +pkg syscall (netbsd-386-cgo), const ELAST = 96 +pkg syscall (netbsd-386-cgo), const ELOOP = 62 +pkg syscall (netbsd-386-cgo), const EMFILE = 24 +pkg syscall (netbsd-386-cgo), const EMLINK = 31 +pkg syscall (netbsd-386-cgo), const EMSGSIZE = 40 +pkg syscall (netbsd-386-cgo), const EMULTIHOP = 94 +pkg syscall (netbsd-386-cgo), const EMUL_LINUX = 1 +pkg syscall (netbsd-386-cgo), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-386-cgo), const EMUL_MAXID = 6 +pkg syscall (netbsd-386-cgo), const ENAMETOOLONG = 63 +pkg syscall (netbsd-386-cgo), const ENEEDAUTH = 81 +pkg syscall (netbsd-386-cgo), const ENETDOWN = 50 +pkg syscall (netbsd-386-cgo), const ENETRESET = 52 +pkg syscall (netbsd-386-cgo), const ENETUNREACH = 51 +pkg syscall (netbsd-386-cgo), const ENFILE = 23 +pkg syscall (netbsd-386-cgo), const ENOATTR = 93 +pkg syscall (netbsd-386-cgo), const ENOBUFS = 55 +pkg syscall (netbsd-386-cgo), const ENODATA = 89 +pkg syscall (netbsd-386-cgo), const ENODEV = 19 +pkg syscall (netbsd-386-cgo), const ENOEXEC = 8 +pkg syscall (netbsd-386-cgo), const ENOLCK = 77 +pkg syscall (netbsd-386-cgo), const ENOLINK = 95 +pkg syscall (netbsd-386-cgo), const ENOMEM = 12 +pkg syscall (netbsd-386-cgo), const ENOMSG = 83 +pkg syscall (netbsd-386-cgo), const ENOPROTOOPT = 42 +pkg syscall (netbsd-386-cgo), const ENOSPC = 28 +pkg syscall (netbsd-386-cgo), const ENOSR = 90 +pkg syscall (netbsd-386-cgo), const ENOSTR = 91 +pkg syscall (netbsd-386-cgo), const ENOSYS = 78 +pkg syscall (netbsd-386-cgo), const ENOTBLK = 15 +pkg syscall (netbsd-386-cgo), const ENOTCONN = 57 +pkg syscall (netbsd-386-cgo), const ENOTDIR = 20 +pkg syscall (netbsd-386-cgo), const ENOTEMPTY = 66 +pkg syscall (netbsd-386-cgo), const ENOTSOCK = 38 +pkg syscall (netbsd-386-cgo), const ENOTSUP = 86 +pkg syscall (netbsd-386-cgo), const ENOTTY = 25 +pkg syscall (netbsd-386-cgo), const ENXIO = 6 +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_INF = 4096 +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_PREC = 768 +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_ROUND = 3072 +pkg syscall (netbsd-386-cgo), const EN_SW_DATACHAIN = 128 +pkg syscall (netbsd-386-cgo), const EN_SW_DENORM = 2 +pkg syscall (netbsd-386-cgo), const EN_SW_INVOP = 1 +pkg syscall (netbsd-386-cgo), const EN_SW_OVERFLOW = 8 +pkg syscall (netbsd-386-cgo), const EN_SW_PRECLOSS = 32 +pkg syscall (netbsd-386-cgo), const EN_SW_UNDERFLOW = 16 +pkg syscall (netbsd-386-cgo), const EN_SW_ZERODIV = 4 +pkg syscall (netbsd-386-cgo), const EOPNOTSUPP = 45 +pkg syscall (netbsd-386-cgo), const EOVERFLOW = 84 +pkg syscall (netbsd-386-cgo), const EPERM = 1 +pkg syscall (netbsd-386-cgo), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-386-cgo), const EPIPE = 32 +pkg syscall (netbsd-386-cgo), const EPROCLIM = 67 +pkg syscall (netbsd-386-cgo), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-386-cgo), const EPROGMISMATCH = 75 +pkg syscall (netbsd-386-cgo), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-386-cgo), const EPROTO = 96 +pkg syscall (netbsd-386-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-386-cgo), const EPROTOTYPE = 41 +pkg syscall (netbsd-386-cgo), const ERANGE = 34 +pkg syscall (netbsd-386-cgo), const EREMOTE = 71 +pkg syscall (netbsd-386-cgo), const EROFS = 30 +pkg syscall (netbsd-386-cgo), const ERPCMISMATCH = 73 +pkg syscall (netbsd-386-cgo), const ESHUTDOWN = 58 +pkg syscall (netbsd-386-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-386-cgo), const ESPIPE = 29 +pkg syscall (netbsd-386-cgo), const ESRCH = 3 +pkg syscall (netbsd-386-cgo), const ESTALE = 70 +pkg syscall (netbsd-386-cgo), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-386-cgo), const ETHERMIN = 46 +pkg syscall (netbsd-386-cgo), const ETHERMTU = 1500 +pkg syscall (netbsd-386-cgo), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-386-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-386-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-386-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-386-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-386-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-386-cgo), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-386-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-386-cgo), const ETIME = 92 +pkg syscall (netbsd-386-cgo), const ETIMEDOUT = 60 +pkg syscall (netbsd-386-cgo), const ETOOMANYREFS = 59 +pkg syscall (netbsd-386-cgo), const ETXTBSY = 26 +pkg syscall (netbsd-386-cgo), const EUSERS = 68 +pkg syscall (netbsd-386-cgo), const EVFILT_AIO = 2 +pkg syscall (netbsd-386-cgo), const EVFILT_PROC = 4 +pkg syscall (netbsd-386-cgo), const EVFILT_READ = 0 +pkg syscall (netbsd-386-cgo), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-386-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-386-cgo), const EVFILT_TIMER = 6 +pkg syscall (netbsd-386-cgo), const EVFILT_VNODE = 3 +pkg syscall (netbsd-386-cgo), const EVFILT_WRITE = 1 +pkg syscall (netbsd-386-cgo), const EV_ADD = 1 +pkg syscall (netbsd-386-cgo), const EV_CLEAR = 32 +pkg syscall (netbsd-386-cgo), const EV_DELETE = 2 +pkg syscall (netbsd-386-cgo), const EV_DISABLE = 8 +pkg syscall (netbsd-386-cgo), const EV_ENABLE = 4 +pkg syscall (netbsd-386-cgo), const EV_EOF = 32768 +pkg syscall (netbsd-386-cgo), const EV_ERROR = 16384 +pkg syscall (netbsd-386-cgo), const EV_FLAG1 = 8192 +pkg syscall (netbsd-386-cgo), const EV_ONESHOT = 16 +pkg syscall (netbsd-386-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-386-cgo), const EWOULDBLOCK = 35 +pkg syscall (netbsd-386-cgo), const EXDEV = 18 +pkg syscall (netbsd-386-cgo), const EXTA = 19200 +pkg syscall (netbsd-386-cgo), const EXTB = 38400 +pkg syscall (netbsd-386-cgo), const EXTPROC = 2048 +pkg syscall (netbsd-386-cgo), const FD_CLOEXEC = 1 +pkg syscall (netbsd-386-cgo), const FD_SETSIZE = 256 +pkg syscall (netbsd-386-cgo), const FLUSHO = 8388608 +pkg syscall (netbsd-386-cgo), const F_CLOSEM = 10 +pkg syscall (netbsd-386-cgo), const F_DUPFD = 0 +pkg syscall (netbsd-386-cgo), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-386-cgo), const F_FSCTL = -2147483648 +pkg syscall (netbsd-386-cgo), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-386-cgo), const F_FSIN = 268435456 +pkg syscall (netbsd-386-cgo), const F_FSINOUT = 805306368 +pkg syscall (netbsd-386-cgo), const F_FSOUT = 536870912 +pkg syscall (netbsd-386-cgo), const F_FSPRIV = 32768 +pkg syscall (netbsd-386-cgo), const F_FSVOID = 1073741824 +pkg syscall (netbsd-386-cgo), const F_GETFD = 1 +pkg syscall (netbsd-386-cgo), const F_GETFL = 3 +pkg syscall (netbsd-386-cgo), const F_GETLK = 7 +pkg syscall (netbsd-386-cgo), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-386-cgo), const F_GETOWN = 5 +pkg syscall (netbsd-386-cgo), const F_MAXFD = 11 +pkg syscall (netbsd-386-cgo), const F_OK = 0 +pkg syscall (netbsd-386-cgo), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-386-cgo), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-386-cgo), const F_RDLCK = 1 +pkg syscall (netbsd-386-cgo), const F_SETFD = 2 +pkg syscall (netbsd-386-cgo), const F_SETFL = 4 +pkg syscall (netbsd-386-cgo), const F_SETLK = 8 +pkg syscall (netbsd-386-cgo), const F_SETLKW = 9 +pkg syscall (netbsd-386-cgo), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-386-cgo), const F_SETOWN = 6 +pkg syscall (netbsd-386-cgo), const F_UNLCK = 2 +pkg syscall (netbsd-386-cgo), const F_WRLCK = 3 +pkg syscall (netbsd-386-cgo), const HUPCL = 16384 +pkg syscall (netbsd-386-cgo), const ICANON = 256 +pkg syscall (netbsd-386-cgo), const ICRNL = 256 +pkg syscall (netbsd-386-cgo), const IEXTEN = 1024 +pkg syscall (netbsd-386-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-386-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-386-cgo), const IFA_ROUTE = 1 +pkg syscall (netbsd-386-cgo), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-386-cgo), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-386-cgo), const IFF_DEBUG = 4 +pkg syscall (netbsd-386-cgo), const IFF_LINK0 = 4096 +pkg syscall (netbsd-386-cgo), const IFF_LINK1 = 8192 +pkg syscall (netbsd-386-cgo), const IFF_LINK2 = 16384 +pkg syscall (netbsd-386-cgo), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-386-cgo), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-386-cgo), const IFF_NOARP = 128 +pkg syscall (netbsd-386-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-386-cgo), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-386-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-386-cgo), const IFF_PROMISC = 256 +pkg syscall (netbsd-386-cgo), const IFF_RUNNING = 64 +pkg syscall (netbsd-386-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-386-cgo), const IFNAMSIZ = 16 +pkg syscall (netbsd-386-cgo), const IFT_1822 = 2 +pkg syscall (netbsd-386-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-386-cgo), const IFT_AAL2 = 187 +pkg syscall (netbsd-386-cgo), const IFT_AAL5 = 49 +pkg syscall (netbsd-386-cgo), const IFT_ADSL = 94 +pkg syscall (netbsd-386-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-386-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-386-cgo), const IFT_ARAP = 88 +pkg syscall (netbsd-386-cgo), const IFT_ARCNET = 35 +pkg syscall (netbsd-386-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-386-cgo), const IFT_ASYNC = 84 +pkg syscall (netbsd-386-cgo), const IFT_ATM = 37 +pkg syscall (netbsd-386-cgo), const IFT_ATMDXI = 105 +pkg syscall (netbsd-386-cgo), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-386-cgo), const IFT_ATMIMA = 107 +pkg syscall (netbsd-386-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-386-cgo), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-386-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-386-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-386-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-386-cgo), const IFT_BRIDGE = 209 +pkg syscall (netbsd-386-cgo), const IFT_BSC = 83 +pkg syscall (netbsd-386-cgo), const IFT_CARP = 248 +pkg syscall (netbsd-386-cgo), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-386-cgo), const IFT_CEPT = 19 +pkg syscall (netbsd-386-cgo), const IFT_CES = 133 +pkg syscall (netbsd-386-cgo), const IFT_CHANNEL = 70 +pkg syscall (netbsd-386-cgo), const IFT_CNR = 85 +pkg syscall (netbsd-386-cgo), const IFT_COFFEE = 132 +pkg syscall (netbsd-386-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-386-cgo), const IFT_DCN = 141 +pkg syscall (netbsd-386-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-386-cgo), const IFT_DLSW = 74 +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-386-cgo), const IFT_DS0 = 81 +pkg syscall (netbsd-386-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-386-cgo), const IFT_DS1FDL = 170 +pkg syscall (netbsd-386-cgo), const IFT_DS3 = 30 +pkg syscall (netbsd-386-cgo), const IFT_DTM = 140 +pkg syscall (netbsd-386-cgo), const IFT_DVBASILN = 172 +pkg syscall (netbsd-386-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-386-cgo), const IFT_ECONET = 206 +pkg syscall (netbsd-386-cgo), const IFT_EON = 25 +pkg syscall (netbsd-386-cgo), const IFT_EPLRS = 87 +pkg syscall (netbsd-386-cgo), const IFT_ESCON = 73 +pkg syscall (netbsd-386-cgo), const IFT_ETHER = 6 +pkg syscall (netbsd-386-cgo), const IFT_FAITH = 242 +pkg syscall (netbsd-386-cgo), const IFT_FAST = 125 +pkg syscall (netbsd-386-cgo), const IFT_FASTETHER = 62 +pkg syscall (netbsd-386-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-386-cgo), const IFT_FDDI = 15 +pkg syscall (netbsd-386-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-386-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-386-cgo), const IFT_FRELAY = 32 +pkg syscall (netbsd-386-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-386-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-386-cgo), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-386-cgo), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-386-cgo), const IFT_G703AT64K = 66 +pkg syscall (netbsd-386-cgo), const IFT_GIF = 240 +pkg syscall (netbsd-386-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-386-cgo), const IFT_GR303IDT = 178 +pkg syscall (netbsd-386-cgo), const IFT_GR303RDT = 177 +pkg syscall (netbsd-386-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-386-cgo), const IFT_H323PROXY = 165 +pkg syscall (netbsd-386-cgo), const IFT_HDH1822 = 3 +pkg syscall (netbsd-386-cgo), const IFT_HDLC = 118 +pkg syscall (netbsd-386-cgo), const IFT_HDSL2 = 168 +pkg syscall (netbsd-386-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-386-cgo), const IFT_HIPPI = 47 +pkg syscall (netbsd-386-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-386-cgo), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-386-cgo), const IFT_HSSI = 46 +pkg syscall (netbsd-386-cgo), const IFT_HY = 14 +pkg syscall (netbsd-386-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-386-cgo), const IFT_IDSL = 154 +pkg syscall (netbsd-386-cgo), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-386-cgo), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-386-cgo), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-386-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-386-cgo), const IFT_IFGSN = 145 +pkg syscall (netbsd-386-cgo), const IFT_IMT = 190 +pkg syscall (netbsd-386-cgo), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-386-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-386-cgo), const IFT_IP = 126 +pkg syscall (netbsd-386-cgo), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-386-cgo), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-386-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-386-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-386-cgo), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-386-cgo), const IFT_ISDN = 63 +pkg syscall (netbsd-386-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-386-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-386-cgo), const IFT_ISDNS = 75 +pkg syscall (netbsd-386-cgo), const IFT_ISDNU = 76 +pkg syscall (netbsd-386-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-386-cgo), const IFT_ISO88023 = 7 +pkg syscall (netbsd-386-cgo), const IFT_ISO88024 = 8 +pkg syscall (netbsd-386-cgo), const IFT_ISO88025 = 9 +pkg syscall (netbsd-386-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-386-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-386-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-386-cgo), const IFT_ISO88026 = 10 +pkg syscall (netbsd-386-cgo), const IFT_ISUP = 179 +pkg syscall (netbsd-386-cgo), const IFT_L2VLAN = 135 +pkg syscall (netbsd-386-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-386-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-386-cgo), const IFT_LAPB = 16 +pkg syscall (netbsd-386-cgo), const IFT_LAPD = 77 +pkg syscall (netbsd-386-cgo), const IFT_LAPF = 119 +pkg syscall (netbsd-386-cgo), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-386-cgo), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-386-cgo), const IFT_LOOP = 24 +pkg syscall (netbsd-386-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-386-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-386-cgo), const IFT_MIOX25 = 38 +pkg syscall (netbsd-386-cgo), const IFT_MODEM = 48 +pkg syscall (netbsd-386-cgo), const IFT_MPC = 113 +pkg syscall (netbsd-386-cgo), const IFT_MPLS = 166 +pkg syscall (netbsd-386-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-386-cgo), const IFT_MSDSL = 143 +pkg syscall (netbsd-386-cgo), const IFT_MVL = 191 +pkg syscall (netbsd-386-cgo), const IFT_MYRINET = 99 +pkg syscall (netbsd-386-cgo), const IFT_NFAS = 175 +pkg syscall (netbsd-386-cgo), const IFT_NSIP = 27 +pkg syscall (netbsd-386-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-386-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-386-cgo), const IFT_OTHER = 1 +pkg syscall (netbsd-386-cgo), const IFT_P10 = 12 +pkg syscall (netbsd-386-cgo), const IFT_P80 = 13 +pkg syscall (netbsd-386-cgo), const IFT_PARA = 34 +pkg syscall (netbsd-386-cgo), const IFT_PFLOG = 245 +pkg syscall (netbsd-386-cgo), const IFT_PFSYNC = 246 +pkg syscall (netbsd-386-cgo), const IFT_PLC = 174 +pkg syscall (netbsd-386-cgo), const IFT_PON155 = 207 +pkg syscall (netbsd-386-cgo), const IFT_PON622 = 208 +pkg syscall (netbsd-386-cgo), const IFT_POS = 171 +pkg syscall (netbsd-386-cgo), const IFT_PPP = 23 +pkg syscall (netbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-386-cgo), const IFT_PROPATM = 197 +pkg syscall (netbsd-386-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-386-cgo), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-386-cgo), const IFT_PROPMUX = 54 +pkg syscall (netbsd-386-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-386-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-386-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-386-cgo), const IFT_PVC = 241 +pkg syscall (netbsd-386-cgo), const IFT_Q2931 = 201 +pkg syscall (netbsd-386-cgo), const IFT_QLLC = 68 +pkg syscall (netbsd-386-cgo), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-386-cgo), const IFT_RADSL = 95 +pkg syscall (netbsd-386-cgo), const IFT_REACHDSL = 192 +pkg syscall (netbsd-386-cgo), const IFT_RFC1483 = 159 +pkg syscall (netbsd-386-cgo), const IFT_RS232 = 33 +pkg syscall (netbsd-386-cgo), const IFT_RSRB = 79 +pkg syscall (netbsd-386-cgo), const IFT_SDLC = 17 +pkg syscall (netbsd-386-cgo), const IFT_SDSL = 96 +pkg syscall (netbsd-386-cgo), const IFT_SHDSL = 169 +pkg syscall (netbsd-386-cgo), const IFT_SIP = 31 +pkg syscall (netbsd-386-cgo), const IFT_SIPSIG = 204 +pkg syscall (netbsd-386-cgo), const IFT_SIPTG = 203 +pkg syscall (netbsd-386-cgo), const IFT_SLIP = 28 +pkg syscall (netbsd-386-cgo), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-386-cgo), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-386-cgo), const IFT_SONET = 39 +pkg syscall (netbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-386-cgo), const IFT_SONETPATH = 50 +pkg syscall (netbsd-386-cgo), const IFT_SONETVT = 51 +pkg syscall (netbsd-386-cgo), const IFT_SRP = 151 +pkg syscall (netbsd-386-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-386-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-386-cgo), const IFT_STARLAN = 11 +pkg syscall (netbsd-386-cgo), const IFT_STF = 215 +pkg syscall (netbsd-386-cgo), const IFT_T1 = 18 +pkg syscall (netbsd-386-cgo), const IFT_TDLC = 116 +pkg syscall (netbsd-386-cgo), const IFT_TELINK = 200 +pkg syscall (netbsd-386-cgo), const IFT_TERMPAD = 91 +pkg syscall (netbsd-386-cgo), const IFT_TR008 = 176 +pkg syscall (netbsd-386-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-386-cgo), const IFT_TUNNEL = 131 +pkg syscall (netbsd-386-cgo), const IFT_ULTRA = 29 +pkg syscall (netbsd-386-cgo), const IFT_USB = 160 +pkg syscall (netbsd-386-cgo), const IFT_V11 = 64 +pkg syscall (netbsd-386-cgo), const IFT_V35 = 45 +pkg syscall (netbsd-386-cgo), const IFT_V36 = 65 +pkg syscall (netbsd-386-cgo), const IFT_V37 = 120 +pkg syscall (netbsd-386-cgo), const IFT_VDSL = 97 +pkg syscall (netbsd-386-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-386-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-386-cgo), const IFT_VOICEDID = 213 +pkg syscall (netbsd-386-cgo), const IFT_VOICEEM = 100 +pkg syscall (netbsd-386-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-386-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-386-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-386-cgo), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-386-cgo), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-386-cgo), const IFT_X213 = 93 +pkg syscall (netbsd-386-cgo), const IFT_X25 = 5 +pkg syscall (netbsd-386-cgo), const IFT_X25DDN = 4 +pkg syscall (netbsd-386-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-386-cgo), const IFT_X25MLP = 121 +pkg syscall (netbsd-386-cgo), const IFT_X25PLE = 40 +pkg syscall (netbsd-386-cgo), const IFT_XETHER = 26 +pkg syscall (netbsd-386-cgo), const IGNBRK = 1 +pkg syscall (netbsd-386-cgo), const IGNCR = 128 +pkg syscall (netbsd-386-cgo), const IGNPAR = 4 +pkg syscall (netbsd-386-cgo), const IMAXBEL = 8192 +pkg syscall (netbsd-386-cgo), const INLCR = 64 +pkg syscall (netbsd-386-cgo), const INPCK = 16 +pkg syscall (netbsd-386-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-386-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-386-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-386-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-386-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-386-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-386-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-386-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-386-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-386-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-386-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-386-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-386-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-386-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-386-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-386-cgo), const IPPROTO_AH = 51 +pkg syscall (netbsd-386-cgo), const IPPROTO_CARP = 112 +pkg syscall (netbsd-386-cgo), const IPPROTO_DONE = 257 +pkg syscall (netbsd-386-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-386-cgo), const IPPROTO_EGP = 8 +pkg syscall (netbsd-386-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-386-cgo), const IPPROTO_EON = 80 +pkg syscall (netbsd-386-cgo), const IPPROTO_ESP = 50 +pkg syscall (netbsd-386-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-386-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-386-cgo), const IPPROTO_GGP = 3 +pkg syscall (netbsd-386-cgo), const IPPROTO_GRE = 47 +pkg syscall (netbsd-386-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-386-cgo), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-386-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-386-cgo), const IPPROTO_IDP = 22 +pkg syscall (netbsd-386-cgo), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-386-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-386-cgo), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-386-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-386-cgo), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-386-cgo), const IPPROTO_MAX = 256 +pkg syscall (netbsd-386-cgo), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-386-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-386-cgo), const IPPROTO_NONE = 59 +pkg syscall (netbsd-386-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-386-cgo), const IPPROTO_PIM = 103 +pkg syscall (netbsd-386-cgo), const IPPROTO_PUP = 12 +pkg syscall (netbsd-386-cgo), const IPPROTO_RAW = 255 +pkg syscall (netbsd-386-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-386-cgo), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-386-cgo), const IPPROTO_TP = 29 +pkg syscall (netbsd-386-cgo), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-386-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-386-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-386-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-386-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-386-cgo), const IPV6_FAITH = 29 +pkg syscall (netbsd-386-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-386-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-386-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-386-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-386-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-386-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-386-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-386-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-386-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-386-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-386-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-386-cgo), const IPV6_MMTU = 1280 +pkg syscall (netbsd-386-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-386-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-386-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-386-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-386-cgo), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-386-cgo), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-386-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-386-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-386-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-386-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-386-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR = 51 +pkg syscall (netbsd-386-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-386-cgo), const IPV6_TCLASS = 61 +pkg syscall (netbsd-386-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-386-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-386-cgo), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-386-cgo), const IPV6_VERSION = 96 +pkg syscall (netbsd-386-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-386-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-386-cgo), const IP_DF = 16384 +pkg syscall (netbsd-386-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-386-cgo), const IP_EF = 32768 +pkg syscall (netbsd-386-cgo), const IP_ERRORMTU = 21 +pkg syscall (netbsd-386-cgo), const IP_HDRINCL = 2 +pkg syscall (netbsd-386-cgo), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-386-cgo), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-386-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-386-cgo), const IP_MF = 8192 +pkg syscall (netbsd-386-cgo), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-386-cgo), const IP_MINTTL = 24 +pkg syscall (netbsd-386-cgo), const IP_MSS = 576 +pkg syscall (netbsd-386-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-386-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-386-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-386-cgo), const IP_OFFMASK = 8191 +pkg syscall (netbsd-386-cgo), const IP_OPTIONS = 1 +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE = 19 +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-386-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-386-cgo), const IP_RECVIF = 20 +pkg syscall (netbsd-386-cgo), const IP_RECVOPTS = 5 +pkg syscall (netbsd-386-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-386-cgo), const IP_RECVTTL = 23 +pkg syscall (netbsd-386-cgo), const IP_RETOPTS = 8 +pkg syscall (netbsd-386-cgo), const IP_RF = 32768 +pkg syscall (netbsd-386-cgo), const IP_TOS = 3 +pkg syscall (netbsd-386-cgo), const IP_TTL = 4 +pkg syscall (netbsd-386-cgo), const ISIG = 128 +pkg syscall (netbsd-386-cgo), const ISTRIP = 32 +pkg syscall (netbsd-386-cgo), const IXANY = 2048 +pkg syscall (netbsd-386-cgo), const IXOFF = 1024 +pkg syscall (netbsd-386-cgo), const IXON = 512 +pkg syscall (netbsd-386-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-386-cgo), const LOCK_EX = 2 +pkg syscall (netbsd-386-cgo), const LOCK_NB = 4 +pkg syscall (netbsd-386-cgo), const LOCK_SH = 1 +pkg syscall (netbsd-386-cgo), const LOCK_UN = 8 +pkg syscall (netbsd-386-cgo), const MSG_BCAST = 256 +pkg syscall (netbsd-386-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-386-cgo), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-386-cgo), const MSG_CTRUNC = 32 +pkg syscall (netbsd-386-cgo), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-386-cgo), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-386-cgo), const MSG_EOR = 8 +pkg syscall (netbsd-386-cgo), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-386-cgo), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-386-cgo), const MSG_MCAST = 512 +pkg syscall (netbsd-386-cgo), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-386-cgo), const MSG_NBIO = 4096 +pkg syscall (netbsd-386-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-386-cgo), const MSG_OOB = 1 +pkg syscall (netbsd-386-cgo), const MSG_PEEK = 2 +pkg syscall (netbsd-386-cgo), const MSG_TRUNC = 16 +pkg syscall (netbsd-386-cgo), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-386-cgo), const MSG_WAITALL = 64 +pkg syscall (netbsd-386-cgo), const NAME_MAX = 511 +pkg syscall (netbsd-386-cgo), const NET_RT_DUMP = 1 +pkg syscall (netbsd-386-cgo), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-386-cgo), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-386-cgo), const NET_RT_MAXID = 6 +pkg syscall (netbsd-386-cgo), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-386-cgo), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-386-cgo), const NOFLSH = 2147483648 +pkg syscall (netbsd-386-cgo), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-386-cgo), const NOTE_CHILD = 4 +pkg syscall (netbsd-386-cgo), const NOTE_DELETE = 1 +pkg syscall (netbsd-386-cgo), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-386-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-386-cgo), const NOTE_EXTEND = 4 +pkg syscall (netbsd-386-cgo), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-386-cgo), const NOTE_LINK = 16 +pkg syscall (netbsd-386-cgo), const NOTE_LOWAT = 1 +pkg syscall (netbsd-386-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-386-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-386-cgo), const NOTE_RENAME = 32 +pkg syscall (netbsd-386-cgo), const NOTE_REVOKE = 64 +pkg syscall (netbsd-386-cgo), const NOTE_TRACK = 1 +pkg syscall (netbsd-386-cgo), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-386-cgo), const NOTE_WRITE = 2 +pkg syscall (netbsd-386-cgo), const OCRNL = 16 +pkg syscall (netbsd-386-cgo), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-386-cgo), const ONLCR = 2 +pkg syscall (netbsd-386-cgo), const ONLRET = 64 +pkg syscall (netbsd-386-cgo), const ONOCR = 32 +pkg syscall (netbsd-386-cgo), const ONOEOT = 8 +pkg syscall (netbsd-386-cgo), const OPOST = 1 +pkg syscall (netbsd-386-cgo), const O_ACCMODE = 3 +pkg syscall (netbsd-386-cgo), const O_ALT_IO = 262144 +pkg syscall (netbsd-386-cgo), const O_APPEND = 8 +pkg syscall (netbsd-386-cgo), const O_ASYNC = 64 +pkg syscall (netbsd-386-cgo), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-386-cgo), const O_CREAT = 512 +pkg syscall (netbsd-386-cgo), const O_DIRECT = 524288 +pkg syscall (netbsd-386-cgo), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-386-cgo), const O_DSYNC = 65536 +pkg syscall (netbsd-386-cgo), const O_EXCL = 2048 +pkg syscall (netbsd-386-cgo), const O_EXLOCK = 32 +pkg syscall (netbsd-386-cgo), const O_FSYNC = 128 +pkg syscall (netbsd-386-cgo), const O_NDELAY = 4 +pkg syscall (netbsd-386-cgo), const O_NOCTTY = 32768 +pkg syscall (netbsd-386-cgo), const O_NOFOLLOW = 256 +pkg syscall (netbsd-386-cgo), const O_NONBLOCK = 4 +pkg syscall (netbsd-386-cgo), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-386-cgo), const O_RSYNC = 131072 +pkg syscall (netbsd-386-cgo), const O_SHLOCK = 16 +pkg syscall (netbsd-386-cgo), const O_SYNC = 128 +pkg syscall (netbsd-386-cgo), const O_TRUNC = 1024 +pkg syscall (netbsd-386-cgo), const PARENB = 4096 +pkg syscall (netbsd-386-cgo), const PARMRK = 8 +pkg syscall (netbsd-386-cgo), const PARODD = 8192 +pkg syscall (netbsd-386-cgo), const PENDIN = 536870912 +pkg syscall (netbsd-386-cgo), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-386-cgo), const PTRACE_CONT = 7 +pkg syscall (netbsd-386-cgo), const PTRACE_KILL = 8 +pkg syscall (netbsd-386-cgo), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-386-cgo), const RLIMIT_AS = 10 +pkg syscall (netbsd-386-cgo), const RLIMIT_CORE = 4 +pkg syscall (netbsd-386-cgo), const RLIMIT_CPU = 0 +pkg syscall (netbsd-386-cgo), const RLIMIT_DATA = 2 +pkg syscall (netbsd-386-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-386-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-386-cgo), const RLIMIT_STACK = 3 +pkg syscall (netbsd-386-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-386-cgo), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-386-cgo), const RTAX_BRD = 7 +pkg syscall (netbsd-386-cgo), const RTAX_DST = 0 +pkg syscall (netbsd-386-cgo), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-386-cgo), const RTAX_GENMASK = 3 +pkg syscall (netbsd-386-cgo), const RTAX_IFA = 5 +pkg syscall (netbsd-386-cgo), const RTAX_IFP = 4 +pkg syscall (netbsd-386-cgo), const RTAX_MAX = 9 +pkg syscall (netbsd-386-cgo), const RTAX_NETMASK = 2 +pkg syscall (netbsd-386-cgo), const RTAX_TAG = 8 +pkg syscall (netbsd-386-cgo), const RTA_AUTHOR = 64 +pkg syscall (netbsd-386-cgo), const RTA_BRD = 128 +pkg syscall (netbsd-386-cgo), const RTA_DST = 1 +pkg syscall (netbsd-386-cgo), const RTA_GATEWAY = 2 +pkg syscall (netbsd-386-cgo), const RTA_GENMASK = 8 +pkg syscall (netbsd-386-cgo), const RTA_IFA = 32 +pkg syscall (netbsd-386-cgo), const RTA_IFP = 16 +pkg syscall (netbsd-386-cgo), const RTA_NETMASK = 4 +pkg syscall (netbsd-386-cgo), const RTA_TAG = 256 +pkg syscall (netbsd-386-cgo), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-386-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-386-cgo), const RTF_CLONED = 8192 +pkg syscall (netbsd-386-cgo), const RTF_CLONING = 256 +pkg syscall (netbsd-386-cgo), const RTF_DONE = 64 +pkg syscall (netbsd-386-cgo), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-386-cgo), const RTF_GATEWAY = 2 +pkg syscall (netbsd-386-cgo), const RTF_HOST = 4 +pkg syscall (netbsd-386-cgo), const RTF_LLINFO = 1024 +pkg syscall (netbsd-386-cgo), const RTF_MASK = 128 +pkg syscall (netbsd-386-cgo), const RTF_MODIFIED = 32 +pkg syscall (netbsd-386-cgo), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-386-cgo), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-386-cgo), const RTF_REJECT = 8 +pkg syscall (netbsd-386-cgo), const RTF_SRC = 65536 +pkg syscall (netbsd-386-cgo), const RTF_STATIC = 2048 +pkg syscall (netbsd-386-cgo), const RTF_UP = 1 +pkg syscall (netbsd-386-cgo), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-386-cgo), const RTM_ADD = 1 +pkg syscall (netbsd-386-cgo), const RTM_CHANGE = 3 +pkg syscall (netbsd-386-cgo), const RTM_CHGADDR = 21 +pkg syscall (netbsd-386-cgo), const RTM_DELADDR = 13 +pkg syscall (netbsd-386-cgo), const RTM_DELETE = 2 +pkg syscall (netbsd-386-cgo), const RTM_GET = 4 +pkg syscall (netbsd-386-cgo), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-386-cgo), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-386-cgo), const RTM_IFINFO = 20 +pkg syscall (netbsd-386-cgo), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-386-cgo), const RTM_LOCK = 8 +pkg syscall (netbsd-386-cgo), const RTM_LOSING = 5 +pkg syscall (netbsd-386-cgo), const RTM_MISS = 7 +pkg syscall (netbsd-386-cgo), const RTM_NEWADDR = 12 +pkg syscall (netbsd-386-cgo), const RTM_OIFINFO = 15 +pkg syscall (netbsd-386-cgo), const RTM_OLDADD = 9 +pkg syscall (netbsd-386-cgo), const RTM_OLDDEL = 10 +pkg syscall (netbsd-386-cgo), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-386-cgo), const RTM_REDIRECT = 6 +pkg syscall (netbsd-386-cgo), const RTM_RESOLVE = 11 +pkg syscall (netbsd-386-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-386-cgo), const RTM_SETGATE = 18 +pkg syscall (netbsd-386-cgo), const RTM_VERSION = 4 +pkg syscall (netbsd-386-cgo), const RTV_EXPIRE = 4 +pkg syscall (netbsd-386-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-386-cgo), const RTV_MTU = 1 +pkg syscall (netbsd-386-cgo), const RTV_RPIPE = 8 +pkg syscall (netbsd-386-cgo), const RTV_RTT = 64 +pkg syscall (netbsd-386-cgo), const RTV_RTTVAR = 128 +pkg syscall (netbsd-386-cgo), const RTV_SPIPE = 16 +pkg syscall (netbsd-386-cgo), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-386-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-386-cgo), const RUSAGE_SELF = 0 +pkg syscall (netbsd-386-cgo), const SCM_CREDS = 4 +pkg syscall (netbsd-386-cgo), const SCM_RIGHTS = 1 +pkg syscall (netbsd-386-cgo), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-386-cgo), const SIGBUS = 10 +pkg syscall (netbsd-386-cgo), const SIGCHLD = 20 +pkg syscall (netbsd-386-cgo), const SIGCONT = 19 +pkg syscall (netbsd-386-cgo), const SIGEMT = 7 +pkg syscall (netbsd-386-cgo), const SIGINFO = 29 +pkg syscall (netbsd-386-cgo), const SIGIO = 23 +pkg syscall (netbsd-386-cgo), const SIGIOT = 6 +pkg syscall (netbsd-386-cgo), const SIGPROF = 27 +pkg syscall (netbsd-386-cgo), const SIGPWR = 32 +pkg syscall (netbsd-386-cgo), const SIGSTOP = 17 +pkg syscall (netbsd-386-cgo), const SIGSYS = 12 +pkg syscall (netbsd-386-cgo), const SIGTSTP = 18 +pkg syscall (netbsd-386-cgo), const SIGTTIN = 21 +pkg syscall (netbsd-386-cgo), const SIGTTOU = 22 +pkg syscall (netbsd-386-cgo), const SIGURG = 16 +pkg syscall (netbsd-386-cgo), const SIGUSR1 = 30 +pkg syscall (netbsd-386-cgo), const SIGUSR2 = 31 +pkg syscall (netbsd-386-cgo), const SIGVTALRM = 26 +pkg syscall (netbsd-386-cgo), const SIGWINCH = 28 +pkg syscall (netbsd-386-cgo), const SIGXCPU = 24 +pkg syscall (netbsd-386-cgo), const SIGXFSZ = 25 +pkg syscall (netbsd-386-cgo), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-386-cgo), const SIOCADDRT = 2150658570 +pkg syscall (netbsd-386-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-386-cgo), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-386-cgo), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-386-cgo), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-386-cgo), const SIOCDELRT = 2150658571 +pkg syscall (netbsd-386-cgo), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-386-cgo), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-386-cgo), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-386-cgo), const SIOCGDRVSPEC = 3223087483 +pkg syscall (netbsd-386-cgo), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-386-cgo), const SIOCGETSGCNT = 3222566196 +pkg syscall (netbsd-386-cgo), const SIOCGETVIFCNT = 3222566195 +pkg syscall (netbsd-386-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-386-cgo), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-386-cgo), const SIOCGIFADDRPREF = 3230951712 +pkg syscall (netbsd-386-cgo), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-386-cgo), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-386-cgo), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-386-cgo), const SIOCGIFCONF = 3221776678 +pkg syscall (netbsd-386-cgo), const SIOCGIFDATA = 3230951813 +pkg syscall (netbsd-386-cgo), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-386-cgo), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-386-cgo), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-386-cgo), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-386-cgo), const SIOCGIFMEDIA = 3223873846 +pkg syscall (netbsd-386-cgo), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-386-cgo), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-386-cgo), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-386-cgo), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-386-cgo), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-386-cgo), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-386-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-386-cgo), const SIOCGLINKSTR = 3223087495 +pkg syscall (netbsd-386-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-386-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-386-cgo), const SIOCGVH = 3230689667 +pkg syscall (netbsd-386-cgo), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-386-cgo), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-386-cgo), const SIOCIFGCLONERS = 3222038904 +pkg syscall (netbsd-386-cgo), const SIOCINITIFADDR = 3225708932 +pkg syscall (netbsd-386-cgo), const SIOCSDRVSPEC = 2149345659 +pkg syscall (netbsd-386-cgo), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-386-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-386-cgo), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-386-cgo), const SIOCSIFADDRPREF = 2157209887 +pkg syscall (netbsd-386-cgo), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-386-cgo), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-386-cgo), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-386-cgo), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-386-cgo), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-386-cgo), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-386-cgo), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-386-cgo), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-386-cgo), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-386-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-386-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-386-cgo), const SIOCSLINKSTR = 2149345672 +pkg syscall (netbsd-386-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-386-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-386-cgo), const SIOCSVH = 3230689666 +pkg syscall (netbsd-386-cgo), const SIOCZIFDATA = 3230951814 +pkg syscall (netbsd-386-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-386-cgo), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-386-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-386-cgo), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-386-cgo), const SOCK_RDM = 4 +pkg syscall (netbsd-386-cgo), const SOL_SOCKET = 65535 +pkg syscall (netbsd-386-cgo), const SOMAXCONN = 128 +pkg syscall (netbsd-386-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-386-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-386-cgo), const SO_BROADCAST = 32 +pkg syscall (netbsd-386-cgo), const SO_DEBUG = 1 +pkg syscall (netbsd-386-cgo), const SO_DONTROUTE = 16 +pkg syscall (netbsd-386-cgo), const SO_ERROR = 4103 +pkg syscall (netbsd-386-cgo), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-386-cgo), const SO_LINGER = 128 +pkg syscall (netbsd-386-cgo), const SO_NOHEADER = 4106 +pkg syscall (netbsd-386-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-386-cgo), const SO_OOBINLINE = 256 +pkg syscall (netbsd-386-cgo), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-386-cgo), const SO_RCVBUF = 4098 +pkg syscall (netbsd-386-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-386-cgo), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-386-cgo), const SO_REUSEADDR = 4 +pkg syscall (netbsd-386-cgo), const SO_REUSEPORT = 512 +pkg syscall (netbsd-386-cgo), const SO_SNDBUF = 4097 +pkg syscall (netbsd-386-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-386-cgo), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-386-cgo), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-386-cgo), const SO_TYPE = 4104 +pkg syscall (netbsd-386-cgo), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-386-cgo), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-386-cgo), const SYS_ACCEPT = 30 +pkg syscall (netbsd-386-cgo), const SYS_ACCESS = 33 +pkg syscall (netbsd-386-cgo), const SYS_ACCT = 51 +pkg syscall (netbsd-386-cgo), const SYS_ADJTIME = 421 +pkg syscall (netbsd-386-cgo), const SYS_BIND = 104 +pkg syscall (netbsd-386-cgo), const SYS_BREAK = 17 +pkg syscall (netbsd-386-cgo), const SYS_CHDIR = 12 +pkg syscall (netbsd-386-cgo), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-386-cgo), const SYS_CHMOD = 15 +pkg syscall (netbsd-386-cgo), const SYS_CHOWN = 16 +pkg syscall (netbsd-386-cgo), const SYS_CHROOT = 61 +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-386-cgo), const SYS_CLOSE = 6 +pkg syscall (netbsd-386-cgo), const SYS_CONNECT = 98 +pkg syscall (netbsd-386-cgo), const SYS_DUP = 41 +pkg syscall (netbsd-386-cgo), const SYS_DUP2 = 90 +pkg syscall (netbsd-386-cgo), const SYS_DUP3 = 454 +pkg syscall (netbsd-386-cgo), const SYS_EXECVE = 59 +pkg syscall (netbsd-386-cgo), const SYS_EXIT = 1 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-386-cgo), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-386-cgo), const SYS_FCHDIR = 13 +pkg syscall (netbsd-386-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-386-cgo), const SYS_FCHMOD = 124 +pkg syscall (netbsd-386-cgo), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-386-cgo), const SYS_FCHOWN = 123 +pkg syscall (netbsd-386-cgo), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-386-cgo), const SYS_FCHROOT = 297 +pkg syscall (netbsd-386-cgo), const SYS_FCNTL = 92 +pkg syscall (netbsd-386-cgo), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-386-cgo), const SYS_FEXECVE = 465 +pkg syscall (netbsd-386-cgo), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-386-cgo), const SYS_FHSTAT = 451 +pkg syscall (netbsd-386-cgo), const SYS_FKTRACE = 288 +pkg syscall (netbsd-386-cgo), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-386-cgo), const SYS_FLOCK = 131 +pkg syscall (netbsd-386-cgo), const SYS_FORK = 2 +pkg syscall (netbsd-386-cgo), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-386-cgo), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-386-cgo), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-386-cgo), const SYS_FSTAT = 440 +pkg syscall (netbsd-386-cgo), const SYS_FSTATAT = 466 +pkg syscall (netbsd-386-cgo), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-386-cgo), const SYS_FSYNC = 95 +pkg syscall (netbsd-386-cgo), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-386-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-386-cgo), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-386-cgo), const SYS_FUTIMES = 423 +pkg syscall (netbsd-386-cgo), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-386-cgo), const SYS_GETDENTS = 390 +pkg syscall (netbsd-386-cgo), const SYS_GETEGID = 43 +pkg syscall (netbsd-386-cgo), const SYS_GETEUID = 25 +pkg syscall (netbsd-386-cgo), const SYS_GETFH = 395 +pkg syscall (netbsd-386-cgo), const SYS_GETGID = 47 +pkg syscall (netbsd-386-cgo), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-386-cgo), const SYS_GETITIMER = 426 +pkg syscall (netbsd-386-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-386-cgo), const SYS_GETPGID = 207 +pkg syscall (netbsd-386-cgo), const SYS_GETPGRP = 81 +pkg syscall (netbsd-386-cgo), const SYS_GETPID = 20 +pkg syscall (netbsd-386-cgo), const SYS_GETPPID = 39 +pkg syscall (netbsd-386-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-386-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-386-cgo), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-386-cgo), const SYS_GETSID = 286 +pkg syscall (netbsd-386-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-386-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-386-cgo), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-386-cgo), const SYS_GETUID = 24 +pkg syscall (netbsd-386-cgo), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-386-cgo), const SYS_GETXATTR = 378 +pkg syscall (netbsd-386-cgo), const SYS_IOCTL = 54 +pkg syscall (netbsd-386-cgo), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-386-cgo), const SYS_KEVENT = 435 +pkg syscall (netbsd-386-cgo), const SYS_KILL = 37 +pkg syscall (netbsd-386-cgo), const SYS_KQUEUE = 344 +pkg syscall (netbsd-386-cgo), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-386-cgo), const SYS_KTRACE = 45 +pkg syscall (netbsd-386-cgo), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-386-cgo), const SYS_LCHMOD = 274 +pkg syscall (netbsd-386-cgo), const SYS_LCHOWN = 275 +pkg syscall (netbsd-386-cgo), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-386-cgo), const SYS_LINK = 9 +pkg syscall (netbsd-386-cgo), const SYS_LINKAT = 457 +pkg syscall (netbsd-386-cgo), const SYS_LISTEN = 106 +pkg syscall (netbsd-386-cgo), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-386-cgo), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-386-cgo), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-386-cgo), const SYS_LSEEK = 199 +pkg syscall (netbsd-386-cgo), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-386-cgo), const SYS_LSTAT = 441 +pkg syscall (netbsd-386-cgo), const SYS_LUTIMES = 424 +pkg syscall (netbsd-386-cgo), const SYS_MADVISE = 75 +pkg syscall (netbsd-386-cgo), const SYS_MINCORE = 78 +pkg syscall (netbsd-386-cgo), const SYS_MINHERIT = 273 +pkg syscall (netbsd-386-cgo), const SYS_MKDIR = 136 +pkg syscall (netbsd-386-cgo), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-386-cgo), const SYS_MKFIFO = 132 +pkg syscall (netbsd-386-cgo), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-386-cgo), const SYS_MKNOD = 450 +pkg syscall (netbsd-386-cgo), const SYS_MKNODAT = 460 +pkg syscall (netbsd-386-cgo), const SYS_MLOCK = 203 +pkg syscall (netbsd-386-cgo), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-386-cgo), const SYS_MMAP = 197 +pkg syscall (netbsd-386-cgo), const SYS_MODCTL = 246 +pkg syscall (netbsd-386-cgo), const SYS_MOUNT = 410 +pkg syscall (netbsd-386-cgo), const SYS_MPROTECT = 74 +pkg syscall (netbsd-386-cgo), const SYS_MREMAP = 411 +pkg syscall (netbsd-386-cgo), const SYS_MSGCTL = 444 +pkg syscall (netbsd-386-cgo), const SYS_MSGGET = 225 +pkg syscall (netbsd-386-cgo), const SYS_MSGRCV = 227 +pkg syscall (netbsd-386-cgo), const SYS_MSGSND = 226 +pkg syscall (netbsd-386-cgo), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-386-cgo), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-386-cgo), const SYS_MUNMAP = 73 +pkg syscall (netbsd-386-cgo), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-386-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-386-cgo), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-386-cgo), const SYS_OPEN = 5 +pkg syscall (netbsd-386-cgo), const SYS_OPENAT = 468 +pkg syscall (netbsd-386-cgo), const SYS_PACCEPT = 456 +pkg syscall (netbsd-386-cgo), const SYS_PATHCONF = 191 +pkg syscall (netbsd-386-cgo), const SYS_PIPE = 42 +pkg syscall (netbsd-386-cgo), const SYS_PIPE2 = 453 +pkg syscall (netbsd-386-cgo), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-386-cgo), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-386-cgo), const SYS_POLL = 209 +pkg syscall (netbsd-386-cgo), const SYS_POLLTS = 437 +pkg syscall (netbsd-386-cgo), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-386-cgo), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-386-cgo), const SYS_PREAD = 173 +pkg syscall (netbsd-386-cgo), const SYS_PREADV = 289 +pkg syscall (netbsd-386-cgo), const SYS_PROFIL = 44 +pkg syscall (netbsd-386-cgo), const SYS_PSELECT = 436 +pkg syscall (netbsd-386-cgo), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-386-cgo), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-386-cgo), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-386-cgo), const SYS_PTRACE = 26 +pkg syscall (netbsd-386-cgo), const SYS_PWRITE = 174 +pkg syscall (netbsd-386-cgo), const SYS_PWRITEV = 290 +pkg syscall (netbsd-386-cgo), const SYS_RASCTL = 343 +pkg syscall (netbsd-386-cgo), const SYS_READ = 3 +pkg syscall (netbsd-386-cgo), const SYS_READLINK = 58 +pkg syscall (netbsd-386-cgo), const SYS_READLINKAT = 469 +pkg syscall (netbsd-386-cgo), const SYS_READV = 120 +pkg syscall (netbsd-386-cgo), const SYS_REBOOT = 208 +pkg syscall (netbsd-386-cgo), const SYS_RECVFROM = 29 +pkg syscall (netbsd-386-cgo), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-386-cgo), const SYS_RECVMSG = 27 +pkg syscall (netbsd-386-cgo), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-386-cgo), const SYS_RENAME = 128 +pkg syscall (netbsd-386-cgo), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-386-cgo), const SYS_REVOKE = 56 +pkg syscall (netbsd-386-cgo), const SYS_RMDIR = 137 +pkg syscall (netbsd-386-cgo), const SYS_SBRK = 69 +pkg syscall (netbsd-386-cgo), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-386-cgo), const SYS_SELECT = 417 +pkg syscall (netbsd-386-cgo), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-386-cgo), const SYS_SEMGET = 221 +pkg syscall (netbsd-386-cgo), const SYS_SEMOP = 222 +pkg syscall (netbsd-386-cgo), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-386-cgo), const SYS_SENDMSG = 28 +pkg syscall (netbsd-386-cgo), const SYS_SENDTO = 133 +pkg syscall (netbsd-386-cgo), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-386-cgo), const SYS_SETEGID = 182 +pkg syscall (netbsd-386-cgo), const SYS_SETEUID = 183 +pkg syscall (netbsd-386-cgo), const SYS_SETGID = 181 +pkg syscall (netbsd-386-cgo), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-386-cgo), const SYS_SETITIMER = 425 +pkg syscall (netbsd-386-cgo), const SYS_SETPGID = 82 +pkg syscall (netbsd-386-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-386-cgo), const SYS_SETREGID = 127 +pkg syscall (netbsd-386-cgo), const SYS_SETREUID = 126 +pkg syscall (netbsd-386-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-386-cgo), const SYS_SETSID = 147 +pkg syscall (netbsd-386-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-386-cgo), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-386-cgo), const SYS_SETUID = 23 +pkg syscall (netbsd-386-cgo), const SYS_SETXATTR = 375 +pkg syscall (netbsd-386-cgo), const SYS_SHMAT = 228 +pkg syscall (netbsd-386-cgo), const SYS_SHMCTL = 443 +pkg syscall (netbsd-386-cgo), const SYS_SHMDT = 230 +pkg syscall (netbsd-386-cgo), const SYS_SHMGET = 231 +pkg syscall (netbsd-386-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-386-cgo), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-386-cgo), const SYS_SOCKET = 394 +pkg syscall (netbsd-386-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-386-cgo), const SYS_SSTK = 70 +pkg syscall (netbsd-386-cgo), const SYS_STAT = 439 +pkg syscall (netbsd-386-cgo), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-386-cgo), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-386-cgo), const SYS_SYMLINK = 57 +pkg syscall (netbsd-386-cgo), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-386-cgo), const SYS_SYNC = 36 +pkg syscall (netbsd-386-cgo), const SYS_SYSARCH = 165 +pkg syscall (netbsd-386-cgo), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-386-cgo), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-386-cgo), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-386-cgo), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-386-cgo), const SYS_UMASK = 60 +pkg syscall (netbsd-386-cgo), const SYS_UNDELETE = 205 +pkg syscall (netbsd-386-cgo), const SYS_UNLINK = 10 +pkg syscall (netbsd-386-cgo), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-386-cgo), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-386-cgo), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-386-cgo), const SYS_UTIMES = 420 +pkg syscall (netbsd-386-cgo), const SYS_UTRACE = 306 +pkg syscall (netbsd-386-cgo), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-386-cgo), const SYS_VADVISE = 72 +pkg syscall (netbsd-386-cgo), const SYS_VFORK = 66 +pkg syscall (netbsd-386-cgo), const SYS_WAIT4 = 449 +pkg syscall (netbsd-386-cgo), const SYS_WRITE = 4 +pkg syscall (netbsd-386-cgo), const SYS_WRITEV = 121 +pkg syscall (netbsd-386-cgo), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-386-cgo), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-386-cgo), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-386-cgo), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-386-cgo), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-386-cgo), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-386-cgo), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-386-cgo), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-386-cgo), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-386-cgo), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-386-cgo), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-386-cgo), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-386-cgo), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-386-cgo), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-386-cgo), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-386-cgo), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-386-cgo), const SYS___CLONE = 287 +pkg syscall (netbsd-386-cgo), const SYS___GETCWD = 296 +pkg syscall (netbsd-386-cgo), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-386-cgo), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-386-cgo), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-386-cgo), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-386-cgo), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-386-cgo), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-386-cgo), const SYS___SEMCTL = 442 +pkg syscall (netbsd-386-cgo), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-386-cgo), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-386-cgo), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-386-cgo), const SYS___SYSCTL = 202 +pkg syscall (netbsd-386-cgo), const S_ARCH1 = 65536 +pkg syscall (netbsd-386-cgo), const S_ARCH2 = 131072 +pkg syscall (netbsd-386-cgo), const S_BLKSIZE = 512 +pkg syscall (netbsd-386-cgo), const S_IEXEC = 64 +pkg syscall (netbsd-386-cgo), const S_IFMT = 61440 +pkg syscall (netbsd-386-cgo), const S_IFWHT = 57344 +pkg syscall (netbsd-386-cgo), const S_IREAD = 256 +pkg syscall (netbsd-386-cgo), const S_IRGRP = 32 +pkg syscall (netbsd-386-cgo), const S_IROTH = 4 +pkg syscall (netbsd-386-cgo), const S_IRWXG = 56 +pkg syscall (netbsd-386-cgo), const S_IRWXO = 7 +pkg syscall (netbsd-386-cgo), const S_IRWXU = 448 +pkg syscall (netbsd-386-cgo), const S_ISTXT = 512 +pkg syscall (netbsd-386-cgo), const S_IWGRP = 16 +pkg syscall (netbsd-386-cgo), const S_IWOTH = 2 +pkg syscall (netbsd-386-cgo), const S_IWRITE = 128 +pkg syscall (netbsd-386-cgo), const S_IXGRP = 8 +pkg syscall (netbsd-386-cgo), const S_IXOTH = 1 +pkg syscall (netbsd-386-cgo), const S_LOGIN_SET = 1 +pkg syscall (netbsd-386-cgo), const SizeofBpfHdr = 20 +pkg syscall (netbsd-386-cgo), const SizeofBpfInsn = 8 +pkg syscall (netbsd-386-cgo), const SizeofBpfProgram = 8 +pkg syscall (netbsd-386-cgo), const SizeofBpfStat = 128 +pkg syscall (netbsd-386-cgo), const SizeofBpfVersion = 4 +pkg syscall (netbsd-386-cgo), const SizeofCmsghdr = 12 +pkg syscall (netbsd-386-cgo), const SizeofIPMreq = 8 +pkg syscall (netbsd-386-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-386-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-386-cgo), const SizeofIfData = 132 +pkg syscall (netbsd-386-cgo), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-386-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-386-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-386-cgo), const SizeofLinger = 8 +pkg syscall (netbsd-386-cgo), const SizeofMsghdr = 28 +pkg syscall (netbsd-386-cgo), const SizeofRtMetrics = 80 +pkg syscall (netbsd-386-cgo), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-386-cgo), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-386-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-386-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-386-cgo), const TCIFLUSH = 1 +pkg syscall (netbsd-386-cgo), const TCIOFLUSH = 3 +pkg syscall (netbsd-386-cgo), const TCOFLUSH = 2 +pkg syscall (netbsd-386-cgo), const TCP_CONGCTL = 32 +pkg syscall (netbsd-386-cgo), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-386-cgo), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-386-cgo), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-386-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-386-cgo), const TCP_MAXBURST = 4 +pkg syscall (netbsd-386-cgo), const TCP_MAXSEG = 2 +pkg syscall (netbsd-386-cgo), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-386-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-386-cgo), const TCP_MD5SIG = 16 +pkg syscall (netbsd-386-cgo), const TCP_MINMSS = 216 +pkg syscall (netbsd-386-cgo), const TCP_MSS = 536 +pkg syscall (netbsd-386-cgo), const TCSAFLUSH = 2 +pkg syscall (netbsd-386-cgo), const TIOCCBRK = 536900730 +pkg syscall (netbsd-386-cgo), const TIOCCDTR = 536900728 +pkg syscall (netbsd-386-cgo), const TIOCCONS = 2147775586 +pkg syscall (netbsd-386-cgo), const TIOCDCDTIMESTAMP = 1074558040 +pkg syscall (netbsd-386-cgo), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-386-cgo), const TIOCEXCL = 536900621 +pkg syscall (netbsd-386-cgo), const TIOCEXT = 2147775584 +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-386-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-386-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-386-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-386-cgo), const TIOCGETA = 1076655123 +pkg syscall (netbsd-386-cgo), const TIOCGETD = 1074033690 +pkg syscall (netbsd-386-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-386-cgo), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-386-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-386-cgo), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-386-cgo), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-386-cgo), const TIOCGSID = 1074033763 +pkg syscall (netbsd-386-cgo), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-386-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-386-cgo), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-386-cgo), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-386-cgo), const TIOCMGET = 1074033770 +pkg syscall (netbsd-386-cgo), const TIOCMSET = 2147775597 +pkg syscall (netbsd-386-cgo), const TIOCM_CAR = 64 +pkg syscall (netbsd-386-cgo), const TIOCM_CD = 64 +pkg syscall (netbsd-386-cgo), const TIOCM_CTS = 32 +pkg syscall (netbsd-386-cgo), const TIOCM_DSR = 256 +pkg syscall (netbsd-386-cgo), const TIOCM_DTR = 2 +pkg syscall (netbsd-386-cgo), const TIOCM_LE = 1 +pkg syscall (netbsd-386-cgo), const TIOCM_RI = 128 +pkg syscall (netbsd-386-cgo), const TIOCM_RNG = 128 +pkg syscall (netbsd-386-cgo), const TIOCM_RTS = 4 +pkg syscall (netbsd-386-cgo), const TIOCM_SR = 16 +pkg syscall (netbsd-386-cgo), const TIOCM_ST = 8 +pkg syscall (netbsd-386-cgo), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-386-cgo), const TIOCNXCL = 536900622 +pkg syscall (netbsd-386-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-386-cgo), const TIOCPKT = 2147775600 +pkg syscall (netbsd-386-cgo), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-386-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-386-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-386-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-386-cgo), const TIOCPKT_START = 8 +pkg syscall (netbsd-386-cgo), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-386-cgo), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-386-cgo), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-386-cgo), const TIOCRCVFRAME = 2147775557 +pkg syscall (netbsd-386-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-386-cgo), const TIOCSBRK = 536900731 +pkg syscall (netbsd-386-cgo), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-386-cgo), const TIOCSDTR = 536900729 +pkg syscall (netbsd-386-cgo), const TIOCSETA = 2150396948 +pkg syscall (netbsd-386-cgo), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-386-cgo), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-386-cgo), const TIOCSETD = 2147775515 +pkg syscall (netbsd-386-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-386-cgo), const TIOCSIG = 536900703 +pkg syscall (netbsd-386-cgo), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-386-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-386-cgo), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-386-cgo), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-386-cgo), const TIOCSTART = 536900718 +pkg syscall (netbsd-386-cgo), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-386-cgo), const TIOCSTI = 2147578994 +pkg syscall (netbsd-386-cgo), const TIOCSTOP = 536900719 +pkg syscall (netbsd-386-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-386-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-386-cgo), const TIOCXMTFRAME = 2147775556 +pkg syscall (netbsd-386-cgo), const TOSTOP = 4194304 +pkg syscall (netbsd-386-cgo), const VDISCARD = 15 +pkg syscall (netbsd-386-cgo), const VDSUSP = 11 +pkg syscall (netbsd-386-cgo), const VEOF = 0 +pkg syscall (netbsd-386-cgo), const VEOL = 1 +pkg syscall (netbsd-386-cgo), const VEOL2 = 2 +pkg syscall (netbsd-386-cgo), const VERASE = 3 +pkg syscall (netbsd-386-cgo), const VINTR = 8 +pkg syscall (netbsd-386-cgo), const VKILL = 5 +pkg syscall (netbsd-386-cgo), const VLNEXT = 14 +pkg syscall (netbsd-386-cgo), const VMIN = 16 +pkg syscall (netbsd-386-cgo), const VQUIT = 9 +pkg syscall (netbsd-386-cgo), const VREPRINT = 6 +pkg syscall (netbsd-386-cgo), const VSTART = 12 +pkg syscall (netbsd-386-cgo), const VSTATUS = 18 +pkg syscall (netbsd-386-cgo), const VSTOP = 13 +pkg syscall (netbsd-386-cgo), const VSUSP = 10 +pkg syscall (netbsd-386-cgo), const VTIME = 17 +pkg syscall (netbsd-386-cgo), const VWERASE = 4 +pkg syscall (netbsd-386-cgo), const WALL = 8 +pkg syscall (netbsd-386-cgo), const WALLSIG = 8 +pkg syscall (netbsd-386-cgo), const WALTSIG = 4 +pkg syscall (netbsd-386-cgo), const WCLONE = 4 +pkg syscall (netbsd-386-cgo), const WCOREFLAG = 128 +pkg syscall (netbsd-386-cgo), const WNOHANG = 1 +pkg syscall (netbsd-386-cgo), const WNOWAIT = 65536 +pkg syscall (netbsd-386-cgo), const WNOZOMBIE = 131072 +pkg syscall (netbsd-386-cgo), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-386-cgo), const WSTOPPED = 127 +pkg syscall (netbsd-386-cgo), const WUNTRACED = 2 +pkg syscall (netbsd-amd64), const AF_APPLETALK = 16 +pkg syscall (netbsd-amd64), const AF_ARP = 28 +pkg syscall (netbsd-amd64), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-amd64), const AF_CCITT = 10 +pkg syscall (netbsd-amd64), const AF_CHAOS = 5 +pkg syscall (netbsd-amd64), const AF_CNT = 21 +pkg syscall (netbsd-amd64), const AF_COIP = 20 +pkg syscall (netbsd-amd64), const AF_DATAKIT = 9 +pkg syscall (netbsd-amd64), const AF_DECnet = 12 +pkg syscall (netbsd-amd64), const AF_DLI = 13 +pkg syscall (netbsd-amd64), const AF_E164 = 26 +pkg syscall (netbsd-amd64), const AF_ECMA = 8 +pkg syscall (netbsd-amd64), const AF_HYLINK = 15 +pkg syscall (netbsd-amd64), const AF_IEEE80211 = 32 +pkg syscall (netbsd-amd64), const AF_IMPLINK = 3 +pkg syscall (netbsd-amd64), const AF_INET6 = 24 +pkg syscall (netbsd-amd64), const AF_IPX = 23 +pkg syscall (netbsd-amd64), const AF_ISDN = 26 +pkg syscall (netbsd-amd64), const AF_ISO = 7 +pkg syscall (netbsd-amd64), const AF_LAT = 14 +pkg syscall (netbsd-amd64), const AF_LINK = 18 +pkg syscall (netbsd-amd64), const AF_LOCAL = 1 +pkg syscall (netbsd-amd64), const AF_MAX = 35 +pkg syscall (netbsd-amd64), const AF_MPLS = 33 +pkg syscall (netbsd-amd64), const AF_NATM = 27 +pkg syscall (netbsd-amd64), const AF_NS = 6 +pkg syscall (netbsd-amd64), const AF_OROUTE = 17 +pkg syscall (netbsd-amd64), const AF_OSI = 7 +pkg syscall (netbsd-amd64), const AF_PUP = 4 +pkg syscall (netbsd-amd64), const AF_ROUTE = 34 +pkg syscall (netbsd-amd64), const AF_SNA = 11 +pkg syscall (netbsd-amd64), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-amd64), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-amd64), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-amd64), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-amd64), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-amd64), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-amd64), const B0 = 0 +pkg syscall (netbsd-amd64), const B110 = 110 +pkg syscall (netbsd-amd64), const B115200 = 115200 +pkg syscall (netbsd-amd64), const B1200 = 1200 +pkg syscall (netbsd-amd64), const B134 = 134 +pkg syscall (netbsd-amd64), const B14400 = 14400 +pkg syscall (netbsd-amd64), const B150 = 150 +pkg syscall (netbsd-amd64), const B1800 = 1800 +pkg syscall (netbsd-amd64), const B19200 = 19200 +pkg syscall (netbsd-amd64), const B200 = 200 +pkg syscall (netbsd-amd64), const B230400 = 230400 +pkg syscall (netbsd-amd64), const B2400 = 2400 +pkg syscall (netbsd-amd64), const B28800 = 28800 +pkg syscall (netbsd-amd64), const B300 = 300 +pkg syscall (netbsd-amd64), const B38400 = 38400 +pkg syscall (netbsd-amd64), const B460800 = 460800 +pkg syscall (netbsd-amd64), const B4800 = 4800 +pkg syscall (netbsd-amd64), const B50 = 50 +pkg syscall (netbsd-amd64), const B57600 = 57600 +pkg syscall (netbsd-amd64), const B600 = 600 +pkg syscall (netbsd-amd64), const B7200 = 7200 +pkg syscall (netbsd-amd64), const B75 = 75 +pkg syscall (netbsd-amd64), const B76800 = 76800 +pkg syscall (netbsd-amd64), const B921600 = 921600 +pkg syscall (netbsd-amd64), const B9600 = 9600 +pkg syscall (netbsd-amd64), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-amd64), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-amd64), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-amd64), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-amd64), const BIOCGDLTLIST = 3222291063 +pkg syscall (netbsd-amd64), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-amd64), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-amd64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-amd64), const BIOCGRTIMEOUT = 1074807419 +pkg syscall (netbsd-amd64), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-amd64), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-amd64), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-amd64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-amd64), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-amd64), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-amd64), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-amd64), const BIOCSETF = 2148549223 +pkg syscall (netbsd-amd64), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-amd64), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-amd64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-amd64), const BIOCSRTIMEOUT = 2148549242 +pkg syscall (netbsd-amd64), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-amd64), const BIOCSTCPF = 2148549234 +pkg syscall (netbsd-amd64), const BIOCSUDPF = 2148549235 +pkg syscall (netbsd-amd64), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-amd64), const BPF_A = 16 +pkg syscall (netbsd-amd64), const BPF_ABS = 32 +pkg syscall (netbsd-amd64), const BPF_ADD = 0 +pkg syscall (netbsd-amd64), const BPF_ALIGNMENT = 8 +pkg syscall (netbsd-amd64), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-amd64), const BPF_ALU = 4 +pkg syscall (netbsd-amd64), const BPF_AND = 80 +pkg syscall (netbsd-amd64), const BPF_B = 16 +pkg syscall (netbsd-amd64), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-amd64), const BPF_DIV = 48 +pkg syscall (netbsd-amd64), const BPF_H = 8 +pkg syscall (netbsd-amd64), const BPF_IMM = 0 +pkg syscall (netbsd-amd64), const BPF_IND = 64 +pkg syscall (netbsd-amd64), const BPF_JA = 0 +pkg syscall (netbsd-amd64), const BPF_JEQ = 16 +pkg syscall (netbsd-amd64), const BPF_JGE = 48 +pkg syscall (netbsd-amd64), const BPF_JGT = 32 +pkg syscall (netbsd-amd64), const BPF_JMP = 5 +pkg syscall (netbsd-amd64), const BPF_JSET = 64 +pkg syscall (netbsd-amd64), const BPF_K = 0 +pkg syscall (netbsd-amd64), const BPF_LD = 0 +pkg syscall (netbsd-amd64), const BPF_LDX = 1 +pkg syscall (netbsd-amd64), const BPF_LEN = 128 +pkg syscall (netbsd-amd64), const BPF_LSH = 96 +pkg syscall (netbsd-amd64), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-amd64), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-amd64), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-amd64), const BPF_MEM = 96 +pkg syscall (netbsd-amd64), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-amd64), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-amd64), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-amd64), const BPF_MISC = 7 +pkg syscall (netbsd-amd64), const BPF_MSH = 160 +pkg syscall (netbsd-amd64), const BPF_MUL = 32 +pkg syscall (netbsd-amd64), const BPF_NEG = 128 +pkg syscall (netbsd-amd64), const BPF_OR = 64 +pkg syscall (netbsd-amd64), const BPF_RELEASE = 199606 +pkg syscall (netbsd-amd64), const BPF_RET = 6 +pkg syscall (netbsd-amd64), const BPF_RSH = 112 +pkg syscall (netbsd-amd64), const BPF_ST = 2 +pkg syscall (netbsd-amd64), const BPF_STX = 3 +pkg syscall (netbsd-amd64), const BPF_SUB = 16 +pkg syscall (netbsd-amd64), const BPF_TAX = 0 +pkg syscall (netbsd-amd64), const BPF_TXA = 128 +pkg syscall (netbsd-amd64), const BPF_W = 0 +pkg syscall (netbsd-amd64), const BPF_X = 8 +pkg syscall (netbsd-amd64), const BRKINT = 2 +pkg syscall (netbsd-amd64), const CFLUSH = 15 +pkg syscall (netbsd-amd64), const CLOCAL = 32768 +pkg syscall (netbsd-amd64), const CREAD = 2048 +pkg syscall (netbsd-amd64), const CS5 = 0 +pkg syscall (netbsd-amd64), const CS6 = 256 +pkg syscall (netbsd-amd64), const CS7 = 512 +pkg syscall (netbsd-amd64), const CS8 = 768 +pkg syscall (netbsd-amd64), const CSIZE = 768 +pkg syscall (netbsd-amd64), const CSTART = 17 +pkg syscall (netbsd-amd64), const CSTATUS = 20 +pkg syscall (netbsd-amd64), const CSTOP = 19 +pkg syscall (netbsd-amd64), const CSTOPB = 1024 +pkg syscall (netbsd-amd64), const CSUSP = 26 +pkg syscall (netbsd-amd64), const CTL_MAXNAME = 12 +pkg syscall (netbsd-amd64), const CTL_NET = 4 +pkg syscall (netbsd-amd64), const CTL_QUERY = -2 +pkg syscall (netbsd-amd64), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-amd64), const DLT_A429 = 184 +pkg syscall (netbsd-amd64), const DLT_A653_ICM = 185 +pkg syscall (netbsd-amd64), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-amd64), const DLT_AOS = 222 +pkg syscall (netbsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-amd64), const DLT_ARCNET = 7 +pkg syscall (netbsd-amd64), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-amd64), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-amd64), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-amd64), const DLT_AURORA = 126 +pkg syscall (netbsd-amd64), const DLT_AX25 = 3 +pkg syscall (netbsd-amd64), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-amd64), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-amd64), const DLT_CAN20B = 190 +pkg syscall (netbsd-amd64), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-amd64), const DLT_CHAOS = 5 +pkg syscall (netbsd-amd64), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-amd64), const DLT_C_HDLC = 104 +pkg syscall (netbsd-amd64), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-amd64), const DLT_DECT = 221 +pkg syscall (netbsd-amd64), const DLT_DOCSIS = 143 +pkg syscall (netbsd-amd64), const DLT_ECONET = 115 +pkg syscall (netbsd-amd64), const DLT_EN10MB = 1 +pkg syscall (netbsd-amd64), const DLT_EN3MB = 2 +pkg syscall (netbsd-amd64), const DLT_ENC = 109 +pkg syscall (netbsd-amd64), const DLT_ERF = 197 +pkg syscall (netbsd-amd64), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-amd64), const DLT_ERF_POS = 176 +pkg syscall (netbsd-amd64), const DLT_FC_2 = 224 +pkg syscall (netbsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-amd64), const DLT_FDDI = 10 +pkg syscall (netbsd-amd64), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-amd64), const DLT_FRELAY = 107 +pkg syscall (netbsd-amd64), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-amd64), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-amd64), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-amd64), const DLT_GPF_F = 171 +pkg syscall (netbsd-amd64), const DLT_GPF_T = 170 +pkg syscall (netbsd-amd64), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-amd64), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-amd64), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-amd64), const DLT_HDLC = 16 +pkg syscall (netbsd-amd64), const DLT_HHDLC = 121 +pkg syscall (netbsd-amd64), const DLT_HIPPI = 15 +pkg syscall (netbsd-amd64), const DLT_IBM_SN = 146 +pkg syscall (netbsd-amd64), const DLT_IBM_SP = 145 +pkg syscall (netbsd-amd64), const DLT_IEEE802 = 6 +pkg syscall (netbsd-amd64), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-amd64), const DLT_IPMB = 199 +pkg syscall (netbsd-amd64), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-amd64), const DLT_IPNET = 226 +pkg syscall (netbsd-amd64), const DLT_IPV4 = 228 +pkg syscall (netbsd-amd64), const DLT_IPV6 = 229 +pkg syscall (netbsd-amd64), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-amd64), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-amd64), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-amd64), const DLT_LAPD = 203 +pkg syscall (netbsd-amd64), const DLT_LIN = 212 +pkg syscall (netbsd-amd64), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-amd64), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-amd64), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-amd64), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-amd64), const DLT_LOOP = 108 +pkg syscall (netbsd-amd64), const DLT_LTALK = 114 +pkg syscall (netbsd-amd64), const DLT_MFR = 182 +pkg syscall (netbsd-amd64), const DLT_MOST = 211 +pkg syscall (netbsd-amd64), const DLT_MPLS = 219 +pkg syscall (netbsd-amd64), const DLT_MTP2 = 140 +pkg syscall (netbsd-amd64), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-amd64), const DLT_MTP3 = 141 +pkg syscall (netbsd-amd64), const DLT_NULL = 0 +pkg syscall (netbsd-amd64), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-amd64), const DLT_PFLOG = 117 +pkg syscall (netbsd-amd64), const DLT_PFSYNC = 18 +pkg syscall (netbsd-amd64), const DLT_PPI = 192 +pkg syscall (netbsd-amd64), const DLT_PPP = 9 +pkg syscall (netbsd-amd64), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-amd64), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-amd64), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-amd64), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-amd64), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-amd64), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-amd64), const DLT_PRONET = 4 +pkg syscall (netbsd-amd64), const DLT_RAIF1 = 198 +pkg syscall (netbsd-amd64), const DLT_RAW = 12 +pkg syscall (netbsd-amd64), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-amd64), const DLT_RIO = 124 +pkg syscall (netbsd-amd64), const DLT_SCCP = 142 +pkg syscall (netbsd-amd64), const DLT_SITA = 196 +pkg syscall (netbsd-amd64), const DLT_SLIP = 8 +pkg syscall (netbsd-amd64), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-amd64), const DLT_SUNATM = 123 +pkg syscall (netbsd-amd64), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-amd64), const DLT_TZSP = 128 +pkg syscall (netbsd-amd64), const DLT_USB = 186 +pkg syscall (netbsd-amd64), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-amd64), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-amd64), const DLT_WIHART = 223 +pkg syscall (netbsd-amd64), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-amd64), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-amd64), const DT_BLK = 6 +pkg syscall (netbsd-amd64), const DT_CHR = 2 +pkg syscall (netbsd-amd64), const DT_DIR = 4 +pkg syscall (netbsd-amd64), const DT_FIFO = 1 +pkg syscall (netbsd-amd64), const DT_LNK = 10 +pkg syscall (netbsd-amd64), const DT_REG = 8 +pkg syscall (netbsd-amd64), const DT_SOCK = 12 +pkg syscall (netbsd-amd64), const DT_UNKNOWN = 0 +pkg syscall (netbsd-amd64), const DT_WHT = 14 +pkg syscall (netbsd-amd64), const E2BIG = 7 +pkg syscall (netbsd-amd64), const EACCES = 13 +pkg syscall (netbsd-amd64), const EADDRINUSE = 48 +pkg syscall (netbsd-amd64), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-amd64), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-amd64), const EAGAIN = 35 +pkg syscall (netbsd-amd64), const EALREADY = 37 +pkg syscall (netbsd-amd64), const EAUTH = 80 +pkg syscall (netbsd-amd64), const EBADF = 9 +pkg syscall (netbsd-amd64), const EBADMSG = 88 +pkg syscall (netbsd-amd64), const EBADRPC = 72 +pkg syscall (netbsd-amd64), const EBUSY = 16 +pkg syscall (netbsd-amd64), const ECANCELED = 87 +pkg syscall (netbsd-amd64), const ECHILD = 10 +pkg syscall (netbsd-amd64), const ECHO = 8 +pkg syscall (netbsd-amd64), const ECHOCTL = 64 +pkg syscall (netbsd-amd64), const ECHOE = 2 +pkg syscall (netbsd-amd64), const ECHOK = 4 +pkg syscall (netbsd-amd64), const ECHOKE = 1 +pkg syscall (netbsd-amd64), const ECHONL = 16 +pkg syscall (netbsd-amd64), const ECHOPRT = 32 +pkg syscall (netbsd-amd64), const ECONNABORTED = 53 +pkg syscall (netbsd-amd64), const ECONNREFUSED = 61 +pkg syscall (netbsd-amd64), const ECONNRESET = 54 +pkg syscall (netbsd-amd64), const EDEADLK = 11 +pkg syscall (netbsd-amd64), const EDESTADDRREQ = 39 +pkg syscall (netbsd-amd64), const EDOM = 33 +pkg syscall (netbsd-amd64), const EDQUOT = 69 +pkg syscall (netbsd-amd64), const EEXIST = 17 +pkg syscall (netbsd-amd64), const EFAULT = 14 +pkg syscall (netbsd-amd64), const EFBIG = 27 +pkg syscall (netbsd-amd64), const EFTYPE = 79 +pkg syscall (netbsd-amd64), const EHOSTDOWN = 64 +pkg syscall (netbsd-amd64), const EHOSTUNREACH = 65 +pkg syscall (netbsd-amd64), const EIDRM = 82 +pkg syscall (netbsd-amd64), const EILSEQ = 85 +pkg syscall (netbsd-amd64), const EINPROGRESS = 36 +pkg syscall (netbsd-amd64), const EINTR = 4 +pkg syscall (netbsd-amd64), const EINVAL = 22 +pkg syscall (netbsd-amd64), const EIO = 5 +pkg syscall (netbsd-amd64), const EISCONN = 56 +pkg syscall (netbsd-amd64), const EISDIR = 21 +pkg syscall (netbsd-amd64), const ELAST = 96 +pkg syscall (netbsd-amd64), const ELOOP = 62 +pkg syscall (netbsd-amd64), const EMFILE = 24 +pkg syscall (netbsd-amd64), const EMLINK = 31 +pkg syscall (netbsd-amd64), const EMSGSIZE = 40 +pkg syscall (netbsd-amd64), const EMULTIHOP = 94 +pkg syscall (netbsd-amd64), const EMUL_LINUX = 1 +pkg syscall (netbsd-amd64), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-amd64), const EMUL_MAXID = 6 +pkg syscall (netbsd-amd64), const ENAMETOOLONG = 63 +pkg syscall (netbsd-amd64), const ENEEDAUTH = 81 +pkg syscall (netbsd-amd64), const ENETDOWN = 50 +pkg syscall (netbsd-amd64), const ENETRESET = 52 +pkg syscall (netbsd-amd64), const ENETUNREACH = 51 +pkg syscall (netbsd-amd64), const ENFILE = 23 +pkg syscall (netbsd-amd64), const ENOATTR = 93 +pkg syscall (netbsd-amd64), const ENOBUFS = 55 +pkg syscall (netbsd-amd64), const ENODATA = 89 +pkg syscall (netbsd-amd64), const ENODEV = 19 +pkg syscall (netbsd-amd64), const ENOEXEC = 8 +pkg syscall (netbsd-amd64), const ENOLCK = 77 +pkg syscall (netbsd-amd64), const ENOLINK = 95 +pkg syscall (netbsd-amd64), const ENOMEM = 12 +pkg syscall (netbsd-amd64), const ENOMSG = 83 +pkg syscall (netbsd-amd64), const ENOPROTOOPT = 42 +pkg syscall (netbsd-amd64), const ENOSPC = 28 +pkg syscall (netbsd-amd64), const ENOSR = 90 +pkg syscall (netbsd-amd64), const ENOSTR = 91 +pkg syscall (netbsd-amd64), const ENOSYS = 78 +pkg syscall (netbsd-amd64), const ENOTBLK = 15 +pkg syscall (netbsd-amd64), const ENOTCONN = 57 +pkg syscall (netbsd-amd64), const ENOTDIR = 20 +pkg syscall (netbsd-amd64), const ENOTEMPTY = 66 +pkg syscall (netbsd-amd64), const ENOTSOCK = 38 +pkg syscall (netbsd-amd64), const ENOTSUP = 86 +pkg syscall (netbsd-amd64), const ENOTTY = 25 +pkg syscall (netbsd-amd64), const ENXIO = 6 +pkg syscall (netbsd-amd64), const EOPNOTSUPP = 45 +pkg syscall (netbsd-amd64), const EOVERFLOW = 84 +pkg syscall (netbsd-amd64), const EPERM = 1 +pkg syscall (netbsd-amd64), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-amd64), const EPIPE = 32 +pkg syscall (netbsd-amd64), const EPROCLIM = 67 +pkg syscall (netbsd-amd64), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-amd64), const EPROGMISMATCH = 75 +pkg syscall (netbsd-amd64), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-amd64), const EPROTO = 96 +pkg syscall (netbsd-amd64), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-amd64), const EPROTOTYPE = 41 +pkg syscall (netbsd-amd64), const ERANGE = 34 +pkg syscall (netbsd-amd64), const EREMOTE = 71 +pkg syscall (netbsd-amd64), const EROFS = 30 +pkg syscall (netbsd-amd64), const ERPCMISMATCH = 73 +pkg syscall (netbsd-amd64), const ESHUTDOWN = 58 +pkg syscall (netbsd-amd64), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-amd64), const ESPIPE = 29 +pkg syscall (netbsd-amd64), const ESRCH = 3 +pkg syscall (netbsd-amd64), const ESTALE = 70 +pkg syscall (netbsd-amd64), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-amd64), const ETHERMIN = 46 +pkg syscall (netbsd-amd64), const ETHERMTU = 1500 +pkg syscall (netbsd-amd64), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-amd64), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-amd64), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-amd64), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-amd64), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-amd64), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-amd64), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-amd64), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-amd64), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-amd64), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-amd64), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-amd64), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-amd64), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-amd64), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-amd64), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-amd64), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-amd64), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-amd64), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-amd64), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-amd64), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-amd64), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-amd64), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-amd64), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-amd64), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-amd64), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-amd64), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-amd64), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-amd64), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-amd64), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-amd64), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-amd64), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-amd64), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-amd64), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-amd64), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-amd64), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-amd64), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-amd64), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-amd64), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-amd64), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-amd64), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-amd64), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-amd64), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-amd64), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-amd64), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-amd64), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-amd64), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-amd64), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-amd64), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-amd64), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-amd64), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-amd64), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-amd64), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-amd64), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-amd64), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-amd64), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-amd64), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-amd64), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-amd64), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-amd64), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-amd64), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-amd64), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-amd64), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-amd64), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-amd64), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-amd64), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-amd64), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-amd64), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-amd64), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-amd64), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-amd64), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-amd64), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-amd64), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-amd64), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-amd64), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-amd64), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-amd64), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-amd64), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-amd64), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-amd64), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-amd64), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-amd64), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-amd64), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-amd64), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-amd64), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-amd64), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-amd64), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-amd64), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-amd64), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-amd64), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-amd64), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-amd64), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-amd64), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-amd64), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-amd64), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-amd64), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-amd64), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-amd64), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-amd64), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-amd64), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-amd64), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-amd64), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-amd64), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-amd64), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-amd64), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-amd64), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-amd64), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-amd64), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-amd64), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-amd64), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-amd64), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-amd64), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-amd64), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-amd64), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-amd64), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-amd64), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-amd64), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-amd64), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-amd64), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-amd64), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-amd64), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-amd64), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-amd64), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-amd64), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-amd64), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-amd64), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-amd64), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-amd64), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-amd64), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-amd64), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-amd64), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-amd64), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-amd64), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-amd64), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-amd64), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-amd64), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-amd64), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-amd64), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-amd64), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-amd64), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-amd64), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-amd64), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-amd64), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-amd64), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-amd64), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-amd64), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-amd64), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-amd64), const ETIME = 92 +pkg syscall (netbsd-amd64), const ETIMEDOUT = 60 +pkg syscall (netbsd-amd64), const ETOOMANYREFS = 59 +pkg syscall (netbsd-amd64), const ETXTBSY = 26 +pkg syscall (netbsd-amd64), const EUSERS = 68 +pkg syscall (netbsd-amd64), const EVFILT_AIO = 2 +pkg syscall (netbsd-amd64), const EVFILT_PROC = 4 +pkg syscall (netbsd-amd64), const EVFILT_READ = 0 +pkg syscall (netbsd-amd64), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-amd64), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-amd64), const EVFILT_TIMER = 6 +pkg syscall (netbsd-amd64), const EVFILT_VNODE = 3 +pkg syscall (netbsd-amd64), const EVFILT_WRITE = 1 +pkg syscall (netbsd-amd64), const EV_ADD = 1 +pkg syscall (netbsd-amd64), const EV_CLEAR = 32 +pkg syscall (netbsd-amd64), const EV_DELETE = 2 +pkg syscall (netbsd-amd64), const EV_DISABLE = 8 +pkg syscall (netbsd-amd64), const EV_ENABLE = 4 +pkg syscall (netbsd-amd64), const EV_EOF = 32768 +pkg syscall (netbsd-amd64), const EV_ERROR = 16384 +pkg syscall (netbsd-amd64), const EV_FLAG1 = 8192 +pkg syscall (netbsd-amd64), const EV_ONESHOT = 16 +pkg syscall (netbsd-amd64), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-amd64), const EWOULDBLOCK = 35 +pkg syscall (netbsd-amd64), const EXDEV = 18 +pkg syscall (netbsd-amd64), const EXTA = 19200 +pkg syscall (netbsd-amd64), const EXTB = 38400 +pkg syscall (netbsd-amd64), const EXTPROC = 2048 +pkg syscall (netbsd-amd64), const FD_CLOEXEC = 1 +pkg syscall (netbsd-amd64), const FD_SETSIZE = 256 +pkg syscall (netbsd-amd64), const FLUSHO = 8388608 +pkg syscall (netbsd-amd64), const F_CLOSEM = 10 +pkg syscall (netbsd-amd64), const F_DUPFD = 0 +pkg syscall (netbsd-amd64), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-amd64), const F_FSCTL = -2147483648 +pkg syscall (netbsd-amd64), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-amd64), const F_FSIN = 268435456 +pkg syscall (netbsd-amd64), const F_FSINOUT = 805306368 +pkg syscall (netbsd-amd64), const F_FSOUT = 536870912 +pkg syscall (netbsd-amd64), const F_FSPRIV = 32768 +pkg syscall (netbsd-amd64), const F_FSVOID = 1073741824 +pkg syscall (netbsd-amd64), const F_GETFD = 1 +pkg syscall (netbsd-amd64), const F_GETFL = 3 +pkg syscall (netbsd-amd64), const F_GETLK = 7 +pkg syscall (netbsd-amd64), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-amd64), const F_GETOWN = 5 +pkg syscall (netbsd-amd64), const F_MAXFD = 11 +pkg syscall (netbsd-amd64), const F_OK = 0 +pkg syscall (netbsd-amd64), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-amd64), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-amd64), const F_RDLCK = 1 +pkg syscall (netbsd-amd64), const F_SETFD = 2 +pkg syscall (netbsd-amd64), const F_SETFL = 4 +pkg syscall (netbsd-amd64), const F_SETLK = 8 +pkg syscall (netbsd-amd64), const F_SETLKW = 9 +pkg syscall (netbsd-amd64), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-amd64), const F_SETOWN = 6 +pkg syscall (netbsd-amd64), const F_UNLCK = 2 +pkg syscall (netbsd-amd64), const F_WRLCK = 3 +pkg syscall (netbsd-amd64), const HUPCL = 16384 +pkg syscall (netbsd-amd64), const ICANON = 256 +pkg syscall (netbsd-amd64), const ICRNL = 256 +pkg syscall (netbsd-amd64), const IEXTEN = 1024 +pkg syscall (netbsd-amd64), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-amd64), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-amd64), const IFA_ROUTE = 1 +pkg syscall (netbsd-amd64), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-amd64), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-amd64), const IFF_DEBUG = 4 +pkg syscall (netbsd-amd64), const IFF_LINK0 = 4096 +pkg syscall (netbsd-amd64), const IFF_LINK1 = 8192 +pkg syscall (netbsd-amd64), const IFF_LINK2 = 16384 +pkg syscall (netbsd-amd64), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-amd64), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-amd64), const IFF_NOARP = 128 +pkg syscall (netbsd-amd64), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-amd64), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-amd64), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-amd64), const IFF_PROMISC = 256 +pkg syscall (netbsd-amd64), const IFF_RUNNING = 64 +pkg syscall (netbsd-amd64), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-amd64), const IFNAMSIZ = 16 +pkg syscall (netbsd-amd64), const IFT_1822 = 2 +pkg syscall (netbsd-amd64), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-amd64), const IFT_AAL2 = 187 +pkg syscall (netbsd-amd64), const IFT_AAL5 = 49 +pkg syscall (netbsd-amd64), const IFT_ADSL = 94 +pkg syscall (netbsd-amd64), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-amd64), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-amd64), const IFT_ARAP = 88 +pkg syscall (netbsd-amd64), const IFT_ARCNET = 35 +pkg syscall (netbsd-amd64), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-amd64), const IFT_ASYNC = 84 +pkg syscall (netbsd-amd64), const IFT_ATM = 37 +pkg syscall (netbsd-amd64), const IFT_ATMDXI = 105 +pkg syscall (netbsd-amd64), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-amd64), const IFT_ATMIMA = 107 +pkg syscall (netbsd-amd64), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-amd64), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-amd64), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-amd64), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-amd64), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-amd64), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-amd64), const IFT_BRIDGE = 209 +pkg syscall (netbsd-amd64), const IFT_BSC = 83 +pkg syscall (netbsd-amd64), const IFT_CARP = 248 +pkg syscall (netbsd-amd64), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-amd64), const IFT_CEPT = 19 +pkg syscall (netbsd-amd64), const IFT_CES = 133 +pkg syscall (netbsd-amd64), const IFT_CHANNEL = 70 +pkg syscall (netbsd-amd64), const IFT_CNR = 85 +pkg syscall (netbsd-amd64), const IFT_COFFEE = 132 +pkg syscall (netbsd-amd64), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-amd64), const IFT_DCN = 141 +pkg syscall (netbsd-amd64), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-amd64), const IFT_DLSW = 74 +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-amd64), const IFT_DS0 = 81 +pkg syscall (netbsd-amd64), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-amd64), const IFT_DS1FDL = 170 +pkg syscall (netbsd-amd64), const IFT_DS3 = 30 +pkg syscall (netbsd-amd64), const IFT_DTM = 140 +pkg syscall (netbsd-amd64), const IFT_DVBASILN = 172 +pkg syscall (netbsd-amd64), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-amd64), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-amd64), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-amd64), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-amd64), const IFT_ECONET = 206 +pkg syscall (netbsd-amd64), const IFT_EON = 25 +pkg syscall (netbsd-amd64), const IFT_EPLRS = 87 +pkg syscall (netbsd-amd64), const IFT_ESCON = 73 +pkg syscall (netbsd-amd64), const IFT_ETHER = 6 +pkg syscall (netbsd-amd64), const IFT_FAITH = 242 +pkg syscall (netbsd-amd64), const IFT_FAST = 125 +pkg syscall (netbsd-amd64), const IFT_FASTETHER = 62 +pkg syscall (netbsd-amd64), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-amd64), const IFT_FDDI = 15 +pkg syscall (netbsd-amd64), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-amd64), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-amd64), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-amd64), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-amd64), const IFT_FRELAY = 32 +pkg syscall (netbsd-amd64), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-amd64), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-amd64), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-amd64), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-amd64), const IFT_G703AT64K = 66 +pkg syscall (netbsd-amd64), const IFT_GIF = 240 +pkg syscall (netbsd-amd64), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-amd64), const IFT_GR303IDT = 178 +pkg syscall (netbsd-amd64), const IFT_GR303RDT = 177 +pkg syscall (netbsd-amd64), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-amd64), const IFT_H323PROXY = 165 +pkg syscall (netbsd-amd64), const IFT_HDH1822 = 3 +pkg syscall (netbsd-amd64), const IFT_HDLC = 118 +pkg syscall (netbsd-amd64), const IFT_HDSL2 = 168 +pkg syscall (netbsd-amd64), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-amd64), const IFT_HIPPI = 47 +pkg syscall (netbsd-amd64), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-amd64), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-amd64), const IFT_HSSI = 46 +pkg syscall (netbsd-amd64), const IFT_HY = 14 +pkg syscall (netbsd-amd64), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-amd64), const IFT_IDSL = 154 +pkg syscall (netbsd-amd64), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-amd64), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-amd64), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-amd64), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-amd64), const IFT_IFGSN = 145 +pkg syscall (netbsd-amd64), const IFT_IMT = 190 +pkg syscall (netbsd-amd64), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-amd64), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-amd64), const IFT_IP = 126 +pkg syscall (netbsd-amd64), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-amd64), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-amd64), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-amd64), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-amd64), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-amd64), const IFT_ISDN = 63 +pkg syscall (netbsd-amd64), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-amd64), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-amd64), const IFT_ISDNS = 75 +pkg syscall (netbsd-amd64), const IFT_ISDNU = 76 +pkg syscall (netbsd-amd64), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-amd64), const IFT_ISO88023 = 7 +pkg syscall (netbsd-amd64), const IFT_ISO88024 = 8 +pkg syscall (netbsd-amd64), const IFT_ISO88025 = 9 +pkg syscall (netbsd-amd64), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-amd64), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-amd64), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-amd64), const IFT_ISO88026 = 10 +pkg syscall (netbsd-amd64), const IFT_ISUP = 179 +pkg syscall (netbsd-amd64), const IFT_L2VLAN = 135 +pkg syscall (netbsd-amd64), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-amd64), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-amd64), const IFT_LAPB = 16 +pkg syscall (netbsd-amd64), const IFT_LAPD = 77 +pkg syscall (netbsd-amd64), const IFT_LAPF = 119 +pkg syscall (netbsd-amd64), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-amd64), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-amd64), const IFT_LOOP = 24 +pkg syscall (netbsd-amd64), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-amd64), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-amd64), const IFT_MIOX25 = 38 +pkg syscall (netbsd-amd64), const IFT_MODEM = 48 +pkg syscall (netbsd-amd64), const IFT_MPC = 113 +pkg syscall (netbsd-amd64), const IFT_MPLS = 166 +pkg syscall (netbsd-amd64), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-amd64), const IFT_MSDSL = 143 +pkg syscall (netbsd-amd64), const IFT_MVL = 191 +pkg syscall (netbsd-amd64), const IFT_MYRINET = 99 +pkg syscall (netbsd-amd64), const IFT_NFAS = 175 +pkg syscall (netbsd-amd64), const IFT_NSIP = 27 +pkg syscall (netbsd-amd64), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-amd64), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-amd64), const IFT_OTHER = 1 +pkg syscall (netbsd-amd64), const IFT_P10 = 12 +pkg syscall (netbsd-amd64), const IFT_P80 = 13 +pkg syscall (netbsd-amd64), const IFT_PARA = 34 +pkg syscall (netbsd-amd64), const IFT_PFLOG = 245 +pkg syscall (netbsd-amd64), const IFT_PFSYNC = 246 +pkg syscall (netbsd-amd64), const IFT_PLC = 174 +pkg syscall (netbsd-amd64), const IFT_PON155 = 207 +pkg syscall (netbsd-amd64), const IFT_PON622 = 208 +pkg syscall (netbsd-amd64), const IFT_POS = 171 +pkg syscall (netbsd-amd64), const IFT_PPP = 23 +pkg syscall (netbsd-amd64), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-amd64), const IFT_PROPATM = 197 +pkg syscall (netbsd-amd64), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-amd64), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-amd64), const IFT_PROPMUX = 54 +pkg syscall (netbsd-amd64), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-amd64), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-amd64), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-amd64), const IFT_PVC = 241 +pkg syscall (netbsd-amd64), const IFT_Q2931 = 201 +pkg syscall (netbsd-amd64), const IFT_QLLC = 68 +pkg syscall (netbsd-amd64), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-amd64), const IFT_RADSL = 95 +pkg syscall (netbsd-amd64), const IFT_REACHDSL = 192 +pkg syscall (netbsd-amd64), const IFT_RFC1483 = 159 +pkg syscall (netbsd-amd64), const IFT_RS232 = 33 +pkg syscall (netbsd-amd64), const IFT_RSRB = 79 +pkg syscall (netbsd-amd64), const IFT_SDLC = 17 +pkg syscall (netbsd-amd64), const IFT_SDSL = 96 +pkg syscall (netbsd-amd64), const IFT_SHDSL = 169 +pkg syscall (netbsd-amd64), const IFT_SIP = 31 +pkg syscall (netbsd-amd64), const IFT_SIPSIG = 204 +pkg syscall (netbsd-amd64), const IFT_SIPTG = 203 +pkg syscall (netbsd-amd64), const IFT_SLIP = 28 +pkg syscall (netbsd-amd64), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-amd64), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-amd64), const IFT_SONET = 39 +pkg syscall (netbsd-amd64), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-amd64), const IFT_SONETPATH = 50 +pkg syscall (netbsd-amd64), const IFT_SONETVT = 51 +pkg syscall (netbsd-amd64), const IFT_SRP = 151 +pkg syscall (netbsd-amd64), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-amd64), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-amd64), const IFT_STARLAN = 11 +pkg syscall (netbsd-amd64), const IFT_STF = 215 +pkg syscall (netbsd-amd64), const IFT_T1 = 18 +pkg syscall (netbsd-amd64), const IFT_TDLC = 116 +pkg syscall (netbsd-amd64), const IFT_TELINK = 200 +pkg syscall (netbsd-amd64), const IFT_TERMPAD = 91 +pkg syscall (netbsd-amd64), const IFT_TR008 = 176 +pkg syscall (netbsd-amd64), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-amd64), const IFT_TUNNEL = 131 +pkg syscall (netbsd-amd64), const IFT_ULTRA = 29 +pkg syscall (netbsd-amd64), const IFT_USB = 160 +pkg syscall (netbsd-amd64), const IFT_V11 = 64 +pkg syscall (netbsd-amd64), const IFT_V35 = 45 +pkg syscall (netbsd-amd64), const IFT_V36 = 65 +pkg syscall (netbsd-amd64), const IFT_V37 = 120 +pkg syscall (netbsd-amd64), const IFT_VDSL = 97 +pkg syscall (netbsd-amd64), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-amd64), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-amd64), const IFT_VOICEDID = 213 +pkg syscall (netbsd-amd64), const IFT_VOICEEM = 100 +pkg syscall (netbsd-amd64), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-amd64), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-amd64), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-amd64), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-amd64), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-amd64), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-amd64), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-amd64), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-amd64), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-amd64), const IFT_X213 = 93 +pkg syscall (netbsd-amd64), const IFT_X25 = 5 +pkg syscall (netbsd-amd64), const IFT_X25DDN = 4 +pkg syscall (netbsd-amd64), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-amd64), const IFT_X25MLP = 121 +pkg syscall (netbsd-amd64), const IFT_X25PLE = 40 +pkg syscall (netbsd-amd64), const IFT_XETHER = 26 +pkg syscall (netbsd-amd64), const IGNBRK = 1 +pkg syscall (netbsd-amd64), const IGNCR = 128 +pkg syscall (netbsd-amd64), const IGNPAR = 4 +pkg syscall (netbsd-amd64), const IMAXBEL = 8192 +pkg syscall (netbsd-amd64), const INLCR = 64 +pkg syscall (netbsd-amd64), const INPCK = 16 +pkg syscall (netbsd-amd64), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-amd64), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-amd64), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-amd64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-amd64), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-amd64), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-amd64), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-amd64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-amd64), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-amd64), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-amd64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-amd64), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-amd64), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-amd64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-amd64), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-amd64), const IPPROTO_AH = 51 +pkg syscall (netbsd-amd64), const IPPROTO_CARP = 112 +pkg syscall (netbsd-amd64), const IPPROTO_DONE = 257 +pkg syscall (netbsd-amd64), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-amd64), const IPPROTO_EGP = 8 +pkg syscall (netbsd-amd64), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-amd64), const IPPROTO_EON = 80 +pkg syscall (netbsd-amd64), const IPPROTO_ESP = 50 +pkg syscall (netbsd-amd64), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-amd64), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-amd64), const IPPROTO_GGP = 3 +pkg syscall (netbsd-amd64), const IPPROTO_GRE = 47 +pkg syscall (netbsd-amd64), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-amd64), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-amd64), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-amd64), const IPPROTO_IDP = 22 +pkg syscall (netbsd-amd64), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-amd64), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-amd64), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-amd64), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-amd64), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-amd64), const IPPROTO_MAX = 256 +pkg syscall (netbsd-amd64), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-amd64), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-amd64), const IPPROTO_NONE = 59 +pkg syscall (netbsd-amd64), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-amd64), const IPPROTO_PIM = 103 +pkg syscall (netbsd-amd64), const IPPROTO_PUP = 12 +pkg syscall (netbsd-amd64), const IPPROTO_RAW = 255 +pkg syscall (netbsd-amd64), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-amd64), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-amd64), const IPPROTO_TP = 29 +pkg syscall (netbsd-amd64), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-amd64), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-amd64), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-amd64), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-amd64), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-amd64), const IPV6_FAITH = 29 +pkg syscall (netbsd-amd64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-amd64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-amd64), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-amd64), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-amd64), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-amd64), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-amd64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-amd64), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-amd64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-amd64), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-amd64), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-amd64), const IPV6_MMTU = 1280 +pkg syscall (netbsd-amd64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-amd64), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-amd64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-amd64), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-amd64), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-amd64), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-amd64), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-amd64), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-amd64), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-amd64), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-amd64), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-amd64), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-amd64), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-amd64), const IPV6_RTHDR = 51 +pkg syscall (netbsd-amd64), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-amd64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-amd64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-amd64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-amd64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-amd64), const IPV6_TCLASS = 61 +pkg syscall (netbsd-amd64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-amd64), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-amd64), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-amd64), const IPV6_VERSION = 96 +pkg syscall (netbsd-amd64), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-amd64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-amd64), const IP_DF = 16384 +pkg syscall (netbsd-amd64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-amd64), const IP_EF = 32768 +pkg syscall (netbsd-amd64), const IP_ERRORMTU = 21 +pkg syscall (netbsd-amd64), const IP_HDRINCL = 2 +pkg syscall (netbsd-amd64), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-amd64), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-amd64), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-amd64), const IP_MF = 8192 +pkg syscall (netbsd-amd64), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-amd64), const IP_MINTTL = 24 +pkg syscall (netbsd-amd64), const IP_MSS = 576 +pkg syscall (netbsd-amd64), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-amd64), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-amd64), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-amd64), const IP_OFFMASK = 8191 +pkg syscall (netbsd-amd64), const IP_OPTIONS = 1 +pkg syscall (netbsd-amd64), const IP_PORTRANGE = 19 +pkg syscall (netbsd-amd64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-amd64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-amd64), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-amd64), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-amd64), const IP_RECVIF = 20 +pkg syscall (netbsd-amd64), const IP_RECVOPTS = 5 +pkg syscall (netbsd-amd64), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-amd64), const IP_RECVTTL = 23 +pkg syscall (netbsd-amd64), const IP_RETOPTS = 8 +pkg syscall (netbsd-amd64), const IP_RF = 32768 +pkg syscall (netbsd-amd64), const IP_TOS = 3 +pkg syscall (netbsd-amd64), const IP_TTL = 4 +pkg syscall (netbsd-amd64), const ISIG = 128 +pkg syscall (netbsd-amd64), const ISTRIP = 32 +pkg syscall (netbsd-amd64), const IXANY = 2048 +pkg syscall (netbsd-amd64), const IXOFF = 1024 +pkg syscall (netbsd-amd64), const IXON = 512 +pkg syscall (netbsd-amd64), const ImplementsGetwd = false +pkg syscall (netbsd-amd64), const LOCK_EX = 2 +pkg syscall (netbsd-amd64), const LOCK_NB = 4 +pkg syscall (netbsd-amd64), const LOCK_SH = 1 +pkg syscall (netbsd-amd64), const LOCK_UN = 8 +pkg syscall (netbsd-amd64), const MSG_BCAST = 256 +pkg syscall (netbsd-amd64), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-amd64), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-amd64), const MSG_CTRUNC = 32 +pkg syscall (netbsd-amd64), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-amd64), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-amd64), const MSG_EOR = 8 +pkg syscall (netbsd-amd64), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-amd64), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-amd64), const MSG_MCAST = 512 +pkg syscall (netbsd-amd64), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-amd64), const MSG_NBIO = 4096 +pkg syscall (netbsd-amd64), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-amd64), const MSG_OOB = 1 +pkg syscall (netbsd-amd64), const MSG_PEEK = 2 +pkg syscall (netbsd-amd64), const MSG_TRUNC = 16 +pkg syscall (netbsd-amd64), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-amd64), const MSG_WAITALL = 64 +pkg syscall (netbsd-amd64), const NAME_MAX = 511 +pkg syscall (netbsd-amd64), const NET_RT_DUMP = 1 +pkg syscall (netbsd-amd64), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-amd64), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-amd64), const NET_RT_MAXID = 6 +pkg syscall (netbsd-amd64), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-amd64), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-amd64), const NOFLSH = 2147483648 +pkg syscall (netbsd-amd64), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-amd64), const NOTE_CHILD = 4 +pkg syscall (netbsd-amd64), const NOTE_DELETE = 1 +pkg syscall (netbsd-amd64), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-amd64), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-amd64), const NOTE_EXTEND = 4 +pkg syscall (netbsd-amd64), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-amd64), const NOTE_LINK = 16 +pkg syscall (netbsd-amd64), const NOTE_LOWAT = 1 +pkg syscall (netbsd-amd64), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-amd64), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-amd64), const NOTE_RENAME = 32 +pkg syscall (netbsd-amd64), const NOTE_REVOKE = 64 +pkg syscall (netbsd-amd64), const NOTE_TRACK = 1 +pkg syscall (netbsd-amd64), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-amd64), const NOTE_WRITE = 2 +pkg syscall (netbsd-amd64), const OCRNL = 16 +pkg syscall (netbsd-amd64), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-amd64), const ONLCR = 2 +pkg syscall (netbsd-amd64), const ONLRET = 64 +pkg syscall (netbsd-amd64), const ONOCR = 32 +pkg syscall (netbsd-amd64), const ONOEOT = 8 +pkg syscall (netbsd-amd64), const OPOST = 1 +pkg syscall (netbsd-amd64), const O_ACCMODE = 3 +pkg syscall (netbsd-amd64), const O_ALT_IO = 262144 +pkg syscall (netbsd-amd64), const O_APPEND = 8 +pkg syscall (netbsd-amd64), const O_ASYNC = 64 +pkg syscall (netbsd-amd64), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-amd64), const O_CREAT = 512 +pkg syscall (netbsd-amd64), const O_DIRECT = 524288 +pkg syscall (netbsd-amd64), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-amd64), const O_DSYNC = 65536 +pkg syscall (netbsd-amd64), const O_EXCL = 2048 +pkg syscall (netbsd-amd64), const O_EXLOCK = 32 +pkg syscall (netbsd-amd64), const O_FSYNC = 128 +pkg syscall (netbsd-amd64), const O_NDELAY = 4 +pkg syscall (netbsd-amd64), const O_NOCTTY = 32768 +pkg syscall (netbsd-amd64), const O_NOFOLLOW = 256 +pkg syscall (netbsd-amd64), const O_NONBLOCK = 4 +pkg syscall (netbsd-amd64), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-amd64), const O_RSYNC = 131072 +pkg syscall (netbsd-amd64), const O_SHLOCK = 16 +pkg syscall (netbsd-amd64), const O_SYNC = 128 +pkg syscall (netbsd-amd64), const O_TRUNC = 1024 +pkg syscall (netbsd-amd64), const PARENB = 4096 +pkg syscall (netbsd-amd64), const PARMRK = 8 +pkg syscall (netbsd-amd64), const PARODD = 8192 +pkg syscall (netbsd-amd64), const PENDIN = 536870912 +pkg syscall (netbsd-amd64), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-amd64), const PTRACE_CONT = 7 +pkg syscall (netbsd-amd64), const PTRACE_KILL = 8 +pkg syscall (netbsd-amd64), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-amd64), const RLIMIT_AS = 10 +pkg syscall (netbsd-amd64), const RLIMIT_CORE = 4 +pkg syscall (netbsd-amd64), const RLIMIT_CPU = 0 +pkg syscall (netbsd-amd64), const RLIMIT_DATA = 2 +pkg syscall (netbsd-amd64), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-amd64), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-amd64), const RLIMIT_STACK = 3 +pkg syscall (netbsd-amd64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-amd64), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-amd64), const RTAX_BRD = 7 +pkg syscall (netbsd-amd64), const RTAX_DST = 0 +pkg syscall (netbsd-amd64), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-amd64), const RTAX_GENMASK = 3 +pkg syscall (netbsd-amd64), const RTAX_IFA = 5 +pkg syscall (netbsd-amd64), const RTAX_IFP = 4 +pkg syscall (netbsd-amd64), const RTAX_MAX = 9 +pkg syscall (netbsd-amd64), const RTAX_NETMASK = 2 +pkg syscall (netbsd-amd64), const RTAX_TAG = 8 +pkg syscall (netbsd-amd64), const RTA_AUTHOR = 64 +pkg syscall (netbsd-amd64), const RTA_BRD = 128 +pkg syscall (netbsd-amd64), const RTA_DST = 1 +pkg syscall (netbsd-amd64), const RTA_GATEWAY = 2 +pkg syscall (netbsd-amd64), const RTA_GENMASK = 8 +pkg syscall (netbsd-amd64), const RTA_IFA = 32 +pkg syscall (netbsd-amd64), const RTA_IFP = 16 +pkg syscall (netbsd-amd64), const RTA_NETMASK = 4 +pkg syscall (netbsd-amd64), const RTA_TAG = 256 +pkg syscall (netbsd-amd64), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-amd64), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-amd64), const RTF_CLONED = 8192 +pkg syscall (netbsd-amd64), const RTF_CLONING = 256 +pkg syscall (netbsd-amd64), const RTF_DONE = 64 +pkg syscall (netbsd-amd64), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-amd64), const RTF_GATEWAY = 2 +pkg syscall (netbsd-amd64), const RTF_HOST = 4 +pkg syscall (netbsd-amd64), const RTF_LLINFO = 1024 +pkg syscall (netbsd-amd64), const RTF_MASK = 128 +pkg syscall (netbsd-amd64), const RTF_MODIFIED = 32 +pkg syscall (netbsd-amd64), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-amd64), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-amd64), const RTF_REJECT = 8 +pkg syscall (netbsd-amd64), const RTF_SRC = 65536 +pkg syscall (netbsd-amd64), const RTF_STATIC = 2048 +pkg syscall (netbsd-amd64), const RTF_UP = 1 +pkg syscall (netbsd-amd64), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-amd64), const RTM_ADD = 1 +pkg syscall (netbsd-amd64), const RTM_CHANGE = 3 +pkg syscall (netbsd-amd64), const RTM_CHGADDR = 21 +pkg syscall (netbsd-amd64), const RTM_DELADDR = 13 +pkg syscall (netbsd-amd64), const RTM_DELETE = 2 +pkg syscall (netbsd-amd64), const RTM_GET = 4 +pkg syscall (netbsd-amd64), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-amd64), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-amd64), const RTM_IFINFO = 20 +pkg syscall (netbsd-amd64), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-amd64), const RTM_LOCK = 8 +pkg syscall (netbsd-amd64), const RTM_LOSING = 5 +pkg syscall (netbsd-amd64), const RTM_MISS = 7 +pkg syscall (netbsd-amd64), const RTM_NEWADDR = 12 +pkg syscall (netbsd-amd64), const RTM_OIFINFO = 15 +pkg syscall (netbsd-amd64), const RTM_OLDADD = 9 +pkg syscall (netbsd-amd64), const RTM_OLDDEL = 10 +pkg syscall (netbsd-amd64), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-amd64), const RTM_REDIRECT = 6 +pkg syscall (netbsd-amd64), const RTM_RESOLVE = 11 +pkg syscall (netbsd-amd64), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-amd64), const RTM_SETGATE = 18 +pkg syscall (netbsd-amd64), const RTM_VERSION = 4 +pkg syscall (netbsd-amd64), const RTV_EXPIRE = 4 +pkg syscall (netbsd-amd64), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-amd64), const RTV_MTU = 1 +pkg syscall (netbsd-amd64), const RTV_RPIPE = 8 +pkg syscall (netbsd-amd64), const RTV_RTT = 64 +pkg syscall (netbsd-amd64), const RTV_RTTVAR = 128 +pkg syscall (netbsd-amd64), const RTV_SPIPE = 16 +pkg syscall (netbsd-amd64), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-amd64), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-amd64), const RUSAGE_SELF = 0 +pkg syscall (netbsd-amd64), const SCM_CREDS = 4 +pkg syscall (netbsd-amd64), const SCM_RIGHTS = 1 +pkg syscall (netbsd-amd64), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-amd64), const SIGBUS = 10 +pkg syscall (netbsd-amd64), const SIGCHLD = 20 +pkg syscall (netbsd-amd64), const SIGCONT = 19 +pkg syscall (netbsd-amd64), const SIGEMT = 7 +pkg syscall (netbsd-amd64), const SIGINFO = 29 +pkg syscall (netbsd-amd64), const SIGIO = 23 +pkg syscall (netbsd-amd64), const SIGIOT = 6 +pkg syscall (netbsd-amd64), const SIGPROF = 27 +pkg syscall (netbsd-amd64), const SIGPWR = 32 +pkg syscall (netbsd-amd64), const SIGSTOP = 17 +pkg syscall (netbsd-amd64), const SIGSYS = 12 +pkg syscall (netbsd-amd64), const SIGTSTP = 18 +pkg syscall (netbsd-amd64), const SIGTTIN = 21 +pkg syscall (netbsd-amd64), const SIGTTOU = 22 +pkg syscall (netbsd-amd64), const SIGURG = 16 +pkg syscall (netbsd-amd64), const SIGUSR1 = 30 +pkg syscall (netbsd-amd64), const SIGUSR2 = 31 +pkg syscall (netbsd-amd64), const SIGVTALRM = 26 +pkg syscall (netbsd-amd64), const SIGWINCH = 28 +pkg syscall (netbsd-amd64), const SIGXCPU = 24 +pkg syscall (netbsd-amd64), const SIGXFSZ = 25 +pkg syscall (netbsd-amd64), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-amd64), const SIOCADDRT = 2151182858 +pkg syscall (netbsd-amd64), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-amd64), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-amd64), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-amd64), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-amd64), const SIOCDELRT = 2151182859 +pkg syscall (netbsd-amd64), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-amd64), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-amd64), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-amd64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (netbsd-amd64), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-amd64), const SIOCGETSGCNT = 3223352628 +pkg syscall (netbsd-amd64), const SIOCGETVIFCNT = 3223876915 +pkg syscall (netbsd-amd64), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-amd64), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-amd64), const SIOCGIFADDRPREF = 3231213856 +pkg syscall (netbsd-amd64), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-amd64), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-amd64), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-amd64), const SIOCGIFCONF = 3222300966 +pkg syscall (netbsd-amd64), const SIOCGIFDATA = 3231213957 +pkg syscall (netbsd-amd64), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-amd64), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-amd64), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-amd64), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-amd64), const SIOCGIFMEDIA = 3224398134 +pkg syscall (netbsd-amd64), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-amd64), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-amd64), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-amd64), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-amd64), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-amd64), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-amd64), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-amd64), const SIOCGLINKSTR = 3223873927 +pkg syscall (netbsd-amd64), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-amd64), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-amd64), const SIOCGVH = 3230689667 +pkg syscall (netbsd-amd64), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-amd64), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-amd64), const SIOCIFGCLONERS = 3222301048 +pkg syscall (netbsd-amd64), const SIOCINITIFADDR = 3228592516 +pkg syscall (netbsd-amd64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (netbsd-amd64), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-amd64), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-amd64), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-amd64), const SIOCSIFADDRPREF = 2157472031 +pkg syscall (netbsd-amd64), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-amd64), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-amd64), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-amd64), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-amd64), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-amd64), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-amd64), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-amd64), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-amd64), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-amd64), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-amd64), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-amd64), const SIOCSLINKSTR = 2150132104 +pkg syscall (netbsd-amd64), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-amd64), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-amd64), const SIOCSVH = 3230689666 +pkg syscall (netbsd-amd64), const SIOCZIFDATA = 3231213958 +pkg syscall (netbsd-amd64), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-amd64), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-amd64), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-amd64), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-amd64), const SOCK_RDM = 4 +pkg syscall (netbsd-amd64), const SOL_SOCKET = 65535 +pkg syscall (netbsd-amd64), const SOMAXCONN = 128 +pkg syscall (netbsd-amd64), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-amd64), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-amd64), const SO_BROADCAST = 32 +pkg syscall (netbsd-amd64), const SO_DEBUG = 1 +pkg syscall (netbsd-amd64), const SO_DONTROUTE = 16 +pkg syscall (netbsd-amd64), const SO_ERROR = 4103 +pkg syscall (netbsd-amd64), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-amd64), const SO_LINGER = 128 +pkg syscall (netbsd-amd64), const SO_NOHEADER = 4106 +pkg syscall (netbsd-amd64), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-amd64), const SO_OOBINLINE = 256 +pkg syscall (netbsd-amd64), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-amd64), const SO_RCVBUF = 4098 +pkg syscall (netbsd-amd64), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-amd64), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-amd64), const SO_REUSEADDR = 4 +pkg syscall (netbsd-amd64), const SO_REUSEPORT = 512 +pkg syscall (netbsd-amd64), const SO_SNDBUF = 4097 +pkg syscall (netbsd-amd64), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-amd64), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-amd64), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-amd64), const SO_TYPE = 4104 +pkg syscall (netbsd-amd64), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-amd64), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-amd64), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-amd64), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-amd64), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-amd64), const SYS_ACCEPT = 30 +pkg syscall (netbsd-amd64), const SYS_ACCESS = 33 +pkg syscall (netbsd-amd64), const SYS_ACCT = 51 +pkg syscall (netbsd-amd64), const SYS_ADJTIME = 421 +pkg syscall (netbsd-amd64), const SYS_BIND = 104 +pkg syscall (netbsd-amd64), const SYS_BREAK = 17 +pkg syscall (netbsd-amd64), const SYS_CHDIR = 12 +pkg syscall (netbsd-amd64), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-amd64), const SYS_CHMOD = 15 +pkg syscall (netbsd-amd64), const SYS_CHOWN = 16 +pkg syscall (netbsd-amd64), const SYS_CHROOT = 61 +pkg syscall (netbsd-amd64), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-amd64), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-amd64), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-amd64), const SYS_CLOSE = 6 +pkg syscall (netbsd-amd64), const SYS_CONNECT = 98 +pkg syscall (netbsd-amd64), const SYS_DUP = 41 +pkg syscall (netbsd-amd64), const SYS_DUP2 = 90 +pkg syscall (netbsd-amd64), const SYS_DUP3 = 454 +pkg syscall (netbsd-amd64), const SYS_EXECVE = 59 +pkg syscall (netbsd-amd64), const SYS_EXIT = 1 +pkg syscall (netbsd-amd64), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-amd64), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-amd64), const SYS_FCHDIR = 13 +pkg syscall (netbsd-amd64), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-amd64), const SYS_FCHMOD = 124 +pkg syscall (netbsd-amd64), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-amd64), const SYS_FCHOWN = 123 +pkg syscall (netbsd-amd64), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-amd64), const SYS_FCHROOT = 297 +pkg syscall (netbsd-amd64), const SYS_FCNTL = 92 +pkg syscall (netbsd-amd64), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-amd64), const SYS_FEXECVE = 465 +pkg syscall (netbsd-amd64), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-amd64), const SYS_FHSTAT = 451 +pkg syscall (netbsd-amd64), const SYS_FKTRACE = 288 +pkg syscall (netbsd-amd64), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-amd64), const SYS_FLOCK = 131 +pkg syscall (netbsd-amd64), const SYS_FORK = 2 +pkg syscall (netbsd-amd64), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-amd64), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-amd64), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-amd64), const SYS_FSTAT = 440 +pkg syscall (netbsd-amd64), const SYS_FSTATAT = 466 +pkg syscall (netbsd-amd64), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-amd64), const SYS_FSYNC = 95 +pkg syscall (netbsd-amd64), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-amd64), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-amd64), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-amd64), const SYS_FUTIMES = 423 +pkg syscall (netbsd-amd64), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-amd64), const SYS_GETDENTS = 390 +pkg syscall (netbsd-amd64), const SYS_GETEGID = 43 +pkg syscall (netbsd-amd64), const SYS_GETEUID = 25 +pkg syscall (netbsd-amd64), const SYS_GETFH = 395 +pkg syscall (netbsd-amd64), const SYS_GETGID = 47 +pkg syscall (netbsd-amd64), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-amd64), const SYS_GETITIMER = 426 +pkg syscall (netbsd-amd64), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-amd64), const SYS_GETPGID = 207 +pkg syscall (netbsd-amd64), const SYS_GETPGRP = 81 +pkg syscall (netbsd-amd64), const SYS_GETPID = 20 +pkg syscall (netbsd-amd64), const SYS_GETPPID = 39 +pkg syscall (netbsd-amd64), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-amd64), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-amd64), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-amd64), const SYS_GETSID = 286 +pkg syscall (netbsd-amd64), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-amd64), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-amd64), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-amd64), const SYS_GETUID = 24 +pkg syscall (netbsd-amd64), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-amd64), const SYS_GETXATTR = 378 +pkg syscall (netbsd-amd64), const SYS_IOCTL = 54 +pkg syscall (netbsd-amd64), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-amd64), const SYS_KEVENT = 435 +pkg syscall (netbsd-amd64), const SYS_KILL = 37 +pkg syscall (netbsd-amd64), const SYS_KQUEUE = 344 +pkg syscall (netbsd-amd64), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-amd64), const SYS_KTRACE = 45 +pkg syscall (netbsd-amd64), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-amd64), const SYS_LCHMOD = 274 +pkg syscall (netbsd-amd64), const SYS_LCHOWN = 275 +pkg syscall (netbsd-amd64), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-amd64), const SYS_LINK = 9 +pkg syscall (netbsd-amd64), const SYS_LINKAT = 457 +pkg syscall (netbsd-amd64), const SYS_LISTEN = 106 +pkg syscall (netbsd-amd64), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-amd64), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-amd64), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-amd64), const SYS_LSEEK = 199 +pkg syscall (netbsd-amd64), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-amd64), const SYS_LSTAT = 441 +pkg syscall (netbsd-amd64), const SYS_LUTIMES = 424 +pkg syscall (netbsd-amd64), const SYS_MADVISE = 75 +pkg syscall (netbsd-amd64), const SYS_MINCORE = 78 +pkg syscall (netbsd-amd64), const SYS_MINHERIT = 273 +pkg syscall (netbsd-amd64), const SYS_MKDIR = 136 +pkg syscall (netbsd-amd64), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-amd64), const SYS_MKFIFO = 132 +pkg syscall (netbsd-amd64), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-amd64), const SYS_MKNOD = 450 +pkg syscall (netbsd-amd64), const SYS_MKNODAT = 460 +pkg syscall (netbsd-amd64), const SYS_MLOCK = 203 +pkg syscall (netbsd-amd64), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-amd64), const SYS_MMAP = 197 +pkg syscall (netbsd-amd64), const SYS_MODCTL = 246 +pkg syscall (netbsd-amd64), const SYS_MOUNT = 410 +pkg syscall (netbsd-amd64), const SYS_MPROTECT = 74 +pkg syscall (netbsd-amd64), const SYS_MREMAP = 411 +pkg syscall (netbsd-amd64), const SYS_MSGCTL = 444 +pkg syscall (netbsd-amd64), const SYS_MSGGET = 225 +pkg syscall (netbsd-amd64), const SYS_MSGRCV = 227 +pkg syscall (netbsd-amd64), const SYS_MSGSND = 226 +pkg syscall (netbsd-amd64), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-amd64), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-amd64), const SYS_MUNMAP = 73 +pkg syscall (netbsd-amd64), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-amd64), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-amd64), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-amd64), const SYS_OPEN = 5 +pkg syscall (netbsd-amd64), const SYS_OPENAT = 468 +pkg syscall (netbsd-amd64), const SYS_PACCEPT = 456 +pkg syscall (netbsd-amd64), const SYS_PATHCONF = 191 +pkg syscall (netbsd-amd64), const SYS_PIPE = 42 +pkg syscall (netbsd-amd64), const SYS_PIPE2 = 453 +pkg syscall (netbsd-amd64), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-amd64), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-amd64), const SYS_POLL = 209 +pkg syscall (netbsd-amd64), const SYS_POLLTS = 437 +pkg syscall (netbsd-amd64), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-amd64), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-amd64), const SYS_PREAD = 173 +pkg syscall (netbsd-amd64), const SYS_PREADV = 289 +pkg syscall (netbsd-amd64), const SYS_PROFIL = 44 +pkg syscall (netbsd-amd64), const SYS_PSELECT = 436 +pkg syscall (netbsd-amd64), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-amd64), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-amd64), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-amd64), const SYS_PTRACE = 26 +pkg syscall (netbsd-amd64), const SYS_PWRITE = 174 +pkg syscall (netbsd-amd64), const SYS_PWRITEV = 290 +pkg syscall (netbsd-amd64), const SYS_RASCTL = 343 +pkg syscall (netbsd-amd64), const SYS_READ = 3 +pkg syscall (netbsd-amd64), const SYS_READLINK = 58 +pkg syscall (netbsd-amd64), const SYS_READLINKAT = 469 +pkg syscall (netbsd-amd64), const SYS_READV = 120 +pkg syscall (netbsd-amd64), const SYS_REBOOT = 208 +pkg syscall (netbsd-amd64), const SYS_RECVFROM = 29 +pkg syscall (netbsd-amd64), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-amd64), const SYS_RECVMSG = 27 +pkg syscall (netbsd-amd64), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-amd64), const SYS_RENAME = 128 +pkg syscall (netbsd-amd64), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-amd64), const SYS_REVOKE = 56 +pkg syscall (netbsd-amd64), const SYS_RMDIR = 137 +pkg syscall (netbsd-amd64), const SYS_SBRK = 69 +pkg syscall (netbsd-amd64), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-amd64), const SYS_SELECT = 417 +pkg syscall (netbsd-amd64), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-amd64), const SYS_SEMGET = 221 +pkg syscall (netbsd-amd64), const SYS_SEMOP = 222 +pkg syscall (netbsd-amd64), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-amd64), const SYS_SENDMSG = 28 +pkg syscall (netbsd-amd64), const SYS_SENDTO = 133 +pkg syscall (netbsd-amd64), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-amd64), const SYS_SETEGID = 182 +pkg syscall (netbsd-amd64), const SYS_SETEUID = 183 +pkg syscall (netbsd-amd64), const SYS_SETGID = 181 +pkg syscall (netbsd-amd64), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-amd64), const SYS_SETITIMER = 425 +pkg syscall (netbsd-amd64), const SYS_SETPGID = 82 +pkg syscall (netbsd-amd64), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-amd64), const SYS_SETREGID = 127 +pkg syscall (netbsd-amd64), const SYS_SETREUID = 126 +pkg syscall (netbsd-amd64), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-amd64), const SYS_SETSID = 147 +pkg syscall (netbsd-amd64), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-amd64), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-amd64), const SYS_SETUID = 23 +pkg syscall (netbsd-amd64), const SYS_SETXATTR = 375 +pkg syscall (netbsd-amd64), const SYS_SHMAT = 228 +pkg syscall (netbsd-amd64), const SYS_SHMCTL = 443 +pkg syscall (netbsd-amd64), const SYS_SHMDT = 230 +pkg syscall (netbsd-amd64), const SYS_SHMGET = 231 +pkg syscall (netbsd-amd64), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-amd64), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-amd64), const SYS_SOCKET = 394 +pkg syscall (netbsd-amd64), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-amd64), const SYS_SSTK = 70 +pkg syscall (netbsd-amd64), const SYS_STAT = 439 +pkg syscall (netbsd-amd64), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-amd64), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-amd64), const SYS_SYMLINK = 57 +pkg syscall (netbsd-amd64), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-amd64), const SYS_SYNC = 36 +pkg syscall (netbsd-amd64), const SYS_SYSARCH = 165 +pkg syscall (netbsd-amd64), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-amd64), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-amd64), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-amd64), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-amd64), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-amd64), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-amd64), const SYS_UMASK = 60 +pkg syscall (netbsd-amd64), const SYS_UNDELETE = 205 +pkg syscall (netbsd-amd64), const SYS_UNLINK = 10 +pkg syscall (netbsd-amd64), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-amd64), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-amd64), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-amd64), const SYS_UTIMES = 420 +pkg syscall (netbsd-amd64), const SYS_UTRACE = 306 +pkg syscall (netbsd-amd64), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-amd64), const SYS_VADVISE = 72 +pkg syscall (netbsd-amd64), const SYS_VFORK = 66 +pkg syscall (netbsd-amd64), const SYS_WAIT4 = 449 +pkg syscall (netbsd-amd64), const SYS_WRITE = 4 +pkg syscall (netbsd-amd64), const SYS_WRITEV = 121 +pkg syscall (netbsd-amd64), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-amd64), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-amd64), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-amd64), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-amd64), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-amd64), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-amd64), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-amd64), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-amd64), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-amd64), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-amd64), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-amd64), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-amd64), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-amd64), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-amd64), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-amd64), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-amd64), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-amd64), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-amd64), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-amd64), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-amd64), const SYS___CLONE = 287 +pkg syscall (netbsd-amd64), const SYS___GETCWD = 296 +pkg syscall (netbsd-amd64), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-amd64), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-amd64), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-amd64), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-amd64), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-amd64), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-amd64), const SYS___SEMCTL = 442 +pkg syscall (netbsd-amd64), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-amd64), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-amd64), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-amd64), const SYS___SYSCTL = 202 +pkg syscall (netbsd-amd64), const S_ARCH1 = 65536 +pkg syscall (netbsd-amd64), const S_ARCH2 = 131072 +pkg syscall (netbsd-amd64), const S_BLKSIZE = 512 +pkg syscall (netbsd-amd64), const S_IEXEC = 64 +pkg syscall (netbsd-amd64), const S_IFMT = 61440 +pkg syscall (netbsd-amd64), const S_IFWHT = 57344 +pkg syscall (netbsd-amd64), const S_IREAD = 256 +pkg syscall (netbsd-amd64), const S_IRGRP = 32 +pkg syscall (netbsd-amd64), const S_IROTH = 4 +pkg syscall (netbsd-amd64), const S_IRWXG = 56 +pkg syscall (netbsd-amd64), const S_IRWXO = 7 +pkg syscall (netbsd-amd64), const S_IRWXU = 448 +pkg syscall (netbsd-amd64), const S_ISTXT = 512 +pkg syscall (netbsd-amd64), const S_IWGRP = 16 +pkg syscall (netbsd-amd64), const S_IWOTH = 2 +pkg syscall (netbsd-amd64), const S_IWRITE = 128 +pkg syscall (netbsd-amd64), const S_IXGRP = 8 +pkg syscall (netbsd-amd64), const S_IXOTH = 1 +pkg syscall (netbsd-amd64), const S_LOGIN_SET = 1 +pkg syscall (netbsd-amd64), const SizeofBpfHdr = 32 +pkg syscall (netbsd-amd64), const SizeofBpfInsn = 8 +pkg syscall (netbsd-amd64), const SizeofBpfProgram = 16 +pkg syscall (netbsd-amd64), const SizeofBpfStat = 128 +pkg syscall (netbsd-amd64), const SizeofBpfVersion = 4 +pkg syscall (netbsd-amd64), const SizeofCmsghdr = 12 +pkg syscall (netbsd-amd64), const SizeofIPMreq = 8 +pkg syscall (netbsd-amd64), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-amd64), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-amd64), const SizeofIfData = 136 +pkg syscall (netbsd-amd64), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-amd64), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-amd64), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-amd64), const SizeofLinger = 8 +pkg syscall (netbsd-amd64), const SizeofMsghdr = 48 +pkg syscall (netbsd-amd64), const SizeofRtMetrics = 80 +pkg syscall (netbsd-amd64), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-amd64), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-amd64), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-amd64), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-amd64), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-amd64), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-amd64), const TCIFLUSH = 1 +pkg syscall (netbsd-amd64), const TCIOFLUSH = 3 +pkg syscall (netbsd-amd64), const TCOFLUSH = 2 +pkg syscall (netbsd-amd64), const TCP_CONGCTL = 32 +pkg syscall (netbsd-amd64), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-amd64), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-amd64), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-amd64), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-amd64), const TCP_MAXBURST = 4 +pkg syscall (netbsd-amd64), const TCP_MAXSEG = 2 +pkg syscall (netbsd-amd64), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-amd64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-amd64), const TCP_MD5SIG = 16 +pkg syscall (netbsd-amd64), const TCP_MINMSS = 216 +pkg syscall (netbsd-amd64), const TCP_MSS = 536 +pkg syscall (netbsd-amd64), const TCSAFLUSH = 2 +pkg syscall (netbsd-amd64), const TIOCCBRK = 536900730 +pkg syscall (netbsd-amd64), const TIOCCDTR = 536900728 +pkg syscall (netbsd-amd64), const TIOCCONS = 2147775586 +pkg syscall (netbsd-amd64), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (netbsd-amd64), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-amd64), const TIOCEXCL = 536900621 +pkg syscall (netbsd-amd64), const TIOCEXT = 2147775584 +pkg syscall (netbsd-amd64), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-amd64), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-amd64), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-amd64), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-amd64), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-amd64), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-amd64), const TIOCGETA = 1076655123 +pkg syscall (netbsd-amd64), const TIOCGETD = 1074033690 +pkg syscall (netbsd-amd64), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-amd64), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-amd64), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-amd64), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-amd64), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-amd64), const TIOCGSID = 1074033763 +pkg syscall (netbsd-amd64), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-amd64), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-amd64), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-amd64), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-amd64), const TIOCMGET = 1074033770 +pkg syscall (netbsd-amd64), const TIOCMSET = 2147775597 +pkg syscall (netbsd-amd64), const TIOCM_CAR = 64 +pkg syscall (netbsd-amd64), const TIOCM_CD = 64 +pkg syscall (netbsd-amd64), const TIOCM_CTS = 32 +pkg syscall (netbsd-amd64), const TIOCM_DSR = 256 +pkg syscall (netbsd-amd64), const TIOCM_DTR = 2 +pkg syscall (netbsd-amd64), const TIOCM_LE = 1 +pkg syscall (netbsd-amd64), const TIOCM_RI = 128 +pkg syscall (netbsd-amd64), const TIOCM_RNG = 128 +pkg syscall (netbsd-amd64), const TIOCM_RTS = 4 +pkg syscall (netbsd-amd64), const TIOCM_SR = 16 +pkg syscall (netbsd-amd64), const TIOCM_ST = 8 +pkg syscall (netbsd-amd64), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-amd64), const TIOCNXCL = 536900622 +pkg syscall (netbsd-amd64), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-amd64), const TIOCPKT = 2147775600 +pkg syscall (netbsd-amd64), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-amd64), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-amd64), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-amd64), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-amd64), const TIOCPKT_START = 8 +pkg syscall (netbsd-amd64), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-amd64), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-amd64), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-amd64), const TIOCRCVFRAME = 2148037701 +pkg syscall (netbsd-amd64), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-amd64), const TIOCSBRK = 536900731 +pkg syscall (netbsd-amd64), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-amd64), const TIOCSDTR = 536900729 +pkg syscall (netbsd-amd64), const TIOCSETA = 2150396948 +pkg syscall (netbsd-amd64), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-amd64), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-amd64), const TIOCSETD = 2147775515 +pkg syscall (netbsd-amd64), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-amd64), const TIOCSIG = 536900703 +pkg syscall (netbsd-amd64), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-amd64), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-amd64), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-amd64), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-amd64), const TIOCSTART = 536900718 +pkg syscall (netbsd-amd64), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-amd64), const TIOCSTI = 2147578994 +pkg syscall (netbsd-amd64), const TIOCSTOP = 536900719 +pkg syscall (netbsd-amd64), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-amd64), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-amd64), const TIOCXMTFRAME = 2148037700 +pkg syscall (netbsd-amd64), const TOSTOP = 4194304 +pkg syscall (netbsd-amd64), const VDISCARD = 15 +pkg syscall (netbsd-amd64), const VDSUSP = 11 +pkg syscall (netbsd-amd64), const VEOF = 0 +pkg syscall (netbsd-amd64), const VEOL = 1 +pkg syscall (netbsd-amd64), const VEOL2 = 2 +pkg syscall (netbsd-amd64), const VERASE = 3 +pkg syscall (netbsd-amd64), const VINTR = 8 +pkg syscall (netbsd-amd64), const VKILL = 5 +pkg syscall (netbsd-amd64), const VLNEXT = 14 +pkg syscall (netbsd-amd64), const VMIN = 16 +pkg syscall (netbsd-amd64), const VQUIT = 9 +pkg syscall (netbsd-amd64), const VREPRINT = 6 +pkg syscall (netbsd-amd64), const VSTART = 12 +pkg syscall (netbsd-amd64), const VSTATUS = 18 +pkg syscall (netbsd-amd64), const VSTOP = 13 +pkg syscall (netbsd-amd64), const VSUSP = 10 +pkg syscall (netbsd-amd64), const VTIME = 17 +pkg syscall (netbsd-amd64), const VWERASE = 4 +pkg syscall (netbsd-amd64), const WALL = 8 +pkg syscall (netbsd-amd64), const WALLSIG = 8 +pkg syscall (netbsd-amd64), const WALTSIG = 4 +pkg syscall (netbsd-amd64), const WCLONE = 4 +pkg syscall (netbsd-amd64), const WCOREFLAG = 128 +pkg syscall (netbsd-amd64), const WNOHANG = 1 +pkg syscall (netbsd-amd64), const WNOWAIT = 65536 +pkg syscall (netbsd-amd64), const WNOZOMBIE = 131072 +pkg syscall (netbsd-amd64), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-amd64), const WSTOPPED = 127 +pkg syscall (netbsd-amd64), const WUNTRACED = 2 +pkg syscall (netbsd-amd64-cgo), const AF_APPLETALK = 16 +pkg syscall (netbsd-amd64-cgo), const AF_ARP = 28 +pkg syscall (netbsd-amd64-cgo), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-amd64-cgo), const AF_CCITT = 10 +pkg syscall (netbsd-amd64-cgo), const AF_CHAOS = 5 +pkg syscall (netbsd-amd64-cgo), const AF_CNT = 21 +pkg syscall (netbsd-amd64-cgo), const AF_COIP = 20 +pkg syscall (netbsd-amd64-cgo), const AF_DATAKIT = 9 +pkg syscall (netbsd-amd64-cgo), const AF_DECnet = 12 +pkg syscall (netbsd-amd64-cgo), const AF_DLI = 13 +pkg syscall (netbsd-amd64-cgo), const AF_E164 = 26 +pkg syscall (netbsd-amd64-cgo), const AF_ECMA = 8 +pkg syscall (netbsd-amd64-cgo), const AF_HYLINK = 15 +pkg syscall (netbsd-amd64-cgo), const AF_IEEE80211 = 32 +pkg syscall (netbsd-amd64-cgo), const AF_IMPLINK = 3 +pkg syscall (netbsd-amd64-cgo), const AF_INET6 = 24 +pkg syscall (netbsd-amd64-cgo), const AF_IPX = 23 +pkg syscall (netbsd-amd64-cgo), const AF_ISDN = 26 +pkg syscall (netbsd-amd64-cgo), const AF_ISO = 7 +pkg syscall (netbsd-amd64-cgo), const AF_LAT = 14 +pkg syscall (netbsd-amd64-cgo), const AF_LINK = 18 +pkg syscall (netbsd-amd64-cgo), const AF_LOCAL = 1 +pkg syscall (netbsd-amd64-cgo), const AF_MAX = 35 +pkg syscall (netbsd-amd64-cgo), const AF_MPLS = 33 +pkg syscall (netbsd-amd64-cgo), const AF_NATM = 27 +pkg syscall (netbsd-amd64-cgo), const AF_NS = 6 +pkg syscall (netbsd-amd64-cgo), const AF_OROUTE = 17 +pkg syscall (netbsd-amd64-cgo), const AF_OSI = 7 +pkg syscall (netbsd-amd64-cgo), const AF_PUP = 4 +pkg syscall (netbsd-amd64-cgo), const AF_ROUTE = 34 +pkg syscall (netbsd-amd64-cgo), const AF_SNA = 11 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-amd64-cgo), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-amd64-cgo), const B0 = 0 +pkg syscall (netbsd-amd64-cgo), const B110 = 110 +pkg syscall (netbsd-amd64-cgo), const B115200 = 115200 +pkg syscall (netbsd-amd64-cgo), const B1200 = 1200 +pkg syscall (netbsd-amd64-cgo), const B134 = 134 +pkg syscall (netbsd-amd64-cgo), const B14400 = 14400 +pkg syscall (netbsd-amd64-cgo), const B150 = 150 +pkg syscall (netbsd-amd64-cgo), const B1800 = 1800 +pkg syscall (netbsd-amd64-cgo), const B19200 = 19200 +pkg syscall (netbsd-amd64-cgo), const B200 = 200 +pkg syscall (netbsd-amd64-cgo), const B230400 = 230400 +pkg syscall (netbsd-amd64-cgo), const B2400 = 2400 +pkg syscall (netbsd-amd64-cgo), const B28800 = 28800 +pkg syscall (netbsd-amd64-cgo), const B300 = 300 +pkg syscall (netbsd-amd64-cgo), const B38400 = 38400 +pkg syscall (netbsd-amd64-cgo), const B460800 = 460800 +pkg syscall (netbsd-amd64-cgo), const B4800 = 4800 +pkg syscall (netbsd-amd64-cgo), const B50 = 50 +pkg syscall (netbsd-amd64-cgo), const B57600 = 57600 +pkg syscall (netbsd-amd64-cgo), const B600 = 600 +pkg syscall (netbsd-amd64-cgo), const B7200 = 7200 +pkg syscall (netbsd-amd64-cgo), const B75 = 75 +pkg syscall (netbsd-amd64-cgo), const B76800 = 76800 +pkg syscall (netbsd-amd64-cgo), const B921600 = 921600 +pkg syscall (netbsd-amd64-cgo), const B9600 = 9600 +pkg syscall (netbsd-amd64-cgo), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-amd64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-amd64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-amd64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-amd64-cgo), const BIOCGDLTLIST = 3222291063 +pkg syscall (netbsd-amd64-cgo), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-amd64-cgo), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-amd64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-amd64-cgo), const BIOCGRTIMEOUT = 1074807419 +pkg syscall (netbsd-amd64-cgo), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-amd64-cgo), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-amd64-cgo), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-amd64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-amd64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-amd64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-amd64-cgo), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-amd64-cgo), const BIOCSETF = 2148549223 +pkg syscall (netbsd-amd64-cgo), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-amd64-cgo), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-amd64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-amd64-cgo), const BIOCSRTIMEOUT = 2148549242 +pkg syscall (netbsd-amd64-cgo), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-amd64-cgo), const BIOCSTCPF = 2148549234 +pkg syscall (netbsd-amd64-cgo), const BIOCSUDPF = 2148549235 +pkg syscall (netbsd-amd64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-amd64-cgo), const BPF_A = 16 +pkg syscall (netbsd-amd64-cgo), const BPF_ABS = 32 +pkg syscall (netbsd-amd64-cgo), const BPF_ADD = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT = 8 +pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-amd64-cgo), const BPF_ALU = 4 +pkg syscall (netbsd-amd64-cgo), const BPF_AND = 80 +pkg syscall (netbsd-amd64-cgo), const BPF_B = 16 +pkg syscall (netbsd-amd64-cgo), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-amd64-cgo), const BPF_DIV = 48 +pkg syscall (netbsd-amd64-cgo), const BPF_H = 8 +pkg syscall (netbsd-amd64-cgo), const BPF_IMM = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_IND = 64 +pkg syscall (netbsd-amd64-cgo), const BPF_JA = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_JEQ = 16 +pkg syscall (netbsd-amd64-cgo), const BPF_JGE = 48 +pkg syscall (netbsd-amd64-cgo), const BPF_JGT = 32 +pkg syscall (netbsd-amd64-cgo), const BPF_JMP = 5 +pkg syscall (netbsd-amd64-cgo), const BPF_JSET = 64 +pkg syscall (netbsd-amd64-cgo), const BPF_K = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_LD = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_LDX = 1 +pkg syscall (netbsd-amd64-cgo), const BPF_LEN = 128 +pkg syscall (netbsd-amd64-cgo), const BPF_LSH = 96 +pkg syscall (netbsd-amd64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-amd64-cgo), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-amd64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-amd64-cgo), const BPF_MEM = 96 +pkg syscall (netbsd-amd64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-amd64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-amd64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-amd64-cgo), const BPF_MISC = 7 +pkg syscall (netbsd-amd64-cgo), const BPF_MSH = 160 +pkg syscall (netbsd-amd64-cgo), const BPF_MUL = 32 +pkg syscall (netbsd-amd64-cgo), const BPF_NEG = 128 +pkg syscall (netbsd-amd64-cgo), const BPF_OR = 64 +pkg syscall (netbsd-amd64-cgo), const BPF_RELEASE = 199606 +pkg syscall (netbsd-amd64-cgo), const BPF_RET = 6 +pkg syscall (netbsd-amd64-cgo), const BPF_RSH = 112 +pkg syscall (netbsd-amd64-cgo), const BPF_ST = 2 +pkg syscall (netbsd-amd64-cgo), const BPF_STX = 3 +pkg syscall (netbsd-amd64-cgo), const BPF_SUB = 16 +pkg syscall (netbsd-amd64-cgo), const BPF_TAX = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_TXA = 128 +pkg syscall (netbsd-amd64-cgo), const BPF_W = 0 +pkg syscall (netbsd-amd64-cgo), const BPF_X = 8 +pkg syscall (netbsd-amd64-cgo), const BRKINT = 2 +pkg syscall (netbsd-amd64-cgo), const CFLUSH = 15 +pkg syscall (netbsd-amd64-cgo), const CLOCAL = 32768 +pkg syscall (netbsd-amd64-cgo), const CREAD = 2048 +pkg syscall (netbsd-amd64-cgo), const CS5 = 0 +pkg syscall (netbsd-amd64-cgo), const CS6 = 256 +pkg syscall (netbsd-amd64-cgo), const CS7 = 512 +pkg syscall (netbsd-amd64-cgo), const CS8 = 768 +pkg syscall (netbsd-amd64-cgo), const CSIZE = 768 +pkg syscall (netbsd-amd64-cgo), const CSTART = 17 +pkg syscall (netbsd-amd64-cgo), const CSTATUS = 20 +pkg syscall (netbsd-amd64-cgo), const CSTOP = 19 +pkg syscall (netbsd-amd64-cgo), const CSTOPB = 1024 +pkg syscall (netbsd-amd64-cgo), const CSUSP = 26 +pkg syscall (netbsd-amd64-cgo), const CTL_MAXNAME = 12 +pkg syscall (netbsd-amd64-cgo), const CTL_NET = 4 +pkg syscall (netbsd-amd64-cgo), const CTL_QUERY = -2 +pkg syscall (netbsd-amd64-cgo), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-amd64-cgo), const DLT_A429 = 184 +pkg syscall (netbsd-amd64-cgo), const DLT_A653_ICM = 185 +pkg syscall (netbsd-amd64-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-amd64-cgo), const DLT_AOS = 222 +pkg syscall (netbsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET = 7 +pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-amd64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-amd64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-amd64-cgo), const DLT_AURORA = 126 +pkg syscall (netbsd-amd64-cgo), const DLT_AX25 = 3 +pkg syscall (netbsd-amd64-cgo), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-amd64-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-amd64-cgo), const DLT_CAN20B = 190 +pkg syscall (netbsd-amd64-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-amd64-cgo), const DLT_CHAOS = 5 +pkg syscall (netbsd-amd64-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC = 104 +pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-amd64-cgo), const DLT_DECT = 221 +pkg syscall (netbsd-amd64-cgo), const DLT_DOCSIS = 143 +pkg syscall (netbsd-amd64-cgo), const DLT_ECONET = 115 +pkg syscall (netbsd-amd64-cgo), const DLT_EN10MB = 1 +pkg syscall (netbsd-amd64-cgo), const DLT_EN3MB = 2 +pkg syscall (netbsd-amd64-cgo), const DLT_ENC = 109 +pkg syscall (netbsd-amd64-cgo), const DLT_ERF = 197 +pkg syscall (netbsd-amd64-cgo), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-amd64-cgo), const DLT_ERF_POS = 176 +pkg syscall (netbsd-amd64-cgo), const DLT_FC_2 = 224 +pkg syscall (netbsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-amd64-cgo), const DLT_FDDI = 10 +pkg syscall (netbsd-amd64-cgo), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY = 107 +pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-amd64-cgo), const DLT_GPF_F = 171 +pkg syscall (netbsd-amd64-cgo), const DLT_GPF_T = 170 +pkg syscall (netbsd-amd64-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-amd64-cgo), const DLT_HDLC = 16 +pkg syscall (netbsd-amd64-cgo), const DLT_HHDLC = 121 +pkg syscall (netbsd-amd64-cgo), const DLT_HIPPI = 15 +pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SN = 146 +pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SP = 145 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802 = 6 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-amd64-cgo), const DLT_IPMB = 199 +pkg syscall (netbsd-amd64-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-amd64-cgo), const DLT_IPNET = 226 +pkg syscall (netbsd-amd64-cgo), const DLT_IPV4 = 228 +pkg syscall (netbsd-amd64-cgo), const DLT_IPV6 = 229 +pkg syscall (netbsd-amd64-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-amd64-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-amd64-cgo), const DLT_LAPD = 203 +pkg syscall (netbsd-amd64-cgo), const DLT_LIN = 212 +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-amd64-cgo), const DLT_LOOP = 108 +pkg syscall (netbsd-amd64-cgo), const DLT_LTALK = 114 +pkg syscall (netbsd-amd64-cgo), const DLT_MFR = 182 +pkg syscall (netbsd-amd64-cgo), const DLT_MOST = 211 +pkg syscall (netbsd-amd64-cgo), const DLT_MPLS = 219 +pkg syscall (netbsd-amd64-cgo), const DLT_MTP2 = 140 +pkg syscall (netbsd-amd64-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-amd64-cgo), const DLT_MTP3 = 141 +pkg syscall (netbsd-amd64-cgo), const DLT_NULL = 0 +pkg syscall (netbsd-amd64-cgo), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-amd64-cgo), const DLT_PFLOG = 117 +pkg syscall (netbsd-amd64-cgo), const DLT_PFSYNC = 18 +pkg syscall (netbsd-amd64-cgo), const DLT_PPI = 192 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP = 9 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-amd64-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-amd64-cgo), const DLT_PRONET = 4 +pkg syscall (netbsd-amd64-cgo), const DLT_RAIF1 = 198 +pkg syscall (netbsd-amd64-cgo), const DLT_RAW = 12 +pkg syscall (netbsd-amd64-cgo), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-amd64-cgo), const DLT_RIO = 124 +pkg syscall (netbsd-amd64-cgo), const DLT_SCCP = 142 +pkg syscall (netbsd-amd64-cgo), const DLT_SITA = 196 +pkg syscall (netbsd-amd64-cgo), const DLT_SLIP = 8 +pkg syscall (netbsd-amd64-cgo), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-amd64-cgo), const DLT_SUNATM = 123 +pkg syscall (netbsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-amd64-cgo), const DLT_TZSP = 128 +pkg syscall (netbsd-amd64-cgo), const DLT_USB = 186 +pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-amd64-cgo), const DLT_WIHART = 223 +pkg syscall (netbsd-amd64-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-amd64-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-amd64-cgo), const DT_BLK = 6 +pkg syscall (netbsd-amd64-cgo), const DT_CHR = 2 +pkg syscall (netbsd-amd64-cgo), const DT_DIR = 4 +pkg syscall (netbsd-amd64-cgo), const DT_FIFO = 1 +pkg syscall (netbsd-amd64-cgo), const DT_LNK = 10 +pkg syscall (netbsd-amd64-cgo), const DT_REG = 8 +pkg syscall (netbsd-amd64-cgo), const DT_SOCK = 12 +pkg syscall (netbsd-amd64-cgo), const DT_UNKNOWN = 0 +pkg syscall (netbsd-amd64-cgo), const DT_WHT = 14 +pkg syscall (netbsd-amd64-cgo), const E2BIG = 7 +pkg syscall (netbsd-amd64-cgo), const EACCES = 13 +pkg syscall (netbsd-amd64-cgo), const EADDRINUSE = 48 +pkg syscall (netbsd-amd64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-amd64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-amd64-cgo), const EAGAIN = 35 +pkg syscall (netbsd-amd64-cgo), const EALREADY = 37 +pkg syscall (netbsd-amd64-cgo), const EAUTH = 80 +pkg syscall (netbsd-amd64-cgo), const EBADF = 9 +pkg syscall (netbsd-amd64-cgo), const EBADMSG = 88 +pkg syscall (netbsd-amd64-cgo), const EBADRPC = 72 +pkg syscall (netbsd-amd64-cgo), const EBUSY = 16 +pkg syscall (netbsd-amd64-cgo), const ECANCELED = 87 +pkg syscall (netbsd-amd64-cgo), const ECHILD = 10 +pkg syscall (netbsd-amd64-cgo), const ECHO = 8 +pkg syscall (netbsd-amd64-cgo), const ECHOCTL = 64 +pkg syscall (netbsd-amd64-cgo), const ECHOE = 2 +pkg syscall (netbsd-amd64-cgo), const ECHOK = 4 +pkg syscall (netbsd-amd64-cgo), const ECHOKE = 1 +pkg syscall (netbsd-amd64-cgo), const ECHONL = 16 +pkg syscall (netbsd-amd64-cgo), const ECHOPRT = 32 +pkg syscall (netbsd-amd64-cgo), const ECONNABORTED = 53 +pkg syscall (netbsd-amd64-cgo), const ECONNREFUSED = 61 +pkg syscall (netbsd-amd64-cgo), const ECONNRESET = 54 +pkg syscall (netbsd-amd64-cgo), const EDEADLK = 11 +pkg syscall (netbsd-amd64-cgo), const EDESTADDRREQ = 39 +pkg syscall (netbsd-amd64-cgo), const EDOM = 33 +pkg syscall (netbsd-amd64-cgo), const EDQUOT = 69 +pkg syscall (netbsd-amd64-cgo), const EEXIST = 17 +pkg syscall (netbsd-amd64-cgo), const EFAULT = 14 +pkg syscall (netbsd-amd64-cgo), const EFBIG = 27 +pkg syscall (netbsd-amd64-cgo), const EFTYPE = 79 +pkg syscall (netbsd-amd64-cgo), const EHOSTDOWN = 64 +pkg syscall (netbsd-amd64-cgo), const EHOSTUNREACH = 65 +pkg syscall (netbsd-amd64-cgo), const EIDRM = 82 +pkg syscall (netbsd-amd64-cgo), const EILSEQ = 85 +pkg syscall (netbsd-amd64-cgo), const EINPROGRESS = 36 +pkg syscall (netbsd-amd64-cgo), const EINTR = 4 +pkg syscall (netbsd-amd64-cgo), const EINVAL = 22 +pkg syscall (netbsd-amd64-cgo), const EIO = 5 +pkg syscall (netbsd-amd64-cgo), const EISCONN = 56 +pkg syscall (netbsd-amd64-cgo), const EISDIR = 21 +pkg syscall (netbsd-amd64-cgo), const ELAST = 96 +pkg syscall (netbsd-amd64-cgo), const ELOOP = 62 +pkg syscall (netbsd-amd64-cgo), const EMFILE = 24 +pkg syscall (netbsd-amd64-cgo), const EMLINK = 31 +pkg syscall (netbsd-amd64-cgo), const EMSGSIZE = 40 +pkg syscall (netbsd-amd64-cgo), const EMULTIHOP = 94 +pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX = 1 +pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-amd64-cgo), const EMUL_MAXID = 6 +pkg syscall (netbsd-amd64-cgo), const ENAMETOOLONG = 63 +pkg syscall (netbsd-amd64-cgo), const ENEEDAUTH = 81 +pkg syscall (netbsd-amd64-cgo), const ENETDOWN = 50 +pkg syscall (netbsd-amd64-cgo), const ENETRESET = 52 +pkg syscall (netbsd-amd64-cgo), const ENETUNREACH = 51 +pkg syscall (netbsd-amd64-cgo), const ENFILE = 23 +pkg syscall (netbsd-amd64-cgo), const ENOATTR = 93 +pkg syscall (netbsd-amd64-cgo), const ENOBUFS = 55 +pkg syscall (netbsd-amd64-cgo), const ENODATA = 89 +pkg syscall (netbsd-amd64-cgo), const ENODEV = 19 +pkg syscall (netbsd-amd64-cgo), const ENOEXEC = 8 +pkg syscall (netbsd-amd64-cgo), const ENOLCK = 77 +pkg syscall (netbsd-amd64-cgo), const ENOLINK = 95 +pkg syscall (netbsd-amd64-cgo), const ENOMEM = 12 +pkg syscall (netbsd-amd64-cgo), const ENOMSG = 83 +pkg syscall (netbsd-amd64-cgo), const ENOPROTOOPT = 42 +pkg syscall (netbsd-amd64-cgo), const ENOSPC = 28 +pkg syscall (netbsd-amd64-cgo), const ENOSR = 90 +pkg syscall (netbsd-amd64-cgo), const ENOSTR = 91 +pkg syscall (netbsd-amd64-cgo), const ENOSYS = 78 +pkg syscall (netbsd-amd64-cgo), const ENOTBLK = 15 +pkg syscall (netbsd-amd64-cgo), const ENOTCONN = 57 +pkg syscall (netbsd-amd64-cgo), const ENOTDIR = 20 +pkg syscall (netbsd-amd64-cgo), const ENOTEMPTY = 66 +pkg syscall (netbsd-amd64-cgo), const ENOTSOCK = 38 +pkg syscall (netbsd-amd64-cgo), const ENOTSUP = 86 +pkg syscall (netbsd-amd64-cgo), const ENOTTY = 25 +pkg syscall (netbsd-amd64-cgo), const ENXIO = 6 +pkg syscall (netbsd-amd64-cgo), const EOPNOTSUPP = 45 +pkg syscall (netbsd-amd64-cgo), const EOVERFLOW = 84 +pkg syscall (netbsd-amd64-cgo), const EPERM = 1 +pkg syscall (netbsd-amd64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-amd64-cgo), const EPIPE = 32 +pkg syscall (netbsd-amd64-cgo), const EPROCLIM = 67 +pkg syscall (netbsd-amd64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-amd64-cgo), const EPROGMISMATCH = 75 +pkg syscall (netbsd-amd64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-amd64-cgo), const EPROTO = 96 +pkg syscall (netbsd-amd64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-amd64-cgo), const EPROTOTYPE = 41 +pkg syscall (netbsd-amd64-cgo), const ERANGE = 34 +pkg syscall (netbsd-amd64-cgo), const EREMOTE = 71 +pkg syscall (netbsd-amd64-cgo), const EROFS = 30 +pkg syscall (netbsd-amd64-cgo), const ERPCMISMATCH = 73 +pkg syscall (netbsd-amd64-cgo), const ESHUTDOWN = 58 +pkg syscall (netbsd-amd64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-amd64-cgo), const ESPIPE = 29 +pkg syscall (netbsd-amd64-cgo), const ESRCH = 3 +pkg syscall (netbsd-amd64-cgo), const ESTALE = 70 +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-amd64-cgo), const ETHERMIN = 46 +pkg syscall (netbsd-amd64-cgo), const ETHERMTU = 1500 +pkg syscall (netbsd-amd64-cgo), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-amd64-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-amd64-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-amd64-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-amd64-cgo), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-amd64-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-amd64-cgo), const ETIME = 92 +pkg syscall (netbsd-amd64-cgo), const ETIMEDOUT = 60 +pkg syscall (netbsd-amd64-cgo), const ETOOMANYREFS = 59 +pkg syscall (netbsd-amd64-cgo), const ETXTBSY = 26 +pkg syscall (netbsd-amd64-cgo), const EUSERS = 68 +pkg syscall (netbsd-amd64-cgo), const EVFILT_AIO = 2 +pkg syscall (netbsd-amd64-cgo), const EVFILT_PROC = 4 +pkg syscall (netbsd-amd64-cgo), const EVFILT_READ = 0 +pkg syscall (netbsd-amd64-cgo), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-amd64-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-amd64-cgo), const EVFILT_TIMER = 6 +pkg syscall (netbsd-amd64-cgo), const EVFILT_VNODE = 3 +pkg syscall (netbsd-amd64-cgo), const EVFILT_WRITE = 1 +pkg syscall (netbsd-amd64-cgo), const EV_ADD = 1 +pkg syscall (netbsd-amd64-cgo), const EV_CLEAR = 32 +pkg syscall (netbsd-amd64-cgo), const EV_DELETE = 2 +pkg syscall (netbsd-amd64-cgo), const EV_DISABLE = 8 +pkg syscall (netbsd-amd64-cgo), const EV_ENABLE = 4 +pkg syscall (netbsd-amd64-cgo), const EV_EOF = 32768 +pkg syscall (netbsd-amd64-cgo), const EV_ERROR = 16384 +pkg syscall (netbsd-amd64-cgo), const EV_FLAG1 = 8192 +pkg syscall (netbsd-amd64-cgo), const EV_ONESHOT = 16 +pkg syscall (netbsd-amd64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-amd64-cgo), const EWOULDBLOCK = 35 +pkg syscall (netbsd-amd64-cgo), const EXDEV = 18 +pkg syscall (netbsd-amd64-cgo), const EXTA = 19200 +pkg syscall (netbsd-amd64-cgo), const EXTB = 38400 +pkg syscall (netbsd-amd64-cgo), const EXTPROC = 2048 +pkg syscall (netbsd-amd64-cgo), const FD_CLOEXEC = 1 +pkg syscall (netbsd-amd64-cgo), const FD_SETSIZE = 256 +pkg syscall (netbsd-amd64-cgo), const FLUSHO = 8388608 +pkg syscall (netbsd-amd64-cgo), const F_CLOSEM = 10 +pkg syscall (netbsd-amd64-cgo), const F_DUPFD = 0 +pkg syscall (netbsd-amd64-cgo), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-amd64-cgo), const F_FSCTL = -2147483648 +pkg syscall (netbsd-amd64-cgo), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-amd64-cgo), const F_FSIN = 268435456 +pkg syscall (netbsd-amd64-cgo), const F_FSINOUT = 805306368 +pkg syscall (netbsd-amd64-cgo), const F_FSOUT = 536870912 +pkg syscall (netbsd-amd64-cgo), const F_FSPRIV = 32768 +pkg syscall (netbsd-amd64-cgo), const F_FSVOID = 1073741824 +pkg syscall (netbsd-amd64-cgo), const F_GETFD = 1 +pkg syscall (netbsd-amd64-cgo), const F_GETFL = 3 +pkg syscall (netbsd-amd64-cgo), const F_GETLK = 7 +pkg syscall (netbsd-amd64-cgo), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-amd64-cgo), const F_GETOWN = 5 +pkg syscall (netbsd-amd64-cgo), const F_MAXFD = 11 +pkg syscall (netbsd-amd64-cgo), const F_OK = 0 +pkg syscall (netbsd-amd64-cgo), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-amd64-cgo), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-amd64-cgo), const F_RDLCK = 1 +pkg syscall (netbsd-amd64-cgo), const F_SETFD = 2 +pkg syscall (netbsd-amd64-cgo), const F_SETFL = 4 +pkg syscall (netbsd-amd64-cgo), const F_SETLK = 8 +pkg syscall (netbsd-amd64-cgo), const F_SETLKW = 9 +pkg syscall (netbsd-amd64-cgo), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-amd64-cgo), const F_SETOWN = 6 +pkg syscall (netbsd-amd64-cgo), const F_UNLCK = 2 +pkg syscall (netbsd-amd64-cgo), const F_WRLCK = 3 +pkg syscall (netbsd-amd64-cgo), const HUPCL = 16384 +pkg syscall (netbsd-amd64-cgo), const ICANON = 256 +pkg syscall (netbsd-amd64-cgo), const ICRNL = 256 +pkg syscall (netbsd-amd64-cgo), const IEXTEN = 1024 +pkg syscall (netbsd-amd64-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-amd64-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-amd64-cgo), const IFA_ROUTE = 1 +pkg syscall (netbsd-amd64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-amd64-cgo), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-amd64-cgo), const IFF_DEBUG = 4 +pkg syscall (netbsd-amd64-cgo), const IFF_LINK0 = 4096 +pkg syscall (netbsd-amd64-cgo), const IFF_LINK1 = 8192 +pkg syscall (netbsd-amd64-cgo), const IFF_LINK2 = 16384 +pkg syscall (netbsd-amd64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-amd64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-amd64-cgo), const IFF_NOARP = 128 +pkg syscall (netbsd-amd64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-amd64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-amd64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-amd64-cgo), const IFF_PROMISC = 256 +pkg syscall (netbsd-amd64-cgo), const IFF_RUNNING = 64 +pkg syscall (netbsd-amd64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-amd64-cgo), const IFNAMSIZ = 16 +pkg syscall (netbsd-amd64-cgo), const IFT_1822 = 2 +pkg syscall (netbsd-amd64-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-amd64-cgo), const IFT_AAL2 = 187 +pkg syscall (netbsd-amd64-cgo), const IFT_AAL5 = 49 +pkg syscall (netbsd-amd64-cgo), const IFT_ADSL = 94 +pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-amd64-cgo), const IFT_ARAP = 88 +pkg syscall (netbsd-amd64-cgo), const IFT_ARCNET = 35 +pkg syscall (netbsd-amd64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-amd64-cgo), const IFT_ASYNC = 84 +pkg syscall (netbsd-amd64-cgo), const IFT_ATM = 37 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMDXI = 105 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMIMA = 107 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-amd64-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-amd64-cgo), const IFT_BRIDGE = 209 +pkg syscall (netbsd-amd64-cgo), const IFT_BSC = 83 +pkg syscall (netbsd-amd64-cgo), const IFT_CARP = 248 +pkg syscall (netbsd-amd64-cgo), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-amd64-cgo), const IFT_CEPT = 19 +pkg syscall (netbsd-amd64-cgo), const IFT_CES = 133 +pkg syscall (netbsd-amd64-cgo), const IFT_CHANNEL = 70 +pkg syscall (netbsd-amd64-cgo), const IFT_CNR = 85 +pkg syscall (netbsd-amd64-cgo), const IFT_COFFEE = 132 +pkg syscall (netbsd-amd64-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-amd64-cgo), const IFT_DCN = 141 +pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-amd64-cgo), const IFT_DLSW = 74 +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-amd64-cgo), const IFT_DS0 = 81 +pkg syscall (netbsd-amd64-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-amd64-cgo), const IFT_DS1FDL = 170 +pkg syscall (netbsd-amd64-cgo), const IFT_DS3 = 30 +pkg syscall (netbsd-amd64-cgo), const IFT_DTM = 140 +pkg syscall (netbsd-amd64-cgo), const IFT_DVBASILN = 172 +pkg syscall (netbsd-amd64-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-amd64-cgo), const IFT_ECONET = 206 +pkg syscall (netbsd-amd64-cgo), const IFT_EON = 25 +pkg syscall (netbsd-amd64-cgo), const IFT_EPLRS = 87 +pkg syscall (netbsd-amd64-cgo), const IFT_ESCON = 73 +pkg syscall (netbsd-amd64-cgo), const IFT_ETHER = 6 +pkg syscall (netbsd-amd64-cgo), const IFT_FAITH = 242 +pkg syscall (netbsd-amd64-cgo), const IFT_FAST = 125 +pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHER = 62 +pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-amd64-cgo), const IFT_FDDI = 15 +pkg syscall (netbsd-amd64-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-amd64-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-amd64-cgo), const IFT_FRELAY = 32 +pkg syscall (netbsd-amd64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-amd64-cgo), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-amd64-cgo), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-amd64-cgo), const IFT_G703AT64K = 66 +pkg syscall (netbsd-amd64-cgo), const IFT_GIF = 240 +pkg syscall (netbsd-amd64-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-amd64-cgo), const IFT_GR303IDT = 178 +pkg syscall (netbsd-amd64-cgo), const IFT_GR303RDT = 177 +pkg syscall (netbsd-amd64-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-amd64-cgo), const IFT_H323PROXY = 165 +pkg syscall (netbsd-amd64-cgo), const IFT_HDH1822 = 3 +pkg syscall (netbsd-amd64-cgo), const IFT_HDLC = 118 +pkg syscall (netbsd-amd64-cgo), const IFT_HDSL2 = 168 +pkg syscall (netbsd-amd64-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-amd64-cgo), const IFT_HIPPI = 47 +pkg syscall (netbsd-amd64-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-amd64-cgo), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-amd64-cgo), const IFT_HSSI = 46 +pkg syscall (netbsd-amd64-cgo), const IFT_HY = 14 +pkg syscall (netbsd-amd64-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-amd64-cgo), const IFT_IDSL = 154 +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-amd64-cgo), const IFT_IFGSN = 145 +pkg syscall (netbsd-amd64-cgo), const IFT_IMT = 190 +pkg syscall (netbsd-amd64-cgo), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-amd64-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-amd64-cgo), const IFT_IP = 126 +pkg syscall (netbsd-amd64-cgo), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-amd64-cgo), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-amd64-cgo), const IFT_ISDN = 63 +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNS = 75 +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNU = 76 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88023 = 7 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88024 = 8 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025 = 9 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88026 = 10 +pkg syscall (netbsd-amd64-cgo), const IFT_ISUP = 179 +pkg syscall (netbsd-amd64-cgo), const IFT_L2VLAN = 135 +pkg syscall (netbsd-amd64-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-amd64-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-amd64-cgo), const IFT_LAPB = 16 +pkg syscall (netbsd-amd64-cgo), const IFT_LAPD = 77 +pkg syscall (netbsd-amd64-cgo), const IFT_LAPF = 119 +pkg syscall (netbsd-amd64-cgo), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-amd64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-amd64-cgo), const IFT_LOOP = 24 +pkg syscall (netbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-amd64-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-amd64-cgo), const IFT_MIOX25 = 38 +pkg syscall (netbsd-amd64-cgo), const IFT_MODEM = 48 +pkg syscall (netbsd-amd64-cgo), const IFT_MPC = 113 +pkg syscall (netbsd-amd64-cgo), const IFT_MPLS = 166 +pkg syscall (netbsd-amd64-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-amd64-cgo), const IFT_MSDSL = 143 +pkg syscall (netbsd-amd64-cgo), const IFT_MVL = 191 +pkg syscall (netbsd-amd64-cgo), const IFT_MYRINET = 99 +pkg syscall (netbsd-amd64-cgo), const IFT_NFAS = 175 +pkg syscall (netbsd-amd64-cgo), const IFT_NSIP = 27 +pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-amd64-cgo), const IFT_OTHER = 1 +pkg syscall (netbsd-amd64-cgo), const IFT_P10 = 12 +pkg syscall (netbsd-amd64-cgo), const IFT_P80 = 13 +pkg syscall (netbsd-amd64-cgo), const IFT_PARA = 34 +pkg syscall (netbsd-amd64-cgo), const IFT_PFLOG = 245 +pkg syscall (netbsd-amd64-cgo), const IFT_PFSYNC = 246 +pkg syscall (netbsd-amd64-cgo), const IFT_PLC = 174 +pkg syscall (netbsd-amd64-cgo), const IFT_PON155 = 207 +pkg syscall (netbsd-amd64-cgo), const IFT_PON622 = 208 +pkg syscall (netbsd-amd64-cgo), const IFT_POS = 171 +pkg syscall (netbsd-amd64-cgo), const IFT_PPP = 23 +pkg syscall (netbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPATM = 197 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPMUX = 54 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-amd64-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-amd64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-amd64-cgo), const IFT_PVC = 241 +pkg syscall (netbsd-amd64-cgo), const IFT_Q2931 = 201 +pkg syscall (netbsd-amd64-cgo), const IFT_QLLC = 68 +pkg syscall (netbsd-amd64-cgo), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-amd64-cgo), const IFT_RADSL = 95 +pkg syscall (netbsd-amd64-cgo), const IFT_REACHDSL = 192 +pkg syscall (netbsd-amd64-cgo), const IFT_RFC1483 = 159 +pkg syscall (netbsd-amd64-cgo), const IFT_RS232 = 33 +pkg syscall (netbsd-amd64-cgo), const IFT_RSRB = 79 +pkg syscall (netbsd-amd64-cgo), const IFT_SDLC = 17 +pkg syscall (netbsd-amd64-cgo), const IFT_SDSL = 96 +pkg syscall (netbsd-amd64-cgo), const IFT_SHDSL = 169 +pkg syscall (netbsd-amd64-cgo), const IFT_SIP = 31 +pkg syscall (netbsd-amd64-cgo), const IFT_SIPSIG = 204 +pkg syscall (netbsd-amd64-cgo), const IFT_SIPTG = 203 +pkg syscall (netbsd-amd64-cgo), const IFT_SLIP = 28 +pkg syscall (netbsd-amd64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-amd64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-amd64-cgo), const IFT_SONET = 39 +pkg syscall (netbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-amd64-cgo), const IFT_SONETPATH = 50 +pkg syscall (netbsd-amd64-cgo), const IFT_SONETVT = 51 +pkg syscall (netbsd-amd64-cgo), const IFT_SRP = 151 +pkg syscall (netbsd-amd64-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-amd64-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-amd64-cgo), const IFT_STARLAN = 11 +pkg syscall (netbsd-amd64-cgo), const IFT_STF = 215 +pkg syscall (netbsd-amd64-cgo), const IFT_T1 = 18 +pkg syscall (netbsd-amd64-cgo), const IFT_TDLC = 116 +pkg syscall (netbsd-amd64-cgo), const IFT_TELINK = 200 +pkg syscall (netbsd-amd64-cgo), const IFT_TERMPAD = 91 +pkg syscall (netbsd-amd64-cgo), const IFT_TR008 = 176 +pkg syscall (netbsd-amd64-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-amd64-cgo), const IFT_TUNNEL = 131 +pkg syscall (netbsd-amd64-cgo), const IFT_ULTRA = 29 +pkg syscall (netbsd-amd64-cgo), const IFT_USB = 160 +pkg syscall (netbsd-amd64-cgo), const IFT_V11 = 64 +pkg syscall (netbsd-amd64-cgo), const IFT_V35 = 45 +pkg syscall (netbsd-amd64-cgo), const IFT_V36 = 65 +pkg syscall (netbsd-amd64-cgo), const IFT_V37 = 120 +pkg syscall (netbsd-amd64-cgo), const IFT_VDSL = 97 +pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEDID = 213 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEM = 100 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-amd64-cgo), const IFT_X213 = 93 +pkg syscall (netbsd-amd64-cgo), const IFT_X25 = 5 +pkg syscall (netbsd-amd64-cgo), const IFT_X25DDN = 4 +pkg syscall (netbsd-amd64-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-amd64-cgo), const IFT_X25MLP = 121 +pkg syscall (netbsd-amd64-cgo), const IFT_X25PLE = 40 +pkg syscall (netbsd-amd64-cgo), const IFT_XETHER = 26 +pkg syscall (netbsd-amd64-cgo), const IGNBRK = 1 +pkg syscall (netbsd-amd64-cgo), const IGNCR = 128 +pkg syscall (netbsd-amd64-cgo), const IGNPAR = 4 +pkg syscall (netbsd-amd64-cgo), const IMAXBEL = 8192 +pkg syscall (netbsd-amd64-cgo), const INLCR = 64 +pkg syscall (netbsd-amd64-cgo), const INPCK = 16 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-amd64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_AH = 51 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_CARP = 112 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_DONE = 257 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_EGP = 8 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_EON = 80 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ESP = 50 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_GGP = 3 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_GRE = 47 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IDP = 22 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAX = 256 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_NONE = 59 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PIM = 103 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PUP = 12 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_RAW = 255 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_TP = 29 +pkg syscall (netbsd-amd64-cgo), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-amd64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-amd64-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-amd64-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-amd64-cgo), const IPV6_FAITH = 29 +pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-amd64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-amd64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-amd64-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-amd64-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-amd64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-amd64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-amd64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-amd64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-amd64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-amd64-cgo), const IPV6_MMTU = 1280 +pkg syscall (netbsd-amd64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-amd64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-amd64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-amd64-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-amd64-cgo), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-amd64-cgo), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR = 51 +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-amd64-cgo), const IPV6_TCLASS = 61 +pkg syscall (netbsd-amd64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-amd64-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-amd64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION = 96 +pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-amd64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-amd64-cgo), const IP_DF = 16384 +pkg syscall (netbsd-amd64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-amd64-cgo), const IP_EF = 32768 +pkg syscall (netbsd-amd64-cgo), const IP_ERRORMTU = 21 +pkg syscall (netbsd-amd64-cgo), const IP_HDRINCL = 2 +pkg syscall (netbsd-amd64-cgo), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-amd64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-amd64-cgo), const IP_MF = 8192 +pkg syscall (netbsd-amd64-cgo), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-amd64-cgo), const IP_MINTTL = 24 +pkg syscall (netbsd-amd64-cgo), const IP_MSS = 576 +pkg syscall (netbsd-amd64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-amd64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-amd64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-amd64-cgo), const IP_OFFMASK = 8191 +pkg syscall (netbsd-amd64-cgo), const IP_OPTIONS = 1 +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE = 19 +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-amd64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-amd64-cgo), const IP_RECVIF = 20 +pkg syscall (netbsd-amd64-cgo), const IP_RECVOPTS = 5 +pkg syscall (netbsd-amd64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-amd64-cgo), const IP_RECVTTL = 23 +pkg syscall (netbsd-amd64-cgo), const IP_RETOPTS = 8 +pkg syscall (netbsd-amd64-cgo), const IP_RF = 32768 +pkg syscall (netbsd-amd64-cgo), const IP_TOS = 3 +pkg syscall (netbsd-amd64-cgo), const IP_TTL = 4 +pkg syscall (netbsd-amd64-cgo), const ISIG = 128 +pkg syscall (netbsd-amd64-cgo), const ISTRIP = 32 +pkg syscall (netbsd-amd64-cgo), const IXANY = 2048 +pkg syscall (netbsd-amd64-cgo), const IXOFF = 1024 +pkg syscall (netbsd-amd64-cgo), const IXON = 512 +pkg syscall (netbsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-amd64-cgo), const LOCK_EX = 2 +pkg syscall (netbsd-amd64-cgo), const LOCK_NB = 4 +pkg syscall (netbsd-amd64-cgo), const LOCK_SH = 1 +pkg syscall (netbsd-amd64-cgo), const LOCK_UN = 8 +pkg syscall (netbsd-amd64-cgo), const MSG_BCAST = 256 +pkg syscall (netbsd-amd64-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-amd64-cgo), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-amd64-cgo), const MSG_CTRUNC = 32 +pkg syscall (netbsd-amd64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-amd64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-amd64-cgo), const MSG_EOR = 8 +pkg syscall (netbsd-amd64-cgo), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-amd64-cgo), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-amd64-cgo), const MSG_MCAST = 512 +pkg syscall (netbsd-amd64-cgo), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-amd64-cgo), const MSG_NBIO = 4096 +pkg syscall (netbsd-amd64-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-amd64-cgo), const MSG_OOB = 1 +pkg syscall (netbsd-amd64-cgo), const MSG_PEEK = 2 +pkg syscall (netbsd-amd64-cgo), const MSG_TRUNC = 16 +pkg syscall (netbsd-amd64-cgo), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-amd64-cgo), const MSG_WAITALL = 64 +pkg syscall (netbsd-amd64-cgo), const NAME_MAX = 511 +pkg syscall (netbsd-amd64-cgo), const NET_RT_DUMP = 1 +pkg syscall (netbsd-amd64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-amd64-cgo), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-amd64-cgo), const NET_RT_MAXID = 6 +pkg syscall (netbsd-amd64-cgo), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-amd64-cgo), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-amd64-cgo), const NOFLSH = 2147483648 +pkg syscall (netbsd-amd64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-amd64-cgo), const NOTE_CHILD = 4 +pkg syscall (netbsd-amd64-cgo), const NOTE_DELETE = 1 +pkg syscall (netbsd-amd64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-amd64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-amd64-cgo), const NOTE_EXTEND = 4 +pkg syscall (netbsd-amd64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-amd64-cgo), const NOTE_LINK = 16 +pkg syscall (netbsd-amd64-cgo), const NOTE_LOWAT = 1 +pkg syscall (netbsd-amd64-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-amd64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-amd64-cgo), const NOTE_RENAME = 32 +pkg syscall (netbsd-amd64-cgo), const NOTE_REVOKE = 64 +pkg syscall (netbsd-amd64-cgo), const NOTE_TRACK = 1 +pkg syscall (netbsd-amd64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-amd64-cgo), const NOTE_WRITE = 2 +pkg syscall (netbsd-amd64-cgo), const OCRNL = 16 +pkg syscall (netbsd-amd64-cgo), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-amd64-cgo), const ONLCR = 2 +pkg syscall (netbsd-amd64-cgo), const ONLRET = 64 +pkg syscall (netbsd-amd64-cgo), const ONOCR = 32 +pkg syscall (netbsd-amd64-cgo), const ONOEOT = 8 +pkg syscall (netbsd-amd64-cgo), const OPOST = 1 +pkg syscall (netbsd-amd64-cgo), const O_ACCMODE = 3 +pkg syscall (netbsd-amd64-cgo), const O_ALT_IO = 262144 +pkg syscall (netbsd-amd64-cgo), const O_APPEND = 8 +pkg syscall (netbsd-amd64-cgo), const O_ASYNC = 64 +pkg syscall (netbsd-amd64-cgo), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-amd64-cgo), const O_CREAT = 512 +pkg syscall (netbsd-amd64-cgo), const O_DIRECT = 524288 +pkg syscall (netbsd-amd64-cgo), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-amd64-cgo), const O_DSYNC = 65536 +pkg syscall (netbsd-amd64-cgo), const O_EXCL = 2048 +pkg syscall (netbsd-amd64-cgo), const O_EXLOCK = 32 +pkg syscall (netbsd-amd64-cgo), const O_FSYNC = 128 +pkg syscall (netbsd-amd64-cgo), const O_NDELAY = 4 +pkg syscall (netbsd-amd64-cgo), const O_NOCTTY = 32768 +pkg syscall (netbsd-amd64-cgo), const O_NOFOLLOW = 256 +pkg syscall (netbsd-amd64-cgo), const O_NONBLOCK = 4 +pkg syscall (netbsd-amd64-cgo), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-amd64-cgo), const O_RSYNC = 131072 +pkg syscall (netbsd-amd64-cgo), const O_SHLOCK = 16 +pkg syscall (netbsd-amd64-cgo), const O_SYNC = 128 +pkg syscall (netbsd-amd64-cgo), const O_TRUNC = 1024 +pkg syscall (netbsd-amd64-cgo), const PARENB = 4096 +pkg syscall (netbsd-amd64-cgo), const PARMRK = 8 +pkg syscall (netbsd-amd64-cgo), const PARODD = 8192 +pkg syscall (netbsd-amd64-cgo), const PENDIN = 536870912 +pkg syscall (netbsd-amd64-cgo), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-amd64-cgo), const PTRACE_CONT = 7 +pkg syscall (netbsd-amd64-cgo), const PTRACE_KILL = 8 +pkg syscall (netbsd-amd64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_AS = 10 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_CORE = 4 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_CPU = 0 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_DATA = 2 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-amd64-cgo), const RLIMIT_STACK = 3 +pkg syscall (netbsd-amd64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-amd64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-amd64-cgo), const RTAX_BRD = 7 +pkg syscall (netbsd-amd64-cgo), const RTAX_DST = 0 +pkg syscall (netbsd-amd64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-amd64-cgo), const RTAX_GENMASK = 3 +pkg syscall (netbsd-amd64-cgo), const RTAX_IFA = 5 +pkg syscall (netbsd-amd64-cgo), const RTAX_IFP = 4 +pkg syscall (netbsd-amd64-cgo), const RTAX_MAX = 9 +pkg syscall (netbsd-amd64-cgo), const RTAX_NETMASK = 2 +pkg syscall (netbsd-amd64-cgo), const RTAX_TAG = 8 +pkg syscall (netbsd-amd64-cgo), const RTA_AUTHOR = 64 +pkg syscall (netbsd-amd64-cgo), const RTA_BRD = 128 +pkg syscall (netbsd-amd64-cgo), const RTA_DST = 1 +pkg syscall (netbsd-amd64-cgo), const RTA_GATEWAY = 2 +pkg syscall (netbsd-amd64-cgo), const RTA_GENMASK = 8 +pkg syscall (netbsd-amd64-cgo), const RTA_IFA = 32 +pkg syscall (netbsd-amd64-cgo), const RTA_IFP = 16 +pkg syscall (netbsd-amd64-cgo), const RTA_NETMASK = 4 +pkg syscall (netbsd-amd64-cgo), const RTA_TAG = 256 +pkg syscall (netbsd-amd64-cgo), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-amd64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-amd64-cgo), const RTF_CLONED = 8192 +pkg syscall (netbsd-amd64-cgo), const RTF_CLONING = 256 +pkg syscall (netbsd-amd64-cgo), const RTF_DONE = 64 +pkg syscall (netbsd-amd64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-amd64-cgo), const RTF_GATEWAY = 2 +pkg syscall (netbsd-amd64-cgo), const RTF_HOST = 4 +pkg syscall (netbsd-amd64-cgo), const RTF_LLINFO = 1024 +pkg syscall (netbsd-amd64-cgo), const RTF_MASK = 128 +pkg syscall (netbsd-amd64-cgo), const RTF_MODIFIED = 32 +pkg syscall (netbsd-amd64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-amd64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-amd64-cgo), const RTF_REJECT = 8 +pkg syscall (netbsd-amd64-cgo), const RTF_SRC = 65536 +pkg syscall (netbsd-amd64-cgo), const RTF_STATIC = 2048 +pkg syscall (netbsd-amd64-cgo), const RTF_UP = 1 +pkg syscall (netbsd-amd64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-amd64-cgo), const RTM_ADD = 1 +pkg syscall (netbsd-amd64-cgo), const RTM_CHANGE = 3 +pkg syscall (netbsd-amd64-cgo), const RTM_CHGADDR = 21 +pkg syscall (netbsd-amd64-cgo), const RTM_DELADDR = 13 +pkg syscall (netbsd-amd64-cgo), const RTM_DELETE = 2 +pkg syscall (netbsd-amd64-cgo), const RTM_GET = 4 +pkg syscall (netbsd-amd64-cgo), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-amd64-cgo), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-amd64-cgo), const RTM_IFINFO = 20 +pkg syscall (netbsd-amd64-cgo), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-amd64-cgo), const RTM_LOCK = 8 +pkg syscall (netbsd-amd64-cgo), const RTM_LOSING = 5 +pkg syscall (netbsd-amd64-cgo), const RTM_MISS = 7 +pkg syscall (netbsd-amd64-cgo), const RTM_NEWADDR = 12 +pkg syscall (netbsd-amd64-cgo), const RTM_OIFINFO = 15 +pkg syscall (netbsd-amd64-cgo), const RTM_OLDADD = 9 +pkg syscall (netbsd-amd64-cgo), const RTM_OLDDEL = 10 +pkg syscall (netbsd-amd64-cgo), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-amd64-cgo), const RTM_REDIRECT = 6 +pkg syscall (netbsd-amd64-cgo), const RTM_RESOLVE = 11 +pkg syscall (netbsd-amd64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-amd64-cgo), const RTM_SETGATE = 18 +pkg syscall (netbsd-amd64-cgo), const RTM_VERSION = 4 +pkg syscall (netbsd-amd64-cgo), const RTV_EXPIRE = 4 +pkg syscall (netbsd-amd64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-amd64-cgo), const RTV_MTU = 1 +pkg syscall (netbsd-amd64-cgo), const RTV_RPIPE = 8 +pkg syscall (netbsd-amd64-cgo), const RTV_RTT = 64 +pkg syscall (netbsd-amd64-cgo), const RTV_RTTVAR = 128 +pkg syscall (netbsd-amd64-cgo), const RTV_SPIPE = 16 +pkg syscall (netbsd-amd64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-amd64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-amd64-cgo), const RUSAGE_SELF = 0 +pkg syscall (netbsd-amd64-cgo), const SCM_CREDS = 4 +pkg syscall (netbsd-amd64-cgo), const SCM_RIGHTS = 1 +pkg syscall (netbsd-amd64-cgo), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-amd64-cgo), const SIGBUS = 10 +pkg syscall (netbsd-amd64-cgo), const SIGCHLD = 20 +pkg syscall (netbsd-amd64-cgo), const SIGCONT = 19 +pkg syscall (netbsd-amd64-cgo), const SIGEMT = 7 +pkg syscall (netbsd-amd64-cgo), const SIGINFO = 29 +pkg syscall (netbsd-amd64-cgo), const SIGIO = 23 +pkg syscall (netbsd-amd64-cgo), const SIGIOT = 6 +pkg syscall (netbsd-amd64-cgo), const SIGPROF = 27 +pkg syscall (netbsd-amd64-cgo), const SIGPWR = 32 +pkg syscall (netbsd-amd64-cgo), const SIGSTOP = 17 +pkg syscall (netbsd-amd64-cgo), const SIGSYS = 12 +pkg syscall (netbsd-amd64-cgo), const SIGTSTP = 18 +pkg syscall (netbsd-amd64-cgo), const SIGTTIN = 21 +pkg syscall (netbsd-amd64-cgo), const SIGTTOU = 22 +pkg syscall (netbsd-amd64-cgo), const SIGURG = 16 +pkg syscall (netbsd-amd64-cgo), const SIGUSR1 = 30 +pkg syscall (netbsd-amd64-cgo), const SIGUSR2 = 31 +pkg syscall (netbsd-amd64-cgo), const SIGVTALRM = 26 +pkg syscall (netbsd-amd64-cgo), const SIGWINCH = 28 +pkg syscall (netbsd-amd64-cgo), const SIGXCPU = 24 +pkg syscall (netbsd-amd64-cgo), const SIGXFSZ = 25 +pkg syscall (netbsd-amd64-cgo), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-amd64-cgo), const SIOCADDRT = 2151182858 +pkg syscall (netbsd-amd64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-amd64-cgo), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-amd64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-amd64-cgo), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-amd64-cgo), const SIOCDELRT = 2151182859 +pkg syscall (netbsd-amd64-cgo), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-amd64-cgo), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-amd64-cgo), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-amd64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (netbsd-amd64-cgo), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-amd64-cgo), const SIOCGETSGCNT = 3223352628 +pkg syscall (netbsd-amd64-cgo), const SIOCGETVIFCNT = 3223876915 +pkg syscall (netbsd-amd64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDRPREF = 3231213856 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFCONF = 3222300966 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDATA = 3231213957 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMEDIA = 3224398134 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-amd64-cgo), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-amd64-cgo), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-amd64-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-amd64-cgo), const SIOCGLINKSTR = 3223873927 +pkg syscall (netbsd-amd64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-amd64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-amd64-cgo), const SIOCGVH = 3230689667 +pkg syscall (netbsd-amd64-cgo), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-amd64-cgo), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-amd64-cgo), const SIOCIFGCLONERS = 3222301048 +pkg syscall (netbsd-amd64-cgo), const SIOCINITIFADDR = 3228592516 +pkg syscall (netbsd-amd64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (netbsd-amd64-cgo), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-amd64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDRPREF = 2157472031 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-amd64-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-amd64-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-amd64-cgo), const SIOCSLINKSTR = 2150132104 +pkg syscall (netbsd-amd64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-amd64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-amd64-cgo), const SIOCSVH = 3230689666 +pkg syscall (netbsd-amd64-cgo), const SIOCZIFDATA = 3231213958 +pkg syscall (netbsd-amd64-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-amd64-cgo), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-amd64-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-amd64-cgo), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-amd64-cgo), const SOCK_RDM = 4 +pkg syscall (netbsd-amd64-cgo), const SOL_SOCKET = 65535 +pkg syscall (netbsd-amd64-cgo), const SOMAXCONN = 128 +pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-amd64-cgo), const SO_BROADCAST = 32 +pkg syscall (netbsd-amd64-cgo), const SO_DEBUG = 1 +pkg syscall (netbsd-amd64-cgo), const SO_DONTROUTE = 16 +pkg syscall (netbsd-amd64-cgo), const SO_ERROR = 4103 +pkg syscall (netbsd-amd64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-amd64-cgo), const SO_LINGER = 128 +pkg syscall (netbsd-amd64-cgo), const SO_NOHEADER = 4106 +pkg syscall (netbsd-amd64-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-amd64-cgo), const SO_OOBINLINE = 256 +pkg syscall (netbsd-amd64-cgo), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-amd64-cgo), const SO_RCVBUF = 4098 +pkg syscall (netbsd-amd64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-amd64-cgo), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-amd64-cgo), const SO_REUSEADDR = 4 +pkg syscall (netbsd-amd64-cgo), const SO_REUSEPORT = 512 +pkg syscall (netbsd-amd64-cgo), const SO_SNDBUF = 4097 +pkg syscall (netbsd-amd64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-amd64-cgo), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-amd64-cgo), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-amd64-cgo), const SO_TYPE = 4104 +pkg syscall (netbsd-amd64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-amd64-cgo), const SYS_ACCEPT = 30 +pkg syscall (netbsd-amd64-cgo), const SYS_ACCESS = 33 +pkg syscall (netbsd-amd64-cgo), const SYS_ACCT = 51 +pkg syscall (netbsd-amd64-cgo), const SYS_ADJTIME = 421 +pkg syscall (netbsd-amd64-cgo), const SYS_BIND = 104 +pkg syscall (netbsd-amd64-cgo), const SYS_BREAK = 17 +pkg syscall (netbsd-amd64-cgo), const SYS_CHDIR = 12 +pkg syscall (netbsd-amd64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-amd64-cgo), const SYS_CHMOD = 15 +pkg syscall (netbsd-amd64-cgo), const SYS_CHOWN = 16 +pkg syscall (netbsd-amd64-cgo), const SYS_CHROOT = 61 +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-amd64-cgo), const SYS_CLOSE = 6 +pkg syscall (netbsd-amd64-cgo), const SYS_CONNECT = 98 +pkg syscall (netbsd-amd64-cgo), const SYS_DUP = 41 +pkg syscall (netbsd-amd64-cgo), const SYS_DUP2 = 90 +pkg syscall (netbsd-amd64-cgo), const SYS_DUP3 = 454 +pkg syscall (netbsd-amd64-cgo), const SYS_EXECVE = 59 +pkg syscall (netbsd-amd64-cgo), const SYS_EXIT = 1 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-amd64-cgo), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHDIR = 13 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHMOD = 124 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWN = 123 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-amd64-cgo), const SYS_FCHROOT = 297 +pkg syscall (netbsd-amd64-cgo), const SYS_FCNTL = 92 +pkg syscall (netbsd-amd64-cgo), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-amd64-cgo), const SYS_FEXECVE = 465 +pkg syscall (netbsd-amd64-cgo), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-amd64-cgo), const SYS_FHSTAT = 451 +pkg syscall (netbsd-amd64-cgo), const SYS_FKTRACE = 288 +pkg syscall (netbsd-amd64-cgo), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-amd64-cgo), const SYS_FLOCK = 131 +pkg syscall (netbsd-amd64-cgo), const SYS_FORK = 2 +pkg syscall (netbsd-amd64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-amd64-cgo), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-amd64-cgo), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-amd64-cgo), const SYS_FSTAT = 440 +pkg syscall (netbsd-amd64-cgo), const SYS_FSTATAT = 466 +pkg syscall (netbsd-amd64-cgo), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC = 95 +pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-amd64-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMES = 423 +pkg syscall (netbsd-amd64-cgo), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-amd64-cgo), const SYS_GETDENTS = 390 +pkg syscall (netbsd-amd64-cgo), const SYS_GETEGID = 43 +pkg syscall (netbsd-amd64-cgo), const SYS_GETEUID = 25 +pkg syscall (netbsd-amd64-cgo), const SYS_GETFH = 395 +pkg syscall (netbsd-amd64-cgo), const SYS_GETGID = 47 +pkg syscall (netbsd-amd64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-amd64-cgo), const SYS_GETITIMER = 426 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPGID = 207 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPGRP = 81 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPID = 20 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPPID = 39 +pkg syscall (netbsd-amd64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-amd64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-amd64-cgo), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-amd64-cgo), const SYS_GETSID = 286 +pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-amd64-cgo), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-amd64-cgo), const SYS_GETUID = 24 +pkg syscall (netbsd-amd64-cgo), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-amd64-cgo), const SYS_GETXATTR = 378 +pkg syscall (netbsd-amd64-cgo), const SYS_IOCTL = 54 +pkg syscall (netbsd-amd64-cgo), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-amd64-cgo), const SYS_KEVENT = 435 +pkg syscall (netbsd-amd64-cgo), const SYS_KILL = 37 +pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE = 344 +pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-amd64-cgo), const SYS_KTRACE = 45 +pkg syscall (netbsd-amd64-cgo), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-amd64-cgo), const SYS_LCHMOD = 274 +pkg syscall (netbsd-amd64-cgo), const SYS_LCHOWN = 275 +pkg syscall (netbsd-amd64-cgo), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-amd64-cgo), const SYS_LINK = 9 +pkg syscall (netbsd-amd64-cgo), const SYS_LINKAT = 457 +pkg syscall (netbsd-amd64-cgo), const SYS_LISTEN = 106 +pkg syscall (netbsd-amd64-cgo), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-amd64-cgo), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-amd64-cgo), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-amd64-cgo), const SYS_LSEEK = 199 +pkg syscall (netbsd-amd64-cgo), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-amd64-cgo), const SYS_LSTAT = 441 +pkg syscall (netbsd-amd64-cgo), const SYS_LUTIMES = 424 +pkg syscall (netbsd-amd64-cgo), const SYS_MADVISE = 75 +pkg syscall (netbsd-amd64-cgo), const SYS_MINCORE = 78 +pkg syscall (netbsd-amd64-cgo), const SYS_MINHERIT = 273 +pkg syscall (netbsd-amd64-cgo), const SYS_MKDIR = 136 +pkg syscall (netbsd-amd64-cgo), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFO = 132 +pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-amd64-cgo), const SYS_MKNOD = 450 +pkg syscall (netbsd-amd64-cgo), const SYS_MKNODAT = 460 +pkg syscall (netbsd-amd64-cgo), const SYS_MLOCK = 203 +pkg syscall (netbsd-amd64-cgo), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-amd64-cgo), const SYS_MMAP = 197 +pkg syscall (netbsd-amd64-cgo), const SYS_MODCTL = 246 +pkg syscall (netbsd-amd64-cgo), const SYS_MOUNT = 410 +pkg syscall (netbsd-amd64-cgo), const SYS_MPROTECT = 74 +pkg syscall (netbsd-amd64-cgo), const SYS_MREMAP = 411 +pkg syscall (netbsd-amd64-cgo), const SYS_MSGCTL = 444 +pkg syscall (netbsd-amd64-cgo), const SYS_MSGGET = 225 +pkg syscall (netbsd-amd64-cgo), const SYS_MSGRCV = 227 +pkg syscall (netbsd-amd64-cgo), const SYS_MSGSND = 226 +pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-amd64-cgo), const SYS_MUNMAP = 73 +pkg syscall (netbsd-amd64-cgo), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-amd64-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-amd64-cgo), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-amd64-cgo), const SYS_OPEN = 5 +pkg syscall (netbsd-amd64-cgo), const SYS_OPENAT = 468 +pkg syscall (netbsd-amd64-cgo), const SYS_PACCEPT = 456 +pkg syscall (netbsd-amd64-cgo), const SYS_PATHCONF = 191 +pkg syscall (netbsd-amd64-cgo), const SYS_PIPE = 42 +pkg syscall (netbsd-amd64-cgo), const SYS_PIPE2 = 453 +pkg syscall (netbsd-amd64-cgo), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-amd64-cgo), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-amd64-cgo), const SYS_POLL = 209 +pkg syscall (netbsd-amd64-cgo), const SYS_POLLTS = 437 +pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-amd64-cgo), const SYS_PREAD = 173 +pkg syscall (netbsd-amd64-cgo), const SYS_PREADV = 289 +pkg syscall (netbsd-amd64-cgo), const SYS_PROFIL = 44 +pkg syscall (netbsd-amd64-cgo), const SYS_PSELECT = 436 +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-amd64-cgo), const SYS_PTRACE = 26 +pkg syscall (netbsd-amd64-cgo), const SYS_PWRITE = 174 +pkg syscall (netbsd-amd64-cgo), const SYS_PWRITEV = 290 +pkg syscall (netbsd-amd64-cgo), const SYS_RASCTL = 343 +pkg syscall (netbsd-amd64-cgo), const SYS_READ = 3 +pkg syscall (netbsd-amd64-cgo), const SYS_READLINK = 58 +pkg syscall (netbsd-amd64-cgo), const SYS_READLINKAT = 469 +pkg syscall (netbsd-amd64-cgo), const SYS_READV = 120 +pkg syscall (netbsd-amd64-cgo), const SYS_REBOOT = 208 +pkg syscall (netbsd-amd64-cgo), const SYS_RECVFROM = 29 +pkg syscall (netbsd-amd64-cgo), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-amd64-cgo), const SYS_RECVMSG = 27 +pkg syscall (netbsd-amd64-cgo), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-amd64-cgo), const SYS_RENAME = 128 +pkg syscall (netbsd-amd64-cgo), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-amd64-cgo), const SYS_REVOKE = 56 +pkg syscall (netbsd-amd64-cgo), const SYS_RMDIR = 137 +pkg syscall (netbsd-amd64-cgo), const SYS_SBRK = 69 +pkg syscall (netbsd-amd64-cgo), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-amd64-cgo), const SYS_SELECT = 417 +pkg syscall (netbsd-amd64-cgo), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-amd64-cgo), const SYS_SEMGET = 221 +pkg syscall (netbsd-amd64-cgo), const SYS_SEMOP = 222 +pkg syscall (netbsd-amd64-cgo), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-amd64-cgo), const SYS_SENDMSG = 28 +pkg syscall (netbsd-amd64-cgo), const SYS_SENDTO = 133 +pkg syscall (netbsd-amd64-cgo), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-amd64-cgo), const SYS_SETEGID = 182 +pkg syscall (netbsd-amd64-cgo), const SYS_SETEUID = 183 +pkg syscall (netbsd-amd64-cgo), const SYS_SETGID = 181 +pkg syscall (netbsd-amd64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-amd64-cgo), const SYS_SETITIMER = 425 +pkg syscall (netbsd-amd64-cgo), const SYS_SETPGID = 82 +pkg syscall (netbsd-amd64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-amd64-cgo), const SYS_SETREGID = 127 +pkg syscall (netbsd-amd64-cgo), const SYS_SETREUID = 126 +pkg syscall (netbsd-amd64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-amd64-cgo), const SYS_SETSID = 147 +pkg syscall (netbsd-amd64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-amd64-cgo), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-amd64-cgo), const SYS_SETUID = 23 +pkg syscall (netbsd-amd64-cgo), const SYS_SETXATTR = 375 +pkg syscall (netbsd-amd64-cgo), const SYS_SHMAT = 228 +pkg syscall (netbsd-amd64-cgo), const SYS_SHMCTL = 443 +pkg syscall (netbsd-amd64-cgo), const SYS_SHMDT = 230 +pkg syscall (netbsd-amd64-cgo), const SYS_SHMGET = 231 +pkg syscall (netbsd-amd64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-amd64-cgo), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-amd64-cgo), const SYS_SOCKET = 394 +pkg syscall (netbsd-amd64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-amd64-cgo), const SYS_SSTK = 70 +pkg syscall (netbsd-amd64-cgo), const SYS_STAT = 439 +pkg syscall (netbsd-amd64-cgo), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-amd64-cgo), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINK = 57 +pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-amd64-cgo), const SYS_SYNC = 36 +pkg syscall (netbsd-amd64-cgo), const SYS_SYSARCH = 165 +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-amd64-cgo), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-amd64-cgo), const SYS_UMASK = 60 +pkg syscall (netbsd-amd64-cgo), const SYS_UNDELETE = 205 +pkg syscall (netbsd-amd64-cgo), const SYS_UNLINK = 10 +pkg syscall (netbsd-amd64-cgo), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-amd64-cgo), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-amd64-cgo), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-amd64-cgo), const SYS_UTIMES = 420 +pkg syscall (netbsd-amd64-cgo), const SYS_UTRACE = 306 +pkg syscall (netbsd-amd64-cgo), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-amd64-cgo), const SYS_VADVISE = 72 +pkg syscall (netbsd-amd64-cgo), const SYS_VFORK = 66 +pkg syscall (netbsd-amd64-cgo), const SYS_WAIT4 = 449 +pkg syscall (netbsd-amd64-cgo), const SYS_WRITE = 4 +pkg syscall (netbsd-amd64-cgo), const SYS_WRITEV = 121 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-amd64-cgo), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-amd64-cgo), const SYS___CLONE = 287 +pkg syscall (netbsd-amd64-cgo), const SYS___GETCWD = 296 +pkg syscall (netbsd-amd64-cgo), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-amd64-cgo), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-amd64-cgo), const SYS___SEMCTL = 442 +pkg syscall (netbsd-amd64-cgo), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-amd64-cgo), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-amd64-cgo), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-amd64-cgo), const SYS___SYSCTL = 202 +pkg syscall (netbsd-amd64-cgo), const S_ARCH1 = 65536 +pkg syscall (netbsd-amd64-cgo), const S_ARCH2 = 131072 +pkg syscall (netbsd-amd64-cgo), const S_BLKSIZE = 512 +pkg syscall (netbsd-amd64-cgo), const S_IEXEC = 64 +pkg syscall (netbsd-amd64-cgo), const S_IFMT = 61440 +pkg syscall (netbsd-amd64-cgo), const S_IFWHT = 57344 +pkg syscall (netbsd-amd64-cgo), const S_IREAD = 256 +pkg syscall (netbsd-amd64-cgo), const S_IRGRP = 32 +pkg syscall (netbsd-amd64-cgo), const S_IROTH = 4 +pkg syscall (netbsd-amd64-cgo), const S_IRWXG = 56 +pkg syscall (netbsd-amd64-cgo), const S_IRWXO = 7 +pkg syscall (netbsd-amd64-cgo), const S_IRWXU = 448 +pkg syscall (netbsd-amd64-cgo), const S_ISTXT = 512 +pkg syscall (netbsd-amd64-cgo), const S_IWGRP = 16 +pkg syscall (netbsd-amd64-cgo), const S_IWOTH = 2 +pkg syscall (netbsd-amd64-cgo), const S_IWRITE = 128 +pkg syscall (netbsd-amd64-cgo), const S_IXGRP = 8 +pkg syscall (netbsd-amd64-cgo), const S_IXOTH = 1 +pkg syscall (netbsd-amd64-cgo), const S_LOGIN_SET = 1 +pkg syscall (netbsd-amd64-cgo), const SizeofBpfHdr = 32 +pkg syscall (netbsd-amd64-cgo), const SizeofBpfInsn = 8 +pkg syscall (netbsd-amd64-cgo), const SizeofBpfProgram = 16 +pkg syscall (netbsd-amd64-cgo), const SizeofBpfStat = 128 +pkg syscall (netbsd-amd64-cgo), const SizeofBpfVersion = 4 +pkg syscall (netbsd-amd64-cgo), const SizeofCmsghdr = 12 +pkg syscall (netbsd-amd64-cgo), const SizeofIPMreq = 8 +pkg syscall (netbsd-amd64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-amd64-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-amd64-cgo), const SizeofIfData = 136 +pkg syscall (netbsd-amd64-cgo), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-amd64-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-amd64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-amd64-cgo), const SizeofLinger = 8 +pkg syscall (netbsd-amd64-cgo), const SizeofMsghdr = 48 +pkg syscall (netbsd-amd64-cgo), const SizeofRtMetrics = 80 +pkg syscall (netbsd-amd64-cgo), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-amd64-cgo), const TCIFLUSH = 1 +pkg syscall (netbsd-amd64-cgo), const TCIOFLUSH = 3 +pkg syscall (netbsd-amd64-cgo), const TCOFLUSH = 2 +pkg syscall (netbsd-amd64-cgo), const TCP_CONGCTL = 32 +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-amd64-cgo), const TCP_MAXBURST = 4 +pkg syscall (netbsd-amd64-cgo), const TCP_MAXSEG = 2 +pkg syscall (netbsd-amd64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-amd64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-amd64-cgo), const TCP_MD5SIG = 16 +pkg syscall (netbsd-amd64-cgo), const TCP_MINMSS = 216 +pkg syscall (netbsd-amd64-cgo), const TCP_MSS = 536 +pkg syscall (netbsd-amd64-cgo), const TCSAFLUSH = 2 +pkg syscall (netbsd-amd64-cgo), const TIOCCBRK = 536900730 +pkg syscall (netbsd-amd64-cgo), const TIOCCDTR = 536900728 +pkg syscall (netbsd-amd64-cgo), const TIOCCONS = 2147775586 +pkg syscall (netbsd-amd64-cgo), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (netbsd-amd64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-amd64-cgo), const TIOCEXCL = 536900621 +pkg syscall (netbsd-amd64-cgo), const TIOCEXT = 2147775584 +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-amd64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-amd64-cgo), const TIOCGETA = 1076655123 +pkg syscall (netbsd-amd64-cgo), const TIOCGETD = 1074033690 +pkg syscall (netbsd-amd64-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-amd64-cgo), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-amd64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-amd64-cgo), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-amd64-cgo), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-amd64-cgo), const TIOCGSID = 1074033763 +pkg syscall (netbsd-amd64-cgo), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-amd64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-amd64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-amd64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-amd64-cgo), const TIOCMGET = 1074033770 +pkg syscall (netbsd-amd64-cgo), const TIOCMSET = 2147775597 +pkg syscall (netbsd-amd64-cgo), const TIOCM_CAR = 64 +pkg syscall (netbsd-amd64-cgo), const TIOCM_CD = 64 +pkg syscall (netbsd-amd64-cgo), const TIOCM_CTS = 32 +pkg syscall (netbsd-amd64-cgo), const TIOCM_DSR = 256 +pkg syscall (netbsd-amd64-cgo), const TIOCM_DTR = 2 +pkg syscall (netbsd-amd64-cgo), const TIOCM_LE = 1 +pkg syscall (netbsd-amd64-cgo), const TIOCM_RI = 128 +pkg syscall (netbsd-amd64-cgo), const TIOCM_RNG = 128 +pkg syscall (netbsd-amd64-cgo), const TIOCM_RTS = 4 +pkg syscall (netbsd-amd64-cgo), const TIOCM_SR = 16 +pkg syscall (netbsd-amd64-cgo), const TIOCM_ST = 8 +pkg syscall (netbsd-amd64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-amd64-cgo), const TIOCNXCL = 536900622 +pkg syscall (netbsd-amd64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT = 2147775600 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_START = 8 +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-amd64-cgo), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-amd64-cgo), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-amd64-cgo), const TIOCRCVFRAME = 2148037701 +pkg syscall (netbsd-amd64-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-amd64-cgo), const TIOCSBRK = 536900731 +pkg syscall (netbsd-amd64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-amd64-cgo), const TIOCSDTR = 536900729 +pkg syscall (netbsd-amd64-cgo), const TIOCSETA = 2150396948 +pkg syscall (netbsd-amd64-cgo), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-amd64-cgo), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-amd64-cgo), const TIOCSETD = 2147775515 +pkg syscall (netbsd-amd64-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-amd64-cgo), const TIOCSIG = 536900703 +pkg syscall (netbsd-amd64-cgo), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-amd64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-amd64-cgo), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-amd64-cgo), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-amd64-cgo), const TIOCSTART = 536900718 +pkg syscall (netbsd-amd64-cgo), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-amd64-cgo), const TIOCSTI = 2147578994 +pkg syscall (netbsd-amd64-cgo), const TIOCSTOP = 536900719 +pkg syscall (netbsd-amd64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-amd64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-amd64-cgo), const TIOCXMTFRAME = 2148037700 +pkg syscall (netbsd-amd64-cgo), const TOSTOP = 4194304 +pkg syscall (netbsd-amd64-cgo), const VDISCARD = 15 +pkg syscall (netbsd-amd64-cgo), const VDSUSP = 11 +pkg syscall (netbsd-amd64-cgo), const VEOF = 0 +pkg syscall (netbsd-amd64-cgo), const VEOL = 1 +pkg syscall (netbsd-amd64-cgo), const VEOL2 = 2 +pkg syscall (netbsd-amd64-cgo), const VERASE = 3 +pkg syscall (netbsd-amd64-cgo), const VINTR = 8 +pkg syscall (netbsd-amd64-cgo), const VKILL = 5 +pkg syscall (netbsd-amd64-cgo), const VLNEXT = 14 +pkg syscall (netbsd-amd64-cgo), const VMIN = 16 +pkg syscall (netbsd-amd64-cgo), const VQUIT = 9 +pkg syscall (netbsd-amd64-cgo), const VREPRINT = 6 +pkg syscall (netbsd-amd64-cgo), const VSTART = 12 +pkg syscall (netbsd-amd64-cgo), const VSTATUS = 18 +pkg syscall (netbsd-amd64-cgo), const VSTOP = 13 +pkg syscall (netbsd-amd64-cgo), const VSUSP = 10 +pkg syscall (netbsd-amd64-cgo), const VTIME = 17 +pkg syscall (netbsd-amd64-cgo), const VWERASE = 4 +pkg syscall (netbsd-amd64-cgo), const WALL = 8 +pkg syscall (netbsd-amd64-cgo), const WALLSIG = 8 +pkg syscall (netbsd-amd64-cgo), const WALTSIG = 4 +pkg syscall (netbsd-amd64-cgo), const WCLONE = 4 +pkg syscall (netbsd-amd64-cgo), const WCOREFLAG = 128 +pkg syscall (netbsd-amd64-cgo), const WNOHANG = 1 +pkg syscall (netbsd-amd64-cgo), const WNOWAIT = 65536 +pkg syscall (netbsd-amd64-cgo), const WNOZOMBIE = 131072 +pkg syscall (netbsd-amd64-cgo), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-amd64-cgo), const WSTOPPED = 127 +pkg syscall (netbsd-amd64-cgo), const WUNTRACED = 2 +pkg syscall (netbsd-arm), const AF_APPLETALK = 16 +pkg syscall (netbsd-arm), const AF_ARP = 28 +pkg syscall (netbsd-arm), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-arm), const AF_CCITT = 10 +pkg syscall (netbsd-arm), const AF_CHAOS = 5 +pkg syscall (netbsd-arm), const AF_CNT = 21 +pkg syscall (netbsd-arm), const AF_COIP = 20 +pkg syscall (netbsd-arm), const AF_DATAKIT = 9 +pkg syscall (netbsd-arm), const AF_DECnet = 12 +pkg syscall (netbsd-arm), const AF_DLI = 13 +pkg syscall (netbsd-arm), const AF_E164 = 26 +pkg syscall (netbsd-arm), const AF_ECMA = 8 +pkg syscall (netbsd-arm), const AF_HYLINK = 15 +pkg syscall (netbsd-arm), const AF_IEEE80211 = 32 +pkg syscall (netbsd-arm), const AF_IMPLINK = 3 +pkg syscall (netbsd-arm), const AF_INET6 = 24 +pkg syscall (netbsd-arm), const AF_IPX = 23 +pkg syscall (netbsd-arm), const AF_ISDN = 26 +pkg syscall (netbsd-arm), const AF_ISO = 7 +pkg syscall (netbsd-arm), const AF_LAT = 14 +pkg syscall (netbsd-arm), const AF_LINK = 18 +pkg syscall (netbsd-arm), const AF_LOCAL = 1 +pkg syscall (netbsd-arm), const AF_MAX = 35 +pkg syscall (netbsd-arm), const AF_MPLS = 33 +pkg syscall (netbsd-arm), const AF_NATM = 27 +pkg syscall (netbsd-arm), const AF_NS = 6 +pkg syscall (netbsd-arm), const AF_OROUTE = 17 +pkg syscall (netbsd-arm), const AF_OSI = 7 +pkg syscall (netbsd-arm), const AF_PUP = 4 +pkg syscall (netbsd-arm), const AF_ROUTE = 34 +pkg syscall (netbsd-arm), const AF_SNA = 11 +pkg syscall (netbsd-arm), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-arm), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-arm), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-arm), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-arm), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-arm), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-arm), const B0 = 0 +pkg syscall (netbsd-arm), const B110 = 110 +pkg syscall (netbsd-arm), const B115200 = 115200 +pkg syscall (netbsd-arm), const B1200 = 1200 +pkg syscall (netbsd-arm), const B134 = 134 +pkg syscall (netbsd-arm), const B14400 = 14400 +pkg syscall (netbsd-arm), const B150 = 150 +pkg syscall (netbsd-arm), const B1800 = 1800 +pkg syscall (netbsd-arm), const B19200 = 19200 +pkg syscall (netbsd-arm), const B200 = 200 +pkg syscall (netbsd-arm), const B230400 = 230400 +pkg syscall (netbsd-arm), const B2400 = 2400 +pkg syscall (netbsd-arm), const B28800 = 28800 +pkg syscall (netbsd-arm), const B300 = 300 +pkg syscall (netbsd-arm), const B38400 = 38400 +pkg syscall (netbsd-arm), const B460800 = 460800 +pkg syscall (netbsd-arm), const B4800 = 4800 +pkg syscall (netbsd-arm), const B50 = 50 +pkg syscall (netbsd-arm), const B57600 = 57600 +pkg syscall (netbsd-arm), const B600 = 600 +pkg syscall (netbsd-arm), const B7200 = 7200 +pkg syscall (netbsd-arm), const B75 = 75 +pkg syscall (netbsd-arm), const B76800 = 76800 +pkg syscall (netbsd-arm), const B921600 = 921600 +pkg syscall (netbsd-arm), const B9600 = 9600 +pkg syscall (netbsd-arm), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-arm), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-arm), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-arm), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-arm), const BIOCGDLTLIST = 3221766775 +pkg syscall (netbsd-arm), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-arm), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-arm), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-arm), const BIOCGRTIMEOUT = 1074545275 +pkg syscall (netbsd-arm), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-arm), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-arm), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-arm), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-arm), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-arm), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-arm), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-arm), const BIOCSETF = 2148024935 +pkg syscall (netbsd-arm), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-arm), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-arm), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-arm), const BIOCSRTIMEOUT = 2148287098 +pkg syscall (netbsd-arm), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-arm), const BIOCSTCPF = 2148024946 +pkg syscall (netbsd-arm), const BIOCSUDPF = 2148024947 +pkg syscall (netbsd-arm), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-arm), const BPF_A = 16 +pkg syscall (netbsd-arm), const BPF_ABS = 32 +pkg syscall (netbsd-arm), const BPF_ADD = 0 +pkg syscall (netbsd-arm), const BPF_ALIGNMENT = 4 +pkg syscall (netbsd-arm), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-arm), const BPF_ALU = 4 +pkg syscall (netbsd-arm), const BPF_AND = 80 +pkg syscall (netbsd-arm), const BPF_B = 16 +pkg syscall (netbsd-arm), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-arm), const BPF_DIV = 48 +pkg syscall (netbsd-arm), const BPF_H = 8 +pkg syscall (netbsd-arm), const BPF_IMM = 0 +pkg syscall (netbsd-arm), const BPF_IND = 64 +pkg syscall (netbsd-arm), const BPF_JA = 0 +pkg syscall (netbsd-arm), const BPF_JEQ = 16 +pkg syscall (netbsd-arm), const BPF_JGE = 48 +pkg syscall (netbsd-arm), const BPF_JGT = 32 +pkg syscall (netbsd-arm), const BPF_JMP = 5 +pkg syscall (netbsd-arm), const BPF_JSET = 64 +pkg syscall (netbsd-arm), const BPF_K = 0 +pkg syscall (netbsd-arm), const BPF_LD = 0 +pkg syscall (netbsd-arm), const BPF_LDX = 1 +pkg syscall (netbsd-arm), const BPF_LEN = 128 +pkg syscall (netbsd-arm), const BPF_LSH = 96 +pkg syscall (netbsd-arm), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-arm), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-arm), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-arm), const BPF_MEM = 96 +pkg syscall (netbsd-arm), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-arm), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-arm), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-arm), const BPF_MISC = 7 +pkg syscall (netbsd-arm), const BPF_MSH = 160 +pkg syscall (netbsd-arm), const BPF_MUL = 32 +pkg syscall (netbsd-arm), const BPF_NEG = 128 +pkg syscall (netbsd-arm), const BPF_OR = 64 +pkg syscall (netbsd-arm), const BPF_RELEASE = 199606 +pkg syscall (netbsd-arm), const BPF_RET = 6 +pkg syscall (netbsd-arm), const BPF_RSH = 112 +pkg syscall (netbsd-arm), const BPF_ST = 2 +pkg syscall (netbsd-arm), const BPF_STX = 3 +pkg syscall (netbsd-arm), const BPF_SUB = 16 +pkg syscall (netbsd-arm), const BPF_TAX = 0 +pkg syscall (netbsd-arm), const BPF_TXA = 128 +pkg syscall (netbsd-arm), const BPF_W = 0 +pkg syscall (netbsd-arm), const BPF_X = 8 +pkg syscall (netbsd-arm), const BRKINT = 2 +pkg syscall (netbsd-arm), const CFLUSH = 15 +pkg syscall (netbsd-arm), const CLOCAL = 32768 +pkg syscall (netbsd-arm), const CREAD = 2048 +pkg syscall (netbsd-arm), const CS5 = 0 +pkg syscall (netbsd-arm), const CS6 = 256 +pkg syscall (netbsd-arm), const CS7 = 512 +pkg syscall (netbsd-arm), const CS8 = 768 +pkg syscall (netbsd-arm), const CSIZE = 768 +pkg syscall (netbsd-arm), const CSTART = 17 +pkg syscall (netbsd-arm), const CSTATUS = 20 +pkg syscall (netbsd-arm), const CSTOP = 19 +pkg syscall (netbsd-arm), const CSTOPB = 1024 +pkg syscall (netbsd-arm), const CSUSP = 26 +pkg syscall (netbsd-arm), const CTL_MAXNAME = 12 +pkg syscall (netbsd-arm), const CTL_NET = 4 +pkg syscall (netbsd-arm), const CTL_QUERY = -2 +pkg syscall (netbsd-arm), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-arm), const DLT_A429 = 184 +pkg syscall (netbsd-arm), const DLT_A653_ICM = 185 +pkg syscall (netbsd-arm), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-arm), const DLT_AOS = 222 +pkg syscall (netbsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-arm), const DLT_ARCNET = 7 +pkg syscall (netbsd-arm), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-arm), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-arm), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-arm), const DLT_AURORA = 126 +pkg syscall (netbsd-arm), const DLT_AX25 = 3 +pkg syscall (netbsd-arm), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-arm), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-arm), const DLT_CAN20B = 190 +pkg syscall (netbsd-arm), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-arm), const DLT_CHAOS = 5 +pkg syscall (netbsd-arm), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-arm), const DLT_C_HDLC = 104 +pkg syscall (netbsd-arm), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-arm), const DLT_DECT = 221 +pkg syscall (netbsd-arm), const DLT_DOCSIS = 143 +pkg syscall (netbsd-arm), const DLT_ECONET = 115 +pkg syscall (netbsd-arm), const DLT_EN10MB = 1 +pkg syscall (netbsd-arm), const DLT_EN3MB = 2 +pkg syscall (netbsd-arm), const DLT_ENC = 109 +pkg syscall (netbsd-arm), const DLT_ERF = 197 +pkg syscall (netbsd-arm), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-arm), const DLT_ERF_POS = 176 +pkg syscall (netbsd-arm), const DLT_FC_2 = 224 +pkg syscall (netbsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-arm), const DLT_FDDI = 10 +pkg syscall (netbsd-arm), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-arm), const DLT_FRELAY = 107 +pkg syscall (netbsd-arm), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-arm), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-arm), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-arm), const DLT_GPF_F = 171 +pkg syscall (netbsd-arm), const DLT_GPF_T = 170 +pkg syscall (netbsd-arm), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-arm), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-arm), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-arm), const DLT_HDLC = 16 +pkg syscall (netbsd-arm), const DLT_HHDLC = 121 +pkg syscall (netbsd-arm), const DLT_HIPPI = 15 +pkg syscall (netbsd-arm), const DLT_IBM_SN = 146 +pkg syscall (netbsd-arm), const DLT_IBM_SP = 145 +pkg syscall (netbsd-arm), const DLT_IEEE802 = 6 +pkg syscall (netbsd-arm), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-arm), const DLT_IPMB = 199 +pkg syscall (netbsd-arm), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-arm), const DLT_IPNET = 226 +pkg syscall (netbsd-arm), const DLT_IPV4 = 228 +pkg syscall (netbsd-arm), const DLT_IPV6 = 229 +pkg syscall (netbsd-arm), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-arm), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-arm), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-arm), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-arm), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-arm), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-arm), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-arm), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-arm), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-arm), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-arm), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-arm), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-arm), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-arm), const DLT_LAPD = 203 +pkg syscall (netbsd-arm), const DLT_LIN = 212 +pkg syscall (netbsd-arm), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-arm), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-arm), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-arm), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-arm), const DLT_LOOP = 108 +pkg syscall (netbsd-arm), const DLT_LTALK = 114 +pkg syscall (netbsd-arm), const DLT_MFR = 182 +pkg syscall (netbsd-arm), const DLT_MOST = 211 +pkg syscall (netbsd-arm), const DLT_MPLS = 219 +pkg syscall (netbsd-arm), const DLT_MTP2 = 140 +pkg syscall (netbsd-arm), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-arm), const DLT_MTP3 = 141 +pkg syscall (netbsd-arm), const DLT_NULL = 0 +pkg syscall (netbsd-arm), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-arm), const DLT_PFLOG = 117 +pkg syscall (netbsd-arm), const DLT_PFSYNC = 18 +pkg syscall (netbsd-arm), const DLT_PPI = 192 +pkg syscall (netbsd-arm), const DLT_PPP = 9 +pkg syscall (netbsd-arm), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-arm), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-arm), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-arm), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-arm), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-arm), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-arm), const DLT_PRONET = 4 +pkg syscall (netbsd-arm), const DLT_RAIF1 = 198 +pkg syscall (netbsd-arm), const DLT_RAW = 12 +pkg syscall (netbsd-arm), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-arm), const DLT_RIO = 124 +pkg syscall (netbsd-arm), const DLT_SCCP = 142 +pkg syscall (netbsd-arm), const DLT_SITA = 196 +pkg syscall (netbsd-arm), const DLT_SLIP = 8 +pkg syscall (netbsd-arm), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-arm), const DLT_SUNATM = 123 +pkg syscall (netbsd-arm), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-arm), const DLT_TZSP = 128 +pkg syscall (netbsd-arm), const DLT_USB = 186 +pkg syscall (netbsd-arm), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-arm), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-arm), const DLT_WIHART = 223 +pkg syscall (netbsd-arm), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-arm), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-arm), const DT_BLK = 6 +pkg syscall (netbsd-arm), const DT_CHR = 2 +pkg syscall (netbsd-arm), const DT_DIR = 4 +pkg syscall (netbsd-arm), const DT_FIFO = 1 +pkg syscall (netbsd-arm), const DT_LNK = 10 +pkg syscall (netbsd-arm), const DT_REG = 8 +pkg syscall (netbsd-arm), const DT_SOCK = 12 +pkg syscall (netbsd-arm), const DT_UNKNOWN = 0 +pkg syscall (netbsd-arm), const DT_WHT = 14 +pkg syscall (netbsd-arm), const E2BIG = 7 +pkg syscall (netbsd-arm), const EACCES = 13 +pkg syscall (netbsd-arm), const EADDRINUSE = 48 +pkg syscall (netbsd-arm), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-arm), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-arm), const EAGAIN = 35 +pkg syscall (netbsd-arm), const EALREADY = 37 +pkg syscall (netbsd-arm), const EAUTH = 80 +pkg syscall (netbsd-arm), const EBADF = 9 +pkg syscall (netbsd-arm), const EBADMSG = 88 +pkg syscall (netbsd-arm), const EBADRPC = 72 +pkg syscall (netbsd-arm), const EBUSY = 16 +pkg syscall (netbsd-arm), const ECANCELED = 87 +pkg syscall (netbsd-arm), const ECHILD = 10 +pkg syscall (netbsd-arm), const ECHO = 8 +pkg syscall (netbsd-arm), const ECHOCTL = 64 +pkg syscall (netbsd-arm), const ECHOE = 2 +pkg syscall (netbsd-arm), const ECHOK = 4 +pkg syscall (netbsd-arm), const ECHOKE = 1 +pkg syscall (netbsd-arm), const ECHONL = 16 +pkg syscall (netbsd-arm), const ECHOPRT = 32 +pkg syscall (netbsd-arm), const ECONNABORTED = 53 +pkg syscall (netbsd-arm), const ECONNREFUSED = 61 +pkg syscall (netbsd-arm), const ECONNRESET = 54 +pkg syscall (netbsd-arm), const EDEADLK = 11 +pkg syscall (netbsd-arm), const EDESTADDRREQ = 39 +pkg syscall (netbsd-arm), const EDOM = 33 +pkg syscall (netbsd-arm), const EDQUOT = 69 +pkg syscall (netbsd-arm), const EEXIST = 17 +pkg syscall (netbsd-arm), const EFAULT = 14 +pkg syscall (netbsd-arm), const EFBIG = 27 +pkg syscall (netbsd-arm), const EFTYPE = 79 +pkg syscall (netbsd-arm), const EHOSTDOWN = 64 +pkg syscall (netbsd-arm), const EHOSTUNREACH = 65 +pkg syscall (netbsd-arm), const EIDRM = 82 +pkg syscall (netbsd-arm), const EILSEQ = 85 +pkg syscall (netbsd-arm), const EINPROGRESS = 36 +pkg syscall (netbsd-arm), const EINTR = 4 +pkg syscall (netbsd-arm), const EINVAL = 22 +pkg syscall (netbsd-arm), const EIO = 5 +pkg syscall (netbsd-arm), const EISCONN = 56 +pkg syscall (netbsd-arm), const EISDIR = 21 +pkg syscall (netbsd-arm), const ELAST = 96 +pkg syscall (netbsd-arm), const ELOOP = 62 +pkg syscall (netbsd-arm), const EMFILE = 24 +pkg syscall (netbsd-arm), const EMLINK = 31 +pkg syscall (netbsd-arm), const EMSGSIZE = 40 +pkg syscall (netbsd-arm), const EMULTIHOP = 94 +pkg syscall (netbsd-arm), const EMUL_LINUX = 1 +pkg syscall (netbsd-arm), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-arm), const EMUL_MAXID = 6 +pkg syscall (netbsd-arm), const ENAMETOOLONG = 63 +pkg syscall (netbsd-arm), const ENEEDAUTH = 81 +pkg syscall (netbsd-arm), const ENETDOWN = 50 +pkg syscall (netbsd-arm), const ENETRESET = 52 +pkg syscall (netbsd-arm), const ENETUNREACH = 51 +pkg syscall (netbsd-arm), const ENFILE = 23 +pkg syscall (netbsd-arm), const ENOATTR = 93 +pkg syscall (netbsd-arm), const ENOBUFS = 55 +pkg syscall (netbsd-arm), const ENODATA = 89 +pkg syscall (netbsd-arm), const ENODEV = 19 +pkg syscall (netbsd-arm), const ENOEXEC = 8 +pkg syscall (netbsd-arm), const ENOLCK = 77 +pkg syscall (netbsd-arm), const ENOLINK = 95 +pkg syscall (netbsd-arm), const ENOMEM = 12 +pkg syscall (netbsd-arm), const ENOMSG = 83 +pkg syscall (netbsd-arm), const ENOPROTOOPT = 42 +pkg syscall (netbsd-arm), const ENOSPC = 28 +pkg syscall (netbsd-arm), const ENOSR = 90 +pkg syscall (netbsd-arm), const ENOSTR = 91 +pkg syscall (netbsd-arm), const ENOSYS = 78 +pkg syscall (netbsd-arm), const ENOTBLK = 15 +pkg syscall (netbsd-arm), const ENOTCONN = 57 +pkg syscall (netbsd-arm), const ENOTDIR = 20 +pkg syscall (netbsd-arm), const ENOTEMPTY = 66 +pkg syscall (netbsd-arm), const ENOTSOCK = 38 +pkg syscall (netbsd-arm), const ENOTSUP = 86 +pkg syscall (netbsd-arm), const ENOTTY = 25 +pkg syscall (netbsd-arm), const ENXIO = 6 +pkg syscall (netbsd-arm), const EOPNOTSUPP = 45 +pkg syscall (netbsd-arm), const EOVERFLOW = 84 +pkg syscall (netbsd-arm), const EPERM = 1 +pkg syscall (netbsd-arm), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-arm), const EPIPE = 32 +pkg syscall (netbsd-arm), const EPROCLIM = 67 +pkg syscall (netbsd-arm), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-arm), const EPROGMISMATCH = 75 +pkg syscall (netbsd-arm), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-arm), const EPROTO = 96 +pkg syscall (netbsd-arm), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-arm), const EPROTOTYPE = 41 +pkg syscall (netbsd-arm), const ERANGE = 34 +pkg syscall (netbsd-arm), const EREMOTE = 71 +pkg syscall (netbsd-arm), const EROFS = 30 +pkg syscall (netbsd-arm), const ERPCMISMATCH = 73 +pkg syscall (netbsd-arm), const ESHUTDOWN = 58 +pkg syscall (netbsd-arm), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-arm), const ESPIPE = 29 +pkg syscall (netbsd-arm), const ESRCH = 3 +pkg syscall (netbsd-arm), const ESTALE = 70 +pkg syscall (netbsd-arm), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-arm), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-arm), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-arm), const ETHERMIN = 46 +pkg syscall (netbsd-arm), const ETHERMTU = 1500 +pkg syscall (netbsd-arm), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-arm), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-arm), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-arm), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-arm), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-arm), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-arm), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-arm), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-arm), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-arm), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-arm), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-arm), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-arm), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-arm), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-arm), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-arm), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-arm), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-arm), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-arm), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-arm), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-arm), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-arm), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-arm), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-arm), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-arm), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-arm), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-arm), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-arm), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-arm), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-arm), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-arm), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-arm), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-arm), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-arm), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-arm), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-arm), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-arm), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-arm), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-arm), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-arm), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-arm), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-arm), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-arm), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-arm), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-arm), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-arm), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-arm), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-arm), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-arm), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-arm), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-arm), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-arm), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-arm), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-arm), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-arm), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-arm), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-arm), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-arm), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-arm), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-arm), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-arm), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-arm), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-arm), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-arm), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-arm), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-arm), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-arm), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-arm), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-arm), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-arm), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-arm), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-arm), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-arm), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-arm), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-arm), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-arm), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-arm), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-arm), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-arm), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-arm), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-arm), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-arm), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-arm), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-arm), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-arm), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-arm), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-arm), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-arm), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-arm), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-arm), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-arm), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-arm), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-arm), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-arm), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-arm), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-arm), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-arm), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-arm), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-arm), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-arm), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-arm), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-arm), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-arm), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-arm), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-arm), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-arm), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-arm), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-arm), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-arm), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-arm), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-arm), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-arm), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-arm), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-arm), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-arm), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-arm), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-arm), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-arm), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-arm), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-arm), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-arm), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-arm), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-arm), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-arm), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-arm), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-arm), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-arm), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-arm), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-arm), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-arm), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-arm), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-arm), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-arm), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-arm), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-arm), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-arm), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-arm), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-arm), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-arm), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-arm), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-arm), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-arm), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-arm), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-arm), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-arm), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-arm), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-arm), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-arm), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-arm), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-arm), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-arm), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-arm), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-arm), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-arm), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-arm), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-arm), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-arm), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-arm), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-arm), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-arm), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-arm), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-arm), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-arm), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-arm), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-arm), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-arm), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-arm), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-arm), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-arm), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-arm), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-arm), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-arm), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-arm), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-arm), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-arm), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-arm), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-arm), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-arm), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-arm), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-arm), const ETIME = 92 +pkg syscall (netbsd-arm), const ETIMEDOUT = 60 +pkg syscall (netbsd-arm), const ETOOMANYREFS = 59 +pkg syscall (netbsd-arm), const ETXTBSY = 26 +pkg syscall (netbsd-arm), const EUSERS = 68 +pkg syscall (netbsd-arm), const EVFILT_AIO = 2 +pkg syscall (netbsd-arm), const EVFILT_PROC = 4 +pkg syscall (netbsd-arm), const EVFILT_READ = 0 +pkg syscall (netbsd-arm), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-arm), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-arm), const EVFILT_TIMER = 6 +pkg syscall (netbsd-arm), const EVFILT_VNODE = 3 +pkg syscall (netbsd-arm), const EVFILT_WRITE = 1 +pkg syscall (netbsd-arm), const EV_ADD = 1 +pkg syscall (netbsd-arm), const EV_CLEAR = 32 +pkg syscall (netbsd-arm), const EV_DELETE = 2 +pkg syscall (netbsd-arm), const EV_DISABLE = 8 +pkg syscall (netbsd-arm), const EV_ENABLE = 4 +pkg syscall (netbsd-arm), const EV_EOF = 32768 +pkg syscall (netbsd-arm), const EV_ERROR = 16384 +pkg syscall (netbsd-arm), const EV_FLAG1 = 8192 +pkg syscall (netbsd-arm), const EV_ONESHOT = 16 +pkg syscall (netbsd-arm), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-arm), const EWOULDBLOCK = 35 +pkg syscall (netbsd-arm), const EXDEV = 18 +pkg syscall (netbsd-arm), const EXTA = 19200 +pkg syscall (netbsd-arm), const EXTB = 38400 +pkg syscall (netbsd-arm), const EXTPROC = 2048 +pkg syscall (netbsd-arm), const FD_CLOEXEC = 1 +pkg syscall (netbsd-arm), const FD_SETSIZE = 256 +pkg syscall (netbsd-arm), const FLUSHO = 8388608 +pkg syscall (netbsd-arm), const F_CLOSEM = 10 +pkg syscall (netbsd-arm), const F_DUPFD = 0 +pkg syscall (netbsd-arm), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-arm), const F_FSCTL = -2147483648 +pkg syscall (netbsd-arm), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-arm), const F_FSIN = 268435456 +pkg syscall (netbsd-arm), const F_FSINOUT = 805306368 +pkg syscall (netbsd-arm), const F_FSOUT = 536870912 +pkg syscall (netbsd-arm), const F_FSPRIV = 32768 +pkg syscall (netbsd-arm), const F_FSVOID = 1073741824 +pkg syscall (netbsd-arm), const F_GETFD = 1 +pkg syscall (netbsd-arm), const F_GETFL = 3 +pkg syscall (netbsd-arm), const F_GETLK = 7 +pkg syscall (netbsd-arm), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-arm), const F_GETOWN = 5 +pkg syscall (netbsd-arm), const F_MAXFD = 11 +pkg syscall (netbsd-arm), const F_OK = 0 +pkg syscall (netbsd-arm), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-arm), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-arm), const F_RDLCK = 1 +pkg syscall (netbsd-arm), const F_SETFD = 2 +pkg syscall (netbsd-arm), const F_SETFL = 4 +pkg syscall (netbsd-arm), const F_SETLK = 8 +pkg syscall (netbsd-arm), const F_SETLKW = 9 +pkg syscall (netbsd-arm), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-arm), const F_SETOWN = 6 +pkg syscall (netbsd-arm), const F_UNLCK = 2 +pkg syscall (netbsd-arm), const F_WRLCK = 3 +pkg syscall (netbsd-arm), const HUPCL = 16384 +pkg syscall (netbsd-arm), const ICANON = 256 +pkg syscall (netbsd-arm), const ICRNL = 256 +pkg syscall (netbsd-arm), const IEXTEN = 1024 +pkg syscall (netbsd-arm), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-arm), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-arm), const IFA_ROUTE = 1 +pkg syscall (netbsd-arm), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-arm), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-arm), const IFF_DEBUG = 4 +pkg syscall (netbsd-arm), const IFF_LINK0 = 4096 +pkg syscall (netbsd-arm), const IFF_LINK1 = 8192 +pkg syscall (netbsd-arm), const IFF_LINK2 = 16384 +pkg syscall (netbsd-arm), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-arm), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-arm), const IFF_NOARP = 128 +pkg syscall (netbsd-arm), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-arm), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-arm), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-arm), const IFF_PROMISC = 256 +pkg syscall (netbsd-arm), const IFF_RUNNING = 64 +pkg syscall (netbsd-arm), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-arm), const IFNAMSIZ = 16 +pkg syscall (netbsd-arm), const IFT_1822 = 2 +pkg syscall (netbsd-arm), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-arm), const IFT_AAL2 = 187 +pkg syscall (netbsd-arm), const IFT_AAL5 = 49 +pkg syscall (netbsd-arm), const IFT_ADSL = 94 +pkg syscall (netbsd-arm), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-arm), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-arm), const IFT_ARAP = 88 +pkg syscall (netbsd-arm), const IFT_ARCNET = 35 +pkg syscall (netbsd-arm), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-arm), const IFT_ASYNC = 84 +pkg syscall (netbsd-arm), const IFT_ATM = 37 +pkg syscall (netbsd-arm), const IFT_ATMDXI = 105 +pkg syscall (netbsd-arm), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-arm), const IFT_ATMIMA = 107 +pkg syscall (netbsd-arm), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-arm), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-arm), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-arm), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-arm), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-arm), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-arm), const IFT_BRIDGE = 209 +pkg syscall (netbsd-arm), const IFT_BSC = 83 +pkg syscall (netbsd-arm), const IFT_CARP = 248 +pkg syscall (netbsd-arm), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-arm), const IFT_CEPT = 19 +pkg syscall (netbsd-arm), const IFT_CES = 133 +pkg syscall (netbsd-arm), const IFT_CHANNEL = 70 +pkg syscall (netbsd-arm), const IFT_CNR = 85 +pkg syscall (netbsd-arm), const IFT_COFFEE = 132 +pkg syscall (netbsd-arm), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-arm), const IFT_DCN = 141 +pkg syscall (netbsd-arm), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-arm), const IFT_DLSW = 74 +pkg syscall (netbsd-arm), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-arm), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-arm), const IFT_DS0 = 81 +pkg syscall (netbsd-arm), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-arm), const IFT_DS1FDL = 170 +pkg syscall (netbsd-arm), const IFT_DS3 = 30 +pkg syscall (netbsd-arm), const IFT_DTM = 140 +pkg syscall (netbsd-arm), const IFT_DVBASILN = 172 +pkg syscall (netbsd-arm), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-arm), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-arm), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-arm), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-arm), const IFT_ECONET = 206 +pkg syscall (netbsd-arm), const IFT_EON = 25 +pkg syscall (netbsd-arm), const IFT_EPLRS = 87 +pkg syscall (netbsd-arm), const IFT_ESCON = 73 +pkg syscall (netbsd-arm), const IFT_ETHER = 6 +pkg syscall (netbsd-arm), const IFT_FAITH = 242 +pkg syscall (netbsd-arm), const IFT_FAST = 125 +pkg syscall (netbsd-arm), const IFT_FASTETHER = 62 +pkg syscall (netbsd-arm), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-arm), const IFT_FDDI = 15 +pkg syscall (netbsd-arm), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-arm), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-arm), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-arm), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-arm), const IFT_FRELAY = 32 +pkg syscall (netbsd-arm), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-arm), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-arm), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-arm), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-arm), const IFT_G703AT64K = 66 +pkg syscall (netbsd-arm), const IFT_GIF = 240 +pkg syscall (netbsd-arm), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-arm), const IFT_GR303IDT = 178 +pkg syscall (netbsd-arm), const IFT_GR303RDT = 177 +pkg syscall (netbsd-arm), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-arm), const IFT_H323PROXY = 165 +pkg syscall (netbsd-arm), const IFT_HDH1822 = 3 +pkg syscall (netbsd-arm), const IFT_HDLC = 118 +pkg syscall (netbsd-arm), const IFT_HDSL2 = 168 +pkg syscall (netbsd-arm), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-arm), const IFT_HIPPI = 47 +pkg syscall (netbsd-arm), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-arm), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-arm), const IFT_HSSI = 46 +pkg syscall (netbsd-arm), const IFT_HY = 14 +pkg syscall (netbsd-arm), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-arm), const IFT_IDSL = 154 +pkg syscall (netbsd-arm), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-arm), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-arm), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-arm), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-arm), const IFT_IFGSN = 145 +pkg syscall (netbsd-arm), const IFT_IMT = 190 +pkg syscall (netbsd-arm), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-arm), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-arm), const IFT_IP = 126 +pkg syscall (netbsd-arm), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-arm), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-arm), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-arm), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-arm), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-arm), const IFT_ISDN = 63 +pkg syscall (netbsd-arm), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-arm), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-arm), const IFT_ISDNS = 75 +pkg syscall (netbsd-arm), const IFT_ISDNU = 76 +pkg syscall (netbsd-arm), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-arm), const IFT_ISO88023 = 7 +pkg syscall (netbsd-arm), const IFT_ISO88024 = 8 +pkg syscall (netbsd-arm), const IFT_ISO88025 = 9 +pkg syscall (netbsd-arm), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-arm), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-arm), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-arm), const IFT_ISO88026 = 10 +pkg syscall (netbsd-arm), const IFT_ISUP = 179 +pkg syscall (netbsd-arm), const IFT_L2VLAN = 135 +pkg syscall (netbsd-arm), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-arm), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-arm), const IFT_LAPB = 16 +pkg syscall (netbsd-arm), const IFT_LAPD = 77 +pkg syscall (netbsd-arm), const IFT_LAPF = 119 +pkg syscall (netbsd-arm), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-arm), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-arm), const IFT_LOOP = 24 +pkg syscall (netbsd-arm), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-arm), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-arm), const IFT_MIOX25 = 38 +pkg syscall (netbsd-arm), const IFT_MODEM = 48 +pkg syscall (netbsd-arm), const IFT_MPC = 113 +pkg syscall (netbsd-arm), const IFT_MPLS = 166 +pkg syscall (netbsd-arm), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-arm), const IFT_MSDSL = 143 +pkg syscall (netbsd-arm), const IFT_MVL = 191 +pkg syscall (netbsd-arm), const IFT_MYRINET = 99 +pkg syscall (netbsd-arm), const IFT_NFAS = 175 +pkg syscall (netbsd-arm), const IFT_NSIP = 27 +pkg syscall (netbsd-arm), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-arm), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-arm), const IFT_OTHER = 1 +pkg syscall (netbsd-arm), const IFT_P10 = 12 +pkg syscall (netbsd-arm), const IFT_P80 = 13 +pkg syscall (netbsd-arm), const IFT_PARA = 34 +pkg syscall (netbsd-arm), const IFT_PFLOG = 245 +pkg syscall (netbsd-arm), const IFT_PFSYNC = 246 +pkg syscall (netbsd-arm), const IFT_PLC = 174 +pkg syscall (netbsd-arm), const IFT_PON155 = 207 +pkg syscall (netbsd-arm), const IFT_PON622 = 208 +pkg syscall (netbsd-arm), const IFT_POS = 171 +pkg syscall (netbsd-arm), const IFT_PPP = 23 +pkg syscall (netbsd-arm), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-arm), const IFT_PROPATM = 197 +pkg syscall (netbsd-arm), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-arm), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-arm), const IFT_PROPMUX = 54 +pkg syscall (netbsd-arm), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-arm), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-arm), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-arm), const IFT_PVC = 241 +pkg syscall (netbsd-arm), const IFT_Q2931 = 201 +pkg syscall (netbsd-arm), const IFT_QLLC = 68 +pkg syscall (netbsd-arm), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-arm), const IFT_RADSL = 95 +pkg syscall (netbsd-arm), const IFT_REACHDSL = 192 +pkg syscall (netbsd-arm), const IFT_RFC1483 = 159 +pkg syscall (netbsd-arm), const IFT_RS232 = 33 +pkg syscall (netbsd-arm), const IFT_RSRB = 79 +pkg syscall (netbsd-arm), const IFT_SDLC = 17 +pkg syscall (netbsd-arm), const IFT_SDSL = 96 +pkg syscall (netbsd-arm), const IFT_SHDSL = 169 +pkg syscall (netbsd-arm), const IFT_SIP = 31 +pkg syscall (netbsd-arm), const IFT_SIPSIG = 204 +pkg syscall (netbsd-arm), const IFT_SIPTG = 203 +pkg syscall (netbsd-arm), const IFT_SLIP = 28 +pkg syscall (netbsd-arm), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-arm), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-arm), const IFT_SONET = 39 +pkg syscall (netbsd-arm), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-arm), const IFT_SONETPATH = 50 +pkg syscall (netbsd-arm), const IFT_SONETVT = 51 +pkg syscall (netbsd-arm), const IFT_SRP = 151 +pkg syscall (netbsd-arm), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-arm), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-arm), const IFT_STARLAN = 11 +pkg syscall (netbsd-arm), const IFT_STF = 215 +pkg syscall (netbsd-arm), const IFT_T1 = 18 +pkg syscall (netbsd-arm), const IFT_TDLC = 116 +pkg syscall (netbsd-arm), const IFT_TELINK = 200 +pkg syscall (netbsd-arm), const IFT_TERMPAD = 91 +pkg syscall (netbsd-arm), const IFT_TR008 = 176 +pkg syscall (netbsd-arm), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-arm), const IFT_TUNNEL = 131 +pkg syscall (netbsd-arm), const IFT_ULTRA = 29 +pkg syscall (netbsd-arm), const IFT_USB = 160 +pkg syscall (netbsd-arm), const IFT_V11 = 64 +pkg syscall (netbsd-arm), const IFT_V35 = 45 +pkg syscall (netbsd-arm), const IFT_V36 = 65 +pkg syscall (netbsd-arm), const IFT_V37 = 120 +pkg syscall (netbsd-arm), const IFT_VDSL = 97 +pkg syscall (netbsd-arm), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-arm), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-arm), const IFT_VOICEDID = 213 +pkg syscall (netbsd-arm), const IFT_VOICEEM = 100 +pkg syscall (netbsd-arm), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-arm), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-arm), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-arm), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-arm), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-arm), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-arm), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-arm), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-arm), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-arm), const IFT_X213 = 93 +pkg syscall (netbsd-arm), const IFT_X25 = 5 +pkg syscall (netbsd-arm), const IFT_X25DDN = 4 +pkg syscall (netbsd-arm), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-arm), const IFT_X25MLP = 121 +pkg syscall (netbsd-arm), const IFT_X25PLE = 40 +pkg syscall (netbsd-arm), const IFT_XETHER = 26 +pkg syscall (netbsd-arm), const IGNBRK = 1 +pkg syscall (netbsd-arm), const IGNCR = 128 +pkg syscall (netbsd-arm), const IGNPAR = 4 +pkg syscall (netbsd-arm), const IMAXBEL = 8192 +pkg syscall (netbsd-arm), const INLCR = 64 +pkg syscall (netbsd-arm), const INPCK = 16 +pkg syscall (netbsd-arm), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-arm), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-arm), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-arm), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-arm), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-arm), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-arm), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-arm), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-arm), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-arm), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-arm), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-arm), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-arm), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-arm), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-arm), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-arm), const IPPROTO_AH = 51 +pkg syscall (netbsd-arm), const IPPROTO_CARP = 112 +pkg syscall (netbsd-arm), const IPPROTO_DONE = 257 +pkg syscall (netbsd-arm), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-arm), const IPPROTO_EGP = 8 +pkg syscall (netbsd-arm), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-arm), const IPPROTO_EON = 80 +pkg syscall (netbsd-arm), const IPPROTO_ESP = 50 +pkg syscall (netbsd-arm), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-arm), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-arm), const IPPROTO_GGP = 3 +pkg syscall (netbsd-arm), const IPPROTO_GRE = 47 +pkg syscall (netbsd-arm), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-arm), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-arm), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-arm), const IPPROTO_IDP = 22 +pkg syscall (netbsd-arm), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-arm), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-arm), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-arm), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-arm), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-arm), const IPPROTO_MAX = 256 +pkg syscall (netbsd-arm), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-arm), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-arm), const IPPROTO_NONE = 59 +pkg syscall (netbsd-arm), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-arm), const IPPROTO_PIM = 103 +pkg syscall (netbsd-arm), const IPPROTO_PUP = 12 +pkg syscall (netbsd-arm), const IPPROTO_RAW = 255 +pkg syscall (netbsd-arm), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-arm), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-arm), const IPPROTO_TP = 29 +pkg syscall (netbsd-arm), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-arm), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-arm), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-arm), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-arm), const IPV6_FAITH = 29 +pkg syscall (netbsd-arm), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-arm), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-arm), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-arm), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-arm), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-arm), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-arm), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-arm), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-arm), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-arm), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-arm), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-arm), const IPV6_MMTU = 1280 +pkg syscall (netbsd-arm), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-arm), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-arm), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-arm), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-arm), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-arm), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-arm), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-arm), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-arm), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-arm), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-arm), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-arm), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-arm), const IPV6_RTHDR = 51 +pkg syscall (netbsd-arm), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-arm), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-arm), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-arm), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-arm), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-arm), const IPV6_TCLASS = 61 +pkg syscall (netbsd-arm), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-arm), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-arm), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-arm), const IPV6_VERSION = 96 +pkg syscall (netbsd-arm), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-arm), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-arm), const IP_DF = 16384 +pkg syscall (netbsd-arm), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-arm), const IP_EF = 32768 +pkg syscall (netbsd-arm), const IP_ERRORMTU = 21 +pkg syscall (netbsd-arm), const IP_HDRINCL = 2 +pkg syscall (netbsd-arm), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-arm), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-arm), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-arm), const IP_MF = 8192 +pkg syscall (netbsd-arm), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-arm), const IP_MINTTL = 24 +pkg syscall (netbsd-arm), const IP_MSS = 576 +pkg syscall (netbsd-arm), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-arm), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-arm), const IP_OFFMASK = 8191 +pkg syscall (netbsd-arm), const IP_OPTIONS = 1 +pkg syscall (netbsd-arm), const IP_PORTRANGE = 19 +pkg syscall (netbsd-arm), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-arm), const IP_RECVIF = 20 +pkg syscall (netbsd-arm), const IP_RECVOPTS = 5 +pkg syscall (netbsd-arm), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-arm), const IP_RECVTTL = 23 +pkg syscall (netbsd-arm), const IP_RETOPTS = 8 +pkg syscall (netbsd-arm), const IP_RF = 32768 +pkg syscall (netbsd-arm), const IP_TOS = 3 +pkg syscall (netbsd-arm), const IP_TTL = 4 +pkg syscall (netbsd-arm), const ISIG = 128 +pkg syscall (netbsd-arm), const ISTRIP = 32 +pkg syscall (netbsd-arm), const IXANY = 2048 +pkg syscall (netbsd-arm), const IXOFF = 1024 +pkg syscall (netbsd-arm), const IXON = 512 +pkg syscall (netbsd-arm), const ImplementsGetwd = false +pkg syscall (netbsd-arm), const LOCK_EX = 2 +pkg syscall (netbsd-arm), const LOCK_NB = 4 +pkg syscall (netbsd-arm), const LOCK_SH = 1 +pkg syscall (netbsd-arm), const LOCK_UN = 8 +pkg syscall (netbsd-arm), const MSG_BCAST = 256 +pkg syscall (netbsd-arm), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-arm), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-arm), const MSG_CTRUNC = 32 +pkg syscall (netbsd-arm), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-arm), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-arm), const MSG_EOR = 8 +pkg syscall (netbsd-arm), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-arm), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-arm), const MSG_MCAST = 512 +pkg syscall (netbsd-arm), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-arm), const MSG_NBIO = 4096 +pkg syscall (netbsd-arm), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-arm), const MSG_OOB = 1 +pkg syscall (netbsd-arm), const MSG_PEEK = 2 +pkg syscall (netbsd-arm), const MSG_TRUNC = 16 +pkg syscall (netbsd-arm), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-arm), const MSG_WAITALL = 64 +pkg syscall (netbsd-arm), const NAME_MAX = 511 +pkg syscall (netbsd-arm), const NET_RT_DUMP = 1 +pkg syscall (netbsd-arm), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-arm), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-arm), const NET_RT_MAXID = 6 +pkg syscall (netbsd-arm), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-arm), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-arm), const NOFLSH = 2147483648 +pkg syscall (netbsd-arm), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-arm), const NOTE_CHILD = 4 +pkg syscall (netbsd-arm), const NOTE_DELETE = 1 +pkg syscall (netbsd-arm), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-arm), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-arm), const NOTE_EXTEND = 4 +pkg syscall (netbsd-arm), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-arm), const NOTE_LINK = 16 +pkg syscall (netbsd-arm), const NOTE_LOWAT = 1 +pkg syscall (netbsd-arm), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-arm), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-arm), const NOTE_RENAME = 32 +pkg syscall (netbsd-arm), const NOTE_REVOKE = 64 +pkg syscall (netbsd-arm), const NOTE_TRACK = 1 +pkg syscall (netbsd-arm), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-arm), const NOTE_WRITE = 2 +pkg syscall (netbsd-arm), const OCRNL = 16 +pkg syscall (netbsd-arm), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-arm), const ONLCR = 2 +pkg syscall (netbsd-arm), const ONLRET = 64 +pkg syscall (netbsd-arm), const ONOCR = 32 +pkg syscall (netbsd-arm), const ONOEOT = 8 +pkg syscall (netbsd-arm), const OPOST = 1 +pkg syscall (netbsd-arm), const O_ACCMODE = 3 +pkg syscall (netbsd-arm), const O_ALT_IO = 262144 +pkg syscall (netbsd-arm), const O_APPEND = 8 +pkg syscall (netbsd-arm), const O_ASYNC = 64 +pkg syscall (netbsd-arm), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-arm), const O_CREAT = 512 +pkg syscall (netbsd-arm), const O_DIRECT = 524288 +pkg syscall (netbsd-arm), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-arm), const O_DSYNC = 65536 +pkg syscall (netbsd-arm), const O_EXCL = 2048 +pkg syscall (netbsd-arm), const O_EXLOCK = 32 +pkg syscall (netbsd-arm), const O_FSYNC = 128 +pkg syscall (netbsd-arm), const O_NDELAY = 4 +pkg syscall (netbsd-arm), const O_NOCTTY = 32768 +pkg syscall (netbsd-arm), const O_NOFOLLOW = 256 +pkg syscall (netbsd-arm), const O_NONBLOCK = 4 +pkg syscall (netbsd-arm), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-arm), const O_RSYNC = 131072 +pkg syscall (netbsd-arm), const O_SHLOCK = 16 +pkg syscall (netbsd-arm), const O_SYNC = 128 +pkg syscall (netbsd-arm), const O_TRUNC = 1024 +pkg syscall (netbsd-arm), const PARENB = 4096 +pkg syscall (netbsd-arm), const PARMRK = 8 +pkg syscall (netbsd-arm), const PARODD = 8192 +pkg syscall (netbsd-arm), const PENDIN = 536870912 +pkg syscall (netbsd-arm), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-arm), const PTRACE_CONT = 7 +pkg syscall (netbsd-arm), const PTRACE_KILL = 8 +pkg syscall (netbsd-arm), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-arm), const RLIMIT_AS = 10 +pkg syscall (netbsd-arm), const RLIMIT_CORE = 4 +pkg syscall (netbsd-arm), const RLIMIT_CPU = 0 +pkg syscall (netbsd-arm), const RLIMIT_DATA = 2 +pkg syscall (netbsd-arm), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-arm), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-arm), const RLIMIT_STACK = 3 +pkg syscall (netbsd-arm), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-arm), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-arm), const RTAX_BRD = 7 +pkg syscall (netbsd-arm), const RTAX_DST = 0 +pkg syscall (netbsd-arm), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-arm), const RTAX_GENMASK = 3 +pkg syscall (netbsd-arm), const RTAX_IFA = 5 +pkg syscall (netbsd-arm), const RTAX_IFP = 4 +pkg syscall (netbsd-arm), const RTAX_MAX = 9 +pkg syscall (netbsd-arm), const RTAX_NETMASK = 2 +pkg syscall (netbsd-arm), const RTAX_TAG = 8 +pkg syscall (netbsd-arm), const RTA_AUTHOR = 64 +pkg syscall (netbsd-arm), const RTA_BRD = 128 +pkg syscall (netbsd-arm), const RTA_DST = 1 +pkg syscall (netbsd-arm), const RTA_GATEWAY = 2 +pkg syscall (netbsd-arm), const RTA_GENMASK = 8 +pkg syscall (netbsd-arm), const RTA_IFA = 32 +pkg syscall (netbsd-arm), const RTA_IFP = 16 +pkg syscall (netbsd-arm), const RTA_NETMASK = 4 +pkg syscall (netbsd-arm), const RTA_TAG = 256 +pkg syscall (netbsd-arm), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-arm), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-arm), const RTF_CLONED = 8192 +pkg syscall (netbsd-arm), const RTF_CLONING = 256 +pkg syscall (netbsd-arm), const RTF_DONE = 64 +pkg syscall (netbsd-arm), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-arm), const RTF_GATEWAY = 2 +pkg syscall (netbsd-arm), const RTF_HOST = 4 +pkg syscall (netbsd-arm), const RTF_LLINFO = 1024 +pkg syscall (netbsd-arm), const RTF_MASK = 128 +pkg syscall (netbsd-arm), const RTF_MODIFIED = 32 +pkg syscall (netbsd-arm), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-arm), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-arm), const RTF_REJECT = 8 +pkg syscall (netbsd-arm), const RTF_SRC = 65536 +pkg syscall (netbsd-arm), const RTF_STATIC = 2048 +pkg syscall (netbsd-arm), const RTF_UP = 1 +pkg syscall (netbsd-arm), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-arm), const RTM_ADD = 1 +pkg syscall (netbsd-arm), const RTM_CHANGE = 3 +pkg syscall (netbsd-arm), const RTM_CHGADDR = 21 +pkg syscall (netbsd-arm), const RTM_DELADDR = 13 +pkg syscall (netbsd-arm), const RTM_DELETE = 2 +pkg syscall (netbsd-arm), const RTM_GET = 4 +pkg syscall (netbsd-arm), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-arm), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-arm), const RTM_IFINFO = 20 +pkg syscall (netbsd-arm), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-arm), const RTM_LOCK = 8 +pkg syscall (netbsd-arm), const RTM_LOSING = 5 +pkg syscall (netbsd-arm), const RTM_MISS = 7 +pkg syscall (netbsd-arm), const RTM_NEWADDR = 12 +pkg syscall (netbsd-arm), const RTM_OIFINFO = 15 +pkg syscall (netbsd-arm), const RTM_OLDADD = 9 +pkg syscall (netbsd-arm), const RTM_OLDDEL = 10 +pkg syscall (netbsd-arm), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-arm), const RTM_REDIRECT = 6 +pkg syscall (netbsd-arm), const RTM_RESOLVE = 11 +pkg syscall (netbsd-arm), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-arm), const RTM_SETGATE = 18 +pkg syscall (netbsd-arm), const RTM_VERSION = 4 +pkg syscall (netbsd-arm), const RTV_EXPIRE = 4 +pkg syscall (netbsd-arm), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-arm), const RTV_MTU = 1 +pkg syscall (netbsd-arm), const RTV_RPIPE = 8 +pkg syscall (netbsd-arm), const RTV_RTT = 64 +pkg syscall (netbsd-arm), const RTV_RTTVAR = 128 +pkg syscall (netbsd-arm), const RTV_SPIPE = 16 +pkg syscall (netbsd-arm), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-arm), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-arm), const RUSAGE_SELF = 0 +pkg syscall (netbsd-arm), const SCM_CREDS = 4 +pkg syscall (netbsd-arm), const SCM_RIGHTS = 1 +pkg syscall (netbsd-arm), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-arm), const SIGBUS = 10 +pkg syscall (netbsd-arm), const SIGCHLD = 20 +pkg syscall (netbsd-arm), const SIGCONT = 19 +pkg syscall (netbsd-arm), const SIGEMT = 7 +pkg syscall (netbsd-arm), const SIGINFO = 29 +pkg syscall (netbsd-arm), const SIGIO = 23 +pkg syscall (netbsd-arm), const SIGIOT = 6 +pkg syscall (netbsd-arm), const SIGPROF = 27 +pkg syscall (netbsd-arm), const SIGPWR = 32 +pkg syscall (netbsd-arm), const SIGSTOP = 17 +pkg syscall (netbsd-arm), const SIGSYS = 12 +pkg syscall (netbsd-arm), const SIGTSTP = 18 +pkg syscall (netbsd-arm), const SIGTTIN = 21 +pkg syscall (netbsd-arm), const SIGTTOU = 22 +pkg syscall (netbsd-arm), const SIGURG = 16 +pkg syscall (netbsd-arm), const SIGUSR1 = 30 +pkg syscall (netbsd-arm), const SIGUSR2 = 31 +pkg syscall (netbsd-arm), const SIGVTALRM = 26 +pkg syscall (netbsd-arm), const SIGWINCH = 28 +pkg syscall (netbsd-arm), const SIGXCPU = 24 +pkg syscall (netbsd-arm), const SIGXFSZ = 25 +pkg syscall (netbsd-arm), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-arm), const SIOCADDRT = 2150658570 +pkg syscall (netbsd-arm), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-arm), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-arm), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-arm), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-arm), const SIOCDELRT = 2150658571 +pkg syscall (netbsd-arm), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-arm), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-arm), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-arm), const SIOCGDRVSPEC = 3223087483 +pkg syscall (netbsd-arm), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-arm), const SIOCGETSGCNT = 3222566196 +pkg syscall (netbsd-arm), const SIOCGETVIFCNT = 3222566195 +pkg syscall (netbsd-arm), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-arm), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-arm), const SIOCGIFADDRPREF = 3230951712 +pkg syscall (netbsd-arm), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-arm), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-arm), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-arm), const SIOCGIFCONF = 3221776678 +pkg syscall (netbsd-arm), const SIOCGIFDATA = 3230951813 +pkg syscall (netbsd-arm), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-arm), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-arm), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-arm), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-arm), const SIOCGIFMEDIA = 3223873846 +pkg syscall (netbsd-arm), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-arm), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-arm), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-arm), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-arm), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-arm), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-arm), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-arm), const SIOCGLINKSTR = 3223087495 +pkg syscall (netbsd-arm), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-arm), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-arm), const SIOCGVH = 3230689667 +pkg syscall (netbsd-arm), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-arm), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-arm), const SIOCIFGCLONERS = 3222038904 +pkg syscall (netbsd-arm), const SIOCINITIFADDR = 3225708932 +pkg syscall (netbsd-arm), const SIOCSDRVSPEC = 2149345659 +pkg syscall (netbsd-arm), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-arm), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-arm), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-arm), const SIOCSIFADDRPREF = 2157209887 +pkg syscall (netbsd-arm), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-arm), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-arm), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-arm), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-arm), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-arm), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-arm), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-arm), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-arm), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-arm), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-arm), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-arm), const SIOCSLINKSTR = 2149345672 +pkg syscall (netbsd-arm), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-arm), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-arm), const SIOCSVH = 3230689666 +pkg syscall (netbsd-arm), const SIOCZIFDATA = 3230951814 +pkg syscall (netbsd-arm), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-arm), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-arm), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-arm), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-arm), const SOCK_RDM = 4 +pkg syscall (netbsd-arm), const SOL_SOCKET = 65535 +pkg syscall (netbsd-arm), const SOMAXCONN = 128 +pkg syscall (netbsd-arm), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-arm), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-arm), const SO_BROADCAST = 32 +pkg syscall (netbsd-arm), const SO_DEBUG = 1 +pkg syscall (netbsd-arm), const SO_DONTROUTE = 16 +pkg syscall (netbsd-arm), const SO_ERROR = 4103 +pkg syscall (netbsd-arm), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-arm), const SO_LINGER = 128 +pkg syscall (netbsd-arm), const SO_NOHEADER = 4106 +pkg syscall (netbsd-arm), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-arm), const SO_OOBINLINE = 256 +pkg syscall (netbsd-arm), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-arm), const SO_RCVBUF = 4098 +pkg syscall (netbsd-arm), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-arm), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-arm), const SO_REUSEADDR = 4 +pkg syscall (netbsd-arm), const SO_REUSEPORT = 512 +pkg syscall (netbsd-arm), const SO_SNDBUF = 4097 +pkg syscall (netbsd-arm), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-arm), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-arm), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-arm), const SO_TYPE = 4104 +pkg syscall (netbsd-arm), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-arm), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-arm), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-arm), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-arm), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-arm), const SYS_ACCEPT = 30 +pkg syscall (netbsd-arm), const SYS_ACCESS = 33 +pkg syscall (netbsd-arm), const SYS_ACCT = 51 +pkg syscall (netbsd-arm), const SYS_ADJTIME = 421 +pkg syscall (netbsd-arm), const SYS_BIND = 104 +pkg syscall (netbsd-arm), const SYS_BREAK = 17 +pkg syscall (netbsd-arm), const SYS_CHDIR = 12 +pkg syscall (netbsd-arm), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-arm), const SYS_CHMOD = 15 +pkg syscall (netbsd-arm), const SYS_CHOWN = 16 +pkg syscall (netbsd-arm), const SYS_CHROOT = 61 +pkg syscall (netbsd-arm), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-arm), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-arm), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-arm), const SYS_CLOSE = 6 +pkg syscall (netbsd-arm), const SYS_CONNECT = 98 +pkg syscall (netbsd-arm), const SYS_DUP = 41 +pkg syscall (netbsd-arm), const SYS_DUP2 = 90 +pkg syscall (netbsd-arm), const SYS_DUP3 = 454 +pkg syscall (netbsd-arm), const SYS_EXECVE = 59 +pkg syscall (netbsd-arm), const SYS_EXIT = 1 +pkg syscall (netbsd-arm), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-arm), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-arm), const SYS_FCHDIR = 13 +pkg syscall (netbsd-arm), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-arm), const SYS_FCHMOD = 124 +pkg syscall (netbsd-arm), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-arm), const SYS_FCHOWN = 123 +pkg syscall (netbsd-arm), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-arm), const SYS_FCHROOT = 297 +pkg syscall (netbsd-arm), const SYS_FCNTL = 92 +pkg syscall (netbsd-arm), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-arm), const SYS_FEXECVE = 465 +pkg syscall (netbsd-arm), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-arm), const SYS_FHSTAT = 451 +pkg syscall (netbsd-arm), const SYS_FKTRACE = 288 +pkg syscall (netbsd-arm), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-arm), const SYS_FLOCK = 131 +pkg syscall (netbsd-arm), const SYS_FORK = 2 +pkg syscall (netbsd-arm), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-arm), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-arm), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-arm), const SYS_FSTAT = 440 +pkg syscall (netbsd-arm), const SYS_FSTATAT = 466 +pkg syscall (netbsd-arm), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-arm), const SYS_FSYNC = 95 +pkg syscall (netbsd-arm), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-arm), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-arm), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-arm), const SYS_FUTIMES = 423 +pkg syscall (netbsd-arm), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-arm), const SYS_GETDENTS = 390 +pkg syscall (netbsd-arm), const SYS_GETEGID = 43 +pkg syscall (netbsd-arm), const SYS_GETEUID = 25 +pkg syscall (netbsd-arm), const SYS_GETFH = 395 +pkg syscall (netbsd-arm), const SYS_GETGID = 47 +pkg syscall (netbsd-arm), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-arm), const SYS_GETITIMER = 426 +pkg syscall (netbsd-arm), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-arm), const SYS_GETPGID = 207 +pkg syscall (netbsd-arm), const SYS_GETPGRP = 81 +pkg syscall (netbsd-arm), const SYS_GETPID = 20 +pkg syscall (netbsd-arm), const SYS_GETPPID = 39 +pkg syscall (netbsd-arm), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-arm), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-arm), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-arm), const SYS_GETSID = 286 +pkg syscall (netbsd-arm), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-arm), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-arm), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-arm), const SYS_GETUID = 24 +pkg syscall (netbsd-arm), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-arm), const SYS_GETXATTR = 378 +pkg syscall (netbsd-arm), const SYS_IOCTL = 54 +pkg syscall (netbsd-arm), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-arm), const SYS_KEVENT = 435 +pkg syscall (netbsd-arm), const SYS_KILL = 37 +pkg syscall (netbsd-arm), const SYS_KQUEUE = 344 +pkg syscall (netbsd-arm), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-arm), const SYS_KTRACE = 45 +pkg syscall (netbsd-arm), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-arm), const SYS_LCHMOD = 274 +pkg syscall (netbsd-arm), const SYS_LCHOWN = 275 +pkg syscall (netbsd-arm), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-arm), const SYS_LINK = 9 +pkg syscall (netbsd-arm), const SYS_LINKAT = 457 +pkg syscall (netbsd-arm), const SYS_LISTEN = 106 +pkg syscall (netbsd-arm), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-arm), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-arm), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-arm), const SYS_LSEEK = 199 +pkg syscall (netbsd-arm), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-arm), const SYS_LSTAT = 441 +pkg syscall (netbsd-arm), const SYS_LUTIMES = 424 +pkg syscall (netbsd-arm), const SYS_MADVISE = 75 +pkg syscall (netbsd-arm), const SYS_MINCORE = 78 +pkg syscall (netbsd-arm), const SYS_MINHERIT = 273 +pkg syscall (netbsd-arm), const SYS_MKDIR = 136 +pkg syscall (netbsd-arm), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-arm), const SYS_MKFIFO = 132 +pkg syscall (netbsd-arm), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-arm), const SYS_MKNOD = 450 +pkg syscall (netbsd-arm), const SYS_MKNODAT = 460 +pkg syscall (netbsd-arm), const SYS_MLOCK = 203 +pkg syscall (netbsd-arm), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-arm), const SYS_MMAP = 197 +pkg syscall (netbsd-arm), const SYS_MODCTL = 246 +pkg syscall (netbsd-arm), const SYS_MOUNT = 410 +pkg syscall (netbsd-arm), const SYS_MPROTECT = 74 +pkg syscall (netbsd-arm), const SYS_MREMAP = 411 +pkg syscall (netbsd-arm), const SYS_MSGCTL = 444 +pkg syscall (netbsd-arm), const SYS_MSGGET = 225 +pkg syscall (netbsd-arm), const SYS_MSGRCV = 227 +pkg syscall (netbsd-arm), const SYS_MSGSND = 226 +pkg syscall (netbsd-arm), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-arm), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-arm), const SYS_MUNMAP = 73 +pkg syscall (netbsd-arm), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-arm), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-arm), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-arm), const SYS_OPEN = 5 +pkg syscall (netbsd-arm), const SYS_OPENAT = 468 +pkg syscall (netbsd-arm), const SYS_PACCEPT = 456 +pkg syscall (netbsd-arm), const SYS_PATHCONF = 191 +pkg syscall (netbsd-arm), const SYS_PIPE = 42 +pkg syscall (netbsd-arm), const SYS_PIPE2 = 453 +pkg syscall (netbsd-arm), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-arm), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-arm), const SYS_POLL = 209 +pkg syscall (netbsd-arm), const SYS_POLLTS = 437 +pkg syscall (netbsd-arm), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-arm), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-arm), const SYS_PREAD = 173 +pkg syscall (netbsd-arm), const SYS_PREADV = 289 +pkg syscall (netbsd-arm), const SYS_PROFIL = 44 +pkg syscall (netbsd-arm), const SYS_PSELECT = 436 +pkg syscall (netbsd-arm), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-arm), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-arm), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-arm), const SYS_PTRACE = 26 +pkg syscall (netbsd-arm), const SYS_PWRITE = 174 +pkg syscall (netbsd-arm), const SYS_PWRITEV = 290 +pkg syscall (netbsd-arm), const SYS_RASCTL = 343 +pkg syscall (netbsd-arm), const SYS_READ = 3 +pkg syscall (netbsd-arm), const SYS_READLINK = 58 +pkg syscall (netbsd-arm), const SYS_READLINKAT = 469 +pkg syscall (netbsd-arm), const SYS_READV = 120 +pkg syscall (netbsd-arm), const SYS_REBOOT = 208 +pkg syscall (netbsd-arm), const SYS_RECVFROM = 29 +pkg syscall (netbsd-arm), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-arm), const SYS_RECVMSG = 27 +pkg syscall (netbsd-arm), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-arm), const SYS_RENAME = 128 +pkg syscall (netbsd-arm), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-arm), const SYS_REVOKE = 56 +pkg syscall (netbsd-arm), const SYS_RMDIR = 137 +pkg syscall (netbsd-arm), const SYS_SBRK = 69 +pkg syscall (netbsd-arm), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-arm), const SYS_SELECT = 417 +pkg syscall (netbsd-arm), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-arm), const SYS_SEMGET = 221 +pkg syscall (netbsd-arm), const SYS_SEMOP = 222 +pkg syscall (netbsd-arm), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-arm), const SYS_SENDMSG = 28 +pkg syscall (netbsd-arm), const SYS_SENDTO = 133 +pkg syscall (netbsd-arm), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-arm), const SYS_SETEGID = 182 +pkg syscall (netbsd-arm), const SYS_SETEUID = 183 +pkg syscall (netbsd-arm), const SYS_SETGID = 181 +pkg syscall (netbsd-arm), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-arm), const SYS_SETITIMER = 425 +pkg syscall (netbsd-arm), const SYS_SETPGID = 82 +pkg syscall (netbsd-arm), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-arm), const SYS_SETREGID = 127 +pkg syscall (netbsd-arm), const SYS_SETREUID = 126 +pkg syscall (netbsd-arm), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-arm), const SYS_SETSID = 147 +pkg syscall (netbsd-arm), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-arm), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-arm), const SYS_SETUID = 23 +pkg syscall (netbsd-arm), const SYS_SETXATTR = 375 +pkg syscall (netbsd-arm), const SYS_SHMAT = 228 +pkg syscall (netbsd-arm), const SYS_SHMCTL = 443 +pkg syscall (netbsd-arm), const SYS_SHMDT = 230 +pkg syscall (netbsd-arm), const SYS_SHMGET = 231 +pkg syscall (netbsd-arm), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-arm), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-arm), const SYS_SOCKET = 394 +pkg syscall (netbsd-arm), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-arm), const SYS_SSTK = 70 +pkg syscall (netbsd-arm), const SYS_STAT = 439 +pkg syscall (netbsd-arm), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-arm), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-arm), const SYS_SYMLINK = 57 +pkg syscall (netbsd-arm), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-arm), const SYS_SYNC = 36 +pkg syscall (netbsd-arm), const SYS_SYSARCH = 165 +pkg syscall (netbsd-arm), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-arm), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-arm), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-arm), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-arm), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-arm), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-arm), const SYS_UMASK = 60 +pkg syscall (netbsd-arm), const SYS_UNDELETE = 205 +pkg syscall (netbsd-arm), const SYS_UNLINK = 10 +pkg syscall (netbsd-arm), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-arm), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-arm), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-arm), const SYS_UTIMES = 420 +pkg syscall (netbsd-arm), const SYS_UTRACE = 306 +pkg syscall (netbsd-arm), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-arm), const SYS_VADVISE = 72 +pkg syscall (netbsd-arm), const SYS_VFORK = 66 +pkg syscall (netbsd-arm), const SYS_WAIT4 = 449 +pkg syscall (netbsd-arm), const SYS_WRITE = 4 +pkg syscall (netbsd-arm), const SYS_WRITEV = 121 +pkg syscall (netbsd-arm), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-arm), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-arm), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-arm), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-arm), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-arm), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-arm), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-arm), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-arm), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-arm), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-arm), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-arm), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-arm), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-arm), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-arm), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-arm), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-arm), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-arm), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-arm), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-arm), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-arm), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-arm), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-arm), const SYS___CLONE = 287 +pkg syscall (netbsd-arm), const SYS___GETCWD = 296 +pkg syscall (netbsd-arm), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-arm), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-arm), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-arm), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-arm), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-arm), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-arm), const SYS___SEMCTL = 442 +pkg syscall (netbsd-arm), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-arm), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-arm), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-arm), const SYS___SYSCTL = 202 +pkg syscall (netbsd-arm), const S_ARCH1 = 65536 +pkg syscall (netbsd-arm), const S_ARCH2 = 131072 +pkg syscall (netbsd-arm), const S_BLKSIZE = 512 +pkg syscall (netbsd-arm), const S_IEXEC = 64 +pkg syscall (netbsd-arm), const S_IFMT = 61440 +pkg syscall (netbsd-arm), const S_IFWHT = 57344 +pkg syscall (netbsd-arm), const S_IREAD = 256 +pkg syscall (netbsd-arm), const S_IRGRP = 32 +pkg syscall (netbsd-arm), const S_IROTH = 4 +pkg syscall (netbsd-arm), const S_IRWXG = 56 +pkg syscall (netbsd-arm), const S_IRWXO = 7 +pkg syscall (netbsd-arm), const S_IRWXU = 448 +pkg syscall (netbsd-arm), const S_ISTXT = 512 +pkg syscall (netbsd-arm), const S_IWGRP = 16 +pkg syscall (netbsd-arm), const S_IWOTH = 2 +pkg syscall (netbsd-arm), const S_IWRITE = 128 +pkg syscall (netbsd-arm), const S_IXGRP = 8 +pkg syscall (netbsd-arm), const S_IXOTH = 1 +pkg syscall (netbsd-arm), const SizeofBpfHdr = 20 +pkg syscall (netbsd-arm), const SizeofBpfInsn = 8 +pkg syscall (netbsd-arm), const SizeofBpfProgram = 8 +pkg syscall (netbsd-arm), const SizeofBpfStat = 128 +pkg syscall (netbsd-arm), const SizeofBpfVersion = 4 +pkg syscall (netbsd-arm), const SizeofCmsghdr = 12 +pkg syscall (netbsd-arm), const SizeofIPMreq = 8 +pkg syscall (netbsd-arm), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-arm), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-arm), const SizeofIfData = 132 +pkg syscall (netbsd-arm), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-arm), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-arm), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-arm), const SizeofLinger = 8 +pkg syscall (netbsd-arm), const SizeofMsghdr = 28 +pkg syscall (netbsd-arm), const SizeofRtMetrics = 80 +pkg syscall (netbsd-arm), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-arm), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-arm), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-arm), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-arm), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-arm), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-arm), const TCIFLUSH = 1 +pkg syscall (netbsd-arm), const TCIOFLUSH = 3 +pkg syscall (netbsd-arm), const TCOFLUSH = 2 +pkg syscall (netbsd-arm), const TCP_CONGCTL = 32 +pkg syscall (netbsd-arm), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-arm), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-arm), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-arm), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-arm), const TCP_MAXBURST = 4 +pkg syscall (netbsd-arm), const TCP_MAXSEG = 2 +pkg syscall (netbsd-arm), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-arm), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-arm), const TCP_MD5SIG = 16 +pkg syscall (netbsd-arm), const TCP_MINMSS = 216 +pkg syscall (netbsd-arm), const TCP_MSS = 536 +pkg syscall (netbsd-arm), const TCSAFLUSH = 2 +pkg syscall (netbsd-arm), const TIOCCBRK = 536900730 +pkg syscall (netbsd-arm), const TIOCCDTR = 536900728 +pkg syscall (netbsd-arm), const TIOCCONS = 2147775586 +pkg syscall (netbsd-arm), const TIOCDCDTIMESTAMP = 1074558040 +pkg syscall (netbsd-arm), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-arm), const TIOCEXCL = 536900621 +pkg syscall (netbsd-arm), const TIOCEXT = 2147775584 +pkg syscall (netbsd-arm), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-arm), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-arm), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-arm), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-arm), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-arm), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-arm), const TIOCGETA = 1076655123 +pkg syscall (netbsd-arm), const TIOCGETD = 1074033690 +pkg syscall (netbsd-arm), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-arm), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-arm), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-arm), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-arm), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-arm), const TIOCGSID = 1074033763 +pkg syscall (netbsd-arm), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-arm), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-arm), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-arm), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-arm), const TIOCMGET = 1074033770 +pkg syscall (netbsd-arm), const TIOCMSET = 2147775597 +pkg syscall (netbsd-arm), const TIOCM_CAR = 64 +pkg syscall (netbsd-arm), const TIOCM_CD = 64 +pkg syscall (netbsd-arm), const TIOCM_CTS = 32 +pkg syscall (netbsd-arm), const TIOCM_DSR = 256 +pkg syscall (netbsd-arm), const TIOCM_DTR = 2 +pkg syscall (netbsd-arm), const TIOCM_LE = 1 +pkg syscall (netbsd-arm), const TIOCM_RI = 128 +pkg syscall (netbsd-arm), const TIOCM_RNG = 128 +pkg syscall (netbsd-arm), const TIOCM_RTS = 4 +pkg syscall (netbsd-arm), const TIOCM_SR = 16 +pkg syscall (netbsd-arm), const TIOCM_ST = 8 +pkg syscall (netbsd-arm), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-arm), const TIOCNXCL = 536900622 +pkg syscall (netbsd-arm), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-arm), const TIOCPKT = 2147775600 +pkg syscall (netbsd-arm), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-arm), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-arm), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-arm), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-arm), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-arm), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-arm), const TIOCPKT_START = 8 +pkg syscall (netbsd-arm), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-arm), const TIOCPTMGET = 1208513606 +pkg syscall (netbsd-arm), const TIOCPTSNAME = 1208513608 +pkg syscall (netbsd-arm), const TIOCRCVFRAME = 2147775557 +pkg syscall (netbsd-arm), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-arm), const TIOCSBRK = 536900731 +pkg syscall (netbsd-arm), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-arm), const TIOCSDTR = 536900729 +pkg syscall (netbsd-arm), const TIOCSETA = 2150396948 +pkg syscall (netbsd-arm), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-arm), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-arm), const TIOCSETD = 2147775515 +pkg syscall (netbsd-arm), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-arm), const TIOCSIG = 536900703 +pkg syscall (netbsd-arm), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-arm), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-arm), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-arm), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-arm), const TIOCSTART = 536900718 +pkg syscall (netbsd-arm), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-arm), const TIOCSTI = 2147578994 +pkg syscall (netbsd-arm), const TIOCSTOP = 536900719 +pkg syscall (netbsd-arm), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-arm), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-arm), const TIOCXMTFRAME = 2147775556 +pkg syscall (netbsd-arm), const TOSTOP = 4194304 +pkg syscall (netbsd-arm), const VDISCARD = 15 +pkg syscall (netbsd-arm), const VDSUSP = 11 +pkg syscall (netbsd-arm), const VEOF = 0 +pkg syscall (netbsd-arm), const VEOL = 1 +pkg syscall (netbsd-arm), const VEOL2 = 2 +pkg syscall (netbsd-arm), const VERASE = 3 +pkg syscall (netbsd-arm), const VINTR = 8 +pkg syscall (netbsd-arm), const VKILL = 5 +pkg syscall (netbsd-arm), const VLNEXT = 14 +pkg syscall (netbsd-arm), const VMIN = 16 +pkg syscall (netbsd-arm), const VQUIT = 9 +pkg syscall (netbsd-arm), const VREPRINT = 6 +pkg syscall (netbsd-arm), const VSTART = 12 +pkg syscall (netbsd-arm), const VSTATUS = 18 +pkg syscall (netbsd-arm), const VSTOP = 13 +pkg syscall (netbsd-arm), const VSUSP = 10 +pkg syscall (netbsd-arm), const VTIME = 17 +pkg syscall (netbsd-arm), const VWERASE = 4 +pkg syscall (netbsd-arm), const WALL = 8 +pkg syscall (netbsd-arm), const WALLSIG = 8 +pkg syscall (netbsd-arm), const WALTSIG = 4 +pkg syscall (netbsd-arm), const WCLONE = 4 +pkg syscall (netbsd-arm), const WCOREFLAG = 128 +pkg syscall (netbsd-arm), const WNOHANG = 1 +pkg syscall (netbsd-arm), const WNOWAIT = 65536 +pkg syscall (netbsd-arm), const WNOZOMBIE = 131072 +pkg syscall (netbsd-arm), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-arm), const WSTOPPED = 127 +pkg syscall (netbsd-arm), const WUNTRACED = 2 +pkg syscall (netbsd-arm-cgo), const AF_APPLETALK = 16 +pkg syscall (netbsd-arm-cgo), const AF_ARP = 28 +pkg syscall (netbsd-arm-cgo), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-arm-cgo), const AF_CCITT = 10 +pkg syscall (netbsd-arm-cgo), const AF_CHAOS = 5 +pkg syscall (netbsd-arm-cgo), const AF_CNT = 21 +pkg syscall (netbsd-arm-cgo), const AF_COIP = 20 +pkg syscall (netbsd-arm-cgo), const AF_DATAKIT = 9 +pkg syscall (netbsd-arm-cgo), const AF_DECnet = 12 +pkg syscall (netbsd-arm-cgo), const AF_DLI = 13 +pkg syscall (netbsd-arm-cgo), const AF_E164 = 26 +pkg syscall (netbsd-arm-cgo), const AF_ECMA = 8 +pkg syscall (netbsd-arm-cgo), const AF_HYLINK = 15 +pkg syscall (netbsd-arm-cgo), const AF_IEEE80211 = 32 +pkg syscall (netbsd-arm-cgo), const AF_IMPLINK = 3 +pkg syscall (netbsd-arm-cgo), const AF_INET6 = 24 +pkg syscall (netbsd-arm-cgo), const AF_IPX = 23 +pkg syscall (netbsd-arm-cgo), const AF_ISDN = 26 +pkg syscall (netbsd-arm-cgo), const AF_ISO = 7 +pkg syscall (netbsd-arm-cgo), const AF_LAT = 14 +pkg syscall (netbsd-arm-cgo), const AF_LINK = 18 +pkg syscall (netbsd-arm-cgo), const AF_LOCAL = 1 +pkg syscall (netbsd-arm-cgo), const AF_MAX = 35 +pkg syscall (netbsd-arm-cgo), const AF_MPLS = 33 +pkg syscall (netbsd-arm-cgo), const AF_NATM = 27 +pkg syscall (netbsd-arm-cgo), const AF_NS = 6 +pkg syscall (netbsd-arm-cgo), const AF_OROUTE = 17 +pkg syscall (netbsd-arm-cgo), const AF_OSI = 7 +pkg syscall (netbsd-arm-cgo), const AF_PUP = 4 +pkg syscall (netbsd-arm-cgo), const AF_ROUTE = 34 +pkg syscall (netbsd-arm-cgo), const AF_SNA = 11 +pkg syscall (netbsd-arm-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-arm-cgo), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-arm-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-arm-cgo), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-arm-cgo), const B0 = 0 +pkg syscall (netbsd-arm-cgo), const B110 = 110 +pkg syscall (netbsd-arm-cgo), const B115200 = 115200 +pkg syscall (netbsd-arm-cgo), const B1200 = 1200 +pkg syscall (netbsd-arm-cgo), const B134 = 134 +pkg syscall (netbsd-arm-cgo), const B14400 = 14400 +pkg syscall (netbsd-arm-cgo), const B150 = 150 +pkg syscall (netbsd-arm-cgo), const B1800 = 1800 +pkg syscall (netbsd-arm-cgo), const B19200 = 19200 +pkg syscall (netbsd-arm-cgo), const B200 = 200 +pkg syscall (netbsd-arm-cgo), const B230400 = 230400 +pkg syscall (netbsd-arm-cgo), const B2400 = 2400 +pkg syscall (netbsd-arm-cgo), const B28800 = 28800 +pkg syscall (netbsd-arm-cgo), const B300 = 300 +pkg syscall (netbsd-arm-cgo), const B38400 = 38400 +pkg syscall (netbsd-arm-cgo), const B460800 = 460800 +pkg syscall (netbsd-arm-cgo), const B4800 = 4800 +pkg syscall (netbsd-arm-cgo), const B50 = 50 +pkg syscall (netbsd-arm-cgo), const B57600 = 57600 +pkg syscall (netbsd-arm-cgo), const B600 = 600 +pkg syscall (netbsd-arm-cgo), const B7200 = 7200 +pkg syscall (netbsd-arm-cgo), const B75 = 75 +pkg syscall (netbsd-arm-cgo), const B76800 = 76800 +pkg syscall (netbsd-arm-cgo), const B921600 = 921600 +pkg syscall (netbsd-arm-cgo), const B9600 = 9600 +pkg syscall (netbsd-arm-cgo), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-arm-cgo), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-arm-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-arm-cgo), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-arm-cgo), const BIOCGDLTLIST = 3221766775 +pkg syscall (netbsd-arm-cgo), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-arm-cgo), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-arm-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-arm-cgo), const BIOCGRTIMEOUT = 1074545275 +pkg syscall (netbsd-arm-cgo), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-arm-cgo), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-arm-cgo), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-arm-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-arm-cgo), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-arm-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-arm-cgo), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-arm-cgo), const BIOCSETF = 2148024935 +pkg syscall (netbsd-arm-cgo), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-arm-cgo), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-arm-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-arm-cgo), const BIOCSRTIMEOUT = 2148287098 +pkg syscall (netbsd-arm-cgo), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-arm-cgo), const BIOCSTCPF = 2148024946 +pkg syscall (netbsd-arm-cgo), const BIOCSUDPF = 2148024947 +pkg syscall (netbsd-arm-cgo), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-arm-cgo), const BPF_A = 16 +pkg syscall (netbsd-arm-cgo), const BPF_ABS = 32 +pkg syscall (netbsd-arm-cgo), const BPF_ADD = 0 +pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-arm-cgo), const BPF_ALU = 4 +pkg syscall (netbsd-arm-cgo), const BPF_AND = 80 +pkg syscall (netbsd-arm-cgo), const BPF_B = 16 +pkg syscall (netbsd-arm-cgo), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-arm-cgo), const BPF_DIV = 48 +pkg syscall (netbsd-arm-cgo), const BPF_H = 8 +pkg syscall (netbsd-arm-cgo), const BPF_IMM = 0 +pkg syscall (netbsd-arm-cgo), const BPF_IND = 64 +pkg syscall (netbsd-arm-cgo), const BPF_JA = 0 +pkg syscall (netbsd-arm-cgo), const BPF_JEQ = 16 +pkg syscall (netbsd-arm-cgo), const BPF_JGE = 48 +pkg syscall (netbsd-arm-cgo), const BPF_JGT = 32 +pkg syscall (netbsd-arm-cgo), const BPF_JMP = 5 +pkg syscall (netbsd-arm-cgo), const BPF_JSET = 64 +pkg syscall (netbsd-arm-cgo), const BPF_K = 0 +pkg syscall (netbsd-arm-cgo), const BPF_LD = 0 +pkg syscall (netbsd-arm-cgo), const BPF_LDX = 1 +pkg syscall (netbsd-arm-cgo), const BPF_LEN = 128 +pkg syscall (netbsd-arm-cgo), const BPF_LSH = 96 +pkg syscall (netbsd-arm-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-arm-cgo), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-arm-cgo), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-arm-cgo), const BPF_MEM = 96 +pkg syscall (netbsd-arm-cgo), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-arm-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-arm-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-arm-cgo), const BPF_MISC = 7 +pkg syscall (netbsd-arm-cgo), const BPF_MSH = 160 +pkg syscall (netbsd-arm-cgo), const BPF_MUL = 32 +pkg syscall (netbsd-arm-cgo), const BPF_NEG = 128 +pkg syscall (netbsd-arm-cgo), const BPF_OR = 64 +pkg syscall (netbsd-arm-cgo), const BPF_RELEASE = 199606 +pkg syscall (netbsd-arm-cgo), const BPF_RET = 6 +pkg syscall (netbsd-arm-cgo), const BPF_RSH = 112 +pkg syscall (netbsd-arm-cgo), const BPF_ST = 2 +pkg syscall (netbsd-arm-cgo), const BPF_STX = 3 +pkg syscall (netbsd-arm-cgo), const BPF_SUB = 16 +pkg syscall (netbsd-arm-cgo), const BPF_TAX = 0 +pkg syscall (netbsd-arm-cgo), const BPF_TXA = 128 +pkg syscall (netbsd-arm-cgo), const BPF_W = 0 +pkg syscall (netbsd-arm-cgo), const BPF_X = 8 +pkg syscall (netbsd-arm-cgo), const BRKINT = 2 +pkg syscall (netbsd-arm-cgo), const CFLUSH = 15 +pkg syscall (netbsd-arm-cgo), const CLOCAL = 32768 +pkg syscall (netbsd-arm-cgo), const CREAD = 2048 +pkg syscall (netbsd-arm-cgo), const CS5 = 0 +pkg syscall (netbsd-arm-cgo), const CS6 = 256 +pkg syscall (netbsd-arm-cgo), const CS7 = 512 +pkg syscall (netbsd-arm-cgo), const CS8 = 768 +pkg syscall (netbsd-arm-cgo), const CSIZE = 768 +pkg syscall (netbsd-arm-cgo), const CSTART = 17 +pkg syscall (netbsd-arm-cgo), const CSTATUS = 20 +pkg syscall (netbsd-arm-cgo), const CSTOP = 19 +pkg syscall (netbsd-arm-cgo), const CSTOPB = 1024 +pkg syscall (netbsd-arm-cgo), const CSUSP = 26 +pkg syscall (netbsd-arm-cgo), const CTL_MAXNAME = 12 +pkg syscall (netbsd-arm-cgo), const CTL_NET = 4 +pkg syscall (netbsd-arm-cgo), const CTL_QUERY = -2 +pkg syscall (netbsd-arm-cgo), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-arm-cgo), const DLT_A429 = 184 +pkg syscall (netbsd-arm-cgo), const DLT_A653_ICM = 185 +pkg syscall (netbsd-arm-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-arm-cgo), const DLT_AOS = 222 +pkg syscall (netbsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-arm-cgo), const DLT_ARCNET = 7 +pkg syscall (netbsd-arm-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-arm-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-arm-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-arm-cgo), const DLT_AURORA = 126 +pkg syscall (netbsd-arm-cgo), const DLT_AX25 = 3 +pkg syscall (netbsd-arm-cgo), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-arm-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-arm-cgo), const DLT_CAN20B = 190 +pkg syscall (netbsd-arm-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-arm-cgo), const DLT_CHAOS = 5 +pkg syscall (netbsd-arm-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC = 104 +pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-arm-cgo), const DLT_DECT = 221 +pkg syscall (netbsd-arm-cgo), const DLT_DOCSIS = 143 +pkg syscall (netbsd-arm-cgo), const DLT_ECONET = 115 +pkg syscall (netbsd-arm-cgo), const DLT_EN10MB = 1 +pkg syscall (netbsd-arm-cgo), const DLT_EN3MB = 2 +pkg syscall (netbsd-arm-cgo), const DLT_ENC = 109 +pkg syscall (netbsd-arm-cgo), const DLT_ERF = 197 +pkg syscall (netbsd-arm-cgo), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-arm-cgo), const DLT_ERF_POS = 176 +pkg syscall (netbsd-arm-cgo), const DLT_FC_2 = 224 +pkg syscall (netbsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-arm-cgo), const DLT_FDDI = 10 +pkg syscall (netbsd-arm-cgo), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-arm-cgo), const DLT_FRELAY = 107 +pkg syscall (netbsd-arm-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-arm-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-arm-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-arm-cgo), const DLT_GPF_F = 171 +pkg syscall (netbsd-arm-cgo), const DLT_GPF_T = 170 +pkg syscall (netbsd-arm-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-arm-cgo), const DLT_HDLC = 16 +pkg syscall (netbsd-arm-cgo), const DLT_HHDLC = 121 +pkg syscall (netbsd-arm-cgo), const DLT_HIPPI = 15 +pkg syscall (netbsd-arm-cgo), const DLT_IBM_SN = 146 +pkg syscall (netbsd-arm-cgo), const DLT_IBM_SP = 145 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802 = 6 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-arm-cgo), const DLT_IPMB = 199 +pkg syscall (netbsd-arm-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-arm-cgo), const DLT_IPNET = 226 +pkg syscall (netbsd-arm-cgo), const DLT_IPV4 = 228 +pkg syscall (netbsd-arm-cgo), const DLT_IPV6 = 229 +pkg syscall (netbsd-arm-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-arm-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-arm-cgo), const DLT_LAPD = 203 +pkg syscall (netbsd-arm-cgo), const DLT_LIN = 212 +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-arm-cgo), const DLT_LOOP = 108 +pkg syscall (netbsd-arm-cgo), const DLT_LTALK = 114 +pkg syscall (netbsd-arm-cgo), const DLT_MFR = 182 +pkg syscall (netbsd-arm-cgo), const DLT_MOST = 211 +pkg syscall (netbsd-arm-cgo), const DLT_MPLS = 219 +pkg syscall (netbsd-arm-cgo), const DLT_MTP2 = 140 +pkg syscall (netbsd-arm-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-arm-cgo), const DLT_MTP3 = 141 +pkg syscall (netbsd-arm-cgo), const DLT_NULL = 0 +pkg syscall (netbsd-arm-cgo), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-arm-cgo), const DLT_PFLOG = 117 +pkg syscall (netbsd-arm-cgo), const DLT_PFSYNC = 18 +pkg syscall (netbsd-arm-cgo), const DLT_PPI = 192 +pkg syscall (netbsd-arm-cgo), const DLT_PPP = 9 +pkg syscall (netbsd-arm-cgo), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-arm-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-arm-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-arm-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-arm-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-arm-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-arm-cgo), const DLT_PRONET = 4 +pkg syscall (netbsd-arm-cgo), const DLT_RAIF1 = 198 +pkg syscall (netbsd-arm-cgo), const DLT_RAW = 12 +pkg syscall (netbsd-arm-cgo), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-arm-cgo), const DLT_RIO = 124 +pkg syscall (netbsd-arm-cgo), const DLT_SCCP = 142 +pkg syscall (netbsd-arm-cgo), const DLT_SITA = 196 +pkg syscall (netbsd-arm-cgo), const DLT_SLIP = 8 +pkg syscall (netbsd-arm-cgo), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-arm-cgo), const DLT_SUNATM = 123 +pkg syscall (netbsd-arm-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-arm-cgo), const DLT_TZSP = 128 +pkg syscall (netbsd-arm-cgo), const DLT_USB = 186 +pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-arm-cgo), const DLT_WIHART = 223 +pkg syscall (netbsd-arm-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-arm-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-arm-cgo), const DT_BLK = 6 +pkg syscall (netbsd-arm-cgo), const DT_CHR = 2 +pkg syscall (netbsd-arm-cgo), const DT_DIR = 4 +pkg syscall (netbsd-arm-cgo), const DT_FIFO = 1 +pkg syscall (netbsd-arm-cgo), const DT_LNK = 10 +pkg syscall (netbsd-arm-cgo), const DT_REG = 8 +pkg syscall (netbsd-arm-cgo), const DT_SOCK = 12 +pkg syscall (netbsd-arm-cgo), const DT_UNKNOWN = 0 +pkg syscall (netbsd-arm-cgo), const DT_WHT = 14 +pkg syscall (netbsd-arm-cgo), const E2BIG = 7 +pkg syscall (netbsd-arm-cgo), const EACCES = 13 +pkg syscall (netbsd-arm-cgo), const EADDRINUSE = 48 +pkg syscall (netbsd-arm-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-arm-cgo), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-arm-cgo), const EAGAIN = 35 +pkg syscall (netbsd-arm-cgo), const EALREADY = 37 +pkg syscall (netbsd-arm-cgo), const EAUTH = 80 +pkg syscall (netbsd-arm-cgo), const EBADF = 9 +pkg syscall (netbsd-arm-cgo), const EBADMSG = 88 +pkg syscall (netbsd-arm-cgo), const EBADRPC = 72 +pkg syscall (netbsd-arm-cgo), const EBUSY = 16 +pkg syscall (netbsd-arm-cgo), const ECANCELED = 87 +pkg syscall (netbsd-arm-cgo), const ECHILD = 10 +pkg syscall (netbsd-arm-cgo), const ECHO = 8 +pkg syscall (netbsd-arm-cgo), const ECHOCTL = 64 +pkg syscall (netbsd-arm-cgo), const ECHOE = 2 +pkg syscall (netbsd-arm-cgo), const ECHOK = 4 +pkg syscall (netbsd-arm-cgo), const ECHOKE = 1 +pkg syscall (netbsd-arm-cgo), const ECHONL = 16 +pkg syscall (netbsd-arm-cgo), const ECHOPRT = 32 +pkg syscall (netbsd-arm-cgo), const ECONNABORTED = 53 +pkg syscall (netbsd-arm-cgo), const ECONNREFUSED = 61 +pkg syscall (netbsd-arm-cgo), const ECONNRESET = 54 +pkg syscall (netbsd-arm-cgo), const EDEADLK = 11 +pkg syscall (netbsd-arm-cgo), const EDESTADDRREQ = 39 +pkg syscall (netbsd-arm-cgo), const EDOM = 33 +pkg syscall (netbsd-arm-cgo), const EDQUOT = 69 +pkg syscall (netbsd-arm-cgo), const EEXIST = 17 +pkg syscall (netbsd-arm-cgo), const EFAULT = 14 +pkg syscall (netbsd-arm-cgo), const EFBIG = 27 +pkg syscall (netbsd-arm-cgo), const EFTYPE = 79 +pkg syscall (netbsd-arm-cgo), const EHOSTDOWN = 64 +pkg syscall (netbsd-arm-cgo), const EHOSTUNREACH = 65 +pkg syscall (netbsd-arm-cgo), const EIDRM = 82 +pkg syscall (netbsd-arm-cgo), const EILSEQ = 85 +pkg syscall (netbsd-arm-cgo), const EINPROGRESS = 36 +pkg syscall (netbsd-arm-cgo), const EINTR = 4 +pkg syscall (netbsd-arm-cgo), const EINVAL = 22 +pkg syscall (netbsd-arm-cgo), const EIO = 5 +pkg syscall (netbsd-arm-cgo), const EISCONN = 56 +pkg syscall (netbsd-arm-cgo), const EISDIR = 21 +pkg syscall (netbsd-arm-cgo), const ELAST = 96 +pkg syscall (netbsd-arm-cgo), const ELOOP = 62 +pkg syscall (netbsd-arm-cgo), const EMFILE = 24 +pkg syscall (netbsd-arm-cgo), const EMLINK = 31 +pkg syscall (netbsd-arm-cgo), const EMSGSIZE = 40 +pkg syscall (netbsd-arm-cgo), const EMULTIHOP = 94 +pkg syscall (netbsd-arm-cgo), const EMUL_LINUX = 1 +pkg syscall (netbsd-arm-cgo), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-arm-cgo), const EMUL_MAXID = 6 +pkg syscall (netbsd-arm-cgo), const ENAMETOOLONG = 63 +pkg syscall (netbsd-arm-cgo), const ENEEDAUTH = 81 +pkg syscall (netbsd-arm-cgo), const ENETDOWN = 50 +pkg syscall (netbsd-arm-cgo), const ENETRESET = 52 +pkg syscall (netbsd-arm-cgo), const ENETUNREACH = 51 +pkg syscall (netbsd-arm-cgo), const ENFILE = 23 +pkg syscall (netbsd-arm-cgo), const ENOATTR = 93 +pkg syscall (netbsd-arm-cgo), const ENOBUFS = 55 +pkg syscall (netbsd-arm-cgo), const ENODATA = 89 +pkg syscall (netbsd-arm-cgo), const ENODEV = 19 +pkg syscall (netbsd-arm-cgo), const ENOEXEC = 8 +pkg syscall (netbsd-arm-cgo), const ENOLCK = 77 +pkg syscall (netbsd-arm-cgo), const ENOLINK = 95 +pkg syscall (netbsd-arm-cgo), const ENOMEM = 12 +pkg syscall (netbsd-arm-cgo), const ENOMSG = 83 +pkg syscall (netbsd-arm-cgo), const ENOPROTOOPT = 42 +pkg syscall (netbsd-arm-cgo), const ENOSPC = 28 +pkg syscall (netbsd-arm-cgo), const ENOSR = 90 +pkg syscall (netbsd-arm-cgo), const ENOSTR = 91 +pkg syscall (netbsd-arm-cgo), const ENOSYS = 78 +pkg syscall (netbsd-arm-cgo), const ENOTBLK = 15 +pkg syscall (netbsd-arm-cgo), const ENOTCONN = 57 +pkg syscall (netbsd-arm-cgo), const ENOTDIR = 20 +pkg syscall (netbsd-arm-cgo), const ENOTEMPTY = 66 +pkg syscall (netbsd-arm-cgo), const ENOTSOCK = 38 +pkg syscall (netbsd-arm-cgo), const ENOTSUP = 86 +pkg syscall (netbsd-arm-cgo), const ENOTTY = 25 +pkg syscall (netbsd-arm-cgo), const ENXIO = 6 +pkg syscall (netbsd-arm-cgo), const EOPNOTSUPP = 45 +pkg syscall (netbsd-arm-cgo), const EOVERFLOW = 84 +pkg syscall (netbsd-arm-cgo), const EPERM = 1 +pkg syscall (netbsd-arm-cgo), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-arm-cgo), const EPIPE = 32 +pkg syscall (netbsd-arm-cgo), const EPROCLIM = 67 +pkg syscall (netbsd-arm-cgo), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-arm-cgo), const EPROGMISMATCH = 75 +pkg syscall (netbsd-arm-cgo), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-arm-cgo), const EPROTO = 96 +pkg syscall (netbsd-arm-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-arm-cgo), const EPROTOTYPE = 41 +pkg syscall (netbsd-arm-cgo), const ERANGE = 34 +pkg syscall (netbsd-arm-cgo), const EREMOTE = 71 +pkg syscall (netbsd-arm-cgo), const EROFS = 30 +pkg syscall (netbsd-arm-cgo), const ERPCMISMATCH = 73 +pkg syscall (netbsd-arm-cgo), const ESHUTDOWN = 58 +pkg syscall (netbsd-arm-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-arm-cgo), const ESPIPE = 29 +pkg syscall (netbsd-arm-cgo), const ESRCH = 3 +pkg syscall (netbsd-arm-cgo), const ESTALE = 70 +pkg syscall (netbsd-arm-cgo), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-arm-cgo), const ETHERMIN = 46 +pkg syscall (netbsd-arm-cgo), const ETHERMTU = 1500 +pkg syscall (netbsd-arm-cgo), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-arm-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-arm-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-arm-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-arm-cgo), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-arm-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-arm-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-arm-cgo), const ETIME = 92 +pkg syscall (netbsd-arm-cgo), const ETIMEDOUT = 60 +pkg syscall (netbsd-arm-cgo), const ETOOMANYREFS = 59 +pkg syscall (netbsd-arm-cgo), const ETXTBSY = 26 +pkg syscall (netbsd-arm-cgo), const EUSERS = 68 +pkg syscall (netbsd-arm-cgo), const EVFILT_AIO = 2 +pkg syscall (netbsd-arm-cgo), const EVFILT_PROC = 4 +pkg syscall (netbsd-arm-cgo), const EVFILT_READ = 0 +pkg syscall (netbsd-arm-cgo), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-arm-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-arm-cgo), const EVFILT_TIMER = 6 +pkg syscall (netbsd-arm-cgo), const EVFILT_VNODE = 3 +pkg syscall (netbsd-arm-cgo), const EVFILT_WRITE = 1 +pkg syscall (netbsd-arm-cgo), const EV_ADD = 1 +pkg syscall (netbsd-arm-cgo), const EV_CLEAR = 32 +pkg syscall (netbsd-arm-cgo), const EV_DELETE = 2 +pkg syscall (netbsd-arm-cgo), const EV_DISABLE = 8 +pkg syscall (netbsd-arm-cgo), const EV_ENABLE = 4 +pkg syscall (netbsd-arm-cgo), const EV_EOF = 32768 +pkg syscall (netbsd-arm-cgo), const EV_ERROR = 16384 +pkg syscall (netbsd-arm-cgo), const EV_FLAG1 = 8192 +pkg syscall (netbsd-arm-cgo), const EV_ONESHOT = 16 +pkg syscall (netbsd-arm-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-arm-cgo), const EWOULDBLOCK = 35 +pkg syscall (netbsd-arm-cgo), const EXDEV = 18 +pkg syscall (netbsd-arm-cgo), const EXTA = 19200 +pkg syscall (netbsd-arm-cgo), const EXTB = 38400 +pkg syscall (netbsd-arm-cgo), const EXTPROC = 2048 +pkg syscall (netbsd-arm-cgo), const FD_CLOEXEC = 1 +pkg syscall (netbsd-arm-cgo), const FD_SETSIZE = 256 +pkg syscall (netbsd-arm-cgo), const FLUSHO = 8388608 +pkg syscall (netbsd-arm-cgo), const F_CLOSEM = 10 +pkg syscall (netbsd-arm-cgo), const F_DUPFD = 0 +pkg syscall (netbsd-arm-cgo), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-arm-cgo), const F_FSCTL = -2147483648 +pkg syscall (netbsd-arm-cgo), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-arm-cgo), const F_FSIN = 268435456 +pkg syscall (netbsd-arm-cgo), const F_FSINOUT = 805306368 +pkg syscall (netbsd-arm-cgo), const F_FSOUT = 536870912 +pkg syscall (netbsd-arm-cgo), const F_FSPRIV = 32768 +pkg syscall (netbsd-arm-cgo), const F_FSVOID = 1073741824 +pkg syscall (netbsd-arm-cgo), const F_GETFD = 1 +pkg syscall (netbsd-arm-cgo), const F_GETFL = 3 +pkg syscall (netbsd-arm-cgo), const F_GETLK = 7 +pkg syscall (netbsd-arm-cgo), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-arm-cgo), const F_GETOWN = 5 +pkg syscall (netbsd-arm-cgo), const F_MAXFD = 11 +pkg syscall (netbsd-arm-cgo), const F_OK = 0 +pkg syscall (netbsd-arm-cgo), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-arm-cgo), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-arm-cgo), const F_RDLCK = 1 +pkg syscall (netbsd-arm-cgo), const F_SETFD = 2 +pkg syscall (netbsd-arm-cgo), const F_SETFL = 4 +pkg syscall (netbsd-arm-cgo), const F_SETLK = 8 +pkg syscall (netbsd-arm-cgo), const F_SETLKW = 9 +pkg syscall (netbsd-arm-cgo), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-arm-cgo), const F_SETOWN = 6 +pkg syscall (netbsd-arm-cgo), const F_UNLCK = 2 +pkg syscall (netbsd-arm-cgo), const F_WRLCK = 3 +pkg syscall (netbsd-arm-cgo), const HUPCL = 16384 +pkg syscall (netbsd-arm-cgo), const ICANON = 256 +pkg syscall (netbsd-arm-cgo), const ICRNL = 256 +pkg syscall (netbsd-arm-cgo), const IEXTEN = 1024 +pkg syscall (netbsd-arm-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-arm-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-arm-cgo), const IFA_ROUTE = 1 +pkg syscall (netbsd-arm-cgo), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-arm-cgo), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-arm-cgo), const IFF_DEBUG = 4 +pkg syscall (netbsd-arm-cgo), const IFF_LINK0 = 4096 +pkg syscall (netbsd-arm-cgo), const IFF_LINK1 = 8192 +pkg syscall (netbsd-arm-cgo), const IFF_LINK2 = 16384 +pkg syscall (netbsd-arm-cgo), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-arm-cgo), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-arm-cgo), const IFF_NOARP = 128 +pkg syscall (netbsd-arm-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-arm-cgo), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-arm-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-arm-cgo), const IFF_PROMISC = 256 +pkg syscall (netbsd-arm-cgo), const IFF_RUNNING = 64 +pkg syscall (netbsd-arm-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-arm-cgo), const IFNAMSIZ = 16 +pkg syscall (netbsd-arm-cgo), const IFT_1822 = 2 +pkg syscall (netbsd-arm-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-arm-cgo), const IFT_AAL2 = 187 +pkg syscall (netbsd-arm-cgo), const IFT_AAL5 = 49 +pkg syscall (netbsd-arm-cgo), const IFT_ADSL = 94 +pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-arm-cgo), const IFT_ARAP = 88 +pkg syscall (netbsd-arm-cgo), const IFT_ARCNET = 35 +pkg syscall (netbsd-arm-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-arm-cgo), const IFT_ASYNC = 84 +pkg syscall (netbsd-arm-cgo), const IFT_ATM = 37 +pkg syscall (netbsd-arm-cgo), const IFT_ATMDXI = 105 +pkg syscall (netbsd-arm-cgo), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-arm-cgo), const IFT_ATMIMA = 107 +pkg syscall (netbsd-arm-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-arm-cgo), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-arm-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-arm-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-arm-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-arm-cgo), const IFT_BRIDGE = 209 +pkg syscall (netbsd-arm-cgo), const IFT_BSC = 83 +pkg syscall (netbsd-arm-cgo), const IFT_CARP = 248 +pkg syscall (netbsd-arm-cgo), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-arm-cgo), const IFT_CEPT = 19 +pkg syscall (netbsd-arm-cgo), const IFT_CES = 133 +pkg syscall (netbsd-arm-cgo), const IFT_CHANNEL = 70 +pkg syscall (netbsd-arm-cgo), const IFT_CNR = 85 +pkg syscall (netbsd-arm-cgo), const IFT_COFFEE = 132 +pkg syscall (netbsd-arm-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-arm-cgo), const IFT_DCN = 141 +pkg syscall (netbsd-arm-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-arm-cgo), const IFT_DLSW = 74 +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-arm-cgo), const IFT_DS0 = 81 +pkg syscall (netbsd-arm-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-arm-cgo), const IFT_DS1FDL = 170 +pkg syscall (netbsd-arm-cgo), const IFT_DS3 = 30 +pkg syscall (netbsd-arm-cgo), const IFT_DTM = 140 +pkg syscall (netbsd-arm-cgo), const IFT_DVBASILN = 172 +pkg syscall (netbsd-arm-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-arm-cgo), const IFT_ECONET = 206 +pkg syscall (netbsd-arm-cgo), const IFT_EON = 25 +pkg syscall (netbsd-arm-cgo), const IFT_EPLRS = 87 +pkg syscall (netbsd-arm-cgo), const IFT_ESCON = 73 +pkg syscall (netbsd-arm-cgo), const IFT_ETHER = 6 +pkg syscall (netbsd-arm-cgo), const IFT_FAITH = 242 +pkg syscall (netbsd-arm-cgo), const IFT_FAST = 125 +pkg syscall (netbsd-arm-cgo), const IFT_FASTETHER = 62 +pkg syscall (netbsd-arm-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-arm-cgo), const IFT_FDDI = 15 +pkg syscall (netbsd-arm-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-arm-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-arm-cgo), const IFT_FRELAY = 32 +pkg syscall (netbsd-arm-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-arm-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-arm-cgo), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-arm-cgo), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-arm-cgo), const IFT_G703AT64K = 66 +pkg syscall (netbsd-arm-cgo), const IFT_GIF = 240 +pkg syscall (netbsd-arm-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-arm-cgo), const IFT_GR303IDT = 178 +pkg syscall (netbsd-arm-cgo), const IFT_GR303RDT = 177 +pkg syscall (netbsd-arm-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-arm-cgo), const IFT_H323PROXY = 165 +pkg syscall (netbsd-arm-cgo), const IFT_HDH1822 = 3 +pkg syscall (netbsd-arm-cgo), const IFT_HDLC = 118 +pkg syscall (netbsd-arm-cgo), const IFT_HDSL2 = 168 +pkg syscall (netbsd-arm-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-arm-cgo), const IFT_HIPPI = 47 +pkg syscall (netbsd-arm-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-arm-cgo), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-arm-cgo), const IFT_HSSI = 46 +pkg syscall (netbsd-arm-cgo), const IFT_HY = 14 +pkg syscall (netbsd-arm-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-arm-cgo), const IFT_IDSL = 154 +pkg syscall (netbsd-arm-cgo), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-arm-cgo), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-arm-cgo), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-arm-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-arm-cgo), const IFT_IFGSN = 145 +pkg syscall (netbsd-arm-cgo), const IFT_IMT = 190 +pkg syscall (netbsd-arm-cgo), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-arm-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-arm-cgo), const IFT_IP = 126 +pkg syscall (netbsd-arm-cgo), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-arm-cgo), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-arm-cgo), const IFT_ISDN = 63 +pkg syscall (netbsd-arm-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-arm-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-arm-cgo), const IFT_ISDNS = 75 +pkg syscall (netbsd-arm-cgo), const IFT_ISDNU = 76 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88023 = 7 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88024 = 8 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025 = 9 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-arm-cgo), const IFT_ISO88026 = 10 +pkg syscall (netbsd-arm-cgo), const IFT_ISUP = 179 +pkg syscall (netbsd-arm-cgo), const IFT_L2VLAN = 135 +pkg syscall (netbsd-arm-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-arm-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-arm-cgo), const IFT_LAPB = 16 +pkg syscall (netbsd-arm-cgo), const IFT_LAPD = 77 +pkg syscall (netbsd-arm-cgo), const IFT_LAPF = 119 +pkg syscall (netbsd-arm-cgo), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-arm-cgo), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-arm-cgo), const IFT_LOOP = 24 +pkg syscall (netbsd-arm-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-arm-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-arm-cgo), const IFT_MIOX25 = 38 +pkg syscall (netbsd-arm-cgo), const IFT_MODEM = 48 +pkg syscall (netbsd-arm-cgo), const IFT_MPC = 113 +pkg syscall (netbsd-arm-cgo), const IFT_MPLS = 166 +pkg syscall (netbsd-arm-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-arm-cgo), const IFT_MSDSL = 143 +pkg syscall (netbsd-arm-cgo), const IFT_MVL = 191 +pkg syscall (netbsd-arm-cgo), const IFT_MYRINET = 99 +pkg syscall (netbsd-arm-cgo), const IFT_NFAS = 175 +pkg syscall (netbsd-arm-cgo), const IFT_NSIP = 27 +pkg syscall (netbsd-arm-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-arm-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-arm-cgo), const IFT_OTHER = 1 +pkg syscall (netbsd-arm-cgo), const IFT_P10 = 12 +pkg syscall (netbsd-arm-cgo), const IFT_P80 = 13 +pkg syscall (netbsd-arm-cgo), const IFT_PARA = 34 +pkg syscall (netbsd-arm-cgo), const IFT_PFLOG = 245 +pkg syscall (netbsd-arm-cgo), const IFT_PFSYNC = 246 +pkg syscall (netbsd-arm-cgo), const IFT_PLC = 174 +pkg syscall (netbsd-arm-cgo), const IFT_PON155 = 207 +pkg syscall (netbsd-arm-cgo), const IFT_PON622 = 208 +pkg syscall (netbsd-arm-cgo), const IFT_POS = 171 +pkg syscall (netbsd-arm-cgo), const IFT_PPP = 23 +pkg syscall (netbsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-arm-cgo), const IFT_PROPATM = 197 +pkg syscall (netbsd-arm-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-arm-cgo), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-arm-cgo), const IFT_PROPMUX = 54 +pkg syscall (netbsd-arm-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-arm-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-arm-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-arm-cgo), const IFT_PVC = 241 +pkg syscall (netbsd-arm-cgo), const IFT_Q2931 = 201 +pkg syscall (netbsd-arm-cgo), const IFT_QLLC = 68 +pkg syscall (netbsd-arm-cgo), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-arm-cgo), const IFT_RADSL = 95 +pkg syscall (netbsd-arm-cgo), const IFT_REACHDSL = 192 +pkg syscall (netbsd-arm-cgo), const IFT_RFC1483 = 159 +pkg syscall (netbsd-arm-cgo), const IFT_RS232 = 33 +pkg syscall (netbsd-arm-cgo), const IFT_RSRB = 79 +pkg syscall (netbsd-arm-cgo), const IFT_SDLC = 17 +pkg syscall (netbsd-arm-cgo), const IFT_SDSL = 96 +pkg syscall (netbsd-arm-cgo), const IFT_SHDSL = 169 +pkg syscall (netbsd-arm-cgo), const IFT_SIP = 31 +pkg syscall (netbsd-arm-cgo), const IFT_SIPSIG = 204 +pkg syscall (netbsd-arm-cgo), const IFT_SIPTG = 203 +pkg syscall (netbsd-arm-cgo), const IFT_SLIP = 28 +pkg syscall (netbsd-arm-cgo), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-arm-cgo), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-arm-cgo), const IFT_SONET = 39 +pkg syscall (netbsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-arm-cgo), const IFT_SONETPATH = 50 +pkg syscall (netbsd-arm-cgo), const IFT_SONETVT = 51 +pkg syscall (netbsd-arm-cgo), const IFT_SRP = 151 +pkg syscall (netbsd-arm-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-arm-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-arm-cgo), const IFT_STARLAN = 11 +pkg syscall (netbsd-arm-cgo), const IFT_STF = 215 +pkg syscall (netbsd-arm-cgo), const IFT_T1 = 18 +pkg syscall (netbsd-arm-cgo), const IFT_TDLC = 116 +pkg syscall (netbsd-arm-cgo), const IFT_TELINK = 200 +pkg syscall (netbsd-arm-cgo), const IFT_TERMPAD = 91 +pkg syscall (netbsd-arm-cgo), const IFT_TR008 = 176 +pkg syscall (netbsd-arm-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-arm-cgo), const IFT_TUNNEL = 131 +pkg syscall (netbsd-arm-cgo), const IFT_ULTRA = 29 +pkg syscall (netbsd-arm-cgo), const IFT_USB = 160 +pkg syscall (netbsd-arm-cgo), const IFT_V11 = 64 +pkg syscall (netbsd-arm-cgo), const IFT_V35 = 45 +pkg syscall (netbsd-arm-cgo), const IFT_V36 = 65 +pkg syscall (netbsd-arm-cgo), const IFT_V37 = 120 +pkg syscall (netbsd-arm-cgo), const IFT_VDSL = 97 +pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEDID = 213 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEEM = 100 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-arm-cgo), const IFT_X213 = 93 +pkg syscall (netbsd-arm-cgo), const IFT_X25 = 5 +pkg syscall (netbsd-arm-cgo), const IFT_X25DDN = 4 +pkg syscall (netbsd-arm-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-arm-cgo), const IFT_X25MLP = 121 +pkg syscall (netbsd-arm-cgo), const IFT_X25PLE = 40 +pkg syscall (netbsd-arm-cgo), const IFT_XETHER = 26 +pkg syscall (netbsd-arm-cgo), const IGNBRK = 1 +pkg syscall (netbsd-arm-cgo), const IGNCR = 128 +pkg syscall (netbsd-arm-cgo), const IGNPAR = 4 +pkg syscall (netbsd-arm-cgo), const IMAXBEL = 8192 +pkg syscall (netbsd-arm-cgo), const INLCR = 64 +pkg syscall (netbsd-arm-cgo), const INPCK = 16 +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-arm-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-arm-cgo), const IPPROTO_AH = 51 +pkg syscall (netbsd-arm-cgo), const IPPROTO_CARP = 112 +pkg syscall (netbsd-arm-cgo), const IPPROTO_DONE = 257 +pkg syscall (netbsd-arm-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-arm-cgo), const IPPROTO_EGP = 8 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-arm-cgo), const IPPROTO_EON = 80 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ESP = 50 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-arm-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-arm-cgo), const IPPROTO_GGP = 3 +pkg syscall (netbsd-arm-cgo), const IPPROTO_GRE = 47 +pkg syscall (netbsd-arm-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IDP = 22 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-arm-cgo), const IPPROTO_MAX = 256 +pkg syscall (netbsd-arm-cgo), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-arm-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-arm-cgo), const IPPROTO_NONE = 59 +pkg syscall (netbsd-arm-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-arm-cgo), const IPPROTO_PIM = 103 +pkg syscall (netbsd-arm-cgo), const IPPROTO_PUP = 12 +pkg syscall (netbsd-arm-cgo), const IPPROTO_RAW = 255 +pkg syscall (netbsd-arm-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-arm-cgo), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-arm-cgo), const IPPROTO_TP = 29 +pkg syscall (netbsd-arm-cgo), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-arm-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-arm-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-arm-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-arm-cgo), const IPV6_FAITH = 29 +pkg syscall (netbsd-arm-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-arm-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-arm-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-arm-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-arm-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-arm-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-arm-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-arm-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-arm-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-arm-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-arm-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-arm-cgo), const IPV6_MMTU = 1280 +pkg syscall (netbsd-arm-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-arm-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-arm-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-arm-cgo), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-arm-cgo), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-arm-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR = 51 +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-arm-cgo), const IPV6_TCLASS = 61 +pkg syscall (netbsd-arm-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-arm-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-arm-cgo), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-arm-cgo), const IPV6_VERSION = 96 +pkg syscall (netbsd-arm-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-arm-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-arm-cgo), const IP_DF = 16384 +pkg syscall (netbsd-arm-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-arm-cgo), const IP_EF = 32768 +pkg syscall (netbsd-arm-cgo), const IP_ERRORMTU = 21 +pkg syscall (netbsd-arm-cgo), const IP_HDRINCL = 2 +pkg syscall (netbsd-arm-cgo), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-arm-cgo), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-arm-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-arm-cgo), const IP_MF = 8192 +pkg syscall (netbsd-arm-cgo), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-arm-cgo), const IP_MINTTL = 24 +pkg syscall (netbsd-arm-cgo), const IP_MSS = 576 +pkg syscall (netbsd-arm-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-arm-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-arm-cgo), const IP_OFFMASK = 8191 +pkg syscall (netbsd-arm-cgo), const IP_OPTIONS = 1 +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE = 19 +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-arm-cgo), const IP_RECVIF = 20 +pkg syscall (netbsd-arm-cgo), const IP_RECVOPTS = 5 +pkg syscall (netbsd-arm-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-arm-cgo), const IP_RECVTTL = 23 +pkg syscall (netbsd-arm-cgo), const IP_RETOPTS = 8 +pkg syscall (netbsd-arm-cgo), const IP_RF = 32768 +pkg syscall (netbsd-arm-cgo), const IP_TOS = 3 +pkg syscall (netbsd-arm-cgo), const IP_TTL = 4 +pkg syscall (netbsd-arm-cgo), const ISIG = 128 +pkg syscall (netbsd-arm-cgo), const ISTRIP = 32 +pkg syscall (netbsd-arm-cgo), const IXANY = 2048 +pkg syscall (netbsd-arm-cgo), const IXOFF = 1024 +pkg syscall (netbsd-arm-cgo), const IXON = 512 +pkg syscall (netbsd-arm-cgo), const ImplementsGetwd = false +pkg syscall (netbsd-arm-cgo), const LOCK_EX = 2 +pkg syscall (netbsd-arm-cgo), const LOCK_NB = 4 +pkg syscall (netbsd-arm-cgo), const LOCK_SH = 1 +pkg syscall (netbsd-arm-cgo), const LOCK_UN = 8 +pkg syscall (netbsd-arm-cgo), const MSG_BCAST = 256 +pkg syscall (netbsd-arm-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-arm-cgo), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-arm-cgo), const MSG_CTRUNC = 32 +pkg syscall (netbsd-arm-cgo), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-arm-cgo), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-arm-cgo), const MSG_EOR = 8 +pkg syscall (netbsd-arm-cgo), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-arm-cgo), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-arm-cgo), const MSG_MCAST = 512 +pkg syscall (netbsd-arm-cgo), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-arm-cgo), const MSG_NBIO = 4096 +pkg syscall (netbsd-arm-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-arm-cgo), const MSG_OOB = 1 +pkg syscall (netbsd-arm-cgo), const MSG_PEEK = 2 +pkg syscall (netbsd-arm-cgo), const MSG_TRUNC = 16 +pkg syscall (netbsd-arm-cgo), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-arm-cgo), const MSG_WAITALL = 64 +pkg syscall (netbsd-arm-cgo), const NAME_MAX = 511 +pkg syscall (netbsd-arm-cgo), const NET_RT_DUMP = 1 +pkg syscall (netbsd-arm-cgo), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-arm-cgo), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-arm-cgo), const NET_RT_MAXID = 6 +pkg syscall (netbsd-arm-cgo), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-arm-cgo), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-arm-cgo), const NOFLSH = 2147483648 +pkg syscall (netbsd-arm-cgo), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-arm-cgo), const NOTE_CHILD = 4 +pkg syscall (netbsd-arm-cgo), const NOTE_DELETE = 1 +pkg syscall (netbsd-arm-cgo), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-arm-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-arm-cgo), const NOTE_EXTEND = 4 +pkg syscall (netbsd-arm-cgo), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-arm-cgo), const NOTE_LINK = 16 +pkg syscall (netbsd-arm-cgo), const NOTE_LOWAT = 1 +pkg syscall (netbsd-arm-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-arm-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-arm-cgo), const NOTE_RENAME = 32 +pkg syscall (netbsd-arm-cgo), const NOTE_REVOKE = 64 +pkg syscall (netbsd-arm-cgo), const NOTE_TRACK = 1 +pkg syscall (netbsd-arm-cgo), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-arm-cgo), const NOTE_WRITE = 2 +pkg syscall (netbsd-arm-cgo), const OCRNL = 16 +pkg syscall (netbsd-arm-cgo), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-arm-cgo), const ONLCR = 2 +pkg syscall (netbsd-arm-cgo), const ONLRET = 64 +pkg syscall (netbsd-arm-cgo), const ONOCR = 32 +pkg syscall (netbsd-arm-cgo), const ONOEOT = 8 +pkg syscall (netbsd-arm-cgo), const OPOST = 1 +pkg syscall (netbsd-arm-cgo), const O_ACCMODE = 3 +pkg syscall (netbsd-arm-cgo), const O_ALT_IO = 262144 +pkg syscall (netbsd-arm-cgo), const O_APPEND = 8 +pkg syscall (netbsd-arm-cgo), const O_ASYNC = 64 +pkg syscall (netbsd-arm-cgo), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-arm-cgo), const O_CREAT = 512 +pkg syscall (netbsd-arm-cgo), const O_DIRECT = 524288 +pkg syscall (netbsd-arm-cgo), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-arm-cgo), const O_DSYNC = 65536 +pkg syscall (netbsd-arm-cgo), const O_EXCL = 2048 +pkg syscall (netbsd-arm-cgo), const O_EXLOCK = 32 +pkg syscall (netbsd-arm-cgo), const O_FSYNC = 128 +pkg syscall (netbsd-arm-cgo), const O_NDELAY = 4 +pkg syscall (netbsd-arm-cgo), const O_NOCTTY = 32768 +pkg syscall (netbsd-arm-cgo), const O_NOFOLLOW = 256 +pkg syscall (netbsd-arm-cgo), const O_NONBLOCK = 4 +pkg syscall (netbsd-arm-cgo), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-arm-cgo), const O_RSYNC = 131072 +pkg syscall (netbsd-arm-cgo), const O_SHLOCK = 16 +pkg syscall (netbsd-arm-cgo), const O_SYNC = 128 +pkg syscall (netbsd-arm-cgo), const O_TRUNC = 1024 +pkg syscall (netbsd-arm-cgo), const PARENB = 4096 +pkg syscall (netbsd-arm-cgo), const PARMRK = 8 +pkg syscall (netbsd-arm-cgo), const PARODD = 8192 +pkg syscall (netbsd-arm-cgo), const PENDIN = 536870912 +pkg syscall (netbsd-arm-cgo), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-arm-cgo), const PTRACE_CONT = 7 +pkg syscall (netbsd-arm-cgo), const PTRACE_KILL = 8 +pkg syscall (netbsd-arm-cgo), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-arm-cgo), const RLIMIT_AS = 10 +pkg syscall (netbsd-arm-cgo), const RLIMIT_CORE = 4 +pkg syscall (netbsd-arm-cgo), const RLIMIT_CPU = 0 +pkg syscall (netbsd-arm-cgo), const RLIMIT_DATA = 2 +pkg syscall (netbsd-arm-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-arm-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-arm-cgo), const RLIMIT_STACK = 3 +pkg syscall (netbsd-arm-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-arm-cgo), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-arm-cgo), const RTAX_BRD = 7 +pkg syscall (netbsd-arm-cgo), const RTAX_DST = 0 +pkg syscall (netbsd-arm-cgo), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-arm-cgo), const RTAX_GENMASK = 3 +pkg syscall (netbsd-arm-cgo), const RTAX_IFA = 5 +pkg syscall (netbsd-arm-cgo), const RTAX_IFP = 4 +pkg syscall (netbsd-arm-cgo), const RTAX_MAX = 9 +pkg syscall (netbsd-arm-cgo), const RTAX_NETMASK = 2 +pkg syscall (netbsd-arm-cgo), const RTAX_TAG = 8 +pkg syscall (netbsd-arm-cgo), const RTA_AUTHOR = 64 +pkg syscall (netbsd-arm-cgo), const RTA_BRD = 128 +pkg syscall (netbsd-arm-cgo), const RTA_DST = 1 +pkg syscall (netbsd-arm-cgo), const RTA_GATEWAY = 2 +pkg syscall (netbsd-arm-cgo), const RTA_GENMASK = 8 +pkg syscall (netbsd-arm-cgo), const RTA_IFA = 32 +pkg syscall (netbsd-arm-cgo), const RTA_IFP = 16 +pkg syscall (netbsd-arm-cgo), const RTA_NETMASK = 4 +pkg syscall (netbsd-arm-cgo), const RTA_TAG = 256 +pkg syscall (netbsd-arm-cgo), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-arm-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-arm-cgo), const RTF_CLONED = 8192 +pkg syscall (netbsd-arm-cgo), const RTF_CLONING = 256 +pkg syscall (netbsd-arm-cgo), const RTF_DONE = 64 +pkg syscall (netbsd-arm-cgo), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-arm-cgo), const RTF_GATEWAY = 2 +pkg syscall (netbsd-arm-cgo), const RTF_HOST = 4 +pkg syscall (netbsd-arm-cgo), const RTF_LLINFO = 1024 +pkg syscall (netbsd-arm-cgo), const RTF_MASK = 128 +pkg syscall (netbsd-arm-cgo), const RTF_MODIFIED = 32 +pkg syscall (netbsd-arm-cgo), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-arm-cgo), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-arm-cgo), const RTF_REJECT = 8 +pkg syscall (netbsd-arm-cgo), const RTF_SRC = 65536 +pkg syscall (netbsd-arm-cgo), const RTF_STATIC = 2048 +pkg syscall (netbsd-arm-cgo), const RTF_UP = 1 +pkg syscall (netbsd-arm-cgo), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-arm-cgo), const RTM_ADD = 1 +pkg syscall (netbsd-arm-cgo), const RTM_CHANGE = 3 +pkg syscall (netbsd-arm-cgo), const RTM_CHGADDR = 21 +pkg syscall (netbsd-arm-cgo), const RTM_DELADDR = 13 +pkg syscall (netbsd-arm-cgo), const RTM_DELETE = 2 +pkg syscall (netbsd-arm-cgo), const RTM_GET = 4 +pkg syscall (netbsd-arm-cgo), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-arm-cgo), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-arm-cgo), const RTM_IFINFO = 20 +pkg syscall (netbsd-arm-cgo), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-arm-cgo), const RTM_LOCK = 8 +pkg syscall (netbsd-arm-cgo), const RTM_LOSING = 5 +pkg syscall (netbsd-arm-cgo), const RTM_MISS = 7 +pkg syscall (netbsd-arm-cgo), const RTM_NEWADDR = 12 +pkg syscall (netbsd-arm-cgo), const RTM_OIFINFO = 15 +pkg syscall (netbsd-arm-cgo), const RTM_OLDADD = 9 +pkg syscall (netbsd-arm-cgo), const RTM_OLDDEL = 10 +pkg syscall (netbsd-arm-cgo), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-arm-cgo), const RTM_REDIRECT = 6 +pkg syscall (netbsd-arm-cgo), const RTM_RESOLVE = 11 +pkg syscall (netbsd-arm-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-arm-cgo), const RTM_SETGATE = 18 +pkg syscall (netbsd-arm-cgo), const RTM_VERSION = 4 +pkg syscall (netbsd-arm-cgo), const RTV_EXPIRE = 4 +pkg syscall (netbsd-arm-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-arm-cgo), const RTV_MTU = 1 +pkg syscall (netbsd-arm-cgo), const RTV_RPIPE = 8 +pkg syscall (netbsd-arm-cgo), const RTV_RTT = 64 +pkg syscall (netbsd-arm-cgo), const RTV_RTTVAR = 128 +pkg syscall (netbsd-arm-cgo), const RTV_SPIPE = 16 +pkg syscall (netbsd-arm-cgo), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-arm-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-arm-cgo), const RUSAGE_SELF = 0 +pkg syscall (netbsd-arm-cgo), const SCM_CREDS = 4 +pkg syscall (netbsd-arm-cgo), const SCM_RIGHTS = 1 +pkg syscall (netbsd-arm-cgo), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-arm-cgo), const SIGBUS = 10 +pkg syscall (netbsd-arm-cgo), const SIGCHLD = 20 +pkg syscall (netbsd-arm-cgo), const SIGCONT = 19 +pkg syscall (netbsd-arm-cgo), const SIGEMT = 7 +pkg syscall (netbsd-arm-cgo), const SIGINFO = 29 +pkg syscall (netbsd-arm-cgo), const SIGIO = 23 +pkg syscall (netbsd-arm-cgo), const SIGIOT = 6 +pkg syscall (netbsd-arm-cgo), const SIGPROF = 27 +pkg syscall (netbsd-arm-cgo), const SIGPWR = 32 +pkg syscall (netbsd-arm-cgo), const SIGSTOP = 17 +pkg syscall (netbsd-arm-cgo), const SIGSYS = 12 +pkg syscall (netbsd-arm-cgo), const SIGTSTP = 18 +pkg syscall (netbsd-arm-cgo), const SIGTTIN = 21 +pkg syscall (netbsd-arm-cgo), const SIGTTOU = 22 +pkg syscall (netbsd-arm-cgo), const SIGURG = 16 +pkg syscall (netbsd-arm-cgo), const SIGUSR1 = 30 +pkg syscall (netbsd-arm-cgo), const SIGUSR2 = 31 +pkg syscall (netbsd-arm-cgo), const SIGVTALRM = 26 +pkg syscall (netbsd-arm-cgo), const SIGWINCH = 28 +pkg syscall (netbsd-arm-cgo), const SIGXCPU = 24 +pkg syscall (netbsd-arm-cgo), const SIGXFSZ = 25 +pkg syscall (netbsd-arm-cgo), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-arm-cgo), const SIOCADDRT = 2150658570 +pkg syscall (netbsd-arm-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-arm-cgo), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-arm-cgo), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-arm-cgo), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-arm-cgo), const SIOCDELRT = 2150658571 +pkg syscall (netbsd-arm-cgo), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-arm-cgo), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-arm-cgo), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-arm-cgo), const SIOCGDRVSPEC = 3223087483 +pkg syscall (netbsd-arm-cgo), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-arm-cgo), const SIOCGETSGCNT = 3222566196 +pkg syscall (netbsd-arm-cgo), const SIOCGETVIFCNT = 3222566195 +pkg syscall (netbsd-arm-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-arm-cgo), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-arm-cgo), const SIOCGIFADDRPREF = 3230951712 +pkg syscall (netbsd-arm-cgo), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-arm-cgo), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-arm-cgo), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-arm-cgo), const SIOCGIFCONF = 3221776678 +pkg syscall (netbsd-arm-cgo), const SIOCGIFDATA = 3230951813 +pkg syscall (netbsd-arm-cgo), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-arm-cgo), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-arm-cgo), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-arm-cgo), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-arm-cgo), const SIOCGIFMEDIA = 3223873846 +pkg syscall (netbsd-arm-cgo), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-arm-cgo), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-arm-cgo), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-arm-cgo), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-arm-cgo), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-arm-cgo), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-arm-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-arm-cgo), const SIOCGLINKSTR = 3223087495 +pkg syscall (netbsd-arm-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-arm-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-arm-cgo), const SIOCGVH = 3230689667 +pkg syscall (netbsd-arm-cgo), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-arm-cgo), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-arm-cgo), const SIOCIFGCLONERS = 3222038904 +pkg syscall (netbsd-arm-cgo), const SIOCINITIFADDR = 3225708932 +pkg syscall (netbsd-arm-cgo), const SIOCSDRVSPEC = 2149345659 +pkg syscall (netbsd-arm-cgo), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-arm-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-arm-cgo), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-arm-cgo), const SIOCSIFADDRPREF = 2157209887 +pkg syscall (netbsd-arm-cgo), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-arm-cgo), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-arm-cgo), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-arm-cgo), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-arm-cgo), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-arm-cgo), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-arm-cgo), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-arm-cgo), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-arm-cgo), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-arm-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-arm-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-arm-cgo), const SIOCSLINKSTR = 2149345672 +pkg syscall (netbsd-arm-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-arm-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-arm-cgo), const SIOCSVH = 3230689666 +pkg syscall (netbsd-arm-cgo), const SIOCZIFDATA = 3230951814 +pkg syscall (netbsd-arm-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-arm-cgo), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-arm-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-arm-cgo), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-arm-cgo), const SOCK_RDM = 4 +pkg syscall (netbsd-arm-cgo), const SOL_SOCKET = 65535 +pkg syscall (netbsd-arm-cgo), const SOMAXCONN = 128 +pkg syscall (netbsd-arm-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-arm-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-arm-cgo), const SO_BROADCAST = 32 +pkg syscall (netbsd-arm-cgo), const SO_DEBUG = 1 +pkg syscall (netbsd-arm-cgo), const SO_DONTROUTE = 16 +pkg syscall (netbsd-arm-cgo), const SO_ERROR = 4103 +pkg syscall (netbsd-arm-cgo), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-arm-cgo), const SO_LINGER = 128 +pkg syscall (netbsd-arm-cgo), const SO_NOHEADER = 4106 +pkg syscall (netbsd-arm-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-arm-cgo), const SO_OOBINLINE = 256 +pkg syscall (netbsd-arm-cgo), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-arm-cgo), const SO_RCVBUF = 4098 +pkg syscall (netbsd-arm-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-arm-cgo), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-arm-cgo), const SO_REUSEADDR = 4 +pkg syscall (netbsd-arm-cgo), const SO_REUSEPORT = 512 +pkg syscall (netbsd-arm-cgo), const SO_SNDBUF = 4097 +pkg syscall (netbsd-arm-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-arm-cgo), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-arm-cgo), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-arm-cgo), const SO_TYPE = 4104 +pkg syscall (netbsd-arm-cgo), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-arm-cgo), const SYS_ACCEPT = 30 +pkg syscall (netbsd-arm-cgo), const SYS_ACCESS = 33 +pkg syscall (netbsd-arm-cgo), const SYS_ACCT = 51 +pkg syscall (netbsd-arm-cgo), const SYS_ADJTIME = 421 +pkg syscall (netbsd-arm-cgo), const SYS_BIND = 104 +pkg syscall (netbsd-arm-cgo), const SYS_BREAK = 17 +pkg syscall (netbsd-arm-cgo), const SYS_CHDIR = 12 +pkg syscall (netbsd-arm-cgo), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-arm-cgo), const SYS_CHMOD = 15 +pkg syscall (netbsd-arm-cgo), const SYS_CHOWN = 16 +pkg syscall (netbsd-arm-cgo), const SYS_CHROOT = 61 +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-arm-cgo), const SYS_CLOSE = 6 +pkg syscall (netbsd-arm-cgo), const SYS_CONNECT = 98 +pkg syscall (netbsd-arm-cgo), const SYS_DUP = 41 +pkg syscall (netbsd-arm-cgo), const SYS_DUP2 = 90 +pkg syscall (netbsd-arm-cgo), const SYS_DUP3 = 454 +pkg syscall (netbsd-arm-cgo), const SYS_EXECVE = 59 +pkg syscall (netbsd-arm-cgo), const SYS_EXIT = 1 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-arm-cgo), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-arm-cgo), const SYS_FCHDIR = 13 +pkg syscall (netbsd-arm-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-arm-cgo), const SYS_FCHMOD = 124 +pkg syscall (netbsd-arm-cgo), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-arm-cgo), const SYS_FCHOWN = 123 +pkg syscall (netbsd-arm-cgo), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-arm-cgo), const SYS_FCHROOT = 297 +pkg syscall (netbsd-arm-cgo), const SYS_FCNTL = 92 +pkg syscall (netbsd-arm-cgo), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-arm-cgo), const SYS_FEXECVE = 465 +pkg syscall (netbsd-arm-cgo), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-arm-cgo), const SYS_FHSTAT = 451 +pkg syscall (netbsd-arm-cgo), const SYS_FKTRACE = 288 +pkg syscall (netbsd-arm-cgo), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-arm-cgo), const SYS_FLOCK = 131 +pkg syscall (netbsd-arm-cgo), const SYS_FORK = 2 +pkg syscall (netbsd-arm-cgo), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-arm-cgo), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-arm-cgo), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-arm-cgo), const SYS_FSTAT = 440 +pkg syscall (netbsd-arm-cgo), const SYS_FSTATAT = 466 +pkg syscall (netbsd-arm-cgo), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-arm-cgo), const SYS_FSYNC = 95 +pkg syscall (netbsd-arm-cgo), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-arm-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-arm-cgo), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-arm-cgo), const SYS_FUTIMES = 423 +pkg syscall (netbsd-arm-cgo), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-arm-cgo), const SYS_GETDENTS = 390 +pkg syscall (netbsd-arm-cgo), const SYS_GETEGID = 43 +pkg syscall (netbsd-arm-cgo), const SYS_GETEUID = 25 +pkg syscall (netbsd-arm-cgo), const SYS_GETFH = 395 +pkg syscall (netbsd-arm-cgo), const SYS_GETGID = 47 +pkg syscall (netbsd-arm-cgo), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-arm-cgo), const SYS_GETITIMER = 426 +pkg syscall (netbsd-arm-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-arm-cgo), const SYS_GETPGID = 207 +pkg syscall (netbsd-arm-cgo), const SYS_GETPGRP = 81 +pkg syscall (netbsd-arm-cgo), const SYS_GETPID = 20 +pkg syscall (netbsd-arm-cgo), const SYS_GETPPID = 39 +pkg syscall (netbsd-arm-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-arm-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-arm-cgo), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-arm-cgo), const SYS_GETSID = 286 +pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-arm-cgo), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-arm-cgo), const SYS_GETUID = 24 +pkg syscall (netbsd-arm-cgo), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-arm-cgo), const SYS_GETXATTR = 378 +pkg syscall (netbsd-arm-cgo), const SYS_IOCTL = 54 +pkg syscall (netbsd-arm-cgo), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-arm-cgo), const SYS_KEVENT = 435 +pkg syscall (netbsd-arm-cgo), const SYS_KILL = 37 +pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE = 344 +pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-arm-cgo), const SYS_KTRACE = 45 +pkg syscall (netbsd-arm-cgo), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-arm-cgo), const SYS_LCHMOD = 274 +pkg syscall (netbsd-arm-cgo), const SYS_LCHOWN = 275 +pkg syscall (netbsd-arm-cgo), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-arm-cgo), const SYS_LINK = 9 +pkg syscall (netbsd-arm-cgo), const SYS_LINKAT = 457 +pkg syscall (netbsd-arm-cgo), const SYS_LISTEN = 106 +pkg syscall (netbsd-arm-cgo), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-arm-cgo), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-arm-cgo), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-arm-cgo), const SYS_LSEEK = 199 +pkg syscall (netbsd-arm-cgo), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-arm-cgo), const SYS_LSTAT = 441 +pkg syscall (netbsd-arm-cgo), const SYS_LUTIMES = 424 +pkg syscall (netbsd-arm-cgo), const SYS_MADVISE = 75 +pkg syscall (netbsd-arm-cgo), const SYS_MINCORE = 78 +pkg syscall (netbsd-arm-cgo), const SYS_MINHERIT = 273 +pkg syscall (netbsd-arm-cgo), const SYS_MKDIR = 136 +pkg syscall (netbsd-arm-cgo), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-arm-cgo), const SYS_MKFIFO = 132 +pkg syscall (netbsd-arm-cgo), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-arm-cgo), const SYS_MKNOD = 450 +pkg syscall (netbsd-arm-cgo), const SYS_MKNODAT = 460 +pkg syscall (netbsd-arm-cgo), const SYS_MLOCK = 203 +pkg syscall (netbsd-arm-cgo), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-arm-cgo), const SYS_MMAP = 197 +pkg syscall (netbsd-arm-cgo), const SYS_MODCTL = 246 +pkg syscall (netbsd-arm-cgo), const SYS_MOUNT = 410 +pkg syscall (netbsd-arm-cgo), const SYS_MPROTECT = 74 +pkg syscall (netbsd-arm-cgo), const SYS_MREMAP = 411 +pkg syscall (netbsd-arm-cgo), const SYS_MSGCTL = 444 +pkg syscall (netbsd-arm-cgo), const SYS_MSGGET = 225 +pkg syscall (netbsd-arm-cgo), const SYS_MSGRCV = 227 +pkg syscall (netbsd-arm-cgo), const SYS_MSGSND = 226 +pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-arm-cgo), const SYS_MUNMAP = 73 +pkg syscall (netbsd-arm-cgo), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-arm-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-arm-cgo), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-arm-cgo), const SYS_OPEN = 5 +pkg syscall (netbsd-arm-cgo), const SYS_OPENAT = 468 +pkg syscall (netbsd-arm-cgo), const SYS_PACCEPT = 456 +pkg syscall (netbsd-arm-cgo), const SYS_PATHCONF = 191 +pkg syscall (netbsd-arm-cgo), const SYS_PIPE = 42 +pkg syscall (netbsd-arm-cgo), const SYS_PIPE2 = 453 +pkg syscall (netbsd-arm-cgo), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-arm-cgo), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-arm-cgo), const SYS_POLL = 209 +pkg syscall (netbsd-arm-cgo), const SYS_POLLTS = 437 +pkg syscall (netbsd-arm-cgo), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-arm-cgo), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-arm-cgo), const SYS_PREAD = 173 +pkg syscall (netbsd-arm-cgo), const SYS_PREADV = 289 +pkg syscall (netbsd-arm-cgo), const SYS_PROFIL = 44 +pkg syscall (netbsd-arm-cgo), const SYS_PSELECT = 436 +pkg syscall (netbsd-arm-cgo), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-arm-cgo), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-arm-cgo), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-arm-cgo), const SYS_PTRACE = 26 +pkg syscall (netbsd-arm-cgo), const SYS_PWRITE = 174 +pkg syscall (netbsd-arm-cgo), const SYS_PWRITEV = 290 +pkg syscall (netbsd-arm-cgo), const SYS_RASCTL = 343 +pkg syscall (netbsd-arm-cgo), const SYS_READ = 3 +pkg syscall (netbsd-arm-cgo), const SYS_READLINK = 58 +pkg syscall (netbsd-arm-cgo), const SYS_READLINKAT = 469 +pkg syscall (netbsd-arm-cgo), const SYS_READV = 120 +pkg syscall (netbsd-arm-cgo), const SYS_REBOOT = 208 +pkg syscall (netbsd-arm-cgo), const SYS_RECVFROM = 29 +pkg syscall (netbsd-arm-cgo), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-arm-cgo), const SYS_RECVMSG = 27 +pkg syscall (netbsd-arm-cgo), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-arm-cgo), const SYS_RENAME = 128 +pkg syscall (netbsd-arm-cgo), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-arm-cgo), const SYS_REVOKE = 56 +pkg syscall (netbsd-arm-cgo), const SYS_RMDIR = 137 +pkg syscall (netbsd-arm-cgo), const SYS_SBRK = 69 +pkg syscall (netbsd-arm-cgo), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-arm-cgo), const SYS_SELECT = 417 +pkg syscall (netbsd-arm-cgo), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-arm-cgo), const SYS_SEMGET = 221 +pkg syscall (netbsd-arm-cgo), const SYS_SEMOP = 222 +pkg syscall (netbsd-arm-cgo), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-arm-cgo), const SYS_SENDMSG = 28 +pkg syscall (netbsd-arm-cgo), const SYS_SENDTO = 133 +pkg syscall (netbsd-arm-cgo), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-arm-cgo), const SYS_SETEGID = 182 +pkg syscall (netbsd-arm-cgo), const SYS_SETEUID = 183 +pkg syscall (netbsd-arm-cgo), const SYS_SETGID = 181 +pkg syscall (netbsd-arm-cgo), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-arm-cgo), const SYS_SETITIMER = 425 +pkg syscall (netbsd-arm-cgo), const SYS_SETPGID = 82 +pkg syscall (netbsd-arm-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-arm-cgo), const SYS_SETREGID = 127 +pkg syscall (netbsd-arm-cgo), const SYS_SETREUID = 126 +pkg syscall (netbsd-arm-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-arm-cgo), const SYS_SETSID = 147 +pkg syscall (netbsd-arm-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-arm-cgo), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-arm-cgo), const SYS_SETUID = 23 +pkg syscall (netbsd-arm-cgo), const SYS_SETXATTR = 375 +pkg syscall (netbsd-arm-cgo), const SYS_SHMAT = 228 +pkg syscall (netbsd-arm-cgo), const SYS_SHMCTL = 443 +pkg syscall (netbsd-arm-cgo), const SYS_SHMDT = 230 +pkg syscall (netbsd-arm-cgo), const SYS_SHMGET = 231 +pkg syscall (netbsd-arm-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-arm-cgo), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-arm-cgo), const SYS_SOCKET = 394 +pkg syscall (netbsd-arm-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-arm-cgo), const SYS_SSTK = 70 +pkg syscall (netbsd-arm-cgo), const SYS_STAT = 439 +pkg syscall (netbsd-arm-cgo), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-arm-cgo), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-arm-cgo), const SYS_SYMLINK = 57 +pkg syscall (netbsd-arm-cgo), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-arm-cgo), const SYS_SYNC = 36 +pkg syscall (netbsd-arm-cgo), const SYS_SYSARCH = 165 +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-arm-cgo), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-arm-cgo), const SYS_UMASK = 60 +pkg syscall (netbsd-arm-cgo), const SYS_UNDELETE = 205 +pkg syscall (netbsd-arm-cgo), const SYS_UNLINK = 10 +pkg syscall (netbsd-arm-cgo), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-arm-cgo), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-arm-cgo), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-arm-cgo), const SYS_UTIMES = 420 +pkg syscall (netbsd-arm-cgo), const SYS_UTRACE = 306 +pkg syscall (netbsd-arm-cgo), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-arm-cgo), const SYS_VADVISE = 72 +pkg syscall (netbsd-arm-cgo), const SYS_VFORK = 66 +pkg syscall (netbsd-arm-cgo), const SYS_WAIT4 = 449 +pkg syscall (netbsd-arm-cgo), const SYS_WRITE = 4 +pkg syscall (netbsd-arm-cgo), const SYS_WRITEV = 121 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-arm-cgo), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-arm-cgo), const SYS___CLONE = 287 +pkg syscall (netbsd-arm-cgo), const SYS___GETCWD = 296 +pkg syscall (netbsd-arm-cgo), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-arm-cgo), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-arm-cgo), const SYS___SEMCTL = 442 +pkg syscall (netbsd-arm-cgo), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-arm-cgo), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-arm-cgo), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-arm-cgo), const SYS___SYSCTL = 202 +pkg syscall (netbsd-arm-cgo), const S_ARCH1 = 65536 +pkg syscall (netbsd-arm-cgo), const S_ARCH2 = 131072 +pkg syscall (netbsd-arm-cgo), const S_BLKSIZE = 512 +pkg syscall (netbsd-arm-cgo), const S_IEXEC = 64 +pkg syscall (netbsd-arm-cgo), const S_IFMT = 61440 +pkg syscall (netbsd-arm-cgo), const S_IFWHT = 57344 +pkg syscall (netbsd-arm-cgo), const S_IREAD = 256 +pkg syscall (netbsd-arm-cgo), const S_IRGRP = 32 +pkg syscall (netbsd-arm-cgo), const S_IROTH = 4 +pkg syscall (netbsd-arm-cgo), const S_IRWXG = 56 +pkg syscall (netbsd-arm-cgo), const S_IRWXO = 7 +pkg syscall (netbsd-arm-cgo), const S_IRWXU = 448 +pkg syscall (netbsd-arm-cgo), const S_ISTXT = 512 +pkg syscall (netbsd-arm-cgo), const S_IWGRP = 16 +pkg syscall (netbsd-arm-cgo), const S_IWOTH = 2 +pkg syscall (netbsd-arm-cgo), const S_IWRITE = 128 +pkg syscall (netbsd-arm-cgo), const S_IXGRP = 8 +pkg syscall (netbsd-arm-cgo), const S_IXOTH = 1 +pkg syscall (netbsd-arm-cgo), const SizeofBpfHdr = 20 +pkg syscall (netbsd-arm-cgo), const SizeofBpfInsn = 8 +pkg syscall (netbsd-arm-cgo), const SizeofBpfProgram = 8 +pkg syscall (netbsd-arm-cgo), const SizeofBpfStat = 128 +pkg syscall (netbsd-arm-cgo), const SizeofBpfVersion = 4 +pkg syscall (netbsd-arm-cgo), const SizeofCmsghdr = 12 +pkg syscall (netbsd-arm-cgo), const SizeofIPMreq = 8 +pkg syscall (netbsd-arm-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-arm-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-arm-cgo), const SizeofIfData = 132 +pkg syscall (netbsd-arm-cgo), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-arm-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-arm-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-arm-cgo), const SizeofLinger = 8 +pkg syscall (netbsd-arm-cgo), const SizeofMsghdr = 28 +pkg syscall (netbsd-arm-cgo), const SizeofRtMetrics = 80 +pkg syscall (netbsd-arm-cgo), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-arm-cgo), const TCIFLUSH = 1 +pkg syscall (netbsd-arm-cgo), const TCIOFLUSH = 3 +pkg syscall (netbsd-arm-cgo), const TCOFLUSH = 2 +pkg syscall (netbsd-arm-cgo), const TCP_CONGCTL = 32 +pkg syscall (netbsd-arm-cgo), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-arm-cgo), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-arm-cgo), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-arm-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-arm-cgo), const TCP_MAXBURST = 4 +pkg syscall (netbsd-arm-cgo), const TCP_MAXSEG = 2 +pkg syscall (netbsd-arm-cgo), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-arm-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-arm-cgo), const TCP_MD5SIG = 16 +pkg syscall (netbsd-arm-cgo), const TCP_MINMSS = 216 +pkg syscall (netbsd-arm-cgo), const TCP_MSS = 536 +pkg syscall (netbsd-arm-cgo), const TCSAFLUSH = 2 +pkg syscall (netbsd-arm-cgo), const TIOCCBRK = 536900730 +pkg syscall (netbsd-arm-cgo), const TIOCCDTR = 536900728 +pkg syscall (netbsd-arm-cgo), const TIOCCONS = 2147775586 +pkg syscall (netbsd-arm-cgo), const TIOCDCDTIMESTAMP = 1074558040 +pkg syscall (netbsd-arm-cgo), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-arm-cgo), const TIOCEXCL = 536900621 +pkg syscall (netbsd-arm-cgo), const TIOCEXT = 2147775584 +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-arm-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-arm-cgo), const TIOCGETA = 1076655123 +pkg syscall (netbsd-arm-cgo), const TIOCGETD = 1074033690 +pkg syscall (netbsd-arm-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-arm-cgo), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-arm-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-arm-cgo), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-arm-cgo), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-arm-cgo), const TIOCGSID = 1074033763 +pkg syscall (netbsd-arm-cgo), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-arm-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-arm-cgo), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-arm-cgo), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-arm-cgo), const TIOCMGET = 1074033770 +pkg syscall (netbsd-arm-cgo), const TIOCMSET = 2147775597 +pkg syscall (netbsd-arm-cgo), const TIOCM_CAR = 64 +pkg syscall (netbsd-arm-cgo), const TIOCM_CD = 64 +pkg syscall (netbsd-arm-cgo), const TIOCM_CTS = 32 +pkg syscall (netbsd-arm-cgo), const TIOCM_DSR = 256 +pkg syscall (netbsd-arm-cgo), const TIOCM_DTR = 2 +pkg syscall (netbsd-arm-cgo), const TIOCM_LE = 1 +pkg syscall (netbsd-arm-cgo), const TIOCM_RI = 128 +pkg syscall (netbsd-arm-cgo), const TIOCM_RNG = 128 +pkg syscall (netbsd-arm-cgo), const TIOCM_RTS = 4 +pkg syscall (netbsd-arm-cgo), const TIOCM_SR = 16 +pkg syscall (netbsd-arm-cgo), const TIOCM_ST = 8 +pkg syscall (netbsd-arm-cgo), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-arm-cgo), const TIOCNXCL = 536900622 +pkg syscall (netbsd-arm-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-arm-cgo), const TIOCPKT = 2147775600 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_START = 8 +pkg syscall (netbsd-arm-cgo), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-arm-cgo), const TIOCPTMGET = 1208513606 +pkg syscall (netbsd-arm-cgo), const TIOCPTSNAME = 1208513608 +pkg syscall (netbsd-arm-cgo), const TIOCRCVFRAME = 2147775557 +pkg syscall (netbsd-arm-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-arm-cgo), const TIOCSBRK = 536900731 +pkg syscall (netbsd-arm-cgo), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-arm-cgo), const TIOCSDTR = 536900729 +pkg syscall (netbsd-arm-cgo), const TIOCSETA = 2150396948 +pkg syscall (netbsd-arm-cgo), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-arm-cgo), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-arm-cgo), const TIOCSETD = 2147775515 +pkg syscall (netbsd-arm-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-arm-cgo), const TIOCSIG = 536900703 +pkg syscall (netbsd-arm-cgo), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-arm-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-arm-cgo), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-arm-cgo), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-arm-cgo), const TIOCSTART = 536900718 +pkg syscall (netbsd-arm-cgo), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-arm-cgo), const TIOCSTI = 2147578994 +pkg syscall (netbsd-arm-cgo), const TIOCSTOP = 536900719 +pkg syscall (netbsd-arm-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-arm-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-arm-cgo), const TIOCXMTFRAME = 2147775556 +pkg syscall (netbsd-arm-cgo), const TOSTOP = 4194304 +pkg syscall (netbsd-arm-cgo), const VDISCARD = 15 +pkg syscall (netbsd-arm-cgo), const VDSUSP = 11 +pkg syscall (netbsd-arm-cgo), const VEOF = 0 +pkg syscall (netbsd-arm-cgo), const VEOL = 1 +pkg syscall (netbsd-arm-cgo), const VEOL2 = 2 +pkg syscall (netbsd-arm-cgo), const VERASE = 3 +pkg syscall (netbsd-arm-cgo), const VINTR = 8 +pkg syscall (netbsd-arm-cgo), const VKILL = 5 +pkg syscall (netbsd-arm-cgo), const VLNEXT = 14 +pkg syscall (netbsd-arm-cgo), const VMIN = 16 +pkg syscall (netbsd-arm-cgo), const VQUIT = 9 +pkg syscall (netbsd-arm-cgo), const VREPRINT = 6 +pkg syscall (netbsd-arm-cgo), const VSTART = 12 +pkg syscall (netbsd-arm-cgo), const VSTATUS = 18 +pkg syscall (netbsd-arm-cgo), const VSTOP = 13 +pkg syscall (netbsd-arm-cgo), const VSUSP = 10 +pkg syscall (netbsd-arm-cgo), const VTIME = 17 +pkg syscall (netbsd-arm-cgo), const VWERASE = 4 +pkg syscall (netbsd-arm-cgo), const WALL = 8 +pkg syscall (netbsd-arm-cgo), const WALLSIG = 8 +pkg syscall (netbsd-arm-cgo), const WALTSIG = 4 +pkg syscall (netbsd-arm-cgo), const WCLONE = 4 +pkg syscall (netbsd-arm-cgo), const WCOREFLAG = 128 +pkg syscall (netbsd-arm-cgo), const WNOHANG = 1 +pkg syscall (netbsd-arm-cgo), const WNOWAIT = 65536 +pkg syscall (netbsd-arm-cgo), const WNOZOMBIE = 131072 +pkg syscall (netbsd-arm-cgo), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-arm-cgo), const WSTOPPED = 127 +pkg syscall (netbsd-arm-cgo), const WUNTRACED = 2 +pkg syscall (openbsd-386), const AF_APPLETALK = 16 +pkg syscall (openbsd-386), const AF_BLUETOOTH = 32 +pkg syscall (openbsd-386), const AF_CCITT = 10 +pkg syscall (openbsd-386), const AF_CHAOS = 5 +pkg syscall (openbsd-386), const AF_CNT = 21 +pkg syscall (openbsd-386), const AF_COIP = 20 +pkg syscall (openbsd-386), const AF_DATAKIT = 9 +pkg syscall (openbsd-386), const AF_DECnet = 12 +pkg syscall (openbsd-386), const AF_DLI = 13 +pkg syscall (openbsd-386), const AF_E164 = 26 +pkg syscall (openbsd-386), const AF_ECMA = 8 +pkg syscall (openbsd-386), const AF_ENCAP = 28 +pkg syscall (openbsd-386), const AF_HYLINK = 15 +pkg syscall (openbsd-386), const AF_IMPLINK = 3 +pkg syscall (openbsd-386), const AF_INET6 = 24 +pkg syscall (openbsd-386), const AF_IPX = 23 +pkg syscall (openbsd-386), const AF_ISDN = 26 +pkg syscall (openbsd-386), const AF_ISO = 7 +pkg syscall (openbsd-386), const AF_KEY = 30 +pkg syscall (openbsd-386), const AF_LAT = 14 +pkg syscall (openbsd-386), const AF_LINK = 18 +pkg syscall (openbsd-386), const AF_LOCAL = 1 +pkg syscall (openbsd-386), const AF_MAX = 36 +pkg syscall (openbsd-386), const AF_MPLS = 33 +pkg syscall (openbsd-386), const AF_NATM = 27 +pkg syscall (openbsd-386), const AF_NS = 6 +pkg syscall (openbsd-386), const AF_OSI = 7 +pkg syscall (openbsd-386), const AF_PUP = 4 +pkg syscall (openbsd-386), const AF_ROUTE = 17 +pkg syscall (openbsd-386), const AF_SIP = 29 +pkg syscall (openbsd-386), const AF_SNA = 11 +pkg syscall (openbsd-386), const ARPHRD_ETHER = 1 +pkg syscall (openbsd-386), const ARPHRD_FRELAY = 15 +pkg syscall (openbsd-386), const ARPHRD_IEEE1394 = 24 +pkg syscall (openbsd-386), const ARPHRD_IEEE802 = 6 +pkg syscall (openbsd-386), const B0 = 0 +pkg syscall (openbsd-386), const B110 = 110 +pkg syscall (openbsd-386), const B115200 = 115200 +pkg syscall (openbsd-386), const B1200 = 1200 +pkg syscall (openbsd-386), const B134 = 134 +pkg syscall (openbsd-386), const B14400 = 14400 +pkg syscall (openbsd-386), const B150 = 150 +pkg syscall (openbsd-386), const B1800 = 1800 +pkg syscall (openbsd-386), const B19200 = 19200 +pkg syscall (openbsd-386), const B200 = 200 +pkg syscall (openbsd-386), const B230400 = 230400 +pkg syscall (openbsd-386), const B2400 = 2400 +pkg syscall (openbsd-386), const B28800 = 28800 +pkg syscall (openbsd-386), const B300 = 300 +pkg syscall (openbsd-386), const B38400 = 38400 +pkg syscall (openbsd-386), const B4800 = 4800 +pkg syscall (openbsd-386), const B50 = 50 +pkg syscall (openbsd-386), const B57600 = 57600 +pkg syscall (openbsd-386), const B600 = 600 +pkg syscall (openbsd-386), const B7200 = 7200 +pkg syscall (openbsd-386), const B75 = 75 +pkg syscall (openbsd-386), const B76800 = 76800 +pkg syscall (openbsd-386), const B9600 = 9600 +pkg syscall (openbsd-386), const BIOCFLUSH = 536887912 +pkg syscall (openbsd-386), const BIOCGBLEN = 1074020966 +pkg syscall (openbsd-386), const BIOCGDIRFILT = 1074020988 +pkg syscall (openbsd-386), const BIOCGDLT = 1074020970 +pkg syscall (openbsd-386), const BIOCGDLTLIST = 3221766779 +pkg syscall (openbsd-386), const BIOCGETIF = 1075855979 +pkg syscall (openbsd-386), const BIOCGFILDROP = 1074020984 +pkg syscall (openbsd-386), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (openbsd-386), const BIOCGRSIG = 1074020979 +pkg syscall (openbsd-386), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (openbsd-386), const BIOCGSTATS = 1074283119 +pkg syscall (openbsd-386), const BIOCIMMEDIATE = 2147762800 +pkg syscall (openbsd-386), const BIOCLOCK = 536887926 +pkg syscall (openbsd-386), const BIOCPROMISC = 536887913 +pkg syscall (openbsd-386), const BIOCSBLEN = 3221504614 +pkg syscall (openbsd-386), const BIOCSDIRFILT = 2147762813 +pkg syscall (openbsd-386), const BIOCSDLT = 2147762810 +pkg syscall (openbsd-386), const BIOCSETF = 2148024935 +pkg syscall (openbsd-386), const BIOCSETIF = 2149597804 +pkg syscall (openbsd-386), const BIOCSETWF = 2148024951 +pkg syscall (openbsd-386), const BIOCSFILDROP = 2147762809 +pkg syscall (openbsd-386), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (openbsd-386), const BIOCSRSIG = 2147762802 +pkg syscall (openbsd-386), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (openbsd-386), const BIOCVERSION = 1074020977 +pkg syscall (openbsd-386), const BPF_A = 16 +pkg syscall (openbsd-386), const BPF_ABS = 32 +pkg syscall (openbsd-386), const BPF_ADD = 0 +pkg syscall (openbsd-386), const BPF_ALIGNMENT = 4 +pkg syscall (openbsd-386), const BPF_ALU = 4 +pkg syscall (openbsd-386), const BPF_AND = 80 +pkg syscall (openbsd-386), const BPF_B = 16 +pkg syscall (openbsd-386), const BPF_DIRECTION_IN = 1 +pkg syscall (openbsd-386), const BPF_DIRECTION_OUT = 2 +pkg syscall (openbsd-386), const BPF_DIV = 48 +pkg syscall (openbsd-386), const BPF_H = 8 +pkg syscall (openbsd-386), const BPF_IMM = 0 +pkg syscall (openbsd-386), const BPF_IND = 64 +pkg syscall (openbsd-386), const BPF_JA = 0 +pkg syscall (openbsd-386), const BPF_JEQ = 16 +pkg syscall (openbsd-386), const BPF_JGE = 48 +pkg syscall (openbsd-386), const BPF_JGT = 32 +pkg syscall (openbsd-386), const BPF_JMP = 5 +pkg syscall (openbsd-386), const BPF_JSET = 64 +pkg syscall (openbsd-386), const BPF_K = 0 +pkg syscall (openbsd-386), const BPF_LD = 0 +pkg syscall (openbsd-386), const BPF_LDX = 1 +pkg syscall (openbsd-386), const BPF_LEN = 128 +pkg syscall (openbsd-386), const BPF_LSH = 96 +pkg syscall (openbsd-386), const BPF_MAJOR_VERSION = 1 +pkg syscall (openbsd-386), const BPF_MAXBUFSIZE = 2097152 +pkg syscall (openbsd-386), const BPF_MAXINSNS = 512 +pkg syscall (openbsd-386), const BPF_MEM = 96 +pkg syscall (openbsd-386), const BPF_MEMWORDS = 16 +pkg syscall (openbsd-386), const BPF_MINBUFSIZE = 32 +pkg syscall (openbsd-386), const BPF_MINOR_VERSION = 1 +pkg syscall (openbsd-386), const BPF_MISC = 7 +pkg syscall (openbsd-386), const BPF_MSH = 160 +pkg syscall (openbsd-386), const BPF_MUL = 32 +pkg syscall (openbsd-386), const BPF_NEG = 128 +pkg syscall (openbsd-386), const BPF_OR = 64 +pkg syscall (openbsd-386), const BPF_RELEASE = 199606 +pkg syscall (openbsd-386), const BPF_RET = 6 +pkg syscall (openbsd-386), const BPF_RSH = 112 +pkg syscall (openbsd-386), const BPF_ST = 2 +pkg syscall (openbsd-386), const BPF_STX = 3 +pkg syscall (openbsd-386), const BPF_SUB = 16 +pkg syscall (openbsd-386), const BPF_TAX = 0 +pkg syscall (openbsd-386), const BPF_TXA = 128 +pkg syscall (openbsd-386), const BPF_W = 0 +pkg syscall (openbsd-386), const BPF_X = 8 +pkg syscall (openbsd-386), const BRKINT = 2 +pkg syscall (openbsd-386), const CFLUSH = 15 +pkg syscall (openbsd-386), const CLOCAL = 32768 +pkg syscall (openbsd-386), const CREAD = 2048 +pkg syscall (openbsd-386), const CS5 = 0 +pkg syscall (openbsd-386), const CS6 = 256 +pkg syscall (openbsd-386), const CS7 = 512 +pkg syscall (openbsd-386), const CS8 = 768 +pkg syscall (openbsd-386), const CSIZE = 768 +pkg syscall (openbsd-386), const CSTART = 17 +pkg syscall (openbsd-386), const CSTATUS = 255 +pkg syscall (openbsd-386), const CSTOP = 19 +pkg syscall (openbsd-386), const CSTOPB = 1024 +pkg syscall (openbsd-386), const CSUSP = 26 +pkg syscall (openbsd-386), const CTL_MAXNAME = 12 +pkg syscall (openbsd-386), const CTL_NET = 4 +pkg syscall (openbsd-386), const DIOCOSFPFLUSH = 536888398 +pkg syscall (openbsd-386), const DLT_ARCNET = 7 +pkg syscall (openbsd-386), const DLT_ATM_RFC1483 = 11 +pkg syscall (openbsd-386), const DLT_AX25 = 3 +pkg syscall (openbsd-386), const DLT_CHAOS = 5 +pkg syscall (openbsd-386), const DLT_C_HDLC = 104 +pkg syscall (openbsd-386), const DLT_EN10MB = 1 +pkg syscall (openbsd-386), const DLT_EN3MB = 2 +pkg syscall (openbsd-386), const DLT_ENC = 13 +pkg syscall (openbsd-386), const DLT_FDDI = 10 +pkg syscall (openbsd-386), const DLT_IEEE802 = 6 +pkg syscall (openbsd-386), const DLT_IEEE802_11 = 105 +pkg syscall (openbsd-386), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (openbsd-386), const DLT_LOOP = 12 +pkg syscall (openbsd-386), const DLT_MPLS = 219 +pkg syscall (openbsd-386), const DLT_NULL = 0 +pkg syscall (openbsd-386), const DLT_PFLOG = 117 +pkg syscall (openbsd-386), const DLT_PFSYNC = 18 +pkg syscall (openbsd-386), const DLT_PPP = 9 +pkg syscall (openbsd-386), const DLT_PPP_BSDOS = 16 +pkg syscall (openbsd-386), const DLT_PPP_ETHER = 51 +pkg syscall (openbsd-386), const DLT_PPP_SERIAL = 50 +pkg syscall (openbsd-386), const DLT_PRONET = 4 +pkg syscall (openbsd-386), const DLT_RAW = 14 +pkg syscall (openbsd-386), const DLT_SLIP = 8 +pkg syscall (openbsd-386), const DLT_SLIP_BSDOS = 15 +pkg syscall (openbsd-386), const DT_BLK = 6 +pkg syscall (openbsd-386), const DT_CHR = 2 +pkg syscall (openbsd-386), const DT_DIR = 4 +pkg syscall (openbsd-386), const DT_FIFO = 1 +pkg syscall (openbsd-386), const DT_LNK = 10 +pkg syscall (openbsd-386), const DT_REG = 8 +pkg syscall (openbsd-386), const DT_SOCK = 12 +pkg syscall (openbsd-386), const DT_UNKNOWN = 0 +pkg syscall (openbsd-386), const E2BIG = 7 +pkg syscall (openbsd-386), const EACCES = 13 +pkg syscall (openbsd-386), const EADDRINUSE = 48 +pkg syscall (openbsd-386), const EADDRNOTAVAIL = 49 +pkg syscall (openbsd-386), const EAFNOSUPPORT = 47 +pkg syscall (openbsd-386), const EAGAIN = 35 +pkg syscall (openbsd-386), const EALREADY = 37 +pkg syscall (openbsd-386), const EAUTH = 80 +pkg syscall (openbsd-386), const EBADF = 9 +pkg syscall (openbsd-386), const EBADRPC = 72 +pkg syscall (openbsd-386), const EBUSY = 16 +pkg syscall (openbsd-386), const ECANCELED = 88 +pkg syscall (openbsd-386), const ECHILD = 10 +pkg syscall (openbsd-386), const ECHO = 8 +pkg syscall (openbsd-386), const ECHOCTL = 64 +pkg syscall (openbsd-386), const ECHOE = 2 +pkg syscall (openbsd-386), const ECHOK = 4 +pkg syscall (openbsd-386), const ECHOKE = 1 +pkg syscall (openbsd-386), const ECHONL = 16 +pkg syscall (openbsd-386), const ECHOPRT = 32 +pkg syscall (openbsd-386), const ECONNABORTED = 53 +pkg syscall (openbsd-386), const ECONNREFUSED = 61 +pkg syscall (openbsd-386), const ECONNRESET = 54 +pkg syscall (openbsd-386), const EDEADLK = 11 +pkg syscall (openbsd-386), const EDESTADDRREQ = 39 +pkg syscall (openbsd-386), const EDOM = 33 +pkg syscall (openbsd-386), const EDQUOT = 69 +pkg syscall (openbsd-386), const EEXIST = 17 +pkg syscall (openbsd-386), const EFAULT = 14 +pkg syscall (openbsd-386), const EFBIG = 27 +pkg syscall (openbsd-386), const EFTYPE = 79 +pkg syscall (openbsd-386), const EHOSTDOWN = 64 +pkg syscall (openbsd-386), const EHOSTUNREACH = 65 +pkg syscall (openbsd-386), const EIDRM = 89 +pkg syscall (openbsd-386), const EILSEQ = 84 +pkg syscall (openbsd-386), const EINPROGRESS = 36 +pkg syscall (openbsd-386), const EINTR = 4 +pkg syscall (openbsd-386), const EINVAL = 22 +pkg syscall (openbsd-386), const EIO = 5 +pkg syscall (openbsd-386), const EIPSEC = 82 +pkg syscall (openbsd-386), const EISCONN = 56 +pkg syscall (openbsd-386), const EISDIR = 21 +pkg syscall (openbsd-386), const ELAST = 91 +pkg syscall (openbsd-386), const ELOOP = 62 +pkg syscall (openbsd-386), const EMEDIUMTYPE = 86 +pkg syscall (openbsd-386), const EMFILE = 24 +pkg syscall (openbsd-386), const EMLINK = 31 +pkg syscall (openbsd-386), const EMSGSIZE = 40 +pkg syscall (openbsd-386), const EMT_TAGOVF = 1 +pkg syscall (openbsd-386), const EMUL_ENABLED = 1 +pkg syscall (openbsd-386), const EMUL_NATIVE = 2 +pkg syscall (openbsd-386), const ENAMETOOLONG = 63 +pkg syscall (openbsd-386), const ENDRUNDISC = 9 +pkg syscall (openbsd-386), const ENEEDAUTH = 81 +pkg syscall (openbsd-386), const ENETDOWN = 50 +pkg syscall (openbsd-386), const ENETRESET = 52 +pkg syscall (openbsd-386), const ENETUNREACH = 51 +pkg syscall (openbsd-386), const ENFILE = 23 +pkg syscall (openbsd-386), const ENOATTR = 83 +pkg syscall (openbsd-386), const ENOBUFS = 55 +pkg syscall (openbsd-386), const ENODEV = 19 +pkg syscall (openbsd-386), const ENOEXEC = 8 +pkg syscall (openbsd-386), const ENOLCK = 77 +pkg syscall (openbsd-386), const ENOMEDIUM = 85 +pkg syscall (openbsd-386), const ENOMEM = 12 +pkg syscall (openbsd-386), const ENOMSG = 90 +pkg syscall (openbsd-386), const ENOPROTOOPT = 42 +pkg syscall (openbsd-386), const ENOSPC = 28 +pkg syscall (openbsd-386), const ENOSYS = 78 +pkg syscall (openbsd-386), const ENOTBLK = 15 +pkg syscall (openbsd-386), const ENOTCONN = 57 +pkg syscall (openbsd-386), const ENOTDIR = 20 +pkg syscall (openbsd-386), const ENOTEMPTY = 66 +pkg syscall (openbsd-386), const ENOTSOCK = 38 +pkg syscall (openbsd-386), const ENOTSUP = 91 +pkg syscall (openbsd-386), const ENOTTY = 25 +pkg syscall (openbsd-386), const ENXIO = 6 +pkg syscall (openbsd-386), const EOPNOTSUPP = 45 +pkg syscall (openbsd-386), const EOVERFLOW = 87 +pkg syscall (openbsd-386), const EPERM = 1 +pkg syscall (openbsd-386), const EPFNOSUPPORT = 46 +pkg syscall (openbsd-386), const EPIPE = 32 +pkg syscall (openbsd-386), const EPROCLIM = 67 +pkg syscall (openbsd-386), const EPROCUNAVAIL = 76 +pkg syscall (openbsd-386), const EPROGMISMATCH = 75 +pkg syscall (openbsd-386), const EPROGUNAVAIL = 74 +pkg syscall (openbsd-386), const EPROTONOSUPPORT = 43 +pkg syscall (openbsd-386), const EPROTOTYPE = 41 +pkg syscall (openbsd-386), const ERANGE = 34 +pkg syscall (openbsd-386), const EREMOTE = 71 +pkg syscall (openbsd-386), const EROFS = 30 +pkg syscall (openbsd-386), const ERPCMISMATCH = 73 +pkg syscall (openbsd-386), const ESHUTDOWN = 58 +pkg syscall (openbsd-386), const ESOCKTNOSUPPORT = 44 +pkg syscall (openbsd-386), const ESPIPE = 29 +pkg syscall (openbsd-386), const ESRCH = 3 +pkg syscall (openbsd-386), const ESTALE = 70 +pkg syscall (openbsd-386), const ETHERMIN = 46 +pkg syscall (openbsd-386), const ETHERMTU = 1500 +pkg syscall (openbsd-386), const ETHERTYPE_8023 = 4 +pkg syscall (openbsd-386), const ETHERTYPE_AARP = 33011 +pkg syscall (openbsd-386), const ETHERTYPE_ACCTON = 33680 +pkg syscall (openbsd-386), const ETHERTYPE_AEONIC = 32822 +pkg syscall (openbsd-386), const ETHERTYPE_ALPHA = 33098 +pkg syscall (openbsd-386), const ETHERTYPE_AMBER = 24584 +pkg syscall (openbsd-386), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (openbsd-386), const ETHERTYPE_AOE = 34978 +pkg syscall (openbsd-386), const ETHERTYPE_APOLLO = 33015 +pkg syscall (openbsd-386), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (openbsd-386), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (openbsd-386), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (openbsd-386), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (openbsd-386), const ETHERTYPE_ARP = 2054 +pkg syscall (openbsd-386), const ETHERTYPE_AT = 32923 +pkg syscall (openbsd-386), const ETHERTYPE_ATALK = 32923 +pkg syscall (openbsd-386), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (openbsd-386), const ETHERTYPE_ATT = 32873 +pkg syscall (openbsd-386), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (openbsd-386), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (openbsd-386), const ETHERTYPE_AXIS = 34902 +pkg syscall (openbsd-386), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (openbsd-386), const ETHERTYPE_BOFL = 33026 +pkg syscall (openbsd-386), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (openbsd-386), const ETHERTYPE_CHAOS = 2052 +pkg syscall (openbsd-386), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (openbsd-386), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (openbsd-386), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (openbsd-386), const ETHERTYPE_CRONUS = 32772 +pkg syscall (openbsd-386), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (openbsd-386), const ETHERTYPE_DCA = 4660 +pkg syscall (openbsd-386), const ETHERTYPE_DDE = 32891 +pkg syscall (openbsd-386), const ETHERTYPE_DEBNI = 43690 +pkg syscall (openbsd-386), const ETHERTYPE_DECAM = 32840 +pkg syscall (openbsd-386), const ETHERTYPE_DECCUST = 24582 +pkg syscall (openbsd-386), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (openbsd-386), const ETHERTYPE_DECDNS = 32828 +pkg syscall (openbsd-386), const ETHERTYPE_DECDTS = 32830 +pkg syscall (openbsd-386), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (openbsd-386), const ETHERTYPE_DECLAST = 32833 +pkg syscall (openbsd-386), const ETHERTYPE_DECLTM = 32831 +pkg syscall (openbsd-386), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (openbsd-386), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (openbsd-386), const ETHERTYPE_DELTACON = 34526 +pkg syscall (openbsd-386), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (openbsd-386), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (openbsd-386), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (openbsd-386), const ETHERTYPE_DN = 24579 +pkg syscall (openbsd-386), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (openbsd-386), const ETHERTYPE_DSMD = 32825 +pkg syscall (openbsd-386), const ETHERTYPE_ECMA = 2051 +pkg syscall (openbsd-386), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (openbsd-386), const ETHERTYPE_ES = 32861 +pkg syscall (openbsd-386), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (openbsd-386), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (openbsd-386), const ETHERTYPE_FLIP = 33094 +pkg syscall (openbsd-386), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (openbsd-386), const ETHERTYPE_FRARP = 2056 +pkg syscall (openbsd-386), const ETHERTYPE_GENDYN = 32872 +pkg syscall (openbsd-386), const ETHERTYPE_HAYES = 33072 +pkg syscall (openbsd-386), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (openbsd-386), const ETHERTYPE_HITACHI = 34848 +pkg syscall (openbsd-386), const ETHERTYPE_HP = 32773 +pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (openbsd-386), const ETHERTYPE_IMLBL = 19522 +pkg syscall (openbsd-386), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (openbsd-386), const ETHERTYPE_IP = 2048 +pkg syscall (openbsd-386), const ETHERTYPE_IPAS = 34668 +pkg syscall (openbsd-386), const ETHERTYPE_IPV6 = 34525 +pkg syscall (openbsd-386), const ETHERTYPE_IPX = 33079 +pkg syscall (openbsd-386), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (openbsd-386), const ETHERTYPE_KALPANA = 34178 +pkg syscall (openbsd-386), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (openbsd-386), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (openbsd-386), const ETHERTYPE_LAT = 24580 +pkg syscall (openbsd-386), const ETHERTYPE_LBACK = 36864 +pkg syscall (openbsd-386), const ETHERTYPE_LITTLE = 32864 +pkg syscall (openbsd-386), const ETHERTYPE_LLDP = 35020 +pkg syscall (openbsd-386), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (openbsd-386), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (openbsd-386), const ETHERTYPE_MATRA = 32890 +pkg syscall (openbsd-386), const ETHERTYPE_MAX = 65535 +pkg syscall (openbsd-386), const ETHERTYPE_MERIT = 32892 +pkg syscall (openbsd-386), const ETHERTYPE_MICP = 34618 +pkg syscall (openbsd-386), const ETHERTYPE_MOPDL = 24577 +pkg syscall (openbsd-386), const ETHERTYPE_MOPRC = 24578 +pkg syscall (openbsd-386), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (openbsd-386), const ETHERTYPE_MPLS = 34887 +pkg syscall (openbsd-386), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (openbsd-386), const ETHERTYPE_MUMPS = 33087 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCC = 15364 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (openbsd-386), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (openbsd-386), const ETHERTYPE_NBPDG = 15367 +pkg syscall (openbsd-386), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (openbsd-386), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (openbsd-386), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (openbsd-386), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (openbsd-386), const ETHERTYPE_NBPRST = 15373 +pkg syscall (openbsd-386), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (openbsd-386), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (openbsd-386), const ETHERTYPE_NBS = 2050 +pkg syscall (openbsd-386), const ETHERTYPE_NCD = 33097 +pkg syscall (openbsd-386), const ETHERTYPE_NESTAR = 32774 +pkg syscall (openbsd-386), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (openbsd-386), const ETHERTYPE_NOVELL = 33080 +pkg syscall (openbsd-386), const ETHERTYPE_NS = 1536 +pkg syscall (openbsd-386), const ETHERTYPE_NSAT = 1537 +pkg syscall (openbsd-386), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (openbsd-386), const ETHERTYPE_NTRAILER = 16 +pkg syscall (openbsd-386), const ETHERTYPE_OS9 = 28679 +pkg syscall (openbsd-386), const ETHERTYPE_OS9NET = 28681 +pkg syscall (openbsd-386), const ETHERTYPE_PACER = 32966 +pkg syscall (openbsd-386), const ETHERTYPE_PAE = 34958 +pkg syscall (openbsd-386), const ETHERTYPE_PCS = 16962 +pkg syscall (openbsd-386), const ETHERTYPE_PLANNING = 32836 +pkg syscall (openbsd-386), const ETHERTYPE_PPP = 34827 +pkg syscall (openbsd-386), const ETHERTYPE_PPPOE = 34916 +pkg syscall (openbsd-386), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (openbsd-386), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (openbsd-386), const ETHERTYPE_PUP = 512 +pkg syscall (openbsd-386), const ETHERTYPE_PUPAT = 512 +pkg syscall (openbsd-386), const ETHERTYPE_QINQ = 34984 +pkg syscall (openbsd-386), const ETHERTYPE_RACAL = 28720 +pkg syscall (openbsd-386), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (openbsd-386), const ETHERTYPE_RAWFR = 25945 +pkg syscall (openbsd-386), const ETHERTYPE_RCL = 6549 +pkg syscall (openbsd-386), const ETHERTYPE_RDP = 34617 +pkg syscall (openbsd-386), const ETHERTYPE_RETIX = 33010 +pkg syscall (openbsd-386), const ETHERTYPE_REVARP = 32821 +pkg syscall (openbsd-386), const ETHERTYPE_SCA = 24583 +pkg syscall (openbsd-386), const ETHERTYPE_SECTRA = 34523 +pkg syscall (openbsd-386), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (openbsd-386), const ETHERTYPE_SGITW = 33150 +pkg syscall (openbsd-386), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (openbsd-386), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (openbsd-386), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (openbsd-386), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (openbsd-386), const ETHERTYPE_SIMNET = 21000 +pkg syscall (openbsd-386), const ETHERTYPE_SLOW = 34825 +pkg syscall (openbsd-386), const ETHERTYPE_SNA = 32981 +pkg syscall (openbsd-386), const ETHERTYPE_SNMP = 33100 +pkg syscall (openbsd-386), const ETHERTYPE_SONIX = 64245 +pkg syscall (openbsd-386), const ETHERTYPE_SPIDER = 32927 +pkg syscall (openbsd-386), const ETHERTYPE_SPRITE = 1280 +pkg syscall (openbsd-386), const ETHERTYPE_STP = 33153 +pkg syscall (openbsd-386), const ETHERTYPE_TALARIS = 33067 +pkg syscall (openbsd-386), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (openbsd-386), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (openbsd-386), const ETHERTYPE_TCPSM = 36866 +pkg syscall (openbsd-386), const ETHERTYPE_TEC = 33103 +pkg syscall (openbsd-386), const ETHERTYPE_TIGAN = 32815 +pkg syscall (openbsd-386), const ETHERTYPE_TRAIL = 4096 +pkg syscall (openbsd-386), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (openbsd-386), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (openbsd-386), const ETHERTYPE_UBBST = 28677 +pkg syscall (openbsd-386), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (openbsd-386), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (openbsd-386), const ETHERTYPE_UBDL = 28672 +pkg syscall (openbsd-386), const ETHERTYPE_UBNIU = 28673 +pkg syscall (openbsd-386), const ETHERTYPE_UBNMC = 28675 +pkg syscall (openbsd-386), const ETHERTYPE_VALID = 5632 +pkg syscall (openbsd-386), const ETHERTYPE_VARIAN = 32989 +pkg syscall (openbsd-386), const ETHERTYPE_VAXELN = 32827 +pkg syscall (openbsd-386), const ETHERTYPE_VEECO = 32871 +pkg syscall (openbsd-386), const ETHERTYPE_VEXP = 32859 +pkg syscall (openbsd-386), const ETHERTYPE_VGLAB = 33073 +pkg syscall (openbsd-386), const ETHERTYPE_VINES = 2989 +pkg syscall (openbsd-386), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (openbsd-386), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (openbsd-386), const ETHERTYPE_VITAL = 65280 +pkg syscall (openbsd-386), const ETHERTYPE_VLAN = 33024 +pkg syscall (openbsd-386), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (openbsd-386), const ETHERTYPE_VPROD = 32860 +pkg syscall (openbsd-386), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (openbsd-386), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (openbsd-386), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (openbsd-386), const ETHERTYPE_X25 = 2053 +pkg syscall (openbsd-386), const ETHERTYPE_X75 = 2049 +pkg syscall (openbsd-386), const ETHERTYPE_XNSSM = 36865 +pkg syscall (openbsd-386), const ETHERTYPE_XTP = 33149 +pkg syscall (openbsd-386), const ETHER_ADDR_LEN = 6 +pkg syscall (openbsd-386), const ETHER_ALIGN = 2 +pkg syscall (openbsd-386), const ETHER_CRC_LEN = 4 +pkg syscall (openbsd-386), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (openbsd-386), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (openbsd-386), const ETHER_HDR_LEN = 14 +pkg syscall (openbsd-386), const ETHER_MAX_DIX_LEN = 1536 +pkg syscall (openbsd-386), const ETHER_MAX_LEN = 1518 +pkg syscall (openbsd-386), const ETHER_MIN_LEN = 64 +pkg syscall (openbsd-386), const ETHER_TYPE_LEN = 2 +pkg syscall (openbsd-386), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (openbsd-386), const ETIMEDOUT = 60 +pkg syscall (openbsd-386), const ETOOMANYREFS = 59 +pkg syscall (openbsd-386), const ETXTBSY = 26 +pkg syscall (openbsd-386), const EUSERS = 68 +pkg syscall (openbsd-386), const EVFILT_AIO = -3 +pkg syscall (openbsd-386), const EVFILT_PROC = -5 +pkg syscall (openbsd-386), const EVFILT_READ = -1 +pkg syscall (openbsd-386), const EVFILT_SIGNAL = -6 +pkg syscall (openbsd-386), const EVFILT_SYSCOUNT = 7 +pkg syscall (openbsd-386), const EVFILT_TIMER = -7 +pkg syscall (openbsd-386), const EVFILT_VNODE = -4 +pkg syscall (openbsd-386), const EVFILT_WRITE = -2 +pkg syscall (openbsd-386), const EV_ADD = 1 +pkg syscall (openbsd-386), const EV_CLEAR = 32 +pkg syscall (openbsd-386), const EV_DELETE = 2 +pkg syscall (openbsd-386), const EV_DISABLE = 8 +pkg syscall (openbsd-386), const EV_ENABLE = 4 +pkg syscall (openbsd-386), const EV_EOF = 32768 +pkg syscall (openbsd-386), const EV_ERROR = 16384 +pkg syscall (openbsd-386), const EV_FLAG1 = 8192 +pkg syscall (openbsd-386), const EV_ONESHOT = 16 +pkg syscall (openbsd-386), const EV_SYSFLAGS = 61440 +pkg syscall (openbsd-386), const EWOULDBLOCK = 35 +pkg syscall (openbsd-386), const EXDEV = 18 +pkg syscall (openbsd-386), const EXTA = 19200 +pkg syscall (openbsd-386), const EXTB = 38400 +pkg syscall (openbsd-386), const EXTPROC = 2048 +pkg syscall (openbsd-386), const FD_CLOEXEC = 1 +pkg syscall (openbsd-386), const FD_SETSIZE = 1024 +pkg syscall (openbsd-386), const FLUSHO = 8388608 +pkg syscall (openbsd-386), const F_DUPFD = 0 +pkg syscall (openbsd-386), const F_DUPFD_CLOEXEC = 10 +pkg syscall (openbsd-386), const F_GETFD = 1 +pkg syscall (openbsd-386), const F_GETFL = 3 +pkg syscall (openbsd-386), const F_GETLK = 7 +pkg syscall (openbsd-386), const F_GETOWN = 5 +pkg syscall (openbsd-386), const F_OK = 0 +pkg syscall (openbsd-386), const F_RDLCK = 1 +pkg syscall (openbsd-386), const F_SETFD = 2 +pkg syscall (openbsd-386), const F_SETFL = 4 +pkg syscall (openbsd-386), const F_SETLK = 8 +pkg syscall (openbsd-386), const F_SETLKW = 9 +pkg syscall (openbsd-386), const F_SETOWN = 6 +pkg syscall (openbsd-386), const F_UNLCK = 2 +pkg syscall (openbsd-386), const F_WRLCK = 3 +pkg syscall (openbsd-386), const HUPCL = 16384 +pkg syscall (openbsd-386), const ICANON = 256 +pkg syscall (openbsd-386), const ICRNL = 256 +pkg syscall (openbsd-386), const IEXTEN = 1024 +pkg syscall (openbsd-386), const IFAN_ARRIVAL = 0 +pkg syscall (openbsd-386), const IFAN_DEPARTURE = 1 +pkg syscall (openbsd-386), const IFA_ROUTE = 1 +pkg syscall (openbsd-386), const IFF_ALLMULTI = 512 +pkg syscall (openbsd-386), const IFF_CANTCHANGE = 36434 +pkg syscall (openbsd-386), const IFF_DEBUG = 4 +pkg syscall (openbsd-386), const IFF_LINK0 = 4096 +pkg syscall (openbsd-386), const IFF_LINK1 = 8192 +pkg syscall (openbsd-386), const IFF_LINK2 = 16384 +pkg syscall (openbsd-386), const IFF_LOOPBACK = 8 +pkg syscall (openbsd-386), const IFF_MULTICAST = 32768 +pkg syscall (openbsd-386), const IFF_NOARP = 128 +pkg syscall (openbsd-386), const IFF_NOTRAILERS = 32 +pkg syscall (openbsd-386), const IFF_OACTIVE = 1024 +pkg syscall (openbsd-386), const IFF_POINTOPOINT = 16 +pkg syscall (openbsd-386), const IFF_PROMISC = 256 +pkg syscall (openbsd-386), const IFF_RUNNING = 64 +pkg syscall (openbsd-386), const IFF_SIMPLEX = 2048 +pkg syscall (openbsd-386), const IFNAMSIZ = 16 +pkg syscall (openbsd-386), const IFT_1822 = 2 +pkg syscall (openbsd-386), const IFT_A12MPPSWITCH = 130 +pkg syscall (openbsd-386), const IFT_AAL2 = 187 +pkg syscall (openbsd-386), const IFT_AAL5 = 49 +pkg syscall (openbsd-386), const IFT_ADSL = 94 +pkg syscall (openbsd-386), const IFT_AFLANE8023 = 59 +pkg syscall (openbsd-386), const IFT_AFLANE8025 = 60 +pkg syscall (openbsd-386), const IFT_ARAP = 88 +pkg syscall (openbsd-386), const IFT_ARCNET = 35 +pkg syscall (openbsd-386), const IFT_ARCNETPLUS = 36 +pkg syscall (openbsd-386), const IFT_ASYNC = 84 +pkg syscall (openbsd-386), const IFT_ATM = 37 +pkg syscall (openbsd-386), const IFT_ATMDXI = 105 +pkg syscall (openbsd-386), const IFT_ATMFUNI = 106 +pkg syscall (openbsd-386), const IFT_ATMIMA = 107 +pkg syscall (openbsd-386), const IFT_ATMLOGICAL = 80 +pkg syscall (openbsd-386), const IFT_ATMRADIO = 189 +pkg syscall (openbsd-386), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (openbsd-386), const IFT_ATMVCIENDPT = 194 +pkg syscall (openbsd-386), const IFT_ATMVIRTUAL = 149 +pkg syscall (openbsd-386), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (openbsd-386), const IFT_BLUETOOTH = 248 +pkg syscall (openbsd-386), const IFT_BRIDGE = 209 +pkg syscall (openbsd-386), const IFT_BSC = 83 +pkg syscall (openbsd-386), const IFT_CARP = 247 +pkg syscall (openbsd-386), const IFT_CCTEMUL = 61 +pkg syscall (openbsd-386), const IFT_CEPT = 19 +pkg syscall (openbsd-386), const IFT_CES = 133 +pkg syscall (openbsd-386), const IFT_CHANNEL = 70 +pkg syscall (openbsd-386), const IFT_CNR = 85 +pkg syscall (openbsd-386), const IFT_COFFEE = 132 +pkg syscall (openbsd-386), const IFT_COMPOSITELINK = 155 +pkg syscall (openbsd-386), const IFT_DCN = 141 +pkg syscall (openbsd-386), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (openbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (openbsd-386), const IFT_DLSW = 74 +pkg syscall (openbsd-386), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (openbsd-386), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (openbsd-386), const IFT_DS0 = 81 +pkg syscall (openbsd-386), const IFT_DS0BUNDLE = 82 +pkg syscall (openbsd-386), const IFT_DS1FDL = 170 +pkg syscall (openbsd-386), const IFT_DS3 = 30 +pkg syscall (openbsd-386), const IFT_DTM = 140 +pkg syscall (openbsd-386), const IFT_DUMMY = 241 +pkg syscall (openbsd-386), const IFT_DVBASILN = 172 +pkg syscall (openbsd-386), const IFT_DVBASIOUT = 173 +pkg syscall (openbsd-386), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (openbsd-386), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (openbsd-386), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (openbsd-386), const IFT_ECONET = 206 +pkg syscall (openbsd-386), const IFT_ENC = 244 +pkg syscall (openbsd-386), const IFT_EON = 25 +pkg syscall (openbsd-386), const IFT_EPLRS = 87 +pkg syscall (openbsd-386), const IFT_ESCON = 73 +pkg syscall (openbsd-386), const IFT_ETHER = 6 +pkg syscall (openbsd-386), const IFT_FAITH = 243 +pkg syscall (openbsd-386), const IFT_FAST = 125 +pkg syscall (openbsd-386), const IFT_FASTETHER = 62 +pkg syscall (openbsd-386), const IFT_FASTETHERFX = 69 +pkg syscall (openbsd-386), const IFT_FDDI = 15 +pkg syscall (openbsd-386), const IFT_FIBRECHANNEL = 56 +pkg syscall (openbsd-386), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (openbsd-386), const IFT_FRAMERELAYMPI = 92 +pkg syscall (openbsd-386), const IFT_FRDLCIENDPT = 193 +pkg syscall (openbsd-386), const IFT_FRELAY = 32 +pkg syscall (openbsd-386), const IFT_FRELAYDCE = 44 +pkg syscall (openbsd-386), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (openbsd-386), const IFT_FRFORWARD = 158 +pkg syscall (openbsd-386), const IFT_G703AT2MB = 67 +pkg syscall (openbsd-386), const IFT_G703AT64K = 66 +pkg syscall (openbsd-386), const IFT_GIF = 240 +pkg syscall (openbsd-386), const IFT_GIGABITETHERNET = 117 +pkg syscall (openbsd-386), const IFT_GR303IDT = 178 +pkg syscall (openbsd-386), const IFT_GR303RDT = 177 +pkg syscall (openbsd-386), const IFT_H323GATEKEEPER = 164 +pkg syscall (openbsd-386), const IFT_H323PROXY = 165 +pkg syscall (openbsd-386), const IFT_HDH1822 = 3 +pkg syscall (openbsd-386), const IFT_HDLC = 118 +pkg syscall (openbsd-386), const IFT_HDSL2 = 168 +pkg syscall (openbsd-386), const IFT_HIPERLAN2 = 183 +pkg syscall (openbsd-386), const IFT_HIPPI = 47 +pkg syscall (openbsd-386), const IFT_HIPPIINTERFACE = 57 +pkg syscall (openbsd-386), const IFT_HOSTPAD = 90 +pkg syscall (openbsd-386), const IFT_HSSI = 46 +pkg syscall (openbsd-386), const IFT_HY = 14 +pkg syscall (openbsd-386), const IFT_IBM370PARCHAN = 72 +pkg syscall (openbsd-386), const IFT_IDSL = 154 +pkg syscall (openbsd-386), const IFT_IEEE1394 = 144 +pkg syscall (openbsd-386), const IFT_IEEE80211 = 71 +pkg syscall (openbsd-386), const IFT_IEEE80212 = 55 +pkg syscall (openbsd-386), const IFT_IEEE8023ADLAG = 161 +pkg syscall (openbsd-386), const IFT_IFGSN = 145 +pkg syscall (openbsd-386), const IFT_IMT = 190 +pkg syscall (openbsd-386), const IFT_INFINIBAND = 199 +pkg syscall (openbsd-386), const IFT_INTERLEAVE = 124 +pkg syscall (openbsd-386), const IFT_IP = 126 +pkg syscall (openbsd-386), const IFT_IPFORWARD = 142 +pkg syscall (openbsd-386), const IFT_IPOVERATM = 114 +pkg syscall (openbsd-386), const IFT_IPOVERCDLC = 109 +pkg syscall (openbsd-386), const IFT_IPOVERCLAW = 110 +pkg syscall (openbsd-386), const IFT_IPSWITCH = 78 +pkg syscall (openbsd-386), const IFT_ISDN = 63 +pkg syscall (openbsd-386), const IFT_ISDNBASIC = 20 +pkg syscall (openbsd-386), const IFT_ISDNPRIMARY = 21 +pkg syscall (openbsd-386), const IFT_ISDNS = 75 +pkg syscall (openbsd-386), const IFT_ISDNU = 76 +pkg syscall (openbsd-386), const IFT_ISO88022LLC = 41 +pkg syscall (openbsd-386), const IFT_ISO88023 = 7 +pkg syscall (openbsd-386), const IFT_ISO88024 = 8 +pkg syscall (openbsd-386), const IFT_ISO88025 = 9 +pkg syscall (openbsd-386), const IFT_ISO88025CRFPINT = 98 +pkg syscall (openbsd-386), const IFT_ISO88025DTR = 86 +pkg syscall (openbsd-386), const IFT_ISO88025FIBER = 115 +pkg syscall (openbsd-386), const IFT_ISO88026 = 10 +pkg syscall (openbsd-386), const IFT_ISUP = 179 +pkg syscall (openbsd-386), const IFT_L2VLAN = 135 +pkg syscall (openbsd-386), const IFT_L3IPVLAN = 136 +pkg syscall (openbsd-386), const IFT_L3IPXVLAN = 137 +pkg syscall (openbsd-386), const IFT_LAPB = 16 +pkg syscall (openbsd-386), const IFT_LAPD = 77 +pkg syscall (openbsd-386), const IFT_LAPF = 119 +pkg syscall (openbsd-386), const IFT_LINEGROUP = 210 +pkg syscall (openbsd-386), const IFT_LOCALTALK = 42 +pkg syscall (openbsd-386), const IFT_LOOP = 24 +pkg syscall (openbsd-386), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (openbsd-386), const IFT_MFSIGLINK = 167 +pkg syscall (openbsd-386), const IFT_MIOX25 = 38 +pkg syscall (openbsd-386), const IFT_MODEM = 48 +pkg syscall (openbsd-386), const IFT_MPC = 113 +pkg syscall (openbsd-386), const IFT_MPLS = 166 +pkg syscall (openbsd-386), const IFT_MPLSTUNNEL = 150 +pkg syscall (openbsd-386), const IFT_MSDSL = 143 +pkg syscall (openbsd-386), const IFT_MVL = 191 +pkg syscall (openbsd-386), const IFT_MYRINET = 99 +pkg syscall (openbsd-386), const IFT_NFAS = 175 +pkg syscall (openbsd-386), const IFT_NSIP = 27 +pkg syscall (openbsd-386), const IFT_OPTICALCHANNEL = 195 +pkg syscall (openbsd-386), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (openbsd-386), const IFT_OTHER = 1 +pkg syscall (openbsd-386), const IFT_P10 = 12 +pkg syscall (openbsd-386), const IFT_P80 = 13 +pkg syscall (openbsd-386), const IFT_PARA = 34 +pkg syscall (openbsd-386), const IFT_PFLOG = 245 +pkg syscall (openbsd-386), const IFT_PFLOW = 249 +pkg syscall (openbsd-386), const IFT_PFSYNC = 246 +pkg syscall (openbsd-386), const IFT_PLC = 174 +pkg syscall (openbsd-386), const IFT_PON155 = 207 +pkg syscall (openbsd-386), const IFT_PON622 = 208 +pkg syscall (openbsd-386), const IFT_POS = 171 +pkg syscall (openbsd-386), const IFT_PPP = 23 +pkg syscall (openbsd-386), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (openbsd-386), const IFT_PROPATM = 197 +pkg syscall (openbsd-386), const IFT_PROPBWAP2MP = 184 +pkg syscall (openbsd-386), const IFT_PROPCNLS = 89 +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (openbsd-386), const IFT_PROPMUX = 54 +pkg syscall (openbsd-386), const IFT_PROPVIRTUAL = 53 +pkg syscall (openbsd-386), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (openbsd-386), const IFT_PTPSERIAL = 22 +pkg syscall (openbsd-386), const IFT_PVC = 242 +pkg syscall (openbsd-386), const IFT_Q2931 = 201 +pkg syscall (openbsd-386), const IFT_QLLC = 68 +pkg syscall (openbsd-386), const IFT_RADIOMAC = 188 +pkg syscall (openbsd-386), const IFT_RADSL = 95 +pkg syscall (openbsd-386), const IFT_REACHDSL = 192 +pkg syscall (openbsd-386), const IFT_RFC1483 = 159 +pkg syscall (openbsd-386), const IFT_RS232 = 33 +pkg syscall (openbsd-386), const IFT_RSRB = 79 +pkg syscall (openbsd-386), const IFT_SDLC = 17 +pkg syscall (openbsd-386), const IFT_SDSL = 96 +pkg syscall (openbsd-386), const IFT_SHDSL = 169 +pkg syscall (openbsd-386), const IFT_SIP = 31 +pkg syscall (openbsd-386), const IFT_SIPSIG = 204 +pkg syscall (openbsd-386), const IFT_SIPTG = 203 +pkg syscall (openbsd-386), const IFT_SLIP = 28 +pkg syscall (openbsd-386), const IFT_SMDSDXI = 43 +pkg syscall (openbsd-386), const IFT_SMDSICIP = 52 +pkg syscall (openbsd-386), const IFT_SONET = 39 +pkg syscall (openbsd-386), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (openbsd-386), const IFT_SONETPATH = 50 +pkg syscall (openbsd-386), const IFT_SONETVT = 51 +pkg syscall (openbsd-386), const IFT_SRP = 151 +pkg syscall (openbsd-386), const IFT_SS7SIGLINK = 156 +pkg syscall (openbsd-386), const IFT_STACKTOSTACK = 111 +pkg syscall (openbsd-386), const IFT_STARLAN = 11 +pkg syscall (openbsd-386), const IFT_T1 = 18 +pkg syscall (openbsd-386), const IFT_TDLC = 116 +pkg syscall (openbsd-386), const IFT_TELINK = 200 +pkg syscall (openbsd-386), const IFT_TERMPAD = 91 +pkg syscall (openbsd-386), const IFT_TR008 = 176 +pkg syscall (openbsd-386), const IFT_TRANSPHDLC = 123 +pkg syscall (openbsd-386), const IFT_TUNNEL = 131 +pkg syscall (openbsd-386), const IFT_ULTRA = 29 +pkg syscall (openbsd-386), const IFT_USB = 160 +pkg syscall (openbsd-386), const IFT_V11 = 64 +pkg syscall (openbsd-386), const IFT_V35 = 45 +pkg syscall (openbsd-386), const IFT_V36 = 65 +pkg syscall (openbsd-386), const IFT_V37 = 120 +pkg syscall (openbsd-386), const IFT_VDSL = 97 +pkg syscall (openbsd-386), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (openbsd-386), const IFT_VIRTUALTG = 202 +pkg syscall (openbsd-386), const IFT_VOICEDID = 213 +pkg syscall (openbsd-386), const IFT_VOICEEM = 100 +pkg syscall (openbsd-386), const IFT_VOICEEMFGD = 211 +pkg syscall (openbsd-386), const IFT_VOICEENCAP = 103 +pkg syscall (openbsd-386), const IFT_VOICEFGDEANA = 212 +pkg syscall (openbsd-386), const IFT_VOICEFXO = 101 +pkg syscall (openbsd-386), const IFT_VOICEFXS = 102 +pkg syscall (openbsd-386), const IFT_VOICEOVERATM = 152 +pkg syscall (openbsd-386), const IFT_VOICEOVERCABLE = 198 +pkg syscall (openbsd-386), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (openbsd-386), const IFT_VOICEOVERIP = 104 +pkg syscall (openbsd-386), const IFT_X213 = 93 +pkg syscall (openbsd-386), const IFT_X25 = 5 +pkg syscall (openbsd-386), const IFT_X25DDN = 4 +pkg syscall (openbsd-386), const IFT_X25HUNTGROUP = 122 +pkg syscall (openbsd-386), const IFT_X25MLP = 121 +pkg syscall (openbsd-386), const IFT_X25PLE = 40 +pkg syscall (openbsd-386), const IFT_XETHER = 26 +pkg syscall (openbsd-386), const IGNBRK = 1 +pkg syscall (openbsd-386), const IGNCR = 128 +pkg syscall (openbsd-386), const IGNPAR = 4 +pkg syscall (openbsd-386), const IMAXBEL = 8192 +pkg syscall (openbsd-386), const INLCR = 64 +pkg syscall (openbsd-386), const INPCK = 16 +pkg syscall (openbsd-386), const IN_CLASSA_HOST = 16777215 +pkg syscall (openbsd-386), const IN_CLASSA_MAX = 128 +pkg syscall (openbsd-386), const IN_CLASSA_NET = 4278190080 +pkg syscall (openbsd-386), const IN_CLASSA_NSHIFT = 24 +pkg syscall (openbsd-386), const IN_CLASSB_HOST = 65535 +pkg syscall (openbsd-386), const IN_CLASSB_MAX = 65536 +pkg syscall (openbsd-386), const IN_CLASSB_NET = 4294901760 +pkg syscall (openbsd-386), const IN_CLASSB_NSHIFT = 16 +pkg syscall (openbsd-386), const IN_CLASSC_HOST = 255 +pkg syscall (openbsd-386), const IN_CLASSC_NET = 4294967040 +pkg syscall (openbsd-386), const IN_CLASSC_NSHIFT = 8 +pkg syscall (openbsd-386), const IN_CLASSD_HOST = 268435455 +pkg syscall (openbsd-386), const IN_CLASSD_NET = 4026531840 +pkg syscall (openbsd-386), const IN_CLASSD_NSHIFT = 28 +pkg syscall (openbsd-386), const IN_LOOPBACKNET = 127 +pkg syscall (openbsd-386), const IN_RFC3021_HOST = 1 +pkg syscall (openbsd-386), const IN_RFC3021_NET = 4294967294 +pkg syscall (openbsd-386), const IN_RFC3021_NSHIFT = 31 +pkg syscall (openbsd-386), const IPPROTO_AH = 51 +pkg syscall (openbsd-386), const IPPROTO_CARP = 112 +pkg syscall (openbsd-386), const IPPROTO_DIVERT = 258 +pkg syscall (openbsd-386), const IPPROTO_DONE = 257 +pkg syscall (openbsd-386), const IPPROTO_DSTOPTS = 60 +pkg syscall (openbsd-386), const IPPROTO_EGP = 8 +pkg syscall (openbsd-386), const IPPROTO_ENCAP = 98 +pkg syscall (openbsd-386), const IPPROTO_EON = 80 +pkg syscall (openbsd-386), const IPPROTO_ESP = 50 +pkg syscall (openbsd-386), const IPPROTO_ETHERIP = 97 +pkg syscall (openbsd-386), const IPPROTO_FRAGMENT = 44 +pkg syscall (openbsd-386), const IPPROTO_GGP = 3 +pkg syscall (openbsd-386), const IPPROTO_GRE = 47 +pkg syscall (openbsd-386), const IPPROTO_HOPOPTS = 0 +pkg syscall (openbsd-386), const IPPROTO_ICMP = 1 +pkg syscall (openbsd-386), const IPPROTO_ICMPV6 = 58 +pkg syscall (openbsd-386), const IPPROTO_IDP = 22 +pkg syscall (openbsd-386), const IPPROTO_IGMP = 2 +pkg syscall (openbsd-386), const IPPROTO_IPCOMP = 108 +pkg syscall (openbsd-386), const IPPROTO_IPIP = 4 +pkg syscall (openbsd-386), const IPPROTO_IPV4 = 4 +pkg syscall (openbsd-386), const IPPROTO_MAX = 256 +pkg syscall (openbsd-386), const IPPROTO_MAXID = 259 +pkg syscall (openbsd-386), const IPPROTO_MOBILE = 55 +pkg syscall (openbsd-386), const IPPROTO_MPLS = 137 +pkg syscall (openbsd-386), const IPPROTO_NONE = 59 +pkg syscall (openbsd-386), const IPPROTO_PFSYNC = 240 +pkg syscall (openbsd-386), const IPPROTO_PIM = 103 +pkg syscall (openbsd-386), const IPPROTO_PUP = 12 +pkg syscall (openbsd-386), const IPPROTO_RAW = 255 +pkg syscall (openbsd-386), const IPPROTO_ROUTING = 43 +pkg syscall (openbsd-386), const IPPROTO_RSVP = 46 +pkg syscall (openbsd-386), const IPPROTO_TP = 29 +pkg syscall (openbsd-386), const IPV6_AUTH_LEVEL = 53 +pkg syscall (openbsd-386), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (openbsd-386), const IPV6_CHECKSUM = 26 +pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-386), const IPV6_DEFHLIM = 64 +pkg syscall (openbsd-386), const IPV6_DONTFRAG = 62 +pkg syscall (openbsd-386), const IPV6_DSTOPTS = 50 +pkg syscall (openbsd-386), const IPV6_ESP_NETWORK_LEVEL = 55 +pkg syscall (openbsd-386), const IPV6_ESP_TRANS_LEVEL = 54 +pkg syscall (openbsd-386), const IPV6_FAITH = 29 +pkg syscall (openbsd-386), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (openbsd-386), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (openbsd-386), const IPV6_FRAGTTL = 120 +pkg syscall (openbsd-386), const IPV6_HLIMDEC = 1 +pkg syscall (openbsd-386), const IPV6_HOPLIMIT = 47 +pkg syscall (openbsd-386), const IPV6_HOPOPTS = 49 +pkg syscall (openbsd-386), const IPV6_IPCOMP_LEVEL = 60 +pkg syscall (openbsd-386), const IPV6_JOIN_GROUP = 12 +pkg syscall (openbsd-386), const IPV6_LEAVE_GROUP = 13 +pkg syscall (openbsd-386), const IPV6_MAXHLIM = 255 +pkg syscall (openbsd-386), const IPV6_MAXPACKET = 65535 +pkg syscall (openbsd-386), const IPV6_MMTU = 1280 +pkg syscall (openbsd-386), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (openbsd-386), const IPV6_MULTICAST_IF = 9 +pkg syscall (openbsd-386), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (openbsd-386), const IPV6_NEXTHOP = 48 +pkg syscall (openbsd-386), const IPV6_OPTIONS = 1 +pkg syscall (openbsd-386), const IPV6_PATHMTU = 44 +pkg syscall (openbsd-386), const IPV6_PIPEX = 63 +pkg syscall (openbsd-386), const IPV6_PKTINFO = 46 +pkg syscall (openbsd-386), const IPV6_PORTRANGE = 14 +pkg syscall (openbsd-386), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-386), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-386), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (openbsd-386), const IPV6_RECVDSTOPTS = 40 +pkg syscall (openbsd-386), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (openbsd-386), const IPV6_RECVHOPOPTS = 39 +pkg syscall (openbsd-386), const IPV6_RECVPATHMTU = 43 +pkg syscall (openbsd-386), const IPV6_RECVPKTINFO = 36 +pkg syscall (openbsd-386), const IPV6_RECVRTHDR = 38 +pkg syscall (openbsd-386), const IPV6_RECVTCLASS = 57 +pkg syscall (openbsd-386), const IPV6_RTABLE = 4129 +pkg syscall (openbsd-386), const IPV6_RTHDR = 51 +pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (openbsd-386), const IPV6_RTHDR_STRICT = 1 +pkg syscall (openbsd-386), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (openbsd-386), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (openbsd-386), const IPV6_TCLASS = 61 +pkg syscall (openbsd-386), const IPV6_UNICAST_HOPS = 4 +pkg syscall (openbsd-386), const IPV6_USE_MIN_MTU = 42 +pkg syscall (openbsd-386), const IPV6_V6ONLY = 27 +pkg syscall (openbsd-386), const IPV6_VERSION = 96 +pkg syscall (openbsd-386), const IPV6_VERSION_MASK = 240 +pkg syscall (openbsd-386), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (openbsd-386), const IP_AUTH_LEVEL = 20 +pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (openbsd-386), const IP_DF = 16384 +pkg syscall (openbsd-386), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (openbsd-386), const IP_ESP_NETWORK_LEVEL = 22 +pkg syscall (openbsd-386), const IP_ESP_TRANS_LEVEL = 21 +pkg syscall (openbsd-386), const IP_HDRINCL = 2 +pkg syscall (openbsd-386), const IP_IPCOMP_LEVEL = 29 +pkg syscall (openbsd-386), const IP_IPSECFLOWINFO = 36 +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_AUTH = 27 +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_CRED = 25 +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_ID = 23 +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_AUTH = 28 +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_CRED = 26 +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_ID = 24 +pkg syscall (openbsd-386), const IP_MAXPACKET = 65535 +pkg syscall (openbsd-386), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (openbsd-386), const IP_MF = 8192 +pkg syscall (openbsd-386), const IP_MINTTL = 32 +pkg syscall (openbsd-386), const IP_MIN_MEMBERSHIPS = 15 +pkg syscall (openbsd-386), const IP_MSS = 576 +pkg syscall (openbsd-386), const IP_MULTICAST_IF = 9 +pkg syscall (openbsd-386), const IP_MULTICAST_LOOP = 11 +pkg syscall (openbsd-386), const IP_MULTICAST_TTL = 10 +pkg syscall (openbsd-386), const IP_OFFMASK = 8191 +pkg syscall (openbsd-386), const IP_OPTIONS = 1 +pkg syscall (openbsd-386), const IP_PIPEX = 34 +pkg syscall (openbsd-386), const IP_PORTRANGE = 19 +pkg syscall (openbsd-386), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-386), const IP_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-386), const IP_PORTRANGE_LOW = 2 +pkg syscall (openbsd-386), const IP_RECVDSTADDR = 7 +pkg syscall (openbsd-386), const IP_RECVDSTPORT = 33 +pkg syscall (openbsd-386), const IP_RECVIF = 30 +pkg syscall (openbsd-386), const IP_RECVOPTS = 5 +pkg syscall (openbsd-386), const IP_RECVRETOPTS = 6 +pkg syscall (openbsd-386), const IP_RECVRTABLE = 35 +pkg syscall (openbsd-386), const IP_RECVTTL = 31 +pkg syscall (openbsd-386), const IP_RETOPTS = 8 +pkg syscall (openbsd-386), const IP_RF = 32768 +pkg syscall (openbsd-386), const IP_RTABLE = 4129 +pkg syscall (openbsd-386), const IP_TOS = 3 +pkg syscall (openbsd-386), const IP_TTL = 4 +pkg syscall (openbsd-386), const ISIG = 128 +pkg syscall (openbsd-386), const ISTRIP = 32 +pkg syscall (openbsd-386), const IXANY = 2048 +pkg syscall (openbsd-386), const IXOFF = 1024 +pkg syscall (openbsd-386), const IXON = 512 +pkg syscall (openbsd-386), const ImplementsGetwd = false +pkg syscall (openbsd-386), const LCNT_OVERLOAD_FLUSH = 6 +pkg syscall (openbsd-386), const LOCK_EX = 2 +pkg syscall (openbsd-386), const LOCK_NB = 4 +pkg syscall (openbsd-386), const LOCK_SH = 1 +pkg syscall (openbsd-386), const LOCK_UN = 8 +pkg syscall (openbsd-386), const MSG_BCAST = 256 +pkg syscall (openbsd-386), const MSG_CTRUNC = 32 +pkg syscall (openbsd-386), const MSG_DONTROUTE = 4 +pkg syscall (openbsd-386), const MSG_DONTWAIT = 128 +pkg syscall (openbsd-386), const MSG_EOR = 8 +pkg syscall (openbsd-386), const MSG_MCAST = 512 +pkg syscall (openbsd-386), const MSG_NOSIGNAL = 1024 +pkg syscall (openbsd-386), const MSG_OOB = 1 +pkg syscall (openbsd-386), const MSG_PEEK = 2 +pkg syscall (openbsd-386), const MSG_TRUNC = 16 +pkg syscall (openbsd-386), const MSG_WAITALL = 64 +pkg syscall (openbsd-386), const NAME_MAX = 255 +pkg syscall (openbsd-386), const NET_RT_DUMP = 1 +pkg syscall (openbsd-386), const NET_RT_FLAGS = 2 +pkg syscall (openbsd-386), const NET_RT_IFLIST = 3 +pkg syscall (openbsd-386), const NET_RT_MAXID = 6 +pkg syscall (openbsd-386), const NET_RT_STATS = 4 +pkg syscall (openbsd-386), const NET_RT_TABLE = 5 +pkg syscall (openbsd-386), const NOFLSH = 2147483648 +pkg syscall (openbsd-386), const NOTE_ATTRIB = 8 +pkg syscall (openbsd-386), const NOTE_CHILD = 4 +pkg syscall (openbsd-386), const NOTE_DELETE = 1 +pkg syscall (openbsd-386), const NOTE_EOF = 2 +pkg syscall (openbsd-386), const NOTE_EXEC = 536870912 +pkg syscall (openbsd-386), const NOTE_EXIT = 2147483648 +pkg syscall (openbsd-386), const NOTE_EXTEND = 4 +pkg syscall (openbsd-386), const NOTE_FORK = 1073741824 +pkg syscall (openbsd-386), const NOTE_LINK = 16 +pkg syscall (openbsd-386), const NOTE_LOWAT = 1 +pkg syscall (openbsd-386), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (openbsd-386), const NOTE_PDATAMASK = 1048575 +pkg syscall (openbsd-386), const NOTE_RENAME = 32 +pkg syscall (openbsd-386), const NOTE_REVOKE = 64 +pkg syscall (openbsd-386), const NOTE_TRACK = 1 +pkg syscall (openbsd-386), const NOTE_TRACKERR = 2 +pkg syscall (openbsd-386), const NOTE_TRUNCATE = 128 +pkg syscall (openbsd-386), const NOTE_WRITE = 2 +pkg syscall (openbsd-386), const OCRNL = 16 +pkg syscall (openbsd-386), const ONLCR = 2 +pkg syscall (openbsd-386), const ONLRET = 128 +pkg syscall (openbsd-386), const ONOCR = 64 +pkg syscall (openbsd-386), const ONOEOT = 8 +pkg syscall (openbsd-386), const OPOST = 1 +pkg syscall (openbsd-386), const O_ACCMODE = 3 +pkg syscall (openbsd-386), const O_APPEND = 8 +pkg syscall (openbsd-386), const O_ASYNC = 64 +pkg syscall (openbsd-386), const O_CLOEXEC = 65536 +pkg syscall (openbsd-386), const O_CREAT = 512 +pkg syscall (openbsd-386), const O_DIRECTORY = 131072 +pkg syscall (openbsd-386), const O_DSYNC = 128 +pkg syscall (openbsd-386), const O_EXCL = 2048 +pkg syscall (openbsd-386), const O_EXLOCK = 32 +pkg syscall (openbsd-386), const O_FSYNC = 128 +pkg syscall (openbsd-386), const O_NDELAY = 4 +pkg syscall (openbsd-386), const O_NOCTTY = 32768 +pkg syscall (openbsd-386), const O_NOFOLLOW = 256 +pkg syscall (openbsd-386), const O_NONBLOCK = 4 +pkg syscall (openbsd-386), const O_RSYNC = 128 +pkg syscall (openbsd-386), const O_SHLOCK = 16 +pkg syscall (openbsd-386), const O_SYNC = 128 +pkg syscall (openbsd-386), const O_TRUNC = 1024 +pkg syscall (openbsd-386), const PARENB = 4096 +pkg syscall (openbsd-386), const PARMRK = 8 +pkg syscall (openbsd-386), const PARODD = 8192 +pkg syscall (openbsd-386), const PENDIN = 536870912 +pkg syscall (openbsd-386), const PF_FLUSH = 1 +pkg syscall (openbsd-386), const PTRACE_CONT = 7 +pkg syscall (openbsd-386), const PTRACE_KILL = 8 +pkg syscall (openbsd-386), const PTRACE_TRACEME = 0 +pkg syscall (openbsd-386), const PT_MASK = 4190208 +pkg syscall (openbsd-386), const RLIMIT_CORE = 4 +pkg syscall (openbsd-386), const RLIMIT_CPU = 0 +pkg syscall (openbsd-386), const RLIMIT_DATA = 2 +pkg syscall (openbsd-386), const RLIMIT_FSIZE = 1 +pkg syscall (openbsd-386), const RLIMIT_NOFILE = 8 +pkg syscall (openbsd-386), const RLIMIT_STACK = 3 +pkg syscall (openbsd-386), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (openbsd-386), const RTAX_AUTHOR = 6 +pkg syscall (openbsd-386), const RTAX_BRD = 7 +pkg syscall (openbsd-386), const RTAX_DST = 0 +pkg syscall (openbsd-386), const RTAX_GATEWAY = 1 +pkg syscall (openbsd-386), const RTAX_GENMASK = 3 +pkg syscall (openbsd-386), const RTAX_IFA = 5 +pkg syscall (openbsd-386), const RTAX_IFP = 4 +pkg syscall (openbsd-386), const RTAX_LABEL = 10 +pkg syscall (openbsd-386), const RTAX_MAX = 11 +pkg syscall (openbsd-386), const RTAX_NETMASK = 2 +pkg syscall (openbsd-386), const RTAX_SRC = 8 +pkg syscall (openbsd-386), const RTAX_SRCMASK = 9 +pkg syscall (openbsd-386), const RTA_AUTHOR = 64 +pkg syscall (openbsd-386), const RTA_BRD = 128 +pkg syscall (openbsd-386), const RTA_DST = 1 +pkg syscall (openbsd-386), const RTA_GATEWAY = 2 +pkg syscall (openbsd-386), const RTA_GENMASK = 8 +pkg syscall (openbsd-386), const RTA_IFA = 32 +pkg syscall (openbsd-386), const RTA_IFP = 16 +pkg syscall (openbsd-386), const RTA_LABEL = 1024 +pkg syscall (openbsd-386), const RTA_NETMASK = 4 +pkg syscall (openbsd-386), const RTA_SRC = 256 +pkg syscall (openbsd-386), const RTA_SRCMASK = 512 +pkg syscall (openbsd-386), const RTF_ANNOUNCE = 16384 +pkg syscall (openbsd-386), const RTF_BLACKHOLE = 4096 +pkg syscall (openbsd-386), const RTF_CLONED = 65536 +pkg syscall (openbsd-386), const RTF_CLONING = 256 +pkg syscall (openbsd-386), const RTF_DONE = 64 +pkg syscall (openbsd-386), const RTF_DYNAMIC = 16 +pkg syscall (openbsd-386), const RTF_FMASK = 63496 +pkg syscall (openbsd-386), const RTF_GATEWAY = 2 +pkg syscall (openbsd-386), const RTF_HOST = 4 +pkg syscall (openbsd-386), const RTF_LLINFO = 1024 +pkg syscall (openbsd-386), const RTF_MASK = 128 +pkg syscall (openbsd-386), const RTF_MODIFIED = 32 +pkg syscall (openbsd-386), const RTF_MPATH = 262144 +pkg syscall (openbsd-386), const RTF_MPLS = 1048576 +pkg syscall (openbsd-386), const RTF_PERMANENT_ARP = 8192 +pkg syscall (openbsd-386), const RTF_PROTO1 = 32768 +pkg syscall (openbsd-386), const RTF_PROTO2 = 16384 +pkg syscall (openbsd-386), const RTF_PROTO3 = 8192 +pkg syscall (openbsd-386), const RTF_REJECT = 8 +pkg syscall (openbsd-386), const RTF_SOURCE = 131072 +pkg syscall (openbsd-386), const RTF_STATIC = 2048 +pkg syscall (openbsd-386), const RTF_TUNNEL = 1048576 +pkg syscall (openbsd-386), const RTF_UP = 1 +pkg syscall (openbsd-386), const RTF_USETRAILERS = 32768 +pkg syscall (openbsd-386), const RTF_XRESOLVE = 512 +pkg syscall (openbsd-386), const RTM_ADD = 1 +pkg syscall (openbsd-386), const RTM_CHANGE = 3 +pkg syscall (openbsd-386), const RTM_DELADDR = 13 +pkg syscall (openbsd-386), const RTM_DELETE = 2 +pkg syscall (openbsd-386), const RTM_DESYNC = 16 +pkg syscall (openbsd-386), const RTM_GET = 4 +pkg syscall (openbsd-386), const RTM_IFANNOUNCE = 15 +pkg syscall (openbsd-386), const RTM_IFINFO = 14 +pkg syscall (openbsd-386), const RTM_LOCK = 8 +pkg syscall (openbsd-386), const RTM_LOSING = 5 +pkg syscall (openbsd-386), const RTM_MAXSIZE = 2048 +pkg syscall (openbsd-386), const RTM_MISS = 7 +pkg syscall (openbsd-386), const RTM_NEWADDR = 12 +pkg syscall (openbsd-386), const RTM_REDIRECT = 6 +pkg syscall (openbsd-386), const RTM_RESOLVE = 11 +pkg syscall (openbsd-386), const RTM_RTTUNIT = 1000000 +pkg syscall (openbsd-386), const RTM_VERSION = 4 +pkg syscall (openbsd-386), const RTV_EXPIRE = 4 +pkg syscall (openbsd-386), const RTV_HOPCOUNT = 2 +pkg syscall (openbsd-386), const RTV_MTU = 1 +pkg syscall (openbsd-386), const RTV_RPIPE = 8 +pkg syscall (openbsd-386), const RTV_RTT = 64 +pkg syscall (openbsd-386), const RTV_RTTVAR = 128 +pkg syscall (openbsd-386), const RTV_SPIPE = 16 +pkg syscall (openbsd-386), const RTV_SSTHRESH = 32 +pkg syscall (openbsd-386), const RT_TABLEID_MAX = 255 +pkg syscall (openbsd-386), const RUSAGE_CHILDREN = -1 +pkg syscall (openbsd-386), const RUSAGE_SELF = 0 +pkg syscall (openbsd-386), const RUSAGE_THREAD = 1 +pkg syscall (openbsd-386), const SCM_RIGHTS = 1 +pkg syscall (openbsd-386), const SCM_TIMESTAMP = 4 +pkg syscall (openbsd-386), const SIGBUS = 10 +pkg syscall (openbsd-386), const SIGCHLD = 20 +pkg syscall (openbsd-386), const SIGCONT = 19 +pkg syscall (openbsd-386), const SIGEMT = 7 +pkg syscall (openbsd-386), const SIGINFO = 29 +pkg syscall (openbsd-386), const SIGIO = 23 +pkg syscall (openbsd-386), const SIGIOT = 6 +pkg syscall (openbsd-386), const SIGPROF = 27 +pkg syscall (openbsd-386), const SIGSTOP = 17 +pkg syscall (openbsd-386), const SIGSYS = 12 +pkg syscall (openbsd-386), const SIGTHR = 32 +pkg syscall (openbsd-386), const SIGTSTP = 18 +pkg syscall (openbsd-386), const SIGTTIN = 21 +pkg syscall (openbsd-386), const SIGTTOU = 22 +pkg syscall (openbsd-386), const SIGURG = 16 +pkg syscall (openbsd-386), const SIGUSR1 = 30 +pkg syscall (openbsd-386), const SIGUSR2 = 31 +pkg syscall (openbsd-386), const SIGVTALRM = 26 +pkg syscall (openbsd-386), const SIGWINCH = 28 +pkg syscall (openbsd-386), const SIGXCPU = 24 +pkg syscall (openbsd-386), const SIGXFSZ = 25 +pkg syscall (openbsd-386), const SIOCADDMULTI = 2149607729 +pkg syscall (openbsd-386), const SIOCAIFADDR = 2151704858 +pkg syscall (openbsd-386), const SIOCAIFGROUP = 2149869959 +pkg syscall (openbsd-386), const SIOCALIFADDR = 2182637852 +pkg syscall (openbsd-386), const SIOCATMARK = 1074033415 +pkg syscall (openbsd-386), const SIOCBRDGADD = 2153015612 +pkg syscall (openbsd-386), const SIOCBRDGADDS = 2153015617 +pkg syscall (openbsd-386), const SIOCBRDGARL = 2154719565 +pkg syscall (openbsd-386), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-386), const SIOCBRDGDEL = 2153015613 +pkg syscall (openbsd-386), const SIOCBRDGDELS = 2153015618 +pkg syscall (openbsd-386), const SIOCBRDGFLUSH = 2153015624 +pkg syscall (openbsd-386), const SIOCBRDGFRL = 2154719566 +pkg syscall (openbsd-386), const SIOCBRDGGCACHE = 3222563137 +pkg syscall (openbsd-386), const SIOCBRDGGFD = 3222563154 +pkg syscall (openbsd-386), const SIOCBRDGGHT = 3222563153 +pkg syscall (openbsd-386), const SIOCBRDGGIFFLGS = 3226757438 +pkg syscall (openbsd-386), const SIOCBRDGGMA = 3222563155 +pkg syscall (openbsd-386), const SIOCBRDGGPARAM = 3224922456 +pkg syscall (openbsd-386), const SIOCBRDGGPRI = 3222563152 +pkg syscall (openbsd-386), const SIOCBRDGGRL = 3223873871 +pkg syscall (openbsd-386), const SIOCBRDGGSIFS = 3226757436 +pkg syscall (openbsd-386), const SIOCBRDGGTO = 3222563142 +pkg syscall (openbsd-386), const SIOCBRDGIFS = 3226757442 +pkg syscall (openbsd-386), const SIOCBRDGRTS = 3222825283 +pkg syscall (openbsd-386), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-386), const SIOCBRDGSCACHE = 2148821312 +pkg syscall (openbsd-386), const SIOCBRDGSFD = 2148821330 +pkg syscall (openbsd-386), const SIOCBRDGSHT = 2148821329 +pkg syscall (openbsd-386), const SIOCBRDGSIFCOST = 2153015637 +pkg syscall (openbsd-386), const SIOCBRDGSIFFLGS = 2153015615 +pkg syscall (openbsd-386), const SIOCBRDGSIFPRIO = 2153015636 +pkg syscall (openbsd-386), const SIOCBRDGSMA = 2148821331 +pkg syscall (openbsd-386), const SIOCBRDGSPRI = 2148821328 +pkg syscall (openbsd-386), const SIOCBRDGSPROTO = 2148821338 +pkg syscall (openbsd-386), const SIOCBRDGSTO = 2148821317 +pkg syscall (openbsd-386), const SIOCBRDGSTXHC = 2148821337 +pkg syscall (openbsd-386), const SIOCDELMULTI = 2149607730 +pkg syscall (openbsd-386), const SIOCDIFADDR = 2149607705 +pkg syscall (openbsd-386), const SIOCDIFGROUP = 2149869961 +pkg syscall (openbsd-386), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (openbsd-386), const SIOCDLIFADDR = 2182637854 +pkg syscall (openbsd-386), const SIOCGETKALIVE = 3222825380 +pkg syscall (openbsd-386), const SIOCGETLABEL = 2149607834 +pkg syscall (openbsd-386), const SIOCGETPFLOW = 3223349758 +pkg syscall (openbsd-386), const SIOCGETPFSYNC = 3223349752 +pkg syscall (openbsd-386), const SIOCGETSGCNT = 3222566196 +pkg syscall (openbsd-386), const SIOCGETVIFCNT = 3222566195 +pkg syscall (openbsd-386), const SIOCGHIWAT = 1074033409 +pkg syscall (openbsd-386), const SIOCGIFADDR = 3223349537 +pkg syscall (openbsd-386), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (openbsd-386), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (openbsd-386), const SIOCGIFCONF = 3221776676 +pkg syscall (openbsd-386), const SIOCGIFDATA = 3223349531 +pkg syscall (openbsd-386), const SIOCGIFDESCR = 3223349633 +pkg syscall (openbsd-386), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (openbsd-386), const SIOCGIFFLAGS = 3223349521 +pkg syscall (openbsd-386), const SIOCGIFGATTR = 3223611787 +pkg syscall (openbsd-386), const SIOCGIFGENERIC = 3223349562 +pkg syscall (openbsd-386), const SIOCGIFGMEMB = 3223611786 +pkg syscall (openbsd-386), const SIOCGIFGROUP = 3223611784 +pkg syscall (openbsd-386), const SIOCGIFMEDIA = 3223873846 +pkg syscall (openbsd-386), const SIOCGIFMETRIC = 3223349527 +pkg syscall (openbsd-386), const SIOCGIFMTU = 3223349630 +pkg syscall (openbsd-386), const SIOCGIFNETMASK = 3223349541 +pkg syscall (openbsd-386), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (openbsd-386), const SIOCGIFPRIORITY = 3223349660 +pkg syscall (openbsd-386), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (openbsd-386), const SIOCGIFRDOMAIN = 3223349664 +pkg syscall (openbsd-386), const SIOCGIFRTLABEL = 3223349635 +pkg syscall (openbsd-386), const SIOCGIFTIMESLOT = 3223349638 +pkg syscall (openbsd-386), const SIOCGIFXFLAGS = 3223349662 +pkg syscall (openbsd-386), const SIOCGLIFADDR = 3256379677 +pkg syscall (openbsd-386), const SIOCGLIFPHYADDR = 3256379723 +pkg syscall (openbsd-386), const SIOCGLIFPHYRTABLE = 3223349666 +pkg syscall (openbsd-386), const SIOCGLOWAT = 1074033411 +pkg syscall (openbsd-386), const SIOCGPGRP = 1074033417 +pkg syscall (openbsd-386), const SIOCGVH = 3223349750 +pkg syscall (openbsd-386), const SIOCIFCREATE = 2149607802 +pkg syscall (openbsd-386), const SIOCIFDESTROY = 2149607801 +pkg syscall (openbsd-386), const SIOCIFGCLONERS = 3222038904 +pkg syscall (openbsd-386), const SIOCSETKALIVE = 2149083555 +pkg syscall (openbsd-386), const SIOCSETLABEL = 2149607833 +pkg syscall (openbsd-386), const SIOCSETPFLOW = 2149607933 +pkg syscall (openbsd-386), const SIOCSETPFSYNC = 2149607927 +pkg syscall (openbsd-386), const SIOCSHIWAT = 2147775232 +pkg syscall (openbsd-386), const SIOCSIFADDR = 2149607692 +pkg syscall (openbsd-386), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (openbsd-386), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (openbsd-386), const SIOCSIFDESCR = 2149607808 +pkg syscall (openbsd-386), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (openbsd-386), const SIOCSIFFLAGS = 2149607696 +pkg syscall (openbsd-386), const SIOCSIFGATTR = 2149869964 +pkg syscall (openbsd-386), const SIOCSIFGENERIC = 2149607737 +pkg syscall (openbsd-386), const SIOCSIFLLADDR = 2149607711 +pkg syscall (openbsd-386), const SIOCSIFMEDIA = 3223349557 +pkg syscall (openbsd-386), const SIOCSIFMETRIC = 2149607704 +pkg syscall (openbsd-386), const SIOCSIFMTU = 2149607807 +pkg syscall (openbsd-386), const SIOCSIFNETMASK = 2149607702 +pkg syscall (openbsd-386), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (openbsd-386), const SIOCSIFPRIORITY = 2149607835 +pkg syscall (openbsd-386), const SIOCSIFRDOMAIN = 2149607839 +pkg syscall (openbsd-386), const SIOCSIFRTLABEL = 2149607810 +pkg syscall (openbsd-386), const SIOCSIFTIMESLOT = 2149607813 +pkg syscall (openbsd-386), const SIOCSIFXFLAGS = 2149607837 +pkg syscall (openbsd-386), const SIOCSLIFPHYADDR = 2182637898 +pkg syscall (openbsd-386), const SIOCSLIFPHYRTABLE = 2149607841 +pkg syscall (openbsd-386), const SIOCSLOWAT = 2147775234 +pkg syscall (openbsd-386), const SIOCSPGRP = 2147775240 +pkg syscall (openbsd-386), const SIOCSVH = 3223349749 +pkg syscall (openbsd-386), const SOCK_RDM = 4 +pkg syscall (openbsd-386), const SOL_SOCKET = 65535 +pkg syscall (openbsd-386), const SOMAXCONN = 128 +pkg syscall (openbsd-386), const SO_ACCEPTCONN = 2 +pkg syscall (openbsd-386), const SO_BINDANY = 4096 +pkg syscall (openbsd-386), const SO_BROADCAST = 32 +pkg syscall (openbsd-386), const SO_DEBUG = 1 +pkg syscall (openbsd-386), const SO_DONTROUTE = 16 +pkg syscall (openbsd-386), const SO_ERROR = 4103 +pkg syscall (openbsd-386), const SO_KEEPALIVE = 8 +pkg syscall (openbsd-386), const SO_LINGER = 128 +pkg syscall (openbsd-386), const SO_NETPROC = 4128 +pkg syscall (openbsd-386), const SO_OOBINLINE = 256 +pkg syscall (openbsd-386), const SO_PEERCRED = 4130 +pkg syscall (openbsd-386), const SO_RCVBUF = 4098 +pkg syscall (openbsd-386), const SO_RCVLOWAT = 4100 +pkg syscall (openbsd-386), const SO_RCVTIMEO = 4102 +pkg syscall (openbsd-386), const SO_REUSEADDR = 4 +pkg syscall (openbsd-386), const SO_REUSEPORT = 512 +pkg syscall (openbsd-386), const SO_RTABLE = 4129 +pkg syscall (openbsd-386), const SO_SNDBUF = 4097 +pkg syscall (openbsd-386), const SO_SNDLOWAT = 4099 +pkg syscall (openbsd-386), const SO_SNDTIMEO = 4101 +pkg syscall (openbsd-386), const SO_SPLICE = 4131 +pkg syscall (openbsd-386), const SO_TIMESTAMP = 2048 +pkg syscall (openbsd-386), const SO_TYPE = 4104 +pkg syscall (openbsd-386), const SO_USELOOPBACK = 64 +pkg syscall (openbsd-386), const SYS_ACCEPT = 30 +pkg syscall (openbsd-386), const SYS_ACCESS = 33 +pkg syscall (openbsd-386), const SYS_ACCT = 51 +pkg syscall (openbsd-386), const SYS_ADJFREQ = 305 +pkg syscall (openbsd-386), const SYS_ADJTIME = 140 +pkg syscall (openbsd-386), const SYS_BIND = 104 +pkg syscall (openbsd-386), const SYS_CHDIR = 12 +pkg syscall (openbsd-386), const SYS_CHFLAGS = 34 +pkg syscall (openbsd-386), const SYS_CHMOD = 15 +pkg syscall (openbsd-386), const SYS_CHOWN = 16 +pkg syscall (openbsd-386), const SYS_CHROOT = 61 +pkg syscall (openbsd-386), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-386), const SYS_CLOSE = 6 +pkg syscall (openbsd-386), const SYS_CLOSEFROM = 287 +pkg syscall (openbsd-386), const SYS_CONNECT = 98 +pkg syscall (openbsd-386), const SYS_DUP = 41 +pkg syscall (openbsd-386), const SYS_DUP2 = 90 +pkg syscall (openbsd-386), const SYS_EXECVE = 59 +pkg syscall (openbsd-386), const SYS_EXIT = 1 +pkg syscall (openbsd-386), const SYS_FACCESSAT = 313 +pkg syscall (openbsd-386), const SYS_FCHDIR = 13 +pkg syscall (openbsd-386), const SYS_FCHFLAGS = 35 +pkg syscall (openbsd-386), const SYS_FCHMOD = 124 +pkg syscall (openbsd-386), const SYS_FCHMODAT = 314 +pkg syscall (openbsd-386), const SYS_FCHOWN = 123 +pkg syscall (openbsd-386), const SYS_FCHOWNAT = 315 +pkg syscall (openbsd-386), const SYS_FCNTL = 92 +pkg syscall (openbsd-386), const SYS_FHOPEN = 264 +pkg syscall (openbsd-386), const SYS_FHSTAT = 294 +pkg syscall (openbsd-386), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-386), const SYS_FLOCK = 131 +pkg syscall (openbsd-386), const SYS_FORK = 2 +pkg syscall (openbsd-386), const SYS_FPATHCONF = 192 +pkg syscall (openbsd-386), const SYS_FSTAT = 292 +pkg syscall (openbsd-386), const SYS_FSTATAT = 316 +pkg syscall (openbsd-386), const SYS_FSTATFS = 308 +pkg syscall (openbsd-386), const SYS_FSYNC = 95 +pkg syscall (openbsd-386), const SYS_FTRUNCATE = 201 +pkg syscall (openbsd-386), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-386), const SYS_FUTIMES = 206 +pkg syscall (openbsd-386), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-386), const SYS_GETDTABLECOUNT = 18 +pkg syscall (openbsd-386), const SYS_GETEGID = 43 +pkg syscall (openbsd-386), const SYS_GETEUID = 25 +pkg syscall (openbsd-386), const SYS_GETFH = 161 +pkg syscall (openbsd-386), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-386), const SYS_GETGID = 47 +pkg syscall (openbsd-386), const SYS_GETGROUPS = 79 +pkg syscall (openbsd-386), const SYS_GETITIMER = 86 +pkg syscall (openbsd-386), const SYS_GETLOGIN = 49 +pkg syscall (openbsd-386), const SYS_GETPEERNAME = 31 +pkg syscall (openbsd-386), const SYS_GETPGID = 207 +pkg syscall (openbsd-386), const SYS_GETPGRP = 81 +pkg syscall (openbsd-386), const SYS_GETPID = 20 +pkg syscall (openbsd-386), const SYS_GETPPID = 39 +pkg syscall (openbsd-386), const SYS_GETPRIORITY = 100 +pkg syscall (openbsd-386), const SYS_GETRESGID = 283 +pkg syscall (openbsd-386), const SYS_GETRESUID = 281 +pkg syscall (openbsd-386), const SYS_GETRLIMIT = 194 +pkg syscall (openbsd-386), const SYS_GETRTABLE = 311 +pkg syscall (openbsd-386), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-386), const SYS_GETSID = 255 +pkg syscall (openbsd-386), const SYS_GETSOCKNAME = 32 +pkg syscall (openbsd-386), const SYS_GETSOCKOPT = 118 +pkg syscall (openbsd-386), const SYS_GETTHRID = 299 +pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-386), const SYS_GETUID = 24 +pkg syscall (openbsd-386), const SYS_IOCTL = 54 +pkg syscall (openbsd-386), const SYS_ISSETUGID = 253 +pkg syscall (openbsd-386), const SYS_KEVENT = 270 +pkg syscall (openbsd-386), const SYS_KILL = 37 +pkg syscall (openbsd-386), const SYS_KQUEUE = 269 +pkg syscall (openbsd-386), const SYS_KTRACE = 45 +pkg syscall (openbsd-386), const SYS_LCHOWN = 254 +pkg syscall (openbsd-386), const SYS_LINK = 9 +pkg syscall (openbsd-386), const SYS_LINKAT = 317 +pkg syscall (openbsd-386), const SYS_LISTEN = 106 +pkg syscall (openbsd-386), const SYS_LSEEK = 199 +pkg syscall (openbsd-386), const SYS_LSTAT = 293 +pkg syscall (openbsd-386), const SYS_MADVISE = 75 +pkg syscall (openbsd-386), const SYS_MINCORE = 78 +pkg syscall (openbsd-386), const SYS_MINHERIT = 250 +pkg syscall (openbsd-386), const SYS_MKDIR = 136 +pkg syscall (openbsd-386), const SYS_MKDIRAT = 318 +pkg syscall (openbsd-386), const SYS_MKFIFO = 132 +pkg syscall (openbsd-386), const SYS_MKFIFOAT = 319 +pkg syscall (openbsd-386), const SYS_MKNOD = 14 +pkg syscall (openbsd-386), const SYS_MKNODAT = 320 +pkg syscall (openbsd-386), const SYS_MLOCK = 203 +pkg syscall (openbsd-386), const SYS_MLOCKALL = 271 +pkg syscall (openbsd-386), const SYS_MMAP = 197 +pkg syscall (openbsd-386), const SYS_MOUNT = 21 +pkg syscall (openbsd-386), const SYS_MPROTECT = 74 +pkg syscall (openbsd-386), const SYS_MQUERY = 286 +pkg syscall (openbsd-386), const SYS_MSGCTL = 297 +pkg syscall (openbsd-386), const SYS_MSGGET = 225 +pkg syscall (openbsd-386), const SYS_MSGRCV = 227 +pkg syscall (openbsd-386), const SYS_MSGSND = 226 +pkg syscall (openbsd-386), const SYS_MSYNC = 256 +pkg syscall (openbsd-386), const SYS_MUNLOCK = 204 +pkg syscall (openbsd-386), const SYS_MUNLOCKALL = 272 +pkg syscall (openbsd-386), const SYS_MUNMAP = 73 +pkg syscall (openbsd-386), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-386), const SYS_NFSSVC = 155 +pkg syscall (openbsd-386), const SYS_OBREAK = 17 +pkg syscall (openbsd-386), const SYS_OPEN = 5 +pkg syscall (openbsd-386), const SYS_OPENAT = 321 +pkg syscall (openbsd-386), const SYS_PATHCONF = 191 +pkg syscall (openbsd-386), const SYS_PIPE = 263 +pkg syscall (openbsd-386), const SYS_POLL = 252 +pkg syscall (openbsd-386), const SYS_PREAD = 173 +pkg syscall (openbsd-386), const SYS_PREADV = 267 +pkg syscall (openbsd-386), const SYS_PROFIL = 44 +pkg syscall (openbsd-386), const SYS_PTRACE = 26 +pkg syscall (openbsd-386), const SYS_PWRITE = 174 +pkg syscall (openbsd-386), const SYS_PWRITEV = 268 +pkg syscall (openbsd-386), const SYS_QUOTACTL = 148 +pkg syscall (openbsd-386), const SYS_READ = 3 +pkg syscall (openbsd-386), const SYS_READLINK = 58 +pkg syscall (openbsd-386), const SYS_READLINKAT = 322 +pkg syscall (openbsd-386), const SYS_READV = 120 +pkg syscall (openbsd-386), const SYS_REBOOT = 55 +pkg syscall (openbsd-386), const SYS_RECVFROM = 29 +pkg syscall (openbsd-386), const SYS_RECVMSG = 27 +pkg syscall (openbsd-386), const SYS_RENAME = 128 +pkg syscall (openbsd-386), const SYS_RENAMEAT = 323 +pkg syscall (openbsd-386), const SYS_REVOKE = 56 +pkg syscall (openbsd-386), const SYS_RMDIR = 137 +pkg syscall (openbsd-386), const SYS_SCHED_YIELD = 298 +pkg syscall (openbsd-386), const SYS_SELECT = 93 +pkg syscall (openbsd-386), const SYS_SEMGET = 221 +pkg syscall (openbsd-386), const SYS_SEMOP = 290 +pkg syscall (openbsd-386), const SYS_SENDMSG = 28 +pkg syscall (openbsd-386), const SYS_SENDTO = 133 +pkg syscall (openbsd-386), const SYS_SETEGID = 182 +pkg syscall (openbsd-386), const SYS_SETEUID = 183 +pkg syscall (openbsd-386), const SYS_SETGID = 181 +pkg syscall (openbsd-386), const SYS_SETGROUPS = 80 +pkg syscall (openbsd-386), const SYS_SETITIMER = 83 +pkg syscall (openbsd-386), const SYS_SETLOGIN = 50 +pkg syscall (openbsd-386), const SYS_SETPGID = 82 +pkg syscall (openbsd-386), const SYS_SETPRIORITY = 96 +pkg syscall (openbsd-386), const SYS_SETREGID = 127 +pkg syscall (openbsd-386), const SYS_SETRESGID = 284 +pkg syscall (openbsd-386), const SYS_SETRESUID = 282 +pkg syscall (openbsd-386), const SYS_SETREUID = 126 +pkg syscall (openbsd-386), const SYS_SETRLIMIT = 195 +pkg syscall (openbsd-386), const SYS_SETRTABLE = 310 +pkg syscall (openbsd-386), const SYS_SETSID = 147 +pkg syscall (openbsd-386), const SYS_SETSOCKOPT = 105 +pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-386), const SYS_SETUID = 23 +pkg syscall (openbsd-386), const SYS_SHMAT = 228 +pkg syscall (openbsd-386), const SYS_SHMCTL = 296 +pkg syscall (openbsd-386), const SYS_SHMDT = 230 +pkg syscall (openbsd-386), const SYS_SHMGET = 289 +pkg syscall (openbsd-386), const SYS_SHUTDOWN = 134 +pkg syscall (openbsd-386), const SYS_SIGACTION = 46 +pkg syscall (openbsd-386), const SYS_SIGALTSTACK = 288 +pkg syscall (openbsd-386), const SYS_SIGPENDING = 52 +pkg syscall (openbsd-386), const SYS_SIGPROCMASK = 48 +pkg syscall (openbsd-386), const SYS_SIGRETURN = 103 +pkg syscall (openbsd-386), const SYS_SIGSUSPEND = 111 +pkg syscall (openbsd-386), const SYS_SOCKET = 97 +pkg syscall (openbsd-386), const SYS_SOCKETPAIR = 135 +pkg syscall (openbsd-386), const SYS_STAT = 291 +pkg syscall (openbsd-386), const SYS_STATFS = 307 +pkg syscall (openbsd-386), const SYS_SWAPCTL = 193 +pkg syscall (openbsd-386), const SYS_SYMLINK = 57 +pkg syscall (openbsd-386), const SYS_SYMLINKAT = 324 +pkg syscall (openbsd-386), const SYS_SYNC = 36 +pkg syscall (openbsd-386), const SYS_SYSARCH = 165 +pkg syscall (openbsd-386), const SYS_TRUNCATE = 200 +pkg syscall (openbsd-386), const SYS_UMASK = 60 +pkg syscall (openbsd-386), const SYS_UNLINK = 10 +pkg syscall (openbsd-386), const SYS_UNLINKAT = 325 +pkg syscall (openbsd-386), const SYS_UNMOUNT = 22 +pkg syscall (openbsd-386), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-386), const SYS_UTIMES = 138 +pkg syscall (openbsd-386), const SYS_VFORK = 66 +pkg syscall (openbsd-386), const SYS_WAIT4 = 7 +pkg syscall (openbsd-386), const SYS_WRITE = 4 +pkg syscall (openbsd-386), const SYS_WRITEV = 121 +pkg syscall (openbsd-386), const SYS___GETCWD = 304 +pkg syscall (openbsd-386), const SYS___GET_TCB = 330 +pkg syscall (openbsd-386), const SYS___SEMCTL = 295 +pkg syscall (openbsd-386), const SYS___SET_TCB = 329 +pkg syscall (openbsd-386), const SYS___SYSCTL = 202 +pkg syscall (openbsd-386), const SYS___TFORK = 8 +pkg syscall (openbsd-386), const SYS___THREXIT = 302 +pkg syscall (openbsd-386), const SYS___THRSIGDIVERT = 303 +pkg syscall (openbsd-386), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-386), const SYS___THRWAKEUP = 301 +pkg syscall (openbsd-386), const S_IFMT = 61440 +pkg syscall (openbsd-386), const SizeofBpfHdr = 20 +pkg syscall (openbsd-386), const SizeofBpfInsn = 8 +pkg syscall (openbsd-386), const SizeofBpfProgram = 8 +pkg syscall (openbsd-386), const SizeofBpfStat = 8 +pkg syscall (openbsd-386), const SizeofBpfVersion = 4 +pkg syscall (openbsd-386), const SizeofCmsghdr = 12 +pkg syscall (openbsd-386), const SizeofIPMreq = 8 +pkg syscall (openbsd-386), const SizeofIPv6Mreq = 20 +pkg syscall (openbsd-386), const SizeofIfAnnounceMsghdr = 26 +pkg syscall (openbsd-386), const SizeofIfData = 208 +pkg syscall (openbsd-386), const SizeofIfMsghdr = 232 +pkg syscall (openbsd-386), const SizeofIfaMsghdr = 24 +pkg syscall (openbsd-386), const SizeofInet6Pktinfo = 20 +pkg syscall (openbsd-386), const SizeofLinger = 8 +pkg syscall (openbsd-386), const SizeofMsghdr = 28 +pkg syscall (openbsd-386), const SizeofRtMetrics = 48 +pkg syscall (openbsd-386), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-386), const SizeofSockaddrAny = 108 +pkg syscall (openbsd-386), const SizeofSockaddrDatalink = 32 +pkg syscall (openbsd-386), const SizeofSockaddrInet4 = 16 +pkg syscall (openbsd-386), const SizeofSockaddrInet6 = 28 +pkg syscall (openbsd-386), const SizeofSockaddrUnix = 106 +pkg syscall (openbsd-386), const TCIFLUSH = 1 +pkg syscall (openbsd-386), const TCIOFLUSH = 3 +pkg syscall (openbsd-386), const TCOFLUSH = 2 +pkg syscall (openbsd-386), const TCP_MAXBURST = 4 +pkg syscall (openbsd-386), const TCP_MAXSEG = 2 +pkg syscall (openbsd-386), const TCP_MAXWIN = 65535 +pkg syscall (openbsd-386), const TCP_MAX_SACK = 3 +pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT = 14 +pkg syscall (openbsd-386), const TCP_MD5SIG = 4 +pkg syscall (openbsd-386), const TCP_MSS = 512 +pkg syscall (openbsd-386), const TCP_NSTATES = 11 +pkg syscall (openbsd-386), const TCP_SACK_ENABLE = 8 +pkg syscall (openbsd-386), const TCSAFLUSH = 2 +pkg syscall (openbsd-386), const TIOCCBRK = 536900730 +pkg syscall (openbsd-386), const TIOCCDTR = 536900728 +pkg syscall (openbsd-386), const TIOCCONS = 2147775586 +pkg syscall (openbsd-386), const TIOCDRAIN = 536900702 +pkg syscall (openbsd-386), const TIOCEXCL = 536900621 +pkg syscall (openbsd-386), const TIOCEXT = 2147775584 +pkg syscall (openbsd-386), const TIOCFLAG_CLOCAL = 2 +pkg syscall (openbsd-386), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (openbsd-386), const TIOCFLAG_MDMBUF = 8 +pkg syscall (openbsd-386), const TIOCFLAG_PPS = 16 +pkg syscall (openbsd-386), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (openbsd-386), const TIOCFLUSH = 2147775504 +pkg syscall (openbsd-386), const TIOCGETA = 1076655123 +pkg syscall (openbsd-386), const TIOCGETD = 1074033690 +pkg syscall (openbsd-386), const TIOCGFLAGS = 1074033757 +pkg syscall (openbsd-386), const TIOCGPGRP = 1074033783 +pkg syscall (openbsd-386), const TIOCGTSTAMP = 1074295899 +pkg syscall (openbsd-386), const TIOCGWINSZ = 1074295912 +pkg syscall (openbsd-386), const TIOCMBIC = 2147775595 +pkg syscall (openbsd-386), const TIOCMBIS = 2147775596 +pkg syscall (openbsd-386), const TIOCMGET = 1074033770 +pkg syscall (openbsd-386), const TIOCMODG = 1074033770 +pkg syscall (openbsd-386), const TIOCMODS = 2147775597 +pkg syscall (openbsd-386), const TIOCMSET = 2147775597 +pkg syscall (openbsd-386), const TIOCM_CAR = 64 +pkg syscall (openbsd-386), const TIOCM_CD = 64 +pkg syscall (openbsd-386), const TIOCM_CTS = 32 +pkg syscall (openbsd-386), const TIOCM_DSR = 256 +pkg syscall (openbsd-386), const TIOCM_DTR = 2 +pkg syscall (openbsd-386), const TIOCM_LE = 1 +pkg syscall (openbsd-386), const TIOCM_RI = 128 +pkg syscall (openbsd-386), const TIOCM_RNG = 128 +pkg syscall (openbsd-386), const TIOCM_RTS = 4 +pkg syscall (openbsd-386), const TIOCM_SR = 16 +pkg syscall (openbsd-386), const TIOCM_ST = 8 +pkg syscall (openbsd-386), const TIOCNOTTY = 536900721 +pkg syscall (openbsd-386), const TIOCNXCL = 536900622 +pkg syscall (openbsd-386), const TIOCOUTQ = 1074033779 +pkg syscall (openbsd-386), const TIOCPKT = 2147775600 +pkg syscall (openbsd-386), const TIOCPKT_DATA = 0 +pkg syscall (openbsd-386), const TIOCPKT_DOSTOP = 32 +pkg syscall (openbsd-386), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (openbsd-386), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (openbsd-386), const TIOCPKT_IOCTL = 64 +pkg syscall (openbsd-386), const TIOCPKT_NOSTOP = 16 +pkg syscall (openbsd-386), const TIOCPKT_START = 8 +pkg syscall (openbsd-386), const TIOCPKT_STOP = 4 +pkg syscall (openbsd-386), const TIOCREMOTE = 2147775593 +pkg syscall (openbsd-386), const TIOCSBRK = 536900731 +pkg syscall (openbsd-386), const TIOCSCTTY = 536900705 +pkg syscall (openbsd-386), const TIOCSDTR = 536900729 +pkg syscall (openbsd-386), const TIOCSETA = 2150396948 +pkg syscall (openbsd-386), const TIOCSETAF = 2150396950 +pkg syscall (openbsd-386), const TIOCSETAW = 2150396949 +pkg syscall (openbsd-386), const TIOCSETD = 2147775515 +pkg syscall (openbsd-386), const TIOCSFLAGS = 2147775580 +pkg syscall (openbsd-386), const TIOCSIG = 2147775583 +pkg syscall (openbsd-386), const TIOCSPGRP = 2147775606 +pkg syscall (openbsd-386), const TIOCSTART = 536900718 +pkg syscall (openbsd-386), const TIOCSTAT = 2147775589 +pkg syscall (openbsd-386), const TIOCSTI = 2147578994 +pkg syscall (openbsd-386), const TIOCSTOP = 536900719 +pkg syscall (openbsd-386), const TIOCSTSTAMP = 2148037722 +pkg syscall (openbsd-386), const TIOCSWINSZ = 2148037735 +pkg syscall (openbsd-386), const TIOCUCNTL = 2147775590 +pkg syscall (openbsd-386), const TOSTOP = 4194304 +pkg syscall (openbsd-386), const VDISCARD = 15 +pkg syscall (openbsd-386), const VDSUSP = 11 +pkg syscall (openbsd-386), const VEOF = 0 +pkg syscall (openbsd-386), const VEOL = 1 +pkg syscall (openbsd-386), const VEOL2 = 2 +pkg syscall (openbsd-386), const VERASE = 3 +pkg syscall (openbsd-386), const VINTR = 8 +pkg syscall (openbsd-386), const VKILL = 5 +pkg syscall (openbsd-386), const VLNEXT = 14 +pkg syscall (openbsd-386), const VMIN = 16 +pkg syscall (openbsd-386), const VQUIT = 9 +pkg syscall (openbsd-386), const VREPRINT = 6 +pkg syscall (openbsd-386), const VSTART = 12 +pkg syscall (openbsd-386), const VSTATUS = 18 +pkg syscall (openbsd-386), const VSTOP = 13 +pkg syscall (openbsd-386), const VSUSP = 10 +pkg syscall (openbsd-386), const VTIME = 17 +pkg syscall (openbsd-386), const VWERASE = 4 +pkg syscall (openbsd-386), const WALTSIG = 4 +pkg syscall (openbsd-386), const WCONTINUED = 8 +pkg syscall (openbsd-386), const WCOREFLAG = 128 +pkg syscall (openbsd-386), const WNOHANG = 1 +pkg syscall (openbsd-386), const WSTOPPED = 127 +pkg syscall (openbsd-386), const WUNTRACED = 2 +pkg syscall (openbsd-386-cgo), const AF_APPLETALK = 16 +pkg syscall (openbsd-386-cgo), const AF_BLUETOOTH = 32 +pkg syscall (openbsd-386-cgo), const AF_CCITT = 10 +pkg syscall (openbsd-386-cgo), const AF_CHAOS = 5 +pkg syscall (openbsd-386-cgo), const AF_CNT = 21 +pkg syscall (openbsd-386-cgo), const AF_COIP = 20 +pkg syscall (openbsd-386-cgo), const AF_DATAKIT = 9 +pkg syscall (openbsd-386-cgo), const AF_DECnet = 12 +pkg syscall (openbsd-386-cgo), const AF_DLI = 13 +pkg syscall (openbsd-386-cgo), const AF_E164 = 26 +pkg syscall (openbsd-386-cgo), const AF_ECMA = 8 +pkg syscall (openbsd-386-cgo), const AF_ENCAP = 28 +pkg syscall (openbsd-386-cgo), const AF_HYLINK = 15 +pkg syscall (openbsd-386-cgo), const AF_IMPLINK = 3 +pkg syscall (openbsd-386-cgo), const AF_INET6 = 24 +pkg syscall (openbsd-386-cgo), const AF_IPX = 23 +pkg syscall (openbsd-386-cgo), const AF_ISDN = 26 +pkg syscall (openbsd-386-cgo), const AF_ISO = 7 +pkg syscall (openbsd-386-cgo), const AF_KEY = 30 +pkg syscall (openbsd-386-cgo), const AF_LAT = 14 +pkg syscall (openbsd-386-cgo), const AF_LINK = 18 +pkg syscall (openbsd-386-cgo), const AF_LOCAL = 1 +pkg syscall (openbsd-386-cgo), const AF_MAX = 36 +pkg syscall (openbsd-386-cgo), const AF_MPLS = 33 +pkg syscall (openbsd-386-cgo), const AF_NATM = 27 +pkg syscall (openbsd-386-cgo), const AF_NS = 6 +pkg syscall (openbsd-386-cgo), const AF_OSI = 7 +pkg syscall (openbsd-386-cgo), const AF_PUP = 4 +pkg syscall (openbsd-386-cgo), const AF_ROUTE = 17 +pkg syscall (openbsd-386-cgo), const AF_SIP = 29 +pkg syscall (openbsd-386-cgo), const AF_SNA = 11 +pkg syscall (openbsd-386-cgo), const ARPHRD_ETHER = 1 +pkg syscall (openbsd-386-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (openbsd-386-cgo), const B0 = 0 +pkg syscall (openbsd-386-cgo), const B110 = 110 +pkg syscall (openbsd-386-cgo), const B115200 = 115200 +pkg syscall (openbsd-386-cgo), const B1200 = 1200 +pkg syscall (openbsd-386-cgo), const B134 = 134 +pkg syscall (openbsd-386-cgo), const B14400 = 14400 +pkg syscall (openbsd-386-cgo), const B150 = 150 +pkg syscall (openbsd-386-cgo), const B1800 = 1800 +pkg syscall (openbsd-386-cgo), const B19200 = 19200 +pkg syscall (openbsd-386-cgo), const B200 = 200 +pkg syscall (openbsd-386-cgo), const B230400 = 230400 +pkg syscall (openbsd-386-cgo), const B2400 = 2400 +pkg syscall (openbsd-386-cgo), const B28800 = 28800 +pkg syscall (openbsd-386-cgo), const B300 = 300 +pkg syscall (openbsd-386-cgo), const B38400 = 38400 +pkg syscall (openbsd-386-cgo), const B4800 = 4800 +pkg syscall (openbsd-386-cgo), const B50 = 50 +pkg syscall (openbsd-386-cgo), const B57600 = 57600 +pkg syscall (openbsd-386-cgo), const B600 = 600 +pkg syscall (openbsd-386-cgo), const B7200 = 7200 +pkg syscall (openbsd-386-cgo), const B75 = 75 +pkg syscall (openbsd-386-cgo), const B76800 = 76800 +pkg syscall (openbsd-386-cgo), const B9600 = 9600 +pkg syscall (openbsd-386-cgo), const BIOCFLUSH = 536887912 +pkg syscall (openbsd-386-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (openbsd-386-cgo), const BIOCGDIRFILT = 1074020988 +pkg syscall (openbsd-386-cgo), const BIOCGDLT = 1074020970 +pkg syscall (openbsd-386-cgo), const BIOCGDLTLIST = 3221766779 +pkg syscall (openbsd-386-cgo), const BIOCGETIF = 1075855979 +pkg syscall (openbsd-386-cgo), const BIOCGFILDROP = 1074020984 +pkg syscall (openbsd-386-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (openbsd-386-cgo), const BIOCGRSIG = 1074020979 +pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT = 1074283118 +pkg syscall (openbsd-386-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (openbsd-386-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (openbsd-386-cgo), const BIOCLOCK = 536887926 +pkg syscall (openbsd-386-cgo), const BIOCPROMISC = 536887913 +pkg syscall (openbsd-386-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (openbsd-386-cgo), const BIOCSDIRFILT = 2147762813 +pkg syscall (openbsd-386-cgo), const BIOCSDLT = 2147762810 +pkg syscall (openbsd-386-cgo), const BIOCSETF = 2148024935 +pkg syscall (openbsd-386-cgo), const BIOCSETIF = 2149597804 +pkg syscall (openbsd-386-cgo), const BIOCSETWF = 2148024951 +pkg syscall (openbsd-386-cgo), const BIOCSFILDROP = 2147762809 +pkg syscall (openbsd-386-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (openbsd-386-cgo), const BIOCSRSIG = 2147762802 +pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT = 2148024941 +pkg syscall (openbsd-386-cgo), const BIOCVERSION = 1074020977 +pkg syscall (openbsd-386-cgo), const BPF_A = 16 +pkg syscall (openbsd-386-cgo), const BPF_ABS = 32 +pkg syscall (openbsd-386-cgo), const BPF_ADD = 0 +pkg syscall (openbsd-386-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (openbsd-386-cgo), const BPF_ALU = 4 +pkg syscall (openbsd-386-cgo), const BPF_AND = 80 +pkg syscall (openbsd-386-cgo), const BPF_B = 16 +pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_IN = 1 +pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_OUT = 2 +pkg syscall (openbsd-386-cgo), const BPF_DIV = 48 +pkg syscall (openbsd-386-cgo), const BPF_H = 8 +pkg syscall (openbsd-386-cgo), const BPF_IMM = 0 +pkg syscall (openbsd-386-cgo), const BPF_IND = 64 +pkg syscall (openbsd-386-cgo), const BPF_JA = 0 +pkg syscall (openbsd-386-cgo), const BPF_JEQ = 16 +pkg syscall (openbsd-386-cgo), const BPF_JGE = 48 +pkg syscall (openbsd-386-cgo), const BPF_JGT = 32 +pkg syscall (openbsd-386-cgo), const BPF_JMP = 5 +pkg syscall (openbsd-386-cgo), const BPF_JSET = 64 +pkg syscall (openbsd-386-cgo), const BPF_K = 0 +pkg syscall (openbsd-386-cgo), const BPF_LD = 0 +pkg syscall (openbsd-386-cgo), const BPF_LDX = 1 +pkg syscall (openbsd-386-cgo), const BPF_LEN = 128 +pkg syscall (openbsd-386-cgo), const BPF_LSH = 96 +pkg syscall (openbsd-386-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (openbsd-386-cgo), const BPF_MAXBUFSIZE = 2097152 +pkg syscall (openbsd-386-cgo), const BPF_MAXINSNS = 512 +pkg syscall (openbsd-386-cgo), const BPF_MEM = 96 +pkg syscall (openbsd-386-cgo), const BPF_MEMWORDS = 16 +pkg syscall (openbsd-386-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (openbsd-386-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (openbsd-386-cgo), const BPF_MISC = 7 +pkg syscall (openbsd-386-cgo), const BPF_MSH = 160 +pkg syscall (openbsd-386-cgo), const BPF_MUL = 32 +pkg syscall (openbsd-386-cgo), const BPF_NEG = 128 +pkg syscall (openbsd-386-cgo), const BPF_OR = 64 +pkg syscall (openbsd-386-cgo), const BPF_RELEASE = 199606 +pkg syscall (openbsd-386-cgo), const BPF_RET = 6 +pkg syscall (openbsd-386-cgo), const BPF_RSH = 112 +pkg syscall (openbsd-386-cgo), const BPF_ST = 2 +pkg syscall (openbsd-386-cgo), const BPF_STX = 3 +pkg syscall (openbsd-386-cgo), const BPF_SUB = 16 +pkg syscall (openbsd-386-cgo), const BPF_TAX = 0 +pkg syscall (openbsd-386-cgo), const BPF_TXA = 128 +pkg syscall (openbsd-386-cgo), const BPF_W = 0 +pkg syscall (openbsd-386-cgo), const BPF_X = 8 +pkg syscall (openbsd-386-cgo), const BRKINT = 2 +pkg syscall (openbsd-386-cgo), const CFLUSH = 15 +pkg syscall (openbsd-386-cgo), const CLOCAL = 32768 +pkg syscall (openbsd-386-cgo), const CREAD = 2048 +pkg syscall (openbsd-386-cgo), const CS5 = 0 +pkg syscall (openbsd-386-cgo), const CS6 = 256 +pkg syscall (openbsd-386-cgo), const CS7 = 512 +pkg syscall (openbsd-386-cgo), const CS8 = 768 +pkg syscall (openbsd-386-cgo), const CSIZE = 768 +pkg syscall (openbsd-386-cgo), const CSTART = 17 +pkg syscall (openbsd-386-cgo), const CSTATUS = 255 +pkg syscall (openbsd-386-cgo), const CSTOP = 19 +pkg syscall (openbsd-386-cgo), const CSTOPB = 1024 +pkg syscall (openbsd-386-cgo), const CSUSP = 26 +pkg syscall (openbsd-386-cgo), const CTL_MAXNAME = 12 +pkg syscall (openbsd-386-cgo), const CTL_NET = 4 +pkg syscall (openbsd-386-cgo), const DIOCOSFPFLUSH = 536888398 +pkg syscall (openbsd-386-cgo), const DLT_ARCNET = 7 +pkg syscall (openbsd-386-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (openbsd-386-cgo), const DLT_AX25 = 3 +pkg syscall (openbsd-386-cgo), const DLT_CHAOS = 5 +pkg syscall (openbsd-386-cgo), const DLT_C_HDLC = 104 +pkg syscall (openbsd-386-cgo), const DLT_EN10MB = 1 +pkg syscall (openbsd-386-cgo), const DLT_EN3MB = 2 +pkg syscall (openbsd-386-cgo), const DLT_ENC = 13 +pkg syscall (openbsd-386-cgo), const DLT_FDDI = 10 +pkg syscall (openbsd-386-cgo), const DLT_IEEE802 = 6 +pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (openbsd-386-cgo), const DLT_LOOP = 12 +pkg syscall (openbsd-386-cgo), const DLT_MPLS = 219 +pkg syscall (openbsd-386-cgo), const DLT_NULL = 0 +pkg syscall (openbsd-386-cgo), const DLT_PFLOG = 117 +pkg syscall (openbsd-386-cgo), const DLT_PFSYNC = 18 +pkg syscall (openbsd-386-cgo), const DLT_PPP = 9 +pkg syscall (openbsd-386-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (openbsd-386-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (openbsd-386-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (openbsd-386-cgo), const DLT_PRONET = 4 +pkg syscall (openbsd-386-cgo), const DLT_RAW = 14 +pkg syscall (openbsd-386-cgo), const DLT_SLIP = 8 +pkg syscall (openbsd-386-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (openbsd-386-cgo), const DT_BLK = 6 +pkg syscall (openbsd-386-cgo), const DT_CHR = 2 +pkg syscall (openbsd-386-cgo), const DT_DIR = 4 +pkg syscall (openbsd-386-cgo), const DT_FIFO = 1 +pkg syscall (openbsd-386-cgo), const DT_LNK = 10 +pkg syscall (openbsd-386-cgo), const DT_REG = 8 +pkg syscall (openbsd-386-cgo), const DT_SOCK = 12 +pkg syscall (openbsd-386-cgo), const DT_UNKNOWN = 0 +pkg syscall (openbsd-386-cgo), const E2BIG = 7 +pkg syscall (openbsd-386-cgo), const EACCES = 13 +pkg syscall (openbsd-386-cgo), const EADDRINUSE = 48 +pkg syscall (openbsd-386-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (openbsd-386-cgo), const EAFNOSUPPORT = 47 +pkg syscall (openbsd-386-cgo), const EAGAIN = 35 +pkg syscall (openbsd-386-cgo), const EALREADY = 37 +pkg syscall (openbsd-386-cgo), const EAUTH = 80 +pkg syscall (openbsd-386-cgo), const EBADF = 9 +pkg syscall (openbsd-386-cgo), const EBADRPC = 72 +pkg syscall (openbsd-386-cgo), const EBUSY = 16 +pkg syscall (openbsd-386-cgo), const ECANCELED = 88 +pkg syscall (openbsd-386-cgo), const ECHILD = 10 +pkg syscall (openbsd-386-cgo), const ECHO = 8 +pkg syscall (openbsd-386-cgo), const ECHOCTL = 64 +pkg syscall (openbsd-386-cgo), const ECHOE = 2 +pkg syscall (openbsd-386-cgo), const ECHOK = 4 +pkg syscall (openbsd-386-cgo), const ECHOKE = 1 +pkg syscall (openbsd-386-cgo), const ECHONL = 16 +pkg syscall (openbsd-386-cgo), const ECHOPRT = 32 +pkg syscall (openbsd-386-cgo), const ECONNABORTED = 53 +pkg syscall (openbsd-386-cgo), const ECONNREFUSED = 61 +pkg syscall (openbsd-386-cgo), const ECONNRESET = 54 +pkg syscall (openbsd-386-cgo), const EDEADLK = 11 +pkg syscall (openbsd-386-cgo), const EDESTADDRREQ = 39 +pkg syscall (openbsd-386-cgo), const EDOM = 33 +pkg syscall (openbsd-386-cgo), const EDQUOT = 69 +pkg syscall (openbsd-386-cgo), const EEXIST = 17 +pkg syscall (openbsd-386-cgo), const EFAULT = 14 +pkg syscall (openbsd-386-cgo), const EFBIG = 27 +pkg syscall (openbsd-386-cgo), const EFTYPE = 79 +pkg syscall (openbsd-386-cgo), const EHOSTDOWN = 64 +pkg syscall (openbsd-386-cgo), const EHOSTUNREACH = 65 +pkg syscall (openbsd-386-cgo), const EIDRM = 89 +pkg syscall (openbsd-386-cgo), const EILSEQ = 84 +pkg syscall (openbsd-386-cgo), const EINPROGRESS = 36 +pkg syscall (openbsd-386-cgo), const EINTR = 4 +pkg syscall (openbsd-386-cgo), const EINVAL = 22 +pkg syscall (openbsd-386-cgo), const EIO = 5 +pkg syscall (openbsd-386-cgo), const EIPSEC = 82 +pkg syscall (openbsd-386-cgo), const EISCONN = 56 +pkg syscall (openbsd-386-cgo), const EISDIR = 21 +pkg syscall (openbsd-386-cgo), const ELAST = 91 +pkg syscall (openbsd-386-cgo), const ELOOP = 62 +pkg syscall (openbsd-386-cgo), const EMEDIUMTYPE = 86 +pkg syscall (openbsd-386-cgo), const EMFILE = 24 +pkg syscall (openbsd-386-cgo), const EMLINK = 31 +pkg syscall (openbsd-386-cgo), const EMSGSIZE = 40 +pkg syscall (openbsd-386-cgo), const EMT_TAGOVF = 1 +pkg syscall (openbsd-386-cgo), const EMUL_ENABLED = 1 +pkg syscall (openbsd-386-cgo), const EMUL_NATIVE = 2 +pkg syscall (openbsd-386-cgo), const ENAMETOOLONG = 63 +pkg syscall (openbsd-386-cgo), const ENDRUNDISC = 9 +pkg syscall (openbsd-386-cgo), const ENEEDAUTH = 81 +pkg syscall (openbsd-386-cgo), const ENETDOWN = 50 +pkg syscall (openbsd-386-cgo), const ENETRESET = 52 +pkg syscall (openbsd-386-cgo), const ENETUNREACH = 51 +pkg syscall (openbsd-386-cgo), const ENFILE = 23 +pkg syscall (openbsd-386-cgo), const ENOATTR = 83 +pkg syscall (openbsd-386-cgo), const ENOBUFS = 55 +pkg syscall (openbsd-386-cgo), const ENODEV = 19 +pkg syscall (openbsd-386-cgo), const ENOEXEC = 8 +pkg syscall (openbsd-386-cgo), const ENOLCK = 77 +pkg syscall (openbsd-386-cgo), const ENOMEDIUM = 85 +pkg syscall (openbsd-386-cgo), const ENOMEM = 12 +pkg syscall (openbsd-386-cgo), const ENOMSG = 90 +pkg syscall (openbsd-386-cgo), const ENOPROTOOPT = 42 +pkg syscall (openbsd-386-cgo), const ENOSPC = 28 +pkg syscall (openbsd-386-cgo), const ENOSYS = 78 +pkg syscall (openbsd-386-cgo), const ENOTBLK = 15 +pkg syscall (openbsd-386-cgo), const ENOTCONN = 57 +pkg syscall (openbsd-386-cgo), const ENOTDIR = 20 +pkg syscall (openbsd-386-cgo), const ENOTEMPTY = 66 +pkg syscall (openbsd-386-cgo), const ENOTSOCK = 38 +pkg syscall (openbsd-386-cgo), const ENOTSUP = 91 +pkg syscall (openbsd-386-cgo), const ENOTTY = 25 +pkg syscall (openbsd-386-cgo), const ENXIO = 6 +pkg syscall (openbsd-386-cgo), const EOPNOTSUPP = 45 +pkg syscall (openbsd-386-cgo), const EOVERFLOW = 87 +pkg syscall (openbsd-386-cgo), const EPERM = 1 +pkg syscall (openbsd-386-cgo), const EPFNOSUPPORT = 46 +pkg syscall (openbsd-386-cgo), const EPIPE = 32 +pkg syscall (openbsd-386-cgo), const EPROCLIM = 67 +pkg syscall (openbsd-386-cgo), const EPROCUNAVAIL = 76 +pkg syscall (openbsd-386-cgo), const EPROGMISMATCH = 75 +pkg syscall (openbsd-386-cgo), const EPROGUNAVAIL = 74 +pkg syscall (openbsd-386-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (openbsd-386-cgo), const EPROTOTYPE = 41 +pkg syscall (openbsd-386-cgo), const ERANGE = 34 +pkg syscall (openbsd-386-cgo), const EREMOTE = 71 +pkg syscall (openbsd-386-cgo), const EROFS = 30 +pkg syscall (openbsd-386-cgo), const ERPCMISMATCH = 73 +pkg syscall (openbsd-386-cgo), const ESHUTDOWN = 58 +pkg syscall (openbsd-386-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (openbsd-386-cgo), const ESPIPE = 29 +pkg syscall (openbsd-386-cgo), const ESRCH = 3 +pkg syscall (openbsd-386-cgo), const ESTALE = 70 +pkg syscall (openbsd-386-cgo), const ETHERMIN = 46 +pkg syscall (openbsd-386-cgo), const ETHERMTU = 1500 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AOE = 34978 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LLDP = 35020 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_QINQ = 34984 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SLOW = 34825 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (openbsd-386-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (openbsd-386-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (openbsd-386-cgo), const ETHER_ALIGN = 2 +pkg syscall (openbsd-386-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (openbsd-386-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (openbsd-386-cgo), const ETHER_MAX_DIX_LEN = 1536 +pkg syscall (openbsd-386-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (openbsd-386-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (openbsd-386-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (openbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (openbsd-386-cgo), const ETIMEDOUT = 60 +pkg syscall (openbsd-386-cgo), const ETOOMANYREFS = 59 +pkg syscall (openbsd-386-cgo), const ETXTBSY = 26 +pkg syscall (openbsd-386-cgo), const EUSERS = 68 +pkg syscall (openbsd-386-cgo), const EVFILT_AIO = -3 +pkg syscall (openbsd-386-cgo), const EVFILT_PROC = -5 +pkg syscall (openbsd-386-cgo), const EVFILT_READ = -1 +pkg syscall (openbsd-386-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (openbsd-386-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (openbsd-386-cgo), const EVFILT_TIMER = -7 +pkg syscall (openbsd-386-cgo), const EVFILT_VNODE = -4 +pkg syscall (openbsd-386-cgo), const EVFILT_WRITE = -2 +pkg syscall (openbsd-386-cgo), const EV_ADD = 1 +pkg syscall (openbsd-386-cgo), const EV_CLEAR = 32 +pkg syscall (openbsd-386-cgo), const EV_DELETE = 2 +pkg syscall (openbsd-386-cgo), const EV_DISABLE = 8 +pkg syscall (openbsd-386-cgo), const EV_ENABLE = 4 +pkg syscall (openbsd-386-cgo), const EV_EOF = 32768 +pkg syscall (openbsd-386-cgo), const EV_ERROR = 16384 +pkg syscall (openbsd-386-cgo), const EV_FLAG1 = 8192 +pkg syscall (openbsd-386-cgo), const EV_ONESHOT = 16 +pkg syscall (openbsd-386-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (openbsd-386-cgo), const EWOULDBLOCK = 35 +pkg syscall (openbsd-386-cgo), const EXDEV = 18 +pkg syscall (openbsd-386-cgo), const EXTA = 19200 +pkg syscall (openbsd-386-cgo), const EXTB = 38400 +pkg syscall (openbsd-386-cgo), const EXTPROC = 2048 +pkg syscall (openbsd-386-cgo), const FD_CLOEXEC = 1 +pkg syscall (openbsd-386-cgo), const FD_SETSIZE = 1024 +pkg syscall (openbsd-386-cgo), const FLUSHO = 8388608 +pkg syscall (openbsd-386-cgo), const F_DUPFD = 0 +pkg syscall (openbsd-386-cgo), const F_DUPFD_CLOEXEC = 10 +pkg syscall (openbsd-386-cgo), const F_GETFD = 1 +pkg syscall (openbsd-386-cgo), const F_GETFL = 3 +pkg syscall (openbsd-386-cgo), const F_GETLK = 7 +pkg syscall (openbsd-386-cgo), const F_GETOWN = 5 +pkg syscall (openbsd-386-cgo), const F_OK = 0 +pkg syscall (openbsd-386-cgo), const F_RDLCK = 1 +pkg syscall (openbsd-386-cgo), const F_SETFD = 2 +pkg syscall (openbsd-386-cgo), const F_SETFL = 4 +pkg syscall (openbsd-386-cgo), const F_SETLK = 8 +pkg syscall (openbsd-386-cgo), const F_SETLKW = 9 +pkg syscall (openbsd-386-cgo), const F_SETOWN = 6 +pkg syscall (openbsd-386-cgo), const F_UNLCK = 2 +pkg syscall (openbsd-386-cgo), const F_WRLCK = 3 +pkg syscall (openbsd-386-cgo), const HUPCL = 16384 +pkg syscall (openbsd-386-cgo), const ICANON = 256 +pkg syscall (openbsd-386-cgo), const ICRNL = 256 +pkg syscall (openbsd-386-cgo), const IEXTEN = 1024 +pkg syscall (openbsd-386-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (openbsd-386-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (openbsd-386-cgo), const IFA_ROUTE = 1 +pkg syscall (openbsd-386-cgo), const IFF_ALLMULTI = 512 +pkg syscall (openbsd-386-cgo), const IFF_CANTCHANGE = 36434 +pkg syscall (openbsd-386-cgo), const IFF_DEBUG = 4 +pkg syscall (openbsd-386-cgo), const IFF_LINK0 = 4096 +pkg syscall (openbsd-386-cgo), const IFF_LINK1 = 8192 +pkg syscall (openbsd-386-cgo), const IFF_LINK2 = 16384 +pkg syscall (openbsd-386-cgo), const IFF_LOOPBACK = 8 +pkg syscall (openbsd-386-cgo), const IFF_MULTICAST = 32768 +pkg syscall (openbsd-386-cgo), const IFF_NOARP = 128 +pkg syscall (openbsd-386-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (openbsd-386-cgo), const IFF_OACTIVE = 1024 +pkg syscall (openbsd-386-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (openbsd-386-cgo), const IFF_PROMISC = 256 +pkg syscall (openbsd-386-cgo), const IFF_RUNNING = 64 +pkg syscall (openbsd-386-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (openbsd-386-cgo), const IFNAMSIZ = 16 +pkg syscall (openbsd-386-cgo), const IFT_1822 = 2 +pkg syscall (openbsd-386-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (openbsd-386-cgo), const IFT_AAL2 = 187 +pkg syscall (openbsd-386-cgo), const IFT_AAL5 = 49 +pkg syscall (openbsd-386-cgo), const IFT_ADSL = 94 +pkg syscall (openbsd-386-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (openbsd-386-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (openbsd-386-cgo), const IFT_ARAP = 88 +pkg syscall (openbsd-386-cgo), const IFT_ARCNET = 35 +pkg syscall (openbsd-386-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (openbsd-386-cgo), const IFT_ASYNC = 84 +pkg syscall (openbsd-386-cgo), const IFT_ATM = 37 +pkg syscall (openbsd-386-cgo), const IFT_ATMDXI = 105 +pkg syscall (openbsd-386-cgo), const IFT_ATMFUNI = 106 +pkg syscall (openbsd-386-cgo), const IFT_ATMIMA = 107 +pkg syscall (openbsd-386-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (openbsd-386-cgo), const IFT_ATMRADIO = 189 +pkg syscall (openbsd-386-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (openbsd-386-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (openbsd-386-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (openbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (openbsd-386-cgo), const IFT_BLUETOOTH = 248 +pkg syscall (openbsd-386-cgo), const IFT_BRIDGE = 209 +pkg syscall (openbsd-386-cgo), const IFT_BSC = 83 +pkg syscall (openbsd-386-cgo), const IFT_CARP = 247 +pkg syscall (openbsd-386-cgo), const IFT_CCTEMUL = 61 +pkg syscall (openbsd-386-cgo), const IFT_CEPT = 19 +pkg syscall (openbsd-386-cgo), const IFT_CES = 133 +pkg syscall (openbsd-386-cgo), const IFT_CHANNEL = 70 +pkg syscall (openbsd-386-cgo), const IFT_CNR = 85 +pkg syscall (openbsd-386-cgo), const IFT_COFFEE = 132 +pkg syscall (openbsd-386-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (openbsd-386-cgo), const IFT_DCN = 141 +pkg syscall (openbsd-386-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (openbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (openbsd-386-cgo), const IFT_DLSW = 74 +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (openbsd-386-cgo), const IFT_DS0 = 81 +pkg syscall (openbsd-386-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (openbsd-386-cgo), const IFT_DS1FDL = 170 +pkg syscall (openbsd-386-cgo), const IFT_DS3 = 30 +pkg syscall (openbsd-386-cgo), const IFT_DTM = 140 +pkg syscall (openbsd-386-cgo), const IFT_DUMMY = 241 +pkg syscall (openbsd-386-cgo), const IFT_DVBASILN = 172 +pkg syscall (openbsd-386-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (openbsd-386-cgo), const IFT_ECONET = 206 +pkg syscall (openbsd-386-cgo), const IFT_ENC = 244 +pkg syscall (openbsd-386-cgo), const IFT_EON = 25 +pkg syscall (openbsd-386-cgo), const IFT_EPLRS = 87 +pkg syscall (openbsd-386-cgo), const IFT_ESCON = 73 +pkg syscall (openbsd-386-cgo), const IFT_ETHER = 6 +pkg syscall (openbsd-386-cgo), const IFT_FAITH = 243 +pkg syscall (openbsd-386-cgo), const IFT_FAST = 125 +pkg syscall (openbsd-386-cgo), const IFT_FASTETHER = 62 +pkg syscall (openbsd-386-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (openbsd-386-cgo), const IFT_FDDI = 15 +pkg syscall (openbsd-386-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (openbsd-386-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (openbsd-386-cgo), const IFT_FRELAY = 32 +pkg syscall (openbsd-386-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (openbsd-386-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (openbsd-386-cgo), const IFT_FRFORWARD = 158 +pkg syscall (openbsd-386-cgo), const IFT_G703AT2MB = 67 +pkg syscall (openbsd-386-cgo), const IFT_G703AT64K = 66 +pkg syscall (openbsd-386-cgo), const IFT_GIF = 240 +pkg syscall (openbsd-386-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (openbsd-386-cgo), const IFT_GR303IDT = 178 +pkg syscall (openbsd-386-cgo), const IFT_GR303RDT = 177 +pkg syscall (openbsd-386-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (openbsd-386-cgo), const IFT_H323PROXY = 165 +pkg syscall (openbsd-386-cgo), const IFT_HDH1822 = 3 +pkg syscall (openbsd-386-cgo), const IFT_HDLC = 118 +pkg syscall (openbsd-386-cgo), const IFT_HDSL2 = 168 +pkg syscall (openbsd-386-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (openbsd-386-cgo), const IFT_HIPPI = 47 +pkg syscall (openbsd-386-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (openbsd-386-cgo), const IFT_HOSTPAD = 90 +pkg syscall (openbsd-386-cgo), const IFT_HSSI = 46 +pkg syscall (openbsd-386-cgo), const IFT_HY = 14 +pkg syscall (openbsd-386-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (openbsd-386-cgo), const IFT_IDSL = 154 +pkg syscall (openbsd-386-cgo), const IFT_IEEE1394 = 144 +pkg syscall (openbsd-386-cgo), const IFT_IEEE80211 = 71 +pkg syscall (openbsd-386-cgo), const IFT_IEEE80212 = 55 +pkg syscall (openbsd-386-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (openbsd-386-cgo), const IFT_IFGSN = 145 +pkg syscall (openbsd-386-cgo), const IFT_IMT = 190 +pkg syscall (openbsd-386-cgo), const IFT_INFINIBAND = 199 +pkg syscall (openbsd-386-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (openbsd-386-cgo), const IFT_IP = 126 +pkg syscall (openbsd-386-cgo), const IFT_IPFORWARD = 142 +pkg syscall (openbsd-386-cgo), const IFT_IPOVERATM = 114 +pkg syscall (openbsd-386-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (openbsd-386-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (openbsd-386-cgo), const IFT_IPSWITCH = 78 +pkg syscall (openbsd-386-cgo), const IFT_ISDN = 63 +pkg syscall (openbsd-386-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (openbsd-386-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (openbsd-386-cgo), const IFT_ISDNS = 75 +pkg syscall (openbsd-386-cgo), const IFT_ISDNU = 76 +pkg syscall (openbsd-386-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (openbsd-386-cgo), const IFT_ISO88023 = 7 +pkg syscall (openbsd-386-cgo), const IFT_ISO88024 = 8 +pkg syscall (openbsd-386-cgo), const IFT_ISO88025 = 9 +pkg syscall (openbsd-386-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (openbsd-386-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (openbsd-386-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (openbsd-386-cgo), const IFT_ISO88026 = 10 +pkg syscall (openbsd-386-cgo), const IFT_ISUP = 179 +pkg syscall (openbsd-386-cgo), const IFT_L2VLAN = 135 +pkg syscall (openbsd-386-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (openbsd-386-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (openbsd-386-cgo), const IFT_LAPB = 16 +pkg syscall (openbsd-386-cgo), const IFT_LAPD = 77 +pkg syscall (openbsd-386-cgo), const IFT_LAPF = 119 +pkg syscall (openbsd-386-cgo), const IFT_LINEGROUP = 210 +pkg syscall (openbsd-386-cgo), const IFT_LOCALTALK = 42 +pkg syscall (openbsd-386-cgo), const IFT_LOOP = 24 +pkg syscall (openbsd-386-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (openbsd-386-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (openbsd-386-cgo), const IFT_MIOX25 = 38 +pkg syscall (openbsd-386-cgo), const IFT_MODEM = 48 +pkg syscall (openbsd-386-cgo), const IFT_MPC = 113 +pkg syscall (openbsd-386-cgo), const IFT_MPLS = 166 +pkg syscall (openbsd-386-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (openbsd-386-cgo), const IFT_MSDSL = 143 +pkg syscall (openbsd-386-cgo), const IFT_MVL = 191 +pkg syscall (openbsd-386-cgo), const IFT_MYRINET = 99 +pkg syscall (openbsd-386-cgo), const IFT_NFAS = 175 +pkg syscall (openbsd-386-cgo), const IFT_NSIP = 27 +pkg syscall (openbsd-386-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (openbsd-386-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (openbsd-386-cgo), const IFT_OTHER = 1 +pkg syscall (openbsd-386-cgo), const IFT_P10 = 12 +pkg syscall (openbsd-386-cgo), const IFT_P80 = 13 +pkg syscall (openbsd-386-cgo), const IFT_PARA = 34 +pkg syscall (openbsd-386-cgo), const IFT_PFLOG = 245 +pkg syscall (openbsd-386-cgo), const IFT_PFLOW = 249 +pkg syscall (openbsd-386-cgo), const IFT_PFSYNC = 246 +pkg syscall (openbsd-386-cgo), const IFT_PLC = 174 +pkg syscall (openbsd-386-cgo), const IFT_PON155 = 207 +pkg syscall (openbsd-386-cgo), const IFT_PON622 = 208 +pkg syscall (openbsd-386-cgo), const IFT_POS = 171 +pkg syscall (openbsd-386-cgo), const IFT_PPP = 23 +pkg syscall (openbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (openbsd-386-cgo), const IFT_PROPATM = 197 +pkg syscall (openbsd-386-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (openbsd-386-cgo), const IFT_PROPCNLS = 89 +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (openbsd-386-cgo), const IFT_PROPMUX = 54 +pkg syscall (openbsd-386-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (openbsd-386-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (openbsd-386-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (openbsd-386-cgo), const IFT_PVC = 242 +pkg syscall (openbsd-386-cgo), const IFT_Q2931 = 201 +pkg syscall (openbsd-386-cgo), const IFT_QLLC = 68 +pkg syscall (openbsd-386-cgo), const IFT_RADIOMAC = 188 +pkg syscall (openbsd-386-cgo), const IFT_RADSL = 95 +pkg syscall (openbsd-386-cgo), const IFT_REACHDSL = 192 +pkg syscall (openbsd-386-cgo), const IFT_RFC1483 = 159 +pkg syscall (openbsd-386-cgo), const IFT_RS232 = 33 +pkg syscall (openbsd-386-cgo), const IFT_RSRB = 79 +pkg syscall (openbsd-386-cgo), const IFT_SDLC = 17 +pkg syscall (openbsd-386-cgo), const IFT_SDSL = 96 +pkg syscall (openbsd-386-cgo), const IFT_SHDSL = 169 +pkg syscall (openbsd-386-cgo), const IFT_SIP = 31 +pkg syscall (openbsd-386-cgo), const IFT_SIPSIG = 204 +pkg syscall (openbsd-386-cgo), const IFT_SIPTG = 203 +pkg syscall (openbsd-386-cgo), const IFT_SLIP = 28 +pkg syscall (openbsd-386-cgo), const IFT_SMDSDXI = 43 +pkg syscall (openbsd-386-cgo), const IFT_SMDSICIP = 52 +pkg syscall (openbsd-386-cgo), const IFT_SONET = 39 +pkg syscall (openbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (openbsd-386-cgo), const IFT_SONETPATH = 50 +pkg syscall (openbsd-386-cgo), const IFT_SONETVT = 51 +pkg syscall (openbsd-386-cgo), const IFT_SRP = 151 +pkg syscall (openbsd-386-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (openbsd-386-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (openbsd-386-cgo), const IFT_STARLAN = 11 +pkg syscall (openbsd-386-cgo), const IFT_T1 = 18 +pkg syscall (openbsd-386-cgo), const IFT_TDLC = 116 +pkg syscall (openbsd-386-cgo), const IFT_TELINK = 200 +pkg syscall (openbsd-386-cgo), const IFT_TERMPAD = 91 +pkg syscall (openbsd-386-cgo), const IFT_TR008 = 176 +pkg syscall (openbsd-386-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (openbsd-386-cgo), const IFT_TUNNEL = 131 +pkg syscall (openbsd-386-cgo), const IFT_ULTRA = 29 +pkg syscall (openbsd-386-cgo), const IFT_USB = 160 +pkg syscall (openbsd-386-cgo), const IFT_V11 = 64 +pkg syscall (openbsd-386-cgo), const IFT_V35 = 45 +pkg syscall (openbsd-386-cgo), const IFT_V36 = 65 +pkg syscall (openbsd-386-cgo), const IFT_V37 = 120 +pkg syscall (openbsd-386-cgo), const IFT_VDSL = 97 +pkg syscall (openbsd-386-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (openbsd-386-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (openbsd-386-cgo), const IFT_VOICEDID = 213 +pkg syscall (openbsd-386-cgo), const IFT_VOICEEM = 100 +pkg syscall (openbsd-386-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (openbsd-386-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (openbsd-386-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (openbsd-386-cgo), const IFT_VOICEFXO = 101 +pkg syscall (openbsd-386-cgo), const IFT_VOICEFXS = 102 +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (openbsd-386-cgo), const IFT_X213 = 93 +pkg syscall (openbsd-386-cgo), const IFT_X25 = 5 +pkg syscall (openbsd-386-cgo), const IFT_X25DDN = 4 +pkg syscall (openbsd-386-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (openbsd-386-cgo), const IFT_X25MLP = 121 +pkg syscall (openbsd-386-cgo), const IFT_X25PLE = 40 +pkg syscall (openbsd-386-cgo), const IFT_XETHER = 26 +pkg syscall (openbsd-386-cgo), const IGNBRK = 1 +pkg syscall (openbsd-386-cgo), const IGNCR = 128 +pkg syscall (openbsd-386-cgo), const IGNPAR = 4 +pkg syscall (openbsd-386-cgo), const IMAXBEL = 8192 +pkg syscall (openbsd-386-cgo), const INLCR = 64 +pkg syscall (openbsd-386-cgo), const INPCK = 16 +pkg syscall (openbsd-386-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (openbsd-386-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (openbsd-386-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (openbsd-386-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (openbsd-386-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (openbsd-386-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (openbsd-386-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (openbsd-386-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (openbsd-386-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (openbsd-386-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (openbsd-386-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (openbsd-386-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (openbsd-386-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (openbsd-386-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (openbsd-386-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (openbsd-386-cgo), const IN_RFC3021_HOST = 1 +pkg syscall (openbsd-386-cgo), const IN_RFC3021_NET = 4294967294 +pkg syscall (openbsd-386-cgo), const IN_RFC3021_NSHIFT = 31 +pkg syscall (openbsd-386-cgo), const IPPROTO_AH = 51 +pkg syscall (openbsd-386-cgo), const IPPROTO_CARP = 112 +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (openbsd-386-cgo), const IPPROTO_DONE = 257 +pkg syscall (openbsd-386-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (openbsd-386-cgo), const IPPROTO_EGP = 8 +pkg syscall (openbsd-386-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (openbsd-386-cgo), const IPPROTO_EON = 80 +pkg syscall (openbsd-386-cgo), const IPPROTO_ESP = 50 +pkg syscall (openbsd-386-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (openbsd-386-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (openbsd-386-cgo), const IPPROTO_GGP = 3 +pkg syscall (openbsd-386-cgo), const IPPROTO_GRE = 47 +pkg syscall (openbsd-386-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (openbsd-386-cgo), const IPPROTO_ICMP = 1 +pkg syscall (openbsd-386-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (openbsd-386-cgo), const IPPROTO_IDP = 22 +pkg syscall (openbsd-386-cgo), const IPPROTO_IGMP = 2 +pkg syscall (openbsd-386-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (openbsd-386-cgo), const IPPROTO_IPIP = 4 +pkg syscall (openbsd-386-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (openbsd-386-cgo), const IPPROTO_MAX = 256 +pkg syscall (openbsd-386-cgo), const IPPROTO_MAXID = 259 +pkg syscall (openbsd-386-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (openbsd-386-cgo), const IPPROTO_MPLS = 137 +pkg syscall (openbsd-386-cgo), const IPPROTO_NONE = 59 +pkg syscall (openbsd-386-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (openbsd-386-cgo), const IPPROTO_PIM = 103 +pkg syscall (openbsd-386-cgo), const IPPROTO_PUP = 12 +pkg syscall (openbsd-386-cgo), const IPPROTO_RAW = 255 +pkg syscall (openbsd-386-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (openbsd-386-cgo), const IPPROTO_RSVP = 46 +pkg syscall (openbsd-386-cgo), const IPPROTO_TP = 29 +pkg syscall (openbsd-386-cgo), const IPV6_AUTH_LEVEL = 53 +pkg syscall (openbsd-386-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (openbsd-386-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-386-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (openbsd-386-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (openbsd-386-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (openbsd-386-cgo), const IPV6_ESP_NETWORK_LEVEL = 55 +pkg syscall (openbsd-386-cgo), const IPV6_ESP_TRANS_LEVEL = 54 +pkg syscall (openbsd-386-cgo), const IPV6_FAITH = 29 +pkg syscall (openbsd-386-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (openbsd-386-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (openbsd-386-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (openbsd-386-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (openbsd-386-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (openbsd-386-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (openbsd-386-cgo), const IPV6_IPCOMP_LEVEL = 60 +pkg syscall (openbsd-386-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (openbsd-386-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (openbsd-386-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (openbsd-386-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (openbsd-386-cgo), const IPV6_MMTU = 1280 +pkg syscall (openbsd-386-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (openbsd-386-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (openbsd-386-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (openbsd-386-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (openbsd-386-cgo), const IPV6_OPTIONS = 1 +pkg syscall (openbsd-386-cgo), const IPV6_PATHMTU = 44 +pkg syscall (openbsd-386-cgo), const IPV6_PIPEX = 63 +pkg syscall (openbsd-386-cgo), const IPV6_PKTINFO = 46 +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (openbsd-386-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (openbsd-386-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (openbsd-386-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (openbsd-386-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (openbsd-386-cgo), const IPV6_RTABLE = 4129 +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR = 51 +pkg syscall (openbsd-386-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (openbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (openbsd-386-cgo), const IPV6_TCLASS = 61 +pkg syscall (openbsd-386-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (openbsd-386-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (openbsd-386-cgo), const IPV6_V6ONLY = 27 +pkg syscall (openbsd-386-cgo), const IPV6_VERSION = 96 +pkg syscall (openbsd-386-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (openbsd-386-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (openbsd-386-cgo), const IP_AUTH_LEVEL = 20 +pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (openbsd-386-cgo), const IP_DF = 16384 +pkg syscall (openbsd-386-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (openbsd-386-cgo), const IP_ESP_NETWORK_LEVEL = 22 +pkg syscall (openbsd-386-cgo), const IP_ESP_TRANS_LEVEL = 21 +pkg syscall (openbsd-386-cgo), const IP_HDRINCL = 2 +pkg syscall (openbsd-386-cgo), const IP_IPCOMP_LEVEL = 29 +pkg syscall (openbsd-386-cgo), const IP_IPSECFLOWINFO = 36 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_AUTH = 27 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_CRED = 25 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_ID = 23 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_AUTH = 28 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_CRED = 26 +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_ID = 24 +pkg syscall (openbsd-386-cgo), const IP_MAXPACKET = 65535 +pkg syscall (openbsd-386-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (openbsd-386-cgo), const IP_MF = 8192 +pkg syscall (openbsd-386-cgo), const IP_MINTTL = 32 +pkg syscall (openbsd-386-cgo), const IP_MIN_MEMBERSHIPS = 15 +pkg syscall (openbsd-386-cgo), const IP_MSS = 576 +pkg syscall (openbsd-386-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (openbsd-386-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (openbsd-386-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (openbsd-386-cgo), const IP_OFFMASK = 8191 +pkg syscall (openbsd-386-cgo), const IP_OPTIONS = 1 +pkg syscall (openbsd-386-cgo), const IP_PIPEX = 34 +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE = 19 +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (openbsd-386-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (openbsd-386-cgo), const IP_RECVDSTPORT = 33 +pkg syscall (openbsd-386-cgo), const IP_RECVIF = 30 +pkg syscall (openbsd-386-cgo), const IP_RECVOPTS = 5 +pkg syscall (openbsd-386-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (openbsd-386-cgo), const IP_RECVRTABLE = 35 +pkg syscall (openbsd-386-cgo), const IP_RECVTTL = 31 +pkg syscall (openbsd-386-cgo), const IP_RETOPTS = 8 +pkg syscall (openbsd-386-cgo), const IP_RF = 32768 +pkg syscall (openbsd-386-cgo), const IP_RTABLE = 4129 +pkg syscall (openbsd-386-cgo), const IP_TOS = 3 +pkg syscall (openbsd-386-cgo), const IP_TTL = 4 +pkg syscall (openbsd-386-cgo), const ISIG = 128 +pkg syscall (openbsd-386-cgo), const ISTRIP = 32 +pkg syscall (openbsd-386-cgo), const IXANY = 2048 +pkg syscall (openbsd-386-cgo), const IXOFF = 1024 +pkg syscall (openbsd-386-cgo), const IXON = 512 +pkg syscall (openbsd-386-cgo), const ImplementsGetwd = false +pkg syscall (openbsd-386-cgo), const LCNT_OVERLOAD_FLUSH = 6 +pkg syscall (openbsd-386-cgo), const LOCK_EX = 2 +pkg syscall (openbsd-386-cgo), const LOCK_NB = 4 +pkg syscall (openbsd-386-cgo), const LOCK_SH = 1 +pkg syscall (openbsd-386-cgo), const LOCK_UN = 8 +pkg syscall (openbsd-386-cgo), const MSG_BCAST = 256 +pkg syscall (openbsd-386-cgo), const MSG_CTRUNC = 32 +pkg syscall (openbsd-386-cgo), const MSG_DONTROUTE = 4 +pkg syscall (openbsd-386-cgo), const MSG_DONTWAIT = 128 +pkg syscall (openbsd-386-cgo), const MSG_EOR = 8 +pkg syscall (openbsd-386-cgo), const MSG_MCAST = 512 +pkg syscall (openbsd-386-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (openbsd-386-cgo), const MSG_OOB = 1 +pkg syscall (openbsd-386-cgo), const MSG_PEEK = 2 +pkg syscall (openbsd-386-cgo), const MSG_TRUNC = 16 +pkg syscall (openbsd-386-cgo), const MSG_WAITALL = 64 +pkg syscall (openbsd-386-cgo), const NAME_MAX = 255 +pkg syscall (openbsd-386-cgo), const NET_RT_DUMP = 1 +pkg syscall (openbsd-386-cgo), const NET_RT_FLAGS = 2 +pkg syscall (openbsd-386-cgo), const NET_RT_IFLIST = 3 +pkg syscall (openbsd-386-cgo), const NET_RT_MAXID = 6 +pkg syscall (openbsd-386-cgo), const NET_RT_STATS = 4 +pkg syscall (openbsd-386-cgo), const NET_RT_TABLE = 5 +pkg syscall (openbsd-386-cgo), const NOFLSH = 2147483648 +pkg syscall (openbsd-386-cgo), const NOTE_ATTRIB = 8 +pkg syscall (openbsd-386-cgo), const NOTE_CHILD = 4 +pkg syscall (openbsd-386-cgo), const NOTE_DELETE = 1 +pkg syscall (openbsd-386-cgo), const NOTE_EOF = 2 +pkg syscall (openbsd-386-cgo), const NOTE_EXEC = 536870912 +pkg syscall (openbsd-386-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (openbsd-386-cgo), const NOTE_EXTEND = 4 +pkg syscall (openbsd-386-cgo), const NOTE_FORK = 1073741824 +pkg syscall (openbsd-386-cgo), const NOTE_LINK = 16 +pkg syscall (openbsd-386-cgo), const NOTE_LOWAT = 1 +pkg syscall (openbsd-386-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (openbsd-386-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (openbsd-386-cgo), const NOTE_RENAME = 32 +pkg syscall (openbsd-386-cgo), const NOTE_REVOKE = 64 +pkg syscall (openbsd-386-cgo), const NOTE_TRACK = 1 +pkg syscall (openbsd-386-cgo), const NOTE_TRACKERR = 2 +pkg syscall (openbsd-386-cgo), const NOTE_TRUNCATE = 128 +pkg syscall (openbsd-386-cgo), const NOTE_WRITE = 2 +pkg syscall (openbsd-386-cgo), const OCRNL = 16 +pkg syscall (openbsd-386-cgo), const ONLCR = 2 +pkg syscall (openbsd-386-cgo), const ONLRET = 128 +pkg syscall (openbsd-386-cgo), const ONOCR = 64 +pkg syscall (openbsd-386-cgo), const ONOEOT = 8 +pkg syscall (openbsd-386-cgo), const OPOST = 1 +pkg syscall (openbsd-386-cgo), const O_ACCMODE = 3 +pkg syscall (openbsd-386-cgo), const O_APPEND = 8 +pkg syscall (openbsd-386-cgo), const O_ASYNC = 64 +pkg syscall (openbsd-386-cgo), const O_CLOEXEC = 65536 +pkg syscall (openbsd-386-cgo), const O_CREAT = 512 +pkg syscall (openbsd-386-cgo), const O_DIRECTORY = 131072 +pkg syscall (openbsd-386-cgo), const O_DSYNC = 128 +pkg syscall (openbsd-386-cgo), const O_EXCL = 2048 +pkg syscall (openbsd-386-cgo), const O_EXLOCK = 32 +pkg syscall (openbsd-386-cgo), const O_FSYNC = 128 +pkg syscall (openbsd-386-cgo), const O_NDELAY = 4 +pkg syscall (openbsd-386-cgo), const O_NOCTTY = 32768 +pkg syscall (openbsd-386-cgo), const O_NOFOLLOW = 256 +pkg syscall (openbsd-386-cgo), const O_NONBLOCK = 4 +pkg syscall (openbsd-386-cgo), const O_RSYNC = 128 +pkg syscall (openbsd-386-cgo), const O_SHLOCK = 16 +pkg syscall (openbsd-386-cgo), const O_SYNC = 128 +pkg syscall (openbsd-386-cgo), const O_TRUNC = 1024 +pkg syscall (openbsd-386-cgo), const PARENB = 4096 +pkg syscall (openbsd-386-cgo), const PARMRK = 8 +pkg syscall (openbsd-386-cgo), const PARODD = 8192 +pkg syscall (openbsd-386-cgo), const PENDIN = 536870912 +pkg syscall (openbsd-386-cgo), const PF_FLUSH = 1 +pkg syscall (openbsd-386-cgo), const PTRACE_CONT = 7 +pkg syscall (openbsd-386-cgo), const PTRACE_KILL = 8 +pkg syscall (openbsd-386-cgo), const PTRACE_TRACEME = 0 +pkg syscall (openbsd-386-cgo), const PT_MASK = 4190208 +pkg syscall (openbsd-386-cgo), const RLIMIT_CORE = 4 +pkg syscall (openbsd-386-cgo), const RLIMIT_CPU = 0 +pkg syscall (openbsd-386-cgo), const RLIMIT_DATA = 2 +pkg syscall (openbsd-386-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (openbsd-386-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (openbsd-386-cgo), const RLIMIT_STACK = 3 +pkg syscall (openbsd-386-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (openbsd-386-cgo), const RTAX_AUTHOR = 6 +pkg syscall (openbsd-386-cgo), const RTAX_BRD = 7 +pkg syscall (openbsd-386-cgo), const RTAX_DST = 0 +pkg syscall (openbsd-386-cgo), const RTAX_GATEWAY = 1 +pkg syscall (openbsd-386-cgo), const RTAX_GENMASK = 3 +pkg syscall (openbsd-386-cgo), const RTAX_IFA = 5 +pkg syscall (openbsd-386-cgo), const RTAX_IFP = 4 +pkg syscall (openbsd-386-cgo), const RTAX_LABEL = 10 +pkg syscall (openbsd-386-cgo), const RTAX_MAX = 11 +pkg syscall (openbsd-386-cgo), const RTAX_NETMASK = 2 +pkg syscall (openbsd-386-cgo), const RTAX_SRC = 8 +pkg syscall (openbsd-386-cgo), const RTAX_SRCMASK = 9 +pkg syscall (openbsd-386-cgo), const RTA_AUTHOR = 64 +pkg syscall (openbsd-386-cgo), const RTA_BRD = 128 +pkg syscall (openbsd-386-cgo), const RTA_DST = 1 +pkg syscall (openbsd-386-cgo), const RTA_GATEWAY = 2 +pkg syscall (openbsd-386-cgo), const RTA_GENMASK = 8 +pkg syscall (openbsd-386-cgo), const RTA_IFA = 32 +pkg syscall (openbsd-386-cgo), const RTA_IFP = 16 +pkg syscall (openbsd-386-cgo), const RTA_LABEL = 1024 +pkg syscall (openbsd-386-cgo), const RTA_NETMASK = 4 +pkg syscall (openbsd-386-cgo), const RTA_SRC = 256 +pkg syscall (openbsd-386-cgo), const RTA_SRCMASK = 512 +pkg syscall (openbsd-386-cgo), const RTF_ANNOUNCE = 16384 +pkg syscall (openbsd-386-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (openbsd-386-cgo), const RTF_CLONED = 65536 +pkg syscall (openbsd-386-cgo), const RTF_CLONING = 256 +pkg syscall (openbsd-386-cgo), const RTF_DONE = 64 +pkg syscall (openbsd-386-cgo), const RTF_DYNAMIC = 16 +pkg syscall (openbsd-386-cgo), const RTF_FMASK = 63496 +pkg syscall (openbsd-386-cgo), const RTF_GATEWAY = 2 +pkg syscall (openbsd-386-cgo), const RTF_HOST = 4 +pkg syscall (openbsd-386-cgo), const RTF_LLINFO = 1024 +pkg syscall (openbsd-386-cgo), const RTF_MASK = 128 +pkg syscall (openbsd-386-cgo), const RTF_MODIFIED = 32 +pkg syscall (openbsd-386-cgo), const RTF_MPATH = 262144 +pkg syscall (openbsd-386-cgo), const RTF_MPLS = 1048576 +pkg syscall (openbsd-386-cgo), const RTF_PERMANENT_ARP = 8192 +pkg syscall (openbsd-386-cgo), const RTF_PROTO1 = 32768 +pkg syscall (openbsd-386-cgo), const RTF_PROTO2 = 16384 +pkg syscall (openbsd-386-cgo), const RTF_PROTO3 = 8192 +pkg syscall (openbsd-386-cgo), const RTF_REJECT = 8 +pkg syscall (openbsd-386-cgo), const RTF_SOURCE = 131072 +pkg syscall (openbsd-386-cgo), const RTF_STATIC = 2048 +pkg syscall (openbsd-386-cgo), const RTF_TUNNEL = 1048576 +pkg syscall (openbsd-386-cgo), const RTF_UP = 1 +pkg syscall (openbsd-386-cgo), const RTF_USETRAILERS = 32768 +pkg syscall (openbsd-386-cgo), const RTF_XRESOLVE = 512 +pkg syscall (openbsd-386-cgo), const RTM_ADD = 1 +pkg syscall (openbsd-386-cgo), const RTM_CHANGE = 3 +pkg syscall (openbsd-386-cgo), const RTM_DELADDR = 13 +pkg syscall (openbsd-386-cgo), const RTM_DELETE = 2 +pkg syscall (openbsd-386-cgo), const RTM_DESYNC = 16 +pkg syscall (openbsd-386-cgo), const RTM_GET = 4 +pkg syscall (openbsd-386-cgo), const RTM_IFANNOUNCE = 15 +pkg syscall (openbsd-386-cgo), const RTM_IFINFO = 14 +pkg syscall (openbsd-386-cgo), const RTM_LOCK = 8 +pkg syscall (openbsd-386-cgo), const RTM_LOSING = 5 +pkg syscall (openbsd-386-cgo), const RTM_MAXSIZE = 2048 +pkg syscall (openbsd-386-cgo), const RTM_MISS = 7 +pkg syscall (openbsd-386-cgo), const RTM_NEWADDR = 12 +pkg syscall (openbsd-386-cgo), const RTM_REDIRECT = 6 +pkg syscall (openbsd-386-cgo), const RTM_RESOLVE = 11 +pkg syscall (openbsd-386-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (openbsd-386-cgo), const RTM_VERSION = 4 +pkg syscall (openbsd-386-cgo), const RTV_EXPIRE = 4 +pkg syscall (openbsd-386-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (openbsd-386-cgo), const RTV_MTU = 1 +pkg syscall (openbsd-386-cgo), const RTV_RPIPE = 8 +pkg syscall (openbsd-386-cgo), const RTV_RTT = 64 +pkg syscall (openbsd-386-cgo), const RTV_RTTVAR = 128 +pkg syscall (openbsd-386-cgo), const RTV_SPIPE = 16 +pkg syscall (openbsd-386-cgo), const RTV_SSTHRESH = 32 +pkg syscall (openbsd-386-cgo), const RT_TABLEID_MAX = 255 +pkg syscall (openbsd-386-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (openbsd-386-cgo), const RUSAGE_SELF = 0 +pkg syscall (openbsd-386-cgo), const RUSAGE_THREAD = 1 +pkg syscall (openbsd-386-cgo), const SCM_RIGHTS = 1 +pkg syscall (openbsd-386-cgo), const SCM_TIMESTAMP = 4 +pkg syscall (openbsd-386-cgo), const SIGBUS = 10 +pkg syscall (openbsd-386-cgo), const SIGCHLD = 20 +pkg syscall (openbsd-386-cgo), const SIGCONT = 19 +pkg syscall (openbsd-386-cgo), const SIGEMT = 7 +pkg syscall (openbsd-386-cgo), const SIGINFO = 29 +pkg syscall (openbsd-386-cgo), const SIGIO = 23 +pkg syscall (openbsd-386-cgo), const SIGIOT = 6 +pkg syscall (openbsd-386-cgo), const SIGPROF = 27 +pkg syscall (openbsd-386-cgo), const SIGSTOP = 17 +pkg syscall (openbsd-386-cgo), const SIGSYS = 12 +pkg syscall (openbsd-386-cgo), const SIGTHR = 32 +pkg syscall (openbsd-386-cgo), const SIGTSTP = 18 +pkg syscall (openbsd-386-cgo), const SIGTTIN = 21 +pkg syscall (openbsd-386-cgo), const SIGTTOU = 22 +pkg syscall (openbsd-386-cgo), const SIGURG = 16 +pkg syscall (openbsd-386-cgo), const SIGUSR1 = 30 +pkg syscall (openbsd-386-cgo), const SIGUSR2 = 31 +pkg syscall (openbsd-386-cgo), const SIGVTALRM = 26 +pkg syscall (openbsd-386-cgo), const SIGWINCH = 28 +pkg syscall (openbsd-386-cgo), const SIGXCPU = 24 +pkg syscall (openbsd-386-cgo), const SIGXFSZ = 25 +pkg syscall (openbsd-386-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (openbsd-386-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (openbsd-386-cgo), const SIOCAIFGROUP = 2149869959 +pkg syscall (openbsd-386-cgo), const SIOCALIFADDR = 2182637852 +pkg syscall (openbsd-386-cgo), const SIOCATMARK = 1074033415 +pkg syscall (openbsd-386-cgo), const SIOCBRDGADD = 2153015612 +pkg syscall (openbsd-386-cgo), const SIOCBRDGADDS = 2153015617 +pkg syscall (openbsd-386-cgo), const SIOCBRDGARL = 2154719565 +pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-386-cgo), const SIOCBRDGDEL = 2153015613 +pkg syscall (openbsd-386-cgo), const SIOCBRDGDELS = 2153015618 +pkg syscall (openbsd-386-cgo), const SIOCBRDGFLUSH = 2153015624 +pkg syscall (openbsd-386-cgo), const SIOCBRDGFRL = 2154719566 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGCACHE = 3222563137 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGFD = 3222563154 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGHT = 3222563153 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGIFFLGS = 3226757438 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGMA = 3222563155 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM = 3224922456 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPRI = 3222563152 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGRL = 3223873871 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGSIFS = 3226757436 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGTO = 3222563142 +pkg syscall (openbsd-386-cgo), const SIOCBRDGIFS = 3226757442 +pkg syscall (openbsd-386-cgo), const SIOCBRDGRTS = 3222825283 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSCACHE = 2148821312 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSFD = 2148821330 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSHT = 2148821329 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFCOST = 2153015637 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFFLGS = 2153015615 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFPRIO = 2153015636 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSMA = 2148821331 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSPRI = 2148821328 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSPROTO = 2148821338 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSTO = 2148821317 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSTXHC = 2148821337 +pkg syscall (openbsd-386-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (openbsd-386-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (openbsd-386-cgo), const SIOCDIFGROUP = 2149869961 +pkg syscall (openbsd-386-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (openbsd-386-cgo), const SIOCDLIFADDR = 2182637854 +pkg syscall (openbsd-386-cgo), const SIOCGETKALIVE = 3222825380 +pkg syscall (openbsd-386-cgo), const SIOCGETLABEL = 2149607834 +pkg syscall (openbsd-386-cgo), const SIOCGETPFLOW = 3223349758 +pkg syscall (openbsd-386-cgo), const SIOCGETPFSYNC = 3223349752 +pkg syscall (openbsd-386-cgo), const SIOCGETSGCNT = 3222566196 +pkg syscall (openbsd-386-cgo), const SIOCGETVIFCNT = 3222566195 +pkg syscall (openbsd-386-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (openbsd-386-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (openbsd-386-cgo), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (openbsd-386-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (openbsd-386-cgo), const SIOCGIFCONF = 3221776676 +pkg syscall (openbsd-386-cgo), const SIOCGIFDATA = 3223349531 +pkg syscall (openbsd-386-cgo), const SIOCGIFDESCR = 3223349633 +pkg syscall (openbsd-386-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (openbsd-386-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (openbsd-386-cgo), const SIOCGIFGATTR = 3223611787 +pkg syscall (openbsd-386-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (openbsd-386-cgo), const SIOCGIFGMEMB = 3223611786 +pkg syscall (openbsd-386-cgo), const SIOCGIFGROUP = 3223611784 +pkg syscall (openbsd-386-cgo), const SIOCGIFMEDIA = 3223873846 +pkg syscall (openbsd-386-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (openbsd-386-cgo), const SIOCGIFMTU = 3223349630 +pkg syscall (openbsd-386-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (openbsd-386-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (openbsd-386-cgo), const SIOCGIFPRIORITY = 3223349660 +pkg syscall (openbsd-386-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (openbsd-386-cgo), const SIOCGIFRDOMAIN = 3223349664 +pkg syscall (openbsd-386-cgo), const SIOCGIFRTLABEL = 3223349635 +pkg syscall (openbsd-386-cgo), const SIOCGIFTIMESLOT = 3223349638 +pkg syscall (openbsd-386-cgo), const SIOCGIFXFLAGS = 3223349662 +pkg syscall (openbsd-386-cgo), const SIOCGLIFADDR = 3256379677 +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYADDR = 3256379723 +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYRTABLE = 3223349666 +pkg syscall (openbsd-386-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (openbsd-386-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (openbsd-386-cgo), const SIOCGVH = 3223349750 +pkg syscall (openbsd-386-cgo), const SIOCIFCREATE = 2149607802 +pkg syscall (openbsd-386-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (openbsd-386-cgo), const SIOCIFGCLONERS = 3222038904 +pkg syscall (openbsd-386-cgo), const SIOCSETKALIVE = 2149083555 +pkg syscall (openbsd-386-cgo), const SIOCSETLABEL = 2149607833 +pkg syscall (openbsd-386-cgo), const SIOCSETPFLOW = 2149607933 +pkg syscall (openbsd-386-cgo), const SIOCSETPFSYNC = 2149607927 +pkg syscall (openbsd-386-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (openbsd-386-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (openbsd-386-cgo), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (openbsd-386-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (openbsd-386-cgo), const SIOCSIFDESCR = 2149607808 +pkg syscall (openbsd-386-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (openbsd-386-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (openbsd-386-cgo), const SIOCSIFGATTR = 2149869964 +pkg syscall (openbsd-386-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (openbsd-386-cgo), const SIOCSIFLLADDR = 2149607711 +pkg syscall (openbsd-386-cgo), const SIOCSIFMEDIA = 3223349557 +pkg syscall (openbsd-386-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (openbsd-386-cgo), const SIOCSIFMTU = 2149607807 +pkg syscall (openbsd-386-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (openbsd-386-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (openbsd-386-cgo), const SIOCSIFPRIORITY = 2149607835 +pkg syscall (openbsd-386-cgo), const SIOCSIFRDOMAIN = 2149607839 +pkg syscall (openbsd-386-cgo), const SIOCSIFRTLABEL = 2149607810 +pkg syscall (openbsd-386-cgo), const SIOCSIFTIMESLOT = 2149607813 +pkg syscall (openbsd-386-cgo), const SIOCSIFXFLAGS = 2149607837 +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYADDR = 2182637898 +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYRTABLE = 2149607841 +pkg syscall (openbsd-386-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (openbsd-386-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (openbsd-386-cgo), const SIOCSVH = 3223349749 +pkg syscall (openbsd-386-cgo), const SOCK_RDM = 4 +pkg syscall (openbsd-386-cgo), const SOL_SOCKET = 65535 +pkg syscall (openbsd-386-cgo), const SOMAXCONN = 128 +pkg syscall (openbsd-386-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (openbsd-386-cgo), const SO_BINDANY = 4096 +pkg syscall (openbsd-386-cgo), const SO_BROADCAST = 32 +pkg syscall (openbsd-386-cgo), const SO_DEBUG = 1 +pkg syscall (openbsd-386-cgo), const SO_DONTROUTE = 16 +pkg syscall (openbsd-386-cgo), const SO_ERROR = 4103 +pkg syscall (openbsd-386-cgo), const SO_KEEPALIVE = 8 +pkg syscall (openbsd-386-cgo), const SO_LINGER = 128 +pkg syscall (openbsd-386-cgo), const SO_NETPROC = 4128 +pkg syscall (openbsd-386-cgo), const SO_OOBINLINE = 256 +pkg syscall (openbsd-386-cgo), const SO_PEERCRED = 4130 +pkg syscall (openbsd-386-cgo), const SO_RCVBUF = 4098 +pkg syscall (openbsd-386-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (openbsd-386-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (openbsd-386-cgo), const SO_REUSEADDR = 4 +pkg syscall (openbsd-386-cgo), const SO_REUSEPORT = 512 +pkg syscall (openbsd-386-cgo), const SO_RTABLE = 4129 +pkg syscall (openbsd-386-cgo), const SO_SNDBUF = 4097 +pkg syscall (openbsd-386-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (openbsd-386-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (openbsd-386-cgo), const SO_SPLICE = 4131 +pkg syscall (openbsd-386-cgo), const SO_TIMESTAMP = 2048 +pkg syscall (openbsd-386-cgo), const SO_TYPE = 4104 +pkg syscall (openbsd-386-cgo), const SO_USELOOPBACK = 64 +pkg syscall (openbsd-386-cgo), const SYS_ACCEPT = 30 +pkg syscall (openbsd-386-cgo), const SYS_ACCESS = 33 +pkg syscall (openbsd-386-cgo), const SYS_ACCT = 51 +pkg syscall (openbsd-386-cgo), const SYS_ADJFREQ = 305 +pkg syscall (openbsd-386-cgo), const SYS_ADJTIME = 140 +pkg syscall (openbsd-386-cgo), const SYS_BIND = 104 +pkg syscall (openbsd-386-cgo), const SYS_CHDIR = 12 +pkg syscall (openbsd-386-cgo), const SYS_CHFLAGS = 34 +pkg syscall (openbsd-386-cgo), const SYS_CHMOD = 15 +pkg syscall (openbsd-386-cgo), const SYS_CHOWN = 16 +pkg syscall (openbsd-386-cgo), const SYS_CHROOT = 61 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-386-cgo), const SYS_CLOSE = 6 +pkg syscall (openbsd-386-cgo), const SYS_CLOSEFROM = 287 +pkg syscall (openbsd-386-cgo), const SYS_CONNECT = 98 +pkg syscall (openbsd-386-cgo), const SYS_DUP = 41 +pkg syscall (openbsd-386-cgo), const SYS_DUP2 = 90 +pkg syscall (openbsd-386-cgo), const SYS_EXECVE = 59 +pkg syscall (openbsd-386-cgo), const SYS_EXIT = 1 +pkg syscall (openbsd-386-cgo), const SYS_FACCESSAT = 313 +pkg syscall (openbsd-386-cgo), const SYS_FCHDIR = 13 +pkg syscall (openbsd-386-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (openbsd-386-cgo), const SYS_FCHMOD = 124 +pkg syscall (openbsd-386-cgo), const SYS_FCHMODAT = 314 +pkg syscall (openbsd-386-cgo), const SYS_FCHOWN = 123 +pkg syscall (openbsd-386-cgo), const SYS_FCHOWNAT = 315 +pkg syscall (openbsd-386-cgo), const SYS_FCNTL = 92 +pkg syscall (openbsd-386-cgo), const SYS_FHOPEN = 264 +pkg syscall (openbsd-386-cgo), const SYS_FHSTAT = 294 +pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-386-cgo), const SYS_FLOCK = 131 +pkg syscall (openbsd-386-cgo), const SYS_FORK = 2 +pkg syscall (openbsd-386-cgo), const SYS_FPATHCONF = 192 +pkg syscall (openbsd-386-cgo), const SYS_FSTAT = 292 +pkg syscall (openbsd-386-cgo), const SYS_FSTATAT = 316 +pkg syscall (openbsd-386-cgo), const SYS_FSTATFS = 308 +pkg syscall (openbsd-386-cgo), const SYS_FSYNC = 95 +pkg syscall (openbsd-386-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMES = 206 +pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-386-cgo), const SYS_GETDTABLECOUNT = 18 +pkg syscall (openbsd-386-cgo), const SYS_GETEGID = 43 +pkg syscall (openbsd-386-cgo), const SYS_GETEUID = 25 +pkg syscall (openbsd-386-cgo), const SYS_GETFH = 161 +pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-386-cgo), const SYS_GETGID = 47 +pkg syscall (openbsd-386-cgo), const SYS_GETGROUPS = 79 +pkg syscall (openbsd-386-cgo), const SYS_GETITIMER = 86 +pkg syscall (openbsd-386-cgo), const SYS_GETLOGIN = 49 +pkg syscall (openbsd-386-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (openbsd-386-cgo), const SYS_GETPGID = 207 +pkg syscall (openbsd-386-cgo), const SYS_GETPGRP = 81 +pkg syscall (openbsd-386-cgo), const SYS_GETPID = 20 +pkg syscall (openbsd-386-cgo), const SYS_GETPPID = 39 +pkg syscall (openbsd-386-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (openbsd-386-cgo), const SYS_GETRESGID = 283 +pkg syscall (openbsd-386-cgo), const SYS_GETRESUID = 281 +pkg syscall (openbsd-386-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (openbsd-386-cgo), const SYS_GETRTABLE = 311 +pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-386-cgo), const SYS_GETSID = 255 +pkg syscall (openbsd-386-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (openbsd-386-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (openbsd-386-cgo), const SYS_GETTHRID = 299 +pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-386-cgo), const SYS_GETUID = 24 +pkg syscall (openbsd-386-cgo), const SYS_IOCTL = 54 +pkg syscall (openbsd-386-cgo), const SYS_ISSETUGID = 253 +pkg syscall (openbsd-386-cgo), const SYS_KEVENT = 270 +pkg syscall (openbsd-386-cgo), const SYS_KILL = 37 +pkg syscall (openbsd-386-cgo), const SYS_KQUEUE = 269 +pkg syscall (openbsd-386-cgo), const SYS_KTRACE = 45 +pkg syscall (openbsd-386-cgo), const SYS_LCHOWN = 254 +pkg syscall (openbsd-386-cgo), const SYS_LINK = 9 +pkg syscall (openbsd-386-cgo), const SYS_LINKAT = 317 +pkg syscall (openbsd-386-cgo), const SYS_LISTEN = 106 +pkg syscall (openbsd-386-cgo), const SYS_LSEEK = 199 +pkg syscall (openbsd-386-cgo), const SYS_LSTAT = 293 +pkg syscall (openbsd-386-cgo), const SYS_MADVISE = 75 +pkg syscall (openbsd-386-cgo), const SYS_MINCORE = 78 +pkg syscall (openbsd-386-cgo), const SYS_MINHERIT = 250 +pkg syscall (openbsd-386-cgo), const SYS_MKDIR = 136 +pkg syscall (openbsd-386-cgo), const SYS_MKDIRAT = 318 +pkg syscall (openbsd-386-cgo), const SYS_MKFIFO = 132 +pkg syscall (openbsd-386-cgo), const SYS_MKFIFOAT = 319 +pkg syscall (openbsd-386-cgo), const SYS_MKNOD = 14 +pkg syscall (openbsd-386-cgo), const SYS_MKNODAT = 320 +pkg syscall (openbsd-386-cgo), const SYS_MLOCK = 203 +pkg syscall (openbsd-386-cgo), const SYS_MLOCKALL = 271 +pkg syscall (openbsd-386-cgo), const SYS_MMAP = 197 +pkg syscall (openbsd-386-cgo), const SYS_MOUNT = 21 +pkg syscall (openbsd-386-cgo), const SYS_MPROTECT = 74 +pkg syscall (openbsd-386-cgo), const SYS_MQUERY = 286 +pkg syscall (openbsd-386-cgo), const SYS_MSGCTL = 297 +pkg syscall (openbsd-386-cgo), const SYS_MSGGET = 225 +pkg syscall (openbsd-386-cgo), const SYS_MSGRCV = 227 +pkg syscall (openbsd-386-cgo), const SYS_MSGSND = 226 +pkg syscall (openbsd-386-cgo), const SYS_MSYNC = 256 +pkg syscall (openbsd-386-cgo), const SYS_MUNLOCK = 204 +pkg syscall (openbsd-386-cgo), const SYS_MUNLOCKALL = 272 +pkg syscall (openbsd-386-cgo), const SYS_MUNMAP = 73 +pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-386-cgo), const SYS_NFSSVC = 155 +pkg syscall (openbsd-386-cgo), const SYS_OBREAK = 17 +pkg syscall (openbsd-386-cgo), const SYS_OPEN = 5 +pkg syscall (openbsd-386-cgo), const SYS_OPENAT = 321 +pkg syscall (openbsd-386-cgo), const SYS_PATHCONF = 191 +pkg syscall (openbsd-386-cgo), const SYS_PIPE = 263 +pkg syscall (openbsd-386-cgo), const SYS_POLL = 252 +pkg syscall (openbsd-386-cgo), const SYS_PREAD = 173 +pkg syscall (openbsd-386-cgo), const SYS_PREADV = 267 +pkg syscall (openbsd-386-cgo), const SYS_PROFIL = 44 +pkg syscall (openbsd-386-cgo), const SYS_PTRACE = 26 +pkg syscall (openbsd-386-cgo), const SYS_PWRITE = 174 +pkg syscall (openbsd-386-cgo), const SYS_PWRITEV = 268 +pkg syscall (openbsd-386-cgo), const SYS_QUOTACTL = 148 +pkg syscall (openbsd-386-cgo), const SYS_READ = 3 +pkg syscall (openbsd-386-cgo), const SYS_READLINK = 58 +pkg syscall (openbsd-386-cgo), const SYS_READLINKAT = 322 +pkg syscall (openbsd-386-cgo), const SYS_READV = 120 +pkg syscall (openbsd-386-cgo), const SYS_REBOOT = 55 +pkg syscall (openbsd-386-cgo), const SYS_RECVFROM = 29 +pkg syscall (openbsd-386-cgo), const SYS_RECVMSG = 27 +pkg syscall (openbsd-386-cgo), const SYS_RENAME = 128 +pkg syscall (openbsd-386-cgo), const SYS_RENAMEAT = 323 +pkg syscall (openbsd-386-cgo), const SYS_REVOKE = 56 +pkg syscall (openbsd-386-cgo), const SYS_RMDIR = 137 +pkg syscall (openbsd-386-cgo), const SYS_SCHED_YIELD = 298 +pkg syscall (openbsd-386-cgo), const SYS_SELECT = 93 +pkg syscall (openbsd-386-cgo), const SYS_SEMGET = 221 +pkg syscall (openbsd-386-cgo), const SYS_SEMOP = 290 +pkg syscall (openbsd-386-cgo), const SYS_SENDMSG = 28 +pkg syscall (openbsd-386-cgo), const SYS_SENDTO = 133 +pkg syscall (openbsd-386-cgo), const SYS_SETEGID = 182 +pkg syscall (openbsd-386-cgo), const SYS_SETEUID = 183 +pkg syscall (openbsd-386-cgo), const SYS_SETGID = 181 +pkg syscall (openbsd-386-cgo), const SYS_SETGROUPS = 80 +pkg syscall (openbsd-386-cgo), const SYS_SETITIMER = 83 +pkg syscall (openbsd-386-cgo), const SYS_SETLOGIN = 50 +pkg syscall (openbsd-386-cgo), const SYS_SETPGID = 82 +pkg syscall (openbsd-386-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (openbsd-386-cgo), const SYS_SETREGID = 127 +pkg syscall (openbsd-386-cgo), const SYS_SETRESGID = 284 +pkg syscall (openbsd-386-cgo), const SYS_SETRESUID = 282 +pkg syscall (openbsd-386-cgo), const SYS_SETREUID = 126 +pkg syscall (openbsd-386-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (openbsd-386-cgo), const SYS_SETRTABLE = 310 +pkg syscall (openbsd-386-cgo), const SYS_SETSID = 147 +pkg syscall (openbsd-386-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-386-cgo), const SYS_SETUID = 23 +pkg syscall (openbsd-386-cgo), const SYS_SHMAT = 228 +pkg syscall (openbsd-386-cgo), const SYS_SHMCTL = 296 +pkg syscall (openbsd-386-cgo), const SYS_SHMDT = 230 +pkg syscall (openbsd-386-cgo), const SYS_SHMGET = 289 +pkg syscall (openbsd-386-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (openbsd-386-cgo), const SYS_SIGACTION = 46 +pkg syscall (openbsd-386-cgo), const SYS_SIGALTSTACK = 288 +pkg syscall (openbsd-386-cgo), const SYS_SIGPENDING = 52 +pkg syscall (openbsd-386-cgo), const SYS_SIGPROCMASK = 48 +pkg syscall (openbsd-386-cgo), const SYS_SIGRETURN = 103 +pkg syscall (openbsd-386-cgo), const SYS_SIGSUSPEND = 111 +pkg syscall (openbsd-386-cgo), const SYS_SOCKET = 97 +pkg syscall (openbsd-386-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (openbsd-386-cgo), const SYS_STAT = 291 +pkg syscall (openbsd-386-cgo), const SYS_STATFS = 307 +pkg syscall (openbsd-386-cgo), const SYS_SWAPCTL = 193 +pkg syscall (openbsd-386-cgo), const SYS_SYMLINK = 57 +pkg syscall (openbsd-386-cgo), const SYS_SYMLINKAT = 324 +pkg syscall (openbsd-386-cgo), const SYS_SYNC = 36 +pkg syscall (openbsd-386-cgo), const SYS_SYSARCH = 165 +pkg syscall (openbsd-386-cgo), const SYS_TRUNCATE = 200 +pkg syscall (openbsd-386-cgo), const SYS_UMASK = 60 +pkg syscall (openbsd-386-cgo), const SYS_UNLINK = 10 +pkg syscall (openbsd-386-cgo), const SYS_UNLINKAT = 325 +pkg syscall (openbsd-386-cgo), const SYS_UNMOUNT = 22 +pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-386-cgo), const SYS_UTIMES = 138 +pkg syscall (openbsd-386-cgo), const SYS_VFORK = 66 +pkg syscall (openbsd-386-cgo), const SYS_WAIT4 = 7 +pkg syscall (openbsd-386-cgo), const SYS_WRITE = 4 +pkg syscall (openbsd-386-cgo), const SYS_WRITEV = 121 +pkg syscall (openbsd-386-cgo), const SYS___GETCWD = 304 +pkg syscall (openbsd-386-cgo), const SYS___GET_TCB = 330 +pkg syscall (openbsd-386-cgo), const SYS___SEMCTL = 295 +pkg syscall (openbsd-386-cgo), const SYS___SET_TCB = 329 +pkg syscall (openbsd-386-cgo), const SYS___SYSCTL = 202 +pkg syscall (openbsd-386-cgo), const SYS___TFORK = 8 +pkg syscall (openbsd-386-cgo), const SYS___THREXIT = 302 +pkg syscall (openbsd-386-cgo), const SYS___THRSIGDIVERT = 303 +pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-386-cgo), const SYS___THRWAKEUP = 301 +pkg syscall (openbsd-386-cgo), const S_IFMT = 61440 +pkg syscall (openbsd-386-cgo), const SizeofBpfHdr = 20 +pkg syscall (openbsd-386-cgo), const SizeofBpfInsn = 8 +pkg syscall (openbsd-386-cgo), const SizeofBpfProgram = 8 +pkg syscall (openbsd-386-cgo), const SizeofBpfStat = 8 +pkg syscall (openbsd-386-cgo), const SizeofBpfVersion = 4 +pkg syscall (openbsd-386-cgo), const SizeofCmsghdr = 12 +pkg syscall (openbsd-386-cgo), const SizeofIPMreq = 8 +pkg syscall (openbsd-386-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (openbsd-386-cgo), const SizeofIfAnnounceMsghdr = 26 +pkg syscall (openbsd-386-cgo), const SizeofIfData = 208 +pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr = 232 +pkg syscall (openbsd-386-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (openbsd-386-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (openbsd-386-cgo), const SizeofLinger = 8 +pkg syscall (openbsd-386-cgo), const SizeofMsghdr = 28 +pkg syscall (openbsd-386-cgo), const SizeofRtMetrics = 48 +pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-386-cgo), const SizeofSockaddrAny = 108 +pkg syscall (openbsd-386-cgo), const SizeofSockaddrDatalink = 32 +pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (openbsd-386-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (openbsd-386-cgo), const TCIFLUSH = 1 +pkg syscall (openbsd-386-cgo), const TCIOFLUSH = 3 +pkg syscall (openbsd-386-cgo), const TCOFLUSH = 2 +pkg syscall (openbsd-386-cgo), const TCP_MAXBURST = 4 +pkg syscall (openbsd-386-cgo), const TCP_MAXSEG = 2 +pkg syscall (openbsd-386-cgo), const TCP_MAXWIN = 65535 +pkg syscall (openbsd-386-cgo), const TCP_MAX_SACK = 3 +pkg syscall (openbsd-386-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (openbsd-386-cgo), const TCP_MD5SIG = 4 +pkg syscall (openbsd-386-cgo), const TCP_MSS = 512 +pkg syscall (openbsd-386-cgo), const TCP_NSTATES = 11 +pkg syscall (openbsd-386-cgo), const TCP_SACK_ENABLE = 8 +pkg syscall (openbsd-386-cgo), const TCSAFLUSH = 2 +pkg syscall (openbsd-386-cgo), const TIOCCBRK = 536900730 +pkg syscall (openbsd-386-cgo), const TIOCCDTR = 536900728 +pkg syscall (openbsd-386-cgo), const TIOCCONS = 2147775586 +pkg syscall (openbsd-386-cgo), const TIOCDRAIN = 536900702 +pkg syscall (openbsd-386-cgo), const TIOCEXCL = 536900621 +pkg syscall (openbsd-386-cgo), const TIOCEXT = 2147775584 +pkg syscall (openbsd-386-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (openbsd-386-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (openbsd-386-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (openbsd-386-cgo), const TIOCFLAG_PPS = 16 +pkg syscall (openbsd-386-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (openbsd-386-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (openbsd-386-cgo), const TIOCGETA = 1076655123 +pkg syscall (openbsd-386-cgo), const TIOCGETD = 1074033690 +pkg syscall (openbsd-386-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (openbsd-386-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP = 1074295899 +pkg syscall (openbsd-386-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (openbsd-386-cgo), const TIOCMBIC = 2147775595 +pkg syscall (openbsd-386-cgo), const TIOCMBIS = 2147775596 +pkg syscall (openbsd-386-cgo), const TIOCMGET = 1074033770 +pkg syscall (openbsd-386-cgo), const TIOCMODG = 1074033770 +pkg syscall (openbsd-386-cgo), const TIOCMODS = 2147775597 +pkg syscall (openbsd-386-cgo), const TIOCMSET = 2147775597 +pkg syscall (openbsd-386-cgo), const TIOCM_CAR = 64 +pkg syscall (openbsd-386-cgo), const TIOCM_CD = 64 +pkg syscall (openbsd-386-cgo), const TIOCM_CTS = 32 +pkg syscall (openbsd-386-cgo), const TIOCM_DSR = 256 +pkg syscall (openbsd-386-cgo), const TIOCM_DTR = 2 +pkg syscall (openbsd-386-cgo), const TIOCM_LE = 1 +pkg syscall (openbsd-386-cgo), const TIOCM_RI = 128 +pkg syscall (openbsd-386-cgo), const TIOCM_RNG = 128 +pkg syscall (openbsd-386-cgo), const TIOCM_RTS = 4 +pkg syscall (openbsd-386-cgo), const TIOCM_SR = 16 +pkg syscall (openbsd-386-cgo), const TIOCM_ST = 8 +pkg syscall (openbsd-386-cgo), const TIOCNOTTY = 536900721 +pkg syscall (openbsd-386-cgo), const TIOCNXCL = 536900622 +pkg syscall (openbsd-386-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (openbsd-386-cgo), const TIOCPKT = 2147775600 +pkg syscall (openbsd-386-cgo), const TIOCPKT_DATA = 0 +pkg syscall (openbsd-386-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (openbsd-386-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (openbsd-386-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (openbsd-386-cgo), const TIOCPKT_START = 8 +pkg syscall (openbsd-386-cgo), const TIOCPKT_STOP = 4 +pkg syscall (openbsd-386-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (openbsd-386-cgo), const TIOCSBRK = 536900731 +pkg syscall (openbsd-386-cgo), const TIOCSCTTY = 536900705 +pkg syscall (openbsd-386-cgo), const TIOCSDTR = 536900729 +pkg syscall (openbsd-386-cgo), const TIOCSETA = 2150396948 +pkg syscall (openbsd-386-cgo), const TIOCSETAF = 2150396950 +pkg syscall (openbsd-386-cgo), const TIOCSETAW = 2150396949 +pkg syscall (openbsd-386-cgo), const TIOCSETD = 2147775515 +pkg syscall (openbsd-386-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (openbsd-386-cgo), const TIOCSIG = 2147775583 +pkg syscall (openbsd-386-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (openbsd-386-cgo), const TIOCSTART = 536900718 +pkg syscall (openbsd-386-cgo), const TIOCSTAT = 2147775589 +pkg syscall (openbsd-386-cgo), const TIOCSTI = 2147578994 +pkg syscall (openbsd-386-cgo), const TIOCSTOP = 536900719 +pkg syscall (openbsd-386-cgo), const TIOCSTSTAMP = 2148037722 +pkg syscall (openbsd-386-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (openbsd-386-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (openbsd-386-cgo), const TOSTOP = 4194304 +pkg syscall (openbsd-386-cgo), const VDISCARD = 15 +pkg syscall (openbsd-386-cgo), const VDSUSP = 11 +pkg syscall (openbsd-386-cgo), const VEOF = 0 +pkg syscall (openbsd-386-cgo), const VEOL = 1 +pkg syscall (openbsd-386-cgo), const VEOL2 = 2 +pkg syscall (openbsd-386-cgo), const VERASE = 3 +pkg syscall (openbsd-386-cgo), const VINTR = 8 +pkg syscall (openbsd-386-cgo), const VKILL = 5 +pkg syscall (openbsd-386-cgo), const VLNEXT = 14 +pkg syscall (openbsd-386-cgo), const VMIN = 16 +pkg syscall (openbsd-386-cgo), const VQUIT = 9 +pkg syscall (openbsd-386-cgo), const VREPRINT = 6 +pkg syscall (openbsd-386-cgo), const VSTART = 12 +pkg syscall (openbsd-386-cgo), const VSTATUS = 18 +pkg syscall (openbsd-386-cgo), const VSTOP = 13 +pkg syscall (openbsd-386-cgo), const VSUSP = 10 +pkg syscall (openbsd-386-cgo), const VTIME = 17 +pkg syscall (openbsd-386-cgo), const VWERASE = 4 +pkg syscall (openbsd-386-cgo), const WALTSIG = 4 +pkg syscall (openbsd-386-cgo), const WCONTINUED = 8 +pkg syscall (openbsd-386-cgo), const WCOREFLAG = 128 +pkg syscall (openbsd-386-cgo), const WNOHANG = 1 +pkg syscall (openbsd-386-cgo), const WSTOPPED = 127 +pkg syscall (openbsd-386-cgo), const WUNTRACED = 2 +pkg syscall (openbsd-amd64), const AF_APPLETALK = 16 +pkg syscall (openbsd-amd64), const AF_BLUETOOTH = 32 +pkg syscall (openbsd-amd64), const AF_CCITT = 10 +pkg syscall (openbsd-amd64), const AF_CHAOS = 5 +pkg syscall (openbsd-amd64), const AF_CNT = 21 +pkg syscall (openbsd-amd64), const AF_COIP = 20 +pkg syscall (openbsd-amd64), const AF_DATAKIT = 9 +pkg syscall (openbsd-amd64), const AF_DECnet = 12 +pkg syscall (openbsd-amd64), const AF_DLI = 13 +pkg syscall (openbsd-amd64), const AF_E164 = 26 +pkg syscall (openbsd-amd64), const AF_ECMA = 8 +pkg syscall (openbsd-amd64), const AF_ENCAP = 28 +pkg syscall (openbsd-amd64), const AF_HYLINK = 15 +pkg syscall (openbsd-amd64), const AF_IMPLINK = 3 +pkg syscall (openbsd-amd64), const AF_INET6 = 24 +pkg syscall (openbsd-amd64), const AF_IPX = 23 +pkg syscall (openbsd-amd64), const AF_ISDN = 26 +pkg syscall (openbsd-amd64), const AF_ISO = 7 +pkg syscall (openbsd-amd64), const AF_KEY = 30 +pkg syscall (openbsd-amd64), const AF_LAT = 14 +pkg syscall (openbsd-amd64), const AF_LINK = 18 +pkg syscall (openbsd-amd64), const AF_LOCAL = 1 +pkg syscall (openbsd-amd64), const AF_MAX = 36 +pkg syscall (openbsd-amd64), const AF_MPLS = 33 +pkg syscall (openbsd-amd64), const AF_NATM = 27 +pkg syscall (openbsd-amd64), const AF_NS = 6 +pkg syscall (openbsd-amd64), const AF_OSI = 7 +pkg syscall (openbsd-amd64), const AF_PUP = 4 +pkg syscall (openbsd-amd64), const AF_ROUTE = 17 +pkg syscall (openbsd-amd64), const AF_SIP = 29 +pkg syscall (openbsd-amd64), const AF_SNA = 11 +pkg syscall (openbsd-amd64), const ARPHRD_ETHER = 1 +pkg syscall (openbsd-amd64), const ARPHRD_FRELAY = 15 +pkg syscall (openbsd-amd64), const ARPHRD_IEEE1394 = 24 +pkg syscall (openbsd-amd64), const ARPHRD_IEEE802 = 6 +pkg syscall (openbsd-amd64), const B0 = 0 +pkg syscall (openbsd-amd64), const B110 = 110 +pkg syscall (openbsd-amd64), const B115200 = 115200 +pkg syscall (openbsd-amd64), const B1200 = 1200 +pkg syscall (openbsd-amd64), const B134 = 134 +pkg syscall (openbsd-amd64), const B14400 = 14400 +pkg syscall (openbsd-amd64), const B150 = 150 +pkg syscall (openbsd-amd64), const B1800 = 1800 +pkg syscall (openbsd-amd64), const B19200 = 19200 +pkg syscall (openbsd-amd64), const B200 = 200 +pkg syscall (openbsd-amd64), const B230400 = 230400 +pkg syscall (openbsd-amd64), const B2400 = 2400 +pkg syscall (openbsd-amd64), const B28800 = 28800 +pkg syscall (openbsd-amd64), const B300 = 300 +pkg syscall (openbsd-amd64), const B38400 = 38400 +pkg syscall (openbsd-amd64), const B4800 = 4800 +pkg syscall (openbsd-amd64), const B50 = 50 +pkg syscall (openbsd-amd64), const B57600 = 57600 +pkg syscall (openbsd-amd64), const B600 = 600 +pkg syscall (openbsd-amd64), const B7200 = 7200 +pkg syscall (openbsd-amd64), const B75 = 75 +pkg syscall (openbsd-amd64), const B76800 = 76800 +pkg syscall (openbsd-amd64), const B9600 = 9600 +pkg syscall (openbsd-amd64), const BIOCFLUSH = 536887912 +pkg syscall (openbsd-amd64), const BIOCGBLEN = 1074020966 +pkg syscall (openbsd-amd64), const BIOCGDIRFILT = 1074020988 +pkg syscall (openbsd-amd64), const BIOCGDLT = 1074020970 +pkg syscall (openbsd-amd64), const BIOCGDLTLIST = 3222291067 +pkg syscall (openbsd-amd64), const BIOCGETIF = 1075855979 +pkg syscall (openbsd-amd64), const BIOCGFILDROP = 1074020984 +pkg syscall (openbsd-amd64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (openbsd-amd64), const BIOCGRSIG = 1074020979 +pkg syscall (openbsd-amd64), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (openbsd-amd64), const BIOCGSTATS = 1074283119 +pkg syscall (openbsd-amd64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (openbsd-amd64), const BIOCLOCK = 536887926 +pkg syscall (openbsd-amd64), const BIOCPROMISC = 536887913 +pkg syscall (openbsd-amd64), const BIOCSBLEN = 3221504614 +pkg syscall (openbsd-amd64), const BIOCSDIRFILT = 2147762813 +pkg syscall (openbsd-amd64), const BIOCSDLT = 2147762810 +pkg syscall (openbsd-amd64), const BIOCSETF = 2148549223 +pkg syscall (openbsd-amd64), const BIOCSETIF = 2149597804 +pkg syscall (openbsd-amd64), const BIOCSETWF = 2148549239 +pkg syscall (openbsd-amd64), const BIOCSFILDROP = 2147762809 +pkg syscall (openbsd-amd64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (openbsd-amd64), const BIOCSRSIG = 2147762802 +pkg syscall (openbsd-amd64), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (openbsd-amd64), const BIOCVERSION = 1074020977 +pkg syscall (openbsd-amd64), const BPF_A = 16 +pkg syscall (openbsd-amd64), const BPF_ABS = 32 +pkg syscall (openbsd-amd64), const BPF_ADD = 0 +pkg syscall (openbsd-amd64), const BPF_ALIGNMENT = 4 +pkg syscall (openbsd-amd64), const BPF_ALU = 4 +pkg syscall (openbsd-amd64), const BPF_AND = 80 +pkg syscall (openbsd-amd64), const BPF_B = 16 +pkg syscall (openbsd-amd64), const BPF_DIRECTION_IN = 1 +pkg syscall (openbsd-amd64), const BPF_DIRECTION_OUT = 2 +pkg syscall (openbsd-amd64), const BPF_DIV = 48 +pkg syscall (openbsd-amd64), const BPF_H = 8 +pkg syscall (openbsd-amd64), const BPF_IMM = 0 +pkg syscall (openbsd-amd64), const BPF_IND = 64 +pkg syscall (openbsd-amd64), const BPF_JA = 0 +pkg syscall (openbsd-amd64), const BPF_JEQ = 16 +pkg syscall (openbsd-amd64), const BPF_JGE = 48 +pkg syscall (openbsd-amd64), const BPF_JGT = 32 +pkg syscall (openbsd-amd64), const BPF_JMP = 5 +pkg syscall (openbsd-amd64), const BPF_JSET = 64 +pkg syscall (openbsd-amd64), const BPF_K = 0 +pkg syscall (openbsd-amd64), const BPF_LD = 0 +pkg syscall (openbsd-amd64), const BPF_LDX = 1 +pkg syscall (openbsd-amd64), const BPF_LEN = 128 +pkg syscall (openbsd-amd64), const BPF_LSH = 96 +pkg syscall (openbsd-amd64), const BPF_MAJOR_VERSION = 1 +pkg syscall (openbsd-amd64), const BPF_MAXBUFSIZE = 2097152 +pkg syscall (openbsd-amd64), const BPF_MAXINSNS = 512 +pkg syscall (openbsd-amd64), const BPF_MEM = 96 +pkg syscall (openbsd-amd64), const BPF_MEMWORDS = 16 +pkg syscall (openbsd-amd64), const BPF_MINBUFSIZE = 32 +pkg syscall (openbsd-amd64), const BPF_MINOR_VERSION = 1 +pkg syscall (openbsd-amd64), const BPF_MISC = 7 +pkg syscall (openbsd-amd64), const BPF_MSH = 160 +pkg syscall (openbsd-amd64), const BPF_MUL = 32 +pkg syscall (openbsd-amd64), const BPF_NEG = 128 +pkg syscall (openbsd-amd64), const BPF_OR = 64 +pkg syscall (openbsd-amd64), const BPF_RELEASE = 199606 +pkg syscall (openbsd-amd64), const BPF_RET = 6 +pkg syscall (openbsd-amd64), const BPF_RSH = 112 +pkg syscall (openbsd-amd64), const BPF_ST = 2 +pkg syscall (openbsd-amd64), const BPF_STX = 3 +pkg syscall (openbsd-amd64), const BPF_SUB = 16 +pkg syscall (openbsd-amd64), const BPF_TAX = 0 +pkg syscall (openbsd-amd64), const BPF_TXA = 128 +pkg syscall (openbsd-amd64), const BPF_W = 0 +pkg syscall (openbsd-amd64), const BPF_X = 8 +pkg syscall (openbsd-amd64), const BRKINT = 2 +pkg syscall (openbsd-amd64), const CCR0_FLUSH = 16 +pkg syscall (openbsd-amd64), const CFLUSH = 15 +pkg syscall (openbsd-amd64), const CLOCAL = 32768 +pkg syscall (openbsd-amd64), const CPUID_CFLUSH = 524288 +pkg syscall (openbsd-amd64), const CREAD = 2048 +pkg syscall (openbsd-amd64), const CS5 = 0 +pkg syscall (openbsd-amd64), const CS6 = 256 +pkg syscall (openbsd-amd64), const CS7 = 512 +pkg syscall (openbsd-amd64), const CS8 = 768 +pkg syscall (openbsd-amd64), const CSIZE = 768 +pkg syscall (openbsd-amd64), const CSTART = 17 +pkg syscall (openbsd-amd64), const CSTATUS = 255 +pkg syscall (openbsd-amd64), const CSTOP = 19 +pkg syscall (openbsd-amd64), const CSTOPB = 1024 +pkg syscall (openbsd-amd64), const CSUSP = 26 +pkg syscall (openbsd-amd64), const CTL_MAXNAME = 12 +pkg syscall (openbsd-amd64), const CTL_NET = 4 +pkg syscall (openbsd-amd64), const DIOCOSFPFLUSH = 536888398 +pkg syscall (openbsd-amd64), const DLT_ARCNET = 7 +pkg syscall (openbsd-amd64), const DLT_ATM_RFC1483 = 11 +pkg syscall (openbsd-amd64), const DLT_AX25 = 3 +pkg syscall (openbsd-amd64), const DLT_CHAOS = 5 +pkg syscall (openbsd-amd64), const DLT_C_HDLC = 104 +pkg syscall (openbsd-amd64), const DLT_EN10MB = 1 +pkg syscall (openbsd-amd64), const DLT_EN3MB = 2 +pkg syscall (openbsd-amd64), const DLT_ENC = 13 +pkg syscall (openbsd-amd64), const DLT_FDDI = 10 +pkg syscall (openbsd-amd64), const DLT_IEEE802 = 6 +pkg syscall (openbsd-amd64), const DLT_IEEE802_11 = 105 +pkg syscall (openbsd-amd64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (openbsd-amd64), const DLT_LOOP = 12 +pkg syscall (openbsd-amd64), const DLT_MPLS = 219 +pkg syscall (openbsd-amd64), const DLT_NULL = 0 +pkg syscall (openbsd-amd64), const DLT_PFLOG = 117 +pkg syscall (openbsd-amd64), const DLT_PFSYNC = 18 +pkg syscall (openbsd-amd64), const DLT_PPP = 9 +pkg syscall (openbsd-amd64), const DLT_PPP_BSDOS = 16 +pkg syscall (openbsd-amd64), const DLT_PPP_ETHER = 51 +pkg syscall (openbsd-amd64), const DLT_PPP_SERIAL = 50 +pkg syscall (openbsd-amd64), const DLT_PRONET = 4 +pkg syscall (openbsd-amd64), const DLT_RAW = 14 +pkg syscall (openbsd-amd64), const DLT_SLIP = 8 +pkg syscall (openbsd-amd64), const DLT_SLIP_BSDOS = 15 +pkg syscall (openbsd-amd64), const DT_BLK = 6 +pkg syscall (openbsd-amd64), const DT_CHR = 2 +pkg syscall (openbsd-amd64), const DT_DIR = 4 +pkg syscall (openbsd-amd64), const DT_FIFO = 1 +pkg syscall (openbsd-amd64), const DT_LNK = 10 +pkg syscall (openbsd-amd64), const DT_REG = 8 +pkg syscall (openbsd-amd64), const DT_SOCK = 12 +pkg syscall (openbsd-amd64), const DT_UNKNOWN = 0 +pkg syscall (openbsd-amd64), const E2BIG = 7 +pkg syscall (openbsd-amd64), const EACCES = 13 +pkg syscall (openbsd-amd64), const EADDRINUSE = 48 +pkg syscall (openbsd-amd64), const EADDRNOTAVAIL = 49 +pkg syscall (openbsd-amd64), const EAFNOSUPPORT = 47 +pkg syscall (openbsd-amd64), const EAGAIN = 35 +pkg syscall (openbsd-amd64), const EALREADY = 37 +pkg syscall (openbsd-amd64), const EAUTH = 80 +pkg syscall (openbsd-amd64), const EBADF = 9 +pkg syscall (openbsd-amd64), const EBADRPC = 72 +pkg syscall (openbsd-amd64), const EBUSY = 16 +pkg syscall (openbsd-amd64), const ECANCELED = 88 +pkg syscall (openbsd-amd64), const ECHILD = 10 +pkg syscall (openbsd-amd64), const ECHO = 8 +pkg syscall (openbsd-amd64), const ECHOCTL = 64 +pkg syscall (openbsd-amd64), const ECHOE = 2 +pkg syscall (openbsd-amd64), const ECHOK = 4 +pkg syscall (openbsd-amd64), const ECHOKE = 1 +pkg syscall (openbsd-amd64), const ECHONL = 16 +pkg syscall (openbsd-amd64), const ECHOPRT = 32 +pkg syscall (openbsd-amd64), const ECONNABORTED = 53 +pkg syscall (openbsd-amd64), const ECONNREFUSED = 61 +pkg syscall (openbsd-amd64), const ECONNRESET = 54 +pkg syscall (openbsd-amd64), const EDEADLK = 11 +pkg syscall (openbsd-amd64), const EDESTADDRREQ = 39 +pkg syscall (openbsd-amd64), const EDOM = 33 +pkg syscall (openbsd-amd64), const EDQUOT = 69 +pkg syscall (openbsd-amd64), const EEXIST = 17 +pkg syscall (openbsd-amd64), const EFAULT = 14 +pkg syscall (openbsd-amd64), const EFBIG = 27 +pkg syscall (openbsd-amd64), const EFER_LMA = 1024 +pkg syscall (openbsd-amd64), const EFER_LME = 256 +pkg syscall (openbsd-amd64), const EFER_NXE = 2048 +pkg syscall (openbsd-amd64), const EFER_SCE = 1 +pkg syscall (openbsd-amd64), const EFTYPE = 79 +pkg syscall (openbsd-amd64), const EHOSTDOWN = 64 +pkg syscall (openbsd-amd64), const EHOSTUNREACH = 65 +pkg syscall (openbsd-amd64), const EIDRM = 89 +pkg syscall (openbsd-amd64), const EILSEQ = 84 +pkg syscall (openbsd-amd64), const EINPROGRESS = 36 +pkg syscall (openbsd-amd64), const EINTR = 4 +pkg syscall (openbsd-amd64), const EINVAL = 22 +pkg syscall (openbsd-amd64), const EIO = 5 +pkg syscall (openbsd-amd64), const EIPSEC = 82 +pkg syscall (openbsd-amd64), const EISCONN = 56 +pkg syscall (openbsd-amd64), const EISDIR = 21 +pkg syscall (openbsd-amd64), const ELAST = 91 +pkg syscall (openbsd-amd64), const ELOOP = 62 +pkg syscall (openbsd-amd64), const EMEDIUMTYPE = 86 +pkg syscall (openbsd-amd64), const EMFILE = 24 +pkg syscall (openbsd-amd64), const EMLINK = 31 +pkg syscall (openbsd-amd64), const EMSGSIZE = 40 +pkg syscall (openbsd-amd64), const EMT_TAGOVF = 1 +pkg syscall (openbsd-amd64), const EMUL_ENABLED = 1 +pkg syscall (openbsd-amd64), const EMUL_NATIVE = 2 +pkg syscall (openbsd-amd64), const ENAMETOOLONG = 63 +pkg syscall (openbsd-amd64), const ENDRUNDISC = 9 +pkg syscall (openbsd-amd64), const ENEEDAUTH = 81 +pkg syscall (openbsd-amd64), const ENETDOWN = 50 +pkg syscall (openbsd-amd64), const ENETRESET = 52 +pkg syscall (openbsd-amd64), const ENETUNREACH = 51 +pkg syscall (openbsd-amd64), const ENFILE = 23 +pkg syscall (openbsd-amd64), const ENOATTR = 83 +pkg syscall (openbsd-amd64), const ENOBUFS = 55 +pkg syscall (openbsd-amd64), const ENODEV = 19 +pkg syscall (openbsd-amd64), const ENOEXEC = 8 +pkg syscall (openbsd-amd64), const ENOLCK = 77 +pkg syscall (openbsd-amd64), const ENOMEDIUM = 85 +pkg syscall (openbsd-amd64), const ENOMEM = 12 +pkg syscall (openbsd-amd64), const ENOMSG = 90 +pkg syscall (openbsd-amd64), const ENOPROTOOPT = 42 +pkg syscall (openbsd-amd64), const ENOSPC = 28 +pkg syscall (openbsd-amd64), const ENOSYS = 78 +pkg syscall (openbsd-amd64), const ENOTBLK = 15 +pkg syscall (openbsd-amd64), const ENOTCONN = 57 +pkg syscall (openbsd-amd64), const ENOTDIR = 20 +pkg syscall (openbsd-amd64), const ENOTEMPTY = 66 +pkg syscall (openbsd-amd64), const ENOTSOCK = 38 +pkg syscall (openbsd-amd64), const ENOTSUP = 91 +pkg syscall (openbsd-amd64), const ENOTTY = 25 +pkg syscall (openbsd-amd64), const ENXIO = 6 +pkg syscall (openbsd-amd64), const EOPNOTSUPP = 45 +pkg syscall (openbsd-amd64), const EOVERFLOW = 87 +pkg syscall (openbsd-amd64), const EPERM = 1 +pkg syscall (openbsd-amd64), const EPFNOSUPPORT = 46 +pkg syscall (openbsd-amd64), const EPIPE = 32 +pkg syscall (openbsd-amd64), const EPROCLIM = 67 +pkg syscall (openbsd-amd64), const EPROCUNAVAIL = 76 +pkg syscall (openbsd-amd64), const EPROGMISMATCH = 75 +pkg syscall (openbsd-amd64), const EPROGUNAVAIL = 74 +pkg syscall (openbsd-amd64), const EPROTONOSUPPORT = 43 +pkg syscall (openbsd-amd64), const EPROTOTYPE = 41 +pkg syscall (openbsd-amd64), const ERANGE = 34 +pkg syscall (openbsd-amd64), const EREMOTE = 71 +pkg syscall (openbsd-amd64), const EROFS = 30 +pkg syscall (openbsd-amd64), const ERPCMISMATCH = 73 +pkg syscall (openbsd-amd64), const ESHUTDOWN = 58 +pkg syscall (openbsd-amd64), const ESOCKTNOSUPPORT = 44 +pkg syscall (openbsd-amd64), const ESPIPE = 29 +pkg syscall (openbsd-amd64), const ESRCH = 3 +pkg syscall (openbsd-amd64), const ESTALE = 70 +pkg syscall (openbsd-amd64), const ETHERMIN = 46 +pkg syscall (openbsd-amd64), const ETHERMTU = 1500 +pkg syscall (openbsd-amd64), const ETHERTYPE_8023 = 4 +pkg syscall (openbsd-amd64), const ETHERTYPE_AARP = 33011 +pkg syscall (openbsd-amd64), const ETHERTYPE_ACCTON = 33680 +pkg syscall (openbsd-amd64), const ETHERTYPE_AEONIC = 32822 +pkg syscall (openbsd-amd64), const ETHERTYPE_ALPHA = 33098 +pkg syscall (openbsd-amd64), const ETHERTYPE_AMBER = 24584 +pkg syscall (openbsd-amd64), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (openbsd-amd64), const ETHERTYPE_AOE = 34978 +pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLO = 33015 +pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (openbsd-amd64), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (openbsd-amd64), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (openbsd-amd64), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (openbsd-amd64), const ETHERTYPE_ARP = 2054 +pkg syscall (openbsd-amd64), const ETHERTYPE_AT = 32923 +pkg syscall (openbsd-amd64), const ETHERTYPE_ATALK = 32923 +pkg syscall (openbsd-amd64), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (openbsd-amd64), const ETHERTYPE_ATT = 32873 +pkg syscall (openbsd-amd64), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (openbsd-amd64), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (openbsd-amd64), const ETHERTYPE_AXIS = 34902 +pkg syscall (openbsd-amd64), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (openbsd-amd64), const ETHERTYPE_BOFL = 33026 +pkg syscall (openbsd-amd64), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (openbsd-amd64), const ETHERTYPE_CHAOS = 2052 +pkg syscall (openbsd-amd64), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (openbsd-amd64), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (openbsd-amd64), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUS = 32772 +pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (openbsd-amd64), const ETHERTYPE_DCA = 4660 +pkg syscall (openbsd-amd64), const ETHERTYPE_DDE = 32891 +pkg syscall (openbsd-amd64), const ETHERTYPE_DEBNI = 43690 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECAM = 32840 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECCUST = 24582 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDNS = 32828 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDTS = 32830 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECLAST = 32833 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECLTM = 32831 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (openbsd-amd64), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (openbsd-amd64), const ETHERTYPE_DELTACON = 34526 +pkg syscall (openbsd-amd64), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (openbsd-amd64), const ETHERTYPE_DN = 24579 +pkg syscall (openbsd-amd64), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (openbsd-amd64), const ETHERTYPE_DSMD = 32825 +pkg syscall (openbsd-amd64), const ETHERTYPE_ECMA = 2051 +pkg syscall (openbsd-amd64), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (openbsd-amd64), const ETHERTYPE_ES = 32861 +pkg syscall (openbsd-amd64), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (openbsd-amd64), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (openbsd-amd64), const ETHERTYPE_FLIP = 33094 +pkg syscall (openbsd-amd64), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (openbsd-amd64), const ETHERTYPE_FRARP = 2056 +pkg syscall (openbsd-amd64), const ETHERTYPE_GENDYN = 32872 +pkg syscall (openbsd-amd64), const ETHERTYPE_HAYES = 33072 +pkg syscall (openbsd-amd64), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (openbsd-amd64), const ETHERTYPE_HITACHI = 34848 +pkg syscall (openbsd-amd64), const ETHERTYPE_HP = 32773 +pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBL = 19522 +pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (openbsd-amd64), const ETHERTYPE_IP = 2048 +pkg syscall (openbsd-amd64), const ETHERTYPE_IPAS = 34668 +pkg syscall (openbsd-amd64), const ETHERTYPE_IPV6 = 34525 +pkg syscall (openbsd-amd64), const ETHERTYPE_IPX = 33079 +pkg syscall (openbsd-amd64), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (openbsd-amd64), const ETHERTYPE_KALPANA = 34178 +pkg syscall (openbsd-amd64), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (openbsd-amd64), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (openbsd-amd64), const ETHERTYPE_LAT = 24580 +pkg syscall (openbsd-amd64), const ETHERTYPE_LBACK = 36864 +pkg syscall (openbsd-amd64), const ETHERTYPE_LITTLE = 32864 +pkg syscall (openbsd-amd64), const ETHERTYPE_LLDP = 35020 +pkg syscall (openbsd-amd64), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (openbsd-amd64), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (openbsd-amd64), const ETHERTYPE_MATRA = 32890 +pkg syscall (openbsd-amd64), const ETHERTYPE_MAX = 65535 +pkg syscall (openbsd-amd64), const ETHERTYPE_MERIT = 32892 +pkg syscall (openbsd-amd64), const ETHERTYPE_MICP = 34618 +pkg syscall (openbsd-amd64), const ETHERTYPE_MOPDL = 24577 +pkg syscall (openbsd-amd64), const ETHERTYPE_MOPRC = 24578 +pkg syscall (openbsd-amd64), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS = 34887 +pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (openbsd-amd64), const ETHERTYPE_MUMPS = 33087 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCC = 15364 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDG = 15367 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRST = 15373 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (openbsd-amd64), const ETHERTYPE_NBS = 2050 +pkg syscall (openbsd-amd64), const ETHERTYPE_NCD = 33097 +pkg syscall (openbsd-amd64), const ETHERTYPE_NESTAR = 32774 +pkg syscall (openbsd-amd64), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (openbsd-amd64), const ETHERTYPE_NOVELL = 33080 +pkg syscall (openbsd-amd64), const ETHERTYPE_NS = 1536 +pkg syscall (openbsd-amd64), const ETHERTYPE_NSAT = 1537 +pkg syscall (openbsd-amd64), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (openbsd-amd64), const ETHERTYPE_NTRAILER = 16 +pkg syscall (openbsd-amd64), const ETHERTYPE_OS9 = 28679 +pkg syscall (openbsd-amd64), const ETHERTYPE_OS9NET = 28681 +pkg syscall (openbsd-amd64), const ETHERTYPE_PACER = 32966 +pkg syscall (openbsd-amd64), const ETHERTYPE_PAE = 34958 +pkg syscall (openbsd-amd64), const ETHERTYPE_PCS = 16962 +pkg syscall (openbsd-amd64), const ETHERTYPE_PLANNING = 32836 +pkg syscall (openbsd-amd64), const ETHERTYPE_PPP = 34827 +pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOE = 34916 +pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (openbsd-amd64), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (openbsd-amd64), const ETHERTYPE_PUP = 512 +pkg syscall (openbsd-amd64), const ETHERTYPE_PUPAT = 512 +pkg syscall (openbsd-amd64), const ETHERTYPE_QINQ = 34984 +pkg syscall (openbsd-amd64), const ETHERTYPE_RACAL = 28720 +pkg syscall (openbsd-amd64), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (openbsd-amd64), const ETHERTYPE_RAWFR = 25945 +pkg syscall (openbsd-amd64), const ETHERTYPE_RCL = 6549 +pkg syscall (openbsd-amd64), const ETHERTYPE_RDP = 34617 +pkg syscall (openbsd-amd64), const ETHERTYPE_RETIX = 33010 +pkg syscall (openbsd-amd64), const ETHERTYPE_REVARP = 32821 +pkg syscall (openbsd-amd64), const ETHERTYPE_SCA = 24583 +pkg syscall (openbsd-amd64), const ETHERTYPE_SECTRA = 34523 +pkg syscall (openbsd-amd64), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (openbsd-amd64), const ETHERTYPE_SGITW = 33150 +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (openbsd-amd64), const ETHERTYPE_SIMNET = 21000 +pkg syscall (openbsd-amd64), const ETHERTYPE_SLOW = 34825 +pkg syscall (openbsd-amd64), const ETHERTYPE_SNA = 32981 +pkg syscall (openbsd-amd64), const ETHERTYPE_SNMP = 33100 +pkg syscall (openbsd-amd64), const ETHERTYPE_SONIX = 64245 +pkg syscall (openbsd-amd64), const ETHERTYPE_SPIDER = 32927 +pkg syscall (openbsd-amd64), const ETHERTYPE_SPRITE = 1280 +pkg syscall (openbsd-amd64), const ETHERTYPE_STP = 33153 +pkg syscall (openbsd-amd64), const ETHERTYPE_TALARIS = 33067 +pkg syscall (openbsd-amd64), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (openbsd-amd64), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (openbsd-amd64), const ETHERTYPE_TCPSM = 36866 +pkg syscall (openbsd-amd64), const ETHERTYPE_TEC = 33103 +pkg syscall (openbsd-amd64), const ETHERTYPE_TIGAN = 32815 +pkg syscall (openbsd-amd64), const ETHERTYPE_TRAIL = 4096 +pkg syscall (openbsd-amd64), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (openbsd-amd64), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBBST = 28677 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDL = 28672 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBNIU = 28673 +pkg syscall (openbsd-amd64), const ETHERTYPE_UBNMC = 28675 +pkg syscall (openbsd-amd64), const ETHERTYPE_VALID = 5632 +pkg syscall (openbsd-amd64), const ETHERTYPE_VARIAN = 32989 +pkg syscall (openbsd-amd64), const ETHERTYPE_VAXELN = 32827 +pkg syscall (openbsd-amd64), const ETHERTYPE_VEECO = 32871 +pkg syscall (openbsd-amd64), const ETHERTYPE_VEXP = 32859 +pkg syscall (openbsd-amd64), const ETHERTYPE_VGLAB = 33073 +pkg syscall (openbsd-amd64), const ETHERTYPE_VINES = 2989 +pkg syscall (openbsd-amd64), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (openbsd-amd64), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (openbsd-amd64), const ETHERTYPE_VITAL = 65280 +pkg syscall (openbsd-amd64), const ETHERTYPE_VLAN = 33024 +pkg syscall (openbsd-amd64), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (openbsd-amd64), const ETHERTYPE_VPROD = 32860 +pkg syscall (openbsd-amd64), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (openbsd-amd64), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (openbsd-amd64), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (openbsd-amd64), const ETHERTYPE_X25 = 2053 +pkg syscall (openbsd-amd64), const ETHERTYPE_X75 = 2049 +pkg syscall (openbsd-amd64), const ETHERTYPE_XNSSM = 36865 +pkg syscall (openbsd-amd64), const ETHERTYPE_XTP = 33149 +pkg syscall (openbsd-amd64), const ETHER_ADDR_LEN = 6 +pkg syscall (openbsd-amd64), const ETHER_ALIGN = 2 +pkg syscall (openbsd-amd64), const ETHER_CRC_LEN = 4 +pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (openbsd-amd64), const ETHER_HDR_LEN = 14 +pkg syscall (openbsd-amd64), const ETHER_MAX_DIX_LEN = 1536 +pkg syscall (openbsd-amd64), const ETHER_MAX_LEN = 1518 +pkg syscall (openbsd-amd64), const ETHER_MIN_LEN = 64 +pkg syscall (openbsd-amd64), const ETHER_TYPE_LEN = 2 +pkg syscall (openbsd-amd64), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (openbsd-amd64), const ETIMEDOUT = 60 +pkg syscall (openbsd-amd64), const ETOOMANYREFS = 59 +pkg syscall (openbsd-amd64), const ETXTBSY = 26 +pkg syscall (openbsd-amd64), const EUSERS = 68 +pkg syscall (openbsd-amd64), const EVFILT_AIO = -3 +pkg syscall (openbsd-amd64), const EVFILT_PROC = -5 +pkg syscall (openbsd-amd64), const EVFILT_READ = -1 +pkg syscall (openbsd-amd64), const EVFILT_SIGNAL = -6 +pkg syscall (openbsd-amd64), const EVFILT_SYSCOUNT = 7 +pkg syscall (openbsd-amd64), const EVFILT_TIMER = -7 +pkg syscall (openbsd-amd64), const EVFILT_VNODE = -4 +pkg syscall (openbsd-amd64), const EVFILT_WRITE = -2 +pkg syscall (openbsd-amd64), const EV_ADD = 1 +pkg syscall (openbsd-amd64), const EV_CLEAR = 32 +pkg syscall (openbsd-amd64), const EV_DELETE = 2 +pkg syscall (openbsd-amd64), const EV_DISABLE = 8 +pkg syscall (openbsd-amd64), const EV_ENABLE = 4 +pkg syscall (openbsd-amd64), const EV_EOF = 32768 +pkg syscall (openbsd-amd64), const EV_ERROR = 16384 +pkg syscall (openbsd-amd64), const EV_FLAG1 = 8192 +pkg syscall (openbsd-amd64), const EV_ONESHOT = 16 +pkg syscall (openbsd-amd64), const EV_SYSFLAGS = 61440 +pkg syscall (openbsd-amd64), const EWOULDBLOCK = 35 +pkg syscall (openbsd-amd64), const EXDEV = 18 +pkg syscall (openbsd-amd64), const EXTA = 19200 +pkg syscall (openbsd-amd64), const EXTB = 38400 +pkg syscall (openbsd-amd64), const EXTPROC = 2048 +pkg syscall (openbsd-amd64), const FD_CLOEXEC = 1 +pkg syscall (openbsd-amd64), const FD_SETSIZE = 1024 +pkg syscall (openbsd-amd64), const FLUSHO = 8388608 +pkg syscall (openbsd-amd64), const F_DUPFD = 0 +pkg syscall (openbsd-amd64), const F_DUPFD_CLOEXEC = 10 +pkg syscall (openbsd-amd64), const F_GETFD = 1 +pkg syscall (openbsd-amd64), const F_GETFL = 3 +pkg syscall (openbsd-amd64), const F_GETLK = 7 +pkg syscall (openbsd-amd64), const F_GETOWN = 5 +pkg syscall (openbsd-amd64), const F_OK = 0 +pkg syscall (openbsd-amd64), const F_RDLCK = 1 +pkg syscall (openbsd-amd64), const F_SETFD = 2 +pkg syscall (openbsd-amd64), const F_SETFL = 4 +pkg syscall (openbsd-amd64), const F_SETLK = 8 +pkg syscall (openbsd-amd64), const F_SETLKW = 9 +pkg syscall (openbsd-amd64), const F_SETOWN = 6 +pkg syscall (openbsd-amd64), const F_UNLCK = 2 +pkg syscall (openbsd-amd64), const F_WRLCK = 3 +pkg syscall (openbsd-amd64), const HUPCL = 16384 +pkg syscall (openbsd-amd64), const ICANON = 256 +pkg syscall (openbsd-amd64), const ICRNL = 256 +pkg syscall (openbsd-amd64), const IEXTEN = 1024 +pkg syscall (openbsd-amd64), const IFAN_ARRIVAL = 0 +pkg syscall (openbsd-amd64), const IFAN_DEPARTURE = 1 +pkg syscall (openbsd-amd64), const IFA_ROUTE = 1 +pkg syscall (openbsd-amd64), const IFF_ALLMULTI = 512 +pkg syscall (openbsd-amd64), const IFF_CANTCHANGE = 36434 +pkg syscall (openbsd-amd64), const IFF_DEBUG = 4 +pkg syscall (openbsd-amd64), const IFF_LINK0 = 4096 +pkg syscall (openbsd-amd64), const IFF_LINK1 = 8192 +pkg syscall (openbsd-amd64), const IFF_LINK2 = 16384 +pkg syscall (openbsd-amd64), const IFF_LOOPBACK = 8 +pkg syscall (openbsd-amd64), const IFF_MULTICAST = 32768 +pkg syscall (openbsd-amd64), const IFF_NOARP = 128 +pkg syscall (openbsd-amd64), const IFF_NOTRAILERS = 32 +pkg syscall (openbsd-amd64), const IFF_OACTIVE = 1024 +pkg syscall (openbsd-amd64), const IFF_POINTOPOINT = 16 +pkg syscall (openbsd-amd64), const IFF_PROMISC = 256 +pkg syscall (openbsd-amd64), const IFF_RUNNING = 64 +pkg syscall (openbsd-amd64), const IFF_SIMPLEX = 2048 +pkg syscall (openbsd-amd64), const IFNAMSIZ = 16 +pkg syscall (openbsd-amd64), const IFT_1822 = 2 +pkg syscall (openbsd-amd64), const IFT_A12MPPSWITCH = 130 +pkg syscall (openbsd-amd64), const IFT_AAL2 = 187 +pkg syscall (openbsd-amd64), const IFT_AAL5 = 49 +pkg syscall (openbsd-amd64), const IFT_ADSL = 94 +pkg syscall (openbsd-amd64), const IFT_AFLANE8023 = 59 +pkg syscall (openbsd-amd64), const IFT_AFLANE8025 = 60 +pkg syscall (openbsd-amd64), const IFT_ARAP = 88 +pkg syscall (openbsd-amd64), const IFT_ARCNET = 35 +pkg syscall (openbsd-amd64), const IFT_ARCNETPLUS = 36 +pkg syscall (openbsd-amd64), const IFT_ASYNC = 84 +pkg syscall (openbsd-amd64), const IFT_ATM = 37 +pkg syscall (openbsd-amd64), const IFT_ATMDXI = 105 +pkg syscall (openbsd-amd64), const IFT_ATMFUNI = 106 +pkg syscall (openbsd-amd64), const IFT_ATMIMA = 107 +pkg syscall (openbsd-amd64), const IFT_ATMLOGICAL = 80 +pkg syscall (openbsd-amd64), const IFT_ATMRADIO = 189 +pkg syscall (openbsd-amd64), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (openbsd-amd64), const IFT_ATMVCIENDPT = 194 +pkg syscall (openbsd-amd64), const IFT_ATMVIRTUAL = 149 +pkg syscall (openbsd-amd64), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (openbsd-amd64), const IFT_BLUETOOTH = 248 +pkg syscall (openbsd-amd64), const IFT_BRIDGE = 209 +pkg syscall (openbsd-amd64), const IFT_BSC = 83 +pkg syscall (openbsd-amd64), const IFT_CARP = 247 +pkg syscall (openbsd-amd64), const IFT_CCTEMUL = 61 +pkg syscall (openbsd-amd64), const IFT_CEPT = 19 +pkg syscall (openbsd-amd64), const IFT_CES = 133 +pkg syscall (openbsd-amd64), const IFT_CHANNEL = 70 +pkg syscall (openbsd-amd64), const IFT_CNR = 85 +pkg syscall (openbsd-amd64), const IFT_COFFEE = 132 +pkg syscall (openbsd-amd64), const IFT_COMPOSITELINK = 155 +pkg syscall (openbsd-amd64), const IFT_DCN = 141 +pkg syscall (openbsd-amd64), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (openbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (openbsd-amd64), const IFT_DLSW = 74 +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (openbsd-amd64), const IFT_DS0 = 81 +pkg syscall (openbsd-amd64), const IFT_DS0BUNDLE = 82 +pkg syscall (openbsd-amd64), const IFT_DS1FDL = 170 +pkg syscall (openbsd-amd64), const IFT_DS3 = 30 +pkg syscall (openbsd-amd64), const IFT_DTM = 140 +pkg syscall (openbsd-amd64), const IFT_DUMMY = 241 +pkg syscall (openbsd-amd64), const IFT_DVBASILN = 172 +pkg syscall (openbsd-amd64), const IFT_DVBASIOUT = 173 +pkg syscall (openbsd-amd64), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (openbsd-amd64), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (openbsd-amd64), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (openbsd-amd64), const IFT_ECONET = 206 +pkg syscall (openbsd-amd64), const IFT_ENC = 244 +pkg syscall (openbsd-amd64), const IFT_EON = 25 +pkg syscall (openbsd-amd64), const IFT_EPLRS = 87 +pkg syscall (openbsd-amd64), const IFT_ESCON = 73 +pkg syscall (openbsd-amd64), const IFT_ETHER = 6 +pkg syscall (openbsd-amd64), const IFT_FAITH = 243 +pkg syscall (openbsd-amd64), const IFT_FAST = 125 +pkg syscall (openbsd-amd64), const IFT_FASTETHER = 62 +pkg syscall (openbsd-amd64), const IFT_FASTETHERFX = 69 +pkg syscall (openbsd-amd64), const IFT_FDDI = 15 +pkg syscall (openbsd-amd64), const IFT_FIBRECHANNEL = 56 +pkg syscall (openbsd-amd64), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (openbsd-amd64), const IFT_FRAMERELAYMPI = 92 +pkg syscall (openbsd-amd64), const IFT_FRDLCIENDPT = 193 +pkg syscall (openbsd-amd64), const IFT_FRELAY = 32 +pkg syscall (openbsd-amd64), const IFT_FRELAYDCE = 44 +pkg syscall (openbsd-amd64), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (openbsd-amd64), const IFT_FRFORWARD = 158 +pkg syscall (openbsd-amd64), const IFT_G703AT2MB = 67 +pkg syscall (openbsd-amd64), const IFT_G703AT64K = 66 +pkg syscall (openbsd-amd64), const IFT_GIF = 240 +pkg syscall (openbsd-amd64), const IFT_GIGABITETHERNET = 117 +pkg syscall (openbsd-amd64), const IFT_GR303IDT = 178 +pkg syscall (openbsd-amd64), const IFT_GR303RDT = 177 +pkg syscall (openbsd-amd64), const IFT_H323GATEKEEPER = 164 +pkg syscall (openbsd-amd64), const IFT_H323PROXY = 165 +pkg syscall (openbsd-amd64), const IFT_HDH1822 = 3 +pkg syscall (openbsd-amd64), const IFT_HDLC = 118 +pkg syscall (openbsd-amd64), const IFT_HDSL2 = 168 +pkg syscall (openbsd-amd64), const IFT_HIPERLAN2 = 183 +pkg syscall (openbsd-amd64), const IFT_HIPPI = 47 +pkg syscall (openbsd-amd64), const IFT_HIPPIINTERFACE = 57 +pkg syscall (openbsd-amd64), const IFT_HOSTPAD = 90 +pkg syscall (openbsd-amd64), const IFT_HSSI = 46 +pkg syscall (openbsd-amd64), const IFT_HY = 14 +pkg syscall (openbsd-amd64), const IFT_IBM370PARCHAN = 72 +pkg syscall (openbsd-amd64), const IFT_IDSL = 154 +pkg syscall (openbsd-amd64), const IFT_IEEE1394 = 144 +pkg syscall (openbsd-amd64), const IFT_IEEE80211 = 71 +pkg syscall (openbsd-amd64), const IFT_IEEE80212 = 55 +pkg syscall (openbsd-amd64), const IFT_IEEE8023ADLAG = 161 +pkg syscall (openbsd-amd64), const IFT_IFGSN = 145 +pkg syscall (openbsd-amd64), const IFT_IMT = 190 +pkg syscall (openbsd-amd64), const IFT_INFINIBAND = 199 +pkg syscall (openbsd-amd64), const IFT_INTERLEAVE = 124 +pkg syscall (openbsd-amd64), const IFT_IP = 126 +pkg syscall (openbsd-amd64), const IFT_IPFORWARD = 142 +pkg syscall (openbsd-amd64), const IFT_IPOVERATM = 114 +pkg syscall (openbsd-amd64), const IFT_IPOVERCDLC = 109 +pkg syscall (openbsd-amd64), const IFT_IPOVERCLAW = 110 +pkg syscall (openbsd-amd64), const IFT_IPSWITCH = 78 +pkg syscall (openbsd-amd64), const IFT_ISDN = 63 +pkg syscall (openbsd-amd64), const IFT_ISDNBASIC = 20 +pkg syscall (openbsd-amd64), const IFT_ISDNPRIMARY = 21 +pkg syscall (openbsd-amd64), const IFT_ISDNS = 75 +pkg syscall (openbsd-amd64), const IFT_ISDNU = 76 +pkg syscall (openbsd-amd64), const IFT_ISO88022LLC = 41 +pkg syscall (openbsd-amd64), const IFT_ISO88023 = 7 +pkg syscall (openbsd-amd64), const IFT_ISO88024 = 8 +pkg syscall (openbsd-amd64), const IFT_ISO88025 = 9 +pkg syscall (openbsd-amd64), const IFT_ISO88025CRFPINT = 98 +pkg syscall (openbsd-amd64), const IFT_ISO88025DTR = 86 +pkg syscall (openbsd-amd64), const IFT_ISO88025FIBER = 115 +pkg syscall (openbsd-amd64), const IFT_ISO88026 = 10 +pkg syscall (openbsd-amd64), const IFT_ISUP = 179 +pkg syscall (openbsd-amd64), const IFT_L2VLAN = 135 +pkg syscall (openbsd-amd64), const IFT_L3IPVLAN = 136 +pkg syscall (openbsd-amd64), const IFT_L3IPXVLAN = 137 +pkg syscall (openbsd-amd64), const IFT_LAPB = 16 +pkg syscall (openbsd-amd64), const IFT_LAPD = 77 +pkg syscall (openbsd-amd64), const IFT_LAPF = 119 +pkg syscall (openbsd-amd64), const IFT_LINEGROUP = 210 +pkg syscall (openbsd-amd64), const IFT_LOCALTALK = 42 +pkg syscall (openbsd-amd64), const IFT_LOOP = 24 +pkg syscall (openbsd-amd64), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (openbsd-amd64), const IFT_MFSIGLINK = 167 +pkg syscall (openbsd-amd64), const IFT_MIOX25 = 38 +pkg syscall (openbsd-amd64), const IFT_MODEM = 48 +pkg syscall (openbsd-amd64), const IFT_MPC = 113 +pkg syscall (openbsd-amd64), const IFT_MPLS = 166 +pkg syscall (openbsd-amd64), const IFT_MPLSTUNNEL = 150 +pkg syscall (openbsd-amd64), const IFT_MSDSL = 143 +pkg syscall (openbsd-amd64), const IFT_MVL = 191 +pkg syscall (openbsd-amd64), const IFT_MYRINET = 99 +pkg syscall (openbsd-amd64), const IFT_NFAS = 175 +pkg syscall (openbsd-amd64), const IFT_NSIP = 27 +pkg syscall (openbsd-amd64), const IFT_OPTICALCHANNEL = 195 +pkg syscall (openbsd-amd64), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (openbsd-amd64), const IFT_OTHER = 1 +pkg syscall (openbsd-amd64), const IFT_P10 = 12 +pkg syscall (openbsd-amd64), const IFT_P80 = 13 +pkg syscall (openbsd-amd64), const IFT_PARA = 34 +pkg syscall (openbsd-amd64), const IFT_PFLOG = 245 +pkg syscall (openbsd-amd64), const IFT_PFLOW = 249 +pkg syscall (openbsd-amd64), const IFT_PFSYNC = 246 +pkg syscall (openbsd-amd64), const IFT_PLC = 174 +pkg syscall (openbsd-amd64), const IFT_PON155 = 207 +pkg syscall (openbsd-amd64), const IFT_PON622 = 208 +pkg syscall (openbsd-amd64), const IFT_POS = 171 +pkg syscall (openbsd-amd64), const IFT_PPP = 23 +pkg syscall (openbsd-amd64), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (openbsd-amd64), const IFT_PROPATM = 197 +pkg syscall (openbsd-amd64), const IFT_PROPBWAP2MP = 184 +pkg syscall (openbsd-amd64), const IFT_PROPCNLS = 89 +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (openbsd-amd64), const IFT_PROPMUX = 54 +pkg syscall (openbsd-amd64), const IFT_PROPVIRTUAL = 53 +pkg syscall (openbsd-amd64), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (openbsd-amd64), const IFT_PTPSERIAL = 22 +pkg syscall (openbsd-amd64), const IFT_PVC = 242 +pkg syscall (openbsd-amd64), const IFT_Q2931 = 201 +pkg syscall (openbsd-amd64), const IFT_QLLC = 68 +pkg syscall (openbsd-amd64), const IFT_RADIOMAC = 188 +pkg syscall (openbsd-amd64), const IFT_RADSL = 95 +pkg syscall (openbsd-amd64), const IFT_REACHDSL = 192 +pkg syscall (openbsd-amd64), const IFT_RFC1483 = 159 +pkg syscall (openbsd-amd64), const IFT_RS232 = 33 +pkg syscall (openbsd-amd64), const IFT_RSRB = 79 +pkg syscall (openbsd-amd64), const IFT_SDLC = 17 +pkg syscall (openbsd-amd64), const IFT_SDSL = 96 +pkg syscall (openbsd-amd64), const IFT_SHDSL = 169 +pkg syscall (openbsd-amd64), const IFT_SIP = 31 +pkg syscall (openbsd-amd64), const IFT_SIPSIG = 204 +pkg syscall (openbsd-amd64), const IFT_SIPTG = 203 +pkg syscall (openbsd-amd64), const IFT_SLIP = 28 +pkg syscall (openbsd-amd64), const IFT_SMDSDXI = 43 +pkg syscall (openbsd-amd64), const IFT_SMDSICIP = 52 +pkg syscall (openbsd-amd64), const IFT_SONET = 39 +pkg syscall (openbsd-amd64), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (openbsd-amd64), const IFT_SONETPATH = 50 +pkg syscall (openbsd-amd64), const IFT_SONETVT = 51 +pkg syscall (openbsd-amd64), const IFT_SRP = 151 +pkg syscall (openbsd-amd64), const IFT_SS7SIGLINK = 156 +pkg syscall (openbsd-amd64), const IFT_STACKTOSTACK = 111 +pkg syscall (openbsd-amd64), const IFT_STARLAN = 11 +pkg syscall (openbsd-amd64), const IFT_T1 = 18 +pkg syscall (openbsd-amd64), const IFT_TDLC = 116 +pkg syscall (openbsd-amd64), const IFT_TELINK = 200 +pkg syscall (openbsd-amd64), const IFT_TERMPAD = 91 +pkg syscall (openbsd-amd64), const IFT_TR008 = 176 +pkg syscall (openbsd-amd64), const IFT_TRANSPHDLC = 123 +pkg syscall (openbsd-amd64), const IFT_TUNNEL = 131 +pkg syscall (openbsd-amd64), const IFT_ULTRA = 29 +pkg syscall (openbsd-amd64), const IFT_USB = 160 +pkg syscall (openbsd-amd64), const IFT_V11 = 64 +pkg syscall (openbsd-amd64), const IFT_V35 = 45 +pkg syscall (openbsd-amd64), const IFT_V36 = 65 +pkg syscall (openbsd-amd64), const IFT_V37 = 120 +pkg syscall (openbsd-amd64), const IFT_VDSL = 97 +pkg syscall (openbsd-amd64), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (openbsd-amd64), const IFT_VIRTUALTG = 202 +pkg syscall (openbsd-amd64), const IFT_VOICEDID = 213 +pkg syscall (openbsd-amd64), const IFT_VOICEEM = 100 +pkg syscall (openbsd-amd64), const IFT_VOICEEMFGD = 211 +pkg syscall (openbsd-amd64), const IFT_VOICEENCAP = 103 +pkg syscall (openbsd-amd64), const IFT_VOICEFGDEANA = 212 +pkg syscall (openbsd-amd64), const IFT_VOICEFXO = 101 +pkg syscall (openbsd-amd64), const IFT_VOICEFXS = 102 +pkg syscall (openbsd-amd64), const IFT_VOICEOVERATM = 152 +pkg syscall (openbsd-amd64), const IFT_VOICEOVERCABLE = 198 +pkg syscall (openbsd-amd64), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (openbsd-amd64), const IFT_VOICEOVERIP = 104 +pkg syscall (openbsd-amd64), const IFT_X213 = 93 +pkg syscall (openbsd-amd64), const IFT_X25 = 5 +pkg syscall (openbsd-amd64), const IFT_X25DDN = 4 +pkg syscall (openbsd-amd64), const IFT_X25HUNTGROUP = 122 +pkg syscall (openbsd-amd64), const IFT_X25MLP = 121 +pkg syscall (openbsd-amd64), const IFT_X25PLE = 40 +pkg syscall (openbsd-amd64), const IFT_XETHER = 26 +pkg syscall (openbsd-amd64), const IGNBRK = 1 +pkg syscall (openbsd-amd64), const IGNCR = 128 +pkg syscall (openbsd-amd64), const IGNPAR = 4 +pkg syscall (openbsd-amd64), const IMAXBEL = 8192 +pkg syscall (openbsd-amd64), const INLCR = 64 +pkg syscall (openbsd-amd64), const INPCK = 16 +pkg syscall (openbsd-amd64), const IN_CLASSA_HOST = 16777215 +pkg syscall (openbsd-amd64), const IN_CLASSA_MAX = 128 +pkg syscall (openbsd-amd64), const IN_CLASSA_NET = 4278190080 +pkg syscall (openbsd-amd64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (openbsd-amd64), const IN_CLASSB_HOST = 65535 +pkg syscall (openbsd-amd64), const IN_CLASSB_MAX = 65536 +pkg syscall (openbsd-amd64), const IN_CLASSB_NET = 4294901760 +pkg syscall (openbsd-amd64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (openbsd-amd64), const IN_CLASSC_HOST = 255 +pkg syscall (openbsd-amd64), const IN_CLASSC_NET = 4294967040 +pkg syscall (openbsd-amd64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (openbsd-amd64), const IN_CLASSD_HOST = 268435455 +pkg syscall (openbsd-amd64), const IN_CLASSD_NET = 4026531840 +pkg syscall (openbsd-amd64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (openbsd-amd64), const IN_LOOPBACKNET = 127 +pkg syscall (openbsd-amd64), const IN_RFC3021_HOST = 1 +pkg syscall (openbsd-amd64), const IN_RFC3021_NET = 4294967294 +pkg syscall (openbsd-amd64), const IN_RFC3021_NSHIFT = 31 +pkg syscall (openbsd-amd64), const IPPROTO_AH = 51 +pkg syscall (openbsd-amd64), const IPPROTO_CARP = 112 +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT = 258 +pkg syscall (openbsd-amd64), const IPPROTO_DONE = 257 +pkg syscall (openbsd-amd64), const IPPROTO_DSTOPTS = 60 +pkg syscall (openbsd-amd64), const IPPROTO_EGP = 8 +pkg syscall (openbsd-amd64), const IPPROTO_ENCAP = 98 +pkg syscall (openbsd-amd64), const IPPROTO_EON = 80 +pkg syscall (openbsd-amd64), const IPPROTO_ESP = 50 +pkg syscall (openbsd-amd64), const IPPROTO_ETHERIP = 97 +pkg syscall (openbsd-amd64), const IPPROTO_FRAGMENT = 44 +pkg syscall (openbsd-amd64), const IPPROTO_GGP = 3 +pkg syscall (openbsd-amd64), const IPPROTO_GRE = 47 +pkg syscall (openbsd-amd64), const IPPROTO_HOPOPTS = 0 +pkg syscall (openbsd-amd64), const IPPROTO_ICMP = 1 +pkg syscall (openbsd-amd64), const IPPROTO_ICMPV6 = 58 +pkg syscall (openbsd-amd64), const IPPROTO_IDP = 22 +pkg syscall (openbsd-amd64), const IPPROTO_IGMP = 2 +pkg syscall (openbsd-amd64), const IPPROTO_IPCOMP = 108 +pkg syscall (openbsd-amd64), const IPPROTO_IPIP = 4 +pkg syscall (openbsd-amd64), const IPPROTO_IPV4 = 4 +pkg syscall (openbsd-amd64), const IPPROTO_MAX = 256 +pkg syscall (openbsd-amd64), const IPPROTO_MAXID = 259 +pkg syscall (openbsd-amd64), const IPPROTO_MOBILE = 55 +pkg syscall (openbsd-amd64), const IPPROTO_MPLS = 137 +pkg syscall (openbsd-amd64), const IPPROTO_NONE = 59 +pkg syscall (openbsd-amd64), const IPPROTO_PFSYNC = 240 +pkg syscall (openbsd-amd64), const IPPROTO_PIM = 103 +pkg syscall (openbsd-amd64), const IPPROTO_PUP = 12 +pkg syscall (openbsd-amd64), const IPPROTO_RAW = 255 +pkg syscall (openbsd-amd64), const IPPROTO_ROUTING = 43 +pkg syscall (openbsd-amd64), const IPPROTO_RSVP = 46 +pkg syscall (openbsd-amd64), const IPPROTO_TP = 29 +pkg syscall (openbsd-amd64), const IPV6_AUTH_LEVEL = 53 +pkg syscall (openbsd-amd64), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (openbsd-amd64), const IPV6_CHECKSUM = 26 +pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-amd64), const IPV6_DEFHLIM = 64 +pkg syscall (openbsd-amd64), const IPV6_DONTFRAG = 62 +pkg syscall (openbsd-amd64), const IPV6_DSTOPTS = 50 +pkg syscall (openbsd-amd64), const IPV6_ESP_NETWORK_LEVEL = 55 +pkg syscall (openbsd-amd64), const IPV6_ESP_TRANS_LEVEL = 54 +pkg syscall (openbsd-amd64), const IPV6_FAITH = 29 +pkg syscall (openbsd-amd64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (openbsd-amd64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (openbsd-amd64), const IPV6_FRAGTTL = 120 +pkg syscall (openbsd-amd64), const IPV6_HLIMDEC = 1 +pkg syscall (openbsd-amd64), const IPV6_HOPLIMIT = 47 +pkg syscall (openbsd-amd64), const IPV6_HOPOPTS = 49 +pkg syscall (openbsd-amd64), const IPV6_IPCOMP_LEVEL = 60 +pkg syscall (openbsd-amd64), const IPV6_JOIN_GROUP = 12 +pkg syscall (openbsd-amd64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (openbsd-amd64), const IPV6_MAXHLIM = 255 +pkg syscall (openbsd-amd64), const IPV6_MAXPACKET = 65535 +pkg syscall (openbsd-amd64), const IPV6_MMTU = 1280 +pkg syscall (openbsd-amd64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (openbsd-amd64), const IPV6_MULTICAST_IF = 9 +pkg syscall (openbsd-amd64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (openbsd-amd64), const IPV6_NEXTHOP = 48 +pkg syscall (openbsd-amd64), const IPV6_OPTIONS = 1 +pkg syscall (openbsd-amd64), const IPV6_PATHMTU = 44 +pkg syscall (openbsd-amd64), const IPV6_PIPEX = 63 +pkg syscall (openbsd-amd64), const IPV6_PKTINFO = 46 +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE = 14 +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (openbsd-amd64), const IPV6_RECVDSTOPTS = 40 +pkg syscall (openbsd-amd64), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (openbsd-amd64), const IPV6_RECVHOPOPTS = 39 +pkg syscall (openbsd-amd64), const IPV6_RECVPATHMTU = 43 +pkg syscall (openbsd-amd64), const IPV6_RECVPKTINFO = 36 +pkg syscall (openbsd-amd64), const IPV6_RECVRTHDR = 38 +pkg syscall (openbsd-amd64), const IPV6_RECVTCLASS = 57 +pkg syscall (openbsd-amd64), const IPV6_RTABLE = 4129 +pkg syscall (openbsd-amd64), const IPV6_RTHDR = 51 +pkg syscall (openbsd-amd64), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (openbsd-amd64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (openbsd-amd64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (openbsd-amd64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (openbsd-amd64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (openbsd-amd64), const IPV6_TCLASS = 61 +pkg syscall (openbsd-amd64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (openbsd-amd64), const IPV6_USE_MIN_MTU = 42 +pkg syscall (openbsd-amd64), const IPV6_V6ONLY = 27 +pkg syscall (openbsd-amd64), const IPV6_VERSION = 96 +pkg syscall (openbsd-amd64), const IPV6_VERSION_MASK = 240 +pkg syscall (openbsd-amd64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (openbsd-amd64), const IP_AUTH_LEVEL = 20 +pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (openbsd-amd64), const IP_DF = 16384 +pkg syscall (openbsd-amd64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (openbsd-amd64), const IP_ESP_NETWORK_LEVEL = 22 +pkg syscall (openbsd-amd64), const IP_ESP_TRANS_LEVEL = 21 +pkg syscall (openbsd-amd64), const IP_HDRINCL = 2 +pkg syscall (openbsd-amd64), const IP_IPCOMP_LEVEL = 29 +pkg syscall (openbsd-amd64), const IP_IPSECFLOWINFO = 36 +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_AUTH = 27 +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_CRED = 25 +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_ID = 23 +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_AUTH = 28 +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_CRED = 26 +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_ID = 24 +pkg syscall (openbsd-amd64), const IP_MAXPACKET = 65535 +pkg syscall (openbsd-amd64), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (openbsd-amd64), const IP_MF = 8192 +pkg syscall (openbsd-amd64), const IP_MINTTL = 32 +pkg syscall (openbsd-amd64), const IP_MIN_MEMBERSHIPS = 15 +pkg syscall (openbsd-amd64), const IP_MSS = 576 +pkg syscall (openbsd-amd64), const IP_MULTICAST_IF = 9 +pkg syscall (openbsd-amd64), const IP_MULTICAST_LOOP = 11 +pkg syscall (openbsd-amd64), const IP_MULTICAST_TTL = 10 +pkg syscall (openbsd-amd64), const IP_OFFMASK = 8191 +pkg syscall (openbsd-amd64), const IP_OPTIONS = 1 +pkg syscall (openbsd-amd64), const IP_PIPEX = 34 +pkg syscall (openbsd-amd64), const IP_PORTRANGE = 19 +pkg syscall (openbsd-amd64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-amd64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-amd64), const IP_PORTRANGE_LOW = 2 +pkg syscall (openbsd-amd64), const IP_RECVDSTADDR = 7 +pkg syscall (openbsd-amd64), const IP_RECVDSTPORT = 33 +pkg syscall (openbsd-amd64), const IP_RECVIF = 30 +pkg syscall (openbsd-amd64), const IP_RECVOPTS = 5 +pkg syscall (openbsd-amd64), const IP_RECVRETOPTS = 6 +pkg syscall (openbsd-amd64), const IP_RECVRTABLE = 35 +pkg syscall (openbsd-amd64), const IP_RECVTTL = 31 +pkg syscall (openbsd-amd64), const IP_RETOPTS = 8 +pkg syscall (openbsd-amd64), const IP_RF = 32768 +pkg syscall (openbsd-amd64), const IP_RTABLE = 4129 +pkg syscall (openbsd-amd64), const IP_TOS = 3 +pkg syscall (openbsd-amd64), const IP_TTL = 4 +pkg syscall (openbsd-amd64), const ISIG = 128 +pkg syscall (openbsd-amd64), const ISTRIP = 32 +pkg syscall (openbsd-amd64), const IXANY = 2048 +pkg syscall (openbsd-amd64), const IXOFF = 1024 +pkg syscall (openbsd-amd64), const IXON = 512 +pkg syscall (openbsd-amd64), const ImplementsGetwd = false +pkg syscall (openbsd-amd64), const LCNT_OVERLOAD_FLUSH = 6 +pkg syscall (openbsd-amd64), const LOCK_EX = 2 +pkg syscall (openbsd-amd64), const LOCK_NB = 4 +pkg syscall (openbsd-amd64), const LOCK_SH = 1 +pkg syscall (openbsd-amd64), const LOCK_UN = 8 +pkg syscall (openbsd-amd64), const MSG_BCAST = 256 +pkg syscall (openbsd-amd64), const MSG_CTRUNC = 32 +pkg syscall (openbsd-amd64), const MSG_DONTROUTE = 4 +pkg syscall (openbsd-amd64), const MSG_DONTWAIT = 128 +pkg syscall (openbsd-amd64), const MSG_EOR = 8 +pkg syscall (openbsd-amd64), const MSG_MCAST = 512 +pkg syscall (openbsd-amd64), const MSG_NOSIGNAL = 1024 +pkg syscall (openbsd-amd64), const MSG_OOB = 1 +pkg syscall (openbsd-amd64), const MSG_PEEK = 2 +pkg syscall (openbsd-amd64), const MSG_TRUNC = 16 +pkg syscall (openbsd-amd64), const MSG_WAITALL = 64 +pkg syscall (openbsd-amd64), const NAME_MAX = 255 +pkg syscall (openbsd-amd64), const NET_RT_DUMP = 1 +pkg syscall (openbsd-amd64), const NET_RT_FLAGS = 2 +pkg syscall (openbsd-amd64), const NET_RT_IFLIST = 3 +pkg syscall (openbsd-amd64), const NET_RT_MAXID = 6 +pkg syscall (openbsd-amd64), const NET_RT_STATS = 4 +pkg syscall (openbsd-amd64), const NET_RT_TABLE = 5 +pkg syscall (openbsd-amd64), const NOFLSH = 2147483648 +pkg syscall (openbsd-amd64), const NOTE_ATTRIB = 8 +pkg syscall (openbsd-amd64), const NOTE_CHILD = 4 +pkg syscall (openbsd-amd64), const NOTE_DELETE = 1 +pkg syscall (openbsd-amd64), const NOTE_EOF = 2 +pkg syscall (openbsd-amd64), const NOTE_EXEC = 536870912 +pkg syscall (openbsd-amd64), const NOTE_EXIT = 2147483648 +pkg syscall (openbsd-amd64), const NOTE_EXTEND = 4 +pkg syscall (openbsd-amd64), const NOTE_FORK = 1073741824 +pkg syscall (openbsd-amd64), const NOTE_LINK = 16 +pkg syscall (openbsd-amd64), const NOTE_LOWAT = 1 +pkg syscall (openbsd-amd64), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (openbsd-amd64), const NOTE_PDATAMASK = 1048575 +pkg syscall (openbsd-amd64), const NOTE_RENAME = 32 +pkg syscall (openbsd-amd64), const NOTE_REVOKE = 64 +pkg syscall (openbsd-amd64), const NOTE_TRACK = 1 +pkg syscall (openbsd-amd64), const NOTE_TRACKERR = 2 +pkg syscall (openbsd-amd64), const NOTE_TRUNCATE = 128 +pkg syscall (openbsd-amd64), const NOTE_WRITE = 2 +pkg syscall (openbsd-amd64), const OCRNL = 16 +pkg syscall (openbsd-amd64), const ONLCR = 2 +pkg syscall (openbsd-amd64), const ONLRET = 128 +pkg syscall (openbsd-amd64), const ONOCR = 64 +pkg syscall (openbsd-amd64), const ONOEOT = 8 +pkg syscall (openbsd-amd64), const OPOST = 1 +pkg syscall (openbsd-amd64), const O_ACCMODE = 3 +pkg syscall (openbsd-amd64), const O_APPEND = 8 +pkg syscall (openbsd-amd64), const O_ASYNC = 64 +pkg syscall (openbsd-amd64), const O_CLOEXEC = 65536 +pkg syscall (openbsd-amd64), const O_CREAT = 512 +pkg syscall (openbsd-amd64), const O_DIRECTORY = 131072 +pkg syscall (openbsd-amd64), const O_DSYNC = 128 +pkg syscall (openbsd-amd64), const O_EXCL = 2048 +pkg syscall (openbsd-amd64), const O_EXLOCK = 32 +pkg syscall (openbsd-amd64), const O_FSYNC = 128 +pkg syscall (openbsd-amd64), const O_NDELAY = 4 +pkg syscall (openbsd-amd64), const O_NOCTTY = 32768 +pkg syscall (openbsd-amd64), const O_NOFOLLOW = 256 +pkg syscall (openbsd-amd64), const O_NONBLOCK = 4 +pkg syscall (openbsd-amd64), const O_RSYNC = 128 +pkg syscall (openbsd-amd64), const O_SHLOCK = 16 +pkg syscall (openbsd-amd64), const O_SYNC = 128 +pkg syscall (openbsd-amd64), const O_TRUNC = 1024 +pkg syscall (openbsd-amd64), const PARENB = 4096 +pkg syscall (openbsd-amd64), const PARMRK = 8 +pkg syscall (openbsd-amd64), const PARODD = 8192 +pkg syscall (openbsd-amd64), const PENDIN = 536870912 +pkg syscall (openbsd-amd64), const PF_FLUSH = 1 +pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH = 21 +pkg syscall (openbsd-amd64), const PTRACE_CONT = 7 +pkg syscall (openbsd-amd64), const PTRACE_KILL = 8 +pkg syscall (openbsd-amd64), const PTRACE_TRACEME = 0 +pkg syscall (openbsd-amd64), const RLIMIT_CORE = 4 +pkg syscall (openbsd-amd64), const RLIMIT_CPU = 0 +pkg syscall (openbsd-amd64), const RLIMIT_DATA = 2 +pkg syscall (openbsd-amd64), const RLIMIT_FSIZE = 1 +pkg syscall (openbsd-amd64), const RLIMIT_NOFILE = 8 +pkg syscall (openbsd-amd64), const RLIMIT_STACK = 3 +pkg syscall (openbsd-amd64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (openbsd-amd64), const RTAX_AUTHOR = 6 +pkg syscall (openbsd-amd64), const RTAX_BRD = 7 +pkg syscall (openbsd-amd64), const RTAX_DST = 0 +pkg syscall (openbsd-amd64), const RTAX_GATEWAY = 1 +pkg syscall (openbsd-amd64), const RTAX_GENMASK = 3 +pkg syscall (openbsd-amd64), const RTAX_IFA = 5 +pkg syscall (openbsd-amd64), const RTAX_IFP = 4 +pkg syscall (openbsd-amd64), const RTAX_LABEL = 10 +pkg syscall (openbsd-amd64), const RTAX_MAX = 11 +pkg syscall (openbsd-amd64), const RTAX_NETMASK = 2 +pkg syscall (openbsd-amd64), const RTAX_SRC = 8 +pkg syscall (openbsd-amd64), const RTAX_SRCMASK = 9 +pkg syscall (openbsd-amd64), const RTA_AUTHOR = 64 +pkg syscall (openbsd-amd64), const RTA_BRD = 128 +pkg syscall (openbsd-amd64), const RTA_DST = 1 +pkg syscall (openbsd-amd64), const RTA_GATEWAY = 2 +pkg syscall (openbsd-amd64), const RTA_GENMASK = 8 +pkg syscall (openbsd-amd64), const RTA_IFA = 32 +pkg syscall (openbsd-amd64), const RTA_IFP = 16 +pkg syscall (openbsd-amd64), const RTA_LABEL = 1024 +pkg syscall (openbsd-amd64), const RTA_NETMASK = 4 +pkg syscall (openbsd-amd64), const RTA_SRC = 256 +pkg syscall (openbsd-amd64), const RTA_SRCMASK = 512 +pkg syscall (openbsd-amd64), const RTF_ANNOUNCE = 16384 +pkg syscall (openbsd-amd64), const RTF_BLACKHOLE = 4096 +pkg syscall (openbsd-amd64), const RTF_CLONED = 65536 +pkg syscall (openbsd-amd64), const RTF_CLONING = 256 +pkg syscall (openbsd-amd64), const RTF_DONE = 64 +pkg syscall (openbsd-amd64), const RTF_DYNAMIC = 16 +pkg syscall (openbsd-amd64), const RTF_FMASK = 63496 +pkg syscall (openbsd-amd64), const RTF_GATEWAY = 2 +pkg syscall (openbsd-amd64), const RTF_HOST = 4 +pkg syscall (openbsd-amd64), const RTF_LLINFO = 1024 +pkg syscall (openbsd-amd64), const RTF_MASK = 128 +pkg syscall (openbsd-amd64), const RTF_MODIFIED = 32 +pkg syscall (openbsd-amd64), const RTF_MPATH = 262144 +pkg syscall (openbsd-amd64), const RTF_MPLS = 1048576 +pkg syscall (openbsd-amd64), const RTF_PERMANENT_ARP = 8192 +pkg syscall (openbsd-amd64), const RTF_PROTO1 = 32768 +pkg syscall (openbsd-amd64), const RTF_PROTO2 = 16384 +pkg syscall (openbsd-amd64), const RTF_PROTO3 = 8192 +pkg syscall (openbsd-amd64), const RTF_REJECT = 8 +pkg syscall (openbsd-amd64), const RTF_SOURCE = 131072 +pkg syscall (openbsd-amd64), const RTF_STATIC = 2048 +pkg syscall (openbsd-amd64), const RTF_TUNNEL = 1048576 +pkg syscall (openbsd-amd64), const RTF_UP = 1 +pkg syscall (openbsd-amd64), const RTF_USETRAILERS = 32768 +pkg syscall (openbsd-amd64), const RTF_XRESOLVE = 512 +pkg syscall (openbsd-amd64), const RTM_ADD = 1 +pkg syscall (openbsd-amd64), const RTM_CHANGE = 3 +pkg syscall (openbsd-amd64), const RTM_DELADDR = 13 +pkg syscall (openbsd-amd64), const RTM_DELETE = 2 +pkg syscall (openbsd-amd64), const RTM_DESYNC = 16 +pkg syscall (openbsd-amd64), const RTM_GET = 4 +pkg syscall (openbsd-amd64), const RTM_IFANNOUNCE = 15 +pkg syscall (openbsd-amd64), const RTM_IFINFO = 14 +pkg syscall (openbsd-amd64), const RTM_LOCK = 8 +pkg syscall (openbsd-amd64), const RTM_LOSING = 5 +pkg syscall (openbsd-amd64), const RTM_MAXSIZE = 2048 +pkg syscall (openbsd-amd64), const RTM_MISS = 7 +pkg syscall (openbsd-amd64), const RTM_NEWADDR = 12 +pkg syscall (openbsd-amd64), const RTM_REDIRECT = 6 +pkg syscall (openbsd-amd64), const RTM_RESOLVE = 11 +pkg syscall (openbsd-amd64), const RTM_RTTUNIT = 1000000 +pkg syscall (openbsd-amd64), const RTM_VERSION = 4 +pkg syscall (openbsd-amd64), const RTV_EXPIRE = 4 +pkg syscall (openbsd-amd64), const RTV_HOPCOUNT = 2 +pkg syscall (openbsd-amd64), const RTV_MTU = 1 +pkg syscall (openbsd-amd64), const RTV_RPIPE = 8 +pkg syscall (openbsd-amd64), const RTV_RTT = 64 +pkg syscall (openbsd-amd64), const RTV_RTTVAR = 128 +pkg syscall (openbsd-amd64), const RTV_SPIPE = 16 +pkg syscall (openbsd-amd64), const RTV_SSTHRESH = 32 +pkg syscall (openbsd-amd64), const RT_TABLEID_MAX = 255 +pkg syscall (openbsd-amd64), const RUSAGE_CHILDREN = -1 +pkg syscall (openbsd-amd64), const RUSAGE_SELF = 0 +pkg syscall (openbsd-amd64), const RUSAGE_THREAD = 1 +pkg syscall (openbsd-amd64), const SCM_RIGHTS = 1 +pkg syscall (openbsd-amd64), const SCM_TIMESTAMP = 4 +pkg syscall (openbsd-amd64), const SIGBUS = 10 +pkg syscall (openbsd-amd64), const SIGCHLD = 20 +pkg syscall (openbsd-amd64), const SIGCONT = 19 +pkg syscall (openbsd-amd64), const SIGEMT = 7 +pkg syscall (openbsd-amd64), const SIGINFO = 29 +pkg syscall (openbsd-amd64), const SIGIO = 23 +pkg syscall (openbsd-amd64), const SIGIOT = 6 +pkg syscall (openbsd-amd64), const SIGPROF = 27 +pkg syscall (openbsd-amd64), const SIGSTOP = 17 +pkg syscall (openbsd-amd64), const SIGSYS = 12 +pkg syscall (openbsd-amd64), const SIGTHR = 32 +pkg syscall (openbsd-amd64), const SIGTSTP = 18 +pkg syscall (openbsd-amd64), const SIGTTIN = 21 +pkg syscall (openbsd-amd64), const SIGTTOU = 22 +pkg syscall (openbsd-amd64), const SIGURG = 16 +pkg syscall (openbsd-amd64), const SIGUSR1 = 30 +pkg syscall (openbsd-amd64), const SIGUSR2 = 31 +pkg syscall (openbsd-amd64), const SIGVTALRM = 26 +pkg syscall (openbsd-amd64), const SIGWINCH = 28 +pkg syscall (openbsd-amd64), const SIGXCPU = 24 +pkg syscall (openbsd-amd64), const SIGXFSZ = 25 +pkg syscall (openbsd-amd64), const SIOCADDMULTI = 2149607729 +pkg syscall (openbsd-amd64), const SIOCAIFADDR = 2151704858 +pkg syscall (openbsd-amd64), const SIOCAIFGROUP = 2150132103 +pkg syscall (openbsd-amd64), const SIOCALIFADDR = 2182637852 +pkg syscall (openbsd-amd64), const SIOCATMARK = 1074033415 +pkg syscall (openbsd-amd64), const SIOCBRDGADD = 2153277756 +pkg syscall (openbsd-amd64), const SIOCBRDGADDS = 2153277761 +pkg syscall (openbsd-amd64), const SIOCBRDGARL = 2154719565 +pkg syscall (openbsd-amd64), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-amd64), const SIOCBRDGDEL = 2153277757 +pkg syscall (openbsd-amd64), const SIOCBRDGDELS = 2153277762 +pkg syscall (openbsd-amd64), const SIOCBRDGFLUSH = 2153277768 +pkg syscall (openbsd-amd64), const SIOCBRDGFRL = 2154719566 +pkg syscall (openbsd-amd64), const SIOCBRDGGCACHE = 3222563137 +pkg syscall (openbsd-amd64), const SIOCBRDGGFD = 3222563154 +pkg syscall (openbsd-amd64), const SIOCBRDGGHT = 3222563153 +pkg syscall (openbsd-amd64), const SIOCBRDGGIFFLGS = 3227019582 +pkg syscall (openbsd-amd64), const SIOCBRDGGMA = 3222563155 +pkg syscall (openbsd-amd64), const SIOCBRDGGPARAM = 3225446744 +pkg syscall (openbsd-amd64), const SIOCBRDGGPRI = 3222563152 +pkg syscall (openbsd-amd64), const SIOCBRDGGRL = 3224398159 +pkg syscall (openbsd-amd64), const SIOCBRDGGSIFS = 3227019580 +pkg syscall (openbsd-amd64), const SIOCBRDGGTO = 3222563142 +pkg syscall (openbsd-amd64), const SIOCBRDGIFS = 3227019586 +pkg syscall (openbsd-amd64), const SIOCBRDGRTS = 3223349571 +pkg syscall (openbsd-amd64), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-amd64), const SIOCBRDGSCACHE = 2148821312 +pkg syscall (openbsd-amd64), const SIOCBRDGSFD = 2148821330 +pkg syscall (openbsd-amd64), const SIOCBRDGSHT = 2148821329 +pkg syscall (openbsd-amd64), const SIOCBRDGSIFCOST = 2153277781 +pkg syscall (openbsd-amd64), const SIOCBRDGSIFFLGS = 2153277759 +pkg syscall (openbsd-amd64), const SIOCBRDGSIFPRIO = 2153277780 +pkg syscall (openbsd-amd64), const SIOCBRDGSMA = 2148821331 +pkg syscall (openbsd-amd64), const SIOCBRDGSPRI = 2148821328 +pkg syscall (openbsd-amd64), const SIOCBRDGSPROTO = 2148821338 +pkg syscall (openbsd-amd64), const SIOCBRDGSTO = 2148821317 +pkg syscall (openbsd-amd64), const SIOCBRDGSTXHC = 2148821337 +pkg syscall (openbsd-amd64), const SIOCDELMULTI = 2149607730 +pkg syscall (openbsd-amd64), const SIOCDIFADDR = 2149607705 +pkg syscall (openbsd-amd64), const SIOCDIFGROUP = 2150132105 +pkg syscall (openbsd-amd64), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (openbsd-amd64), const SIOCDLIFADDR = 2182637854 +pkg syscall (openbsd-amd64), const SIOCGETKALIVE = 3222825380 +pkg syscall (openbsd-amd64), const SIOCGETLABEL = 2149607834 +pkg syscall (openbsd-amd64), const SIOCGETPFLOW = 3223349758 +pkg syscall (openbsd-amd64), const SIOCGETPFSYNC = 3223349752 +pkg syscall (openbsd-amd64), const SIOCGETSGCNT = 3223352628 +pkg syscall (openbsd-amd64), const SIOCGETVIFCNT = 3223876915 +pkg syscall (openbsd-amd64), const SIOCGHIWAT = 1074033409 +pkg syscall (openbsd-amd64), const SIOCGIFADDR = 3223349537 +pkg syscall (openbsd-amd64), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (openbsd-amd64), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (openbsd-amd64), const SIOCGIFCONF = 3222300964 +pkg syscall (openbsd-amd64), const SIOCGIFDATA = 3223349531 +pkg syscall (openbsd-amd64), const SIOCGIFDESCR = 3223349633 +pkg syscall (openbsd-amd64), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (openbsd-amd64), const SIOCGIFFLAGS = 3223349521 +pkg syscall (openbsd-amd64), const SIOCGIFGATTR = 3223873931 +pkg syscall (openbsd-amd64), const SIOCGIFGENERIC = 3223349562 +pkg syscall (openbsd-amd64), const SIOCGIFGMEMB = 3223873930 +pkg syscall (openbsd-amd64), const SIOCGIFGROUP = 3223873928 +pkg syscall (openbsd-amd64), const SIOCGIFMEDIA = 3224398134 +pkg syscall (openbsd-amd64), const SIOCGIFMETRIC = 3223349527 +pkg syscall (openbsd-amd64), const SIOCGIFMTU = 3223349630 +pkg syscall (openbsd-amd64), const SIOCGIFNETMASK = 3223349541 +pkg syscall (openbsd-amd64), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (openbsd-amd64), const SIOCGIFPRIORITY = 3223349660 +pkg syscall (openbsd-amd64), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (openbsd-amd64), const SIOCGIFRDOMAIN = 3223349664 +pkg syscall (openbsd-amd64), const SIOCGIFRTLABEL = 3223349635 +pkg syscall (openbsd-amd64), const SIOCGIFTIMESLOT = 3223349638 +pkg syscall (openbsd-amd64), const SIOCGIFXFLAGS = 3223349662 +pkg syscall (openbsd-amd64), const SIOCGLIFADDR = 3256379677 +pkg syscall (openbsd-amd64), const SIOCGLIFPHYADDR = 3256379723 +pkg syscall (openbsd-amd64), const SIOCGLIFPHYRTABLE = 3223349666 +pkg syscall (openbsd-amd64), const SIOCGLOWAT = 1074033411 +pkg syscall (openbsd-amd64), const SIOCGPGRP = 1074033417 +pkg syscall (openbsd-amd64), const SIOCGVH = 3223349750 +pkg syscall (openbsd-amd64), const SIOCIFCREATE = 2149607802 +pkg syscall (openbsd-amd64), const SIOCIFDESTROY = 2149607801 +pkg syscall (openbsd-amd64), const SIOCIFGCLONERS = 3222301048 +pkg syscall (openbsd-amd64), const SIOCSETKALIVE = 2149083555 +pkg syscall (openbsd-amd64), const SIOCSETLABEL = 2149607833 +pkg syscall (openbsd-amd64), const SIOCSETPFLOW = 2149607933 +pkg syscall (openbsd-amd64), const SIOCSETPFSYNC = 2149607927 +pkg syscall (openbsd-amd64), const SIOCSHIWAT = 2147775232 +pkg syscall (openbsd-amd64), const SIOCSIFADDR = 2149607692 +pkg syscall (openbsd-amd64), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (openbsd-amd64), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (openbsd-amd64), const SIOCSIFDESCR = 2149607808 +pkg syscall (openbsd-amd64), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (openbsd-amd64), const SIOCSIFFLAGS = 2149607696 +pkg syscall (openbsd-amd64), const SIOCSIFGATTR = 2150132108 +pkg syscall (openbsd-amd64), const SIOCSIFGENERIC = 2149607737 +pkg syscall (openbsd-amd64), const SIOCSIFLLADDR = 2149607711 +pkg syscall (openbsd-amd64), const SIOCSIFMEDIA = 3223349557 +pkg syscall (openbsd-amd64), const SIOCSIFMETRIC = 2149607704 +pkg syscall (openbsd-amd64), const SIOCSIFMTU = 2149607807 +pkg syscall (openbsd-amd64), const SIOCSIFNETMASK = 2149607702 +pkg syscall (openbsd-amd64), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (openbsd-amd64), const SIOCSIFPRIORITY = 2149607835 +pkg syscall (openbsd-amd64), const SIOCSIFRDOMAIN = 2149607839 +pkg syscall (openbsd-amd64), const SIOCSIFRTLABEL = 2149607810 +pkg syscall (openbsd-amd64), const SIOCSIFTIMESLOT = 2149607813 +pkg syscall (openbsd-amd64), const SIOCSIFXFLAGS = 2149607837 +pkg syscall (openbsd-amd64), const SIOCSLIFPHYADDR = 2182637898 +pkg syscall (openbsd-amd64), const SIOCSLIFPHYRTABLE = 2149607841 +pkg syscall (openbsd-amd64), const SIOCSLOWAT = 2147775234 +pkg syscall (openbsd-amd64), const SIOCSPGRP = 2147775240 +pkg syscall (openbsd-amd64), const SIOCSVH = 3223349749 +pkg syscall (openbsd-amd64), const SOCK_RDM = 4 +pkg syscall (openbsd-amd64), const SOL_SOCKET = 65535 +pkg syscall (openbsd-amd64), const SOMAXCONN = 128 +pkg syscall (openbsd-amd64), const SO_ACCEPTCONN = 2 +pkg syscall (openbsd-amd64), const SO_BINDANY = 4096 +pkg syscall (openbsd-amd64), const SO_BROADCAST = 32 +pkg syscall (openbsd-amd64), const SO_DEBUG = 1 +pkg syscall (openbsd-amd64), const SO_DONTROUTE = 16 +pkg syscall (openbsd-amd64), const SO_ERROR = 4103 +pkg syscall (openbsd-amd64), const SO_KEEPALIVE = 8 +pkg syscall (openbsd-amd64), const SO_LINGER = 128 +pkg syscall (openbsd-amd64), const SO_NETPROC = 4128 +pkg syscall (openbsd-amd64), const SO_OOBINLINE = 256 +pkg syscall (openbsd-amd64), const SO_PEERCRED = 4130 +pkg syscall (openbsd-amd64), const SO_RCVBUF = 4098 +pkg syscall (openbsd-amd64), const SO_RCVLOWAT = 4100 +pkg syscall (openbsd-amd64), const SO_RCVTIMEO = 4102 +pkg syscall (openbsd-amd64), const SO_REUSEADDR = 4 +pkg syscall (openbsd-amd64), const SO_REUSEPORT = 512 +pkg syscall (openbsd-amd64), const SO_RTABLE = 4129 +pkg syscall (openbsd-amd64), const SO_SNDBUF = 4097 +pkg syscall (openbsd-amd64), const SO_SNDLOWAT = 4099 +pkg syscall (openbsd-amd64), const SO_SNDTIMEO = 4101 +pkg syscall (openbsd-amd64), const SO_SPLICE = 4131 +pkg syscall (openbsd-amd64), const SO_TIMESTAMP = 2048 +pkg syscall (openbsd-amd64), const SO_TYPE = 4104 +pkg syscall (openbsd-amd64), const SO_USELOOPBACK = 64 +pkg syscall (openbsd-amd64), const SYS_ACCEPT = 30 +pkg syscall (openbsd-amd64), const SYS_ACCESS = 33 +pkg syscall (openbsd-amd64), const SYS_ACCT = 51 +pkg syscall (openbsd-amd64), const SYS_ADJFREQ = 305 +pkg syscall (openbsd-amd64), const SYS_ADJTIME = 140 +pkg syscall (openbsd-amd64), const SYS_BIND = 104 +pkg syscall (openbsd-amd64), const SYS_CHDIR = 12 +pkg syscall (openbsd-amd64), const SYS_CHFLAGS = 34 +pkg syscall (openbsd-amd64), const SYS_CHMOD = 15 +pkg syscall (openbsd-amd64), const SYS_CHOWN = 16 +pkg syscall (openbsd-amd64), const SYS_CHROOT = 61 +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-amd64), const SYS_CLOSE = 6 +pkg syscall (openbsd-amd64), const SYS_CLOSEFROM = 287 +pkg syscall (openbsd-amd64), const SYS_CONNECT = 98 +pkg syscall (openbsd-amd64), const SYS_DUP = 41 +pkg syscall (openbsd-amd64), const SYS_DUP2 = 90 +pkg syscall (openbsd-amd64), const SYS_EXECVE = 59 +pkg syscall (openbsd-amd64), const SYS_EXIT = 1 +pkg syscall (openbsd-amd64), const SYS_FACCESSAT = 313 +pkg syscall (openbsd-amd64), const SYS_FCHDIR = 13 +pkg syscall (openbsd-amd64), const SYS_FCHFLAGS = 35 +pkg syscall (openbsd-amd64), const SYS_FCHMOD = 124 +pkg syscall (openbsd-amd64), const SYS_FCHMODAT = 314 +pkg syscall (openbsd-amd64), const SYS_FCHOWN = 123 +pkg syscall (openbsd-amd64), const SYS_FCHOWNAT = 315 +pkg syscall (openbsd-amd64), const SYS_FCNTL = 92 +pkg syscall (openbsd-amd64), const SYS_FHOPEN = 264 +pkg syscall (openbsd-amd64), const SYS_FHSTAT = 294 +pkg syscall (openbsd-amd64), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-amd64), const SYS_FLOCK = 131 +pkg syscall (openbsd-amd64), const SYS_FORK = 2 +pkg syscall (openbsd-amd64), const SYS_FPATHCONF = 192 +pkg syscall (openbsd-amd64), const SYS_FSTAT = 292 +pkg syscall (openbsd-amd64), const SYS_FSTATAT = 316 +pkg syscall (openbsd-amd64), const SYS_FSTATFS = 308 +pkg syscall (openbsd-amd64), const SYS_FSYNC = 95 +pkg syscall (openbsd-amd64), const SYS_FTRUNCATE = 201 +pkg syscall (openbsd-amd64), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-amd64), const SYS_FUTIMES = 206 +pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-amd64), const SYS_GETDTABLECOUNT = 18 +pkg syscall (openbsd-amd64), const SYS_GETEGID = 43 +pkg syscall (openbsd-amd64), const SYS_GETEUID = 25 +pkg syscall (openbsd-amd64), const SYS_GETFH = 161 +pkg syscall (openbsd-amd64), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-amd64), const SYS_GETGID = 47 +pkg syscall (openbsd-amd64), const SYS_GETGROUPS = 79 +pkg syscall (openbsd-amd64), const SYS_GETITIMER = 86 +pkg syscall (openbsd-amd64), const SYS_GETLOGIN = 49 +pkg syscall (openbsd-amd64), const SYS_GETPEERNAME = 31 +pkg syscall (openbsd-amd64), const SYS_GETPGID = 207 +pkg syscall (openbsd-amd64), const SYS_GETPGRP = 81 +pkg syscall (openbsd-amd64), const SYS_GETPID = 20 +pkg syscall (openbsd-amd64), const SYS_GETPPID = 39 +pkg syscall (openbsd-amd64), const SYS_GETPRIORITY = 100 +pkg syscall (openbsd-amd64), const SYS_GETRESGID = 283 +pkg syscall (openbsd-amd64), const SYS_GETRESUID = 281 +pkg syscall (openbsd-amd64), const SYS_GETRLIMIT = 194 +pkg syscall (openbsd-amd64), const SYS_GETRTABLE = 311 +pkg syscall (openbsd-amd64), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-amd64), const SYS_GETSID = 255 +pkg syscall (openbsd-amd64), const SYS_GETSOCKNAME = 32 +pkg syscall (openbsd-amd64), const SYS_GETSOCKOPT = 118 +pkg syscall (openbsd-amd64), const SYS_GETTHRID = 299 +pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-amd64), const SYS_GETUID = 24 +pkg syscall (openbsd-amd64), const SYS_IOCTL = 54 +pkg syscall (openbsd-amd64), const SYS_ISSETUGID = 253 +pkg syscall (openbsd-amd64), const SYS_KEVENT = 270 +pkg syscall (openbsd-amd64), const SYS_KILL = 37 +pkg syscall (openbsd-amd64), const SYS_KQUEUE = 269 +pkg syscall (openbsd-amd64), const SYS_KTRACE = 45 +pkg syscall (openbsd-amd64), const SYS_LCHOWN = 254 +pkg syscall (openbsd-amd64), const SYS_LINK = 9 +pkg syscall (openbsd-amd64), const SYS_LINKAT = 317 +pkg syscall (openbsd-amd64), const SYS_LISTEN = 106 +pkg syscall (openbsd-amd64), const SYS_LSEEK = 199 +pkg syscall (openbsd-amd64), const SYS_LSTAT = 293 +pkg syscall (openbsd-amd64), const SYS_MADVISE = 75 +pkg syscall (openbsd-amd64), const SYS_MINCORE = 78 +pkg syscall (openbsd-amd64), const SYS_MINHERIT = 250 +pkg syscall (openbsd-amd64), const SYS_MKDIR = 136 +pkg syscall (openbsd-amd64), const SYS_MKDIRAT = 318 +pkg syscall (openbsd-amd64), const SYS_MKFIFO = 132 +pkg syscall (openbsd-amd64), const SYS_MKFIFOAT = 319 +pkg syscall (openbsd-amd64), const SYS_MKNOD = 14 +pkg syscall (openbsd-amd64), const SYS_MKNODAT = 320 +pkg syscall (openbsd-amd64), const SYS_MLOCK = 203 +pkg syscall (openbsd-amd64), const SYS_MLOCKALL = 271 +pkg syscall (openbsd-amd64), const SYS_MMAP = 197 +pkg syscall (openbsd-amd64), const SYS_MOUNT = 21 +pkg syscall (openbsd-amd64), const SYS_MPROTECT = 74 +pkg syscall (openbsd-amd64), const SYS_MQUERY = 286 +pkg syscall (openbsd-amd64), const SYS_MSGCTL = 297 +pkg syscall (openbsd-amd64), const SYS_MSGGET = 225 +pkg syscall (openbsd-amd64), const SYS_MSGRCV = 227 +pkg syscall (openbsd-amd64), const SYS_MSGSND = 226 +pkg syscall (openbsd-amd64), const SYS_MSYNC = 256 +pkg syscall (openbsd-amd64), const SYS_MUNLOCK = 204 +pkg syscall (openbsd-amd64), const SYS_MUNLOCKALL = 272 +pkg syscall (openbsd-amd64), const SYS_MUNMAP = 73 +pkg syscall (openbsd-amd64), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-amd64), const SYS_NFSSVC = 155 +pkg syscall (openbsd-amd64), const SYS_OBREAK = 17 +pkg syscall (openbsd-amd64), const SYS_OPEN = 5 +pkg syscall (openbsd-amd64), const SYS_OPENAT = 321 +pkg syscall (openbsd-amd64), const SYS_PATHCONF = 191 +pkg syscall (openbsd-amd64), const SYS_PIPE = 263 +pkg syscall (openbsd-amd64), const SYS_POLL = 252 +pkg syscall (openbsd-amd64), const SYS_PREAD = 173 +pkg syscall (openbsd-amd64), const SYS_PREADV = 267 +pkg syscall (openbsd-amd64), const SYS_PROFIL = 44 +pkg syscall (openbsd-amd64), const SYS_PTRACE = 26 +pkg syscall (openbsd-amd64), const SYS_PWRITE = 174 +pkg syscall (openbsd-amd64), const SYS_PWRITEV = 268 +pkg syscall (openbsd-amd64), const SYS_QUOTACTL = 148 +pkg syscall (openbsd-amd64), const SYS_READ = 3 +pkg syscall (openbsd-amd64), const SYS_READLINK = 58 +pkg syscall (openbsd-amd64), const SYS_READLINKAT = 322 +pkg syscall (openbsd-amd64), const SYS_READV = 120 +pkg syscall (openbsd-amd64), const SYS_REBOOT = 55 +pkg syscall (openbsd-amd64), const SYS_RECVFROM = 29 +pkg syscall (openbsd-amd64), const SYS_RECVMSG = 27 +pkg syscall (openbsd-amd64), const SYS_RENAME = 128 +pkg syscall (openbsd-amd64), const SYS_RENAMEAT = 323 +pkg syscall (openbsd-amd64), const SYS_REVOKE = 56 +pkg syscall (openbsd-amd64), const SYS_RMDIR = 137 +pkg syscall (openbsd-amd64), const SYS_SCHED_YIELD = 298 +pkg syscall (openbsd-amd64), const SYS_SELECT = 93 +pkg syscall (openbsd-amd64), const SYS_SEMGET = 221 +pkg syscall (openbsd-amd64), const SYS_SEMOP = 290 +pkg syscall (openbsd-amd64), const SYS_SENDMSG = 28 +pkg syscall (openbsd-amd64), const SYS_SENDTO = 133 +pkg syscall (openbsd-amd64), const SYS_SETEGID = 182 +pkg syscall (openbsd-amd64), const SYS_SETEUID = 183 +pkg syscall (openbsd-amd64), const SYS_SETGID = 181 +pkg syscall (openbsd-amd64), const SYS_SETGROUPS = 80 +pkg syscall (openbsd-amd64), const SYS_SETITIMER = 83 +pkg syscall (openbsd-amd64), const SYS_SETLOGIN = 50 +pkg syscall (openbsd-amd64), const SYS_SETPGID = 82 +pkg syscall (openbsd-amd64), const SYS_SETPRIORITY = 96 +pkg syscall (openbsd-amd64), const SYS_SETREGID = 127 +pkg syscall (openbsd-amd64), const SYS_SETRESGID = 284 +pkg syscall (openbsd-amd64), const SYS_SETRESUID = 282 +pkg syscall (openbsd-amd64), const SYS_SETREUID = 126 +pkg syscall (openbsd-amd64), const SYS_SETRLIMIT = 195 +pkg syscall (openbsd-amd64), const SYS_SETRTABLE = 310 +pkg syscall (openbsd-amd64), const SYS_SETSID = 147 +pkg syscall (openbsd-amd64), const SYS_SETSOCKOPT = 105 +pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-amd64), const SYS_SETUID = 23 +pkg syscall (openbsd-amd64), const SYS_SHMAT = 228 +pkg syscall (openbsd-amd64), const SYS_SHMCTL = 296 +pkg syscall (openbsd-amd64), const SYS_SHMDT = 230 +pkg syscall (openbsd-amd64), const SYS_SHMGET = 289 +pkg syscall (openbsd-amd64), const SYS_SHUTDOWN = 134 +pkg syscall (openbsd-amd64), const SYS_SIGACTION = 46 +pkg syscall (openbsd-amd64), const SYS_SIGALTSTACK = 288 +pkg syscall (openbsd-amd64), const SYS_SIGPENDING = 52 +pkg syscall (openbsd-amd64), const SYS_SIGPROCMASK = 48 +pkg syscall (openbsd-amd64), const SYS_SIGRETURN = 103 +pkg syscall (openbsd-amd64), const SYS_SIGSUSPEND = 111 +pkg syscall (openbsd-amd64), const SYS_SOCKET = 97 +pkg syscall (openbsd-amd64), const SYS_SOCKETPAIR = 135 +pkg syscall (openbsd-amd64), const SYS_STAT = 291 +pkg syscall (openbsd-amd64), const SYS_STATFS = 307 +pkg syscall (openbsd-amd64), const SYS_SWAPCTL = 193 +pkg syscall (openbsd-amd64), const SYS_SYMLINK = 57 +pkg syscall (openbsd-amd64), const SYS_SYMLINKAT = 324 +pkg syscall (openbsd-amd64), const SYS_SYNC = 36 +pkg syscall (openbsd-amd64), const SYS_SYSARCH = 165 +pkg syscall (openbsd-amd64), const SYS_TRUNCATE = 200 +pkg syscall (openbsd-amd64), const SYS_UMASK = 60 +pkg syscall (openbsd-amd64), const SYS_UNLINK = 10 +pkg syscall (openbsd-amd64), const SYS_UNLINKAT = 325 +pkg syscall (openbsd-amd64), const SYS_UNMOUNT = 22 +pkg syscall (openbsd-amd64), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-amd64), const SYS_UTIMES = 138 +pkg syscall (openbsd-amd64), const SYS_VFORK = 66 +pkg syscall (openbsd-amd64), const SYS_WAIT4 = 7 +pkg syscall (openbsd-amd64), const SYS_WRITE = 4 +pkg syscall (openbsd-amd64), const SYS_WRITEV = 121 +pkg syscall (openbsd-amd64), const SYS___GETCWD = 304 +pkg syscall (openbsd-amd64), const SYS___GET_TCB = 330 +pkg syscall (openbsd-amd64), const SYS___SEMCTL = 295 +pkg syscall (openbsd-amd64), const SYS___SET_TCB = 329 +pkg syscall (openbsd-amd64), const SYS___SYSCTL = 202 +pkg syscall (openbsd-amd64), const SYS___TFORK = 8 +pkg syscall (openbsd-amd64), const SYS___THREXIT = 302 +pkg syscall (openbsd-amd64), const SYS___THRSIGDIVERT = 303 +pkg syscall (openbsd-amd64), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-amd64), const SYS___THRWAKEUP = 301 +pkg syscall (openbsd-amd64), const S_IFMT = 61440 +pkg syscall (openbsd-amd64), const SizeofBpfHdr = 20 +pkg syscall (openbsd-amd64), const SizeofBpfInsn = 8 +pkg syscall (openbsd-amd64), const SizeofBpfProgram = 16 +pkg syscall (openbsd-amd64), const SizeofBpfStat = 8 +pkg syscall (openbsd-amd64), const SizeofBpfVersion = 4 +pkg syscall (openbsd-amd64), const SizeofCmsghdr = 12 +pkg syscall (openbsd-amd64), const SizeofIPMreq = 8 +pkg syscall (openbsd-amd64), const SizeofIPv6Mreq = 20 +pkg syscall (openbsd-amd64), const SizeofIfAnnounceMsghdr = 26 +pkg syscall (openbsd-amd64), const SizeofIfData = 224 +pkg syscall (openbsd-amd64), const SizeofIfMsghdr = 248 +pkg syscall (openbsd-amd64), const SizeofIfaMsghdr = 24 +pkg syscall (openbsd-amd64), const SizeofInet6Pktinfo = 20 +pkg syscall (openbsd-amd64), const SizeofLinger = 8 +pkg syscall (openbsd-amd64), const SizeofMsghdr = 48 +pkg syscall (openbsd-amd64), const SizeofRtMetrics = 48 +pkg syscall (openbsd-amd64), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-amd64), const SizeofSockaddrAny = 108 +pkg syscall (openbsd-amd64), const SizeofSockaddrDatalink = 32 +pkg syscall (openbsd-amd64), const SizeofSockaddrInet4 = 16 +pkg syscall (openbsd-amd64), const SizeofSockaddrInet6 = 28 +pkg syscall (openbsd-amd64), const SizeofSockaddrUnix = 106 +pkg syscall (openbsd-amd64), const TCIFLUSH = 1 +pkg syscall (openbsd-amd64), const TCIOFLUSH = 3 +pkg syscall (openbsd-amd64), const TCOFLUSH = 2 +pkg syscall (openbsd-amd64), const TCP_MAXBURST = 4 +pkg syscall (openbsd-amd64), const TCP_MAXSEG = 2 +pkg syscall (openbsd-amd64), const TCP_MAXWIN = 65535 +pkg syscall (openbsd-amd64), const TCP_MAX_SACK = 3 +pkg syscall (openbsd-amd64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (openbsd-amd64), const TCP_MD5SIG = 4 +pkg syscall (openbsd-amd64), const TCP_MSS = 512 +pkg syscall (openbsd-amd64), const TCP_NSTATES = 11 +pkg syscall (openbsd-amd64), const TCP_SACK_ENABLE = 8 +pkg syscall (openbsd-amd64), const TCSAFLUSH = 2 +pkg syscall (openbsd-amd64), const TIOCCBRK = 536900730 +pkg syscall (openbsd-amd64), const TIOCCDTR = 536900728 +pkg syscall (openbsd-amd64), const TIOCCONS = 2147775586 +pkg syscall (openbsd-amd64), const TIOCDRAIN = 536900702 +pkg syscall (openbsd-amd64), const TIOCEXCL = 536900621 +pkg syscall (openbsd-amd64), const TIOCEXT = 2147775584 +pkg syscall (openbsd-amd64), const TIOCFLAG_CLOCAL = 2 +pkg syscall (openbsd-amd64), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (openbsd-amd64), const TIOCFLAG_MDMBUF = 8 +pkg syscall (openbsd-amd64), const TIOCFLAG_PPS = 16 +pkg syscall (openbsd-amd64), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (openbsd-amd64), const TIOCFLUSH = 2147775504 +pkg syscall (openbsd-amd64), const TIOCGETA = 1076655123 +pkg syscall (openbsd-amd64), const TIOCGETD = 1074033690 +pkg syscall (openbsd-amd64), const TIOCGFLAGS = 1074033757 +pkg syscall (openbsd-amd64), const TIOCGPGRP = 1074033783 +pkg syscall (openbsd-amd64), const TIOCGTSTAMP = 1074820187 +pkg syscall (openbsd-amd64), const TIOCGWINSZ = 1074295912 +pkg syscall (openbsd-amd64), const TIOCMBIC = 2147775595 +pkg syscall (openbsd-amd64), const TIOCMBIS = 2147775596 +pkg syscall (openbsd-amd64), const TIOCMGET = 1074033770 +pkg syscall (openbsd-amd64), const TIOCMODG = 1074033770 +pkg syscall (openbsd-amd64), const TIOCMODS = 2147775597 +pkg syscall (openbsd-amd64), const TIOCMSET = 2147775597 +pkg syscall (openbsd-amd64), const TIOCM_CAR = 64 +pkg syscall (openbsd-amd64), const TIOCM_CD = 64 +pkg syscall (openbsd-amd64), const TIOCM_CTS = 32 +pkg syscall (openbsd-amd64), const TIOCM_DSR = 256 +pkg syscall (openbsd-amd64), const TIOCM_DTR = 2 +pkg syscall (openbsd-amd64), const TIOCM_LE = 1 +pkg syscall (openbsd-amd64), const TIOCM_RI = 128 +pkg syscall (openbsd-amd64), const TIOCM_RNG = 128 +pkg syscall (openbsd-amd64), const TIOCM_RTS = 4 +pkg syscall (openbsd-amd64), const TIOCM_SR = 16 +pkg syscall (openbsd-amd64), const TIOCM_ST = 8 +pkg syscall (openbsd-amd64), const TIOCNOTTY = 536900721 +pkg syscall (openbsd-amd64), const TIOCNXCL = 536900622 +pkg syscall (openbsd-amd64), const TIOCOUTQ = 1074033779 +pkg syscall (openbsd-amd64), const TIOCPKT = 2147775600 +pkg syscall (openbsd-amd64), const TIOCPKT_DATA = 0 +pkg syscall (openbsd-amd64), const TIOCPKT_DOSTOP = 32 +pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (openbsd-amd64), const TIOCPKT_IOCTL = 64 +pkg syscall (openbsd-amd64), const TIOCPKT_NOSTOP = 16 +pkg syscall (openbsd-amd64), const TIOCPKT_START = 8 +pkg syscall (openbsd-amd64), const TIOCPKT_STOP = 4 +pkg syscall (openbsd-amd64), const TIOCREMOTE = 2147775593 +pkg syscall (openbsd-amd64), const TIOCSBRK = 536900731 +pkg syscall (openbsd-amd64), const TIOCSCTTY = 536900705 +pkg syscall (openbsd-amd64), const TIOCSDTR = 536900729 +pkg syscall (openbsd-amd64), const TIOCSETA = 2150396948 +pkg syscall (openbsd-amd64), const TIOCSETAF = 2150396950 +pkg syscall (openbsd-amd64), const TIOCSETAW = 2150396949 +pkg syscall (openbsd-amd64), const TIOCSETD = 2147775515 +pkg syscall (openbsd-amd64), const TIOCSFLAGS = 2147775580 +pkg syscall (openbsd-amd64), const TIOCSIG = 2147775583 +pkg syscall (openbsd-amd64), const TIOCSPGRP = 2147775606 +pkg syscall (openbsd-amd64), const TIOCSTART = 536900718 +pkg syscall (openbsd-amd64), const TIOCSTAT = 2147775589 +pkg syscall (openbsd-amd64), const TIOCSTI = 2147578994 +pkg syscall (openbsd-amd64), const TIOCSTOP = 536900719 +pkg syscall (openbsd-amd64), const TIOCSTSTAMP = 2148037722 +pkg syscall (openbsd-amd64), const TIOCSWINSZ = 2148037735 +pkg syscall (openbsd-amd64), const TIOCUCNTL = 2147775590 +pkg syscall (openbsd-amd64), const TOSTOP = 4194304 +pkg syscall (openbsd-amd64), const VDISCARD = 15 +pkg syscall (openbsd-amd64), const VDSUSP = 11 +pkg syscall (openbsd-amd64), const VEOF = 0 +pkg syscall (openbsd-amd64), const VEOL = 1 +pkg syscall (openbsd-amd64), const VEOL2 = 2 +pkg syscall (openbsd-amd64), const VERASE = 3 +pkg syscall (openbsd-amd64), const VINTR = 8 +pkg syscall (openbsd-amd64), const VKILL = 5 +pkg syscall (openbsd-amd64), const VLNEXT = 14 +pkg syscall (openbsd-amd64), const VMIN = 16 +pkg syscall (openbsd-amd64), const VQUIT = 9 +pkg syscall (openbsd-amd64), const VREPRINT = 6 +pkg syscall (openbsd-amd64), const VSTART = 12 +pkg syscall (openbsd-amd64), const VSTATUS = 18 +pkg syscall (openbsd-amd64), const VSTOP = 13 +pkg syscall (openbsd-amd64), const VSUSP = 10 +pkg syscall (openbsd-amd64), const VTIME = 17 +pkg syscall (openbsd-amd64), const VWERASE = 4 +pkg syscall (openbsd-amd64), const WALTSIG = 4 +pkg syscall (openbsd-amd64), const WCONTINUED = 8 +pkg syscall (openbsd-amd64), const WCOREFLAG = 128 +pkg syscall (openbsd-amd64), const WNOHANG = 1 +pkg syscall (openbsd-amd64), const WSTOPPED = 127 +pkg syscall (openbsd-amd64), const WUNTRACED = 2 +pkg syscall (openbsd-amd64-cgo), const AF_APPLETALK = 16 +pkg syscall (openbsd-amd64-cgo), const AF_BLUETOOTH = 32 +pkg syscall (openbsd-amd64-cgo), const AF_CCITT = 10 +pkg syscall (openbsd-amd64-cgo), const AF_CHAOS = 5 +pkg syscall (openbsd-amd64-cgo), const AF_CNT = 21 +pkg syscall (openbsd-amd64-cgo), const AF_COIP = 20 +pkg syscall (openbsd-amd64-cgo), const AF_DATAKIT = 9 +pkg syscall (openbsd-amd64-cgo), const AF_DECnet = 12 +pkg syscall (openbsd-amd64-cgo), const AF_DLI = 13 +pkg syscall (openbsd-amd64-cgo), const AF_E164 = 26 +pkg syscall (openbsd-amd64-cgo), const AF_ECMA = 8 +pkg syscall (openbsd-amd64-cgo), const AF_ENCAP = 28 +pkg syscall (openbsd-amd64-cgo), const AF_HYLINK = 15 +pkg syscall (openbsd-amd64-cgo), const AF_IMPLINK = 3 +pkg syscall (openbsd-amd64-cgo), const AF_INET6 = 24 +pkg syscall (openbsd-amd64-cgo), const AF_IPX = 23 +pkg syscall (openbsd-amd64-cgo), const AF_ISDN = 26 +pkg syscall (openbsd-amd64-cgo), const AF_ISO = 7 +pkg syscall (openbsd-amd64-cgo), const AF_KEY = 30 +pkg syscall (openbsd-amd64-cgo), const AF_LAT = 14 +pkg syscall (openbsd-amd64-cgo), const AF_LINK = 18 +pkg syscall (openbsd-amd64-cgo), const AF_LOCAL = 1 +pkg syscall (openbsd-amd64-cgo), const AF_MAX = 36 +pkg syscall (openbsd-amd64-cgo), const AF_MPLS = 33 +pkg syscall (openbsd-amd64-cgo), const AF_NATM = 27 +pkg syscall (openbsd-amd64-cgo), const AF_NS = 6 +pkg syscall (openbsd-amd64-cgo), const AF_OSI = 7 +pkg syscall (openbsd-amd64-cgo), const AF_PUP = 4 +pkg syscall (openbsd-amd64-cgo), const AF_ROUTE = 17 +pkg syscall (openbsd-amd64-cgo), const AF_SIP = 29 +pkg syscall (openbsd-amd64-cgo), const AF_SNA = 11 +pkg syscall (openbsd-amd64-cgo), const ARPHRD_ETHER = 1 +pkg syscall (openbsd-amd64-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (openbsd-amd64-cgo), const B0 = 0 +pkg syscall (openbsd-amd64-cgo), const B110 = 110 +pkg syscall (openbsd-amd64-cgo), const B115200 = 115200 +pkg syscall (openbsd-amd64-cgo), const B1200 = 1200 +pkg syscall (openbsd-amd64-cgo), const B134 = 134 +pkg syscall (openbsd-amd64-cgo), const B14400 = 14400 +pkg syscall (openbsd-amd64-cgo), const B150 = 150 +pkg syscall (openbsd-amd64-cgo), const B1800 = 1800 +pkg syscall (openbsd-amd64-cgo), const B19200 = 19200 +pkg syscall (openbsd-amd64-cgo), const B200 = 200 +pkg syscall (openbsd-amd64-cgo), const B230400 = 230400 +pkg syscall (openbsd-amd64-cgo), const B2400 = 2400 +pkg syscall (openbsd-amd64-cgo), const B28800 = 28800 +pkg syscall (openbsd-amd64-cgo), const B300 = 300 +pkg syscall (openbsd-amd64-cgo), const B38400 = 38400 +pkg syscall (openbsd-amd64-cgo), const B4800 = 4800 +pkg syscall (openbsd-amd64-cgo), const B50 = 50 +pkg syscall (openbsd-amd64-cgo), const B57600 = 57600 +pkg syscall (openbsd-amd64-cgo), const B600 = 600 +pkg syscall (openbsd-amd64-cgo), const B7200 = 7200 +pkg syscall (openbsd-amd64-cgo), const B75 = 75 +pkg syscall (openbsd-amd64-cgo), const B76800 = 76800 +pkg syscall (openbsd-amd64-cgo), const B9600 = 9600 +pkg syscall (openbsd-amd64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (openbsd-amd64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (openbsd-amd64-cgo), const BIOCGDIRFILT = 1074020988 +pkg syscall (openbsd-amd64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (openbsd-amd64-cgo), const BIOCGDLTLIST = 3222291067 +pkg syscall (openbsd-amd64-cgo), const BIOCGETIF = 1075855979 +pkg syscall (openbsd-amd64-cgo), const BIOCGFILDROP = 1074020984 +pkg syscall (openbsd-amd64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (openbsd-amd64-cgo), const BIOCGRSIG = 1074020979 +pkg syscall (openbsd-amd64-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (openbsd-amd64-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (openbsd-amd64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (openbsd-amd64-cgo), const BIOCLOCK = 536887926 +pkg syscall (openbsd-amd64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (openbsd-amd64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (openbsd-amd64-cgo), const BIOCSDIRFILT = 2147762813 +pkg syscall (openbsd-amd64-cgo), const BIOCSDLT = 2147762810 +pkg syscall (openbsd-amd64-cgo), const BIOCSETF = 2148549223 +pkg syscall (openbsd-amd64-cgo), const BIOCSETIF = 2149597804 +pkg syscall (openbsd-amd64-cgo), const BIOCSETWF = 2148549239 +pkg syscall (openbsd-amd64-cgo), const BIOCSFILDROP = 2147762809 +pkg syscall (openbsd-amd64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (openbsd-amd64-cgo), const BIOCSRSIG = 2147762802 +pkg syscall (openbsd-amd64-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (openbsd-amd64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (openbsd-amd64-cgo), const BPF_A = 16 +pkg syscall (openbsd-amd64-cgo), const BPF_ABS = 32 +pkg syscall (openbsd-amd64-cgo), const BPF_ADD = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (openbsd-amd64-cgo), const BPF_ALU = 4 +pkg syscall (openbsd-amd64-cgo), const BPF_AND = 80 +pkg syscall (openbsd-amd64-cgo), const BPF_B = 16 +pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_IN = 1 +pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_OUT = 2 +pkg syscall (openbsd-amd64-cgo), const BPF_DIV = 48 +pkg syscall (openbsd-amd64-cgo), const BPF_H = 8 +pkg syscall (openbsd-amd64-cgo), const BPF_IMM = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_IND = 64 +pkg syscall (openbsd-amd64-cgo), const BPF_JA = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_JEQ = 16 +pkg syscall (openbsd-amd64-cgo), const BPF_JGE = 48 +pkg syscall (openbsd-amd64-cgo), const BPF_JGT = 32 +pkg syscall (openbsd-amd64-cgo), const BPF_JMP = 5 +pkg syscall (openbsd-amd64-cgo), const BPF_JSET = 64 +pkg syscall (openbsd-amd64-cgo), const BPF_K = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_LD = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_LDX = 1 +pkg syscall (openbsd-amd64-cgo), const BPF_LEN = 128 +pkg syscall (openbsd-amd64-cgo), const BPF_LSH = 96 +pkg syscall (openbsd-amd64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (openbsd-amd64-cgo), const BPF_MAXBUFSIZE = 2097152 +pkg syscall (openbsd-amd64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (openbsd-amd64-cgo), const BPF_MEM = 96 +pkg syscall (openbsd-amd64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (openbsd-amd64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (openbsd-amd64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (openbsd-amd64-cgo), const BPF_MISC = 7 +pkg syscall (openbsd-amd64-cgo), const BPF_MSH = 160 +pkg syscall (openbsd-amd64-cgo), const BPF_MUL = 32 +pkg syscall (openbsd-amd64-cgo), const BPF_NEG = 128 +pkg syscall (openbsd-amd64-cgo), const BPF_OR = 64 +pkg syscall (openbsd-amd64-cgo), const BPF_RELEASE = 199606 +pkg syscall (openbsd-amd64-cgo), const BPF_RET = 6 +pkg syscall (openbsd-amd64-cgo), const BPF_RSH = 112 +pkg syscall (openbsd-amd64-cgo), const BPF_ST = 2 +pkg syscall (openbsd-amd64-cgo), const BPF_STX = 3 +pkg syscall (openbsd-amd64-cgo), const BPF_SUB = 16 +pkg syscall (openbsd-amd64-cgo), const BPF_TAX = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_TXA = 128 +pkg syscall (openbsd-amd64-cgo), const BPF_W = 0 +pkg syscall (openbsd-amd64-cgo), const BPF_X = 8 +pkg syscall (openbsd-amd64-cgo), const BRKINT = 2 +pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH = 16 +pkg syscall (openbsd-amd64-cgo), const CFLUSH = 15 +pkg syscall (openbsd-amd64-cgo), const CLOCAL = 32768 +pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH = 524288 +pkg syscall (openbsd-amd64-cgo), const CREAD = 2048 +pkg syscall (openbsd-amd64-cgo), const CS5 = 0 +pkg syscall (openbsd-amd64-cgo), const CS6 = 256 +pkg syscall (openbsd-amd64-cgo), const CS7 = 512 +pkg syscall (openbsd-amd64-cgo), const CS8 = 768 +pkg syscall (openbsd-amd64-cgo), const CSIZE = 768 +pkg syscall (openbsd-amd64-cgo), const CSTART = 17 +pkg syscall (openbsd-amd64-cgo), const CSTATUS = 255 +pkg syscall (openbsd-amd64-cgo), const CSTOP = 19 +pkg syscall (openbsd-amd64-cgo), const CSTOPB = 1024 +pkg syscall (openbsd-amd64-cgo), const CSUSP = 26 +pkg syscall (openbsd-amd64-cgo), const CTL_MAXNAME = 12 +pkg syscall (openbsd-amd64-cgo), const CTL_NET = 4 +pkg syscall (openbsd-amd64-cgo), const DIOCOSFPFLUSH = 536888398 +pkg syscall (openbsd-amd64-cgo), const DLT_ARCNET = 7 +pkg syscall (openbsd-amd64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (openbsd-amd64-cgo), const DLT_AX25 = 3 +pkg syscall (openbsd-amd64-cgo), const DLT_CHAOS = 5 +pkg syscall (openbsd-amd64-cgo), const DLT_C_HDLC = 104 +pkg syscall (openbsd-amd64-cgo), const DLT_EN10MB = 1 +pkg syscall (openbsd-amd64-cgo), const DLT_EN3MB = 2 +pkg syscall (openbsd-amd64-cgo), const DLT_ENC = 13 +pkg syscall (openbsd-amd64-cgo), const DLT_FDDI = 10 +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802 = 6 +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (openbsd-amd64-cgo), const DLT_LOOP = 12 +pkg syscall (openbsd-amd64-cgo), const DLT_MPLS = 219 +pkg syscall (openbsd-amd64-cgo), const DLT_NULL = 0 +pkg syscall (openbsd-amd64-cgo), const DLT_PFLOG = 117 +pkg syscall (openbsd-amd64-cgo), const DLT_PFSYNC = 18 +pkg syscall (openbsd-amd64-cgo), const DLT_PPP = 9 +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (openbsd-amd64-cgo), const DLT_PRONET = 4 +pkg syscall (openbsd-amd64-cgo), const DLT_RAW = 14 +pkg syscall (openbsd-amd64-cgo), const DLT_SLIP = 8 +pkg syscall (openbsd-amd64-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (openbsd-amd64-cgo), const DT_BLK = 6 +pkg syscall (openbsd-amd64-cgo), const DT_CHR = 2 +pkg syscall (openbsd-amd64-cgo), const DT_DIR = 4 +pkg syscall (openbsd-amd64-cgo), const DT_FIFO = 1 +pkg syscall (openbsd-amd64-cgo), const DT_LNK = 10 +pkg syscall (openbsd-amd64-cgo), const DT_REG = 8 +pkg syscall (openbsd-amd64-cgo), const DT_SOCK = 12 +pkg syscall (openbsd-amd64-cgo), const DT_UNKNOWN = 0 +pkg syscall (openbsd-amd64-cgo), const E2BIG = 7 +pkg syscall (openbsd-amd64-cgo), const EACCES = 13 +pkg syscall (openbsd-amd64-cgo), const EADDRINUSE = 48 +pkg syscall (openbsd-amd64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (openbsd-amd64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (openbsd-amd64-cgo), const EAGAIN = 35 +pkg syscall (openbsd-amd64-cgo), const EALREADY = 37 +pkg syscall (openbsd-amd64-cgo), const EAUTH = 80 +pkg syscall (openbsd-amd64-cgo), const EBADF = 9 +pkg syscall (openbsd-amd64-cgo), const EBADRPC = 72 +pkg syscall (openbsd-amd64-cgo), const EBUSY = 16 +pkg syscall (openbsd-amd64-cgo), const ECANCELED = 88 +pkg syscall (openbsd-amd64-cgo), const ECHILD = 10 +pkg syscall (openbsd-amd64-cgo), const ECHO = 8 +pkg syscall (openbsd-amd64-cgo), const ECHOCTL = 64 +pkg syscall (openbsd-amd64-cgo), const ECHOE = 2 +pkg syscall (openbsd-amd64-cgo), const ECHOK = 4 +pkg syscall (openbsd-amd64-cgo), const ECHOKE = 1 +pkg syscall (openbsd-amd64-cgo), const ECHONL = 16 +pkg syscall (openbsd-amd64-cgo), const ECHOPRT = 32 +pkg syscall (openbsd-amd64-cgo), const ECONNABORTED = 53 +pkg syscall (openbsd-amd64-cgo), const ECONNREFUSED = 61 +pkg syscall (openbsd-amd64-cgo), const ECONNRESET = 54 +pkg syscall (openbsd-amd64-cgo), const EDEADLK = 11 +pkg syscall (openbsd-amd64-cgo), const EDESTADDRREQ = 39 +pkg syscall (openbsd-amd64-cgo), const EDOM = 33 +pkg syscall (openbsd-amd64-cgo), const EDQUOT = 69 +pkg syscall (openbsd-amd64-cgo), const EEXIST = 17 +pkg syscall (openbsd-amd64-cgo), const EFAULT = 14 +pkg syscall (openbsd-amd64-cgo), const EFBIG = 27 +pkg syscall (openbsd-amd64-cgo), const EFER_LMA = 1024 +pkg syscall (openbsd-amd64-cgo), const EFER_LME = 256 +pkg syscall (openbsd-amd64-cgo), const EFER_NXE = 2048 +pkg syscall (openbsd-amd64-cgo), const EFER_SCE = 1 +pkg syscall (openbsd-amd64-cgo), const EFTYPE = 79 +pkg syscall (openbsd-amd64-cgo), const EHOSTDOWN = 64 +pkg syscall (openbsd-amd64-cgo), const EHOSTUNREACH = 65 +pkg syscall (openbsd-amd64-cgo), const EIDRM = 89 +pkg syscall (openbsd-amd64-cgo), const EILSEQ = 84 +pkg syscall (openbsd-amd64-cgo), const EINPROGRESS = 36 +pkg syscall (openbsd-amd64-cgo), const EINTR = 4 +pkg syscall (openbsd-amd64-cgo), const EINVAL = 22 +pkg syscall (openbsd-amd64-cgo), const EIO = 5 +pkg syscall (openbsd-amd64-cgo), const EIPSEC = 82 +pkg syscall (openbsd-amd64-cgo), const EISCONN = 56 +pkg syscall (openbsd-amd64-cgo), const EISDIR = 21 +pkg syscall (openbsd-amd64-cgo), const ELAST = 91 +pkg syscall (openbsd-amd64-cgo), const ELOOP = 62 +pkg syscall (openbsd-amd64-cgo), const EMEDIUMTYPE = 86 +pkg syscall (openbsd-amd64-cgo), const EMFILE = 24 +pkg syscall (openbsd-amd64-cgo), const EMLINK = 31 +pkg syscall (openbsd-amd64-cgo), const EMSGSIZE = 40 +pkg syscall (openbsd-amd64-cgo), const EMT_TAGOVF = 1 +pkg syscall (openbsd-amd64-cgo), const EMUL_ENABLED = 1 +pkg syscall (openbsd-amd64-cgo), const EMUL_NATIVE = 2 +pkg syscall (openbsd-amd64-cgo), const ENAMETOOLONG = 63 +pkg syscall (openbsd-amd64-cgo), const ENDRUNDISC = 9 +pkg syscall (openbsd-amd64-cgo), const ENEEDAUTH = 81 +pkg syscall (openbsd-amd64-cgo), const ENETDOWN = 50 +pkg syscall (openbsd-amd64-cgo), const ENETRESET = 52 +pkg syscall (openbsd-amd64-cgo), const ENETUNREACH = 51 +pkg syscall (openbsd-amd64-cgo), const ENFILE = 23 +pkg syscall (openbsd-amd64-cgo), const ENOATTR = 83 +pkg syscall (openbsd-amd64-cgo), const ENOBUFS = 55 +pkg syscall (openbsd-amd64-cgo), const ENODEV = 19 +pkg syscall (openbsd-amd64-cgo), const ENOEXEC = 8 +pkg syscall (openbsd-amd64-cgo), const ENOLCK = 77 +pkg syscall (openbsd-amd64-cgo), const ENOMEDIUM = 85 +pkg syscall (openbsd-amd64-cgo), const ENOMEM = 12 +pkg syscall (openbsd-amd64-cgo), const ENOMSG = 90 +pkg syscall (openbsd-amd64-cgo), const ENOPROTOOPT = 42 +pkg syscall (openbsd-amd64-cgo), const ENOSPC = 28 +pkg syscall (openbsd-amd64-cgo), const ENOSYS = 78 +pkg syscall (openbsd-amd64-cgo), const ENOTBLK = 15 +pkg syscall (openbsd-amd64-cgo), const ENOTCONN = 57 +pkg syscall (openbsd-amd64-cgo), const ENOTDIR = 20 +pkg syscall (openbsd-amd64-cgo), const ENOTEMPTY = 66 +pkg syscall (openbsd-amd64-cgo), const ENOTSOCK = 38 +pkg syscall (openbsd-amd64-cgo), const ENOTSUP = 91 +pkg syscall (openbsd-amd64-cgo), const ENOTTY = 25 +pkg syscall (openbsd-amd64-cgo), const ENXIO = 6 +pkg syscall (openbsd-amd64-cgo), const EOPNOTSUPP = 45 +pkg syscall (openbsd-amd64-cgo), const EOVERFLOW = 87 +pkg syscall (openbsd-amd64-cgo), const EPERM = 1 +pkg syscall (openbsd-amd64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (openbsd-amd64-cgo), const EPIPE = 32 +pkg syscall (openbsd-amd64-cgo), const EPROCLIM = 67 +pkg syscall (openbsd-amd64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (openbsd-amd64-cgo), const EPROGMISMATCH = 75 +pkg syscall (openbsd-amd64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (openbsd-amd64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (openbsd-amd64-cgo), const EPROTOTYPE = 41 +pkg syscall (openbsd-amd64-cgo), const ERANGE = 34 +pkg syscall (openbsd-amd64-cgo), const EREMOTE = 71 +pkg syscall (openbsd-amd64-cgo), const EROFS = 30 +pkg syscall (openbsd-amd64-cgo), const ERPCMISMATCH = 73 +pkg syscall (openbsd-amd64-cgo), const ESHUTDOWN = 58 +pkg syscall (openbsd-amd64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (openbsd-amd64-cgo), const ESPIPE = 29 +pkg syscall (openbsd-amd64-cgo), const ESRCH = 3 +pkg syscall (openbsd-amd64-cgo), const ESTALE = 70 +pkg syscall (openbsd-amd64-cgo), const ETHERMIN = 46 +pkg syscall (openbsd-amd64-cgo), const ETHERMTU = 1500 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AOE = 34978 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LLDP = 35020 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_QINQ = 34984 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SLOW = 34825 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (openbsd-amd64-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (openbsd-amd64-cgo), const ETHER_ALIGN = 2 +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (openbsd-amd64-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_DIX_LEN = 1536 +pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (openbsd-amd64-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (openbsd-amd64-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (openbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (openbsd-amd64-cgo), const ETIMEDOUT = 60 +pkg syscall (openbsd-amd64-cgo), const ETOOMANYREFS = 59 +pkg syscall (openbsd-amd64-cgo), const ETXTBSY = 26 +pkg syscall (openbsd-amd64-cgo), const EUSERS = 68 +pkg syscall (openbsd-amd64-cgo), const EVFILT_AIO = -3 +pkg syscall (openbsd-amd64-cgo), const EVFILT_PROC = -5 +pkg syscall (openbsd-amd64-cgo), const EVFILT_READ = -1 +pkg syscall (openbsd-amd64-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (openbsd-amd64-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (openbsd-amd64-cgo), const EVFILT_TIMER = -7 +pkg syscall (openbsd-amd64-cgo), const EVFILT_VNODE = -4 +pkg syscall (openbsd-amd64-cgo), const EVFILT_WRITE = -2 +pkg syscall (openbsd-amd64-cgo), const EV_ADD = 1 +pkg syscall (openbsd-amd64-cgo), const EV_CLEAR = 32 +pkg syscall (openbsd-amd64-cgo), const EV_DELETE = 2 +pkg syscall (openbsd-amd64-cgo), const EV_DISABLE = 8 +pkg syscall (openbsd-amd64-cgo), const EV_ENABLE = 4 +pkg syscall (openbsd-amd64-cgo), const EV_EOF = 32768 +pkg syscall (openbsd-amd64-cgo), const EV_ERROR = 16384 +pkg syscall (openbsd-amd64-cgo), const EV_FLAG1 = 8192 +pkg syscall (openbsd-amd64-cgo), const EV_ONESHOT = 16 +pkg syscall (openbsd-amd64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (openbsd-amd64-cgo), const EWOULDBLOCK = 35 +pkg syscall (openbsd-amd64-cgo), const EXDEV = 18 +pkg syscall (openbsd-amd64-cgo), const EXTA = 19200 +pkg syscall (openbsd-amd64-cgo), const EXTB = 38400 +pkg syscall (openbsd-amd64-cgo), const EXTPROC = 2048 +pkg syscall (openbsd-amd64-cgo), const FD_CLOEXEC = 1 +pkg syscall (openbsd-amd64-cgo), const FD_SETSIZE = 1024 +pkg syscall (openbsd-amd64-cgo), const FLUSHO = 8388608 +pkg syscall (openbsd-amd64-cgo), const F_DUPFD = 0 +pkg syscall (openbsd-amd64-cgo), const F_DUPFD_CLOEXEC = 10 +pkg syscall (openbsd-amd64-cgo), const F_GETFD = 1 +pkg syscall (openbsd-amd64-cgo), const F_GETFL = 3 +pkg syscall (openbsd-amd64-cgo), const F_GETLK = 7 +pkg syscall (openbsd-amd64-cgo), const F_GETOWN = 5 +pkg syscall (openbsd-amd64-cgo), const F_OK = 0 +pkg syscall (openbsd-amd64-cgo), const F_RDLCK = 1 +pkg syscall (openbsd-amd64-cgo), const F_SETFD = 2 +pkg syscall (openbsd-amd64-cgo), const F_SETFL = 4 +pkg syscall (openbsd-amd64-cgo), const F_SETLK = 8 +pkg syscall (openbsd-amd64-cgo), const F_SETLKW = 9 +pkg syscall (openbsd-amd64-cgo), const F_SETOWN = 6 +pkg syscall (openbsd-amd64-cgo), const F_UNLCK = 2 +pkg syscall (openbsd-amd64-cgo), const F_WRLCK = 3 +pkg syscall (openbsd-amd64-cgo), const HUPCL = 16384 +pkg syscall (openbsd-amd64-cgo), const ICANON = 256 +pkg syscall (openbsd-amd64-cgo), const ICRNL = 256 +pkg syscall (openbsd-amd64-cgo), const IEXTEN = 1024 +pkg syscall (openbsd-amd64-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (openbsd-amd64-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (openbsd-amd64-cgo), const IFA_ROUTE = 1 +pkg syscall (openbsd-amd64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (openbsd-amd64-cgo), const IFF_CANTCHANGE = 36434 +pkg syscall (openbsd-amd64-cgo), const IFF_DEBUG = 4 +pkg syscall (openbsd-amd64-cgo), const IFF_LINK0 = 4096 +pkg syscall (openbsd-amd64-cgo), const IFF_LINK1 = 8192 +pkg syscall (openbsd-amd64-cgo), const IFF_LINK2 = 16384 +pkg syscall (openbsd-amd64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (openbsd-amd64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (openbsd-amd64-cgo), const IFF_NOARP = 128 +pkg syscall (openbsd-amd64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (openbsd-amd64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (openbsd-amd64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (openbsd-amd64-cgo), const IFF_PROMISC = 256 +pkg syscall (openbsd-amd64-cgo), const IFF_RUNNING = 64 +pkg syscall (openbsd-amd64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (openbsd-amd64-cgo), const IFNAMSIZ = 16 +pkg syscall (openbsd-amd64-cgo), const IFT_1822 = 2 +pkg syscall (openbsd-amd64-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (openbsd-amd64-cgo), const IFT_AAL2 = 187 +pkg syscall (openbsd-amd64-cgo), const IFT_AAL5 = 49 +pkg syscall (openbsd-amd64-cgo), const IFT_ADSL = 94 +pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (openbsd-amd64-cgo), const IFT_ARAP = 88 +pkg syscall (openbsd-amd64-cgo), const IFT_ARCNET = 35 +pkg syscall (openbsd-amd64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (openbsd-amd64-cgo), const IFT_ASYNC = 84 +pkg syscall (openbsd-amd64-cgo), const IFT_ATM = 37 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMDXI = 105 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMFUNI = 106 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMIMA = 107 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMRADIO = 189 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (openbsd-amd64-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (openbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (openbsd-amd64-cgo), const IFT_BLUETOOTH = 248 +pkg syscall (openbsd-amd64-cgo), const IFT_BRIDGE = 209 +pkg syscall (openbsd-amd64-cgo), const IFT_BSC = 83 +pkg syscall (openbsd-amd64-cgo), const IFT_CARP = 247 +pkg syscall (openbsd-amd64-cgo), const IFT_CCTEMUL = 61 +pkg syscall (openbsd-amd64-cgo), const IFT_CEPT = 19 +pkg syscall (openbsd-amd64-cgo), const IFT_CES = 133 +pkg syscall (openbsd-amd64-cgo), const IFT_CHANNEL = 70 +pkg syscall (openbsd-amd64-cgo), const IFT_CNR = 85 +pkg syscall (openbsd-amd64-cgo), const IFT_COFFEE = 132 +pkg syscall (openbsd-amd64-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (openbsd-amd64-cgo), const IFT_DCN = 141 +pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (openbsd-amd64-cgo), const IFT_DLSW = 74 +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (openbsd-amd64-cgo), const IFT_DS0 = 81 +pkg syscall (openbsd-amd64-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (openbsd-amd64-cgo), const IFT_DS1FDL = 170 +pkg syscall (openbsd-amd64-cgo), const IFT_DS3 = 30 +pkg syscall (openbsd-amd64-cgo), const IFT_DTM = 140 +pkg syscall (openbsd-amd64-cgo), const IFT_DUMMY = 241 +pkg syscall (openbsd-amd64-cgo), const IFT_DVBASILN = 172 +pkg syscall (openbsd-amd64-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (openbsd-amd64-cgo), const IFT_ECONET = 206 +pkg syscall (openbsd-amd64-cgo), const IFT_ENC = 244 +pkg syscall (openbsd-amd64-cgo), const IFT_EON = 25 +pkg syscall (openbsd-amd64-cgo), const IFT_EPLRS = 87 +pkg syscall (openbsd-amd64-cgo), const IFT_ESCON = 73 +pkg syscall (openbsd-amd64-cgo), const IFT_ETHER = 6 +pkg syscall (openbsd-amd64-cgo), const IFT_FAITH = 243 +pkg syscall (openbsd-amd64-cgo), const IFT_FAST = 125 +pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHER = 62 +pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (openbsd-amd64-cgo), const IFT_FDDI = 15 +pkg syscall (openbsd-amd64-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (openbsd-amd64-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (openbsd-amd64-cgo), const IFT_FRELAY = 32 +pkg syscall (openbsd-amd64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (openbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (openbsd-amd64-cgo), const IFT_FRFORWARD = 158 +pkg syscall (openbsd-amd64-cgo), const IFT_G703AT2MB = 67 +pkg syscall (openbsd-amd64-cgo), const IFT_G703AT64K = 66 +pkg syscall (openbsd-amd64-cgo), const IFT_GIF = 240 +pkg syscall (openbsd-amd64-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (openbsd-amd64-cgo), const IFT_GR303IDT = 178 +pkg syscall (openbsd-amd64-cgo), const IFT_GR303RDT = 177 +pkg syscall (openbsd-amd64-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (openbsd-amd64-cgo), const IFT_H323PROXY = 165 +pkg syscall (openbsd-amd64-cgo), const IFT_HDH1822 = 3 +pkg syscall (openbsd-amd64-cgo), const IFT_HDLC = 118 +pkg syscall (openbsd-amd64-cgo), const IFT_HDSL2 = 168 +pkg syscall (openbsd-amd64-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (openbsd-amd64-cgo), const IFT_HIPPI = 47 +pkg syscall (openbsd-amd64-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (openbsd-amd64-cgo), const IFT_HOSTPAD = 90 +pkg syscall (openbsd-amd64-cgo), const IFT_HSSI = 46 +pkg syscall (openbsd-amd64-cgo), const IFT_HY = 14 +pkg syscall (openbsd-amd64-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (openbsd-amd64-cgo), const IFT_IDSL = 154 +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80211 = 71 +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80212 = 55 +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (openbsd-amd64-cgo), const IFT_IFGSN = 145 +pkg syscall (openbsd-amd64-cgo), const IFT_IMT = 190 +pkg syscall (openbsd-amd64-cgo), const IFT_INFINIBAND = 199 +pkg syscall (openbsd-amd64-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (openbsd-amd64-cgo), const IFT_IP = 126 +pkg syscall (openbsd-amd64-cgo), const IFT_IPFORWARD = 142 +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERATM = 114 +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (openbsd-amd64-cgo), const IFT_IPSWITCH = 78 +pkg syscall (openbsd-amd64-cgo), const IFT_ISDN = 63 +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNS = 75 +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNU = 76 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88023 = 7 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88024 = 8 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025 = 9 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88026 = 10 +pkg syscall (openbsd-amd64-cgo), const IFT_ISUP = 179 +pkg syscall (openbsd-amd64-cgo), const IFT_L2VLAN = 135 +pkg syscall (openbsd-amd64-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (openbsd-amd64-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (openbsd-amd64-cgo), const IFT_LAPB = 16 +pkg syscall (openbsd-amd64-cgo), const IFT_LAPD = 77 +pkg syscall (openbsd-amd64-cgo), const IFT_LAPF = 119 +pkg syscall (openbsd-amd64-cgo), const IFT_LINEGROUP = 210 +pkg syscall (openbsd-amd64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (openbsd-amd64-cgo), const IFT_LOOP = 24 +pkg syscall (openbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (openbsd-amd64-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (openbsd-amd64-cgo), const IFT_MIOX25 = 38 +pkg syscall (openbsd-amd64-cgo), const IFT_MODEM = 48 +pkg syscall (openbsd-amd64-cgo), const IFT_MPC = 113 +pkg syscall (openbsd-amd64-cgo), const IFT_MPLS = 166 +pkg syscall (openbsd-amd64-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (openbsd-amd64-cgo), const IFT_MSDSL = 143 +pkg syscall (openbsd-amd64-cgo), const IFT_MVL = 191 +pkg syscall (openbsd-amd64-cgo), const IFT_MYRINET = 99 +pkg syscall (openbsd-amd64-cgo), const IFT_NFAS = 175 +pkg syscall (openbsd-amd64-cgo), const IFT_NSIP = 27 +pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (openbsd-amd64-cgo), const IFT_OTHER = 1 +pkg syscall (openbsd-amd64-cgo), const IFT_P10 = 12 +pkg syscall (openbsd-amd64-cgo), const IFT_P80 = 13 +pkg syscall (openbsd-amd64-cgo), const IFT_PARA = 34 +pkg syscall (openbsd-amd64-cgo), const IFT_PFLOG = 245 +pkg syscall (openbsd-amd64-cgo), const IFT_PFLOW = 249 +pkg syscall (openbsd-amd64-cgo), const IFT_PFSYNC = 246 +pkg syscall (openbsd-amd64-cgo), const IFT_PLC = 174 +pkg syscall (openbsd-amd64-cgo), const IFT_PON155 = 207 +pkg syscall (openbsd-amd64-cgo), const IFT_PON622 = 208 +pkg syscall (openbsd-amd64-cgo), const IFT_POS = 171 +pkg syscall (openbsd-amd64-cgo), const IFT_PPP = 23 +pkg syscall (openbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPATM = 197 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPCNLS = 89 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPMUX = 54 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (openbsd-amd64-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (openbsd-amd64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (openbsd-amd64-cgo), const IFT_PVC = 242 +pkg syscall (openbsd-amd64-cgo), const IFT_Q2931 = 201 +pkg syscall (openbsd-amd64-cgo), const IFT_QLLC = 68 +pkg syscall (openbsd-amd64-cgo), const IFT_RADIOMAC = 188 +pkg syscall (openbsd-amd64-cgo), const IFT_RADSL = 95 +pkg syscall (openbsd-amd64-cgo), const IFT_REACHDSL = 192 +pkg syscall (openbsd-amd64-cgo), const IFT_RFC1483 = 159 +pkg syscall (openbsd-amd64-cgo), const IFT_RS232 = 33 +pkg syscall (openbsd-amd64-cgo), const IFT_RSRB = 79 +pkg syscall (openbsd-amd64-cgo), const IFT_SDLC = 17 +pkg syscall (openbsd-amd64-cgo), const IFT_SDSL = 96 +pkg syscall (openbsd-amd64-cgo), const IFT_SHDSL = 169 +pkg syscall (openbsd-amd64-cgo), const IFT_SIP = 31 +pkg syscall (openbsd-amd64-cgo), const IFT_SIPSIG = 204 +pkg syscall (openbsd-amd64-cgo), const IFT_SIPTG = 203 +pkg syscall (openbsd-amd64-cgo), const IFT_SLIP = 28 +pkg syscall (openbsd-amd64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (openbsd-amd64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (openbsd-amd64-cgo), const IFT_SONET = 39 +pkg syscall (openbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (openbsd-amd64-cgo), const IFT_SONETPATH = 50 +pkg syscall (openbsd-amd64-cgo), const IFT_SONETVT = 51 +pkg syscall (openbsd-amd64-cgo), const IFT_SRP = 151 +pkg syscall (openbsd-amd64-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (openbsd-amd64-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (openbsd-amd64-cgo), const IFT_STARLAN = 11 +pkg syscall (openbsd-amd64-cgo), const IFT_T1 = 18 +pkg syscall (openbsd-amd64-cgo), const IFT_TDLC = 116 +pkg syscall (openbsd-amd64-cgo), const IFT_TELINK = 200 +pkg syscall (openbsd-amd64-cgo), const IFT_TERMPAD = 91 +pkg syscall (openbsd-amd64-cgo), const IFT_TR008 = 176 +pkg syscall (openbsd-amd64-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (openbsd-amd64-cgo), const IFT_TUNNEL = 131 +pkg syscall (openbsd-amd64-cgo), const IFT_ULTRA = 29 +pkg syscall (openbsd-amd64-cgo), const IFT_USB = 160 +pkg syscall (openbsd-amd64-cgo), const IFT_V11 = 64 +pkg syscall (openbsd-amd64-cgo), const IFT_V35 = 45 +pkg syscall (openbsd-amd64-cgo), const IFT_V36 = 65 +pkg syscall (openbsd-amd64-cgo), const IFT_V37 = 120 +pkg syscall (openbsd-amd64-cgo), const IFT_VDSL = 97 +pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEDID = 213 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEM = 100 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXO = 101 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXS = 102 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (openbsd-amd64-cgo), const IFT_X213 = 93 +pkg syscall (openbsd-amd64-cgo), const IFT_X25 = 5 +pkg syscall (openbsd-amd64-cgo), const IFT_X25DDN = 4 +pkg syscall (openbsd-amd64-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (openbsd-amd64-cgo), const IFT_X25MLP = 121 +pkg syscall (openbsd-amd64-cgo), const IFT_X25PLE = 40 +pkg syscall (openbsd-amd64-cgo), const IFT_XETHER = 26 +pkg syscall (openbsd-amd64-cgo), const IGNBRK = 1 +pkg syscall (openbsd-amd64-cgo), const IGNCR = 128 +pkg syscall (openbsd-amd64-cgo), const IGNPAR = 4 +pkg syscall (openbsd-amd64-cgo), const IMAXBEL = 8192 +pkg syscall (openbsd-amd64-cgo), const INLCR = 64 +pkg syscall (openbsd-amd64-cgo), const INPCK = 16 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (openbsd-amd64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_HOST = 1 +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NET = 4294967294 +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NSHIFT = 31 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_AH = 51 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_CARP = 112 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DONE = 257 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_EGP = 8 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_EON = 80 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ESP = 50 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_GGP = 3 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_GRE = 47 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IDP = 22 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAX = 256 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAXID = 259 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MPLS = 137 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_NONE = 59 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PIM = 103 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PUP = 12 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_RAW = 255 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_TP = 29 +pkg syscall (openbsd-amd64-cgo), const IPV6_AUTH_LEVEL = 53 +pkg syscall (openbsd-amd64-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (openbsd-amd64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (openbsd-amd64-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (openbsd-amd64-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_NETWORK_LEVEL = 55 +pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_TRANS_LEVEL = 54 +pkg syscall (openbsd-amd64-cgo), const IPV6_FAITH = 29 +pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (openbsd-amd64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (openbsd-amd64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (openbsd-amd64-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (openbsd-amd64-cgo), const IPV6_IPCOMP_LEVEL = 60 +pkg syscall (openbsd-amd64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (openbsd-amd64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (openbsd-amd64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (openbsd-amd64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (openbsd-amd64-cgo), const IPV6_MMTU = 1280 +pkg syscall (openbsd-amd64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (openbsd-amd64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (openbsd-amd64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (openbsd-amd64-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (openbsd-amd64-cgo), const IPV6_OPTIONS = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_PATHMTU = 44 +pkg syscall (openbsd-amd64-cgo), const IPV6_PIPEX = 63 +pkg syscall (openbsd-amd64-cgo), const IPV6_PKTINFO = 46 +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTABLE = 4129 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR = 51 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (openbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (openbsd-amd64-cgo), const IPV6_TCLASS = 61 +pkg syscall (openbsd-amd64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (openbsd-amd64-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (openbsd-amd64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION = 96 +pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (openbsd-amd64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (openbsd-amd64-cgo), const IP_AUTH_LEVEL = 20 +pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (openbsd-amd64-cgo), const IP_DF = 16384 +pkg syscall (openbsd-amd64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (openbsd-amd64-cgo), const IP_ESP_NETWORK_LEVEL = 22 +pkg syscall (openbsd-amd64-cgo), const IP_ESP_TRANS_LEVEL = 21 +pkg syscall (openbsd-amd64-cgo), const IP_HDRINCL = 2 +pkg syscall (openbsd-amd64-cgo), const IP_IPCOMP_LEVEL = 29 +pkg syscall (openbsd-amd64-cgo), const IP_IPSECFLOWINFO = 36 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_AUTH = 27 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_CRED = 25 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_ID = 23 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_AUTH = 28 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_CRED = 26 +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_ID = 24 +pkg syscall (openbsd-amd64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (openbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (openbsd-amd64-cgo), const IP_MF = 8192 +pkg syscall (openbsd-amd64-cgo), const IP_MINTTL = 32 +pkg syscall (openbsd-amd64-cgo), const IP_MIN_MEMBERSHIPS = 15 +pkg syscall (openbsd-amd64-cgo), const IP_MSS = 576 +pkg syscall (openbsd-amd64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (openbsd-amd64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (openbsd-amd64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (openbsd-amd64-cgo), const IP_OFFMASK = 8191 +pkg syscall (openbsd-amd64-cgo), const IP_OPTIONS = 1 +pkg syscall (openbsd-amd64-cgo), const IP_PIPEX = 34 +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE = 19 +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTPORT = 33 +pkg syscall (openbsd-amd64-cgo), const IP_RECVIF = 30 +pkg syscall (openbsd-amd64-cgo), const IP_RECVOPTS = 5 +pkg syscall (openbsd-amd64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (openbsd-amd64-cgo), const IP_RECVRTABLE = 35 +pkg syscall (openbsd-amd64-cgo), const IP_RECVTTL = 31 +pkg syscall (openbsd-amd64-cgo), const IP_RETOPTS = 8 +pkg syscall (openbsd-amd64-cgo), const IP_RF = 32768 +pkg syscall (openbsd-amd64-cgo), const IP_RTABLE = 4129 +pkg syscall (openbsd-amd64-cgo), const IP_TOS = 3 +pkg syscall (openbsd-amd64-cgo), const IP_TTL = 4 +pkg syscall (openbsd-amd64-cgo), const ISIG = 128 +pkg syscall (openbsd-amd64-cgo), const ISTRIP = 32 +pkg syscall (openbsd-amd64-cgo), const IXANY = 2048 +pkg syscall (openbsd-amd64-cgo), const IXOFF = 1024 +pkg syscall (openbsd-amd64-cgo), const IXON = 512 +pkg syscall (openbsd-amd64-cgo), const ImplementsGetwd = false +pkg syscall (openbsd-amd64-cgo), const LCNT_OVERLOAD_FLUSH = 6 +pkg syscall (openbsd-amd64-cgo), const LOCK_EX = 2 +pkg syscall (openbsd-amd64-cgo), const LOCK_NB = 4 +pkg syscall (openbsd-amd64-cgo), const LOCK_SH = 1 +pkg syscall (openbsd-amd64-cgo), const LOCK_UN = 8 +pkg syscall (openbsd-amd64-cgo), const MSG_BCAST = 256 +pkg syscall (openbsd-amd64-cgo), const MSG_CTRUNC = 32 +pkg syscall (openbsd-amd64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (openbsd-amd64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (openbsd-amd64-cgo), const MSG_EOR = 8 +pkg syscall (openbsd-amd64-cgo), const MSG_MCAST = 512 +pkg syscall (openbsd-amd64-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (openbsd-amd64-cgo), const MSG_OOB = 1 +pkg syscall (openbsd-amd64-cgo), const MSG_PEEK = 2 +pkg syscall (openbsd-amd64-cgo), const MSG_TRUNC = 16 +pkg syscall (openbsd-amd64-cgo), const MSG_WAITALL = 64 +pkg syscall (openbsd-amd64-cgo), const NAME_MAX = 255 +pkg syscall (openbsd-amd64-cgo), const NET_RT_DUMP = 1 +pkg syscall (openbsd-amd64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (openbsd-amd64-cgo), const NET_RT_IFLIST = 3 +pkg syscall (openbsd-amd64-cgo), const NET_RT_MAXID = 6 +pkg syscall (openbsd-amd64-cgo), const NET_RT_STATS = 4 +pkg syscall (openbsd-amd64-cgo), const NET_RT_TABLE = 5 +pkg syscall (openbsd-amd64-cgo), const NOFLSH = 2147483648 +pkg syscall (openbsd-amd64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (openbsd-amd64-cgo), const NOTE_CHILD = 4 +pkg syscall (openbsd-amd64-cgo), const NOTE_DELETE = 1 +pkg syscall (openbsd-amd64-cgo), const NOTE_EOF = 2 +pkg syscall (openbsd-amd64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (openbsd-amd64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (openbsd-amd64-cgo), const NOTE_EXTEND = 4 +pkg syscall (openbsd-amd64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (openbsd-amd64-cgo), const NOTE_LINK = 16 +pkg syscall (openbsd-amd64-cgo), const NOTE_LOWAT = 1 +pkg syscall (openbsd-amd64-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (openbsd-amd64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (openbsd-amd64-cgo), const NOTE_RENAME = 32 +pkg syscall (openbsd-amd64-cgo), const NOTE_REVOKE = 64 +pkg syscall (openbsd-amd64-cgo), const NOTE_TRACK = 1 +pkg syscall (openbsd-amd64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (openbsd-amd64-cgo), const NOTE_TRUNCATE = 128 +pkg syscall (openbsd-amd64-cgo), const NOTE_WRITE = 2 +pkg syscall (openbsd-amd64-cgo), const OCRNL = 16 +pkg syscall (openbsd-amd64-cgo), const ONLCR = 2 +pkg syscall (openbsd-amd64-cgo), const ONLRET = 128 +pkg syscall (openbsd-amd64-cgo), const ONOCR = 64 +pkg syscall (openbsd-amd64-cgo), const ONOEOT = 8 +pkg syscall (openbsd-amd64-cgo), const OPOST = 1 +pkg syscall (openbsd-amd64-cgo), const O_ACCMODE = 3 +pkg syscall (openbsd-amd64-cgo), const O_APPEND = 8 +pkg syscall (openbsd-amd64-cgo), const O_ASYNC = 64 +pkg syscall (openbsd-amd64-cgo), const O_CLOEXEC = 65536 +pkg syscall (openbsd-amd64-cgo), const O_CREAT = 512 +pkg syscall (openbsd-amd64-cgo), const O_DIRECTORY = 131072 +pkg syscall (openbsd-amd64-cgo), const O_DSYNC = 128 +pkg syscall (openbsd-amd64-cgo), const O_EXCL = 2048 +pkg syscall (openbsd-amd64-cgo), const O_EXLOCK = 32 +pkg syscall (openbsd-amd64-cgo), const O_FSYNC = 128 +pkg syscall (openbsd-amd64-cgo), const O_NDELAY = 4 +pkg syscall (openbsd-amd64-cgo), const O_NOCTTY = 32768 +pkg syscall (openbsd-amd64-cgo), const O_NOFOLLOW = 256 +pkg syscall (openbsd-amd64-cgo), const O_NONBLOCK = 4 +pkg syscall (openbsd-amd64-cgo), const O_RSYNC = 128 +pkg syscall (openbsd-amd64-cgo), const O_SHLOCK = 16 +pkg syscall (openbsd-amd64-cgo), const O_SYNC = 128 +pkg syscall (openbsd-amd64-cgo), const O_TRUNC = 1024 +pkg syscall (openbsd-amd64-cgo), const PARENB = 4096 +pkg syscall (openbsd-amd64-cgo), const PARMRK = 8 +pkg syscall (openbsd-amd64-cgo), const PARODD = 8192 +pkg syscall (openbsd-amd64-cgo), const PENDIN = 536870912 +pkg syscall (openbsd-amd64-cgo), const PF_FLUSH = 1 +pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH = 21 +pkg syscall (openbsd-amd64-cgo), const PTRACE_CONT = 7 +pkg syscall (openbsd-amd64-cgo), const PTRACE_KILL = 8 +pkg syscall (openbsd-amd64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_CORE = 4 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_CPU = 0 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_DATA = 2 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (openbsd-amd64-cgo), const RLIMIT_STACK = 3 +pkg syscall (openbsd-amd64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (openbsd-amd64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (openbsd-amd64-cgo), const RTAX_BRD = 7 +pkg syscall (openbsd-amd64-cgo), const RTAX_DST = 0 +pkg syscall (openbsd-amd64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (openbsd-amd64-cgo), const RTAX_GENMASK = 3 +pkg syscall (openbsd-amd64-cgo), const RTAX_IFA = 5 +pkg syscall (openbsd-amd64-cgo), const RTAX_IFP = 4 +pkg syscall (openbsd-amd64-cgo), const RTAX_LABEL = 10 +pkg syscall (openbsd-amd64-cgo), const RTAX_MAX = 11 +pkg syscall (openbsd-amd64-cgo), const RTAX_NETMASK = 2 +pkg syscall (openbsd-amd64-cgo), const RTAX_SRC = 8 +pkg syscall (openbsd-amd64-cgo), const RTAX_SRCMASK = 9 +pkg syscall (openbsd-amd64-cgo), const RTA_AUTHOR = 64 +pkg syscall (openbsd-amd64-cgo), const RTA_BRD = 128 +pkg syscall (openbsd-amd64-cgo), const RTA_DST = 1 +pkg syscall (openbsd-amd64-cgo), const RTA_GATEWAY = 2 +pkg syscall (openbsd-amd64-cgo), const RTA_GENMASK = 8 +pkg syscall (openbsd-amd64-cgo), const RTA_IFA = 32 +pkg syscall (openbsd-amd64-cgo), const RTA_IFP = 16 +pkg syscall (openbsd-amd64-cgo), const RTA_LABEL = 1024 +pkg syscall (openbsd-amd64-cgo), const RTA_NETMASK = 4 +pkg syscall (openbsd-amd64-cgo), const RTA_SRC = 256 +pkg syscall (openbsd-amd64-cgo), const RTA_SRCMASK = 512 +pkg syscall (openbsd-amd64-cgo), const RTF_ANNOUNCE = 16384 +pkg syscall (openbsd-amd64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (openbsd-amd64-cgo), const RTF_CLONED = 65536 +pkg syscall (openbsd-amd64-cgo), const RTF_CLONING = 256 +pkg syscall (openbsd-amd64-cgo), const RTF_DONE = 64 +pkg syscall (openbsd-amd64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (openbsd-amd64-cgo), const RTF_FMASK = 63496 +pkg syscall (openbsd-amd64-cgo), const RTF_GATEWAY = 2 +pkg syscall (openbsd-amd64-cgo), const RTF_HOST = 4 +pkg syscall (openbsd-amd64-cgo), const RTF_LLINFO = 1024 +pkg syscall (openbsd-amd64-cgo), const RTF_MASK = 128 +pkg syscall (openbsd-amd64-cgo), const RTF_MODIFIED = 32 +pkg syscall (openbsd-amd64-cgo), const RTF_MPATH = 262144 +pkg syscall (openbsd-amd64-cgo), const RTF_MPLS = 1048576 +pkg syscall (openbsd-amd64-cgo), const RTF_PERMANENT_ARP = 8192 +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO3 = 8192 +pkg syscall (openbsd-amd64-cgo), const RTF_REJECT = 8 +pkg syscall (openbsd-amd64-cgo), const RTF_SOURCE = 131072 +pkg syscall (openbsd-amd64-cgo), const RTF_STATIC = 2048 +pkg syscall (openbsd-amd64-cgo), const RTF_TUNNEL = 1048576 +pkg syscall (openbsd-amd64-cgo), const RTF_UP = 1 +pkg syscall (openbsd-amd64-cgo), const RTF_USETRAILERS = 32768 +pkg syscall (openbsd-amd64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (openbsd-amd64-cgo), const RTM_ADD = 1 +pkg syscall (openbsd-amd64-cgo), const RTM_CHANGE = 3 +pkg syscall (openbsd-amd64-cgo), const RTM_DELADDR = 13 +pkg syscall (openbsd-amd64-cgo), const RTM_DELETE = 2 +pkg syscall (openbsd-amd64-cgo), const RTM_DESYNC = 16 +pkg syscall (openbsd-amd64-cgo), const RTM_GET = 4 +pkg syscall (openbsd-amd64-cgo), const RTM_IFANNOUNCE = 15 +pkg syscall (openbsd-amd64-cgo), const RTM_IFINFO = 14 +pkg syscall (openbsd-amd64-cgo), const RTM_LOCK = 8 +pkg syscall (openbsd-amd64-cgo), const RTM_LOSING = 5 +pkg syscall (openbsd-amd64-cgo), const RTM_MAXSIZE = 2048 +pkg syscall (openbsd-amd64-cgo), const RTM_MISS = 7 +pkg syscall (openbsd-amd64-cgo), const RTM_NEWADDR = 12 +pkg syscall (openbsd-amd64-cgo), const RTM_REDIRECT = 6 +pkg syscall (openbsd-amd64-cgo), const RTM_RESOLVE = 11 +pkg syscall (openbsd-amd64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (openbsd-amd64-cgo), const RTM_VERSION = 4 +pkg syscall (openbsd-amd64-cgo), const RTV_EXPIRE = 4 +pkg syscall (openbsd-amd64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (openbsd-amd64-cgo), const RTV_MTU = 1 +pkg syscall (openbsd-amd64-cgo), const RTV_RPIPE = 8 +pkg syscall (openbsd-amd64-cgo), const RTV_RTT = 64 +pkg syscall (openbsd-amd64-cgo), const RTV_RTTVAR = 128 +pkg syscall (openbsd-amd64-cgo), const RTV_SPIPE = 16 +pkg syscall (openbsd-amd64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (openbsd-amd64-cgo), const RT_TABLEID_MAX = 255 +pkg syscall (openbsd-amd64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (openbsd-amd64-cgo), const RUSAGE_SELF = 0 +pkg syscall (openbsd-amd64-cgo), const RUSAGE_THREAD = 1 +pkg syscall (openbsd-amd64-cgo), const SCM_RIGHTS = 1 +pkg syscall (openbsd-amd64-cgo), const SCM_TIMESTAMP = 4 +pkg syscall (openbsd-amd64-cgo), const SIGBUS = 10 +pkg syscall (openbsd-amd64-cgo), const SIGCHLD = 20 +pkg syscall (openbsd-amd64-cgo), const SIGCONT = 19 +pkg syscall (openbsd-amd64-cgo), const SIGEMT = 7 +pkg syscall (openbsd-amd64-cgo), const SIGINFO = 29 +pkg syscall (openbsd-amd64-cgo), const SIGIO = 23 +pkg syscall (openbsd-amd64-cgo), const SIGIOT = 6 +pkg syscall (openbsd-amd64-cgo), const SIGPROF = 27 +pkg syscall (openbsd-amd64-cgo), const SIGSTOP = 17 +pkg syscall (openbsd-amd64-cgo), const SIGSYS = 12 +pkg syscall (openbsd-amd64-cgo), const SIGTHR = 32 +pkg syscall (openbsd-amd64-cgo), const SIGTSTP = 18 +pkg syscall (openbsd-amd64-cgo), const SIGTTIN = 21 +pkg syscall (openbsd-amd64-cgo), const SIGTTOU = 22 +pkg syscall (openbsd-amd64-cgo), const SIGURG = 16 +pkg syscall (openbsd-amd64-cgo), const SIGUSR1 = 30 +pkg syscall (openbsd-amd64-cgo), const SIGUSR2 = 31 +pkg syscall (openbsd-amd64-cgo), const SIGVTALRM = 26 +pkg syscall (openbsd-amd64-cgo), const SIGWINCH = 28 +pkg syscall (openbsd-amd64-cgo), const SIGXCPU = 24 +pkg syscall (openbsd-amd64-cgo), const SIGXFSZ = 25 +pkg syscall (openbsd-amd64-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (openbsd-amd64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (openbsd-amd64-cgo), const SIOCAIFGROUP = 2150132103 +pkg syscall (openbsd-amd64-cgo), const SIOCALIFADDR = 2182637852 +pkg syscall (openbsd-amd64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADD = 2153277756 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADDS = 2153277761 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGARL = 2154719565 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR = 2150132039 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDEL = 2153277757 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDELS = 2153277762 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFLUSH = 2153277768 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFRL = 2154719566 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGCACHE = 3222563137 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGFD = 3222563154 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGHT = 3222563153 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGIFFLGS = 3227019582 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGMA = 3222563155 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPARAM = 3225446744 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPRI = 3222563152 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGRL = 3224398159 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGSIFS = 3227019580 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGTO = 3222563142 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGIFS = 3227019586 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGRTS = 3223349571 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR = 3223873860 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSCACHE = 2148821312 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSFD = 2148821330 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSHT = 2148821329 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFCOST = 2153277781 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFFLGS = 2153277759 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFPRIO = 2153277780 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSMA = 2148821331 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPRI = 2148821328 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPROTO = 2148821338 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTO = 2148821317 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTXHC = 2148821337 +pkg syscall (openbsd-amd64-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (openbsd-amd64-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (openbsd-amd64-cgo), const SIOCDIFGROUP = 2150132105 +pkg syscall (openbsd-amd64-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (openbsd-amd64-cgo), const SIOCDLIFADDR = 2182637854 +pkg syscall (openbsd-amd64-cgo), const SIOCGETKALIVE = 3222825380 +pkg syscall (openbsd-amd64-cgo), const SIOCGETLABEL = 2149607834 +pkg syscall (openbsd-amd64-cgo), const SIOCGETPFLOW = 3223349758 +pkg syscall (openbsd-amd64-cgo), const SIOCGETPFSYNC = 3223349752 +pkg syscall (openbsd-amd64-cgo), const SIOCGETSGCNT = 3223352628 +pkg syscall (openbsd-amd64-cgo), const SIOCGETVIFCNT = 3223876915 +pkg syscall (openbsd-amd64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFCONF = 3222300964 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDATA = 3223349531 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDESCR = 3223349633 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGATTR = 3223873931 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGMEMB = 3223873930 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGROUP = 3223873928 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMEDIA = 3224398134 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMTU = 3223349630 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPRIORITY = 3223349660 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFRDOMAIN = 3223349664 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFRTLABEL = 3223349635 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFTIMESLOT = 3223349638 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFXFLAGS = 3223349662 +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFADDR = 3256379677 +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYADDR = 3256379723 +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYRTABLE = 3223349666 +pkg syscall (openbsd-amd64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (openbsd-amd64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (openbsd-amd64-cgo), const SIOCGVH = 3223349750 +pkg syscall (openbsd-amd64-cgo), const SIOCIFCREATE = 2149607802 +pkg syscall (openbsd-amd64-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (openbsd-amd64-cgo), const SIOCIFGCLONERS = 3222301048 +pkg syscall (openbsd-amd64-cgo), const SIOCSETKALIVE = 2149083555 +pkg syscall (openbsd-amd64-cgo), const SIOCSETLABEL = 2149607833 +pkg syscall (openbsd-amd64-cgo), const SIOCSETPFLOW = 2149607933 +pkg syscall (openbsd-amd64-cgo), const SIOCSETPFSYNC = 2149607927 +pkg syscall (openbsd-amd64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFDESCR = 2149607808 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFGATTR = 2150132108 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFLLADDR = 2149607711 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMEDIA = 3223349557 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMTU = 2149607807 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFPRIORITY = 2149607835 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFRDOMAIN = 2149607839 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFRTLABEL = 2149607810 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFTIMESLOT = 2149607813 +pkg syscall (openbsd-amd64-cgo), const SIOCSIFXFLAGS = 2149607837 +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYADDR = 2182637898 +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYRTABLE = 2149607841 +pkg syscall (openbsd-amd64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (openbsd-amd64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (openbsd-amd64-cgo), const SIOCSVH = 3223349749 +pkg syscall (openbsd-amd64-cgo), const SOCK_RDM = 4 +pkg syscall (openbsd-amd64-cgo), const SOL_SOCKET = 65535 +pkg syscall (openbsd-amd64-cgo), const SOMAXCONN = 128 +pkg syscall (openbsd-amd64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (openbsd-amd64-cgo), const SO_BINDANY = 4096 +pkg syscall (openbsd-amd64-cgo), const SO_BROADCAST = 32 +pkg syscall (openbsd-amd64-cgo), const SO_DEBUG = 1 +pkg syscall (openbsd-amd64-cgo), const SO_DONTROUTE = 16 +pkg syscall (openbsd-amd64-cgo), const SO_ERROR = 4103 +pkg syscall (openbsd-amd64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (openbsd-amd64-cgo), const SO_LINGER = 128 +pkg syscall (openbsd-amd64-cgo), const SO_NETPROC = 4128 +pkg syscall (openbsd-amd64-cgo), const SO_OOBINLINE = 256 +pkg syscall (openbsd-amd64-cgo), const SO_PEERCRED = 4130 +pkg syscall (openbsd-amd64-cgo), const SO_RCVBUF = 4098 +pkg syscall (openbsd-amd64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (openbsd-amd64-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (openbsd-amd64-cgo), const SO_REUSEADDR = 4 +pkg syscall (openbsd-amd64-cgo), const SO_REUSEPORT = 512 +pkg syscall (openbsd-amd64-cgo), const SO_RTABLE = 4129 +pkg syscall (openbsd-amd64-cgo), const SO_SNDBUF = 4097 +pkg syscall (openbsd-amd64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (openbsd-amd64-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (openbsd-amd64-cgo), const SO_SPLICE = 4131 +pkg syscall (openbsd-amd64-cgo), const SO_TIMESTAMP = 2048 +pkg syscall (openbsd-amd64-cgo), const SO_TYPE = 4104 +pkg syscall (openbsd-amd64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT = 30 +pkg syscall (openbsd-amd64-cgo), const SYS_ACCESS = 33 +pkg syscall (openbsd-amd64-cgo), const SYS_ACCT = 51 +pkg syscall (openbsd-amd64-cgo), const SYS_ADJFREQ = 305 +pkg syscall (openbsd-amd64-cgo), const SYS_ADJTIME = 140 +pkg syscall (openbsd-amd64-cgo), const SYS_BIND = 104 +pkg syscall (openbsd-amd64-cgo), const SYS_CHDIR = 12 +pkg syscall (openbsd-amd64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (openbsd-amd64-cgo), const SYS_CHMOD = 15 +pkg syscall (openbsd-amd64-cgo), const SYS_CHOWN = 16 +pkg syscall (openbsd-amd64-cgo), const SYS_CHROOT = 61 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOSE = 6 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOSEFROM = 287 +pkg syscall (openbsd-amd64-cgo), const SYS_CONNECT = 98 +pkg syscall (openbsd-amd64-cgo), const SYS_DUP = 41 +pkg syscall (openbsd-amd64-cgo), const SYS_DUP2 = 90 +pkg syscall (openbsd-amd64-cgo), const SYS_EXECVE = 59 +pkg syscall (openbsd-amd64-cgo), const SYS_EXIT = 1 +pkg syscall (openbsd-amd64-cgo), const SYS_FACCESSAT = 313 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHDIR = 13 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHMOD = 124 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHMODAT = 314 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWN = 123 +pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWNAT = 315 +pkg syscall (openbsd-amd64-cgo), const SYS_FCNTL = 92 +pkg syscall (openbsd-amd64-cgo), const SYS_FHOPEN = 264 +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTAT = 294 +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS = 309 +pkg syscall (openbsd-amd64-cgo), const SYS_FLOCK = 131 +pkg syscall (openbsd-amd64-cgo), const SYS_FORK = 2 +pkg syscall (openbsd-amd64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT = 292 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT = 316 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS = 308 +pkg syscall (openbsd-amd64-cgo), const SYS_FSYNC = 95 +pkg syscall (openbsd-amd64-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS = 327 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES = 206 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES = 312 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDTABLECOUNT = 18 +pkg syscall (openbsd-amd64-cgo), const SYS_GETEGID = 43 +pkg syscall (openbsd-amd64-cgo), const SYS_GETEUID = 25 +pkg syscall (openbsd-amd64-cgo), const SYS_GETFH = 161 +pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT = 306 +pkg syscall (openbsd-amd64-cgo), const SYS_GETGID = 47 +pkg syscall (openbsd-amd64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER = 86 +pkg syscall (openbsd-amd64-cgo), const SYS_GETLOGIN = 49 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPGID = 207 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPGRP = 81 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPID = 20 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPPID = 39 +pkg syscall (openbsd-amd64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRESGID = 283 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRESUID = 281 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRTABLE = 311 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (openbsd-amd64-cgo), const SYS_GETSID = 255 +pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (openbsd-amd64-cgo), const SYS_GETTHRID = 299 +pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (openbsd-amd64-cgo), const SYS_GETUID = 24 +pkg syscall (openbsd-amd64-cgo), const SYS_IOCTL = 54 +pkg syscall (openbsd-amd64-cgo), const SYS_ISSETUGID = 253 +pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT = 270 +pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 37 +pkg syscall (openbsd-amd64-cgo), const SYS_KQUEUE = 269 +pkg syscall (openbsd-amd64-cgo), const SYS_KTRACE = 45 +pkg syscall (openbsd-amd64-cgo), const SYS_LCHOWN = 254 +pkg syscall (openbsd-amd64-cgo), const SYS_LINK = 9 +pkg syscall (openbsd-amd64-cgo), const SYS_LINKAT = 317 +pkg syscall (openbsd-amd64-cgo), const SYS_LISTEN = 106 +pkg syscall (openbsd-amd64-cgo), const SYS_LSEEK = 199 +pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT = 293 +pkg syscall (openbsd-amd64-cgo), const SYS_MADVISE = 75 +pkg syscall (openbsd-amd64-cgo), const SYS_MINCORE = 78 +pkg syscall (openbsd-amd64-cgo), const SYS_MINHERIT = 250 +pkg syscall (openbsd-amd64-cgo), const SYS_MKDIR = 136 +pkg syscall (openbsd-amd64-cgo), const SYS_MKDIRAT = 318 +pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFO = 132 +pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFOAT = 319 +pkg syscall (openbsd-amd64-cgo), const SYS_MKNOD = 14 +pkg syscall (openbsd-amd64-cgo), const SYS_MKNODAT = 320 +pkg syscall (openbsd-amd64-cgo), const SYS_MLOCK = 203 +pkg syscall (openbsd-amd64-cgo), const SYS_MLOCKALL = 271 +pkg syscall (openbsd-amd64-cgo), const SYS_MMAP = 197 +pkg syscall (openbsd-amd64-cgo), const SYS_MOUNT = 21 +pkg syscall (openbsd-amd64-cgo), const SYS_MPROTECT = 74 +pkg syscall (openbsd-amd64-cgo), const SYS_MQUERY = 286 +pkg syscall (openbsd-amd64-cgo), const SYS_MSGCTL = 297 +pkg syscall (openbsd-amd64-cgo), const SYS_MSGGET = 225 +pkg syscall (openbsd-amd64-cgo), const SYS_MSGRCV = 227 +pkg syscall (openbsd-amd64-cgo), const SYS_MSGSND = 226 +pkg syscall (openbsd-amd64-cgo), const SYS_MSYNC = 256 +pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCKALL = 272 +pkg syscall (openbsd-amd64-cgo), const SYS_MUNMAP = 73 +pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (openbsd-amd64-cgo), const SYS_NFSSVC = 155 +pkg syscall (openbsd-amd64-cgo), const SYS_OBREAK = 17 +pkg syscall (openbsd-amd64-cgo), const SYS_OPEN = 5 +pkg syscall (openbsd-amd64-cgo), const SYS_OPENAT = 321 +pkg syscall (openbsd-amd64-cgo), const SYS_PATHCONF = 191 +pkg syscall (openbsd-amd64-cgo), const SYS_PIPE = 263 +pkg syscall (openbsd-amd64-cgo), const SYS_POLL = 252 +pkg syscall (openbsd-amd64-cgo), const SYS_PREAD = 173 +pkg syscall (openbsd-amd64-cgo), const SYS_PREADV = 267 +pkg syscall (openbsd-amd64-cgo), const SYS_PROFIL = 44 +pkg syscall (openbsd-amd64-cgo), const SYS_PTRACE = 26 +pkg syscall (openbsd-amd64-cgo), const SYS_PWRITE = 174 +pkg syscall (openbsd-amd64-cgo), const SYS_PWRITEV = 268 +pkg syscall (openbsd-amd64-cgo), const SYS_QUOTACTL = 148 +pkg syscall (openbsd-amd64-cgo), const SYS_READ = 3 +pkg syscall (openbsd-amd64-cgo), const SYS_READLINK = 58 +pkg syscall (openbsd-amd64-cgo), const SYS_READLINKAT = 322 +pkg syscall (openbsd-amd64-cgo), const SYS_READV = 120 +pkg syscall (openbsd-amd64-cgo), const SYS_REBOOT = 55 +pkg syscall (openbsd-amd64-cgo), const SYS_RECVFROM = 29 +pkg syscall (openbsd-amd64-cgo), const SYS_RECVMSG = 27 +pkg syscall (openbsd-amd64-cgo), const SYS_RENAME = 128 +pkg syscall (openbsd-amd64-cgo), const SYS_RENAMEAT = 323 +pkg syscall (openbsd-amd64-cgo), const SYS_REVOKE = 56 +pkg syscall (openbsd-amd64-cgo), const SYS_RMDIR = 137 +pkg syscall (openbsd-amd64-cgo), const SYS_SCHED_YIELD = 298 +pkg syscall (openbsd-amd64-cgo), const SYS_SELECT = 93 +pkg syscall (openbsd-amd64-cgo), const SYS_SEMGET = 221 +pkg syscall (openbsd-amd64-cgo), const SYS_SEMOP = 290 +pkg syscall (openbsd-amd64-cgo), const SYS_SENDMSG = 28 +pkg syscall (openbsd-amd64-cgo), const SYS_SENDTO = 133 +pkg syscall (openbsd-amd64-cgo), const SYS_SETEGID = 182 +pkg syscall (openbsd-amd64-cgo), const SYS_SETEUID = 183 +pkg syscall (openbsd-amd64-cgo), const SYS_SETGID = 181 +pkg syscall (openbsd-amd64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER = 83 +pkg syscall (openbsd-amd64-cgo), const SYS_SETLOGIN = 50 +pkg syscall (openbsd-amd64-cgo), const SYS_SETPGID = 82 +pkg syscall (openbsd-amd64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (openbsd-amd64-cgo), const SYS_SETREGID = 127 +pkg syscall (openbsd-amd64-cgo), const SYS_SETRESGID = 284 +pkg syscall (openbsd-amd64-cgo), const SYS_SETRESUID = 282 +pkg syscall (openbsd-amd64-cgo), const SYS_SETREUID = 126 +pkg syscall (openbsd-amd64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (openbsd-amd64-cgo), const SYS_SETRTABLE = 310 +pkg syscall (openbsd-amd64-cgo), const SYS_SETSID = 147 +pkg syscall (openbsd-amd64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (openbsd-amd64-cgo), const SYS_SETUID = 23 +pkg syscall (openbsd-amd64-cgo), const SYS_SHMAT = 228 +pkg syscall (openbsd-amd64-cgo), const SYS_SHMCTL = 296 +pkg syscall (openbsd-amd64-cgo), const SYS_SHMDT = 230 +pkg syscall (openbsd-amd64-cgo), const SYS_SHMGET = 289 +pkg syscall (openbsd-amd64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGACTION = 46 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGALTSTACK = 288 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGPENDING = 52 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGPROCMASK = 48 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGRETURN = 103 +pkg syscall (openbsd-amd64-cgo), const SYS_SIGSUSPEND = 111 +pkg syscall (openbsd-amd64-cgo), const SYS_SOCKET = 97 +pkg syscall (openbsd-amd64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (openbsd-amd64-cgo), const SYS_STAT = 291 +pkg syscall (openbsd-amd64-cgo), const SYS_STATFS = 307 +pkg syscall (openbsd-amd64-cgo), const SYS_SWAPCTL = 193 +pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINK = 57 +pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINKAT = 324 +pkg syscall (openbsd-amd64-cgo), const SYS_SYNC = 36 +pkg syscall (openbsd-amd64-cgo), const SYS_SYSARCH = 165 +pkg syscall (openbsd-amd64-cgo), const SYS_TRUNCATE = 200 +pkg syscall (openbsd-amd64-cgo), const SYS_UMASK = 60 +pkg syscall (openbsd-amd64-cgo), const SYS_UNLINK = 10 +pkg syscall (openbsd-amd64-cgo), const SYS_UNLINKAT = 325 +pkg syscall (openbsd-amd64-cgo), const SYS_UNMOUNT = 22 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT = 326 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES = 138 +pkg syscall (openbsd-amd64-cgo), const SYS_VFORK = 66 +pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 = 7 +pkg syscall (openbsd-amd64-cgo), const SYS_WRITE = 4 +pkg syscall (openbsd-amd64-cgo), const SYS_WRITEV = 121 +pkg syscall (openbsd-amd64-cgo), const SYS___GETCWD = 304 +pkg syscall (openbsd-amd64-cgo), const SYS___GET_TCB = 330 +pkg syscall (openbsd-amd64-cgo), const SYS___SEMCTL = 295 +pkg syscall (openbsd-amd64-cgo), const SYS___SET_TCB = 329 +pkg syscall (openbsd-amd64-cgo), const SYS___SYSCTL = 202 +pkg syscall (openbsd-amd64-cgo), const SYS___TFORK = 8 +pkg syscall (openbsd-amd64-cgo), const SYS___THREXIT = 302 +pkg syscall (openbsd-amd64-cgo), const SYS___THRSIGDIVERT = 303 +pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP = 300 +pkg syscall (openbsd-amd64-cgo), const SYS___THRWAKEUP = 301 +pkg syscall (openbsd-amd64-cgo), const S_IFMT = 61440 +pkg syscall (openbsd-amd64-cgo), const SizeofBpfHdr = 20 +pkg syscall (openbsd-amd64-cgo), const SizeofBpfInsn = 8 +pkg syscall (openbsd-amd64-cgo), const SizeofBpfProgram = 16 +pkg syscall (openbsd-amd64-cgo), const SizeofBpfStat = 8 +pkg syscall (openbsd-amd64-cgo), const SizeofBpfVersion = 4 +pkg syscall (openbsd-amd64-cgo), const SizeofCmsghdr = 12 +pkg syscall (openbsd-amd64-cgo), const SizeofIPMreq = 8 +pkg syscall (openbsd-amd64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (openbsd-amd64-cgo), const SizeofIfAnnounceMsghdr = 26 +pkg syscall (openbsd-amd64-cgo), const SizeofIfData = 224 +pkg syscall (openbsd-amd64-cgo), const SizeofIfMsghdr = 248 +pkg syscall (openbsd-amd64-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (openbsd-amd64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (openbsd-amd64-cgo), const SizeofLinger = 8 +pkg syscall (openbsd-amd64-cgo), const SizeofMsghdr = 48 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics = 48 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr = 88 +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrDatalink = 32 +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (openbsd-amd64-cgo), const TCIFLUSH = 1 +pkg syscall (openbsd-amd64-cgo), const TCIOFLUSH = 3 +pkg syscall (openbsd-amd64-cgo), const TCOFLUSH = 2 +pkg syscall (openbsd-amd64-cgo), const TCP_MAXBURST = 4 +pkg syscall (openbsd-amd64-cgo), const TCP_MAXSEG = 2 +pkg syscall (openbsd-amd64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (openbsd-amd64-cgo), const TCP_MAX_SACK = 3 +pkg syscall (openbsd-amd64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (openbsd-amd64-cgo), const TCP_MD5SIG = 4 +pkg syscall (openbsd-amd64-cgo), const TCP_MSS = 512 +pkg syscall (openbsd-amd64-cgo), const TCP_NSTATES = 11 +pkg syscall (openbsd-amd64-cgo), const TCP_SACK_ENABLE = 8 +pkg syscall (openbsd-amd64-cgo), const TCSAFLUSH = 2 +pkg syscall (openbsd-amd64-cgo), const TIOCCBRK = 536900730 +pkg syscall (openbsd-amd64-cgo), const TIOCCDTR = 536900728 +pkg syscall (openbsd-amd64-cgo), const TIOCCONS = 2147775586 +pkg syscall (openbsd-amd64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (openbsd-amd64-cgo), const TIOCEXCL = 536900621 +pkg syscall (openbsd-amd64-cgo), const TIOCEXT = 2147775584 +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_PPS = 16 +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (openbsd-amd64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (openbsd-amd64-cgo), const TIOCGETA = 1076655123 +pkg syscall (openbsd-amd64-cgo), const TIOCGETD = 1074033690 +pkg syscall (openbsd-amd64-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (openbsd-amd64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (openbsd-amd64-cgo), const TIOCGTSTAMP = 1074820187 +pkg syscall (openbsd-amd64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (openbsd-amd64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (openbsd-amd64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (openbsd-amd64-cgo), const TIOCMGET = 1074033770 +pkg syscall (openbsd-amd64-cgo), const TIOCMODG = 1074033770 +pkg syscall (openbsd-amd64-cgo), const TIOCMODS = 2147775597 +pkg syscall (openbsd-amd64-cgo), const TIOCMSET = 2147775597 +pkg syscall (openbsd-amd64-cgo), const TIOCM_CAR = 64 +pkg syscall (openbsd-amd64-cgo), const TIOCM_CD = 64 +pkg syscall (openbsd-amd64-cgo), const TIOCM_CTS = 32 +pkg syscall (openbsd-amd64-cgo), const TIOCM_DSR = 256 +pkg syscall (openbsd-amd64-cgo), const TIOCM_DTR = 2 +pkg syscall (openbsd-amd64-cgo), const TIOCM_LE = 1 +pkg syscall (openbsd-amd64-cgo), const TIOCM_RI = 128 +pkg syscall (openbsd-amd64-cgo), const TIOCM_RNG = 128 +pkg syscall (openbsd-amd64-cgo), const TIOCM_RTS = 4 +pkg syscall (openbsd-amd64-cgo), const TIOCM_SR = 16 +pkg syscall (openbsd-amd64-cgo), const TIOCM_ST = 8 +pkg syscall (openbsd-amd64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (openbsd-amd64-cgo), const TIOCNXCL = 536900622 +pkg syscall (openbsd-amd64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT = 2147775600 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_START = 8 +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (openbsd-amd64-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (openbsd-amd64-cgo), const TIOCSBRK = 536900731 +pkg syscall (openbsd-amd64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (openbsd-amd64-cgo), const TIOCSDTR = 536900729 +pkg syscall (openbsd-amd64-cgo), const TIOCSETA = 2150396948 +pkg syscall (openbsd-amd64-cgo), const TIOCSETAF = 2150396950 +pkg syscall (openbsd-amd64-cgo), const TIOCSETAW = 2150396949 +pkg syscall (openbsd-amd64-cgo), const TIOCSETD = 2147775515 +pkg syscall (openbsd-amd64-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (openbsd-amd64-cgo), const TIOCSIG = 2147775583 +pkg syscall (openbsd-amd64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (openbsd-amd64-cgo), const TIOCSTART = 536900718 +pkg syscall (openbsd-amd64-cgo), const TIOCSTAT = 2147775589 +pkg syscall (openbsd-amd64-cgo), const TIOCSTI = 2147578994 +pkg syscall (openbsd-amd64-cgo), const TIOCSTOP = 536900719 +pkg syscall (openbsd-amd64-cgo), const TIOCSTSTAMP = 2148037722 +pkg syscall (openbsd-amd64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (openbsd-amd64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (openbsd-amd64-cgo), const TOSTOP = 4194304 +pkg syscall (openbsd-amd64-cgo), const VDISCARD = 15 +pkg syscall (openbsd-amd64-cgo), const VDSUSP = 11 +pkg syscall (openbsd-amd64-cgo), const VEOF = 0 +pkg syscall (openbsd-amd64-cgo), const VEOL = 1 +pkg syscall (openbsd-amd64-cgo), const VEOL2 = 2 +pkg syscall (openbsd-amd64-cgo), const VERASE = 3 +pkg syscall (openbsd-amd64-cgo), const VINTR = 8 +pkg syscall (openbsd-amd64-cgo), const VKILL = 5 +pkg syscall (openbsd-amd64-cgo), const VLNEXT = 14 +pkg syscall (openbsd-amd64-cgo), const VMIN = 16 +pkg syscall (openbsd-amd64-cgo), const VQUIT = 9 +pkg syscall (openbsd-amd64-cgo), const VREPRINT = 6 +pkg syscall (openbsd-amd64-cgo), const VSTART = 12 +pkg syscall (openbsd-amd64-cgo), const VSTATUS = 18 +pkg syscall (openbsd-amd64-cgo), const VSTOP = 13 +pkg syscall (openbsd-amd64-cgo), const VSUSP = 10 +pkg syscall (openbsd-amd64-cgo), const VTIME = 17 +pkg syscall (openbsd-amd64-cgo), const VWERASE = 4 +pkg syscall (openbsd-amd64-cgo), const WALTSIG = 4 +pkg syscall (openbsd-amd64-cgo), const WCONTINUED = 8 +pkg syscall (openbsd-amd64-cgo), const WCOREFLAG = 128 +pkg syscall (openbsd-amd64-cgo), const WNOHANG = 1 +pkg syscall (openbsd-amd64-cgo), const WSTOPPED = 127 +pkg syscall (openbsd-amd64-cgo), const WUNTRACED = 2 +pkg syscall (windows-386), const AF_INET6 = 23 +pkg syscall (windows-386), const AF_NETBIOS = 17 +pkg syscall (windows-386), const AI_CANONNAME = 2 +pkg syscall (windows-386), const AI_CANONNAME ideal-int +pkg syscall (windows-386), const AI_NUMERICHOST = 4 +pkg syscall (windows-386), const AI_NUMERICHOST ideal-int +pkg syscall (windows-386), const AI_PASSIVE = 1 +pkg syscall (windows-386), const AI_PASSIVE ideal-int +pkg syscall (windows-386), const APPLICATION_ERROR = 536870912 +pkg syscall (windows-386), const AUTHTYPE_CLIENT = 1 +pkg syscall (windows-386), const AUTHTYPE_SERVER = 2 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE = 2 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE_TS = 3 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASE = 1 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_EV = 8 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_MICROSOFT_ROOT = 7 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_NT_AUTH = 6 +pkg syscall (windows-386), const CERT_CHAIN_POLICY_SSL = 4 +pkg syscall (windows-386), const CERT_E_CN_NO_MATCH = 2148204815 +pkg syscall (windows-386), const CERT_E_EXPIRED = 2148204801 +pkg syscall (windows-386), const CERT_E_PURPOSE = 2148204806 +pkg syscall (windows-386), const CERT_E_ROLE = 2148204803 +pkg syscall (windows-386), const CERT_E_UNTRUSTEDROOT = 2148204809 +pkg syscall (windows-386), const CERT_STORE_ADD_ALWAYS = 4 +pkg syscall (windows-386), const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 4 +pkg syscall (windows-386), const CERT_STORE_PROV_MEMORY = 2 +pkg syscall (windows-386), const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT = 32768 +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT = 8192 +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 16384 +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT = 134217728 +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 4096 +pkg syscall (windows-386), const CERT_TRUST_INVALID_BASIC_CONSTRAINTS = 1024 +pkg syscall (windows-386), const CERT_TRUST_INVALID_EXTENSION = 256 +pkg syscall (windows-386), const CERT_TRUST_INVALID_NAME_CONSTRAINTS = 2048 +pkg syscall (windows-386), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS = 512 +pkg syscall (windows-386), const CERT_TRUST_IS_CYCLIC = 128 +pkg syscall (windows-386), const CERT_TRUST_IS_EXPLICIT_DISTRUST = 67108864 +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_SIGNATURE_VALID = 8 +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_TIME_VALID = 1 +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_VALID_FOR_USAGE = 16 +pkg syscall (windows-386), const CERT_TRUST_IS_OFFLINE_REVOCATION = 16777216 +pkg syscall (windows-386), const CERT_TRUST_IS_REVOKED = 4 +pkg syscall (windows-386), const CERT_TRUST_IS_UNTRUSTED_ROOT = 32 +pkg syscall (windows-386), const CERT_TRUST_NO_ERROR = 0 +pkg syscall (windows-386), const CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY = 33554432 +pkg syscall (windows-386), const CERT_TRUST_REVOCATION_STATUS_UNKNOWN = 64 +pkg syscall (windows-386), const CREATE_ALWAYS = 2 +pkg syscall (windows-386), const CREATE_NEW = 1 +pkg syscall (windows-386), const CREATE_NEW_PROCESS_GROUP = 512 +pkg syscall (windows-386), const CREATE_NEW_PROCESS_GROUP ideal-int +pkg syscall (windows-386), const CREATE_UNICODE_ENVIRONMENT = 1024 +pkg syscall (windows-386), const CRYPT_DEFAULT_CONTAINER_OPTIONAL = 128 +pkg syscall (windows-386), const CRYPT_DELETEKEYSET = 16 +pkg syscall (windows-386), const CRYPT_MACHINE_KEYSET = 32 +pkg syscall (windows-386), const CRYPT_NEWKEYSET = 8 +pkg syscall (windows-386), const CRYPT_SILENT = 64 +pkg syscall (windows-386), const CRYPT_VERIFYCONTEXT = 4026531840 +pkg syscall (windows-386), const CTRL_BREAK_EVENT = 1 +pkg syscall (windows-386), const CTRL_BREAK_EVENT ideal-int +pkg syscall (windows-386), const CTRL_C_EVENT = 0 +pkg syscall (windows-386), const CTRL_C_EVENT ideal-int +pkg syscall (windows-386), const DNS_TYPE_A = 1 +pkg syscall (windows-386), const DNS_TYPE_A6 = 38 +pkg syscall (windows-386), const DNS_TYPE_AAAA = 28 +pkg syscall (windows-386), const DNS_TYPE_ADDRS = 248 +pkg syscall (windows-386), const DNS_TYPE_AFSDB = 18 +pkg syscall (windows-386), const DNS_TYPE_ALL = 255 +pkg syscall (windows-386), const DNS_TYPE_ANY = 255 +pkg syscall (windows-386), const DNS_TYPE_ATMA = 34 +pkg syscall (windows-386), const DNS_TYPE_AXFR = 252 +pkg syscall (windows-386), const DNS_TYPE_CERT = 37 +pkg syscall (windows-386), const DNS_TYPE_CNAME = 5 +pkg syscall (windows-386), const DNS_TYPE_DHCID = 49 +pkg syscall (windows-386), const DNS_TYPE_DNAME = 39 +pkg syscall (windows-386), const DNS_TYPE_DNSKEY = 48 +pkg syscall (windows-386), const DNS_TYPE_DS = 43 +pkg syscall (windows-386), const DNS_TYPE_EID = 31 +pkg syscall (windows-386), const DNS_TYPE_GID = 102 +pkg syscall (windows-386), const DNS_TYPE_GPOS = 27 +pkg syscall (windows-386), const DNS_TYPE_HINFO = 13 +pkg syscall (windows-386), const DNS_TYPE_ISDN = 20 +pkg syscall (windows-386), const DNS_TYPE_IXFR = 251 +pkg syscall (windows-386), const DNS_TYPE_KEY = 25 +pkg syscall (windows-386), const DNS_TYPE_KX = 36 +pkg syscall (windows-386), const DNS_TYPE_LOC = 29 +pkg syscall (windows-386), const DNS_TYPE_MAILA = 254 +pkg syscall (windows-386), const DNS_TYPE_MAILB = 253 +pkg syscall (windows-386), const DNS_TYPE_MB = 7 +pkg syscall (windows-386), const DNS_TYPE_MD = 3 +pkg syscall (windows-386), const DNS_TYPE_MF = 4 +pkg syscall (windows-386), const DNS_TYPE_MG = 8 +pkg syscall (windows-386), const DNS_TYPE_MINFO = 14 +pkg syscall (windows-386), const DNS_TYPE_MR = 9 +pkg syscall (windows-386), const DNS_TYPE_MX = 15 +pkg syscall (windows-386), const DNS_TYPE_NAPTR = 35 +pkg syscall (windows-386), const DNS_TYPE_NBSTAT = 65281 +pkg syscall (windows-386), const DNS_TYPE_NIMLOC = 32 +pkg syscall (windows-386), const DNS_TYPE_NS = 2 +pkg syscall (windows-386), const DNS_TYPE_NSAP = 22 +pkg syscall (windows-386), const DNS_TYPE_NSAPPTR = 23 +pkg syscall (windows-386), const DNS_TYPE_NSEC = 47 +pkg syscall (windows-386), const DNS_TYPE_NULL = 10 +pkg syscall (windows-386), const DNS_TYPE_NXT = 30 +pkg syscall (windows-386), const DNS_TYPE_OPT = 41 +pkg syscall (windows-386), const DNS_TYPE_PTR = 12 +pkg syscall (windows-386), const DNS_TYPE_PX = 26 +pkg syscall (windows-386), const DNS_TYPE_RP = 17 +pkg syscall (windows-386), const DNS_TYPE_RRSIG = 46 +pkg syscall (windows-386), const DNS_TYPE_RT = 21 +pkg syscall (windows-386), const DNS_TYPE_SIG = 24 +pkg syscall (windows-386), const DNS_TYPE_SINK = 40 +pkg syscall (windows-386), const DNS_TYPE_SOA = 6 +pkg syscall (windows-386), const DNS_TYPE_SRV = 33 +pkg syscall (windows-386), const DNS_TYPE_TEXT = 16 +pkg syscall (windows-386), const DNS_TYPE_TKEY = 249 +pkg syscall (windows-386), const DNS_TYPE_TSIG = 250 +pkg syscall (windows-386), const DNS_TYPE_UID = 101 +pkg syscall (windows-386), const DNS_TYPE_UINFO = 100 +pkg syscall (windows-386), const DNS_TYPE_UNSPEC = 103 +pkg syscall (windows-386), const DNS_TYPE_WINS = 65281 +pkg syscall (windows-386), const DNS_TYPE_WINSR = 65282 +pkg syscall (windows-386), const DNS_TYPE_WKS = 11 +pkg syscall (windows-386), const DNS_TYPE_X25 = 19 +pkg syscall (windows-386), const DUPLICATE_CLOSE_SOURCE = 1 +pkg syscall (windows-386), const DUPLICATE_SAME_ACCESS = 2 +pkg syscall (windows-386), const E2BIG = 536870912 +pkg syscall (windows-386), const EACCES = 536870913 +pkg syscall (windows-386), const EADDRINUSE = 536870914 +pkg syscall (windows-386), const EADDRNOTAVAIL = 536870915 +pkg syscall (windows-386), const EADV = 536870916 +pkg syscall (windows-386), const EAFNOSUPPORT = 536870917 +pkg syscall (windows-386), const EAGAIN = 536870918 +pkg syscall (windows-386), const EALREADY = 536870919 +pkg syscall (windows-386), const EBADE = 536870920 +pkg syscall (windows-386), const EBADF = 536870921 +pkg syscall (windows-386), const EBADFD = 536870922 +pkg syscall (windows-386), const EBADMSG = 536870923 +pkg syscall (windows-386), const EBADR = 536870924 +pkg syscall (windows-386), const EBADRQC = 536870925 +pkg syscall (windows-386), const EBADSLT = 536870926 +pkg syscall (windows-386), const EBFONT = 536870927 +pkg syscall (windows-386), const EBUSY = 536870928 +pkg syscall (windows-386), const ECANCELED = 536870929 +pkg syscall (windows-386), const ECHILD = 536870930 +pkg syscall (windows-386), const ECHRNG = 536870931 +pkg syscall (windows-386), const ECOMM = 536870932 +pkg syscall (windows-386), const ECONNABORTED = 536870933 +pkg syscall (windows-386), const ECONNREFUSED = 536870934 +pkg syscall (windows-386), const ECONNRESET = 536870935 +pkg syscall (windows-386), const EDEADLK = 536870936 +pkg syscall (windows-386), const EDEADLOCK = 536870937 +pkg syscall (windows-386), const EDESTADDRREQ = 536870938 +pkg syscall (windows-386), const EDOM = 536870939 +pkg syscall (windows-386), const EDOTDOT = 536870940 +pkg syscall (windows-386), const EDQUOT = 536870941 +pkg syscall (windows-386), const EEXIST = 536870942 +pkg syscall (windows-386), const EFAULT = 536870943 +pkg syscall (windows-386), const EFBIG = 536870944 +pkg syscall (windows-386), const EHOSTDOWN = 536870945 +pkg syscall (windows-386), const EHOSTUNREACH = 536870946 +pkg syscall (windows-386), const EIDRM = 536870947 +pkg syscall (windows-386), const EILSEQ = 536870948 +pkg syscall (windows-386), const EINPROGRESS = 536870949 +pkg syscall (windows-386), const EINTR = 536870950 +pkg syscall (windows-386), const EINVAL = 536870951 +pkg syscall (windows-386), const EIO = 536870952 +pkg syscall (windows-386), const EISCONN = 536870953 +pkg syscall (windows-386), const EISDIR = 536870954 +pkg syscall (windows-386), const EISNAM = 536870955 +pkg syscall (windows-386), const EKEYEXPIRED = 536870956 +pkg syscall (windows-386), const EKEYREJECTED = 536870957 +pkg syscall (windows-386), const EKEYREVOKED = 536870958 +pkg syscall (windows-386), const EL2HLT = 536870959 +pkg syscall (windows-386), const EL2NSYNC = 536870960 +pkg syscall (windows-386), const EL3HLT = 536870961 +pkg syscall (windows-386), const EL3RST = 536870962 +pkg syscall (windows-386), const ELIBACC = 536870963 +pkg syscall (windows-386), const ELIBBAD = 536870964 +pkg syscall (windows-386), const ELIBEXEC = 536870965 +pkg syscall (windows-386), const ELIBMAX = 536870966 +pkg syscall (windows-386), const ELIBSCN = 536870967 +pkg syscall (windows-386), const ELNRNG = 536870968 +pkg syscall (windows-386), const ELOOP = 536870969 +pkg syscall (windows-386), const EMEDIUMTYPE = 536870970 +pkg syscall (windows-386), const EMFILE = 536870971 +pkg syscall (windows-386), const EMLINK = 536870972 +pkg syscall (windows-386), const EMSGSIZE = 536870973 +pkg syscall (windows-386), const EMULTIHOP = 536870974 +pkg syscall (windows-386), const ENAMETOOLONG = 536870975 +pkg syscall (windows-386), const ENAVAIL = 536870976 +pkg syscall (windows-386), const ENETDOWN = 536870977 +pkg syscall (windows-386), const ENETRESET = 536870978 +pkg syscall (windows-386), const ENETUNREACH = 536870979 +pkg syscall (windows-386), const ENFILE = 536870980 +pkg syscall (windows-386), const ENOANO = 536870981 +pkg syscall (windows-386), const ENOBUFS = 536870982 +pkg syscall (windows-386), const ENOCSI = 536870983 +pkg syscall (windows-386), const ENODATA = 536870984 +pkg syscall (windows-386), const ENODEV = 536870985 +pkg syscall (windows-386), const ENOEXEC = 536870986 +pkg syscall (windows-386), const ENOKEY = 536870987 +pkg syscall (windows-386), const ENOLCK = 536870988 +pkg syscall (windows-386), const ENOLINK = 536870989 +pkg syscall (windows-386), const ENOMEDIUM = 536870990 +pkg syscall (windows-386), const ENOMEM = 536870991 +pkg syscall (windows-386), const ENOMSG = 536870992 +pkg syscall (windows-386), const ENONET = 536870993 +pkg syscall (windows-386), const ENOPKG = 536870994 +pkg syscall (windows-386), const ENOPROTOOPT = 536870995 +pkg syscall (windows-386), const ENOSPC = 536870996 +pkg syscall (windows-386), const ENOSR = 536870997 +pkg syscall (windows-386), const ENOSTR = 536870998 +pkg syscall (windows-386), const ENOSYS = 536870999 +pkg syscall (windows-386), const ENOTBLK = 536871000 +pkg syscall (windows-386), const ENOTCONN = 536871001 +pkg syscall (windows-386), const ENOTDIR = 3 +pkg syscall (windows-386), const ENOTEMPTY = 536871002 +pkg syscall (windows-386), const ENOTNAM = 536871003 +pkg syscall (windows-386), const ENOTRECOVERABLE = 536871004 +pkg syscall (windows-386), const ENOTSOCK = 536871005 +pkg syscall (windows-386), const ENOTSUP = 536871006 +pkg syscall (windows-386), const ENOTTY = 536871007 +pkg syscall (windows-386), const ENOTUNIQ = 536871008 +pkg syscall (windows-386), const ENXIO = 536871009 +pkg syscall (windows-386), const EOPNOTSUPP = 536871010 +pkg syscall (windows-386), const EOVERFLOW = 536871011 +pkg syscall (windows-386), const EOWNERDEAD = 536871012 +pkg syscall (windows-386), const EPERM = 536871013 +pkg syscall (windows-386), const EPFNOSUPPORT = 536871014 +pkg syscall (windows-386), const EPIPE = 536871015 +pkg syscall (windows-386), const EPROTO = 536871016 +pkg syscall (windows-386), const EPROTONOSUPPORT = 536871017 +pkg syscall (windows-386), const EPROTOTYPE = 536871018 +pkg syscall (windows-386), const ERANGE = 536871019 +pkg syscall (windows-386), const EREMCHG = 536871020 +pkg syscall (windows-386), const EREMOTE = 536871021 +pkg syscall (windows-386), const EREMOTEIO = 536871022 +pkg syscall (windows-386), const ERESTART = 536871023 +pkg syscall (windows-386), const EROFS = 536871024 +pkg syscall (windows-386), const ERROR_ACCESS_DENIED = 5 +pkg syscall (windows-386), const ERROR_ALREADY_EXISTS = 183 +pkg syscall (windows-386), const ERROR_BROKEN_PIPE = 109 +pkg syscall (windows-386), const ERROR_BUFFER_OVERFLOW = 111 +pkg syscall (windows-386), const ERROR_ENVVAR_NOT_FOUND = 203 +pkg syscall (windows-386), const ERROR_FILE_EXISTS = 80 +pkg syscall (windows-386), const ERROR_FILE_NOT_FOUND = 2 +pkg syscall (windows-386), const ERROR_INSUFFICIENT_BUFFER = 122 +pkg syscall (windows-386), const ERROR_IO_PENDING = 997 +pkg syscall (windows-386), const ERROR_MOD_NOT_FOUND = 126 +pkg syscall (windows-386), const ERROR_NOT_FOUND = 1168 +pkg syscall (windows-386), const ERROR_NOT_FOUND Errno +pkg syscall (windows-386), const ERROR_NO_MORE_FILES = 18 +pkg syscall (windows-386), const ERROR_OPERATION_ABORTED = 995 +pkg syscall (windows-386), const ERROR_PATH_NOT_FOUND = 3 +pkg syscall (windows-386), const ERROR_PROC_NOT_FOUND = 127 +pkg syscall (windows-386), const ESHUTDOWN = 536871025 +pkg syscall (windows-386), const ESOCKTNOSUPPORT = 536871026 +pkg syscall (windows-386), const ESPIPE = 536871027 +pkg syscall (windows-386), const ESRCH = 536871028 +pkg syscall (windows-386), const ESRMNT = 536871029 +pkg syscall (windows-386), const ESTALE = 536871030 +pkg syscall (windows-386), const ESTRPIPE = 536871031 +pkg syscall (windows-386), const ETIME = 536871032 +pkg syscall (windows-386), const ETIMEDOUT = 536871033 +pkg syscall (windows-386), const ETOOMANYREFS = 536871034 +pkg syscall (windows-386), const ETXTBSY = 536871035 +pkg syscall (windows-386), const EUCLEAN = 536871036 +pkg syscall (windows-386), const EUNATCH = 536871037 +pkg syscall (windows-386), const EUSERS = 536871038 +pkg syscall (windows-386), const EWINDOWS = 536871042 +pkg syscall (windows-386), const EWOULDBLOCK = 536871039 +pkg syscall (windows-386), const EXDEV = 536871040 +pkg syscall (windows-386), const EXFULL = 536871041 +pkg syscall (windows-386), const FILE_ACTION_ADDED = 1 +pkg syscall (windows-386), const FILE_ACTION_MODIFIED = 3 +pkg syscall (windows-386), const FILE_ACTION_REMOVED = 2 +pkg syscall (windows-386), const FILE_ACTION_RENAMED_NEW_NAME = 5 +pkg syscall (windows-386), const FILE_ACTION_RENAMED_OLD_NAME = 4 +pkg syscall (windows-386), const FILE_APPEND_DATA = 4 +pkg syscall (windows-386), const FILE_ATTRIBUTE_ARCHIVE = 32 +pkg syscall (windows-386), const FILE_ATTRIBUTE_DIRECTORY = 16 +pkg syscall (windows-386), const FILE_ATTRIBUTE_HIDDEN = 2 +pkg syscall (windows-386), const FILE_ATTRIBUTE_NORMAL = 128 +pkg syscall (windows-386), const FILE_ATTRIBUTE_READONLY = 1 +pkg syscall (windows-386), const FILE_ATTRIBUTE_SYSTEM = 4 +pkg syscall (windows-386), const FILE_BEGIN = 0 +pkg syscall (windows-386), const FILE_CURRENT = 1 +pkg syscall (windows-386), const FILE_END = 2 +pkg syscall (windows-386), const FILE_FLAG_BACKUP_SEMANTICS = 33554432 +pkg syscall (windows-386), const FILE_FLAG_OVERLAPPED = 1073741824 +pkg syscall (windows-386), const FILE_LIST_DIRECTORY = 1 +pkg syscall (windows-386), const FILE_MAP_COPY = 1 +pkg syscall (windows-386), const FILE_MAP_EXECUTE = 32 +pkg syscall (windows-386), const FILE_MAP_READ = 4 +pkg syscall (windows-386), const FILE_MAP_WRITE = 2 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_ATTRIBUTES = 4 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_CREATION = 64 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_DIR_NAME = 2 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_FILE_NAME = 1 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_LAST_ACCESS = 32 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_LAST_WRITE = 16 +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_SIZE = 8 +pkg syscall (windows-386), const FILE_SHARE_DELETE = 4 +pkg syscall (windows-386), const FILE_SHARE_READ = 1 +pkg syscall (windows-386), const FILE_SHARE_WRITE = 2 +pkg syscall (windows-386), const FILE_TYPE_CHAR = 2 +pkg syscall (windows-386), const FILE_TYPE_DISK = 1 +pkg syscall (windows-386), const FILE_TYPE_PIPE = 3 +pkg syscall (windows-386), const FILE_TYPE_REMOTE = 32768 +pkg syscall (windows-386), const FILE_TYPE_UNKNOWN = 0 +pkg syscall (windows-386), const FILE_WRITE_ATTRIBUTES = 256 +pkg syscall (windows-386), const FORMAT_MESSAGE_ALLOCATE_BUFFER = 256 +pkg syscall (windows-386), const FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192 +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_HMODULE = 2048 +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_STRING = 1024 +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_SYSTEM = 4096 +pkg syscall (windows-386), const FORMAT_MESSAGE_IGNORE_INSERTS = 512 +pkg syscall (windows-386), const FORMAT_MESSAGE_MAX_WIDTH_MASK = 255 +pkg syscall (windows-386), const GENERIC_ALL = 268435456 +pkg syscall (windows-386), const GENERIC_EXECUTE = 536870912 +pkg syscall (windows-386), const GENERIC_READ = 2147483648 +pkg syscall (windows-386), const GENERIC_WRITE = 1073741824 +pkg syscall (windows-386), const GetFileExInfoStandard = 0 +pkg syscall (windows-386), const GetFileExMaxInfoLevel = 1 +pkg syscall (windows-386), const HANDLE_FLAG_INHERIT = 1 +pkg syscall (windows-386), const HKEY_CLASSES_ROOT = 2147483648 +pkg syscall (windows-386), const HKEY_CURRENT_CONFIG = 2147483653 +pkg syscall (windows-386), const HKEY_CURRENT_USER = 2147483649 +pkg syscall (windows-386), const HKEY_DYN_DATA = 2147483654 +pkg syscall (windows-386), const HKEY_LOCAL_MACHINE = 2147483650 +pkg syscall (windows-386), const HKEY_PERFORMANCE_DATA = 2147483652 +pkg syscall (windows-386), const HKEY_USERS = 2147483651 +pkg syscall (windows-386), const IFF_LOOPBACK = 4 +pkg syscall (windows-386), const IFF_MULTICAST = 16 +pkg syscall (windows-386), const IFF_POINTTOPOINT = 8 +pkg syscall (windows-386), const IGNORE = 0 +pkg syscall (windows-386), const INFINITE = 4294967295 +pkg syscall (windows-386), const INVALID_FILE_ATTRIBUTES = 4294967295 +pkg syscall (windows-386), const IOC_IN = 2147483648 +pkg syscall (windows-386), const IOC_IN ideal-int +pkg syscall (windows-386), const IOC_INOUT = 3221225472 +pkg syscall (windows-386), const IOC_INOUT ideal-int +pkg syscall (windows-386), const IOC_OUT = 1073741824 +pkg syscall (windows-386), const IOC_OUT ideal-int +pkg syscall (windows-386), const IOC_WS2 = 134217728 +pkg syscall (windows-386), const IOC_WS2 ideal-int +pkg syscall (windows-386), const IPV6_JOIN_GROUP = 12 +pkg syscall (windows-386), const IPV6_LEAVE_GROUP = 13 +pkg syscall (windows-386), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (windows-386), const IPV6_MULTICAST_IF = 9 +pkg syscall (windows-386), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (windows-386), const IPV6_UNICAST_HOPS = 4 +pkg syscall (windows-386), const IPV6_V6ONLY = 27 +pkg syscall (windows-386), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (windows-386), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (windows-386), const IP_MULTICAST_IF = 9 +pkg syscall (windows-386), const IP_MULTICAST_LOOP = 11 +pkg syscall (windows-386), const IP_MULTICAST_TTL = 10 +pkg syscall (windows-386), const IP_TOS = 3 +pkg syscall (windows-386), const IP_TTL = 4 +pkg syscall (windows-386), const ImplementsGetwd = true +pkg syscall (windows-386), const InvalidHandle = 4294967295 +pkg syscall (windows-386), const KEY_ALL_ACCESS = 983103 +pkg syscall (windows-386), const KEY_CREATE_LINK = 32 +pkg syscall (windows-386), const KEY_CREATE_SUB_KEY = 4 +pkg syscall (windows-386), const KEY_ENUMERATE_SUB_KEYS = 8 +pkg syscall (windows-386), const KEY_EXECUTE = 131097 +pkg syscall (windows-386), const KEY_NOTIFY = 16 +pkg syscall (windows-386), const KEY_QUERY_VALUE = 1 +pkg syscall (windows-386), const KEY_READ = 131097 +pkg syscall (windows-386), const KEY_SET_VALUE = 2 +pkg syscall (windows-386), const KEY_WOW64_32KEY = 512 +pkg syscall (windows-386), const KEY_WOW64_64KEY = 256 +pkg syscall (windows-386), const KEY_WRITE = 131078 +pkg syscall (windows-386), const LANG_ENGLISH = 9 +pkg syscall (windows-386), const MAXLEN_IFDESCR = 256 +pkg syscall (windows-386), const MAXLEN_PHYSADDR = 8 +pkg syscall (windows-386), const MAX_ADAPTER_ADDRESS_LENGTH = 8 +pkg syscall (windows-386), const MAX_ADAPTER_DESCRIPTION_LENGTH = 128 +pkg syscall (windows-386), const MAX_ADAPTER_NAME_LENGTH = 256 +pkg syscall (windows-386), const MAX_COMPUTERNAME_LENGTH = 15 +pkg syscall (windows-386), const MAX_INTERFACE_NAME_LEN = 256 +pkg syscall (windows-386), const MAX_LONG_PATH = 32768 +pkg syscall (windows-386), const MAX_PATH = 260 +pkg syscall (windows-386), const MaxTokenInfoClass = 29 +pkg syscall (windows-386), const NameCanonical = 7 +pkg syscall (windows-386), const NameCanonicalEx = 9 +pkg syscall (windows-386), const NameDisplay = 3 +pkg syscall (windows-386), const NameDnsDomain = 12 +pkg syscall (windows-386), const NameFullyQualifiedDN = 1 +pkg syscall (windows-386), const NameSamCompatible = 2 +pkg syscall (windows-386), const NameServicePrincipal = 10 +pkg syscall (windows-386), const NameUniqueId = 6 +pkg syscall (windows-386), const NameUnknown = 0 +pkg syscall (windows-386), const NameUserPrincipal = 8 +pkg syscall (windows-386), const OPEN_ALWAYS = 4 +pkg syscall (windows-386), const OPEN_EXISTING = 3 +pkg syscall (windows-386), const O_APPEND = 1024 +pkg syscall (windows-386), const O_ASYNC = 8192 +pkg syscall (windows-386), const O_CLOEXEC = 524288 +pkg syscall (windows-386), const O_CREAT = 64 +pkg syscall (windows-386), const O_EXCL = 128 +pkg syscall (windows-386), const O_NOCTTY = 256 +pkg syscall (windows-386), const O_NONBLOCK = 2048 +pkg syscall (windows-386), const O_SYNC = 4096 +pkg syscall (windows-386), const O_TRUNC = 512 +pkg syscall (windows-386), const PAGE_EXECUTE_READ = 32 +pkg syscall (windows-386), const PAGE_EXECUTE_READWRITE = 64 +pkg syscall (windows-386), const PAGE_EXECUTE_WRITECOPY = 128 +pkg syscall (windows-386), const PAGE_READONLY = 2 +pkg syscall (windows-386), const PAGE_READWRITE = 4 +pkg syscall (windows-386), const PAGE_WRITECOPY = 8 +pkg syscall (windows-386), const PKCS_7_ASN_ENCODING = 65536 +pkg syscall (windows-386), const PROCESS_QUERY_INFORMATION = 1024 +pkg syscall (windows-386), const PROV_DH_SCHANNEL = 18 +pkg syscall (windows-386), const PROV_DSS = 3 +pkg syscall (windows-386), const PROV_DSS_DH = 13 +pkg syscall (windows-386), const PROV_EC_ECDSA_FULL = 16 +pkg syscall (windows-386), const PROV_EC_ECDSA_SIG = 14 +pkg syscall (windows-386), const PROV_EC_ECNRA_FULL = 17 +pkg syscall (windows-386), const PROV_EC_ECNRA_SIG = 15 +pkg syscall (windows-386), const PROV_FORTEZZA = 4 +pkg syscall (windows-386), const PROV_INTEL_SEC = 22 +pkg syscall (windows-386), const PROV_MS_EXCHANGE = 5 +pkg syscall (windows-386), const PROV_REPLACE_OWF = 23 +pkg syscall (windows-386), const PROV_RNG = 21 +pkg syscall (windows-386), const PROV_RSA_AES = 24 +pkg syscall (windows-386), const PROV_RSA_FULL = 1 +pkg syscall (windows-386), const PROV_RSA_SCHANNEL = 12 +pkg syscall (windows-386), const PROV_RSA_SIG = 2 +pkg syscall (windows-386), const PROV_SPYRUS_LYNKS = 20 +pkg syscall (windows-386), const PROV_SSL = 6 +pkg syscall (windows-386), const REG_BINARY = 3 +pkg syscall (windows-386), const REG_DWORD = 4 +pkg syscall (windows-386), const REG_DWORD_BIG_ENDIAN = 5 +pkg syscall (windows-386), const REG_DWORD_LITTLE_ENDIAN = 4 +pkg syscall (windows-386), const REG_EXPAND_SZ = 2 +pkg syscall (windows-386), const REG_FULL_RESOURCE_DESCRIPTOR = 9 +pkg syscall (windows-386), const REG_LINK = 6 +pkg syscall (windows-386), const REG_MULTI_SZ = 7 +pkg syscall (windows-386), const REG_NONE = 0 +pkg syscall (windows-386), const REG_QWORD = 11 +pkg syscall (windows-386), const REG_QWORD_LITTLE_ENDIAN = 11 +pkg syscall (windows-386), const REG_RESOURCE_LIST = 8 +pkg syscall (windows-386), const REG_RESOURCE_REQUIREMENTS_LIST = 10 +pkg syscall (windows-386), const REG_SZ = 1 +pkg syscall (windows-386), const SIGBUS = 7 +pkg syscall (windows-386), const SIO_GET_EXTENSION_FUNCTION_POINTER = 3355443206 +pkg syscall (windows-386), const SIO_GET_EXTENSION_FUNCTION_POINTER ideal-int +pkg syscall (windows-386), const SIO_GET_INTERFACE_LIST = 1074033791 +pkg syscall (windows-386), const SOL_SOCKET = 65535 +pkg syscall (windows-386), const SOMAXCONN = 2147483647 +pkg syscall (windows-386), const SO_BROADCAST = 32 +pkg syscall (windows-386), const SO_DONTROUTE = 16 +pkg syscall (windows-386), const SO_KEEPALIVE = 8 +pkg syscall (windows-386), const SO_LINGER = 128 +pkg syscall (windows-386), const SO_RCVBUF = 4098 +pkg syscall (windows-386), const SO_REUSEADDR = 4 +pkg syscall (windows-386), const SO_SNDBUF = 4097 +pkg syscall (windows-386), const SO_UPDATE_ACCEPT_CONTEXT = 28683 +pkg syscall (windows-386), const SO_UPDATE_CONNECT_CONTEXT = 28688 +pkg syscall (windows-386), const SO_UPDATE_CONNECT_CONTEXT ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_ALL = 2031616 +pkg syscall (windows-386), const STANDARD_RIGHTS_EXECUTE = 131072 +pkg syscall (windows-386), const STANDARD_RIGHTS_READ = 131072 +pkg syscall (windows-386), const STANDARD_RIGHTS_REQUIRED = 983040 +pkg syscall (windows-386), const STANDARD_RIGHTS_WRITE = 131072 +pkg syscall (windows-386), const STARTF_USESHOWWINDOW = 1 +pkg syscall (windows-386), const STARTF_USESTDHANDLES = 256 +pkg syscall (windows-386), const STD_ERROR_HANDLE = -12 +pkg syscall (windows-386), const STD_INPUT_HANDLE = -10 +pkg syscall (windows-386), const STD_OUTPUT_HANDLE = -11 +pkg syscall (windows-386), const SUBLANG_ENGLISH_US = 1 +pkg syscall (windows-386), const SW_FORCEMINIMIZE = 11 +pkg syscall (windows-386), const SW_HIDE = 0 +pkg syscall (windows-386), const SW_MAXIMIZE = 3 +pkg syscall (windows-386), const SW_MINIMIZE = 6 +pkg syscall (windows-386), const SW_NORMAL = 1 +pkg syscall (windows-386), const SW_RESTORE = 9 +pkg syscall (windows-386), const SW_SHOW = 5 +pkg syscall (windows-386), const SW_SHOWDEFAULT = 10 +pkg syscall (windows-386), const SW_SHOWMAXIMIZED = 3 +pkg syscall (windows-386), const SW_SHOWMINIMIZED = 2 +pkg syscall (windows-386), const SW_SHOWMINNOACTIVE = 7 +pkg syscall (windows-386), const SW_SHOWNA = 8 +pkg syscall (windows-386), const SW_SHOWNOACTIVATE = 4 +pkg syscall (windows-386), const SW_SHOWNORMAL = 1 +pkg syscall (windows-386), const SYNCHRONIZE = 1048576 +pkg syscall (windows-386), const S_IFMT = 126976 +pkg syscall (windows-386), const S_IWRITE = 128 +pkg syscall (windows-386), const SidTypeAlias = 4 +pkg syscall (windows-386), const SidTypeComputer = 9 +pkg syscall (windows-386), const SidTypeDeletedAccount = 6 +pkg syscall (windows-386), const SidTypeDomain = 3 +pkg syscall (windows-386), const SidTypeGroup = 2 +pkg syscall (windows-386), const SidTypeInvalid = 7 +pkg syscall (windows-386), const SidTypeLabel = 10 +pkg syscall (windows-386), const SidTypeUnknown = 8 +pkg syscall (windows-386), const SidTypeUser = 1 +pkg syscall (windows-386), const SidTypeWellKnownGroup = 5 +pkg syscall (windows-386), const TF_DISCONNECT = 1 +pkg syscall (windows-386), const TF_REUSE_SOCKET = 2 +pkg syscall (windows-386), const TF_USE_DEFAULT_WORKER = 0 +pkg syscall (windows-386), const TF_USE_KERNEL_APC = 32 +pkg syscall (windows-386), const TF_USE_SYSTEM_THREAD = 16 +pkg syscall (windows-386), const TF_WRITE_BEHIND = 4 +pkg syscall (windows-386), const TIME_ZONE_ID_DAYLIGHT = 2 +pkg syscall (windows-386), const TIME_ZONE_ID_STANDARD = 1 +pkg syscall (windows-386), const TIME_ZONE_ID_UNKNOWN = 0 +pkg syscall (windows-386), const TOKEN_ADJUST_DEFAULT = 128 +pkg syscall (windows-386), const TOKEN_ADJUST_GROUPS = 64 +pkg syscall (windows-386), const TOKEN_ADJUST_PRIVILEGES = 32 +pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983295 +pkg syscall (windows-386), const TOKEN_ASSIGN_PRIMARY = 1 +pkg syscall (windows-386), const TOKEN_DUPLICATE = 2 +pkg syscall (windows-386), const TOKEN_EXECUTE = 131072 +pkg syscall (windows-386), const TOKEN_IMPERSONATE = 4 +pkg syscall (windows-386), const TOKEN_QUERY = 8 +pkg syscall (windows-386), const TOKEN_QUERY_SOURCE = 16 +pkg syscall (windows-386), const TOKEN_READ = 131080 +pkg syscall (windows-386), const TOKEN_WRITE = 131296 +pkg syscall (windows-386), const TRUNCATE_EXISTING = 5 +pkg syscall (windows-386), const TokenAccessInformation = 22 +pkg syscall (windows-386), const TokenAuditPolicy = 16 +pkg syscall (windows-386), const TokenDefaultDacl = 6 +pkg syscall (windows-386), const TokenElevation = 20 +pkg syscall (windows-386), const TokenElevationType = 18 +pkg syscall (windows-386), const TokenGroups = 2 +pkg syscall (windows-386), const TokenGroupsAndPrivileges = 13 +pkg syscall (windows-386), const TokenHasRestrictions = 21 +pkg syscall (windows-386), const TokenImpersonationLevel = 9 +pkg syscall (windows-386), const TokenIntegrityLevel = 25 +pkg syscall (windows-386), const TokenLinkedToken = 19 +pkg syscall (windows-386), const TokenLogonSid = 28 +pkg syscall (windows-386), const TokenMandatoryPolicy = 27 +pkg syscall (windows-386), const TokenOrigin = 17 +pkg syscall (windows-386), const TokenOwner = 4 +pkg syscall (windows-386), const TokenPrimaryGroup = 5 +pkg syscall (windows-386), const TokenPrivileges = 3 +pkg syscall (windows-386), const TokenRestrictedSids = 11 +pkg syscall (windows-386), const TokenSandBoxInert = 15 +pkg syscall (windows-386), const TokenSessionId = 12 +pkg syscall (windows-386), const TokenSessionReference = 14 +pkg syscall (windows-386), const TokenSource = 7 +pkg syscall (windows-386), const TokenStatistics = 10 +pkg syscall (windows-386), const TokenType = 8 +pkg syscall (windows-386), const TokenUIAccess = 26 +pkg syscall (windows-386), const TokenUser = 1 +pkg syscall (windows-386), const TokenVirtualizationAllowed = 23 +pkg syscall (windows-386), const TokenVirtualizationEnabled = 24 +pkg syscall (windows-386), const USAGE_MATCH_TYPE_AND = 0 +pkg syscall (windows-386), const USAGE_MATCH_TYPE_OR = 1 +pkg syscall (windows-386), const WAIT_ABANDONED = 128 +pkg syscall (windows-386), const WAIT_FAILED = 4294967295 +pkg syscall (windows-386), const WAIT_OBJECT_0 = 0 +pkg syscall (windows-386), const WAIT_TIMEOUT = 258 +pkg syscall (windows-386), const WSADESCRIPTION_LEN = 256 +pkg syscall (windows-386), const WSASYS_STATUS_LEN = 128 +pkg syscall (windows-386), const X509_ASN_ENCODING = 1 +pkg syscall (windows-386), func CancelIoEx(Handle, *Overlapped) error +pkg syscall (windows-386), func ConnectEx(Handle, Sockaddr, *uint8, uint32, *uint32, *Overlapped) error +pkg syscall (windows-386), func FreeAddrInfoW(*AddrinfoW) +pkg syscall (windows-386), func GetAddrInfoW(*uint16, *uint16, *AddrinfoW, **AddrinfoW) error +pkg syscall (windows-386), func GetConsoleMode(Handle, *uint32) error +pkg syscall (windows-386), func Getsockopt(Handle, int32, int32, *uint8, *int32) error +pkg syscall (windows-386), func LoadCancelIoEx() error +pkg syscall (windows-386), func LoadConnectEx() error +pkg syscall (windows-386), func LoadGetAddrInfo() error +pkg syscall (windows-386), func ReadConsole(Handle, *uint16, uint32, *uint32, *uint8) error +pkg syscall (windows-386), func UTF16FromString(string) ([]uint16, error) +pkg syscall (windows-386), func UTF16PtrFromString(string) (*uint16, error) +pkg syscall (windows-386), func WriteConsole(Handle, *uint16, uint32, *uint32, *uint8) error +pkg syscall (windows-386), type AddrinfoW struct +pkg syscall (windows-386), type AddrinfoW struct, Addr uintptr +pkg syscall (windows-386), type AddrinfoW struct, Addrlen uintptr +pkg syscall (windows-386), type AddrinfoW struct, Canonname *uint16 +pkg syscall (windows-386), type AddrinfoW struct, Family int32 +pkg syscall (windows-386), type AddrinfoW struct, Flags int32 +pkg syscall (windows-386), type AddrinfoW struct, Next *AddrinfoW +pkg syscall (windows-386), type AddrinfoW struct, Protocol int32 +pkg syscall (windows-386), type AddrinfoW struct, Socktype int32 +pkg syscall (windows-386), type GUID struct +pkg syscall (windows-386), type GUID struct, Data1 uint32 +pkg syscall (windows-386), type GUID struct, Data2 uint16 +pkg syscall (windows-386), type GUID struct, Data3 uint16 +pkg syscall (windows-386), type GUID struct, Data4 [8]uint8 +pkg syscall (windows-386), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (windows-386), type SysProcAttr struct, CreationFlags uint32 +pkg syscall (windows-386), var WSAID_CONNECTEX GUID +pkg syscall (windows-amd64), const AF_INET6 = 23 +pkg syscall (windows-amd64), const AF_NETBIOS = 17 +pkg syscall (windows-amd64), const AI_CANONNAME = 2 +pkg syscall (windows-amd64), const AI_CANONNAME ideal-int +pkg syscall (windows-amd64), const AI_NUMERICHOST = 4 +pkg syscall (windows-amd64), const AI_NUMERICHOST ideal-int +pkg syscall (windows-amd64), const AI_PASSIVE = 1 +pkg syscall (windows-amd64), const AI_PASSIVE ideal-int +pkg syscall (windows-amd64), const APPLICATION_ERROR = 536870912 +pkg syscall (windows-amd64), const AUTHTYPE_CLIENT = 1 +pkg syscall (windows-amd64), const AUTHTYPE_SERVER = 2 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_AUTHENTICODE = 2 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_AUTHENTICODE_TS = 3 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_BASE = 1 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_EV = 8 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_MICROSOFT_ROOT = 7 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_NT_AUTH = 6 +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_SSL = 4 +pkg syscall (windows-amd64), const CERT_E_CN_NO_MATCH = 2148204815 +pkg syscall (windows-amd64), const CERT_E_EXPIRED = 2148204801 +pkg syscall (windows-amd64), const CERT_E_PURPOSE = 2148204806 +pkg syscall (windows-amd64), const CERT_E_ROLE = 2148204803 +pkg syscall (windows-amd64), const CERT_E_UNTRUSTEDROOT = 2148204809 +pkg syscall (windows-amd64), const CERT_STORE_ADD_ALWAYS = 4 +pkg syscall (windows-amd64), const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 4 +pkg syscall (windows-amd64), const CERT_STORE_PROV_MEMORY = 2 +pkg syscall (windows-amd64), const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT = 32768 +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT = 8192 +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 16384 +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT = 134217728 +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 4096 +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_BASIC_CONSTRAINTS = 1024 +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_EXTENSION = 256 +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_NAME_CONSTRAINTS = 2048 +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS = 512 +pkg syscall (windows-amd64), const CERT_TRUST_IS_CYCLIC = 128 +pkg syscall (windows-amd64), const CERT_TRUST_IS_EXPLICIT_DISTRUST = 67108864 +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_SIGNATURE_VALID = 8 +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_TIME_VALID = 1 +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_VALID_FOR_USAGE = 16 +pkg syscall (windows-amd64), const CERT_TRUST_IS_OFFLINE_REVOCATION = 16777216 +pkg syscall (windows-amd64), const CERT_TRUST_IS_REVOKED = 4 +pkg syscall (windows-amd64), const CERT_TRUST_IS_UNTRUSTED_ROOT = 32 +pkg syscall (windows-amd64), const CERT_TRUST_NO_ERROR = 0 +pkg syscall (windows-amd64), const CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY = 33554432 +pkg syscall (windows-amd64), const CERT_TRUST_REVOCATION_STATUS_UNKNOWN = 64 +pkg syscall (windows-amd64), const CREATE_ALWAYS = 2 +pkg syscall (windows-amd64), const CREATE_NEW = 1 +pkg syscall (windows-amd64), const CREATE_NEW_PROCESS_GROUP = 512 +pkg syscall (windows-amd64), const CREATE_NEW_PROCESS_GROUP ideal-int +pkg syscall (windows-amd64), const CREATE_UNICODE_ENVIRONMENT = 1024 +pkg syscall (windows-amd64), const CRYPT_DEFAULT_CONTAINER_OPTIONAL = 128 +pkg syscall (windows-amd64), const CRYPT_DELETEKEYSET = 16 +pkg syscall (windows-amd64), const CRYPT_MACHINE_KEYSET = 32 +pkg syscall (windows-amd64), const CRYPT_NEWKEYSET = 8 +pkg syscall (windows-amd64), const CRYPT_SILENT = 64 +pkg syscall (windows-amd64), const CRYPT_VERIFYCONTEXT = 4026531840 +pkg syscall (windows-amd64), const CTRL_BREAK_EVENT = 1 +pkg syscall (windows-amd64), const CTRL_BREAK_EVENT ideal-int +pkg syscall (windows-amd64), const CTRL_C_EVENT = 0 +pkg syscall (windows-amd64), const CTRL_C_EVENT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_A = 1 +pkg syscall (windows-amd64), const DNS_TYPE_A6 = 38 +pkg syscall (windows-amd64), const DNS_TYPE_AAAA = 28 +pkg syscall (windows-amd64), const DNS_TYPE_ADDRS = 248 +pkg syscall (windows-amd64), const DNS_TYPE_AFSDB = 18 +pkg syscall (windows-amd64), const DNS_TYPE_ALL = 255 +pkg syscall (windows-amd64), const DNS_TYPE_ANY = 255 +pkg syscall (windows-amd64), const DNS_TYPE_ATMA = 34 +pkg syscall (windows-amd64), const DNS_TYPE_AXFR = 252 +pkg syscall (windows-amd64), const DNS_TYPE_CERT = 37 +pkg syscall (windows-amd64), const DNS_TYPE_CNAME = 5 +pkg syscall (windows-amd64), const DNS_TYPE_DHCID = 49 +pkg syscall (windows-amd64), const DNS_TYPE_DNAME = 39 +pkg syscall (windows-amd64), const DNS_TYPE_DNSKEY = 48 +pkg syscall (windows-amd64), const DNS_TYPE_DS = 43 +pkg syscall (windows-amd64), const DNS_TYPE_EID = 31 +pkg syscall (windows-amd64), const DNS_TYPE_GID = 102 +pkg syscall (windows-amd64), const DNS_TYPE_GPOS = 27 +pkg syscall (windows-amd64), const DNS_TYPE_HINFO = 13 +pkg syscall (windows-amd64), const DNS_TYPE_ISDN = 20 +pkg syscall (windows-amd64), const DNS_TYPE_IXFR = 251 +pkg syscall (windows-amd64), const DNS_TYPE_KEY = 25 +pkg syscall (windows-amd64), const DNS_TYPE_KX = 36 +pkg syscall (windows-amd64), const DNS_TYPE_LOC = 29 +pkg syscall (windows-amd64), const DNS_TYPE_MAILA = 254 +pkg syscall (windows-amd64), const DNS_TYPE_MAILB = 253 +pkg syscall (windows-amd64), const DNS_TYPE_MB = 7 +pkg syscall (windows-amd64), const DNS_TYPE_MD = 3 +pkg syscall (windows-amd64), const DNS_TYPE_MF = 4 +pkg syscall (windows-amd64), const DNS_TYPE_MG = 8 +pkg syscall (windows-amd64), const DNS_TYPE_MINFO = 14 +pkg syscall (windows-amd64), const DNS_TYPE_MR = 9 +pkg syscall (windows-amd64), const DNS_TYPE_MX = 15 +pkg syscall (windows-amd64), const DNS_TYPE_NAPTR = 35 +pkg syscall (windows-amd64), const DNS_TYPE_NBSTAT = 65281 +pkg syscall (windows-amd64), const DNS_TYPE_NIMLOC = 32 +pkg syscall (windows-amd64), const DNS_TYPE_NS = 2 +pkg syscall (windows-amd64), const DNS_TYPE_NSAP = 22 +pkg syscall (windows-amd64), const DNS_TYPE_NSAPPTR = 23 +pkg syscall (windows-amd64), const DNS_TYPE_NSEC = 47 +pkg syscall (windows-amd64), const DNS_TYPE_NULL = 10 +pkg syscall (windows-amd64), const DNS_TYPE_NXT = 30 +pkg syscall (windows-amd64), const DNS_TYPE_OPT = 41 +pkg syscall (windows-amd64), const DNS_TYPE_PTR = 12 +pkg syscall (windows-amd64), const DNS_TYPE_PX = 26 +pkg syscall (windows-amd64), const DNS_TYPE_RP = 17 +pkg syscall (windows-amd64), const DNS_TYPE_RRSIG = 46 +pkg syscall (windows-amd64), const DNS_TYPE_RT = 21 +pkg syscall (windows-amd64), const DNS_TYPE_SIG = 24 +pkg syscall (windows-amd64), const DNS_TYPE_SINK = 40 +pkg syscall (windows-amd64), const DNS_TYPE_SOA = 6 +pkg syscall (windows-amd64), const DNS_TYPE_SRV = 33 +pkg syscall (windows-amd64), const DNS_TYPE_TEXT = 16 +pkg syscall (windows-amd64), const DNS_TYPE_TKEY = 249 +pkg syscall (windows-amd64), const DNS_TYPE_TSIG = 250 +pkg syscall (windows-amd64), const DNS_TYPE_UID = 101 +pkg syscall (windows-amd64), const DNS_TYPE_UINFO = 100 +pkg syscall (windows-amd64), const DNS_TYPE_UNSPEC = 103 +pkg syscall (windows-amd64), const DNS_TYPE_WINS = 65281 +pkg syscall (windows-amd64), const DNS_TYPE_WINSR = 65282 +pkg syscall (windows-amd64), const DNS_TYPE_WKS = 11 +pkg syscall (windows-amd64), const DNS_TYPE_X25 = 19 +pkg syscall (windows-amd64), const DUPLICATE_CLOSE_SOURCE = 1 +pkg syscall (windows-amd64), const DUPLICATE_SAME_ACCESS = 2 +pkg syscall (windows-amd64), const E2BIG = 536870912 +pkg syscall (windows-amd64), const EACCES = 536870913 +pkg syscall (windows-amd64), const EADDRINUSE = 536870914 +pkg syscall (windows-amd64), const EADDRNOTAVAIL = 536870915 +pkg syscall (windows-amd64), const EADV = 536870916 +pkg syscall (windows-amd64), const EAFNOSUPPORT = 536870917 +pkg syscall (windows-amd64), const EAGAIN = 536870918 +pkg syscall (windows-amd64), const EALREADY = 536870919 +pkg syscall (windows-amd64), const EBADE = 536870920 +pkg syscall (windows-amd64), const EBADF = 536870921 +pkg syscall (windows-amd64), const EBADFD = 536870922 +pkg syscall (windows-amd64), const EBADMSG = 536870923 +pkg syscall (windows-amd64), const EBADR = 536870924 +pkg syscall (windows-amd64), const EBADRQC = 536870925 +pkg syscall (windows-amd64), const EBADSLT = 536870926 +pkg syscall (windows-amd64), const EBFONT = 536870927 +pkg syscall (windows-amd64), const EBUSY = 536870928 +pkg syscall (windows-amd64), const ECANCELED = 536870929 +pkg syscall (windows-amd64), const ECHILD = 536870930 +pkg syscall (windows-amd64), const ECHRNG = 536870931 +pkg syscall (windows-amd64), const ECOMM = 536870932 +pkg syscall (windows-amd64), const ECONNABORTED = 536870933 +pkg syscall (windows-amd64), const ECONNREFUSED = 536870934 +pkg syscall (windows-amd64), const ECONNRESET = 536870935 +pkg syscall (windows-amd64), const EDEADLK = 536870936 +pkg syscall (windows-amd64), const EDEADLOCK = 536870937 +pkg syscall (windows-amd64), const EDESTADDRREQ = 536870938 +pkg syscall (windows-amd64), const EDOM = 536870939 +pkg syscall (windows-amd64), const EDOTDOT = 536870940 +pkg syscall (windows-amd64), const EDQUOT = 536870941 +pkg syscall (windows-amd64), const EEXIST = 536870942 +pkg syscall (windows-amd64), const EFAULT = 536870943 +pkg syscall (windows-amd64), const EFBIG = 536870944 +pkg syscall (windows-amd64), const EHOSTDOWN = 536870945 +pkg syscall (windows-amd64), const EHOSTUNREACH = 536870946 +pkg syscall (windows-amd64), const EIDRM = 536870947 +pkg syscall (windows-amd64), const EILSEQ = 536870948 +pkg syscall (windows-amd64), const EINPROGRESS = 536870949 +pkg syscall (windows-amd64), const EINTR = 536870950 +pkg syscall (windows-amd64), const EINVAL = 536870951 +pkg syscall (windows-amd64), const EIO = 536870952 +pkg syscall (windows-amd64), const EISCONN = 536870953 +pkg syscall (windows-amd64), const EISDIR = 536870954 +pkg syscall (windows-amd64), const EISNAM = 536870955 +pkg syscall (windows-amd64), const EKEYEXPIRED = 536870956 +pkg syscall (windows-amd64), const EKEYREJECTED = 536870957 +pkg syscall (windows-amd64), const EKEYREVOKED = 536870958 +pkg syscall (windows-amd64), const EL2HLT = 536870959 +pkg syscall (windows-amd64), const EL2NSYNC = 536870960 +pkg syscall (windows-amd64), const EL3HLT = 536870961 +pkg syscall (windows-amd64), const EL3RST = 536870962 +pkg syscall (windows-amd64), const ELIBACC = 536870963 +pkg syscall (windows-amd64), const ELIBBAD = 536870964 +pkg syscall (windows-amd64), const ELIBEXEC = 536870965 +pkg syscall (windows-amd64), const ELIBMAX = 536870966 +pkg syscall (windows-amd64), const ELIBSCN = 536870967 +pkg syscall (windows-amd64), const ELNRNG = 536870968 +pkg syscall (windows-amd64), const ELOOP = 536870969 +pkg syscall (windows-amd64), const EMEDIUMTYPE = 536870970 +pkg syscall (windows-amd64), const EMFILE = 536870971 +pkg syscall (windows-amd64), const EMLINK = 536870972 +pkg syscall (windows-amd64), const EMSGSIZE = 536870973 +pkg syscall (windows-amd64), const EMULTIHOP = 536870974 +pkg syscall (windows-amd64), const ENAMETOOLONG = 536870975 +pkg syscall (windows-amd64), const ENAVAIL = 536870976 +pkg syscall (windows-amd64), const ENETDOWN = 536870977 +pkg syscall (windows-amd64), const ENETRESET = 536870978 +pkg syscall (windows-amd64), const ENETUNREACH = 536870979 +pkg syscall (windows-amd64), const ENFILE = 536870980 +pkg syscall (windows-amd64), const ENOANO = 536870981 +pkg syscall (windows-amd64), const ENOBUFS = 536870982 +pkg syscall (windows-amd64), const ENOCSI = 536870983 +pkg syscall (windows-amd64), const ENODATA = 536870984 +pkg syscall (windows-amd64), const ENODEV = 536870985 +pkg syscall (windows-amd64), const ENOEXEC = 536870986 +pkg syscall (windows-amd64), const ENOKEY = 536870987 +pkg syscall (windows-amd64), const ENOLCK = 536870988 +pkg syscall (windows-amd64), const ENOLINK = 536870989 +pkg syscall (windows-amd64), const ENOMEDIUM = 536870990 +pkg syscall (windows-amd64), const ENOMEM = 536870991 +pkg syscall (windows-amd64), const ENOMSG = 536870992 +pkg syscall (windows-amd64), const ENONET = 536870993 +pkg syscall (windows-amd64), const ENOPKG = 536870994 +pkg syscall (windows-amd64), const ENOPROTOOPT = 536870995 +pkg syscall (windows-amd64), const ENOSPC = 536870996 +pkg syscall (windows-amd64), const ENOSR = 536870997 +pkg syscall (windows-amd64), const ENOSTR = 536870998 +pkg syscall (windows-amd64), const ENOSYS = 536870999 +pkg syscall (windows-amd64), const ENOTBLK = 536871000 +pkg syscall (windows-amd64), const ENOTCONN = 536871001 +pkg syscall (windows-amd64), const ENOTDIR = 3 +pkg syscall (windows-amd64), const ENOTEMPTY = 536871002 +pkg syscall (windows-amd64), const ENOTNAM = 536871003 +pkg syscall (windows-amd64), const ENOTRECOVERABLE = 536871004 +pkg syscall (windows-amd64), const ENOTSOCK = 536871005 +pkg syscall (windows-amd64), const ENOTSUP = 536871006 +pkg syscall (windows-amd64), const ENOTTY = 536871007 +pkg syscall (windows-amd64), const ENOTUNIQ = 536871008 +pkg syscall (windows-amd64), const ENXIO = 536871009 +pkg syscall (windows-amd64), const EOPNOTSUPP = 536871010 +pkg syscall (windows-amd64), const EOVERFLOW = 536871011 +pkg syscall (windows-amd64), const EOWNERDEAD = 536871012 +pkg syscall (windows-amd64), const EPERM = 536871013 +pkg syscall (windows-amd64), const EPFNOSUPPORT = 536871014 +pkg syscall (windows-amd64), const EPIPE = 536871015 +pkg syscall (windows-amd64), const EPROTO = 536871016 +pkg syscall (windows-amd64), const EPROTONOSUPPORT = 536871017 +pkg syscall (windows-amd64), const EPROTOTYPE = 536871018 +pkg syscall (windows-amd64), const ERANGE = 536871019 +pkg syscall (windows-amd64), const EREMCHG = 536871020 +pkg syscall (windows-amd64), const EREMOTE = 536871021 +pkg syscall (windows-amd64), const EREMOTEIO = 536871022 +pkg syscall (windows-amd64), const ERESTART = 536871023 +pkg syscall (windows-amd64), const EROFS = 536871024 +pkg syscall (windows-amd64), const ERROR_ACCESS_DENIED = 5 +pkg syscall (windows-amd64), const ERROR_ALREADY_EXISTS = 183 +pkg syscall (windows-amd64), const ERROR_BROKEN_PIPE = 109 +pkg syscall (windows-amd64), const ERROR_BUFFER_OVERFLOW = 111 +pkg syscall (windows-amd64), const ERROR_ENVVAR_NOT_FOUND = 203 +pkg syscall (windows-amd64), const ERROR_FILE_EXISTS = 80 +pkg syscall (windows-amd64), const ERROR_FILE_NOT_FOUND = 2 +pkg syscall (windows-amd64), const ERROR_INSUFFICIENT_BUFFER = 122 +pkg syscall (windows-amd64), const ERROR_IO_PENDING = 997 +pkg syscall (windows-amd64), const ERROR_MOD_NOT_FOUND = 126 +pkg syscall (windows-amd64), const ERROR_NOT_FOUND = 1168 +pkg syscall (windows-amd64), const ERROR_NOT_FOUND Errno +pkg syscall (windows-amd64), const ERROR_NO_MORE_FILES = 18 +pkg syscall (windows-amd64), const ERROR_OPERATION_ABORTED = 995 +pkg syscall (windows-amd64), const ERROR_PATH_NOT_FOUND = 3 +pkg syscall (windows-amd64), const ERROR_PROC_NOT_FOUND = 127 +pkg syscall (windows-amd64), const ESHUTDOWN = 536871025 +pkg syscall (windows-amd64), const ESOCKTNOSUPPORT = 536871026 +pkg syscall (windows-amd64), const ESPIPE = 536871027 +pkg syscall (windows-amd64), const ESRCH = 536871028 +pkg syscall (windows-amd64), const ESRMNT = 536871029 +pkg syscall (windows-amd64), const ESTALE = 536871030 +pkg syscall (windows-amd64), const ESTRPIPE = 536871031 +pkg syscall (windows-amd64), const ETIME = 536871032 +pkg syscall (windows-amd64), const ETIMEDOUT = 536871033 +pkg syscall (windows-amd64), const ETOOMANYREFS = 536871034 +pkg syscall (windows-amd64), const ETXTBSY = 536871035 +pkg syscall (windows-amd64), const EUCLEAN = 536871036 +pkg syscall (windows-amd64), const EUNATCH = 536871037 +pkg syscall (windows-amd64), const EUSERS = 536871038 +pkg syscall (windows-amd64), const EWINDOWS = 536871042 +pkg syscall (windows-amd64), const EWOULDBLOCK = 536871039 +pkg syscall (windows-amd64), const EXDEV = 536871040 +pkg syscall (windows-amd64), const EXFULL = 536871041 +pkg syscall (windows-amd64), const FILE_ACTION_ADDED = 1 +pkg syscall (windows-amd64), const FILE_ACTION_MODIFIED = 3 +pkg syscall (windows-amd64), const FILE_ACTION_REMOVED = 2 +pkg syscall (windows-amd64), const FILE_ACTION_RENAMED_NEW_NAME = 5 +pkg syscall (windows-amd64), const FILE_ACTION_RENAMED_OLD_NAME = 4 +pkg syscall (windows-amd64), const FILE_APPEND_DATA = 4 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_ARCHIVE = 32 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_DIRECTORY = 16 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_HIDDEN = 2 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_NORMAL = 128 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_READONLY = 1 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_SYSTEM = 4 +pkg syscall (windows-amd64), const FILE_BEGIN = 0 +pkg syscall (windows-amd64), const FILE_CURRENT = 1 +pkg syscall (windows-amd64), const FILE_END = 2 +pkg syscall (windows-amd64), const FILE_FLAG_BACKUP_SEMANTICS = 33554432 +pkg syscall (windows-amd64), const FILE_FLAG_OVERLAPPED = 1073741824 +pkg syscall (windows-amd64), const FILE_LIST_DIRECTORY = 1 +pkg syscall (windows-amd64), const FILE_MAP_COPY = 1 +pkg syscall (windows-amd64), const FILE_MAP_EXECUTE = 32 +pkg syscall (windows-amd64), const FILE_MAP_READ = 4 +pkg syscall (windows-amd64), const FILE_MAP_WRITE = 2 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_ATTRIBUTES = 4 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_CREATION = 64 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_DIR_NAME = 2 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_FILE_NAME = 1 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_LAST_ACCESS = 32 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_LAST_WRITE = 16 +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_SIZE = 8 +pkg syscall (windows-amd64), const FILE_SHARE_DELETE = 4 +pkg syscall (windows-amd64), const FILE_SHARE_READ = 1 +pkg syscall (windows-amd64), const FILE_SHARE_WRITE = 2 +pkg syscall (windows-amd64), const FILE_TYPE_CHAR = 2 +pkg syscall (windows-amd64), const FILE_TYPE_DISK = 1 +pkg syscall (windows-amd64), const FILE_TYPE_PIPE = 3 +pkg syscall (windows-amd64), const FILE_TYPE_REMOTE = 32768 +pkg syscall (windows-amd64), const FILE_TYPE_UNKNOWN = 0 +pkg syscall (windows-amd64), const FILE_WRITE_ATTRIBUTES = 256 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_ALLOCATE_BUFFER = 256 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_HMODULE = 2048 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_STRING = 1024 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_SYSTEM = 4096 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_IGNORE_INSERTS = 512 +pkg syscall (windows-amd64), const FORMAT_MESSAGE_MAX_WIDTH_MASK = 255 +pkg syscall (windows-amd64), const GENERIC_ALL = 268435456 +pkg syscall (windows-amd64), const GENERIC_EXECUTE = 536870912 +pkg syscall (windows-amd64), const GENERIC_READ = 2147483648 +pkg syscall (windows-amd64), const GENERIC_WRITE = 1073741824 +pkg syscall (windows-amd64), const GetFileExInfoStandard = 0 +pkg syscall (windows-amd64), const GetFileExMaxInfoLevel = 1 +pkg syscall (windows-amd64), const HANDLE_FLAG_INHERIT = 1 +pkg syscall (windows-amd64), const HKEY_CLASSES_ROOT = 2147483648 +pkg syscall (windows-amd64), const HKEY_CURRENT_CONFIG = 2147483653 +pkg syscall (windows-amd64), const HKEY_CURRENT_USER = 2147483649 +pkg syscall (windows-amd64), const HKEY_DYN_DATA = 2147483654 +pkg syscall (windows-amd64), const HKEY_LOCAL_MACHINE = 2147483650 +pkg syscall (windows-amd64), const HKEY_PERFORMANCE_DATA = 2147483652 +pkg syscall (windows-amd64), const HKEY_USERS = 2147483651 +pkg syscall (windows-amd64), const IFF_LOOPBACK = 4 +pkg syscall (windows-amd64), const IFF_MULTICAST = 16 +pkg syscall (windows-amd64), const IFF_POINTTOPOINT = 8 +pkg syscall (windows-amd64), const IGNORE = 0 +pkg syscall (windows-amd64), const INFINITE = 4294967295 +pkg syscall (windows-amd64), const INVALID_FILE_ATTRIBUTES = 4294967295 +pkg syscall (windows-amd64), const IOC_IN = 2147483648 +pkg syscall (windows-amd64), const IOC_IN ideal-int +pkg syscall (windows-amd64), const IOC_INOUT = 3221225472 +pkg syscall (windows-amd64), const IOC_INOUT ideal-int +pkg syscall (windows-amd64), const IOC_OUT = 1073741824 +pkg syscall (windows-amd64), const IOC_OUT ideal-int +pkg syscall (windows-amd64), const IOC_WS2 = 134217728 +pkg syscall (windows-amd64), const IOC_WS2 ideal-int +pkg syscall (windows-amd64), const IPV6_JOIN_GROUP = 12 +pkg syscall (windows-amd64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (windows-amd64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (windows-amd64), const IPV6_MULTICAST_IF = 9 +pkg syscall (windows-amd64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (windows-amd64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (windows-amd64), const IPV6_V6ONLY = 27 +pkg syscall (windows-amd64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (windows-amd64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (windows-amd64), const IP_MULTICAST_IF = 9 +pkg syscall (windows-amd64), const IP_MULTICAST_LOOP = 11 +pkg syscall (windows-amd64), const IP_MULTICAST_TTL = 10 +pkg syscall (windows-amd64), const IP_TOS = 3 +pkg syscall (windows-amd64), const IP_TTL = 4 +pkg syscall (windows-amd64), const ImplementsGetwd = true +pkg syscall (windows-amd64), const InvalidHandle = 18446744073709551615 +pkg syscall (windows-amd64), const KEY_ALL_ACCESS = 983103 +pkg syscall (windows-amd64), const KEY_CREATE_LINK = 32 +pkg syscall (windows-amd64), const KEY_CREATE_SUB_KEY = 4 +pkg syscall (windows-amd64), const KEY_ENUMERATE_SUB_KEYS = 8 +pkg syscall (windows-amd64), const KEY_EXECUTE = 131097 +pkg syscall (windows-amd64), const KEY_NOTIFY = 16 +pkg syscall (windows-amd64), const KEY_QUERY_VALUE = 1 +pkg syscall (windows-amd64), const KEY_READ = 131097 +pkg syscall (windows-amd64), const KEY_SET_VALUE = 2 +pkg syscall (windows-amd64), const KEY_WOW64_32KEY = 512 +pkg syscall (windows-amd64), const KEY_WOW64_64KEY = 256 +pkg syscall (windows-amd64), const KEY_WRITE = 131078 +pkg syscall (windows-amd64), const LANG_ENGLISH = 9 +pkg syscall (windows-amd64), const MAXLEN_IFDESCR = 256 +pkg syscall (windows-amd64), const MAXLEN_PHYSADDR = 8 +pkg syscall (windows-amd64), const MAX_ADAPTER_ADDRESS_LENGTH = 8 +pkg syscall (windows-amd64), const MAX_ADAPTER_DESCRIPTION_LENGTH = 128 +pkg syscall (windows-amd64), const MAX_ADAPTER_NAME_LENGTH = 256 +pkg syscall (windows-amd64), const MAX_COMPUTERNAME_LENGTH = 15 +pkg syscall (windows-amd64), const MAX_INTERFACE_NAME_LEN = 256 +pkg syscall (windows-amd64), const MAX_LONG_PATH = 32768 +pkg syscall (windows-amd64), const MAX_PATH = 260 +pkg syscall (windows-amd64), const MaxTokenInfoClass = 29 +pkg syscall (windows-amd64), const NameCanonical = 7 +pkg syscall (windows-amd64), const NameCanonicalEx = 9 +pkg syscall (windows-amd64), const NameDisplay = 3 +pkg syscall (windows-amd64), const NameDnsDomain = 12 +pkg syscall (windows-amd64), const NameFullyQualifiedDN = 1 +pkg syscall (windows-amd64), const NameSamCompatible = 2 +pkg syscall (windows-amd64), const NameServicePrincipal = 10 +pkg syscall (windows-amd64), const NameUniqueId = 6 +pkg syscall (windows-amd64), const NameUnknown = 0 +pkg syscall (windows-amd64), const NameUserPrincipal = 8 +pkg syscall (windows-amd64), const OPEN_ALWAYS = 4 +pkg syscall (windows-amd64), const OPEN_EXISTING = 3 +pkg syscall (windows-amd64), const O_APPEND = 1024 +pkg syscall (windows-amd64), const O_ASYNC = 8192 +pkg syscall (windows-amd64), const O_CLOEXEC = 524288 +pkg syscall (windows-amd64), const O_CREAT = 64 +pkg syscall (windows-amd64), const O_EXCL = 128 +pkg syscall (windows-amd64), const O_NOCTTY = 256 +pkg syscall (windows-amd64), const O_NONBLOCK = 2048 +pkg syscall (windows-amd64), const O_SYNC = 4096 +pkg syscall (windows-amd64), const O_TRUNC = 512 +pkg syscall (windows-amd64), const PAGE_EXECUTE_READ = 32 +pkg syscall (windows-amd64), const PAGE_EXECUTE_READWRITE = 64 +pkg syscall (windows-amd64), const PAGE_EXECUTE_WRITECOPY = 128 +pkg syscall (windows-amd64), const PAGE_READONLY = 2 +pkg syscall (windows-amd64), const PAGE_READWRITE = 4 +pkg syscall (windows-amd64), const PAGE_WRITECOPY = 8 +pkg syscall (windows-amd64), const PKCS_7_ASN_ENCODING = 65536 +pkg syscall (windows-amd64), const PROCESS_QUERY_INFORMATION = 1024 +pkg syscall (windows-amd64), const PROV_DH_SCHANNEL = 18 +pkg syscall (windows-amd64), const PROV_DSS = 3 +pkg syscall (windows-amd64), const PROV_DSS_DH = 13 +pkg syscall (windows-amd64), const PROV_EC_ECDSA_FULL = 16 +pkg syscall (windows-amd64), const PROV_EC_ECDSA_SIG = 14 +pkg syscall (windows-amd64), const PROV_EC_ECNRA_FULL = 17 +pkg syscall (windows-amd64), const PROV_EC_ECNRA_SIG = 15 +pkg syscall (windows-amd64), const PROV_FORTEZZA = 4 +pkg syscall (windows-amd64), const PROV_INTEL_SEC = 22 +pkg syscall (windows-amd64), const PROV_MS_EXCHANGE = 5 +pkg syscall (windows-amd64), const PROV_REPLACE_OWF = 23 +pkg syscall (windows-amd64), const PROV_RNG = 21 +pkg syscall (windows-amd64), const PROV_RSA_AES = 24 +pkg syscall (windows-amd64), const PROV_RSA_FULL = 1 +pkg syscall (windows-amd64), const PROV_RSA_SCHANNEL = 12 +pkg syscall (windows-amd64), const PROV_RSA_SIG = 2 +pkg syscall (windows-amd64), const PROV_SPYRUS_LYNKS = 20 +pkg syscall (windows-amd64), const PROV_SSL = 6 +pkg syscall (windows-amd64), const REG_BINARY = 3 +pkg syscall (windows-amd64), const REG_DWORD = 4 +pkg syscall (windows-amd64), const REG_DWORD_BIG_ENDIAN = 5 +pkg syscall (windows-amd64), const REG_DWORD_LITTLE_ENDIAN = 4 +pkg syscall (windows-amd64), const REG_EXPAND_SZ = 2 +pkg syscall (windows-amd64), const REG_FULL_RESOURCE_DESCRIPTOR = 9 +pkg syscall (windows-amd64), const REG_LINK = 6 +pkg syscall (windows-amd64), const REG_MULTI_SZ = 7 +pkg syscall (windows-amd64), const REG_NONE = 0 +pkg syscall (windows-amd64), const REG_QWORD = 11 +pkg syscall (windows-amd64), const REG_QWORD_LITTLE_ENDIAN = 11 +pkg syscall (windows-amd64), const REG_RESOURCE_LIST = 8 +pkg syscall (windows-amd64), const REG_RESOURCE_REQUIREMENTS_LIST = 10 +pkg syscall (windows-amd64), const REG_SZ = 1 +pkg syscall (windows-amd64), const SIGBUS = 7 +pkg syscall (windows-amd64), const SIO_GET_EXTENSION_FUNCTION_POINTER = 3355443206 +pkg syscall (windows-amd64), const SIO_GET_EXTENSION_FUNCTION_POINTER ideal-int +pkg syscall (windows-amd64), const SIO_GET_INTERFACE_LIST = 1074033791 +pkg syscall (windows-amd64), const SOL_SOCKET = 65535 +pkg syscall (windows-amd64), const SOMAXCONN = 2147483647 +pkg syscall (windows-amd64), const SO_BROADCAST = 32 +pkg syscall (windows-amd64), const SO_DONTROUTE = 16 +pkg syscall (windows-amd64), const SO_KEEPALIVE = 8 +pkg syscall (windows-amd64), const SO_LINGER = 128 +pkg syscall (windows-amd64), const SO_RCVBUF = 4098 +pkg syscall (windows-amd64), const SO_REUSEADDR = 4 +pkg syscall (windows-amd64), const SO_SNDBUF = 4097 +pkg syscall (windows-amd64), const SO_UPDATE_ACCEPT_CONTEXT = 28683 +pkg syscall (windows-amd64), const SO_UPDATE_CONNECT_CONTEXT = 28688 +pkg syscall (windows-amd64), const SO_UPDATE_CONNECT_CONTEXT ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_ALL = 2031616 +pkg syscall (windows-amd64), const STANDARD_RIGHTS_EXECUTE = 131072 +pkg syscall (windows-amd64), const STANDARD_RIGHTS_READ = 131072 +pkg syscall (windows-amd64), const STANDARD_RIGHTS_REQUIRED = 983040 +pkg syscall (windows-amd64), const STANDARD_RIGHTS_WRITE = 131072 +pkg syscall (windows-amd64), const STARTF_USESHOWWINDOW = 1 +pkg syscall (windows-amd64), const STARTF_USESTDHANDLES = 256 +pkg syscall (windows-amd64), const STD_ERROR_HANDLE = -12 +pkg syscall (windows-amd64), const STD_INPUT_HANDLE = -10 +pkg syscall (windows-amd64), const STD_OUTPUT_HANDLE = -11 +pkg syscall (windows-amd64), const SUBLANG_ENGLISH_US = 1 +pkg syscall (windows-amd64), const SW_FORCEMINIMIZE = 11 +pkg syscall (windows-amd64), const SW_HIDE = 0 +pkg syscall (windows-amd64), const SW_MAXIMIZE = 3 +pkg syscall (windows-amd64), const SW_MINIMIZE = 6 +pkg syscall (windows-amd64), const SW_NORMAL = 1 +pkg syscall (windows-amd64), const SW_RESTORE = 9 +pkg syscall (windows-amd64), const SW_SHOW = 5 +pkg syscall (windows-amd64), const SW_SHOWDEFAULT = 10 +pkg syscall (windows-amd64), const SW_SHOWMAXIMIZED = 3 +pkg syscall (windows-amd64), const SW_SHOWMINIMIZED = 2 +pkg syscall (windows-amd64), const SW_SHOWMINNOACTIVE = 7 +pkg syscall (windows-amd64), const SW_SHOWNA = 8 +pkg syscall (windows-amd64), const SW_SHOWNOACTIVATE = 4 +pkg syscall (windows-amd64), const SW_SHOWNORMAL = 1 +pkg syscall (windows-amd64), const SYNCHRONIZE = 1048576 +pkg syscall (windows-amd64), const S_IFMT = 126976 +pkg syscall (windows-amd64), const S_IWRITE = 128 +pkg syscall (windows-amd64), const SidTypeAlias = 4 +pkg syscall (windows-amd64), const SidTypeComputer = 9 +pkg syscall (windows-amd64), const SidTypeDeletedAccount = 6 +pkg syscall (windows-amd64), const SidTypeDomain = 3 +pkg syscall (windows-amd64), const SidTypeGroup = 2 +pkg syscall (windows-amd64), const SidTypeInvalid = 7 +pkg syscall (windows-amd64), const SidTypeLabel = 10 +pkg syscall (windows-amd64), const SidTypeUnknown = 8 +pkg syscall (windows-amd64), const SidTypeUser = 1 +pkg syscall (windows-amd64), const SidTypeWellKnownGroup = 5 +pkg syscall (windows-amd64), const TF_DISCONNECT = 1 +pkg syscall (windows-amd64), const TF_REUSE_SOCKET = 2 +pkg syscall (windows-amd64), const TF_USE_DEFAULT_WORKER = 0 +pkg syscall (windows-amd64), const TF_USE_KERNEL_APC = 32 +pkg syscall (windows-amd64), const TF_USE_SYSTEM_THREAD = 16 +pkg syscall (windows-amd64), const TF_WRITE_BEHIND = 4 +pkg syscall (windows-amd64), const TIME_ZONE_ID_DAYLIGHT = 2 +pkg syscall (windows-amd64), const TIME_ZONE_ID_STANDARD = 1 +pkg syscall (windows-amd64), const TIME_ZONE_ID_UNKNOWN = 0 +pkg syscall (windows-amd64), const TOKEN_ADJUST_DEFAULT = 128 +pkg syscall (windows-amd64), const TOKEN_ADJUST_GROUPS = 64 +pkg syscall (windows-amd64), const TOKEN_ADJUST_PRIVILEGES = 32 +pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS = 983295 +pkg syscall (windows-amd64), const TOKEN_ASSIGN_PRIMARY = 1 +pkg syscall (windows-amd64), const TOKEN_DUPLICATE = 2 +pkg syscall (windows-amd64), const TOKEN_EXECUTE = 131072 +pkg syscall (windows-amd64), const TOKEN_IMPERSONATE = 4 +pkg syscall (windows-amd64), const TOKEN_QUERY = 8 +pkg syscall (windows-amd64), const TOKEN_QUERY_SOURCE = 16 +pkg syscall (windows-amd64), const TOKEN_READ = 131080 +pkg syscall (windows-amd64), const TOKEN_WRITE = 131296 +pkg syscall (windows-amd64), const TRUNCATE_EXISTING = 5 +pkg syscall (windows-amd64), const TokenAccessInformation = 22 +pkg syscall (windows-amd64), const TokenAuditPolicy = 16 +pkg syscall (windows-amd64), const TokenDefaultDacl = 6 +pkg syscall (windows-amd64), const TokenElevation = 20 +pkg syscall (windows-amd64), const TokenElevationType = 18 +pkg syscall (windows-amd64), const TokenGroups = 2 +pkg syscall (windows-amd64), const TokenGroupsAndPrivileges = 13 +pkg syscall (windows-amd64), const TokenHasRestrictions = 21 +pkg syscall (windows-amd64), const TokenImpersonationLevel = 9 +pkg syscall (windows-amd64), const TokenIntegrityLevel = 25 +pkg syscall (windows-amd64), const TokenLinkedToken = 19 +pkg syscall (windows-amd64), const TokenLogonSid = 28 +pkg syscall (windows-amd64), const TokenMandatoryPolicy = 27 +pkg syscall (windows-amd64), const TokenOrigin = 17 +pkg syscall (windows-amd64), const TokenOwner = 4 +pkg syscall (windows-amd64), const TokenPrimaryGroup = 5 +pkg syscall (windows-amd64), const TokenPrivileges = 3 +pkg syscall (windows-amd64), const TokenRestrictedSids = 11 +pkg syscall (windows-amd64), const TokenSandBoxInert = 15 +pkg syscall (windows-amd64), const TokenSessionId = 12 +pkg syscall (windows-amd64), const TokenSessionReference = 14 +pkg syscall (windows-amd64), const TokenSource = 7 +pkg syscall (windows-amd64), const TokenStatistics = 10 +pkg syscall (windows-amd64), const TokenType = 8 +pkg syscall (windows-amd64), const TokenUIAccess = 26 +pkg syscall (windows-amd64), const TokenUser = 1 +pkg syscall (windows-amd64), const TokenVirtualizationAllowed = 23 +pkg syscall (windows-amd64), const TokenVirtualizationEnabled = 24 +pkg syscall (windows-amd64), const USAGE_MATCH_TYPE_AND = 0 +pkg syscall (windows-amd64), const USAGE_MATCH_TYPE_OR = 1 +pkg syscall (windows-amd64), const WAIT_ABANDONED = 128 +pkg syscall (windows-amd64), const WAIT_FAILED = 4294967295 +pkg syscall (windows-amd64), const WAIT_OBJECT_0 = 0 +pkg syscall (windows-amd64), const WAIT_TIMEOUT = 258 +pkg syscall (windows-amd64), const WSADESCRIPTION_LEN = 256 +pkg syscall (windows-amd64), const WSASYS_STATUS_LEN = 128 +pkg syscall (windows-amd64), const X509_ASN_ENCODING = 1 +pkg syscall (windows-amd64), func CancelIoEx(Handle, *Overlapped) error +pkg syscall (windows-amd64), func ConnectEx(Handle, Sockaddr, *uint8, uint32, *uint32, *Overlapped) error +pkg syscall (windows-amd64), func FreeAddrInfoW(*AddrinfoW) +pkg syscall (windows-amd64), func GetAddrInfoW(*uint16, *uint16, *AddrinfoW, **AddrinfoW) error +pkg syscall (windows-amd64), func GetConsoleMode(Handle, *uint32) error +pkg syscall (windows-amd64), func Getsockopt(Handle, int32, int32, *uint8, *int32) error +pkg syscall (windows-amd64), func LoadCancelIoEx() error +pkg syscall (windows-amd64), func LoadConnectEx() error +pkg syscall (windows-amd64), func LoadGetAddrInfo() error +pkg syscall (windows-amd64), func ReadConsole(Handle, *uint16, uint32, *uint32, *uint8) error +pkg syscall (windows-amd64), func UTF16FromString(string) ([]uint16, error) +pkg syscall (windows-amd64), func UTF16PtrFromString(string) (*uint16, error) +pkg syscall (windows-amd64), func WriteConsole(Handle, *uint16, uint32, *uint32, *uint8) error +pkg syscall (windows-amd64), type AddrinfoW struct +pkg syscall (windows-amd64), type AddrinfoW struct, Addr uintptr +pkg syscall (windows-amd64), type AddrinfoW struct, Addrlen uintptr +pkg syscall (windows-amd64), type AddrinfoW struct, Canonname *uint16 +pkg syscall (windows-amd64), type AddrinfoW struct, Family int32 +pkg syscall (windows-amd64), type AddrinfoW struct, Flags int32 +pkg syscall (windows-amd64), type AddrinfoW struct, Next *AddrinfoW +pkg syscall (windows-amd64), type AddrinfoW struct, Protocol int32 +pkg syscall (windows-amd64), type AddrinfoW struct, Socktype int32 +pkg syscall (windows-amd64), type GUID struct +pkg syscall (windows-amd64), type GUID struct, Data1 uint32 +pkg syscall (windows-amd64), type GUID struct, Data2 uint16 +pkg syscall (windows-amd64), type GUID struct, Data3 uint16 +pkg syscall (windows-amd64), type GUID struct, Data4 [8]uint8 +pkg syscall (windows-amd64), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (windows-amd64), type SysProcAttr struct, CreationFlags uint32 +pkg syscall (windows-amd64), var WSAID_CONNECTEX GUID +pkg syscall, const AF_INET = 2 +pkg syscall, const AF_UNIX = 1 +pkg syscall, const AF_UNSPEC = 0 +pkg syscall, const ENOENT = 2 +pkg syscall, const IFF_BROADCAST = 2 +pkg syscall, const IFF_UP = 1 +pkg syscall, const IPPROTO_IP = 0 +pkg syscall, const IPPROTO_IPV6 = 41 +pkg syscall, const IPPROTO_TCP = 6 +pkg syscall, const IPPROTO_UDP = 17 +pkg syscall, const O_RDONLY = 0 +pkg syscall, const O_RDWR = 2 +pkg syscall, const O_WRONLY = 1 +pkg syscall, const SHUT_RD = 0 +pkg syscall, const SHUT_RDWR = 2 +pkg syscall, const SHUT_WR = 1 +pkg syscall, const SIGABRT = 6 +pkg syscall, const SIGALRM = 14 +pkg syscall, const SIGFPE = 8 +pkg syscall, const SIGHUP = 1 +pkg syscall, const SIGILL = 4 +pkg syscall, const SIGINT = 2 +pkg syscall, const SIGKILL = 9 +pkg syscall, const SIGPIPE = 13 +pkg syscall, const SIGQUIT = 3 +pkg syscall, const SIGSEGV = 11 +pkg syscall, const SIGTERM = 15 +pkg syscall, const SIGTRAP = 5 +pkg syscall, const SOCK_DGRAM = 2 +pkg syscall, const SOCK_RAW = 3 +pkg syscall, const SOCK_SEQPACKET = 5 +pkg syscall, const SOCK_STREAM = 1 +pkg syscall, const S_IFBLK = 24576 +pkg syscall, const S_IFCHR = 8192 +pkg syscall, const S_IFDIR = 16384 +pkg syscall, const S_IFIFO = 4096 +pkg syscall, const S_IFLNK = 40960 +pkg syscall, const S_IFREG = 32768 +pkg syscall, const S_IFSOCK = 49152 +pkg syscall, const S_IRUSR = 256 +pkg syscall, const S_ISGID = 1024 +pkg syscall, const S_ISUID = 2048 +pkg syscall, const S_ISVTX = 512 +pkg syscall, const S_IWUSR = 128 +pkg syscall, const S_IXUSR = 64 +pkg syscall, const TCP_NODELAY = 1 +pkg syscall, func BytePtrFromString(string) (*uint8, error) +pkg syscall, func ByteSliceFromString(string) ([]uint8, error) +pkg syscall, func NsecToTimespec(int64) Timespec +pkg syscall, func TimespecToNsec(Timespec) int64 +pkg syscall, func UtimesNano(string, []Timespec) error +pkg syscall, type RawSockaddrInet6 struct +pkg syscall, type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall, type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall, type RawSockaddrInet6 struct, Port uint16 +pkg syscall, type RawSockaddrInet6 struct, Scope_id uint32 +pkg testing, func AllocsPerRun(int, func()) float64 +pkg testing, func Verbose() bool +pkg testing, method (*B) ReportAllocs() +pkg testing, method (*B) Skip(...interface{}) +pkg testing, method (*B) SkipNow() +pkg testing, method (*B) Skipf(string, ...interface{}) +pkg testing, method (*B) Skipped() bool +pkg testing, method (*T) Skip(...interface{}) +pkg testing, method (*T) SkipNow() +pkg testing, method (*T) Skipf(string, ...interface{}) +pkg testing, method (*T) Skipped() bool +pkg testing, method (BenchmarkResult) AllocedBytesPerOp() int64 +pkg testing, method (BenchmarkResult) AllocsPerOp() int64 +pkg testing, method (BenchmarkResult) MemString() string +pkg testing, type BenchmarkResult struct, MemAllocs uint64 +pkg testing, type BenchmarkResult struct, MemBytes uint64 +pkg text/scanner, const Char = -5 +pkg text/scanner, const Comment = -8 +pkg text/scanner, const EOF = -1 +pkg text/scanner, const Float = -4 +pkg text/scanner, const GoTokens = 1012 +pkg text/scanner, const GoWhitespace = 4294977024 +pkg text/scanner, const Ident = -2 +pkg text/scanner, const Int = -3 +pkg text/scanner, const RawString = -7 +pkg text/scanner, const ScanChars = 32 +pkg text/scanner, const ScanComments = 256 +pkg text/scanner, const ScanFloats = 16 +pkg text/scanner, const ScanIdents = 4 +pkg text/scanner, const ScanInts = 8 +pkg text/scanner, const ScanRawStrings = 128 +pkg text/scanner, const ScanStrings = 64 +pkg text/scanner, const SkipComments = 512 +pkg text/scanner, const String = -6 +pkg text/tabwriter, const AlignRight = 4 +pkg text/tabwriter, const Debug = 32 +pkg text/tabwriter, const DiscardEmptyColumns = 8 +pkg text/tabwriter, const Escape = 255 +pkg text/tabwriter, const FilterHTML = 1 +pkg text/tabwriter, const StripEscape = 2 +pkg text/tabwriter, const TabIndent = 16 +pkg text/template, method (Template) ErrorContext(parse.Node) (string, string) +pkg text/template/parse, const NodeAction = 1 +pkg text/template/parse, const NodeBool = 2 +pkg text/template/parse, const NodeChain = 3 +pkg text/template/parse, const NodeChain NodeType +pkg text/template/parse, const NodeCommand = 4 +pkg text/template/parse, const NodeDot = 5 +pkg text/template/parse, const NodeField = 8 +pkg text/template/parse, const NodeIdentifier = 9 +pkg text/template/parse, const NodeIf = 10 +pkg text/template/parse, const NodeList = 11 +pkg text/template/parse, const NodeNil = 12 +pkg text/template/parse, const NodeNil NodeType +pkg text/template/parse, const NodeNumber = 13 +pkg text/template/parse, const NodePipe = 14 +pkg text/template/parse, const NodeRange = 15 +pkg text/template/parse, const NodeString = 16 +pkg text/template/parse, const NodeTemplate = 17 +pkg text/template/parse, const NodeText = 0 +pkg text/template/parse, const NodeVariable = 18 +pkg text/template/parse, const NodeWith = 19 +pkg text/template/parse, method (*ChainNode) Add(string) +pkg text/template/parse, method (*ChainNode) Copy() Node +pkg text/template/parse, method (*ChainNode) String() string +pkg text/template/parse, method (*IdentifierNode) SetPos(Pos) *IdentifierNode +pkg text/template/parse, method (*NilNode) Copy() Node +pkg text/template/parse, method (*NilNode) String() string +pkg text/template/parse, method (*NilNode) Type() NodeType +pkg text/template/parse, method (*Tree) ErrorContext(Node) (string, string) +pkg text/template/parse, method (ActionNode) Position() Pos +pkg text/template/parse, method (BoolNode) Position() Pos +pkg text/template/parse, method (BranchNode) Position() Pos +pkg text/template/parse, method (ChainNode) Position() Pos +pkg text/template/parse, method (ChainNode) Type() NodeType +pkg text/template/parse, method (CommandNode) Position() Pos +pkg text/template/parse, method (DotNode) Position() Pos +pkg text/template/parse, method (FieldNode) Position() Pos +pkg text/template/parse, method (IdentifierNode) Position() Pos +pkg text/template/parse, method (IfNode) Position() Pos +pkg text/template/parse, method (ListNode) Position() Pos +pkg text/template/parse, method (NilNode) Position() Pos +pkg text/template/parse, method (NumberNode) Position() Pos +pkg text/template/parse, method (PipeNode) Position() Pos +pkg text/template/parse, method (Pos) Position() Pos +pkg text/template/parse, method (RangeNode) Position() Pos +pkg text/template/parse, method (StringNode) Position() Pos +pkg text/template/parse, method (TemplateNode) Position() Pos +pkg text/template/parse, method (TextNode) Position() Pos +pkg text/template/parse, method (VariableNode) Position() Pos +pkg text/template/parse, method (WithNode) Position() Pos +pkg text/template/parse, type ActionNode struct, embedded Pos +pkg text/template/parse, type BoolNode struct, embedded Pos +pkg text/template/parse, type BranchNode struct, embedded Pos +pkg text/template/parse, type ChainNode struct +pkg text/template/parse, type ChainNode struct, Field []string +pkg text/template/parse, type ChainNode struct, Node Node +pkg text/template/parse, type ChainNode struct, embedded NodeType +pkg text/template/parse, type ChainNode struct, embedded Pos +pkg text/template/parse, type CommandNode struct, embedded Pos +pkg text/template/parse, type DotNode struct +pkg text/template/parse, type DotNode struct, embedded Pos +pkg text/template/parse, type FieldNode struct, embedded Pos +pkg text/template/parse, type IdentifierNode struct, embedded Pos +pkg text/template/parse, type ListNode struct, embedded Pos +pkg text/template/parse, type NilNode struct +pkg text/template/parse, type NilNode struct, embedded Pos +pkg text/template/parse, type Node interface, Position() Pos +pkg text/template/parse, type Node interface, unexported methods +pkg text/template/parse, type NumberNode struct, embedded Pos +pkg text/template/parse, type PipeNode struct, embedded Pos +pkg text/template/parse, type Pos int +pkg text/template/parse, type StringNode struct, embedded Pos +pkg text/template/parse, type TemplateNode struct, embedded Pos +pkg text/template/parse, type TextNode struct, embedded Pos +pkg text/template/parse, type Tree struct, ParseName string +pkg text/template/parse, type VariableNode struct, embedded Pos +pkg time, const ANSIC = "Mon Jan _2 15:04:05 2006" +pkg time, const April = 4 +pkg time, const August = 8 +pkg time, const December = 12 +pkg time, const February = 2 +pkg time, const Friday = 5 +pkg time, const Hour = 3600000000000 +pkg time, const January = 1 +pkg time, const July = 7 +pkg time, const June = 6 +pkg time, const Kitchen = "3:04PM" +pkg time, const March = 3 +pkg time, const May = 5 +pkg time, const Microsecond = 1000 +pkg time, const Millisecond = 1000000 +pkg time, const Minute = 60000000000 +pkg time, const Monday = 1 +pkg time, const Nanosecond = 1 +pkg time, const November = 11 +pkg time, const October = 10 +pkg time, const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST" +pkg time, const RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700" +pkg time, const RFC3339 = "2006-01-02T15:04:05Z07:00" +pkg time, const RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00" +pkg time, const RFC822 = "02 Jan 06 15:04 MST" +pkg time, const RFC822Z = "02 Jan 06 15:04 -0700" +pkg time, const RFC850 = "Monday, 02-Jan-06 15:04:05 MST" +pkg time, const RubyDate = "Mon Jan 02 15:04:05 -0700 2006" +pkg time, const Saturday = 6 +pkg time, const Second = 1000000000 +pkg time, const September = 9 +pkg time, const Stamp = "Jan _2 15:04:05" +pkg time, const StampMicro = "Jan _2 15:04:05.000000" +pkg time, const StampMilli = "Jan _2 15:04:05.000" +pkg time, const StampNano = "Jan _2 15:04:05.000000000" +pkg time, const Sunday = 0 +pkg time, const Thursday = 4 +pkg time, const Tuesday = 2 +pkg time, const UnixDate = "Mon Jan _2 15:04:05 MST 2006" +pkg time, const Wednesday = 3 +pkg time, func ParseInLocation(string, string, *Location) (Time, error) +pkg time, method (*Timer) Reset(Duration) bool +pkg time, method (Time) Round(Duration) Time +pkg time, method (Time) Truncate(Duration) Time +pkg time, method (Time) YearDay() int +pkg unicode, const LowerCase = 1 +pkg unicode, const MaxASCII = 127 +pkg unicode, const MaxCase = 3 +pkg unicode, const MaxLatin1 = 255 +pkg unicode, const MaxRune = 1114111 +pkg unicode, const ReplacementChar = 65533 +pkg unicode, const TitleCase = 2 +pkg unicode, const UpperCase = 0 +pkg unicode, const UpperLower = 1114112 +pkg unicode, const Version = "6.2.0" +pkg unicode, type RangeTable struct, LatinOffset int +pkg unicode, var Chakma *RangeTable +pkg unicode, var Meroitic_Cursive *RangeTable +pkg unicode, var Meroitic_Hieroglyphs *RangeTable +pkg unicode, var Miao *RangeTable +pkg unicode, var Sharada *RangeTable +pkg unicode, var Sora_Sompeng *RangeTable +pkg unicode, var Takri *RangeTable +pkg unicode/utf8, const MaxRune = 1114111 +pkg unicode/utf8, const RuneError = 65533 +pkg unicode/utf8, const RuneSelf = 128 +pkg unicode/utf8, const UTFMax = 4 +pkg unicode/utf8, func ValidRune(int32) bool diff --git a/platform/dbops/binaries/go/go/api/go1.10.txt b/platform/dbops/binaries/go/go/api/go1.10.txt new file mode 100644 index 0000000000000000000000000000000000000000..250c10f6abe6c1b200c2d1c03fd46e1220bad764 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.10.txt @@ -0,0 +1,627 @@ +pkg archive/tar, const FormatGNU = 8 +pkg archive/tar, const FormatGNU Format +pkg archive/tar, const FormatPAX = 4 +pkg archive/tar, const FormatPAX Format +pkg archive/tar, const FormatUSTAR = 2 +pkg archive/tar, const FormatUSTAR Format +pkg archive/tar, const FormatUnknown = 0 +pkg archive/tar, const FormatUnknown Format +pkg archive/tar, method (Format) String() string +pkg archive/tar, type Format int +pkg archive/tar, type Header struct, Format Format +pkg archive/tar, type Header struct, PAXRecords map[string]string +pkg archive/zip, method (*Writer) SetComment(string) error +pkg archive/zip, type FileHeader struct, Modified time.Time +pkg archive/zip, type FileHeader struct, NonUTF8 bool +pkg bufio, method (*Reader) Size() int +pkg bufio, method (*Writer) Size() int +pkg crypto/tls, const ECDSAWithSHA1 = 515 +pkg crypto/tls, const ECDSAWithSHA1 SignatureScheme +pkg crypto/x509, const CANotAuthorizedForExtKeyUsage = 9 +pkg crypto/x509, const CANotAuthorizedForExtKeyUsage InvalidReason +pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning = 12 +pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning = 13 +pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning ExtKeyUsage +pkg crypto/x509, const NameConstraintsWithoutSANs = 6 +pkg crypto/x509, const NameConstraintsWithoutSANs InvalidReason +pkg crypto/x509, const TooManyConstraints = 8 +pkg crypto/x509, const TooManyConstraints InvalidReason +pkg crypto/x509, const UnconstrainedName = 7 +pkg crypto/x509, const UnconstrainedName InvalidReason +pkg crypto/x509, func MarshalPKCS1PublicKey(*rsa.PublicKey) []uint8 +pkg crypto/x509, func MarshalPKCS8PrivateKey(interface{}) ([]uint8, error) +pkg crypto/x509, func ParsePKCS1PublicKey([]uint8) (*rsa.PublicKey, error) +pkg crypto/x509, method (PublicKeyAlgorithm) String() string +pkg crypto/x509, type Certificate struct, ExcludedEmailAddresses []string +pkg crypto/x509, type Certificate struct, ExcludedIPRanges []*net.IPNet +pkg crypto/x509, type Certificate struct, ExcludedURIDomains []string +pkg crypto/x509, type Certificate struct, PermittedEmailAddresses []string +pkg crypto/x509, type Certificate struct, PermittedIPRanges []*net.IPNet +pkg crypto/x509, type Certificate struct, PermittedURIDomains []string +pkg crypto/x509, type Certificate struct, URIs []*url.URL +pkg crypto/x509, type CertificateInvalidError struct, Detail string +pkg crypto/x509, type CertificateRequest struct, URIs []*url.URL +pkg crypto/x509, type VerifyOptions struct, MaxConstraintComparisions int +pkg crypto/x509/pkix, method (Name) String() string +pkg crypto/x509/pkix, method (RDNSequence) String() string +pkg database/sql, func OpenDB(driver.Connector) *DB +pkg database/sql/driver, type Connector interface { Connect, Driver } +pkg database/sql/driver, type Connector interface, Connect(context.Context) (Conn, error) +pkg database/sql/driver, type Connector interface, Driver() Driver +pkg database/sql/driver, type DriverContext interface { OpenConnector } +pkg database/sql/driver, type DriverContext interface, OpenConnector(string) (Connector, error) +pkg database/sql/driver, type SessionResetter interface { ResetSession } +pkg database/sql/driver, type SessionResetter interface, ResetSession(context.Context) error +pkg debug/elf, const R_386_16 = 20 +pkg debug/elf, const R_386_16 R_386 +pkg debug/elf, const R_386_32PLT = 11 +pkg debug/elf, const R_386_32PLT R_386 +pkg debug/elf, const R_386_8 = 22 +pkg debug/elf, const R_386_8 R_386 +pkg debug/elf, const R_386_GOT32X = 43 +pkg debug/elf, const R_386_GOT32X R_386 +pkg debug/elf, const R_386_IRELATIVE = 42 +pkg debug/elf, const R_386_IRELATIVE R_386 +pkg debug/elf, const R_386_PC16 = 21 +pkg debug/elf, const R_386_PC16 R_386 +pkg debug/elf, const R_386_PC8 = 23 +pkg debug/elf, const R_386_PC8 R_386 +pkg debug/elf, const R_386_SIZE32 = 38 +pkg debug/elf, const R_386_SIZE32 R_386 +pkg debug/elf, const R_386_TLS_DESC = 41 +pkg debug/elf, const R_386_TLS_DESC R_386 +pkg debug/elf, const R_386_TLS_DESC_CALL = 40 +pkg debug/elf, const R_386_TLS_DESC_CALL R_386 +pkg debug/elf, const R_386_TLS_GOTDESC = 39 +pkg debug/elf, const R_386_TLS_GOTDESC R_386 +pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 = 310 +pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64 +pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 = 313 +pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 = 512 +pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC = 516 +pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515 +pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 = 518 +pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 = 517 +pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572 +pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC = 573 +pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12 = 570 +pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC = 571 +pkg debug/elf, const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_ARM_ABS32_NOI = 55 +pkg debug/elf, const R_ARM_ABS32_NOI R_ARM +pkg debug/elf, const R_ARM_ALU_PCREL_15_8 = 33 +pkg debug/elf, const R_ARM_ALU_PCREL_15_8 R_ARM +pkg debug/elf, const R_ARM_ALU_PCREL_23_15 = 34 +pkg debug/elf, const R_ARM_ALU_PCREL_23_15 R_ARM +pkg debug/elf, const R_ARM_ALU_PCREL_7_0 = 32 +pkg debug/elf, const R_ARM_ALU_PCREL_7_0 R_ARM +pkg debug/elf, const R_ARM_ALU_PC_G0 = 58 +pkg debug/elf, const R_ARM_ALU_PC_G0 R_ARM +pkg debug/elf, const R_ARM_ALU_PC_G0_NC = 57 +pkg debug/elf, const R_ARM_ALU_PC_G0_NC R_ARM +pkg debug/elf, const R_ARM_ALU_PC_G1 = 60 +pkg debug/elf, const R_ARM_ALU_PC_G1 R_ARM +pkg debug/elf, const R_ARM_ALU_PC_G1_NC = 59 +pkg debug/elf, const R_ARM_ALU_PC_G1_NC R_ARM +pkg debug/elf, const R_ARM_ALU_PC_G2 = 61 +pkg debug/elf, const R_ARM_ALU_PC_G2 R_ARM +pkg debug/elf, const R_ARM_ALU_SBREL_19_12_NC = 36 +pkg debug/elf, const R_ARM_ALU_SBREL_19_12_NC R_ARM +pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK = 37 +pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK R_ARM +pkg debug/elf, const R_ARM_ALU_SB_G0 = 71 +pkg debug/elf, const R_ARM_ALU_SB_G0 R_ARM +pkg debug/elf, const R_ARM_ALU_SB_G0_NC = 70 +pkg debug/elf, const R_ARM_ALU_SB_G0_NC R_ARM +pkg debug/elf, const R_ARM_ALU_SB_G1 = 73 +pkg debug/elf, const R_ARM_ALU_SB_G1 R_ARM +pkg debug/elf, const R_ARM_ALU_SB_G1_NC = 72 +pkg debug/elf, const R_ARM_ALU_SB_G1_NC R_ARM +pkg debug/elf, const R_ARM_ALU_SB_G2 = 74 +pkg debug/elf, const R_ARM_ALU_SB_G2 R_ARM +pkg debug/elf, const R_ARM_BASE_ABS = 31 +pkg debug/elf, const R_ARM_BASE_ABS R_ARM +pkg debug/elf, const R_ARM_CALL = 28 +pkg debug/elf, const R_ARM_CALL R_ARM +pkg debug/elf, const R_ARM_GOTOFF12 = 98 +pkg debug/elf, const R_ARM_GOTOFF12 R_ARM +pkg debug/elf, const R_ARM_GOTRELAX = 99 +pkg debug/elf, const R_ARM_GOTRELAX R_ARM +pkg debug/elf, const R_ARM_GOT_ABS = 95 +pkg debug/elf, const R_ARM_GOT_ABS R_ARM +pkg debug/elf, const R_ARM_GOT_BREL12 = 97 +pkg debug/elf, const R_ARM_GOT_BREL12 R_ARM +pkg debug/elf, const R_ARM_GOT_PREL = 96 +pkg debug/elf, const R_ARM_GOT_PREL R_ARM +pkg debug/elf, const R_ARM_IRELATIVE = 160 +pkg debug/elf, const R_ARM_IRELATIVE R_ARM +pkg debug/elf, const R_ARM_JUMP24 = 29 +pkg debug/elf, const R_ARM_JUMP24 R_ARM +pkg debug/elf, const R_ARM_LDC_PC_G0 = 67 +pkg debug/elf, const R_ARM_LDC_PC_G0 R_ARM +pkg debug/elf, const R_ARM_LDC_PC_G1 = 68 +pkg debug/elf, const R_ARM_LDC_PC_G1 R_ARM +pkg debug/elf, const R_ARM_LDC_PC_G2 = 69 +pkg debug/elf, const R_ARM_LDC_PC_G2 R_ARM +pkg debug/elf, const R_ARM_LDC_SB_G0 = 81 +pkg debug/elf, const R_ARM_LDC_SB_G0 R_ARM +pkg debug/elf, const R_ARM_LDC_SB_G1 = 82 +pkg debug/elf, const R_ARM_LDC_SB_G1 R_ARM +pkg debug/elf, const R_ARM_LDC_SB_G2 = 83 +pkg debug/elf, const R_ARM_LDC_SB_G2 R_ARM +pkg debug/elf, const R_ARM_LDRS_PC_G0 = 64 +pkg debug/elf, const R_ARM_LDRS_PC_G0 R_ARM +pkg debug/elf, const R_ARM_LDRS_PC_G1 = 65 +pkg debug/elf, const R_ARM_LDRS_PC_G1 R_ARM +pkg debug/elf, const R_ARM_LDRS_PC_G2 = 66 +pkg debug/elf, const R_ARM_LDRS_PC_G2 R_ARM +pkg debug/elf, const R_ARM_LDRS_SB_G0 = 78 +pkg debug/elf, const R_ARM_LDRS_SB_G0 R_ARM +pkg debug/elf, const R_ARM_LDRS_SB_G1 = 79 +pkg debug/elf, const R_ARM_LDRS_SB_G1 R_ARM +pkg debug/elf, const R_ARM_LDRS_SB_G2 = 80 +pkg debug/elf, const R_ARM_LDRS_SB_G2 R_ARM +pkg debug/elf, const R_ARM_LDR_PC_G1 = 62 +pkg debug/elf, const R_ARM_LDR_PC_G1 R_ARM +pkg debug/elf, const R_ARM_LDR_PC_G2 = 63 +pkg debug/elf, const R_ARM_LDR_PC_G2 R_ARM +pkg debug/elf, const R_ARM_LDR_SBREL_11_10_NC = 35 +pkg debug/elf, const R_ARM_LDR_SBREL_11_10_NC R_ARM +pkg debug/elf, const R_ARM_LDR_SB_G0 = 75 +pkg debug/elf, const R_ARM_LDR_SB_G0 R_ARM +pkg debug/elf, const R_ARM_LDR_SB_G1 = 76 +pkg debug/elf, const R_ARM_LDR_SB_G1 R_ARM +pkg debug/elf, const R_ARM_LDR_SB_G2 = 77 +pkg debug/elf, const R_ARM_LDR_SB_G2 R_ARM +pkg debug/elf, const R_ARM_ME_TOO = 128 +pkg debug/elf, const R_ARM_ME_TOO R_ARM +pkg debug/elf, const R_ARM_MOVT_ABS = 44 +pkg debug/elf, const R_ARM_MOVT_ABS R_ARM +pkg debug/elf, const R_ARM_MOVT_BREL = 85 +pkg debug/elf, const R_ARM_MOVT_BREL R_ARM +pkg debug/elf, const R_ARM_MOVT_PREL = 46 +pkg debug/elf, const R_ARM_MOVT_PREL R_ARM +pkg debug/elf, const R_ARM_MOVW_ABS_NC = 43 +pkg debug/elf, const R_ARM_MOVW_ABS_NC R_ARM +pkg debug/elf, const R_ARM_MOVW_BREL = 86 +pkg debug/elf, const R_ARM_MOVW_BREL R_ARM +pkg debug/elf, const R_ARM_MOVW_BREL_NC = 84 +pkg debug/elf, const R_ARM_MOVW_BREL_NC R_ARM +pkg debug/elf, const R_ARM_MOVW_PREL_NC = 45 +pkg debug/elf, const R_ARM_MOVW_PREL_NC R_ARM +pkg debug/elf, const R_ARM_PLT32_ABS = 94 +pkg debug/elf, const R_ARM_PLT32_ABS R_ARM +pkg debug/elf, const R_ARM_PREL31 = 42 +pkg debug/elf, const R_ARM_PREL31 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_0 = 112 +pkg debug/elf, const R_ARM_PRIVATE_0 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_1 = 113 +pkg debug/elf, const R_ARM_PRIVATE_1 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_10 = 122 +pkg debug/elf, const R_ARM_PRIVATE_10 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_11 = 123 +pkg debug/elf, const R_ARM_PRIVATE_11 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_12 = 124 +pkg debug/elf, const R_ARM_PRIVATE_12 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_13 = 125 +pkg debug/elf, const R_ARM_PRIVATE_13 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_14 = 126 +pkg debug/elf, const R_ARM_PRIVATE_14 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_15 = 127 +pkg debug/elf, const R_ARM_PRIVATE_15 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_2 = 114 +pkg debug/elf, const R_ARM_PRIVATE_2 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_3 = 115 +pkg debug/elf, const R_ARM_PRIVATE_3 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_4 = 116 +pkg debug/elf, const R_ARM_PRIVATE_4 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_5 = 117 +pkg debug/elf, const R_ARM_PRIVATE_5 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_6 = 118 +pkg debug/elf, const R_ARM_PRIVATE_6 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_7 = 119 +pkg debug/elf, const R_ARM_PRIVATE_7 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_8 = 120 +pkg debug/elf, const R_ARM_PRIVATE_8 R_ARM +pkg debug/elf, const R_ARM_PRIVATE_9 = 121 +pkg debug/elf, const R_ARM_PRIVATE_9 R_ARM +pkg debug/elf, const R_ARM_REL32_NOI = 56 +pkg debug/elf, const R_ARM_REL32_NOI R_ARM +pkg debug/elf, const R_ARM_RXPC25 = 249 +pkg debug/elf, const R_ARM_RXPC25 R_ARM +pkg debug/elf, const R_ARM_SBREL31 = 39 +pkg debug/elf, const R_ARM_SBREL31 R_ARM +pkg debug/elf, const R_ARM_TARGET1 = 38 +pkg debug/elf, const R_ARM_TARGET1 R_ARM +pkg debug/elf, const R_ARM_TARGET2 = 41 +pkg debug/elf, const R_ARM_TARGET2 R_ARM +pkg debug/elf, const R_ARM_THM_ALU_ABS_G0_NC = 132 +pkg debug/elf, const R_ARM_THM_ALU_ABS_G0_NC R_ARM +pkg debug/elf, const R_ARM_THM_ALU_ABS_G1_NC = 133 +pkg debug/elf, const R_ARM_THM_ALU_ABS_G1_NC R_ARM +pkg debug/elf, const R_ARM_THM_ALU_ABS_G2_NC = 134 +pkg debug/elf, const R_ARM_THM_ALU_ABS_G2_NC R_ARM +pkg debug/elf, const R_ARM_THM_ALU_ABS_G3 = 135 +pkg debug/elf, const R_ARM_THM_ALU_ABS_G3 R_ARM +pkg debug/elf, const R_ARM_THM_ALU_PREL_11_0 = 53 +pkg debug/elf, const R_ARM_THM_ALU_PREL_11_0 R_ARM +pkg debug/elf, const R_ARM_THM_GOT_BREL12 = 131 +pkg debug/elf, const R_ARM_THM_GOT_BREL12 R_ARM +pkg debug/elf, const R_ARM_THM_JUMP11 = 102 +pkg debug/elf, const R_ARM_THM_JUMP11 R_ARM +pkg debug/elf, const R_ARM_THM_JUMP19 = 51 +pkg debug/elf, const R_ARM_THM_JUMP19 R_ARM +pkg debug/elf, const R_ARM_THM_JUMP24 = 30 +pkg debug/elf, const R_ARM_THM_JUMP24 R_ARM +pkg debug/elf, const R_ARM_THM_JUMP6 = 52 +pkg debug/elf, const R_ARM_THM_JUMP6 R_ARM +pkg debug/elf, const R_ARM_THM_JUMP8 = 103 +pkg debug/elf, const R_ARM_THM_JUMP8 R_ARM +pkg debug/elf, const R_ARM_THM_MOVT_ABS = 48 +pkg debug/elf, const R_ARM_THM_MOVT_ABS R_ARM +pkg debug/elf, const R_ARM_THM_MOVT_BREL = 88 +pkg debug/elf, const R_ARM_THM_MOVT_BREL R_ARM +pkg debug/elf, const R_ARM_THM_MOVT_PREL = 50 +pkg debug/elf, const R_ARM_THM_MOVT_PREL R_ARM +pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC = 47 +pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC R_ARM +pkg debug/elf, const R_ARM_THM_MOVW_BREL = 89 +pkg debug/elf, const R_ARM_THM_MOVW_BREL R_ARM +pkg debug/elf, const R_ARM_THM_MOVW_BREL_NC = 87 +pkg debug/elf, const R_ARM_THM_MOVW_BREL_NC R_ARM +pkg debug/elf, const R_ARM_THM_MOVW_PREL_NC = 49 +pkg debug/elf, const R_ARM_THM_MOVW_PREL_NC R_ARM +pkg debug/elf, const R_ARM_THM_PC12 = 54 +pkg debug/elf, const R_ARM_THM_PC12 R_ARM +pkg debug/elf, const R_ARM_THM_TLS_CALL = 93 +pkg debug/elf, const R_ARM_THM_TLS_CALL R_ARM +pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ16 = 129 +pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ16 R_ARM +pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ32 = 130 +pkg debug/elf, const R_ARM_THM_TLS_DESCSEQ32 R_ARM +pkg debug/elf, const R_ARM_TLS_CALL = 91 +pkg debug/elf, const R_ARM_TLS_CALL R_ARM +pkg debug/elf, const R_ARM_TLS_DESCSEQ = 92 +pkg debug/elf, const R_ARM_TLS_DESCSEQ R_ARM +pkg debug/elf, const R_ARM_TLS_DTPMOD32 = 17 +pkg debug/elf, const R_ARM_TLS_DTPMOD32 R_ARM +pkg debug/elf, const R_ARM_TLS_DTPOFF32 = 18 +pkg debug/elf, const R_ARM_TLS_DTPOFF32 R_ARM +pkg debug/elf, const R_ARM_TLS_GD32 = 104 +pkg debug/elf, const R_ARM_TLS_GD32 R_ARM +pkg debug/elf, const R_ARM_TLS_GOTDESC = 90 +pkg debug/elf, const R_ARM_TLS_GOTDESC R_ARM +pkg debug/elf, const R_ARM_TLS_IE12GP = 111 +pkg debug/elf, const R_ARM_TLS_IE12GP R_ARM +pkg debug/elf, const R_ARM_TLS_IE32 = 107 +pkg debug/elf, const R_ARM_TLS_IE32 R_ARM +pkg debug/elf, const R_ARM_TLS_LDM32 = 105 +pkg debug/elf, const R_ARM_TLS_LDM32 R_ARM +pkg debug/elf, const R_ARM_TLS_LDO12 = 109 +pkg debug/elf, const R_ARM_TLS_LDO12 R_ARM +pkg debug/elf, const R_ARM_TLS_LDO32 = 106 +pkg debug/elf, const R_ARM_TLS_LDO32 R_ARM +pkg debug/elf, const R_ARM_TLS_LE12 = 110 +pkg debug/elf, const R_ARM_TLS_LE12 R_ARM +pkg debug/elf, const R_ARM_TLS_LE32 = 108 +pkg debug/elf, const R_ARM_TLS_LE32 R_ARM +pkg debug/elf, const R_ARM_TLS_TPOFF32 = 19 +pkg debug/elf, const R_ARM_TLS_TPOFF32 R_ARM +pkg debug/elf, const R_ARM_V4BX = 40 +pkg debug/elf, const R_ARM_V4BX R_ARM +pkg debug/elf, const R_PPC64_ADDR16_HIGH = 110 +pkg debug/elf, const R_PPC64_ADDR16_HIGH R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HIGHA = 111 +pkg debug/elf, const R_PPC64_ADDR16_HIGHA R_PPC64 +pkg debug/elf, const R_PPC64_ADDR64_LOCAL = 117 +pkg debug/elf, const R_PPC64_ADDR64_LOCAL R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGH = 114 +pkg debug/elf, const R_PPC64_DTPREL16_HIGH R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHA = 115 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHA R_PPC64 +pkg debug/elf, const R_PPC64_ENTRY = 118 +pkg debug/elf, const R_PPC64_ENTRY R_PPC64 +pkg debug/elf, const R_PPC64_IRELATIVE = 248 +pkg debug/elf, const R_PPC64_IRELATIVE R_PPC64 +pkg debug/elf, const R_PPC64_JMP_IREL = 247 +pkg debug/elf, const R_PPC64_JMP_IREL R_PPC64 +pkg debug/elf, const R_PPC64_PLT16_LO_DS = 60 +pkg debug/elf, const R_PPC64_PLT16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT16 = 52 +pkg debug/elf, const R_PPC64_PLTGOT16 R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT16_DS = 65 +pkg debug/elf, const R_PPC64_PLTGOT16_DS R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT16_HA = 55 +pkg debug/elf, const R_PPC64_PLTGOT16_HA R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT16_HI = 54 +pkg debug/elf, const R_PPC64_PLTGOT16_HI R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT16_LO = 53 +pkg debug/elf, const R_PPC64_PLTGOT16_LO R_PPC64 +pkg debug/elf, const R_PPC64_PLTGOT_LO_DS = 66 +pkg debug/elf, const R_PPC64_PLTGOT_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_REL16DX_HA = 246 +pkg debug/elf, const R_PPC64_REL16DX_HA R_PPC64 +pkg debug/elf, const R_PPC64_REL24_NOTOC = 116 +pkg debug/elf, const R_PPC64_REL24_NOTOC R_PPC64 +pkg debug/elf, const R_PPC64_SECTOFF_DS = 61 +pkg debug/elf, const R_PPC64_SECTOFF_DS R_PPC64 +pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61 +pkg debug/elf, const R_PPC64_SECTOFF_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_TOCSAVE = 109 +pkg debug/elf, const R_PPC64_TOCSAVE R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGH = 112 +pkg debug/elf, const R_PPC64_TPREL16_HIGH R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGHA = 113 +pkg debug/elf, const R_PPC64_TPREL16_HIGHA R_PPC64 +pkg debug/elf, const R_X86_64_GOT64 = 27 +pkg debug/elf, const R_X86_64_GOT64 R_X86_64 +pkg debug/elf, const R_X86_64_GOTOFF64 = 25 +pkg debug/elf, const R_X86_64_GOTOFF64 R_X86_64 +pkg debug/elf, const R_X86_64_GOTPC32 = 26 +pkg debug/elf, const R_X86_64_GOTPC32 R_X86_64 +pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC = 34 +pkg debug/elf, const R_X86_64_GOTPC32_TLSDESC R_X86_64 +pkg debug/elf, const R_X86_64_GOTPC64 = 29 +pkg debug/elf, const R_X86_64_GOTPC64 R_X86_64 +pkg debug/elf, const R_X86_64_GOTPCREL64 = 28 +pkg debug/elf, const R_X86_64_GOTPCREL64 R_X86_64 +pkg debug/elf, const R_X86_64_GOTPCRELX = 41 +pkg debug/elf, const R_X86_64_GOTPCRELX R_X86_64 +pkg debug/elf, const R_X86_64_GOTPLT64 = 30 +pkg debug/elf, const R_X86_64_GOTPLT64 R_X86_64 +pkg debug/elf, const R_X86_64_IRELATIVE = 37 +pkg debug/elf, const R_X86_64_IRELATIVE R_X86_64 +pkg debug/elf, const R_X86_64_PC32_BND = 39 +pkg debug/elf, const R_X86_64_PC32_BND R_X86_64 +pkg debug/elf, const R_X86_64_PC64 = 24 +pkg debug/elf, const R_X86_64_PC64 R_X86_64 +pkg debug/elf, const R_X86_64_PLT32_BND = 40 +pkg debug/elf, const R_X86_64_PLT32_BND R_X86_64 +pkg debug/elf, const R_X86_64_PLTOFF64 = 31 +pkg debug/elf, const R_X86_64_PLTOFF64 R_X86_64 +pkg debug/elf, const R_X86_64_RELATIVE64 = 38 +pkg debug/elf, const R_X86_64_RELATIVE64 R_X86_64 +pkg debug/elf, const R_X86_64_REX_GOTPCRELX = 42 +pkg debug/elf, const R_X86_64_REX_GOTPCRELX R_X86_64 +pkg debug/elf, const R_X86_64_SIZE32 = 32 +pkg debug/elf, const R_X86_64_SIZE32 R_X86_64 +pkg debug/elf, const R_X86_64_SIZE64 = 33 +pkg debug/elf, const R_X86_64_SIZE64 R_X86_64 +pkg debug/elf, const R_X86_64_TLSDESC = 36 +pkg debug/elf, const R_X86_64_TLSDESC R_X86_64 +pkg debug/elf, const R_X86_64_TLSDESC_CALL = 35 +pkg debug/elf, const R_X86_64_TLSDESC_CALL R_X86_64 +pkg debug/macho, const ARM64_RELOC_ADDEND = 10 +pkg debug/macho, const ARM64_RELOC_ADDEND RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_BRANCH26 = 2 +pkg debug/macho, const ARM64_RELOC_BRANCH26 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGE21 = 5 +pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGE21 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGEOFF12 = 6 +pkg debug/macho, const ARM64_RELOC_GOT_LOAD_PAGEOFF12 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_PAGE21 = 3 +pkg debug/macho, const ARM64_RELOC_PAGE21 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_PAGEOFF12 = 4 +pkg debug/macho, const ARM64_RELOC_PAGEOFF12 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_POINTER_TO_GOT = 7 +pkg debug/macho, const ARM64_RELOC_POINTER_TO_GOT RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_SUBTRACTOR = 1 +pkg debug/macho, const ARM64_RELOC_SUBTRACTOR RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGE21 = 8 +pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGE21 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGEOFF12 = 9 +pkg debug/macho, const ARM64_RELOC_TLVP_LOAD_PAGEOFF12 RelocTypeARM64 +pkg debug/macho, const ARM64_RELOC_UNSIGNED = 0 +pkg debug/macho, const ARM64_RELOC_UNSIGNED RelocTypeARM64 +pkg debug/macho, const ARM_RELOC_BR24 = 5 +pkg debug/macho, const ARM_RELOC_BR24 RelocTypeARM +pkg debug/macho, const ARM_RELOC_HALF = 8 +pkg debug/macho, const ARM_RELOC_HALF RelocTypeARM +pkg debug/macho, const ARM_RELOC_HALF_SECTDIFF = 9 +pkg debug/macho, const ARM_RELOC_HALF_SECTDIFF RelocTypeARM +pkg debug/macho, const ARM_RELOC_LOCAL_SECTDIFF = 3 +pkg debug/macho, const ARM_RELOC_LOCAL_SECTDIFF RelocTypeARM +pkg debug/macho, const ARM_RELOC_PAIR = 1 +pkg debug/macho, const ARM_RELOC_PAIR RelocTypeARM +pkg debug/macho, const ARM_RELOC_PB_LA_PTR = 4 +pkg debug/macho, const ARM_RELOC_PB_LA_PTR RelocTypeARM +pkg debug/macho, const ARM_RELOC_SECTDIFF = 2 +pkg debug/macho, const ARM_RELOC_SECTDIFF RelocTypeARM +pkg debug/macho, const ARM_RELOC_VANILLA = 0 +pkg debug/macho, const ARM_RELOC_VANILLA RelocTypeARM +pkg debug/macho, const ARM_THUMB_32BIT_BRANCH = 7 +pkg debug/macho, const ARM_THUMB_32BIT_BRANCH RelocTypeARM +pkg debug/macho, const ARM_THUMB_RELOC_BR22 = 6 +pkg debug/macho, const ARM_THUMB_RELOC_BR22 RelocTypeARM +pkg debug/macho, const FlagAllModsBound = 4096 +pkg debug/macho, const FlagAllModsBound uint32 +pkg debug/macho, const FlagAllowStackExecution = 131072 +pkg debug/macho, const FlagAllowStackExecution uint32 +pkg debug/macho, const FlagAppExtensionSafe = 33554432 +pkg debug/macho, const FlagAppExtensionSafe uint32 +pkg debug/macho, const FlagBindAtLoad = 8 +pkg debug/macho, const FlagBindAtLoad uint32 +pkg debug/macho, const FlagBindsToWeak = 65536 +pkg debug/macho, const FlagBindsToWeak uint32 +pkg debug/macho, const FlagCanonical = 16384 +pkg debug/macho, const FlagCanonical uint32 +pkg debug/macho, const FlagDeadStrippableDylib = 4194304 +pkg debug/macho, const FlagDeadStrippableDylib uint32 +pkg debug/macho, const FlagDyldLink = 4 +pkg debug/macho, const FlagDyldLink uint32 +pkg debug/macho, const FlagForceFlat = 256 +pkg debug/macho, const FlagForceFlat uint32 +pkg debug/macho, const FlagHasTLVDescriptors = 8388608 +pkg debug/macho, const FlagHasTLVDescriptors uint32 +pkg debug/macho, const FlagIncrLink = 2 +pkg debug/macho, const FlagIncrLink uint32 +pkg debug/macho, const FlagLazyInit = 64 +pkg debug/macho, const FlagLazyInit uint32 +pkg debug/macho, const FlagNoFixPrebinding = 1024 +pkg debug/macho, const FlagNoFixPrebinding uint32 +pkg debug/macho, const FlagNoHeapExecution = 16777216 +pkg debug/macho, const FlagNoHeapExecution uint32 +pkg debug/macho, const FlagNoMultiDefs = 512 +pkg debug/macho, const FlagNoMultiDefs uint32 +pkg debug/macho, const FlagNoReexportedDylibs = 1048576 +pkg debug/macho, const FlagNoReexportedDylibs uint32 +pkg debug/macho, const FlagNoUndefs = 1 +pkg debug/macho, const FlagNoUndefs uint32 +pkg debug/macho, const FlagPIE = 2097152 +pkg debug/macho, const FlagPIE uint32 +pkg debug/macho, const FlagPrebindable = 2048 +pkg debug/macho, const FlagPrebindable uint32 +pkg debug/macho, const FlagPrebound = 16 +pkg debug/macho, const FlagPrebound uint32 +pkg debug/macho, const FlagRootSafe = 262144 +pkg debug/macho, const FlagRootSafe uint32 +pkg debug/macho, const FlagSetuidSafe = 524288 +pkg debug/macho, const FlagSetuidSafe uint32 +pkg debug/macho, const FlagSplitSegs = 32 +pkg debug/macho, const FlagSplitSegs uint32 +pkg debug/macho, const FlagSubsectionsViaSymbols = 8192 +pkg debug/macho, const FlagSubsectionsViaSymbols uint32 +pkg debug/macho, const FlagTwoLevel = 128 +pkg debug/macho, const FlagTwoLevel uint32 +pkg debug/macho, const FlagWeakDefines = 32768 +pkg debug/macho, const FlagWeakDefines uint32 +pkg debug/macho, const GENERIC_RELOC_LOCAL_SECTDIFF = 4 +pkg debug/macho, const GENERIC_RELOC_LOCAL_SECTDIFF RelocTypeGeneric +pkg debug/macho, const GENERIC_RELOC_PAIR = 1 +pkg debug/macho, const GENERIC_RELOC_PAIR RelocTypeGeneric +pkg debug/macho, const GENERIC_RELOC_PB_LA_PTR = 3 +pkg debug/macho, const GENERIC_RELOC_PB_LA_PTR RelocTypeGeneric +pkg debug/macho, const GENERIC_RELOC_SECTDIFF = 2 +pkg debug/macho, const GENERIC_RELOC_SECTDIFF RelocTypeGeneric +pkg debug/macho, const GENERIC_RELOC_TLV = 5 +pkg debug/macho, const GENERIC_RELOC_TLV RelocTypeGeneric +pkg debug/macho, const GENERIC_RELOC_VANILLA = 0 +pkg debug/macho, const GENERIC_RELOC_VANILLA RelocTypeGeneric +pkg debug/macho, const LoadCmdRpath = 2147483676 +pkg debug/macho, const LoadCmdRpath LoadCmd +pkg debug/macho, const X86_64_RELOC_BRANCH = 2 +pkg debug/macho, const X86_64_RELOC_BRANCH RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_GOT = 4 +pkg debug/macho, const X86_64_RELOC_GOT RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_GOT_LOAD = 3 +pkg debug/macho, const X86_64_RELOC_GOT_LOAD RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_SIGNED = 1 +pkg debug/macho, const X86_64_RELOC_SIGNED RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_SIGNED_1 = 6 +pkg debug/macho, const X86_64_RELOC_SIGNED_1 RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_SIGNED_2 = 7 +pkg debug/macho, const X86_64_RELOC_SIGNED_2 RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_SIGNED_4 = 8 +pkg debug/macho, const X86_64_RELOC_SIGNED_4 RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_SUBTRACTOR = 5 +pkg debug/macho, const X86_64_RELOC_SUBTRACTOR RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_TLV = 9 +pkg debug/macho, const X86_64_RELOC_TLV RelocTypeX86_64 +pkg debug/macho, const X86_64_RELOC_UNSIGNED = 0 +pkg debug/macho, const X86_64_RELOC_UNSIGNED RelocTypeX86_64 +pkg debug/macho, method (RelocTypeARM) GoString() string +pkg debug/macho, method (RelocTypeARM) String() string +pkg debug/macho, method (RelocTypeARM64) GoString() string +pkg debug/macho, method (RelocTypeARM64) String() string +pkg debug/macho, method (RelocTypeGeneric) GoString() string +pkg debug/macho, method (RelocTypeGeneric) String() string +pkg debug/macho, method (RelocTypeX86_64) GoString() string +pkg debug/macho, method (RelocTypeX86_64) String() string +pkg debug/macho, method (Rpath) Raw() []uint8 +pkg debug/macho, method (Type) GoString() string +pkg debug/macho, method (Type) String() string +pkg debug/macho, type Reloc struct +pkg debug/macho, type Reloc struct, Addr uint32 +pkg debug/macho, type Reloc struct, Extern bool +pkg debug/macho, type Reloc struct, Len uint8 +pkg debug/macho, type Reloc struct, Pcrel bool +pkg debug/macho, type Reloc struct, Scattered bool +pkg debug/macho, type Reloc struct, Type uint8 +pkg debug/macho, type Reloc struct, Value uint32 +pkg debug/macho, type RelocTypeARM int +pkg debug/macho, type RelocTypeARM64 int +pkg debug/macho, type RelocTypeGeneric int +pkg debug/macho, type RelocTypeX86_64 int +pkg debug/macho, type Rpath struct +pkg debug/macho, type Rpath struct, Path string +pkg debug/macho, type Rpath struct, embedded LoadBytes +pkg debug/macho, type RpathCmd struct +pkg debug/macho, type RpathCmd struct, Cmd LoadCmd +pkg debug/macho, type RpathCmd struct, Len uint32 +pkg debug/macho, type RpathCmd struct, Path uint32 +pkg debug/macho, type Section struct, Relocs []Reloc +pkg encoding/asn1, const TagNumericString = 18 +pkg encoding/asn1, const TagNumericString ideal-int +pkg encoding/asn1, func MarshalWithParams(interface{}, string) ([]uint8, error) +pkg encoding/csv, type ParseError struct, StartLine int +pkg encoding/hex, func NewDecoder(io.Reader) io.Reader +pkg encoding/hex, func NewEncoder(io.Writer) io.Writer +pkg encoding/json, method (*Decoder) DisallowUnknownFields() +pkg encoding/xml, func NewTokenDecoder(TokenReader) *Decoder +pkg encoding/xml, type TokenReader interface { Token } +pkg encoding/xml, type TokenReader interface, Token() (Token, error) +pkg flag, method (*FlagSet) ErrorHandling() ErrorHandling +pkg flag, method (*FlagSet) Name() string +pkg flag, method (*FlagSet) Output() io.Writer +pkg html/template, type Srcset string +pkg math, func Erfcinv(float64) float64 +pkg math, func Erfinv(float64) float64 +pkg math, func Round(float64) float64 +pkg math, func RoundToEven(float64) float64 +pkg math/big, const MaxBase = 62 +pkg math/big, method (*Float) Sqrt(*Float) *Float +pkg math/big, method (*Int) CmpAbs(*Int) int +pkg math/rand, func Shuffle(int, func(int, int)) +pkg math/rand, method (*Rand) Shuffle(int, func(int, int)) +pkg net, method (*TCPListener) SyscallConn() (syscall.RawConn, error) +pkg net, method (*UnixListener) SyscallConn() (syscall.RawConn, error) +pkg net/smtp, method (*Client) Noop() error +pkg os, func IsTimeout(error) bool +pkg os, method (*File) SetDeadline(time.Time) error +pkg os, method (*File) SetReadDeadline(time.Time) error +pkg os, method (*File) SetWriteDeadline(time.Time) error +pkg os, method (*PathError) Timeout() bool +pkg os, method (*SyscallError) Timeout() bool +pkg os, var ErrNoDeadline error +pkg strings, method (*Builder) Grow(int) +pkg strings, method (*Builder) Len() int +pkg strings, method (*Builder) Reset() +pkg strings, method (*Builder) String() string +pkg strings, method (*Builder) Write([]uint8) (int, error) +pkg strings, method (*Builder) WriteByte(uint8) error +pkg strings, method (*Builder) WriteRune(int32) (int, error) +pkg strings, method (*Builder) WriteString(string) (int, error) +pkg strings, type Builder struct +pkg syscall (freebsd-386), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-386), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-amd64), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-amd64), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-arm), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-arm), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-arm-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (windows-386), func CreateProcessAsUser(Token, *uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error +pkg syscall (windows-386), type SysProcAttr struct, Token Token +pkg syscall (windows-amd64), func CreateProcessAsUser(Token, *uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error +pkg syscall (windows-amd64), type SysProcAttr struct, Token Token +pkg time, func LoadLocationFromTZData(string, []uint8) (*Location, error) +pkg unicode, const Version = "10.0.0" +pkg unicode, var Masaram_Gondi *RangeTable +pkg unicode, var Nushu *RangeTable +pkg unicode, var Regional_Indicator *RangeTable +pkg unicode, var Soyombo *RangeTable +pkg unicode, var Zanabazar_Square *RangeTable diff --git a/platform/dbops/binaries/go/go/api/go1.11.txt b/platform/dbops/binaries/go/go/api/go1.11.txt new file mode 100644 index 0000000000000000000000000000000000000000..863e1f162551fe5564e5e5de29371f4f46960fe3 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.11.txt @@ -0,0 +1,559 @@ +pkg crypto/cipher, func NewGCMWithTagSize(Block, int) (AEAD, error) +pkg crypto/rsa, method (*PrivateKey) Size() int +pkg crypto/rsa, method (*PublicKey) Size() int +pkg crypto/tls, method (*ConnectionState) ExportKeyingMaterial(string, []uint8, int) ([]uint8, error) +pkg database/sql, method (IsolationLevel) String() string +pkg database/sql, type DBStats struct, Idle int +pkg database/sql, type DBStats struct, InUse int +pkg database/sql, type DBStats struct, MaxIdleClosed int64 +pkg database/sql, type DBStats struct, MaxLifetimeClosed int64 +pkg database/sql, type DBStats struct, MaxOpenConnections int +pkg database/sql, type DBStats struct, WaitCount int64 +pkg database/sql, type DBStats struct, WaitDuration time.Duration +pkg debug/elf, const ELFOSABI_AROS = 15 +pkg debug/elf, const ELFOSABI_AROS OSABI +pkg debug/elf, const ELFOSABI_CLOUDABI = 17 +pkg debug/elf, const ELFOSABI_CLOUDABI OSABI +pkg debug/elf, const ELFOSABI_FENIXOS = 16 +pkg debug/elf, const ELFOSABI_FENIXOS OSABI +pkg debug/elf, const EM_56800EX = 200 +pkg debug/elf, const EM_56800EX Machine +pkg debug/elf, const EM_68HC05 = 72 +pkg debug/elf, const EM_68HC05 Machine +pkg debug/elf, const EM_68HC08 = 71 +pkg debug/elf, const EM_68HC08 Machine +pkg debug/elf, const EM_68HC11 = 70 +pkg debug/elf, const EM_68HC11 Machine +pkg debug/elf, const EM_68HC16 = 69 +pkg debug/elf, const EM_68HC16 Machine +pkg debug/elf, const EM_78KOR = 199 +pkg debug/elf, const EM_78KOR Machine +pkg debug/elf, const EM_8051 = 165 +pkg debug/elf, const EM_8051 Machine +pkg debug/elf, const EM_ALTERA_NIOS2 = 113 +pkg debug/elf, const EM_ALTERA_NIOS2 Machine +pkg debug/elf, const EM_AMDGPU = 224 +pkg debug/elf, const EM_AMDGPU Machine +pkg debug/elf, const EM_ARCA = 109 +pkg debug/elf, const EM_ARCA Machine +pkg debug/elf, const EM_ARC_COMPACT = 93 +pkg debug/elf, const EM_ARC_COMPACT Machine +pkg debug/elf, const EM_ARC_COMPACT2 = 195 +pkg debug/elf, const EM_ARC_COMPACT2 Machine +pkg debug/elf, const EM_AVR = 83 +pkg debug/elf, const EM_AVR Machine +pkg debug/elf, const EM_AVR32 = 185 +pkg debug/elf, const EM_AVR32 Machine +pkg debug/elf, const EM_BA1 = 201 +pkg debug/elf, const EM_BA1 Machine +pkg debug/elf, const EM_BA2 = 202 +pkg debug/elf, const EM_BA2 Machine +pkg debug/elf, const EM_BLACKFIN = 106 +pkg debug/elf, const EM_BLACKFIN Machine +pkg debug/elf, const EM_BPF = 247 +pkg debug/elf, const EM_BPF Machine +pkg debug/elf, const EM_C166 = 116 +pkg debug/elf, const EM_C166 Machine +pkg debug/elf, const EM_CDP = 215 +pkg debug/elf, const EM_CDP Machine +pkg debug/elf, const EM_CE = 119 +pkg debug/elf, const EM_CE Machine +pkg debug/elf, const EM_CLOUDSHIELD = 192 +pkg debug/elf, const EM_CLOUDSHIELD Machine +pkg debug/elf, const EM_COGE = 216 +pkg debug/elf, const EM_COGE Machine +pkg debug/elf, const EM_COOL = 217 +pkg debug/elf, const EM_COOL Machine +pkg debug/elf, const EM_COREA_1ST = 193 +pkg debug/elf, const EM_COREA_1ST Machine +pkg debug/elf, const EM_COREA_2ND = 194 +pkg debug/elf, const EM_COREA_2ND Machine +pkg debug/elf, const EM_CR = 103 +pkg debug/elf, const EM_CR Machine +pkg debug/elf, const EM_CR16 = 177 +pkg debug/elf, const EM_CR16 Machine +pkg debug/elf, const EM_CRAYNV2 = 172 +pkg debug/elf, const EM_CRAYNV2 Machine +pkg debug/elf, const EM_CRIS = 76 +pkg debug/elf, const EM_CRIS Machine +pkg debug/elf, const EM_CRX = 114 +pkg debug/elf, const EM_CRX Machine +pkg debug/elf, const EM_CSR_KALIMBA = 219 +pkg debug/elf, const EM_CSR_KALIMBA Machine +pkg debug/elf, const EM_CUDA = 190 +pkg debug/elf, const EM_CUDA Machine +pkg debug/elf, const EM_CYPRESS_M8C = 161 +pkg debug/elf, const EM_CYPRESS_M8C Machine +pkg debug/elf, const EM_D10V = 85 +pkg debug/elf, const EM_D10V Machine +pkg debug/elf, const EM_D30V = 86 +pkg debug/elf, const EM_D30V Machine +pkg debug/elf, const EM_DSP24 = 136 +pkg debug/elf, const EM_DSP24 Machine +pkg debug/elf, const EM_DSPIC30F = 118 +pkg debug/elf, const EM_DSPIC30F Machine +pkg debug/elf, const EM_DXP = 112 +pkg debug/elf, const EM_DXP Machine +pkg debug/elf, const EM_ECOG1 = 168 +pkg debug/elf, const EM_ECOG1 Machine +pkg debug/elf, const EM_ECOG16 = 176 +pkg debug/elf, const EM_ECOG16 Machine +pkg debug/elf, const EM_ECOG1X = 168 +pkg debug/elf, const EM_ECOG1X Machine +pkg debug/elf, const EM_ECOG2 = 134 +pkg debug/elf, const EM_ECOG2 Machine +pkg debug/elf, const EM_ETPU = 178 +pkg debug/elf, const EM_ETPU Machine +pkg debug/elf, const EM_EXCESS = 111 +pkg debug/elf, const EM_EXCESS Machine +pkg debug/elf, const EM_F2MC16 = 104 +pkg debug/elf, const EM_F2MC16 Machine +pkg debug/elf, const EM_FIREPATH = 78 +pkg debug/elf, const EM_FIREPATH Machine +pkg debug/elf, const EM_FR30 = 84 +pkg debug/elf, const EM_FR30 Machine +pkg debug/elf, const EM_FT32 = 222 +pkg debug/elf, const EM_FT32 Machine +pkg debug/elf, const EM_FX66 = 66 +pkg debug/elf, const EM_FX66 Machine +pkg debug/elf, const EM_HUANY = 81 +pkg debug/elf, const EM_HUANY Machine +pkg debug/elf, const EM_INTEL205 = 205 +pkg debug/elf, const EM_INTEL205 Machine +pkg debug/elf, const EM_INTEL206 = 206 +pkg debug/elf, const EM_INTEL206 Machine +pkg debug/elf, const EM_INTEL207 = 207 +pkg debug/elf, const EM_INTEL207 Machine +pkg debug/elf, const EM_INTEL208 = 208 +pkg debug/elf, const EM_INTEL208 Machine +pkg debug/elf, const EM_INTEL209 = 209 +pkg debug/elf, const EM_INTEL209 Machine +pkg debug/elf, const EM_IP2K = 101 +pkg debug/elf, const EM_IP2K Machine +pkg debug/elf, const EM_JAVELIN = 77 +pkg debug/elf, const EM_JAVELIN Machine +pkg debug/elf, const EM_K10M = 181 +pkg debug/elf, const EM_K10M Machine +pkg debug/elf, const EM_KM32 = 210 +pkg debug/elf, const EM_KM32 Machine +pkg debug/elf, const EM_KMX16 = 212 +pkg debug/elf, const EM_KMX16 Machine +pkg debug/elf, const EM_KMX32 = 211 +pkg debug/elf, const EM_KMX32 Machine +pkg debug/elf, const EM_KMX8 = 213 +pkg debug/elf, const EM_KMX8 Machine +pkg debug/elf, const EM_KVARC = 214 +pkg debug/elf, const EM_KVARC Machine +pkg debug/elf, const EM_L10M = 180 +pkg debug/elf, const EM_L10M Machine +pkg debug/elf, const EM_LANAI = 244 +pkg debug/elf, const EM_LANAI Machine +pkg debug/elf, const EM_LATTICEMICO32 = 138 +pkg debug/elf, const EM_LATTICEMICO32 Machine +pkg debug/elf, const EM_M16C = 117 +pkg debug/elf, const EM_M16C Machine +pkg debug/elf, const EM_M32C = 120 +pkg debug/elf, const EM_M32C Machine +pkg debug/elf, const EM_M32R = 88 +pkg debug/elf, const EM_M32R Machine +pkg debug/elf, const EM_MANIK = 171 +pkg debug/elf, const EM_MANIK Machine +pkg debug/elf, const EM_MAX = 102 +pkg debug/elf, const EM_MAX Machine +pkg debug/elf, const EM_MAXQ30 = 169 +pkg debug/elf, const EM_MAXQ30 Machine +pkg debug/elf, const EM_MCHP_PIC = 204 +pkg debug/elf, const EM_MCHP_PIC Machine +pkg debug/elf, const EM_MCST_ELBRUS = 175 +pkg debug/elf, const EM_MCST_ELBRUS Machine +pkg debug/elf, const EM_METAG = 174 +pkg debug/elf, const EM_METAG Machine +pkg debug/elf, const EM_MICROBLAZE = 189 +pkg debug/elf, const EM_MICROBLAZE Machine +pkg debug/elf, const EM_MMDSP_PLUS = 160 +pkg debug/elf, const EM_MMDSP_PLUS Machine +pkg debug/elf, const EM_MMIX = 80 +pkg debug/elf, const EM_MMIX Machine +pkg debug/elf, const EM_MN10200 = 90 +pkg debug/elf, const EM_MN10200 Machine +pkg debug/elf, const EM_MN10300 = 89 +pkg debug/elf, const EM_MN10300 Machine +pkg debug/elf, const EM_MOXIE = 223 +pkg debug/elf, const EM_MOXIE Machine +pkg debug/elf, const EM_MSP430 = 105 +pkg debug/elf, const EM_MSP430 Machine +pkg debug/elf, const EM_NDS32 = 167 +pkg debug/elf, const EM_NDS32 Machine +pkg debug/elf, const EM_NORC = 218 +pkg debug/elf, const EM_NORC Machine +pkg debug/elf, const EM_NS32K = 97 +pkg debug/elf, const EM_NS32K Machine +pkg debug/elf, const EM_OPEN8 = 196 +pkg debug/elf, const EM_OPEN8 Machine +pkg debug/elf, const EM_OPENRISC = 92 +pkg debug/elf, const EM_OPENRISC Machine +pkg debug/elf, const EM_PDP10 = 64 +pkg debug/elf, const EM_PDP10 Machine +pkg debug/elf, const EM_PDP11 = 65 +pkg debug/elf, const EM_PDP11 Machine +pkg debug/elf, const EM_PDSP = 63 +pkg debug/elf, const EM_PDSP Machine +pkg debug/elf, const EM_PJ = 91 +pkg debug/elf, const EM_PJ Machine +pkg debug/elf, const EM_PRISM = 82 +pkg debug/elf, const EM_PRISM Machine +pkg debug/elf, const EM_QDSP6 = 164 +pkg debug/elf, const EM_QDSP6 Machine +pkg debug/elf, const EM_R32C = 162 +pkg debug/elf, const EM_R32C Machine +pkg debug/elf, const EM_RISCV = 243 +pkg debug/elf, const EM_RISCV Machine +pkg debug/elf, const EM_RL78 = 197 +pkg debug/elf, const EM_RL78 Machine +pkg debug/elf, const EM_RS08 = 132 +pkg debug/elf, const EM_RS08 Machine +pkg debug/elf, const EM_RX = 173 +pkg debug/elf, const EM_RX Machine +pkg debug/elf, const EM_SCORE7 = 135 +pkg debug/elf, const EM_SCORE7 Machine +pkg debug/elf, const EM_SEP = 108 +pkg debug/elf, const EM_SEP Machine +pkg debug/elf, const EM_SE_C17 = 139 +pkg debug/elf, const EM_SE_C17 Machine +pkg debug/elf, const EM_SE_C33 = 107 +pkg debug/elf, const EM_SE_C33 Machine +pkg debug/elf, const EM_SHARC = 133 +pkg debug/elf, const EM_SHARC Machine +pkg debug/elf, const EM_SLE9X = 179 +pkg debug/elf, const EM_SLE9X Machine +pkg debug/elf, const EM_SNP1K = 99 +pkg debug/elf, const EM_SNP1K Machine +pkg debug/elf, const EM_ST19 = 74 +pkg debug/elf, const EM_ST19 Machine +pkg debug/elf, const EM_ST200 = 100 +pkg debug/elf, const EM_ST200 Machine +pkg debug/elf, const EM_ST7 = 68 +pkg debug/elf, const EM_ST7 Machine +pkg debug/elf, const EM_ST9PLUS = 67 +pkg debug/elf, const EM_ST9PLUS Machine +pkg debug/elf, const EM_STM8 = 186 +pkg debug/elf, const EM_STM8 Machine +pkg debug/elf, const EM_STXP7X = 166 +pkg debug/elf, const EM_STXP7X Machine +pkg debug/elf, const EM_SVX = 73 +pkg debug/elf, const EM_SVX Machine +pkg debug/elf, const EM_TILE64 = 187 +pkg debug/elf, const EM_TILE64 Machine +pkg debug/elf, const EM_TILEGX = 191 +pkg debug/elf, const EM_TILEGX Machine +pkg debug/elf, const EM_TILEPRO = 188 +pkg debug/elf, const EM_TILEPRO Machine +pkg debug/elf, const EM_TI_ARP32 = 143 +pkg debug/elf, const EM_TI_ARP32 Machine +pkg debug/elf, const EM_TI_C2000 = 141 +pkg debug/elf, const EM_TI_C2000 Machine +pkg debug/elf, const EM_TI_C5500 = 142 +pkg debug/elf, const EM_TI_C5500 Machine +pkg debug/elf, const EM_TI_C6000 = 140 +pkg debug/elf, const EM_TI_C6000 Machine +pkg debug/elf, const EM_TI_PRU = 144 +pkg debug/elf, const EM_TI_PRU Machine +pkg debug/elf, const EM_TMM_GPP = 96 +pkg debug/elf, const EM_TMM_GPP Machine +pkg debug/elf, const EM_TPC = 98 +pkg debug/elf, const EM_TPC Machine +pkg debug/elf, const EM_TRIMEDIA = 163 +pkg debug/elf, const EM_TRIMEDIA Machine +pkg debug/elf, const EM_TSK3000 = 131 +pkg debug/elf, const EM_TSK3000 Machine +pkg debug/elf, const EM_UNICORE = 110 +pkg debug/elf, const EM_UNICORE Machine +pkg debug/elf, const EM_V850 = 87 +pkg debug/elf, const EM_V850 Machine +pkg debug/elf, const EM_VAX = 75 +pkg debug/elf, const EM_VAX Machine +pkg debug/elf, const EM_VIDEOCORE = 95 +pkg debug/elf, const EM_VIDEOCORE Machine +pkg debug/elf, const EM_VIDEOCORE3 = 137 +pkg debug/elf, const EM_VIDEOCORE3 Machine +pkg debug/elf, const EM_VIDEOCORE5 = 198 +pkg debug/elf, const EM_VIDEOCORE5 Machine +pkg debug/elf, const EM_VISIUM = 221 +pkg debug/elf, const EM_VISIUM Machine +pkg debug/elf, const EM_XCORE = 203 +pkg debug/elf, const EM_XCORE Machine +pkg debug/elf, const EM_XGATE = 115 +pkg debug/elf, const EM_XGATE Machine +pkg debug/elf, const EM_XIMO16 = 170 +pkg debug/elf, const EM_XIMO16 Machine +pkg debug/elf, const EM_XTENSA = 94 +pkg debug/elf, const EM_XTENSA Machine +pkg debug/elf, const EM_Z80 = 220 +pkg debug/elf, const EM_Z80 Machine +pkg debug/elf, const EM_ZSP = 79 +pkg debug/elf, const EM_ZSP Machine +pkg debug/elf, const R_RISCV_32 = 1 +pkg debug/elf, const R_RISCV_32 R_RISCV +pkg debug/elf, const R_RISCV_64 = 2 +pkg debug/elf, const R_RISCV_64 R_RISCV +pkg debug/elf, const R_RISCV_ADD16 = 34 +pkg debug/elf, const R_RISCV_ADD16 R_RISCV +pkg debug/elf, const R_RISCV_ADD32 = 35 +pkg debug/elf, const R_RISCV_ADD32 R_RISCV +pkg debug/elf, const R_RISCV_ADD64 = 36 +pkg debug/elf, const R_RISCV_ADD64 R_RISCV +pkg debug/elf, const R_RISCV_ADD8 = 33 +pkg debug/elf, const R_RISCV_ADD8 R_RISCV +pkg debug/elf, const R_RISCV_ALIGN = 43 +pkg debug/elf, const R_RISCV_ALIGN R_RISCV +pkg debug/elf, const R_RISCV_BRANCH = 16 +pkg debug/elf, const R_RISCV_BRANCH R_RISCV +pkg debug/elf, const R_RISCV_CALL = 18 +pkg debug/elf, const R_RISCV_CALL R_RISCV +pkg debug/elf, const R_RISCV_CALL_PLT = 19 +pkg debug/elf, const R_RISCV_CALL_PLT R_RISCV +pkg debug/elf, const R_RISCV_COPY = 4 +pkg debug/elf, const R_RISCV_COPY R_RISCV +pkg debug/elf, const R_RISCV_GNU_VTENTRY = 42 +pkg debug/elf, const R_RISCV_GNU_VTENTRY R_RISCV +pkg debug/elf, const R_RISCV_GNU_VTINHERIT = 41 +pkg debug/elf, const R_RISCV_GNU_VTINHERIT R_RISCV +pkg debug/elf, const R_RISCV_GOT_HI20 = 20 +pkg debug/elf, const R_RISCV_GOT_HI20 R_RISCV +pkg debug/elf, const R_RISCV_GPREL_I = 47 +pkg debug/elf, const R_RISCV_GPREL_I R_RISCV +pkg debug/elf, const R_RISCV_GPREL_S = 48 +pkg debug/elf, const R_RISCV_GPREL_S R_RISCV +pkg debug/elf, const R_RISCV_HI20 = 26 +pkg debug/elf, const R_RISCV_HI20 R_RISCV +pkg debug/elf, const R_RISCV_JAL = 17 +pkg debug/elf, const R_RISCV_JAL R_RISCV +pkg debug/elf, const R_RISCV_JUMP_SLOT = 5 +pkg debug/elf, const R_RISCV_JUMP_SLOT R_RISCV +pkg debug/elf, const R_RISCV_LO12_I = 27 +pkg debug/elf, const R_RISCV_LO12_I R_RISCV +pkg debug/elf, const R_RISCV_LO12_S = 28 +pkg debug/elf, const R_RISCV_LO12_S R_RISCV +pkg debug/elf, const R_RISCV_NONE = 0 +pkg debug/elf, const R_RISCV_NONE R_RISCV +pkg debug/elf, const R_RISCV_PCREL_HI20 = 23 +pkg debug/elf, const R_RISCV_PCREL_HI20 R_RISCV +pkg debug/elf, const R_RISCV_PCREL_LO12_I = 24 +pkg debug/elf, const R_RISCV_PCREL_LO12_I R_RISCV +pkg debug/elf, const R_RISCV_PCREL_LO12_S = 25 +pkg debug/elf, const R_RISCV_PCREL_LO12_S R_RISCV +pkg debug/elf, const R_RISCV_RELATIVE = 3 +pkg debug/elf, const R_RISCV_RELATIVE R_RISCV +pkg debug/elf, const R_RISCV_RELAX = 51 +pkg debug/elf, const R_RISCV_RELAX R_RISCV +pkg debug/elf, const R_RISCV_RVC_BRANCH = 44 +pkg debug/elf, const R_RISCV_RVC_BRANCH R_RISCV +pkg debug/elf, const R_RISCV_RVC_JUMP = 45 +pkg debug/elf, const R_RISCV_RVC_JUMP R_RISCV +pkg debug/elf, const R_RISCV_RVC_LUI = 46 +pkg debug/elf, const R_RISCV_RVC_LUI R_RISCV +pkg debug/elf, const R_RISCV_SET16 = 55 +pkg debug/elf, const R_RISCV_SET16 R_RISCV +pkg debug/elf, const R_RISCV_SET32 = 56 +pkg debug/elf, const R_RISCV_SET32 R_RISCV +pkg debug/elf, const R_RISCV_SET6 = 53 +pkg debug/elf, const R_RISCV_SET6 R_RISCV +pkg debug/elf, const R_RISCV_SET8 = 54 +pkg debug/elf, const R_RISCV_SET8 R_RISCV +pkg debug/elf, const R_RISCV_SUB16 = 38 +pkg debug/elf, const R_RISCV_SUB16 R_RISCV +pkg debug/elf, const R_RISCV_SUB32 = 39 +pkg debug/elf, const R_RISCV_SUB32 R_RISCV +pkg debug/elf, const R_RISCV_SUB6 = 52 +pkg debug/elf, const R_RISCV_SUB6 R_RISCV +pkg debug/elf, const R_RISCV_SUB64 = 40 +pkg debug/elf, const R_RISCV_SUB64 R_RISCV +pkg debug/elf, const R_RISCV_SUB8 = 37 +pkg debug/elf, const R_RISCV_SUB8 R_RISCV +pkg debug/elf, const R_RISCV_TLS_DTPMOD32 = 6 +pkg debug/elf, const R_RISCV_TLS_DTPMOD32 R_RISCV +pkg debug/elf, const R_RISCV_TLS_DTPMOD64 = 7 +pkg debug/elf, const R_RISCV_TLS_DTPMOD64 R_RISCV +pkg debug/elf, const R_RISCV_TLS_DTPREL32 = 8 +pkg debug/elf, const R_RISCV_TLS_DTPREL32 R_RISCV +pkg debug/elf, const R_RISCV_TLS_DTPREL64 = 9 +pkg debug/elf, const R_RISCV_TLS_DTPREL64 R_RISCV +pkg debug/elf, const R_RISCV_TLS_GD_HI20 = 22 +pkg debug/elf, const R_RISCV_TLS_GD_HI20 R_RISCV +pkg debug/elf, const R_RISCV_TLS_GOT_HI20 = 21 +pkg debug/elf, const R_RISCV_TLS_GOT_HI20 R_RISCV +pkg debug/elf, const R_RISCV_TLS_TPREL32 = 10 +pkg debug/elf, const R_RISCV_TLS_TPREL32 R_RISCV +pkg debug/elf, const R_RISCV_TLS_TPREL64 = 11 +pkg debug/elf, const R_RISCV_TLS_TPREL64 R_RISCV +pkg debug/elf, const R_RISCV_TPREL_ADD = 32 +pkg debug/elf, const R_RISCV_TPREL_ADD R_RISCV +pkg debug/elf, const R_RISCV_TPREL_HI20 = 29 +pkg debug/elf, const R_RISCV_TPREL_HI20 R_RISCV +pkg debug/elf, const R_RISCV_TPREL_I = 49 +pkg debug/elf, const R_RISCV_TPREL_I R_RISCV +pkg debug/elf, const R_RISCV_TPREL_LO12_I = 30 +pkg debug/elf, const R_RISCV_TPREL_LO12_I R_RISCV +pkg debug/elf, const R_RISCV_TPREL_LO12_S = 31 +pkg debug/elf, const R_RISCV_TPREL_LO12_S R_RISCV +pkg debug/elf, const R_RISCV_TPREL_S = 50 +pkg debug/elf, const R_RISCV_TPREL_S R_RISCV +pkg debug/elf, method (R_RISCV) GoString() string +pkg debug/elf, method (R_RISCV) String() string +pkg debug/elf, type R_RISCV int +pkg debug/macho, const CpuArm64 = 16777228 +pkg debug/macho, const CpuArm64 Cpu +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE = 7 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC = 5 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT = 11 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG = 6 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT = 13 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION = 3 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT = 0 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR = 8 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT = 12 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT = 1 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG = 10 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE = 2 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_SECURITY = 4 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_SECURITY ideal-int +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_TLS = 9 +pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_TLS ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_ARM64 = 43620 +pkg debug/pe, const IMAGE_FILE_MACHINE_ARM64 ideal-int +pkg go/ast, type CompositeLit struct, Incomplete bool +pkg go/token, method (*File) AddLineColumnInfo(int, string, int, int) +pkg go/types, func NewInterfaceType([]*Func, []Type) *Interface +pkg go/types, method (*Interface) EmbeddedType(int) Type +pkg go/types, method (*Var) Embedded() bool +pkg net, method (*ListenConfig) Listen(context.Context, string, string) (Listener, error) +pkg net, method (*ListenConfig) ListenPacket(context.Context, string, string) (PacketConn, error) +pkg net, type Dialer struct, Control func(string, string, syscall.RawConn) error +pkg net, type ListenConfig struct +pkg net, type ListenConfig struct, Control func(string, string, syscall.RawConn) error +pkg net/http, const SameSiteDefaultMode = 1 +pkg net/http, const SameSiteDefaultMode SameSite +pkg net/http, const SameSiteLaxMode = 2 +pkg net/http, const SameSiteLaxMode SameSite +pkg net/http, const SameSiteStrictMode = 3 +pkg net/http, const SameSiteStrictMode SameSite +pkg net/http, const StatusMisdirectedRequest = 421 +pkg net/http, const StatusMisdirectedRequest ideal-int +pkg net/http, type Cookie struct, SameSite SameSite +pkg net/http, type SameSite int +pkg net/http, type Transport struct, MaxConnsPerHost int +pkg net/http/httptrace, type ClientTrace struct, Got1xxResponse func(int, textproto.MIMEHeader) error +pkg net/http/httptrace, type ClientTrace struct, WroteHeaderField func(string, []string) +pkg net/http/httputil, type ReverseProxy struct, ErrorHandler func(http.ResponseWriter, *http.Request, error) +pkg os, const ModeIrregular = 524288 +pkg os, const ModeIrregular FileMode +pkg os, const ModeType = 2399666176 +pkg os, func UserCacheDir() (string, error) +pkg os/signal, func Ignored(os.Signal) bool +pkg regexp/syntax, method (Op) String() string +pkg runtime/trace, func IsEnabled() bool +pkg runtime/trace, func Log(context.Context, string, string) +pkg runtime/trace, func Logf(context.Context, string, string, ...interface{}) +pkg runtime/trace, func NewTask(context.Context, string) (context.Context, *Task) +pkg runtime/trace, func StartRegion(context.Context, string) *Region +pkg runtime/trace, func WithRegion(context.Context, string, func()) +pkg runtime/trace, method (*Region) End() +pkg runtime/trace, method (*Task) End() +pkg runtime/trace, type Region struct +pkg runtime/trace, type Task struct +pkg syscall (netbsd-386), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-386), func Pipe2([]int, int) error +pkg syscall (netbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-386-cgo), func Pipe2([]int, int) error +pkg syscall (netbsd-amd64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64), func Pipe2([]int, int) error +pkg syscall (netbsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func Pipe2([]int, int) error +pkg syscall (netbsd-arm), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm), func Pipe2([]int, int) error +pkg syscall (netbsd-arm-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func Pipe2([]int, int) error +pkg syscall (openbsd-386), const SOCK_CLOEXEC = 32768 +pkg syscall (openbsd-386), const SOCK_CLOEXEC ideal-int +pkg syscall (openbsd-386), const SOCK_NONBLOCK = 16384 +pkg syscall (openbsd-386), const SOCK_NONBLOCK ideal-int +pkg syscall (openbsd-386), const SYS_ACCEPT4 = 93 +pkg syscall (openbsd-386), const SYS_ACCEPT4 ideal-int +pkg syscall (openbsd-386), const SYS_PIPE2 = 101 +pkg syscall (openbsd-386), const SYS_PIPE2 ideal-int +pkg syscall (openbsd-386), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (openbsd-386), func Pipe2([]int, int) error +pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC = 32768 +pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK = 16384 +pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 = 93 +pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PIPE2 = 101 +pkg syscall (openbsd-386-cgo), const SYS_PIPE2 ideal-int +pkg syscall (openbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (openbsd-386-cgo), func Pipe2([]int, int) error +pkg syscall (openbsd-amd64), const SOCK_CLOEXEC = 32768 +pkg syscall (openbsd-amd64), const SOCK_CLOEXEC ideal-int +pkg syscall (openbsd-amd64), const SOCK_NONBLOCK = 16384 +pkg syscall (openbsd-amd64), const SOCK_NONBLOCK ideal-int +pkg syscall (openbsd-amd64), const SYS_ACCEPT4 = 93 +pkg syscall (openbsd-amd64), const SYS_ACCEPT4 ideal-int +pkg syscall (openbsd-amd64), const SYS_PIPE2 = 101 +pkg syscall (openbsd-amd64), const SYS_PIPE2 ideal-int +pkg syscall (openbsd-amd64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64), func Pipe2([]int, int) error +pkg syscall (openbsd-amd64-cgo), const SOCK_CLOEXEC = 32768 +pkg syscall (openbsd-amd64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const SOCK_NONBLOCK = 16384 +pkg syscall (openbsd-amd64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT4 = 93 +pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PIPE2 = 101 +pkg syscall (openbsd-amd64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (openbsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func Pipe2([]int, int) error +pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID = 256 +pkg syscall (windows-386), const TOKEN_ADJUST_SESSIONID ideal-int +pkg syscall (windows-386), const TOKEN_ALL_ACCESS = 983551 +pkg syscall (windows-386), type AddrinfoW struct, Addr Pointer +pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara Pointer +pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus Pointer +pkg syscall (windows-386), type CertContext struct, CertInfo *CertInfo +pkg syscall (windows-386), type CertInfo struct +pkg syscall (windows-386), type CertRevocationCrlInfo struct +pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo *CertRevocationCrlInfo +pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo Pointer +pkg syscall (windows-386), type CertSimpleChain struct, TrustListInfo *CertTrustListInfo +pkg syscall (windows-386), type CertTrustListInfo struct +pkg syscall (windows-386), type Pointer *struct +pkg syscall (windows-amd64), const TOKEN_ADJUST_SESSIONID = 256 +pkg syscall (windows-amd64), const TOKEN_ADJUST_SESSIONID ideal-int +pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS = 983551 +pkg syscall (windows-amd64), type AddrinfoW struct, Addr Pointer +pkg syscall (windows-amd64), type CertChainPolicyPara struct, ExtraPolicyPara Pointer +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatus Pointer +pkg syscall (windows-amd64), type CertContext struct, CertInfo *CertInfo +pkg syscall (windows-amd64), type CertInfo struct +pkg syscall (windows-amd64), type CertRevocationCrlInfo struct +pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo *CertRevocationCrlInfo +pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo Pointer +pkg syscall (windows-amd64), type CertSimpleChain struct, TrustListInfo *CertTrustListInfo +pkg syscall (windows-amd64), type CertTrustListInfo struct +pkg syscall (windows-amd64), type Pointer *struct +pkg syscall, const ImplementsGetwd = true +pkg text/template/parse, type PipeNode struct, IsAssign bool diff --git a/platform/dbops/binaries/go/go/api/go1.12.txt b/platform/dbops/binaries/go/go/api/go1.12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d525cb86eef0e3ea4d63bcf2a8694343e4eb0d9 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.12.txt @@ -0,0 +1,228 @@ +pkg bytes, func ReplaceAll([]uint8, []uint8, []uint8) []uint8 +pkg crypto/tls, const TLS_AES_128_GCM_SHA256 = 4865 +pkg crypto/tls, const TLS_AES_128_GCM_SHA256 uint16 +pkg crypto/tls, const TLS_AES_256_GCM_SHA384 = 4866 +pkg crypto/tls, const TLS_AES_256_GCM_SHA384 uint16 +pkg crypto/tls, const TLS_CHACHA20_POLY1305_SHA256 = 4867 +pkg crypto/tls, const TLS_CHACHA20_POLY1305_SHA256 uint16 +pkg crypto/tls, const VersionTLS13 = 772 +pkg crypto/tls, const VersionTLS13 ideal-int +pkg crypto/tls, type RecordHeaderError struct, Conn net.Conn +pkg debug/elf, const R_RISCV_32_PCREL = 57 +pkg debug/elf, const R_RISCV_32_PCREL R_RISCV +pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT = 452 +pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT ideal-int +pkg expvar, method (*Map) Delete(string) +pkg go/doc, const PreserveAST = 4 +pkg go/doc, const PreserveAST Mode +pkg go/importer, func ForCompiler(*token.FileSet, string, Lookup) types.Importer +pkg go/token, method (*File) LineStart(int) Pos +pkg io, type StringWriter interface { WriteString } +pkg io, type StringWriter interface, WriteString(string) (int, error) +pkg log, method (*Logger) Writer() io.Writer +pkg math/bits, func Add(uint, uint, uint) (uint, uint) +pkg math/bits, func Add32(uint32, uint32, uint32) (uint32, uint32) +pkg math/bits, func Add64(uint64, uint64, uint64) (uint64, uint64) +pkg math/bits, func Div(uint, uint, uint) (uint, uint) +pkg math/bits, func Div32(uint32, uint32, uint32) (uint32, uint32) +pkg math/bits, func Div64(uint64, uint64, uint64) (uint64, uint64) +pkg math/bits, func Mul(uint, uint) (uint, uint) +pkg math/bits, func Mul32(uint32, uint32) (uint32, uint32) +pkg math/bits, func Mul64(uint64, uint64) (uint64, uint64) +pkg math/bits, func Sub(uint, uint, uint) (uint, uint) +pkg math/bits, func Sub32(uint32, uint32, uint32) (uint32, uint32) +pkg math/bits, func Sub64(uint64, uint64, uint64) (uint64, uint64) +pkg net/http, const StatusTooEarly = 425 +pkg net/http, const StatusTooEarly ideal-int +pkg net/http, method (*Client) CloseIdleConnections() +pkg os, const ModeType = 2401763328 +pkg os, func UserHomeDir() (string, error) +pkg os, method (*File) SyscallConn() (syscall.RawConn, error) +pkg os, method (*ProcessState) ExitCode() int +pkg os/exec, method (ExitError) ExitCode() int +pkg reflect, method (*MapIter) Key() Value +pkg reflect, method (*MapIter) Next() bool +pkg reflect, method (*MapIter) Value() Value +pkg reflect, method (Value) MapRange() *MapIter +pkg reflect, type MapIter struct +pkg runtime/debug, func ReadBuildInfo() (*BuildInfo, bool) +pkg runtime/debug, type BuildInfo struct +pkg runtime/debug, type BuildInfo struct, Deps []*Module +pkg runtime/debug, type BuildInfo struct, Main Module +pkg runtime/debug, type BuildInfo struct, Path string +pkg runtime/debug, type Module struct +pkg runtime/debug, type Module struct, Path string +pkg runtime/debug, type Module struct, Replace *Module +pkg runtime/debug, type Module struct, Sum string +pkg runtime/debug, type Module struct, Version string +pkg strings, func ReplaceAll(string, string, string) string +pkg strings, method (*Builder) Cap() int +pkg syscall (freebsd-386), const S_IRWXG = 56 +pkg syscall (freebsd-386), const S_IRWXG ideal-int +pkg syscall (freebsd-386), const S_IRWXO = 7 +pkg syscall (freebsd-386), const S_IRWXO ideal-int +pkg syscall (freebsd-386), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-386), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-386), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-386), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-386), type Dirent struct, Off int64 +pkg syscall (freebsd-386), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-386), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-386), type Stat_t struct, Atim_ext int32 +pkg syscall (freebsd-386), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-386), type Stat_t struct, Btim_ext int32 +pkg syscall (freebsd-386), type Stat_t struct, Ctim_ext int32 +pkg syscall (freebsd-386), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-386), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-386), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-386), type Stat_t struct, Mtim_ext int32 +pkg syscall (freebsd-386), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-386), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-386), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-386), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-386), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-386-cgo), const S_IRWXG = 56 +pkg syscall (freebsd-386-cgo), const S_IRWXG ideal-int +pkg syscall (freebsd-386-cgo), const S_IRWXO = 7 +pkg syscall (freebsd-386-cgo), const S_IRWXO ideal-int +pkg syscall (freebsd-386-cgo), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-386-cgo), type Dirent struct, Off int64 +pkg syscall (freebsd-386-cgo), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-386-cgo), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Atim_ext int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Btim_ext int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Ctim_ext int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Mtim_ext int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-amd64), const S_IRWXG = 56 +pkg syscall (freebsd-amd64), const S_IRWXG ideal-int +pkg syscall (freebsd-amd64), const S_IRWXO = 7 +pkg syscall (freebsd-amd64), const S_IRWXO ideal-int +pkg syscall (freebsd-amd64), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-amd64), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-amd64), type Dirent struct, Off int64 +pkg syscall (freebsd-amd64), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-amd64), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-amd64), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-amd64), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-amd64), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-amd64), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-amd64-cgo), const S_IRWXG = 56 +pkg syscall (freebsd-amd64-cgo), const S_IRWXG ideal-int +pkg syscall (freebsd-amd64-cgo), const S_IRWXO = 7 +pkg syscall (freebsd-amd64-cgo), const S_IRWXO ideal-int +pkg syscall (freebsd-amd64-cgo), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Off int64 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-arm), const S_IRWXG = 56 +pkg syscall (freebsd-arm), const S_IRWXG ideal-int +pkg syscall (freebsd-arm), const S_IRWXO = 7 +pkg syscall (freebsd-arm), const S_IRWXO ideal-int +pkg syscall (freebsd-arm), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-arm), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-arm), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-arm), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-arm), type Dirent struct, Off int64 +pkg syscall (freebsd-arm), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-arm), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-arm), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-arm), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-arm), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-arm), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-arm), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-arm), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-arm), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-arm-cgo), const S_IRWXG = 56 +pkg syscall (freebsd-arm-cgo), const S_IRWXG ideal-int +pkg syscall (freebsd-arm-cgo), const S_IRWXO = 7 +pkg syscall (freebsd-arm-cgo), const S_IRWXO ideal-int +pkg syscall (freebsd-arm-cgo), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Off int64 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (openbsd-386), const S_IRWXG = 56 +pkg syscall (openbsd-386), const S_IRWXG ideal-int +pkg syscall (openbsd-386), const S_IRWXO = 7 +pkg syscall (openbsd-386), const S_IRWXO ideal-int +pkg syscall (openbsd-386-cgo), const S_IRWXG = 56 +pkg syscall (openbsd-386-cgo), const S_IRWXG ideal-int +pkg syscall (openbsd-386-cgo), const S_IRWXO = 7 +pkg syscall (openbsd-386-cgo), const S_IRWXO ideal-int +pkg syscall (openbsd-amd64), const S_IRWXG = 56 +pkg syscall (openbsd-amd64), const S_IRWXG ideal-int +pkg syscall (openbsd-amd64), const S_IRWXO = 7 +pkg syscall (openbsd-amd64), const S_IRWXO ideal-int +pkg syscall (openbsd-amd64-cgo), const S_IRWXG = 56 +pkg syscall (openbsd-amd64-cgo), const S_IRWXG ideal-int +pkg syscall (openbsd-amd64-cgo), const S_IRWXO = 7 +pkg syscall (openbsd-amd64-cgo), const S_IRWXO ideal-int +pkg syscall (windows-386), const UNIX_PATH_MAX = 108 +pkg syscall (windows-386), const UNIX_PATH_MAX ideal-int +pkg syscall (windows-386), func Syscall18(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), type RawSockaddrAny struct, Pad [100]int8 +pkg syscall (windows-386), type RawSockaddrUnix struct, Family uint16 +pkg syscall (windows-386), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (windows-amd64), const UNIX_PATH_MAX = 108 +pkg syscall (windows-amd64), const UNIX_PATH_MAX ideal-int +pkg syscall (windows-amd64), func Syscall18(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [100]int8 +pkg syscall (windows-amd64), type RawSockaddrUnix struct, Family uint16 +pkg syscall (windows-amd64), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall, type RawSockaddrUnix struct diff --git a/platform/dbops/binaries/go/go/api/go1.13.txt b/platform/dbops/binaries/go/go/api/go1.13.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb0f683b378e21ca49e7849032f173a3f930f7ef --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.13.txt @@ -0,0 +1,8032 @@ +pkg bytes, func ToValidUTF8([]uint8, []uint8) []uint8 +pkg crypto/ed25519, const PrivateKeySize = 64 +pkg crypto/ed25519, const PrivateKeySize ideal-int +pkg crypto/ed25519, const PublicKeySize = 32 +pkg crypto/ed25519, const PublicKeySize ideal-int +pkg crypto/ed25519, const SeedSize = 32 +pkg crypto/ed25519, const SeedSize ideal-int +pkg crypto/ed25519, const SignatureSize = 64 +pkg crypto/ed25519, const SignatureSize ideal-int +pkg crypto/ed25519, func GenerateKey(io.Reader) (PublicKey, PrivateKey, error) +pkg crypto/ed25519, func NewKeyFromSeed([]uint8) PrivateKey +pkg crypto/ed25519, func Sign(PrivateKey, []uint8) []uint8 +pkg crypto/ed25519, func Verify(PublicKey, []uint8, []uint8) bool +pkg crypto/ed25519, method (PrivateKey) Public() crypto.PublicKey +pkg crypto/ed25519, method (PrivateKey) Seed() []uint8 +pkg crypto/ed25519, method (PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error) +pkg crypto/ed25519, type PrivateKey []uint8 +pkg crypto/ed25519, type PublicKey []uint8 +pkg crypto/tls, const Ed25519 = 2055 +pkg crypto/tls, const Ed25519 SignatureScheme +pkg crypto/x509, const Ed25519 = 4 +pkg crypto/x509, const Ed25519 PublicKeyAlgorithm +pkg crypto/x509, const PureEd25519 = 16 +pkg crypto/x509, const PureEd25519 SignatureAlgorithm +pkg database/sql, method (*Conn) Raw(func(interface{}) error) error +pkg database/sql, method (*NullInt32) Scan(interface{}) error +pkg database/sql, method (NullInt32) Value() (driver.Value, error) +pkg database/sql, method (*NullTime) Scan(interface{}) error +pkg database/sql, method (NullTime) Value() (driver.Value, error) +pkg database/sql, type NullInt32 struct +pkg database/sql, type NullInt32 struct, Int32 int32 +pkg database/sql, type NullInt32 struct, Valid bool +pkg database/sql, type NullTime struct +pkg database/sql, type NullTime struct, Time time.Time +pkg database/sql, type NullTime struct, Valid bool +pkg debug/dwarf, method (*UnsupportedType) Common() *CommonType +pkg debug/dwarf, method (*UnsupportedType) Size() int64 +pkg debug/dwarf, method (*UnsupportedType) String() string +pkg debug/dwarf, type UnsupportedType struct +pkg debug/dwarf, type UnsupportedType struct, embedded CommonType +pkg debug/dwarf, type UnsupportedType struct, Tag Tag +pkg debug/elf, type Symbol struct, Library string +pkg debug/elf, type Symbol struct, Version string +pkg encoding/csv, method (*ParseError) Unwrap() error +pkg encoding/json, method (*MarshalerError) Unwrap() error +pkg errors, func As(error, interface{}) bool +pkg errors, func Is(error, error) bool +pkg errors, func Unwrap(error) error +pkg go/constant, func Make(interface{}) Value +pkg go/constant, func Val(Value) interface{} +pkg go/token, func IsExported(string) bool +pkg go/token, func IsIdentifier(string) bool +pkg go/token, func IsKeyword(string) bool +pkg go/types, func CheckExpr(*token.FileSet, *Package, token.Pos, ast.Expr, *Info) error +pkg log, func Writer() io.Writer +pkg log/syslog (netbsd-arm64-cgo), const LOG_ALERT = 1 +pkg log/syslog (netbsd-arm64-cgo), const LOG_ALERT Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTH = 32 +pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTH Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-arm64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_CRIT = 2 +pkg log/syslog (netbsd-arm64-cgo), const LOG_CRIT Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_CRON = 72 +pkg log/syslog (netbsd-arm64-cgo), const LOG_CRON Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-arm64-cgo), const LOG_DAEMON Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG = 0 +pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR = 3 +pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP = 88 +pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_INFO = 6 +pkg log/syslog (netbsd-arm64-cgo), const LOG_INFO Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_KERN = 0 +pkg log/syslog (netbsd-arm64-cgo), const LOG_KERN Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_LPR = 48 +pkg log/syslog (netbsd-arm64-cgo), const LOG_LPR Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_MAIL = 16 +pkg log/syslog (netbsd-arm64-cgo), const LOG_MAIL Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_NEWS = 56 +pkg log/syslog (netbsd-arm64-cgo), const LOG_NEWS Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-arm64-cgo), const LOG_NOTICE Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-arm64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_USER = 8 +pkg log/syslog (netbsd-arm64-cgo), const LOG_USER Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_UUCP = 64 +pkg log/syslog (netbsd-arm64-cgo), const LOG_UUCP Priority +pkg log/syslog (netbsd-arm64-cgo), const LOG_WARNING = 4 +pkg log/syslog (netbsd-arm64-cgo), const LOG_WARNING Priority +pkg log/syslog (netbsd-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-arm64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Close() error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Err(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Info(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-arm64-cgo), type Priority int +pkg log/syslog (netbsd-arm64-cgo), type Writer struct +pkg log/syslog (netbsd-arm64), const LOG_ALERT = 1 +pkg log/syslog (netbsd-arm64), const LOG_ALERT Priority +pkg log/syslog (netbsd-arm64), const LOG_AUTH = 32 +pkg log/syslog (netbsd-arm64), const LOG_AUTH Priority +pkg log/syslog (netbsd-arm64), const LOG_AUTHPRIV = 80 +pkg log/syslog (netbsd-arm64), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-arm64), const LOG_CRIT = 2 +pkg log/syslog (netbsd-arm64), const LOG_CRIT Priority +pkg log/syslog (netbsd-arm64), const LOG_CRON = 72 +pkg log/syslog (netbsd-arm64), const LOG_CRON Priority +pkg log/syslog (netbsd-arm64), const LOG_DAEMON = 24 +pkg log/syslog (netbsd-arm64), const LOG_DAEMON Priority +pkg log/syslog (netbsd-arm64), const LOG_DEBUG = 7 +pkg log/syslog (netbsd-arm64), const LOG_DEBUG Priority +pkg log/syslog (netbsd-arm64), const LOG_EMERG = 0 +pkg log/syslog (netbsd-arm64), const LOG_EMERG Priority +pkg log/syslog (netbsd-arm64), const LOG_ERR = 3 +pkg log/syslog (netbsd-arm64), const LOG_ERR Priority +pkg log/syslog (netbsd-arm64), const LOG_FTP = 88 +pkg log/syslog (netbsd-arm64), const LOG_FTP Priority +pkg log/syslog (netbsd-arm64), const LOG_INFO = 6 +pkg log/syslog (netbsd-arm64), const LOG_INFO Priority +pkg log/syslog (netbsd-arm64), const LOG_KERN = 0 +pkg log/syslog (netbsd-arm64), const LOG_KERN Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL0 = 128 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL1 = 136 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL2 = 144 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL3 = 152 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL4 = 160 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL5 = 168 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL6 = 176 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-arm64), const LOG_LOCAL7 = 184 +pkg log/syslog (netbsd-arm64), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-arm64), const LOG_LPR = 48 +pkg log/syslog (netbsd-arm64), const LOG_LPR Priority +pkg log/syslog (netbsd-arm64), const LOG_MAIL = 16 +pkg log/syslog (netbsd-arm64), const LOG_MAIL Priority +pkg log/syslog (netbsd-arm64), const LOG_NEWS = 56 +pkg log/syslog (netbsd-arm64), const LOG_NEWS Priority +pkg log/syslog (netbsd-arm64), const LOG_NOTICE = 5 +pkg log/syslog (netbsd-arm64), const LOG_NOTICE Priority +pkg log/syslog (netbsd-arm64), const LOG_SYSLOG = 40 +pkg log/syslog (netbsd-arm64), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-arm64), const LOG_USER = 8 +pkg log/syslog (netbsd-arm64), const LOG_USER Priority +pkg log/syslog (netbsd-arm64), const LOG_UUCP = 64 +pkg log/syslog (netbsd-arm64), const LOG_UUCP Priority +pkg log/syslog (netbsd-arm64), const LOG_WARNING = 4 +pkg log/syslog (netbsd-arm64), const LOG_WARNING Priority +pkg log/syslog (netbsd-arm64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-arm64), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm64), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Close() error +pkg log/syslog (netbsd-arm64), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Err(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Info(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-arm64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-arm64), type Priority int +pkg log/syslog (netbsd-arm64), type Writer struct +pkg math/big, method (*Int) TrailingZeroBits() uint +pkg math/big, method (*Rat) SetUint64(uint64) *Rat +pkg net/http, const SameSiteNoneMode = 4 +pkg net/http, const SameSiteNoneMode SameSite +pkg net/http, const StatusEarlyHints = 103 +pkg net/http, const StatusEarlyHints ideal-int +pkg net/http, func NewRequestWithContext(context.Context, string, string, io.Reader) (*Request, error) +pkg net/http, method (Header) Clone() Header +pkg net/http, method (*Request) Clone(context.Context) *Request +pkg net/http, method (*Transport) Clone() *Transport +pkg net/http, type Server struct, BaseContext func(net.Listener) context.Context +pkg net/http, type Server struct, ConnContext func(context.Context, net.Conn) context.Context +pkg net/http, type Transport struct, ForceAttemptHTTP2 bool +pkg net/http, type Transport struct, ReadBufferSize int +pkg net/http, type Transport struct, WriteBufferSize int +pkg net, method (*DNSConfigError) Unwrap() error +pkg net, method (*OpError) Unwrap() error +pkg net, type DNSError struct, IsNotFound bool +pkg net, type ListenConfig struct, KeepAlive time.Duration +pkg net/url, method (*Error) Unwrap() error +pkg os/exec, method (*Cmd) String() string +pkg os/exec, method (*Error) Unwrap() error +pkg os, func UserConfigDir() (string, error) +pkg os, method (*LinkError) Unwrap() error +pkg os, method (*PathError) Unwrap() error +pkg os, method (*SyscallError) Unwrap() error +pkg os (netbsd-arm64-cgo), const DevNull = "/dev/null" +pkg os (netbsd-arm64-cgo), const O_APPEND = 8 +pkg os (netbsd-arm64-cgo), const O_CREATE = 512 +pkg os (netbsd-arm64-cgo), const O_EXCL = 2048 +pkg os (netbsd-arm64-cgo), const O_SYNC = 128 +pkg os (netbsd-arm64-cgo), const O_TRUNC = 1024 +pkg os (netbsd-arm64-cgo), const PathListSeparator = 58 +pkg os (netbsd-arm64-cgo), const PathSeparator = 47 +pkg os (netbsd-arm64), const DevNull = "/dev/null" +pkg os (netbsd-arm64), const O_APPEND = 8 +pkg os (netbsd-arm64), const O_CREATE = 512 +pkg os (netbsd-arm64), const O_EXCL = 2048 +pkg os (netbsd-arm64), const O_SYNC = 128 +pkg os (netbsd-arm64), const O_TRUNC = 1024 +pkg os (netbsd-arm64), const PathListSeparator = 58 +pkg os (netbsd-arm64), const PathSeparator = 47 +pkg path/filepath (netbsd-arm64-cgo), const ListSeparator = 58 +pkg path/filepath (netbsd-arm64-cgo), const Separator = 47 +pkg path/filepath (netbsd-arm64), const ListSeparator = 58 +pkg path/filepath (netbsd-arm64), const Separator = 47 +pkg reflect, method (Value) IsZero() bool +pkg runtime (netbsd-arm64-cgo), const GOARCH = "arm64" +pkg runtime (netbsd-arm64-cgo), const GOOS = "netbsd" +pkg runtime (netbsd-arm64), const GOARCH = "arm64" +pkg runtime (netbsd-arm64), const GOOS = "netbsd" +pkg strings, func ToValidUTF8(string, string) string +pkg syscall, method (Errno) Is(error) bool +pkg syscall (netbsd-arm64-cgo), const AF_APPLETALK = 16 +pkg syscall (netbsd-arm64-cgo), const AF_APPLETALK ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_ARP = 28 +pkg syscall (netbsd-arm64-cgo), const AF_ARP ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-arm64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_CCITT = 10 +pkg syscall (netbsd-arm64-cgo), const AF_CCITT ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_CHAOS = 5 +pkg syscall (netbsd-arm64-cgo), const AF_CHAOS ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_CNT = 21 +pkg syscall (netbsd-arm64-cgo), const AF_CNT ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_COIP = 20 +pkg syscall (netbsd-arm64-cgo), const AF_COIP ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT = 9 +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 +pkg syscall (netbsd-arm64-cgo), const AF_ECMA ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_HYLINK = 15 +pkg syscall (netbsd-arm64-cgo), const AF_HYLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_IEEE80211 = 32 +pkg syscall (netbsd-arm64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_IMPLINK = 3 +pkg syscall (netbsd-arm64-cgo), const AF_IMPLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_INET6 = 24 +pkg syscall (netbsd-arm64-cgo), const AF_IPX = 23 +pkg syscall (netbsd-arm64-cgo), const AF_IPX ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_ISDN = 26 +pkg syscall (netbsd-arm64-cgo), const AF_ISDN ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_ISO = 7 +pkg syscall (netbsd-arm64-cgo), const AF_ISO ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_LAT = 14 +pkg syscall (netbsd-arm64-cgo), const AF_LAT ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_LINK = 18 +pkg syscall (netbsd-arm64-cgo), const AF_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_LOCAL = 1 +pkg syscall (netbsd-arm64-cgo), const AF_LOCAL ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_MAX = 35 +pkg syscall (netbsd-arm64-cgo), const AF_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_MPLS = 33 +pkg syscall (netbsd-arm64-cgo), const AF_MPLS ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_NATM = 27 +pkg syscall (netbsd-arm64-cgo), const AF_NATM ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_NS = 6 +pkg syscall (netbsd-arm64-cgo), const AF_NS ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_OROUTE = 17 +pkg syscall (netbsd-arm64-cgo), const AF_OROUTE ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_OSI = 7 +pkg syscall (netbsd-arm64-cgo), const AF_OSI ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_PUP = 4 +pkg syscall (netbsd-arm64-cgo), const AF_PUP ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_ROUTE = 34 +pkg syscall (netbsd-arm64-cgo), const AF_ROUTE ideal-int +pkg syscall (netbsd-arm64-cgo), const AF_SNA = 11 +pkg syscall (netbsd-arm64-cgo), const AF_SNA ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-arm64-cgo), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-arm64-cgo), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-arm64-cgo), const B0 = 0 +pkg syscall (netbsd-arm64-cgo), const B0 ideal-int +pkg syscall (netbsd-arm64-cgo), const B110 = 110 +pkg syscall (netbsd-arm64-cgo), const B110 ideal-int +pkg syscall (netbsd-arm64-cgo), const B115200 = 115200 +pkg syscall (netbsd-arm64-cgo), const B115200 ideal-int +pkg syscall (netbsd-arm64-cgo), const B1200 = 1200 +pkg syscall (netbsd-arm64-cgo), const B1200 ideal-int +pkg syscall (netbsd-arm64-cgo), const B134 = 134 +pkg syscall (netbsd-arm64-cgo), const B134 ideal-int +pkg syscall (netbsd-arm64-cgo), const B14400 = 14400 +pkg syscall (netbsd-arm64-cgo), const B14400 ideal-int +pkg syscall (netbsd-arm64-cgo), const B150 = 150 +pkg syscall (netbsd-arm64-cgo), const B150 ideal-int +pkg syscall (netbsd-arm64-cgo), const B1800 = 1800 +pkg syscall (netbsd-arm64-cgo), const B1800 ideal-int +pkg syscall (netbsd-arm64-cgo), const B19200 = 19200 +pkg syscall (netbsd-arm64-cgo), const B19200 ideal-int +pkg syscall (netbsd-arm64-cgo), const B200 = 200 +pkg syscall (netbsd-arm64-cgo), const B200 ideal-int +pkg syscall (netbsd-arm64-cgo), const B230400 = 230400 +pkg syscall (netbsd-arm64-cgo), const B230400 ideal-int +pkg syscall (netbsd-arm64-cgo), const B2400 = 2400 +pkg syscall (netbsd-arm64-cgo), const B2400 ideal-int +pkg syscall (netbsd-arm64-cgo), const B28800 = 28800 +pkg syscall (netbsd-arm64-cgo), const B28800 ideal-int +pkg syscall (netbsd-arm64-cgo), const B300 = 300 +pkg syscall (netbsd-arm64-cgo), const B300 ideal-int +pkg syscall (netbsd-arm64-cgo), const B38400 = 38400 +pkg syscall (netbsd-arm64-cgo), const B38400 ideal-int +pkg syscall (netbsd-arm64-cgo), const B460800 = 460800 +pkg syscall (netbsd-arm64-cgo), const B460800 ideal-int +pkg syscall (netbsd-arm64-cgo), const B4800 = 4800 +pkg syscall (netbsd-arm64-cgo), const B4800 ideal-int +pkg syscall (netbsd-arm64-cgo), const B50 = 50 +pkg syscall (netbsd-arm64-cgo), const B50 ideal-int +pkg syscall (netbsd-arm64-cgo), const B57600 = 57600 +pkg syscall (netbsd-arm64-cgo), const B57600 ideal-int +pkg syscall (netbsd-arm64-cgo), const B600 = 600 +pkg syscall (netbsd-arm64-cgo), const B600 ideal-int +pkg syscall (netbsd-arm64-cgo), const B7200 = 7200 +pkg syscall (netbsd-arm64-cgo), const B7200 ideal-int +pkg syscall (netbsd-arm64-cgo), const B75 = 75 +pkg syscall (netbsd-arm64-cgo), const B75 ideal-int +pkg syscall (netbsd-arm64-cgo), const B76800 = 76800 +pkg syscall (netbsd-arm64-cgo), const B76800 ideal-int +pkg syscall (netbsd-arm64-cgo), const B921600 = 921600 +pkg syscall (netbsd-arm64-cgo), const B921600 ideal-int +pkg syscall (netbsd-arm64-cgo), const B9600 = 9600 +pkg syscall (netbsd-arm64-cgo), const B9600 ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-arm64-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-arm64-cgo), const BIOCFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-arm64-cgo), const BIOCGBLEN ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-arm64-cgo), const BIOCGDLT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGDLTLIST = 3222291063 +pkg syscall (netbsd-arm64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-arm64-cgo), const BIOCGETIF ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-arm64-cgo), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-arm64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGRTIMEOUT = 1074807419 +pkg syscall (netbsd-arm64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-arm64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-arm64-cgo), const BIOCGSTATS ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-arm64-cgo), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-arm64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-arm64-cgo), const BIOCPROMISC ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-arm64-cgo), const BIOCSBLEN ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-arm64-cgo), const BIOCSDLT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSETF = 2148549223 +pkg syscall (netbsd-arm64-cgo), const BIOCSETF ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-arm64-cgo), const BIOCSETIF ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-arm64-cgo), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-arm64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSRTIMEOUT = 2148549242 +pkg syscall (netbsd-arm64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-arm64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSTCPF = 2148549234 +pkg syscall (netbsd-arm64-cgo), const BIOCSTCPF ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCSUDPF = 2148549235 +pkg syscall (netbsd-arm64-cgo), const BIOCSUDPF ideal-int +pkg syscall (netbsd-arm64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-arm64-cgo), const BIOCVERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_A = 16 +pkg syscall (netbsd-arm64-cgo), const BPF_ABS = 32 +pkg syscall (netbsd-arm64-cgo), const BPF_ABS ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_ADD = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_ADD ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_A ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT = 8 +pkg syscall (netbsd-arm64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_ALU = 4 +pkg syscall (netbsd-arm64-cgo), const BPF_ALU ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_AND = 80 +pkg syscall (netbsd-arm64-cgo), const BPF_AND ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_B = 16 +pkg syscall (netbsd-arm64-cgo), const BPF_B ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-arm64-cgo), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_DIV = 48 +pkg syscall (netbsd-arm64-cgo), const BPF_DIV ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_H = 8 +pkg syscall (netbsd-arm64-cgo), const BPF_H ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_IMM = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_IMM ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_IND = 64 +pkg syscall (netbsd-arm64-cgo), const BPF_IND ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JA = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_JA ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JEQ = 16 +pkg syscall (netbsd-arm64-cgo), const BPF_JEQ ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JGE = 48 +pkg syscall (netbsd-arm64-cgo), const BPF_JGE ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JGT = 32 +pkg syscall (netbsd-arm64-cgo), const BPF_JGT ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JMP = 5 +pkg syscall (netbsd-arm64-cgo), const BPF_JMP ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_JSET = 64 +pkg syscall (netbsd-arm64-cgo), const BPF_JSET ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_K = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_K ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_LD = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_LD ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_LDX = 1 +pkg syscall (netbsd-arm64-cgo), const BPF_LDX ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_LEN = 128 +pkg syscall (netbsd-arm64-cgo), const BPF_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_LSH = 96 +pkg syscall (netbsd-arm64-cgo), const BPF_LSH ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-arm64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-arm64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MEM = 96 +pkg syscall (netbsd-arm64-cgo), const BPF_MEM ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-arm64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MISC = 7 +pkg syscall (netbsd-arm64-cgo), const BPF_MISC ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MSH = 160 +pkg syscall (netbsd-arm64-cgo), const BPF_MSH ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_MUL = 32 +pkg syscall (netbsd-arm64-cgo), const BPF_MUL ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_NEG = 128 +pkg syscall (netbsd-arm64-cgo), const BPF_NEG ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_OR = 64 +pkg syscall (netbsd-arm64-cgo), const BPF_OR ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_RELEASE = 199606 +pkg syscall (netbsd-arm64-cgo), const BPF_RELEASE ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_RET = 6 +pkg syscall (netbsd-arm64-cgo), const BPF_RET ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_RSH = 112 +pkg syscall (netbsd-arm64-cgo), const BPF_RSH ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_ST = 2 +pkg syscall (netbsd-arm64-cgo), const BPF_ST ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_STX = 3 +pkg syscall (netbsd-arm64-cgo), const BPF_STX ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_SUB = 16 +pkg syscall (netbsd-arm64-cgo), const BPF_SUB ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_TAX = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_TAX ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_TXA = 128 +pkg syscall (netbsd-arm64-cgo), const BPF_TXA ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_W = 0 +pkg syscall (netbsd-arm64-cgo), const BPF_W ideal-int +pkg syscall (netbsd-arm64-cgo), const BPF_X = 8 +pkg syscall (netbsd-arm64-cgo), const BPF_X ideal-int +pkg syscall (netbsd-arm64-cgo), const BRKINT = 2 +pkg syscall (netbsd-arm64-cgo), const BRKINT ideal-int +pkg syscall (netbsd-arm64-cgo), const CFLUSH = 15 +pkg syscall (netbsd-arm64-cgo), const CFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const CLOCAL = 32768 +pkg syscall (netbsd-arm64-cgo), const CLOCAL ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-arm64-cgo), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_FILES = 1024 +pkg syscall (netbsd-arm64-cgo), const CLONE_FILES ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_FS = 512 +pkg syscall (netbsd-arm64-cgo), const CLONE_FS ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_PID = 4096 +pkg syscall (netbsd-arm64-cgo), const CLONE_PID ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK = 16384 +pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK ideal-int +pkg syscall (netbsd-arm64-cgo), const CLONE_VM = 256 +pkg syscall (netbsd-arm64-cgo), const CLONE_VM ideal-int +pkg syscall (netbsd-arm64-cgo), const CREAD = 2048 +pkg syscall (netbsd-arm64-cgo), const CREAD ideal-int +pkg syscall (netbsd-arm64-cgo), const CS5 = 0 +pkg syscall (netbsd-arm64-cgo), const CS5 ideal-int +pkg syscall (netbsd-arm64-cgo), const CS6 = 256 +pkg syscall (netbsd-arm64-cgo), const CS6 ideal-int +pkg syscall (netbsd-arm64-cgo), const CS7 = 512 +pkg syscall (netbsd-arm64-cgo), const CS7 ideal-int +pkg syscall (netbsd-arm64-cgo), const CS8 = 768 +pkg syscall (netbsd-arm64-cgo), const CS8 ideal-int +pkg syscall (netbsd-arm64-cgo), const CSIZE = 768 +pkg syscall (netbsd-arm64-cgo), const CSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const CSTART = 17 +pkg syscall (netbsd-arm64-cgo), const CSTART ideal-int +pkg syscall (netbsd-arm64-cgo), const CSTATUS = 20 +pkg syscall (netbsd-arm64-cgo), const CSTATUS ideal-int +pkg syscall (netbsd-arm64-cgo), const CSTOP = 19 +pkg syscall (netbsd-arm64-cgo), const CSTOPB = 1024 +pkg syscall (netbsd-arm64-cgo), const CSTOPB ideal-int +pkg syscall (netbsd-arm64-cgo), const CSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const CSUSP = 26 +pkg syscall (netbsd-arm64-cgo), const CSUSP ideal-int +pkg syscall (netbsd-arm64-cgo), const CTL_MAXNAME = 12 +pkg syscall (netbsd-arm64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const CTL_NET = 4 +pkg syscall (netbsd-arm64-cgo), const CTL_NET ideal-int +pkg syscall (netbsd-arm64-cgo), const CTL_QUERY = -2 +pkg syscall (netbsd-arm64-cgo), const CTL_QUERY ideal-int +pkg syscall (netbsd-arm64-cgo), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-arm64-cgo), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_A429 = 184 +pkg syscall (netbsd-arm64-cgo), const DLT_A429 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_A653_ICM = 185 +pkg syscall (netbsd-arm64-cgo), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-arm64-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_AOS = 222 +pkg syscall (netbsd-arm64-cgo), const DLT_AOS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET = 7 +pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-arm64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-arm64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_AURORA = 126 +pkg syscall (netbsd-arm64-cgo), const DLT_AURORA ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_AX25 = 3 +pkg syscall (netbsd-arm64-cgo), const DLT_AX25 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-arm64-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B = 190 +pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS = 5 +pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC = 104 +pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-arm64-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_DECT = 221 +pkg syscall (netbsd-arm64-cgo), const DLT_DECT ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_DOCSIS = 143 +pkg syscall (netbsd-arm64-cgo), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ECONET = 115 +pkg syscall (netbsd-arm64-cgo), const DLT_ECONET ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_EN10MB = 1 +pkg syscall (netbsd-arm64-cgo), const DLT_EN10MB ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_EN3MB = 2 +pkg syscall (netbsd-arm64-cgo), const DLT_EN3MB ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ENC = 109 +pkg syscall (netbsd-arm64-cgo), const DLT_ENC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ERF = 197 +pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ERF ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS = 176 +pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FC_2 = 224 +pkg syscall (netbsd-arm64-cgo), const DLT_FC_2 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FDDI = 10 +pkg syscall (netbsd-arm64-cgo), const DLT_FDDI ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY = 107 +pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GPF_F = 171 +pkg syscall (netbsd-arm64-cgo), const DLT_GPF_F ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GPF_T = 170 +pkg syscall (netbsd-arm64-cgo), const DLT_GPF_T ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-arm64-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-arm64-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_HDLC = 16 +pkg syscall (netbsd-arm64-cgo), const DLT_HDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_HHDLC = 121 +pkg syscall (netbsd-arm64-cgo), const DLT_HHDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_HIPPI = 15 +pkg syscall (netbsd-arm64-cgo), const DLT_HIPPI ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SN = 146 +pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SP = 145 +pkg syscall (netbsd-arm64-cgo), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802 = 6 +pkg syscall (netbsd-arm64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IPMB = 199 +pkg syscall (netbsd-arm64-cgo), const DLT_IPMB ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-arm64-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IPNET = 226 +pkg syscall (netbsd-arm64-cgo), const DLT_IPNET ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-arm64-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IPV4 = 228 +pkg syscall (netbsd-arm64-cgo), const DLT_IPV4 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_IPV6 = 229 +pkg syscall (netbsd-arm64-cgo), const DLT_IPV6 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-arm64-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LAPD = 203 +pkg syscall (netbsd-arm64-cgo), const DLT_LAPD ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LIN = 212 +pkg syscall (netbsd-arm64-cgo), const DLT_LIN ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-arm64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LOOP = 108 +pkg syscall (netbsd-arm64-cgo), const DLT_LOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_LTALK = 114 +pkg syscall (netbsd-arm64-cgo), const DLT_LTALK ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MFR = 182 +pkg syscall (netbsd-arm64-cgo), const DLT_MFR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MOST = 211 +pkg syscall (netbsd-arm64-cgo), const DLT_MOST ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MPLS = 219 +pkg syscall (netbsd-arm64-cgo), const DLT_MPLS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MTP2 = 140 +pkg syscall (netbsd-arm64-cgo), const DLT_MTP2 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-arm64-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_MTP3 = 141 +pkg syscall (netbsd-arm64-cgo), const DLT_MTP3 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_NULL = 0 +pkg syscall (netbsd-arm64-cgo), const DLT_NULL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-arm64-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PFLOG = 117 +pkg syscall (netbsd-arm64-cgo), const DLT_PFLOG ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PFSYNC = 18 +pkg syscall (netbsd-arm64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPI = 192 +pkg syscall (netbsd-arm64-cgo), const DLT_PPI ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP = 9 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-arm64-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-arm64-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_PRONET = 4 +pkg syscall (netbsd-arm64-cgo), const DLT_PRONET ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_RAIF1 = 198 +pkg syscall (netbsd-arm64-cgo), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_RAW = 12 +pkg syscall (netbsd-arm64-cgo), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-arm64-cgo), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_RAW ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_RIO = 124 +pkg syscall (netbsd-arm64-cgo), const DLT_RIO ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SCCP = 142 +pkg syscall (netbsd-arm64-cgo), const DLT_SCCP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SITA = 196 +pkg syscall (netbsd-arm64-cgo), const DLT_SITA ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SLIP = 8 +pkg syscall (netbsd-arm64-cgo), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-arm64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SLIP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SUNATM = 123 +pkg syscall (netbsd-arm64-cgo), const DLT_SUNATM ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_TZSP = 128 +pkg syscall (netbsd-arm64-cgo), const DLT_TZSP ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_USB = 186 +pkg syscall (netbsd-arm64-cgo), const DLT_USB ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_WIHART = 223 +pkg syscall (netbsd-arm64-cgo), const DLT_WIHART ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-arm64-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-arm64-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-arm64-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_BLK = 6 +pkg syscall (netbsd-arm64-cgo), const DT_BLK ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_CHR = 2 +pkg syscall (netbsd-arm64-cgo), const DT_CHR ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_DIR = 4 +pkg syscall (netbsd-arm64-cgo), const DT_DIR ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_FIFO = 1 +pkg syscall (netbsd-arm64-cgo), const DT_FIFO ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_LNK = 10 +pkg syscall (netbsd-arm64-cgo), const DT_LNK ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_REG = 8 +pkg syscall (netbsd-arm64-cgo), const DT_REG ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_SOCK = 12 +pkg syscall (netbsd-arm64-cgo), const DT_SOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_UNKNOWN = 0 +pkg syscall (netbsd-arm64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const DT_WHT = 14 +pkg syscall (netbsd-arm64-cgo), const DT_WHT ideal-int +pkg syscall (netbsd-arm64-cgo), const E2BIG = 7 +pkg syscall (netbsd-arm64-cgo), const EACCES = 13 +pkg syscall (netbsd-arm64-cgo), const EADDRINUSE = 48 +pkg syscall (netbsd-arm64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-arm64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-arm64-cgo), const EAGAIN = 35 +pkg syscall (netbsd-arm64-cgo), const EALREADY = 37 +pkg syscall (netbsd-arm64-cgo), const EAUTH = 80 +pkg syscall (netbsd-arm64-cgo), const EAUTH Errno +pkg syscall (netbsd-arm64-cgo), const EBADF = 9 +pkg syscall (netbsd-arm64-cgo), const EBADMSG = 88 +pkg syscall (netbsd-arm64-cgo), const EBADMSG Errno +pkg syscall (netbsd-arm64-cgo), const EBADRPC = 72 +pkg syscall (netbsd-arm64-cgo), const EBADRPC Errno +pkg syscall (netbsd-arm64-cgo), const EBUSY = 16 +pkg syscall (netbsd-arm64-cgo), const ECANCELED = 87 +pkg syscall (netbsd-arm64-cgo), const ECHILD = 10 +pkg syscall (netbsd-arm64-cgo), const ECHO = 8 +pkg syscall (netbsd-arm64-cgo), const ECHOCTL = 64 +pkg syscall (netbsd-arm64-cgo), const ECHOCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHOE = 2 +pkg syscall (netbsd-arm64-cgo), const ECHOE ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHO ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHOK = 4 +pkg syscall (netbsd-arm64-cgo), const ECHOKE = 1 +pkg syscall (netbsd-arm64-cgo), const ECHOKE ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHOK ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHONL = 16 +pkg syscall (netbsd-arm64-cgo), const ECHONL ideal-int +pkg syscall (netbsd-arm64-cgo), const ECHOPRT = 32 +pkg syscall (netbsd-arm64-cgo), const ECHOPRT ideal-int +pkg syscall (netbsd-arm64-cgo), const ECONNABORTED = 53 +pkg syscall (netbsd-arm64-cgo), const ECONNREFUSED = 61 +pkg syscall (netbsd-arm64-cgo), const ECONNRESET = 54 +pkg syscall (netbsd-arm64-cgo), const EDEADLK = 11 +pkg syscall (netbsd-arm64-cgo), const EDESTADDRREQ = 39 +pkg syscall (netbsd-arm64-cgo), const EDOM = 33 +pkg syscall (netbsd-arm64-cgo), const EDQUOT = 69 +pkg syscall (netbsd-arm64-cgo), const EEXIST = 17 +pkg syscall (netbsd-arm64-cgo), const EFAULT = 14 +pkg syscall (netbsd-arm64-cgo), const EFBIG = 27 +pkg syscall (netbsd-arm64-cgo), const EFTYPE = 79 +pkg syscall (netbsd-arm64-cgo), const EFTYPE Errno +pkg syscall (netbsd-arm64-cgo), const EHOSTDOWN = 64 +pkg syscall (netbsd-arm64-cgo), const EHOSTUNREACH = 65 +pkg syscall (netbsd-arm64-cgo), const EIDRM = 82 +pkg syscall (netbsd-arm64-cgo), const EILSEQ = 85 +pkg syscall (netbsd-arm64-cgo), const EINPROGRESS = 36 +pkg syscall (netbsd-arm64-cgo), const EINTR = 4 +pkg syscall (netbsd-arm64-cgo), const EINVAL = 22 +pkg syscall (netbsd-arm64-cgo), const EIO = 5 +pkg syscall (netbsd-arm64-cgo), const EISCONN = 56 +pkg syscall (netbsd-arm64-cgo), const EISDIR = 21 +pkg syscall (netbsd-arm64-cgo), const ELAST = 96 +pkg syscall (netbsd-arm64-cgo), const ELAST Errno +pkg syscall (netbsd-arm64-cgo), const ELOOP = 62 +pkg syscall (netbsd-arm64-cgo), const EMFILE = 24 +pkg syscall (netbsd-arm64-cgo), const EMLINK = 31 +pkg syscall (netbsd-arm64-cgo), const EMSGSIZE = 40 +pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX = 1 +pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-arm64-cgo), const EMUL_LINUX ideal-int +pkg syscall (netbsd-arm64-cgo), const EMUL_MAXID = 6 +pkg syscall (netbsd-arm64-cgo), const EMUL_MAXID ideal-int +pkg syscall (netbsd-arm64-cgo), const EMULTIHOP = 94 +pkg syscall (netbsd-arm64-cgo), const EMULTIHOP Errno +pkg syscall (netbsd-arm64-cgo), const ENAMETOOLONG = 63 +pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH = 81 +pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH Errno +pkg syscall (netbsd-arm64-cgo), const ENETDOWN = 50 +pkg syscall (netbsd-arm64-cgo), const ENETRESET = 52 +pkg syscall (netbsd-arm64-cgo), const ENETUNREACH = 51 +pkg syscall (netbsd-arm64-cgo), const ENFILE = 23 +pkg syscall (netbsd-arm64-cgo), const ENOATTR = 93 +pkg syscall (netbsd-arm64-cgo), const ENOATTR Errno +pkg syscall (netbsd-arm64-cgo), const ENOBUFS = 55 +pkg syscall (netbsd-arm64-cgo), const ENODATA = 89 +pkg syscall (netbsd-arm64-cgo), const ENODATA Errno +pkg syscall (netbsd-arm64-cgo), const ENODEV = 19 +pkg syscall (netbsd-arm64-cgo), const ENOEXEC = 8 +pkg syscall (netbsd-arm64-cgo), const ENOLCK = 77 +pkg syscall (netbsd-arm64-cgo), const ENOLINK = 95 +pkg syscall (netbsd-arm64-cgo), const ENOLINK Errno +pkg syscall (netbsd-arm64-cgo), const ENOMEM = 12 +pkg syscall (netbsd-arm64-cgo), const ENOMSG = 83 +pkg syscall (netbsd-arm64-cgo), const ENOPROTOOPT = 42 +pkg syscall (netbsd-arm64-cgo), const ENOSPC = 28 +pkg syscall (netbsd-arm64-cgo), const ENOSR = 90 +pkg syscall (netbsd-arm64-cgo), const ENOSR Errno +pkg syscall (netbsd-arm64-cgo), const ENOSTR = 91 +pkg syscall (netbsd-arm64-cgo), const ENOSTR Errno +pkg syscall (netbsd-arm64-cgo), const ENOSYS = 78 +pkg syscall (netbsd-arm64-cgo), const ENOTBLK = 15 +pkg syscall (netbsd-arm64-cgo), const ENOTCONN = 57 +pkg syscall (netbsd-arm64-cgo), const ENOTDIR = 20 +pkg syscall (netbsd-arm64-cgo), const ENOTEMPTY = 66 +pkg syscall (netbsd-arm64-cgo), const ENOTSOCK = 38 +pkg syscall (netbsd-arm64-cgo), const ENOTSUP = 86 +pkg syscall (netbsd-arm64-cgo), const ENOTTY = 25 +pkg syscall (netbsd-arm64-cgo), const ENXIO = 6 +pkg syscall (netbsd-arm64-cgo), const EOPNOTSUPP = 45 +pkg syscall (netbsd-arm64-cgo), const EOVERFLOW = 84 +pkg syscall (netbsd-arm64-cgo), const EPERM = 1 +pkg syscall (netbsd-arm64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-arm64-cgo), const EPIPE = 32 +pkg syscall (netbsd-arm64-cgo), const EPROCLIM = 67 +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 +pkg syscall (netbsd-arm64-cgo), const EPROTO Errno +pkg syscall (netbsd-arm64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-arm64-cgo), const EPROTOTYPE = 41 +pkg syscall (netbsd-arm64-cgo), const ERANGE = 34 +pkg syscall (netbsd-arm64-cgo), const EREMOTE = 71 +pkg syscall (netbsd-arm64-cgo), const EROFS = 30 +pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH = 73 +pkg syscall (netbsd-arm64-cgo), const ERPCMISMATCH Errno +pkg syscall (netbsd-arm64-cgo), const ESHUTDOWN = 58 +pkg syscall (netbsd-arm64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-arm64-cgo), const ESPIPE = 29 +pkg syscall (netbsd-arm64-cgo), const ESRCH = 3 +pkg syscall (netbsd-arm64-cgo), const ESTALE = 70 +pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-arm64-cgo), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERMIN = 46 +pkg syscall (netbsd-arm64-cgo), const ETHERMIN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERMTU = 1500 +pkg syscall (netbsd-arm64-cgo), const ETHERMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-arm64-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-arm64-cgo), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-arm64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm64-cgo), const ETIME = 92 +pkg syscall (netbsd-arm64-cgo), const ETIMEDOUT = 60 +pkg syscall (netbsd-arm64-cgo), const ETIME Errno +pkg syscall (netbsd-arm64-cgo), const ETOOMANYREFS = 59 +pkg syscall (netbsd-arm64-cgo), const ETXTBSY = 26 +pkg syscall (netbsd-arm64-cgo), const EUSERS = 68 +pkg syscall (netbsd-arm64-cgo), const EV_ADD = 1 +pkg syscall (netbsd-arm64-cgo), const EV_ADD ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_CLEAR = 32 +pkg syscall (netbsd-arm64-cgo), const EV_CLEAR ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_DELETE = 2 +pkg syscall (netbsd-arm64-cgo), const EV_DELETE ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_DISABLE = 8 +pkg syscall (netbsd-arm64-cgo), const EV_DISABLE ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_ENABLE = 4 +pkg syscall (netbsd-arm64-cgo), const EV_ENABLE ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_EOF = 32768 +pkg syscall (netbsd-arm64-cgo), const EV_EOF ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_ERROR = 16384 +pkg syscall (netbsd-arm64-cgo), const EV_ERROR ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_AIO = 2 +pkg syscall (netbsd-arm64-cgo), const EVFILT_AIO ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_PROC = 4 +pkg syscall (netbsd-arm64-cgo), const EVFILT_PROC ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_READ = 0 +pkg syscall (netbsd-arm64-cgo), const EVFILT_READ ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-arm64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-arm64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_TIMER = 6 +pkg syscall (netbsd-arm64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_VNODE = 3 +pkg syscall (netbsd-arm64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-arm64-cgo), const EVFILT_WRITE = 1 +pkg syscall (netbsd-arm64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_FLAG1 = 8192 +pkg syscall (netbsd-arm64-cgo), const EV_FLAG1 ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_ONESHOT = 16 +pkg syscall (netbsd-arm64-cgo), const EV_ONESHOT ideal-int +pkg syscall (netbsd-arm64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-arm64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const EWOULDBLOCK = 35 +pkg syscall (netbsd-arm64-cgo), const EXDEV = 18 +pkg syscall (netbsd-arm64-cgo), const EXTA = 19200 +pkg syscall (netbsd-arm64-cgo), const EXTA ideal-int +pkg syscall (netbsd-arm64-cgo), const EXTB = 38400 +pkg syscall (netbsd-arm64-cgo), const EXTB ideal-int +pkg syscall (netbsd-arm64-cgo), const EXTPROC = 2048 +pkg syscall (netbsd-arm64-cgo), const EXTPROC ideal-int +pkg syscall (netbsd-arm64-cgo), const F_CLOSEM = 10 +pkg syscall (netbsd-arm64-cgo), const F_CLOSEM ideal-int +pkg syscall (netbsd-arm64-cgo), const FD_CLOEXEC = 1 +pkg syscall (netbsd-arm64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const FD_SETSIZE = 256 +pkg syscall (netbsd-arm64-cgo), const FD_SETSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const F_DUPFD = 0 +pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const F_DUPFD ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSCTL = -2147483648 +pkg syscall (netbsd-arm64-cgo), const F_FSCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-arm64-cgo), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSIN = 268435456 +pkg syscall (netbsd-arm64-cgo), const F_FSIN ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSINOUT = 805306368 +pkg syscall (netbsd-arm64-cgo), const F_FSINOUT ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSOUT = 536870912 +pkg syscall (netbsd-arm64-cgo), const F_FSOUT ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSPRIV = 32768 +pkg syscall (netbsd-arm64-cgo), const F_FSPRIV ideal-int +pkg syscall (netbsd-arm64-cgo), const F_FSVOID = 1073741824 +pkg syscall (netbsd-arm64-cgo), const F_FSVOID ideal-int +pkg syscall (netbsd-arm64-cgo), const F_GETFD = 1 +pkg syscall (netbsd-arm64-cgo), const F_GETFD ideal-int +pkg syscall (netbsd-arm64-cgo), const F_GETFL = 3 +pkg syscall (netbsd-arm64-cgo), const F_GETFL ideal-int +pkg syscall (netbsd-arm64-cgo), const F_GETLK = 7 +pkg syscall (netbsd-arm64-cgo), const F_GETLK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-arm64-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const F_GETOWN = 5 +pkg syscall (netbsd-arm64-cgo), const F_GETOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const FLUSHO = 8388608 +pkg syscall (netbsd-arm64-cgo), const FLUSHO ideal-int +pkg syscall (netbsd-arm64-cgo), const F_MAXFD = 11 +pkg syscall (netbsd-arm64-cgo), const F_MAXFD ideal-int +pkg syscall (netbsd-arm64-cgo), const F_OK = 0 +pkg syscall (netbsd-arm64-cgo), const F_OK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-arm64-cgo), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-arm64-cgo), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const F_RDLCK = 1 +pkg syscall (netbsd-arm64-cgo), const F_RDLCK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETFD = 2 +pkg syscall (netbsd-arm64-cgo), const F_SETFD ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETFL = 4 +pkg syscall (netbsd-arm64-cgo), const F_SETFL ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETLK = 8 +pkg syscall (netbsd-arm64-cgo), const F_SETLK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETLKW = 9 +pkg syscall (netbsd-arm64-cgo), const F_SETLKW ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const F_SETOWN = 6 +pkg syscall (netbsd-arm64-cgo), const F_SETOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const F_UNLCK = 2 +pkg syscall (netbsd-arm64-cgo), const F_UNLCK ideal-int +pkg syscall (netbsd-arm64-cgo), const F_WRLCK = 3 +pkg syscall (netbsd-arm64-cgo), const F_WRLCK ideal-int +pkg syscall (netbsd-arm64-cgo), const HUPCL = 16384 +pkg syscall (netbsd-arm64-cgo), const HUPCL ideal-int +pkg syscall (netbsd-arm64-cgo), const ICANON = 256 +pkg syscall (netbsd-arm64-cgo), const ICANON ideal-int +pkg syscall (netbsd-arm64-cgo), const ICMP6_FILTER = 18 +pkg syscall (netbsd-arm64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-arm64-cgo), const ICRNL = 256 +pkg syscall (netbsd-arm64-cgo), const ICRNL ideal-int +pkg syscall (netbsd-arm64-cgo), const IEXTEN = 1024 +pkg syscall (netbsd-arm64-cgo), const IEXTEN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-arm64-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-arm64-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFA_ROUTE = 1 +pkg syscall (netbsd-arm64-cgo), const IFA_ROUTE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-arm64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-arm64-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_DEBUG = 4 +pkg syscall (netbsd-arm64-cgo), const IFF_DEBUG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_LINK0 = 4096 +pkg syscall (netbsd-arm64-cgo), const IFF_LINK0 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_LINK1 = 8192 +pkg syscall (netbsd-arm64-cgo), const IFF_LINK1 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_LINK2 = 16384 +pkg syscall (netbsd-arm64-cgo), const IFF_LINK2 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-arm64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-arm64-cgo), const IFF_NOARP = 128 +pkg syscall (netbsd-arm64-cgo), const IFF_NOARP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-arm64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-arm64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-arm64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_PROMISC = 256 +pkg syscall (netbsd-arm64-cgo), const IFF_PROMISC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_RUNNING = 64 +pkg syscall (netbsd-arm64-cgo), const IFF_RUNNING ideal-int +pkg syscall (netbsd-arm64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-arm64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-arm64-cgo), const IFNAMSIZ = 16 +pkg syscall (netbsd-arm64-cgo), const IFNAMSIZ ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_1822 = 2 +pkg syscall (netbsd-arm64-cgo), const IFT_1822 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-arm64-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_AAL2 = 187 +pkg syscall (netbsd-arm64-cgo), const IFT_AAL2 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_AAL5 = 49 +pkg syscall (netbsd-arm64-cgo), const IFT_AAL5 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ADSL = 94 +pkg syscall (netbsd-arm64-cgo), const IFT_ADSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-arm64-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ARAP = 88 +pkg syscall (netbsd-arm64-cgo), const IFT_ARAP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET = 35 +pkg syscall (netbsd-arm64-cgo), const IFT_ARCNET ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-arm64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ASYNC = 84 +pkg syscall (netbsd-arm64-cgo), const IFT_ASYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATM = 37 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMDXI = 105 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMIMA = 107 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-arm64-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_BRIDGE = 209 +pkg syscall (netbsd-arm64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_BSC = 83 +pkg syscall (netbsd-arm64-cgo), const IFT_BSC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CARP = 248 +pkg syscall (netbsd-arm64-cgo), const IFT_CARP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-arm64-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CEPT = 19 +pkg syscall (netbsd-arm64-cgo), const IFT_CEPT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CES = 133 +pkg syscall (netbsd-arm64-cgo), const IFT_CES ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CHANNEL = 70 +pkg syscall (netbsd-arm64-cgo), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_CNR = 85 +pkg syscall (netbsd-arm64-cgo), const IFT_CNR ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_COFFEE = 132 +pkg syscall (netbsd-arm64-cgo), const IFT_COFFEE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-arm64-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DCN = 141 +pkg syscall (netbsd-arm64-cgo), const IFT_DCN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DLSW = 74 +pkg syscall (netbsd-arm64-cgo), const IFT_DLSW ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DS0 = 81 +pkg syscall (netbsd-arm64-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-arm64-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DS0 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DS1FDL = 170 +pkg syscall (netbsd-arm64-cgo), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DS3 = 30 +pkg syscall (netbsd-arm64-cgo), const IFT_DS3 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DTM = 140 +pkg syscall (netbsd-arm64-cgo), const IFT_DTM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DVBASILN = 172 +pkg syscall (netbsd-arm64-cgo), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-arm64-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-arm64-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ECONET = 206 +pkg syscall (netbsd-arm64-cgo), const IFT_ECONET ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_EON = 25 +pkg syscall (netbsd-arm64-cgo), const IFT_EON ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_EPLRS = 87 +pkg syscall (netbsd-arm64-cgo), const IFT_EPLRS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ESCON = 73 +pkg syscall (netbsd-arm64-cgo), const IFT_ESCON ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ETHER = 6 +pkg syscall (netbsd-arm64-cgo), const IFT_ETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FAITH = 242 +pkg syscall (netbsd-arm64-cgo), const IFT_FAITH ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FAST = 125 +pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHER = 62 +pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FAST ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FDDI = 15 +pkg syscall (netbsd-arm64-cgo), const IFT_FDDI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-arm64-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-arm64-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-arm64-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRELAY = 32 +pkg syscall (netbsd-arm64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-arm64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-arm64-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-arm64-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-arm64-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_G703AT64K = 66 +pkg syscall (netbsd-arm64-cgo), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_GIF = 240 +pkg syscall (netbsd-arm64-cgo), const IFT_GIF ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-arm64-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_GR303IDT = 178 +pkg syscall (netbsd-arm64-cgo), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_GR303RDT = 177 +pkg syscall (netbsd-arm64-cgo), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-arm64-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_H323PROXY = 165 +pkg syscall (netbsd-arm64-cgo), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HDH1822 = 3 +pkg syscall (netbsd-arm64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HDLC = 118 +pkg syscall (netbsd-arm64-cgo), const IFT_HDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HDSL2 = 168 +pkg syscall (netbsd-arm64-cgo), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-arm64-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HIPPI = 47 +pkg syscall (netbsd-arm64-cgo), const IFT_HIPPI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-arm64-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-arm64-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HSSI = 46 +pkg syscall (netbsd-arm64-cgo), const IFT_HSSI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_HY = 14 +pkg syscall (netbsd-arm64-cgo), const IFT_HY ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-arm64-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IDSL = 154 +pkg syscall (netbsd-arm64-cgo), const IFT_IDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-arm64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IFGSN = 145 +pkg syscall (netbsd-arm64-cgo), const IFT_IFGSN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IMT = 190 +pkg syscall (netbsd-arm64-cgo), const IFT_IMT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-arm64-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-arm64-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IP = 126 +pkg syscall (netbsd-arm64-cgo), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-arm64-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-arm64-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-arm64-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISDN = 63 +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISDN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNS = 75 +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNU = 76 +pkg syscall (netbsd-arm64-cgo), const IFT_ISDNU ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88023 = 7 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88024 = 8 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025 = 9 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88026 = 10 +pkg syscall (netbsd-arm64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ISUP = 179 +pkg syscall (netbsd-arm64-cgo), const IFT_ISUP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_L2VLAN = 135 +pkg syscall (netbsd-arm64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-arm64-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-arm64-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LAPB = 16 +pkg syscall (netbsd-arm64-cgo), const IFT_LAPB ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LAPD = 77 +pkg syscall (netbsd-arm64-cgo), const IFT_LAPD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LAPF = 119 +pkg syscall (netbsd-arm64-cgo), const IFT_LAPF ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-arm64-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-arm64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_LOOP = 24 +pkg syscall (netbsd-arm64-cgo), const IFT_LOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-arm64-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-arm64-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MIOX25 = 38 +pkg syscall (netbsd-arm64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MODEM = 48 +pkg syscall (netbsd-arm64-cgo), const IFT_MODEM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MPC = 113 +pkg syscall (netbsd-arm64-cgo), const IFT_MPC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MPLS = 166 +pkg syscall (netbsd-arm64-cgo), const IFT_MPLS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-arm64-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MSDSL = 143 +pkg syscall (netbsd-arm64-cgo), const IFT_MSDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MVL = 191 +pkg syscall (netbsd-arm64-cgo), const IFT_MVL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_MYRINET = 99 +pkg syscall (netbsd-arm64-cgo), const IFT_MYRINET ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_NFAS = 175 +pkg syscall (netbsd-arm64-cgo), const IFT_NFAS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_NSIP = 27 +pkg syscall (netbsd-arm64-cgo), const IFT_NSIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-arm64-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_OTHER = 1 +pkg syscall (netbsd-arm64-cgo), const IFT_OTHER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_P10 = 12 +pkg syscall (netbsd-arm64-cgo), const IFT_P10 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_P80 = 13 +pkg syscall (netbsd-arm64-cgo), const IFT_P80 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PARA = 34 +pkg syscall (netbsd-arm64-cgo), const IFT_PARA ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PFLOG = 245 +pkg syscall (netbsd-arm64-cgo), const IFT_PFLOG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PFSYNC = 246 +pkg syscall (netbsd-arm64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PLC = 174 +pkg syscall (netbsd-arm64-cgo), const IFT_PLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PON155 = 207 +pkg syscall (netbsd-arm64-cgo), const IFT_PON155 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PON622 = 208 +pkg syscall (netbsd-arm64-cgo), const IFT_PON622 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_POS = 171 +pkg syscall (netbsd-arm64-cgo), const IFT_POS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PPP = 23 +pkg syscall (netbsd-arm64-cgo), const IFT_PPP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPATM = 197 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPATM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPMUX = 54 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-arm64-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-arm64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_PVC = 241 +pkg syscall (netbsd-arm64-cgo), const IFT_PVC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_Q2931 = 201 +pkg syscall (netbsd-arm64-cgo), const IFT_Q2931 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_QLLC = 68 +pkg syscall (netbsd-arm64-cgo), const IFT_QLLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-arm64-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_RADSL = 95 +pkg syscall (netbsd-arm64-cgo), const IFT_RADSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_REACHDSL = 192 +pkg syscall (netbsd-arm64-cgo), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_RFC1483 = 159 +pkg syscall (netbsd-arm64-cgo), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_RS232 = 33 +pkg syscall (netbsd-arm64-cgo), const IFT_RS232 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_RSRB = 79 +pkg syscall (netbsd-arm64-cgo), const IFT_RSRB ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SDLC = 17 +pkg syscall (netbsd-arm64-cgo), const IFT_SDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SDSL = 96 +pkg syscall (netbsd-arm64-cgo), const IFT_SDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SHDSL = 169 +pkg syscall (netbsd-arm64-cgo), const IFT_SHDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SIP = 31 +pkg syscall (netbsd-arm64-cgo), const IFT_SIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SIPSIG = 204 +pkg syscall (netbsd-arm64-cgo), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SIPTG = 203 +pkg syscall (netbsd-arm64-cgo), const IFT_SIPTG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SLIP = 28 +pkg syscall (netbsd-arm64-cgo), const IFT_SLIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-arm64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-arm64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SONET = 39 +pkg syscall (netbsd-arm64-cgo), const IFT_SONET ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SONETPATH = 50 +pkg syscall (netbsd-arm64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SONETVT = 51 +pkg syscall (netbsd-arm64-cgo), const IFT_SONETVT ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SRP = 151 +pkg syscall (netbsd-arm64-cgo), const IFT_SRP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-arm64-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-arm64-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_STARLAN = 11 +pkg syscall (netbsd-arm64-cgo), const IFT_STARLAN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_STF = 215 +pkg syscall (netbsd-arm64-cgo), const IFT_STF ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_T1 = 18 +pkg syscall (netbsd-arm64-cgo), const IFT_T1 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TDLC = 116 +pkg syscall (netbsd-arm64-cgo), const IFT_TDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TELINK = 200 +pkg syscall (netbsd-arm64-cgo), const IFT_TELINK ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TERMPAD = 91 +pkg syscall (netbsd-arm64-cgo), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TR008 = 176 +pkg syscall (netbsd-arm64-cgo), const IFT_TR008 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-arm64-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_TUNNEL = 131 +pkg syscall (netbsd-arm64-cgo), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_ULTRA = 29 +pkg syscall (netbsd-arm64-cgo), const IFT_ULTRA ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_USB = 160 +pkg syscall (netbsd-arm64-cgo), const IFT_USB ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_V11 = 64 +pkg syscall (netbsd-arm64-cgo), const IFT_V11 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_V35 = 45 +pkg syscall (netbsd-arm64-cgo), const IFT_V35 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_V36 = 65 +pkg syscall (netbsd-arm64-cgo), const IFT_V36 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_V37 = 120 +pkg syscall (netbsd-arm64-cgo), const IFT_V37 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VDSL = 97 +pkg syscall (netbsd-arm64-cgo), const IFT_VDSL ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID = 213 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEM = 100 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-arm64-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X213 = 93 +pkg syscall (netbsd-arm64-cgo), const IFT_X213 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X25 = 5 +pkg syscall (netbsd-arm64-cgo), const IFT_X25DDN = 4 +pkg syscall (netbsd-arm64-cgo), const IFT_X25DDN ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-arm64-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X25 ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X25MLP = 121 +pkg syscall (netbsd-arm64-cgo), const IFT_X25MLP ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_X25PLE = 40 +pkg syscall (netbsd-arm64-cgo), const IFT_X25PLE ideal-int +pkg syscall (netbsd-arm64-cgo), const IFT_XETHER = 26 +pkg syscall (netbsd-arm64-cgo), const IFT_XETHER ideal-int +pkg syscall (netbsd-arm64-cgo), const IGNBRK = 1 +pkg syscall (netbsd-arm64-cgo), const IGNBRK ideal-int +pkg syscall (netbsd-arm64-cgo), const IGNCR = 128 +pkg syscall (netbsd-arm64-cgo), const IGNCR ideal-int +pkg syscall (netbsd-arm64-cgo), const IGNPAR = 4 +pkg syscall (netbsd-arm64-cgo), const IGNPAR ideal-int +pkg syscall (netbsd-arm64-cgo), const IMAXBEL = 8192 +pkg syscall (netbsd-arm64-cgo), const IMAXBEL ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const INLCR = 64 +pkg syscall (netbsd-arm64-cgo), const INLCR ideal-int +pkg syscall (netbsd-arm64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-arm64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-arm64-cgo), const INPCK = 16 +pkg syscall (netbsd-arm64-cgo), const INPCK ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_DF = 16384 +pkg syscall (netbsd-arm64-cgo), const IP_DF ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-arm64-cgo), const IP_EF = 32768 +pkg syscall (netbsd-arm64-cgo), const IP_EF ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_ERRORMTU = 21 +pkg syscall (netbsd-arm64-cgo), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_HDRINCL = 2 +pkg syscall (netbsd-arm64-cgo), const IP_HDRINCL ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-arm64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-arm64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-arm64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MF = 8192 +pkg syscall (netbsd-arm64-cgo), const IP_MF ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MINTTL = 24 +pkg syscall (netbsd-arm64-cgo), const IP_MINTTL ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MSS = 576 +pkg syscall (netbsd-arm64-cgo), const IP_MSS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-arm64-cgo), const IP_OFFMASK = 8191 +pkg syscall (netbsd-arm64-cgo), const IP_OFFMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_OPTIONS = 1 +pkg syscall (netbsd-arm64-cgo), const IP_OPTIONS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE = 19 +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_AH = 51 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_AH ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP = 112 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE = 257 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_EGP = 8 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_EON = 80 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_EON ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ESP = 50 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP = 3 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE = 47 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IDP = 22 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAX = 256 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE = 59 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PIM = 103 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PUP = 12 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_RAW = 255 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_TP = 29 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_TP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-arm64-cgo), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-arm64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RECVIF = 20 +pkg syscall (netbsd-arm64-cgo), const IP_RECVIF ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RECVOPTS = 5 +pkg syscall (netbsd-arm64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-arm64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RECVTTL = 23 +pkg syscall (netbsd-arm64-cgo), const IP_RECVTTL ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RETOPTS = 8 +pkg syscall (netbsd-arm64-cgo), const IP_RETOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_RF = 32768 +pkg syscall (netbsd-arm64-cgo), const IP_RF ideal-int +pkg syscall (netbsd-arm64-cgo), const IP_TOS = 3 +pkg syscall (netbsd-arm64-cgo), const IP_TTL = 4 +pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-arm64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-arm64-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-arm64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_FAITH = 29 +pkg syscall (netbsd-arm64-cgo), const IPV6_FAITH ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-arm64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-arm64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-arm64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-arm64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-arm64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-arm64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-arm64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-arm64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-arm64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_MMTU = 1280 +pkg syscall (netbsd-arm64-cgo), const IPV6_MMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-arm64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm64-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-arm64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-arm64-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-arm64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-arm64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR = 51 +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_TCLASS = 61 +pkg syscall (netbsd-arm64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-arm64-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-arm64-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION = 96 +pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-arm64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const ISIG = 128 +pkg syscall (netbsd-arm64-cgo), const ISIG ideal-int +pkg syscall (netbsd-arm64-cgo), const ISTRIP = 32 +pkg syscall (netbsd-arm64-cgo), const ISTRIP ideal-int +pkg syscall (netbsd-arm64-cgo), const IXANY = 2048 +pkg syscall (netbsd-arm64-cgo), const IXANY ideal-int +pkg syscall (netbsd-arm64-cgo), const IXOFF = 1024 +pkg syscall (netbsd-arm64-cgo), const IXOFF ideal-int +pkg syscall (netbsd-arm64-cgo), const IXON = 512 +pkg syscall (netbsd-arm64-cgo), const IXON ideal-int +pkg syscall (netbsd-arm64-cgo), const LOCK_EX = 2 +pkg syscall (netbsd-arm64-cgo), const LOCK_EX ideal-int +pkg syscall (netbsd-arm64-cgo), const LOCK_NB = 4 +pkg syscall (netbsd-arm64-cgo), const LOCK_NB ideal-int +pkg syscall (netbsd-arm64-cgo), const LOCK_SH = 1 +pkg syscall (netbsd-arm64-cgo), const LOCK_SH ideal-int +pkg syscall (netbsd-arm64-cgo), const LOCK_UN = 8 +pkg syscall (netbsd-arm64-cgo), const LOCK_UN ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_DONTNEED = 4 +pkg syscall (netbsd-arm64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_FREE = 6 +pkg syscall (netbsd-arm64-cgo), const MADV_FREE ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL = 0 +pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM = 1 +pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-arm64-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-arm64-cgo), const MADV_WILLNEED = 3 +pkg syscall (netbsd-arm64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_ANON = 4096 +pkg syscall (netbsd-arm64-cgo), const MAP_ANON ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_FILE = 0 +pkg syscall (netbsd-arm64-cgo), const MAP_FILE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_FIXED = 16 +pkg syscall (netbsd-arm64-cgo), const MAP_FIXED ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-arm64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT = 128 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE = 64 +pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE = 2 +pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_RENAME = 32 +pkg syscall (netbsd-arm64-cgo), const MAP_RENAME ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_SHARED = 1 +pkg syscall (netbsd-arm64-cgo), const MAP_SHARED ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_STACK = 8192 +pkg syscall (netbsd-arm64-cgo), const MAP_STACK ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-arm64-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-arm64-cgo), const MAP_WIRED = 2048 +pkg syscall (netbsd-arm64-cgo), const MAP_WIRED ideal-int +pkg syscall (netbsd-arm64-cgo), const MCL_CURRENT = 1 +pkg syscall (netbsd-arm64-cgo), const MCL_CURRENT ideal-int +pkg syscall (netbsd-arm64-cgo), const MCL_FUTURE = 2 +pkg syscall (netbsd-arm64-cgo), const MCL_FUTURE ideal-int +pkg syscall (netbsd-arm64-cgo), const MS_ASYNC = 1 +pkg syscall (netbsd-arm64-cgo), const MS_ASYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_BCAST = 256 +pkg syscall (netbsd-arm64-cgo), const MSG_BCAST ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-arm64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-arm64-cgo), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_CTRUNC = 32 +pkg syscall (netbsd-arm64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-arm64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-arm64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_EOR = 8 +pkg syscall (netbsd-arm64-cgo), const MSG_EOR ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-arm64-cgo), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-arm64-cgo), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_MCAST = 512 +pkg syscall (netbsd-arm64-cgo), const MSG_MCAST ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-arm64-cgo), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_NBIO = 4096 +pkg syscall (netbsd-arm64-cgo), const MSG_NBIO ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-arm64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_OOB = 1 +pkg syscall (netbsd-arm64-cgo), const MSG_OOB ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_PEEK = 2 +pkg syscall (netbsd-arm64-cgo), const MSG_PEEK ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_TRUNC = 16 +pkg syscall (netbsd-arm64-cgo), const MSG_TRUNC ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-arm64-cgo), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const MSG_WAITALL = 64 +pkg syscall (netbsd-arm64-cgo), const MSG_WAITALL ideal-int +pkg syscall (netbsd-arm64-cgo), const MS_INVALIDATE = 2 +pkg syscall (netbsd-arm64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-arm64-cgo), const MS_SYNC = 4 +pkg syscall (netbsd-arm64-cgo), const MS_SYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const NAME_MAX = 511 +pkg syscall (netbsd-arm64-cgo), const NAME_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_DUMP = 1 +pkg syscall (netbsd-arm64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-arm64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-arm64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_MAXID = 6 +pkg syscall (netbsd-arm64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-arm64-cgo), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-arm64-cgo), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-arm64-cgo), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-arm64-cgo), const NOFLSH = 2147483648 +pkg syscall (netbsd-arm64-cgo), const NOFLSH ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-arm64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_CHILD = 4 +pkg syscall (netbsd-arm64-cgo), const NOTE_CHILD ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_DELETE = 1 +pkg syscall (netbsd-arm64-cgo), const NOTE_DELETE ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-arm64-cgo), const NOTE_EXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-arm64-cgo), const NOTE_EXIT ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_EXTEND = 4 +pkg syscall (netbsd-arm64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-arm64-cgo), const NOTE_FORK ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_LINK = 16 +pkg syscall (netbsd-arm64-cgo), const NOTE_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_LOWAT = 1 +pkg syscall (netbsd-arm64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-arm64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-arm64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_RENAME = 32 +pkg syscall (netbsd-arm64-cgo), const NOTE_RENAME ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_REVOKE = 64 +pkg syscall (netbsd-arm64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK = 1 +pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK ideal-int +pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE = 2 +pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const O_ACCMODE = 3 +pkg syscall (netbsd-arm64-cgo), const O_ACCMODE ideal-int +pkg syscall (netbsd-arm64-cgo), const O_ALT_IO = 262144 +pkg syscall (netbsd-arm64-cgo), const O_ALT_IO ideal-int +pkg syscall (netbsd-arm64-cgo), const O_APPEND = 8 +pkg syscall (netbsd-arm64-cgo), const O_ASYNC = 64 +pkg syscall (netbsd-arm64-cgo), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-arm64-cgo), const O_CREAT = 512 +pkg syscall (netbsd-arm64-cgo), const OCRNL = 16 +pkg syscall (netbsd-arm64-cgo), const OCRNL ideal-int +pkg syscall (netbsd-arm64-cgo), const O_DIRECT = 524288 +pkg syscall (netbsd-arm64-cgo), const O_DIRECT ideal-int +pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY ideal-int +pkg syscall (netbsd-arm64-cgo), const O_DSYNC = 65536 +pkg syscall (netbsd-arm64-cgo), const O_DSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const O_EXCL = 2048 +pkg syscall (netbsd-arm64-cgo), const O_EXLOCK = 32 +pkg syscall (netbsd-arm64-cgo), const O_EXLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-arm64-cgo), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-arm64-cgo), const O_FSYNC = 128 +pkg syscall (netbsd-arm64-cgo), const O_FSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const O_NDELAY = 4 +pkg syscall (netbsd-arm64-cgo), const O_NDELAY ideal-int +pkg syscall (netbsd-arm64-cgo), const ONLCR = 2 +pkg syscall (netbsd-arm64-cgo), const ONLCR ideal-int +pkg syscall (netbsd-arm64-cgo), const ONLRET = 64 +pkg syscall (netbsd-arm64-cgo), const ONLRET ideal-int +pkg syscall (netbsd-arm64-cgo), const ONOCR = 32 +pkg syscall (netbsd-arm64-cgo), const ONOCR ideal-int +pkg syscall (netbsd-arm64-cgo), const O_NOCTTY = 32768 +pkg syscall (netbsd-arm64-cgo), const ONOEOT = 8 +pkg syscall (netbsd-arm64-cgo), const ONOEOT ideal-int +pkg syscall (netbsd-arm64-cgo), const O_NOFOLLOW = 256 +pkg syscall (netbsd-arm64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-arm64-cgo), const O_NONBLOCK = 4 +pkg syscall (netbsd-arm64-cgo), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-arm64-cgo), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const OPOST = 1 +pkg syscall (netbsd-arm64-cgo), const OPOST ideal-int +pkg syscall (netbsd-arm64-cgo), const O_RSYNC = 131072 +pkg syscall (netbsd-arm64-cgo), const O_RSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const O_SHLOCK = 16 +pkg syscall (netbsd-arm64-cgo), const O_SHLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const O_SYNC = 128 +pkg syscall (netbsd-arm64-cgo), const O_TRUNC = 1024 +pkg syscall (netbsd-arm64-cgo), const PARENB = 4096 +pkg syscall (netbsd-arm64-cgo), const PARENB ideal-int +pkg syscall (netbsd-arm64-cgo), const PARMRK = 8 +pkg syscall (netbsd-arm64-cgo), const PARMRK ideal-int +pkg syscall (netbsd-arm64-cgo), const PARODD = 8192 +pkg syscall (netbsd-arm64-cgo), const PARODD ideal-int +pkg syscall (netbsd-arm64-cgo), const PENDIN = 536870912 +pkg syscall (netbsd-arm64-cgo), const PENDIN ideal-int +pkg syscall (netbsd-arm64-cgo), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-arm64-cgo), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP = 1 +pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS = 0 +pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-arm64-cgo), const PRIO_USER = 2 +pkg syscall (netbsd-arm64-cgo), const PRIO_USER ideal-int +pkg syscall (netbsd-arm64-cgo), const PROT_EXEC = 4 +pkg syscall (netbsd-arm64-cgo), const PROT_EXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const PROT_NONE = 0 +pkg syscall (netbsd-arm64-cgo), const PROT_NONE ideal-int +pkg syscall (netbsd-arm64-cgo), const PROT_READ = 1 +pkg syscall (netbsd-arm64-cgo), const PROT_READ ideal-int +pkg syscall (netbsd-arm64-cgo), const PROT_WRITE = 2 +pkg syscall (netbsd-arm64-cgo), const PROT_WRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const PTRACE_CONT = 7 +pkg syscall (netbsd-arm64-cgo), const PTRACE_CONT ideal-int +pkg syscall (netbsd-arm64-cgo), const PTRACE_KILL = 8 +pkg syscall (netbsd-arm64-cgo), const PTRACE_KILL ideal-int +pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-arm64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-arm64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS = 10 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_AS ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_CORE = 4 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_CPU = 0 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_DATA = 2 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK = 3 +pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR = 64 +pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_BRD = 128 +pkg syscall (netbsd-arm64-cgo), const RTA_BRD ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_DST = 1 +pkg syscall (netbsd-arm64-cgo), const RTA_DST ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_GATEWAY = 2 +pkg syscall (netbsd-arm64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_GENMASK = 8 +pkg syscall (netbsd-arm64-cgo), const RTA_GENMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_IFA = 32 +pkg syscall (netbsd-arm64-cgo), const RTA_IFA ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_IFP = 16 +pkg syscall (netbsd-arm64-cgo), const RTA_IFP ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_NETMASK = 4 +pkg syscall (netbsd-arm64-cgo), const RTA_NETMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTA_TAG = 256 +pkg syscall (netbsd-arm64-cgo), const RTA_TAG ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-arm64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_BRD = 7 +pkg syscall (netbsd-arm64-cgo), const RTAX_BRD ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_DST = 0 +pkg syscall (netbsd-arm64-cgo), const RTAX_DST ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-arm64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_GENMASK = 3 +pkg syscall (netbsd-arm64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_IFA = 5 +pkg syscall (netbsd-arm64-cgo), const RTAX_IFA ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_IFP = 4 +pkg syscall (netbsd-arm64-cgo), const RTAX_IFP ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_MAX = 9 +pkg syscall (netbsd-arm64-cgo), const RTAX_MAX ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_NETMASK = 2 +pkg syscall (netbsd-arm64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTAX_TAG = 8 +pkg syscall (netbsd-arm64-cgo), const RTAX_TAG ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-arm64-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-arm64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_CLONED = 8192 +pkg syscall (netbsd-arm64-cgo), const RTF_CLONED ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_CLONING = 256 +pkg syscall (netbsd-arm64-cgo), const RTF_CLONING ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_DONE = 64 +pkg syscall (netbsd-arm64-cgo), const RTF_DONE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-arm64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_GATEWAY = 2 +pkg syscall (netbsd-arm64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_HOST = 4 +pkg syscall (netbsd-arm64-cgo), const RTF_HOST ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_LLINFO = 1024 +pkg syscall (netbsd-arm64-cgo), const RTF_LLINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_MASK = 128 +pkg syscall (netbsd-arm64-cgo), const RTF_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_MODIFIED = 32 +pkg syscall (netbsd-arm64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-arm64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-arm64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_REJECT = 8 +pkg syscall (netbsd-arm64-cgo), const RTF_REJECT ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_SRC = 65536 +pkg syscall (netbsd-arm64-cgo), const RTF_SRC ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_STATIC = 2048 +pkg syscall (netbsd-arm64-cgo), const RTF_STATIC ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_UP = 1 +pkg syscall (netbsd-arm64-cgo), const RTF_UP ideal-int +pkg syscall (netbsd-arm64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-arm64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_ADD = 1 +pkg syscall (netbsd-arm64-cgo), const RTM_ADD ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_CHANGE = 3 +pkg syscall (netbsd-arm64-cgo), const RTM_CHANGE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_CHGADDR = 21 +pkg syscall (netbsd-arm64-cgo), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_DELADDR = 13 +pkg syscall (netbsd-arm64-cgo), const RTM_DELADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_DELETE = 2 +pkg syscall (netbsd-arm64-cgo), const RTM_DELETE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_GET = 4 +pkg syscall (netbsd-arm64-cgo), const RTM_GET ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-arm64-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-arm64-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_IFINFO = 20 +pkg syscall (netbsd-arm64-cgo), const RTM_IFINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-arm64-cgo), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_LOCK = 8 +pkg syscall (netbsd-arm64-cgo), const RTM_LOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_LOSING = 5 +pkg syscall (netbsd-arm64-cgo), const RTM_LOSING ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_MISS = 7 +pkg syscall (netbsd-arm64-cgo), const RTM_MISS ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_NEWADDR = 12 +pkg syscall (netbsd-arm64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_OIFINFO = 15 +pkg syscall (netbsd-arm64-cgo), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_OLDADD = 9 +pkg syscall (netbsd-arm64-cgo), const RTM_OLDADD ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_OLDDEL = 10 +pkg syscall (netbsd-arm64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT = 6 +pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE = 11 +pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-arm64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_SETGATE = 18 +pkg syscall (netbsd-arm64-cgo), const RTM_SETGATE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTM_VERSION = 4 +pkg syscall (netbsd-arm64-cgo), const RTM_VERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_EXPIRE = 4 +pkg syscall (netbsd-arm64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-arm64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_MTU = 1 +pkg syscall (netbsd-arm64-cgo), const RTV_MTU ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_RPIPE = 8 +pkg syscall (netbsd-arm64-cgo), const RTV_RPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_RTT = 64 +pkg syscall (netbsd-arm64-cgo), const RTV_RTT ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_RTTVAR = 128 +pkg syscall (netbsd-arm64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_SPIPE = 16 +pkg syscall (netbsd-arm64-cgo), const RTV_SPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-arm64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-arm64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-arm64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-arm64-cgo), const RUSAGE_SELF = 0 +pkg syscall (netbsd-arm64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-arm64-cgo), const S_ARCH1 = 65536 +pkg syscall (netbsd-arm64-cgo), const S_ARCH1 ideal-int +pkg syscall (netbsd-arm64-cgo), const S_ARCH2 = 131072 +pkg syscall (netbsd-arm64-cgo), const S_ARCH2 ideal-int +pkg syscall (netbsd-arm64-cgo), const S_BLKSIZE = 512 +pkg syscall (netbsd-arm64-cgo), const S_BLKSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const SCM_CREDS = 4 +pkg syscall (netbsd-arm64-cgo), const SCM_CREDS ideal-int +pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS = 1 +pkg syscall (netbsd-arm64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-arm64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IEXEC = 64 +pkg syscall (netbsd-arm64-cgo), const S_IEXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IFMT = 61440 +pkg syscall (netbsd-arm64-cgo), const S_IFWHT = 57344 +pkg syscall (netbsd-arm64-cgo), const S_IFWHT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIGBUS = 10 +pkg syscall (netbsd-arm64-cgo), const SIGCHLD = 20 +pkg syscall (netbsd-arm64-cgo), const SIGCHLD Signal +pkg syscall (netbsd-arm64-cgo), const SIGCONT = 19 +pkg syscall (netbsd-arm64-cgo), const SIGCONT Signal +pkg syscall (netbsd-arm64-cgo), const SIGEMT = 7 +pkg syscall (netbsd-arm64-cgo), const SIGEMT Signal +pkg syscall (netbsd-arm64-cgo), const SIGINFO = 29 +pkg syscall (netbsd-arm64-cgo), const SIGINFO Signal +pkg syscall (netbsd-arm64-cgo), const SIGIO = 23 +pkg syscall (netbsd-arm64-cgo), const SIGIO Signal +pkg syscall (netbsd-arm64-cgo), const SIGIOT = 6 +pkg syscall (netbsd-arm64-cgo), const SIGIOT Signal +pkg syscall (netbsd-arm64-cgo), const SIGPROF = 27 +pkg syscall (netbsd-arm64-cgo), const SIGPROF Signal +pkg syscall (netbsd-arm64-cgo), const SIGPWR = 32 +pkg syscall (netbsd-arm64-cgo), const SIGPWR Signal +pkg syscall (netbsd-arm64-cgo), const SIGSTOP = 17 +pkg syscall (netbsd-arm64-cgo), const SIGSTOP Signal +pkg syscall (netbsd-arm64-cgo), const SIGSYS = 12 +pkg syscall (netbsd-arm64-cgo), const SIGSYS Signal +pkg syscall (netbsd-arm64-cgo), const SIGTSTP = 18 +pkg syscall (netbsd-arm64-cgo), const SIGTSTP Signal +pkg syscall (netbsd-arm64-cgo), const SIGTTIN = 21 +pkg syscall (netbsd-arm64-cgo), const SIGTTIN Signal +pkg syscall (netbsd-arm64-cgo), const SIGTTOU = 22 +pkg syscall (netbsd-arm64-cgo), const SIGTTOU Signal +pkg syscall (netbsd-arm64-cgo), const SIGURG = 16 +pkg syscall (netbsd-arm64-cgo), const SIGURG Signal +pkg syscall (netbsd-arm64-cgo), const SIGUSR1 = 30 +pkg syscall (netbsd-arm64-cgo), const SIGUSR1 Signal +pkg syscall (netbsd-arm64-cgo), const SIGUSR2 = 31 +pkg syscall (netbsd-arm64-cgo), const SIGUSR2 Signal +pkg syscall (netbsd-arm64-cgo), const SIGVTALRM = 26 +pkg syscall (netbsd-arm64-cgo), const SIGVTALRM Signal +pkg syscall (netbsd-arm64-cgo), const SIGWINCH = 28 +pkg syscall (netbsd-arm64-cgo), const SIGWINCH Signal +pkg syscall (netbsd-arm64-cgo), const SIGXCPU = 24 +pkg syscall (netbsd-arm64-cgo), const SIGXCPU Signal +pkg syscall (netbsd-arm64-cgo), const SIGXFSZ = 25 +pkg syscall (netbsd-arm64-cgo), const SIGXFSZ Signal +pkg syscall (netbsd-arm64-cgo), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-arm64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCADDRT = 2151182858 +pkg syscall (netbsd-arm64-cgo), const SIOCADDRT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-arm64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-arm64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-arm64-cgo), const SIOCATMARK ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-arm64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCDELRT = 2151182859 +pkg syscall (netbsd-arm64-cgo), const SIOCDELRT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-arm64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-arm64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-arm64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (netbsd-arm64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-arm64-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGETSGCNT = 3223352628 +pkg syscall (netbsd-arm64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGETVIFCNT = 3223876915 +pkg syscall (netbsd-arm64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-arm64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDRPREF = 3231213856 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFCONF = 3222300966 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDATA = 3231213957 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMEDIA = 3224398134 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-arm64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-arm64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-arm64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGLINKSTR = 3223873927 +pkg syscall (netbsd-arm64-cgo), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-arm64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-arm64-cgo), const SIOCGPGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCGVH = 3230689667 +pkg syscall (netbsd-arm64-cgo), const SIOCGVH ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-arm64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-arm64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCIFGCLONERS = 3222301048 +pkg syscall (netbsd-arm64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCINITIFADDR = 3228592516 +pkg syscall (netbsd-arm64-cgo), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (netbsd-arm64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-arm64-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-arm64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDRPREF = 2157472031 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-arm64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-arm64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSLINKSTR = 2150132104 +pkg syscall (netbsd-arm64-cgo), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-arm64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-arm64-cgo), const SIOCSPGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCSVH = 3230689666 +pkg syscall (netbsd-arm64-cgo), const SIOCSVH ideal-int +pkg syscall (netbsd-arm64-cgo), const SIOCZIFDATA = 3231213958 +pkg syscall (netbsd-arm64-cgo), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IREAD = 256 +pkg syscall (netbsd-arm64-cgo), const S_IREAD ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IRGRP = 32 +pkg syscall (netbsd-arm64-cgo), const S_IRGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IROTH = 4 +pkg syscall (netbsd-arm64-cgo), const S_IROTH ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IRWXG = 56 +pkg syscall (netbsd-arm64-cgo), const S_IRWXG ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IRWXO = 7 +pkg syscall (netbsd-arm64-cgo), const S_IRWXO ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IRWXU = 448 +pkg syscall (netbsd-arm64-cgo), const S_IRWXU ideal-int +pkg syscall (netbsd-arm64-cgo), const S_ISTXT = 512 +pkg syscall (netbsd-arm64-cgo), const S_ISTXT ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IWGRP = 16 +pkg syscall (netbsd-arm64-cgo), const S_IWGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IWOTH = 2 +pkg syscall (netbsd-arm64-cgo), const S_IWOTH ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IWRITE = 128 +pkg syscall (netbsd-arm64-cgo), const S_IWRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IXGRP = 8 +pkg syscall (netbsd-arm64-cgo), const S_IXGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const S_IXOTH = 1 +pkg syscall (netbsd-arm64-cgo), const S_IXOTH ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofBpfHdr = 32 +pkg syscall (netbsd-arm64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofBpfInsn = 8 +pkg syscall (netbsd-arm64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofBpfProgram = 16 +pkg syscall (netbsd-arm64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofBpfStat = 128 +pkg syscall (netbsd-arm64-cgo), const SizeofBpfStat ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofBpfVersion = 4 +pkg syscall (netbsd-arm64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofCmsghdr = 12 +pkg syscall (netbsd-arm64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-arm64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-arm64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-arm64-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIfData = 136 +pkg syscall (netbsd-arm64-cgo), const SizeofIfData ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-arm64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-arm64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIPMreq = 8 +pkg syscall (netbsd-arm64-cgo), const SizeofIPMreq ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-arm64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-arm64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofLinger = 8 +pkg syscall (netbsd-arm64-cgo), const SizeofLinger ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofMsghdr = 48 +pkg syscall (netbsd-arm64-cgo), const SizeofMsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofRtMetrics = 80 +pkg syscall (netbsd-arm64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-arm64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-arm64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-arm64-cgo), const S_LOGIN_SET = 1 +pkg syscall (netbsd-arm64-cgo), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-arm64-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_BROADCAST = 32 +pkg syscall (netbsd-arm64-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-arm64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-arm64-cgo), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-arm64-cgo), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-arm64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-arm64-cgo), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const SOCK_RDM = 4 +pkg syscall (netbsd-arm64-cgo), const SOCK_RDM ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_DEBUG = 1 +pkg syscall (netbsd-arm64-cgo), const SO_DEBUG ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_DONTROUTE = 16 +pkg syscall (netbsd-arm64-cgo), const SO_ERROR = 4103 +pkg syscall (netbsd-arm64-cgo), const SO_ERROR ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-arm64-cgo), const SO_LINGER = 128 +pkg syscall (netbsd-arm64-cgo), const SOL_SOCKET = 65535 +pkg syscall (netbsd-arm64-cgo), const SOMAXCONN = 128 +pkg syscall (netbsd-arm64-cgo), const SO_NOHEADER = 4106 +pkg syscall (netbsd-arm64-cgo), const SO_NOHEADER ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-arm64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_OOBINLINE = 256 +pkg syscall (netbsd-arm64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-arm64-cgo), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_RCVBUF = 4098 +pkg syscall (netbsd-arm64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-arm64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-arm64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_REUSEADDR = 4 +pkg syscall (netbsd-arm64-cgo), const SO_REUSEPORT = 512 +pkg syscall (netbsd-arm64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_SNDBUF = 4097 +pkg syscall (netbsd-arm64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-arm64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-arm64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-arm64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_TYPE = 4104 +pkg syscall (netbsd-arm64-cgo), const SO_TYPE ideal-int +pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT = 30 +pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS = 33 +pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_ACCT = 51 +pkg syscall (netbsd-arm64-cgo), const SYS_ACCT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME = 421 +pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_BIND = 104 +pkg syscall (netbsd-arm64-cgo), const SYS_BIND ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_BREAK = 17 +pkg syscall (netbsd-arm64-cgo), const SYS_BREAK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CHDIR = 12 +pkg syscall (netbsd-arm64-cgo), const SYS_CHDIR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-arm64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CHMOD = 15 +pkg syscall (netbsd-arm64-cgo), const SYS_CHMOD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CHOWN = 16 +pkg syscall (netbsd-arm64-cgo), const SYS_CHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CHROOT = 61 +pkg syscall (netbsd-arm64-cgo), const SYS_CHROOT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-arm64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___CLONE = 287 +pkg syscall (netbsd-arm64-cgo), const SYS___CLONE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CLOSE = 6 +pkg syscall (netbsd-arm64-cgo), const SYS_CLOSE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_CONNECT = 98 +pkg syscall (netbsd-arm64-cgo), const SYS_CONNECT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-arm64-cgo), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_DUP2 = 90 +pkg syscall (netbsd-arm64-cgo), const SYS_DUP2 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_DUP3 = 454 +pkg syscall (netbsd-arm64-cgo), const SYS_DUP3 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_DUP = 41 +pkg syscall (netbsd-arm64-cgo), const SYS_DUP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXECVE = 59 +pkg syscall (netbsd-arm64-cgo), const SYS_EXECVE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXIT = 1 +pkg syscall (netbsd-arm64-cgo), const SYS_EXIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-arm64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHDIR = 13 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHMOD = 124 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWN = 123 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCHROOT = 297 +pkg syscall (netbsd-arm64-cgo), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FCNTL = 92 +pkg syscall (netbsd-arm64-cgo), const SYS_FCNTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-arm64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FEXECVE = 465 +pkg syscall (netbsd-arm64-cgo), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-arm64-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FHSTAT = 451 +pkg syscall (netbsd-arm64-cgo), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FKTRACE = 288 +pkg syscall (netbsd-arm64-cgo), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-arm64-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FLOCK = 131 +pkg syscall (netbsd-arm64-cgo), const SYS_FLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FORK = 2 +pkg syscall (netbsd-arm64-cgo), const SYS_FORK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-arm64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-arm64-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-arm64-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSTAT = 440 +pkg syscall (netbsd-arm64-cgo), const SYS_FSTATAT = 466 +pkg syscall (netbsd-arm64-cgo), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSTAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-arm64-cgo), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC = 95 +pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-arm64-cgo), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-arm64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMES = 423 +pkg syscall (netbsd-arm64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-arm64-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___GETCWD = 296 +pkg syscall (netbsd-arm64-cgo), const SYS___GETCWD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETDENTS = 390 +pkg syscall (netbsd-arm64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETEGID = 43 +pkg syscall (netbsd-arm64-cgo), const SYS_GETEGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETEUID = 25 +pkg syscall (netbsd-arm64-cgo), const SYS_GETEUID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETFH = 395 +pkg syscall (netbsd-arm64-cgo), const SYS_GETFH ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETGID = 47 +pkg syscall (netbsd-arm64-cgo), const SYS_GETGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETITIMER = 426 +pkg syscall (netbsd-arm64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-arm64-cgo), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPGID = 207 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPGRP = 81 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPID = 20 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPPID = 39 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPPID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-arm64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-arm64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-arm64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETSID = 286 +pkg syscall (netbsd-arm64-cgo), const SYS_GETSID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-arm64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETUID = 24 +pkg syscall (netbsd-arm64-cgo), const SYS_GETUID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-arm64-cgo), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_GETXATTR = 378 +pkg syscall (netbsd-arm64-cgo), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_IOCTL = 54 +pkg syscall (netbsd-arm64-cgo), const SYS_IOCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-arm64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_KEVENT = 435 +pkg syscall (netbsd-arm64-cgo), const SYS_KEVENT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_KILL = 37 +pkg syscall (netbsd-arm64-cgo), const SYS_KILL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE = 344 +pkg syscall (netbsd-arm64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_KTRACE = 45 +pkg syscall (netbsd-arm64-cgo), const SYS_KTRACE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-arm64-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LCHMOD = 274 +pkg syscall (netbsd-arm64-cgo), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LCHOWN = 275 +pkg syscall (netbsd-arm64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-arm64-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LINK = 9 +pkg syscall (netbsd-arm64-cgo), const SYS_LINKAT = 457 +pkg syscall (netbsd-arm64-cgo), const SYS_LINKAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LISTEN = 106 +pkg syscall (netbsd-arm64-cgo), const SYS_LISTEN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-arm64-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-arm64-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-arm64-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LSEEK = 199 +pkg syscall (netbsd-arm64-cgo), const SYS_LSEEK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-arm64-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LSTAT = 441 +pkg syscall (netbsd-arm64-cgo), const SYS_LSTAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_LUTIMES = 424 +pkg syscall (netbsd-arm64-cgo), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MADVISE = 75 +pkg syscall (netbsd-arm64-cgo), const SYS_MADVISE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MINCORE = 78 +pkg syscall (netbsd-arm64-cgo), const SYS_MINCORE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MINHERIT = 273 +pkg syscall (netbsd-arm64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKDIR = 136 +pkg syscall (netbsd-arm64-cgo), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-arm64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKDIR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFO = 132 +pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKNOD = 450 +pkg syscall (netbsd-arm64-cgo), const SYS_MKNODAT = 460 +pkg syscall (netbsd-arm64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MKNOD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MLOCK = 203 +pkg syscall (netbsd-arm64-cgo), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-arm64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MMAP = 197 +pkg syscall (netbsd-arm64-cgo), const SYS_MMAP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MODCTL = 246 +pkg syscall (netbsd-arm64-cgo), const SYS_MODCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MOUNT = 410 +pkg syscall (netbsd-arm64-cgo), const SYS_MOUNT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MPROTECT = 74 +pkg syscall (netbsd-arm64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MREMAP = 411 +pkg syscall (netbsd-arm64-cgo), const SYS_MREMAP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MSGCTL = 444 +pkg syscall (netbsd-arm64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MSGGET = 225 +pkg syscall (netbsd-arm64-cgo), const SYS_MSGGET ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MSGRCV = 227 +pkg syscall (netbsd-arm64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MSGSND = 226 +pkg syscall (netbsd-arm64-cgo), const SYS_MSGSND ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_MUNMAP = 73 +pkg syscall (netbsd-arm64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-arm64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-arm64-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-arm64-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_OPEN = 5 +pkg syscall (netbsd-arm64-cgo), const SYS_OPENAT = 468 +pkg syscall (netbsd-arm64-cgo), const SYS_OPENAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_OPEN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PACCEPT = 456 +pkg syscall (netbsd-arm64-cgo), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PATHCONF = 191 +pkg syscall (netbsd-arm64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 = 453 +pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PIPE = 42 +pkg syscall (netbsd-arm64-cgo), const SYS_PIPE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-arm64-cgo), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_POLL = 209 +pkg syscall (netbsd-arm64-cgo), const SYS_POLL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_POLLTS = 437 +pkg syscall (netbsd-arm64-cgo), const SYS_POLLTS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-arm64-cgo), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-arm64-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PREAD = 173 +pkg syscall (netbsd-arm64-cgo), const SYS_PREAD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PREADV = 289 +pkg syscall (netbsd-arm64-cgo), const SYS_PREADV ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PROFIL = 44 +pkg syscall (netbsd-arm64-cgo), const SYS_PROFIL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT = 436 +pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-arm64-cgo), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PTRACE = 26 +pkg syscall (netbsd-arm64-cgo), const SYS_PTRACE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PWRITE = 174 +pkg syscall (netbsd-arm64-cgo), const SYS_PWRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_PWRITEV = 290 +pkg syscall (netbsd-arm64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-arm64-cgo), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RASCTL = 343 +pkg syscall (netbsd-arm64-cgo), const SYS_RASCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_READ = 3 +pkg syscall (netbsd-arm64-cgo), const SYS_READ ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_READLINK = 58 +pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT = 469 +pkg syscall (netbsd-arm64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_READLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_READV = 120 +pkg syscall (netbsd-arm64-cgo), const SYS_READV ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_REBOOT = 208 +pkg syscall (netbsd-arm64-cgo), const SYS_REBOOT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RECVFROM = 29 +pkg syscall (netbsd-arm64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-arm64-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RECVMSG = 27 +pkg syscall (netbsd-arm64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-arm64-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RENAME = 128 +pkg syscall (netbsd-arm64-cgo), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-arm64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RENAME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_REVOKE = 56 +pkg syscall (netbsd-arm64-cgo), const SYS_REVOKE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_RMDIR = 137 +pkg syscall (netbsd-arm64-cgo), const SYS_RMDIR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SBRK = 69 +pkg syscall (netbsd-arm64-cgo), const SYS_SBRK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-arm64-cgo), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-arm64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SELECT = 417 +pkg syscall (netbsd-arm64-cgo), const SYS_SELECT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-arm64-cgo), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___SEMCTL = 442 +pkg syscall (netbsd-arm64-cgo), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SEMGET = 221 +pkg syscall (netbsd-arm64-cgo), const SYS_SEMGET ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SEMOP = 222 +pkg syscall (netbsd-arm64-cgo), const SYS_SEMOP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-arm64-cgo), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG = 28 +pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO = 133 +pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETEGID = 182 +pkg syscall (netbsd-arm64-cgo), const SYS_SETEGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETEUID = 183 +pkg syscall (netbsd-arm64-cgo), const SYS_SETEUID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETGID = 181 +pkg syscall (netbsd-arm64-cgo), const SYS_SETGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-arm64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETITIMER = 425 +pkg syscall (netbsd-arm64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-arm64-cgo), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETPGID = 82 +pkg syscall (netbsd-arm64-cgo), const SYS_SETPGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-arm64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETREGID = 127 +pkg syscall (netbsd-arm64-cgo), const SYS_SETREGID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETREUID = 126 +pkg syscall (netbsd-arm64-cgo), const SYS_SETREUID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-arm64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETSID = 147 +pkg syscall (netbsd-arm64-cgo), const SYS_SETSID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-arm64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-arm64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETUID = 23 +pkg syscall (netbsd-arm64-cgo), const SYS_SETUID ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SETXATTR = 375 +pkg syscall (netbsd-arm64-cgo), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SHMAT = 228 +pkg syscall (netbsd-arm64-cgo), const SYS_SHMAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SHMCTL = 443 +pkg syscall (netbsd-arm64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SHMDT = 230 +pkg syscall (netbsd-arm64-cgo), const SYS_SHMDT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SHMGET = 231 +pkg syscall (netbsd-arm64-cgo), const SYS_SHMGET ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-arm64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-arm64-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-arm64-cgo), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-arm64-cgo), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SOCKET = 394 +pkg syscall (netbsd-arm64-cgo), const SYS_SOCKET ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-arm64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SSTK = 70 +pkg syscall (netbsd-arm64-cgo), const SYS_SSTK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_STAT = 439 +pkg syscall (netbsd-arm64-cgo), const SYS_STAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-arm64-cgo), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-arm64-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINK = 57 +pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SYNC = 36 +pkg syscall (netbsd-arm64-cgo), const SYS_SYNC ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_SYSARCH = 165 +pkg syscall (netbsd-arm64-cgo), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS___SYSCTL = 202 +pkg syscall (netbsd-arm64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-arm64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UMASK = 60 +pkg syscall (netbsd-arm64-cgo), const SYS_UMASK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UNDELETE = 205 +pkg syscall (netbsd-arm64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UNLINK = 10 +pkg syscall (netbsd-arm64-cgo), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-arm64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UNLINK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UTIMES = 420 +pkg syscall (netbsd-arm64-cgo), const SYS_UTIMES ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UTRACE = 306 +pkg syscall (netbsd-arm64-cgo), const SYS_UTRACE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-arm64-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_VADVISE = 72 +pkg syscall (netbsd-arm64-cgo), const SYS_VADVISE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_VFORK = 66 +pkg syscall (netbsd-arm64-cgo), const SYS_VFORK ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_WAIT4 = 449 +pkg syscall (netbsd-arm64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_WRITE = 4 +pkg syscall (netbsd-arm64-cgo), const SYS_WRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_WRITEV = 121 +pkg syscall (netbsd-arm64-cgo), const SYS_WRITEV ideal-int +pkg syscall (netbsd-arm64-cgo), const TCIFLUSH = 1 +pkg syscall (netbsd-arm64-cgo), const TCIFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const TCIOFLUSH = 3 +pkg syscall (netbsd-arm64-cgo), const TCIOFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const TCOFLUSH = 2 +pkg syscall (netbsd-arm64-cgo), const TCOFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_CONGCTL = 32 +pkg syscall (netbsd-arm64-cgo), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-arm64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST = 4 +pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG = 2 +pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-arm64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MD5SIG = 16 +pkg syscall (netbsd-arm64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MINMSS = 216 +pkg syscall (netbsd-arm64-cgo), const TCP_MINMSS ideal-int +pkg syscall (netbsd-arm64-cgo), const TCP_MSS = 536 +pkg syscall (netbsd-arm64-cgo), const TCP_MSS ideal-int +pkg syscall (netbsd-arm64-cgo), const TCSAFLUSH = 2 +pkg syscall (netbsd-arm64-cgo), const TCSAFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCCBRK = 536900730 +pkg syscall (netbsd-arm64-cgo), const TIOCCBRK ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCCDTR = 536900728 +pkg syscall (netbsd-arm64-cgo), const TIOCCDTR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCCONS = 2147775586 +pkg syscall (netbsd-arm64-cgo), const TIOCCONS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (netbsd-arm64-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-arm64-cgo), const TIOCDRAIN ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCEXCL = 536900621 +pkg syscall (netbsd-arm64-cgo), const TIOCEXCL ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCEXT = 2147775584 +pkg syscall (netbsd-arm64-cgo), const TIOCEXT ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-arm64-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-arm64-cgo), const TIOCFLUSH ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGETA = 1076655123 +pkg syscall (netbsd-arm64-cgo), const TIOCGETA ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGETD = 1074033690 +pkg syscall (netbsd-arm64-cgo), const TIOCGETD ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-arm64-cgo), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-arm64-cgo), const TIOCGLINED ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-arm64-cgo), const TIOCGPGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-arm64-cgo), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-arm64-cgo), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGSID = 1074033763 +pkg syscall (netbsd-arm64-cgo), const TIOCGSID ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-arm64-cgo), const TIOCGSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-arm64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-arm64-cgo), const TIOCMBIC ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-arm64-cgo), const TIOCMBIS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_CAR = 64 +pkg syscall (netbsd-arm64-cgo), const TIOCM_CAR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_CD = 64 +pkg syscall (netbsd-arm64-cgo), const TIOCM_CD ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_CTS = 32 +pkg syscall (netbsd-arm64-cgo), const TIOCM_CTS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_DSR = 256 +pkg syscall (netbsd-arm64-cgo), const TIOCM_DSR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_DTR = 2 +pkg syscall (netbsd-arm64-cgo), const TIOCM_DTR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCMGET = 1074033770 +pkg syscall (netbsd-arm64-cgo), const TIOCMGET ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_LE = 1 +pkg syscall (netbsd-arm64-cgo), const TIOCM_LE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_RI = 128 +pkg syscall (netbsd-arm64-cgo), const TIOCM_RI ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_RNG = 128 +pkg syscall (netbsd-arm64-cgo), const TIOCM_RNG ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_RTS = 4 +pkg syscall (netbsd-arm64-cgo), const TIOCM_RTS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCMSET = 2147775597 +pkg syscall (netbsd-arm64-cgo), const TIOCMSET ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_SR = 16 +pkg syscall (netbsd-arm64-cgo), const TIOCM_SR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCM_ST = 8 +pkg syscall (netbsd-arm64-cgo), const TIOCM_ST ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-arm64-cgo), const TIOCNOTTY ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCNXCL = 536900622 +pkg syscall (netbsd-arm64-cgo), const TIOCNXCL ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-arm64-cgo), const TIOCOUTQ ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT = 2147775600 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_START = 8 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_START ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-arm64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-arm64-cgo), const TIOCPTMGET ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-arm64-cgo), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCRCVFRAME = 2148037701 +pkg syscall (netbsd-arm64-cgo), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-arm64-cgo), const TIOCREMOTE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSBRK = 536900731 +pkg syscall (netbsd-arm64-cgo), const TIOCSBRK ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-arm64-cgo), const TIOCSCTTY ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSDTR = 536900729 +pkg syscall (netbsd-arm64-cgo), const TIOCSDTR ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSETA = 2150396948 +pkg syscall (netbsd-arm64-cgo), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-arm64-cgo), const TIOCSETAF ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSETA ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-arm64-cgo), const TIOCSETAW ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSETD = 2147775515 +pkg syscall (netbsd-arm64-cgo), const TIOCSETD ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-arm64-cgo), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSIG = 536900703 +pkg syscall (netbsd-arm64-cgo), const TIOCSIG ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-arm64-cgo), const TIOCSLINED ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-arm64-cgo), const TIOCSPGRP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-arm64-cgo), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-arm64-cgo), const TIOCSSIZE ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSTART = 536900718 +pkg syscall (netbsd-arm64-cgo), const TIOCSTART ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-arm64-cgo), const TIOCSTAT ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSTI = 2147578994 +pkg syscall (netbsd-arm64-cgo), const TIOCSTI ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSTOP = 536900719 +pkg syscall (netbsd-arm64-cgo), const TIOCSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-arm64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-arm64-cgo), const TIOCUCNTL ideal-int +pkg syscall (netbsd-arm64-cgo), const TIOCXMTFRAME = 2148037700 +pkg syscall (netbsd-arm64-cgo), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-arm64-cgo), const TOSTOP = 4194304 +pkg syscall (netbsd-arm64-cgo), const TOSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const VDISCARD = 15 +pkg syscall (netbsd-arm64-cgo), const VDISCARD ideal-int +pkg syscall (netbsd-arm64-cgo), const VDSUSP = 11 +pkg syscall (netbsd-arm64-cgo), const VDSUSP ideal-int +pkg syscall (netbsd-arm64-cgo), const VEOF = 0 +pkg syscall (netbsd-arm64-cgo), const VEOF ideal-int +pkg syscall (netbsd-arm64-cgo), const VEOL = 1 +pkg syscall (netbsd-arm64-cgo), const VEOL2 = 2 +pkg syscall (netbsd-arm64-cgo), const VEOL2 ideal-int +pkg syscall (netbsd-arm64-cgo), const VEOL ideal-int +pkg syscall (netbsd-arm64-cgo), const VERASE = 3 +pkg syscall (netbsd-arm64-cgo), const VERASE ideal-int +pkg syscall (netbsd-arm64-cgo), const VINTR = 8 +pkg syscall (netbsd-arm64-cgo), const VINTR ideal-int +pkg syscall (netbsd-arm64-cgo), const VKILL = 5 +pkg syscall (netbsd-arm64-cgo), const VKILL ideal-int +pkg syscall (netbsd-arm64-cgo), const VLNEXT = 14 +pkg syscall (netbsd-arm64-cgo), const VLNEXT ideal-int +pkg syscall (netbsd-arm64-cgo), const VMIN = 16 +pkg syscall (netbsd-arm64-cgo), const VMIN ideal-int +pkg syscall (netbsd-arm64-cgo), const VQUIT = 9 +pkg syscall (netbsd-arm64-cgo), const VQUIT ideal-int +pkg syscall (netbsd-arm64-cgo), const VREPRINT = 6 +pkg syscall (netbsd-arm64-cgo), const VREPRINT ideal-int +pkg syscall (netbsd-arm64-cgo), const VSTART = 12 +pkg syscall (netbsd-arm64-cgo), const VSTART ideal-int +pkg syscall (netbsd-arm64-cgo), const VSTATUS = 18 +pkg syscall (netbsd-arm64-cgo), const VSTATUS ideal-int +pkg syscall (netbsd-arm64-cgo), const VSTOP = 13 +pkg syscall (netbsd-arm64-cgo), const VSTOP ideal-int +pkg syscall (netbsd-arm64-cgo), const VSUSP = 10 +pkg syscall (netbsd-arm64-cgo), const VSUSP ideal-int +pkg syscall (netbsd-arm64-cgo), const VTIME = 17 +pkg syscall (netbsd-arm64-cgo), const VTIME ideal-int +pkg syscall (netbsd-arm64-cgo), const VWERASE = 4 +pkg syscall (netbsd-arm64-cgo), const VWERASE ideal-int +pkg syscall (netbsd-arm64-cgo), const WALL = 8 +pkg syscall (netbsd-arm64-cgo), const WALL ideal-int +pkg syscall (netbsd-arm64-cgo), const WALLSIG = 8 +pkg syscall (netbsd-arm64-cgo), const WALLSIG ideal-int +pkg syscall (netbsd-arm64-cgo), const WALTSIG = 4 +pkg syscall (netbsd-arm64-cgo), const WALTSIG ideal-int +pkg syscall (netbsd-arm64-cgo), const WCLONE = 4 +pkg syscall (netbsd-arm64-cgo), const WCLONE ideal-int +pkg syscall (netbsd-arm64-cgo), const WCOREFLAG = 128 +pkg syscall (netbsd-arm64-cgo), const WCOREFLAG ideal-int +pkg syscall (netbsd-arm64-cgo), const WNOHANG = 1 +pkg syscall (netbsd-arm64-cgo), const WNOHANG ideal-int +pkg syscall (netbsd-arm64-cgo), const WNOWAIT = 65536 +pkg syscall (netbsd-arm64-cgo), const WNOWAIT ideal-int +pkg syscall (netbsd-arm64-cgo), const WNOZOMBIE = 131072 +pkg syscall (netbsd-arm64-cgo), const WNOZOMBIE ideal-int +pkg syscall (netbsd-arm64-cgo), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-arm64-cgo), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-arm64-cgo), const WSTOPPED = 127 +pkg syscall (netbsd-arm64-cgo), const WSTOPPED ideal-int +pkg syscall (netbsd-arm64-cgo), const WUNTRACED = 2 +pkg syscall (netbsd-arm64-cgo), const WUNTRACED ideal-int +pkg syscall (netbsd-arm64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func Access(string, uint32) error +pkg syscall (netbsd-arm64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-arm64-cgo), func Bind(int, Sockaddr) error +pkg syscall (netbsd-arm64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-arm64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-arm64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-arm64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-arm64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-arm64-cgo), func CheckBpfVersion(int) error +pkg syscall (netbsd-arm64-cgo), func Chflags(string, int) error +pkg syscall (netbsd-arm64-cgo), func Chroot(string) error +pkg syscall (netbsd-arm64-cgo), func Close(int) error +pkg syscall (netbsd-arm64-cgo), func CloseOnExec(int) +pkg syscall (netbsd-arm64-cgo), func CmsgLen(int) int +pkg syscall (netbsd-arm64-cgo), func CmsgSpace(int) int +pkg syscall (netbsd-arm64-cgo), func Connect(int, Sockaddr) error +pkg syscall (netbsd-arm64-cgo), func Dup2(int, int) error +pkg syscall (netbsd-arm64-cgo), func Dup(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Fchdir(int) error +pkg syscall (netbsd-arm64-cgo), func Fchflags(int, int) error +pkg syscall (netbsd-arm64-cgo), func Fchmod(int, uint32) error +pkg syscall (netbsd-arm64-cgo), func Fchown(int, int, int) error +pkg syscall (netbsd-arm64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-arm64-cgo), func Flock(int, int) error +pkg syscall (netbsd-arm64-cgo), func FlushBpf(int) error +pkg syscall (netbsd-arm64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-arm64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-arm64-cgo), func Fsync(int) error +pkg syscall (netbsd-arm64-cgo), func Ftruncate(int, int64) error +pkg syscall (netbsd-arm64-cgo), func Futimes(int, []Timeval) error +pkg syscall (netbsd-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-arm64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func Getpgid(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Getpgrp() int +pkg syscall (netbsd-arm64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-arm64-cgo), func Getsid(int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-arm64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-arm64-cgo), func Issetugid() bool +pkg syscall (netbsd-arm64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-arm64-cgo), func Kill(int, Signal) error +pkg syscall (netbsd-arm64-cgo), func Kqueue() (int, error) +pkg syscall (netbsd-arm64-cgo), func Listen(int, int) error +pkg syscall (netbsd-arm64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-arm64-cgo), func Mkfifo(string, uint32) error +pkg syscall (netbsd-arm64-cgo), func Mknod(string, uint32, int) error +pkg syscall (netbsd-arm64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-arm64-cgo), func Munmap([]uint8) error +pkg syscall (netbsd-arm64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-arm64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-arm64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-arm64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-arm64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-arm64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-arm64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Pipe2([]int, int) error +pkg syscall (netbsd-arm64-cgo), func Pipe([]int) error +pkg syscall (netbsd-arm64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-arm64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-arm64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-arm64-cgo), func Revoke(string) error +pkg syscall (netbsd-arm64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-arm64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-arm64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-arm64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-arm64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-arm64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-arm64-cgo), func SetBpfInterface(int, string) error +pkg syscall (netbsd-arm64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-arm64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-arm64-cgo), func Setegid(int) error +pkg syscall (netbsd-arm64-cgo), func Seteuid(int) error +pkg syscall (netbsd-arm64-cgo), func Setgid(int) error +pkg syscall (netbsd-arm64-cgo), func Setgroups([]int) error +pkg syscall (netbsd-arm64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-arm64-cgo), func SetNonblock(int, bool) error +pkg syscall (netbsd-arm64-cgo), func Setpgid(int, int) error +pkg syscall (netbsd-arm64-cgo), func Setpriority(int, int, int) error +pkg syscall (netbsd-arm64-cgo), func Setregid(int, int) error +pkg syscall (netbsd-arm64-cgo), func Setreuid(int, int) error +pkg syscall (netbsd-arm64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm64-cgo), func Setsid() (int, error) +pkg syscall (netbsd-arm64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-arm64-cgo), func Settimeofday(*Timeval) error +pkg syscall (netbsd-arm64-cgo), func Setuid(int) error +pkg syscall (netbsd-arm64-cgo), func Shutdown(int, int) error +pkg syscall (netbsd-arm64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-arm64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-arm64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-arm64-cgo), func Stat(string, *Stat_t) error +pkg syscall (netbsd-arm64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-arm64-cgo), func Sync() error +pkg syscall (netbsd-arm64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64-cgo), func Sysctl(string) (string, error) +pkg syscall (netbsd-arm64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-arm64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-arm64-cgo), func Truncate(string, int64) error +pkg syscall (netbsd-arm64-cgo), func Umask(int) int +pkg syscall (netbsd-arm64-cgo), func UnixRights(...int) []uint8 +pkg syscall (netbsd-arm64-cgo), func Unmount(string, int) error +pkg syscall (netbsd-arm64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-arm64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-arm64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-arm64-cgo), method (*Iovec) SetLen(int) +pkg syscall (netbsd-arm64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-arm64-cgo), type BpfInsn struct +pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-arm64-cgo), type BpfInsn struct, K uint32 +pkg syscall (netbsd-arm64-cgo), type BpfProgram struct +pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type BpfStat struct +pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-arm64-cgo), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct +pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct, Sec int64 +pkg syscall (netbsd-arm64-cgo), type BpfTimeval struct, Usec int64 +pkg syscall (netbsd-arm64-cgo), type BpfVersion struct +pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct +pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-arm64-cgo), type Credential struct +pkg syscall (netbsd-arm64-cgo), type Credential struct, Gid uint32 +pkg syscall (netbsd-arm64-cgo), type Credential struct, Groups []uint32 +pkg syscall (netbsd-arm64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-arm64-cgo), type Credential struct, Uid uint32 +pkg syscall (netbsd-arm64-cgo), type Dirent struct +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-arm64-cgo), type Dirent struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type FdSet struct +pkg syscall (netbsd-arm64-cgo), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-arm64-cgo), type Flock_t struct +pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Len int64 +pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Pid int32 +pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Start int64 +pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Type int16 +pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Whence int16 +pkg syscall (netbsd-arm64-cgo), type Fsid struct +pkg syscall (netbsd-arm64-cgo), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-arm64-cgo), type ICMPv6Filter struct +pkg syscall (netbsd-arm64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-arm64-cgo), type IfData struct +pkg syscall (netbsd-arm64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Collisions uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-arm64-cgo), type IfData struct, Link_state int32 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Metric uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Mtu uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Noproto uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Obytes uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Opackets uint64 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-arm64-cgo), type IfData struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct +pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct +pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct +pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-arm64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-arm64-cgo), type Iovec struct +pkg syscall (netbsd-arm64-cgo), type Iovec struct, Base *uint8 +pkg syscall (netbsd-arm64-cgo), type Iovec struct, Len uint64 +pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct +pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Data int64 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Udata int64 +pkg syscall (netbsd-arm64-cgo), type Mclpool [0]uint8 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Flags int32 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-arm64-cgo), type Rlimit struct +pkg syscall (netbsd-arm64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-arm64-cgo), type Rlimit struct, Max uint64 +pkg syscall (netbsd-arm64-cgo), type RouteMessage struct +pkg syscall (netbsd-arm64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-arm64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-arm64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-arm64-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Idrss int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Inblock int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Isrss int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Majflt int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Minflt int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nswap int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Oublock int64 +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Stime Timeval +pkg syscall (netbsd-arm64-cgo), type Rusage struct, Utime Timeval +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct +pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-arm64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-arm64-cgo), type Statfs_t [0]uint8 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Size int64 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-arm64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-arm64-cgo), type Termios struct +pkg syscall (netbsd-arm64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Cflag uint32 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Iflag uint32 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Ispeed int32 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Lflag uint32 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Oflag uint32 +pkg syscall (netbsd-arm64-cgo), type Termios struct, Ospeed int32 +pkg syscall (netbsd-arm64-cgo), type Timespec struct, Nsec int64 +pkg syscall (netbsd-arm64-cgo), type Timespec struct, Sec int64 +pkg syscall (netbsd-arm64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64-cgo), type Timeval struct, Sec int64 +pkg syscall (netbsd-arm64-cgo), type Timeval struct, Usec int32 +pkg syscall (netbsd-arm64-cgo), type WaitStatus uint32 +pkg syscall (netbsd-arm64-cgo), var Stderr int +pkg syscall (netbsd-arm64-cgo), var Stdin int +pkg syscall (netbsd-arm64-cgo), var Stdout int +pkg syscall (netbsd-arm64), const AF_APPLETALK = 16 +pkg syscall (netbsd-arm64), const AF_APPLETALK ideal-int +pkg syscall (netbsd-arm64), const AF_ARP = 28 +pkg syscall (netbsd-arm64), const AF_ARP ideal-int +pkg syscall (netbsd-arm64), const AF_BLUETOOTH = 31 +pkg syscall (netbsd-arm64), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-arm64), const AF_CCITT = 10 +pkg syscall (netbsd-arm64), const AF_CCITT ideal-int +pkg syscall (netbsd-arm64), const AF_CHAOS = 5 +pkg syscall (netbsd-arm64), const AF_CHAOS ideal-int +pkg syscall (netbsd-arm64), const AF_CNT = 21 +pkg syscall (netbsd-arm64), const AF_CNT ideal-int +pkg syscall (netbsd-arm64), const AF_COIP = 20 +pkg syscall (netbsd-arm64), const AF_COIP ideal-int +pkg syscall (netbsd-arm64), const AF_DATAKIT = 9 +pkg syscall (netbsd-arm64), const AF_DATAKIT ideal-int +pkg syscall (netbsd-arm64), const AF_DECnet = 12 +pkg syscall (netbsd-arm64), const AF_DECnet ideal-int +pkg syscall (netbsd-arm64), const AF_DLI = 13 +pkg syscall (netbsd-arm64), const AF_DLI ideal-int +pkg syscall (netbsd-arm64), const AF_E164 = 26 +pkg syscall (netbsd-arm64), const AF_E164 ideal-int +pkg syscall (netbsd-arm64), const AF_ECMA = 8 +pkg syscall (netbsd-arm64), const AF_ECMA ideal-int +pkg syscall (netbsd-arm64), const AF_HYLINK = 15 +pkg syscall (netbsd-arm64), const AF_HYLINK ideal-int +pkg syscall (netbsd-arm64), const AF_IEEE80211 = 32 +pkg syscall (netbsd-arm64), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-arm64), const AF_IMPLINK = 3 +pkg syscall (netbsd-arm64), const AF_IMPLINK ideal-int +pkg syscall (netbsd-arm64), const AF_INET6 = 24 +pkg syscall (netbsd-arm64), const AF_IPX = 23 +pkg syscall (netbsd-arm64), const AF_IPX ideal-int +pkg syscall (netbsd-arm64), const AF_ISDN = 26 +pkg syscall (netbsd-arm64), const AF_ISDN ideal-int +pkg syscall (netbsd-arm64), const AF_ISO = 7 +pkg syscall (netbsd-arm64), const AF_ISO ideal-int +pkg syscall (netbsd-arm64), const AF_LAT = 14 +pkg syscall (netbsd-arm64), const AF_LAT ideal-int +pkg syscall (netbsd-arm64), const AF_LINK = 18 +pkg syscall (netbsd-arm64), const AF_LINK ideal-int +pkg syscall (netbsd-arm64), const AF_LOCAL = 1 +pkg syscall (netbsd-arm64), const AF_LOCAL ideal-int +pkg syscall (netbsd-arm64), const AF_MAX = 35 +pkg syscall (netbsd-arm64), const AF_MAX ideal-int +pkg syscall (netbsd-arm64), const AF_MPLS = 33 +pkg syscall (netbsd-arm64), const AF_MPLS ideal-int +pkg syscall (netbsd-arm64), const AF_NATM = 27 +pkg syscall (netbsd-arm64), const AF_NATM ideal-int +pkg syscall (netbsd-arm64), const AF_NS = 6 +pkg syscall (netbsd-arm64), const AF_NS ideal-int +pkg syscall (netbsd-arm64), const AF_OROUTE = 17 +pkg syscall (netbsd-arm64), const AF_OROUTE ideal-int +pkg syscall (netbsd-arm64), const AF_OSI = 7 +pkg syscall (netbsd-arm64), const AF_OSI ideal-int +pkg syscall (netbsd-arm64), const AF_PUP = 4 +pkg syscall (netbsd-arm64), const AF_PUP ideal-int +pkg syscall (netbsd-arm64), const AF_ROUTE = 34 +pkg syscall (netbsd-arm64), const AF_ROUTE ideal-int +pkg syscall (netbsd-arm64), const AF_SNA = 11 +pkg syscall (netbsd-arm64), const AF_SNA ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_ARCNET = 7 +pkg syscall (netbsd-arm64), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_ETHER = 1 +pkg syscall (netbsd-arm64), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_FRELAY = 15 +pkg syscall (netbsd-arm64), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_IEEE1394 = 24 +pkg syscall (netbsd-arm64), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_IEEE802 = 6 +pkg syscall (netbsd-arm64), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-arm64), const ARPHRD_STRIP = 23 +pkg syscall (netbsd-arm64), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-arm64), const B0 = 0 +pkg syscall (netbsd-arm64), const B0 ideal-int +pkg syscall (netbsd-arm64), const B110 = 110 +pkg syscall (netbsd-arm64), const B110 ideal-int +pkg syscall (netbsd-arm64), const B115200 = 115200 +pkg syscall (netbsd-arm64), const B115200 ideal-int +pkg syscall (netbsd-arm64), const B1200 = 1200 +pkg syscall (netbsd-arm64), const B1200 ideal-int +pkg syscall (netbsd-arm64), const B134 = 134 +pkg syscall (netbsd-arm64), const B134 ideal-int +pkg syscall (netbsd-arm64), const B14400 = 14400 +pkg syscall (netbsd-arm64), const B14400 ideal-int +pkg syscall (netbsd-arm64), const B150 = 150 +pkg syscall (netbsd-arm64), const B150 ideal-int +pkg syscall (netbsd-arm64), const B1800 = 1800 +pkg syscall (netbsd-arm64), const B1800 ideal-int +pkg syscall (netbsd-arm64), const B19200 = 19200 +pkg syscall (netbsd-arm64), const B19200 ideal-int +pkg syscall (netbsd-arm64), const B200 = 200 +pkg syscall (netbsd-arm64), const B200 ideal-int +pkg syscall (netbsd-arm64), const B230400 = 230400 +pkg syscall (netbsd-arm64), const B230400 ideal-int +pkg syscall (netbsd-arm64), const B2400 = 2400 +pkg syscall (netbsd-arm64), const B2400 ideal-int +pkg syscall (netbsd-arm64), const B28800 = 28800 +pkg syscall (netbsd-arm64), const B28800 ideal-int +pkg syscall (netbsd-arm64), const B300 = 300 +pkg syscall (netbsd-arm64), const B300 ideal-int +pkg syscall (netbsd-arm64), const B38400 = 38400 +pkg syscall (netbsd-arm64), const B38400 ideal-int +pkg syscall (netbsd-arm64), const B460800 = 460800 +pkg syscall (netbsd-arm64), const B460800 ideal-int +pkg syscall (netbsd-arm64), const B4800 = 4800 +pkg syscall (netbsd-arm64), const B4800 ideal-int +pkg syscall (netbsd-arm64), const B50 = 50 +pkg syscall (netbsd-arm64), const B50 ideal-int +pkg syscall (netbsd-arm64), const B57600 = 57600 +pkg syscall (netbsd-arm64), const B57600 ideal-int +pkg syscall (netbsd-arm64), const B600 = 600 +pkg syscall (netbsd-arm64), const B600 ideal-int +pkg syscall (netbsd-arm64), const B7200 = 7200 +pkg syscall (netbsd-arm64), const B7200 ideal-int +pkg syscall (netbsd-arm64), const B75 = 75 +pkg syscall (netbsd-arm64), const B75 ideal-int +pkg syscall (netbsd-arm64), const B76800 = 76800 +pkg syscall (netbsd-arm64), const B76800 ideal-int +pkg syscall (netbsd-arm64), const B921600 = 921600 +pkg syscall (netbsd-arm64), const B921600 ideal-int +pkg syscall (netbsd-arm64), const B9600 = 9600 +pkg syscall (netbsd-arm64), const B9600 ideal-int +pkg syscall (netbsd-arm64), const BIOCFEEDBACK = 2147762813 +pkg syscall (netbsd-arm64), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-arm64), const BIOCFLUSH = 536887912 +pkg syscall (netbsd-arm64), const BIOCFLUSH ideal-int +pkg syscall (netbsd-arm64), const BIOCGBLEN = 1074020966 +pkg syscall (netbsd-arm64), const BIOCGBLEN ideal-int +pkg syscall (netbsd-arm64), const BIOCGDLT = 1074020970 +pkg syscall (netbsd-arm64), const BIOCGDLT ideal-int +pkg syscall (netbsd-arm64), const BIOCGDLTLIST = 3222291063 +pkg syscall (netbsd-arm64), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-arm64), const BIOCGETIF = 1083196011 +pkg syscall (netbsd-arm64), const BIOCGETIF ideal-int +pkg syscall (netbsd-arm64), const BIOCGFEEDBACK = 1074020988 +pkg syscall (netbsd-arm64), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-arm64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (netbsd-arm64), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-arm64), const BIOCGRTIMEOUT = 1074807419 +pkg syscall (netbsd-arm64), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-arm64), const BIOCGSEESENT = 1074020984 +pkg syscall (netbsd-arm64), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-arm64), const BIOCGSTATS = 1082147439 +pkg syscall (netbsd-arm64), const BIOCGSTATS ideal-int +pkg syscall (netbsd-arm64), const BIOCGSTATSOLD = 1074283119 +pkg syscall (netbsd-arm64), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-arm64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (netbsd-arm64), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-arm64), const BIOCPROMISC = 536887913 +pkg syscall (netbsd-arm64), const BIOCPROMISC ideal-int +pkg syscall (netbsd-arm64), const BIOCSBLEN = 3221504614 +pkg syscall (netbsd-arm64), const BIOCSBLEN ideal-int +pkg syscall (netbsd-arm64), const BIOCSDLT = 2147762806 +pkg syscall (netbsd-arm64), const BIOCSDLT ideal-int +pkg syscall (netbsd-arm64), const BIOCSETF = 2148549223 +pkg syscall (netbsd-arm64), const BIOCSETF ideal-int +pkg syscall (netbsd-arm64), const BIOCSETIF = 2156937836 +pkg syscall (netbsd-arm64), const BIOCSETIF ideal-int +pkg syscall (netbsd-arm64), const BIOCSFEEDBACK = 2147762813 +pkg syscall (netbsd-arm64), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-arm64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (netbsd-arm64), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-arm64), const BIOCSRTIMEOUT = 2148549242 +pkg syscall (netbsd-arm64), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-arm64), const BIOCSSEESENT = 2147762809 +pkg syscall (netbsd-arm64), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-arm64), const BIOCSTCPF = 2148549234 +pkg syscall (netbsd-arm64), const BIOCSTCPF ideal-int +pkg syscall (netbsd-arm64), const BIOCSUDPF = 2148549235 +pkg syscall (netbsd-arm64), const BIOCSUDPF ideal-int +pkg syscall (netbsd-arm64), const BIOCVERSION = 1074020977 +pkg syscall (netbsd-arm64), const BIOCVERSION ideal-int +pkg syscall (netbsd-arm64), const BPF_A = 16 +pkg syscall (netbsd-arm64), const BPF_ABS = 32 +pkg syscall (netbsd-arm64), const BPF_ABS ideal-int +pkg syscall (netbsd-arm64), const BPF_ADD = 0 +pkg syscall (netbsd-arm64), const BPF_ADD ideal-int +pkg syscall (netbsd-arm64), const BPF_A ideal-int +pkg syscall (netbsd-arm64), const BPF_ALIGNMENT32 = 4 +pkg syscall (netbsd-arm64), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-arm64), const BPF_ALIGNMENT = 8 +pkg syscall (netbsd-arm64), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-arm64), const BPF_ALU = 4 +pkg syscall (netbsd-arm64), const BPF_ALU ideal-int +pkg syscall (netbsd-arm64), const BPF_AND = 80 +pkg syscall (netbsd-arm64), const BPF_AND ideal-int +pkg syscall (netbsd-arm64), const BPF_B = 16 +pkg syscall (netbsd-arm64), const BPF_B ideal-int +pkg syscall (netbsd-arm64), const BPF_DFLTBUFSIZE = 1048576 +pkg syscall (netbsd-arm64), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-arm64), const BPF_DIV = 48 +pkg syscall (netbsd-arm64), const BPF_DIV ideal-int +pkg syscall (netbsd-arm64), const BPF_H = 8 +pkg syscall (netbsd-arm64), const BPF_H ideal-int +pkg syscall (netbsd-arm64), const BPF_IMM = 0 +pkg syscall (netbsd-arm64), const BPF_IMM ideal-int +pkg syscall (netbsd-arm64), const BPF_IND = 64 +pkg syscall (netbsd-arm64), const BPF_IND ideal-int +pkg syscall (netbsd-arm64), const BPF_JA = 0 +pkg syscall (netbsd-arm64), const BPF_JA ideal-int +pkg syscall (netbsd-arm64), const BPF_JEQ = 16 +pkg syscall (netbsd-arm64), const BPF_JEQ ideal-int +pkg syscall (netbsd-arm64), const BPF_JGE = 48 +pkg syscall (netbsd-arm64), const BPF_JGE ideal-int +pkg syscall (netbsd-arm64), const BPF_JGT = 32 +pkg syscall (netbsd-arm64), const BPF_JGT ideal-int +pkg syscall (netbsd-arm64), const BPF_JMP = 5 +pkg syscall (netbsd-arm64), const BPF_JMP ideal-int +pkg syscall (netbsd-arm64), const BPF_JSET = 64 +pkg syscall (netbsd-arm64), const BPF_JSET ideal-int +pkg syscall (netbsd-arm64), const BPF_K = 0 +pkg syscall (netbsd-arm64), const BPF_K ideal-int +pkg syscall (netbsd-arm64), const BPF_LD = 0 +pkg syscall (netbsd-arm64), const BPF_LD ideal-int +pkg syscall (netbsd-arm64), const BPF_LDX = 1 +pkg syscall (netbsd-arm64), const BPF_LDX ideal-int +pkg syscall (netbsd-arm64), const BPF_LEN = 128 +pkg syscall (netbsd-arm64), const BPF_LEN ideal-int +pkg syscall (netbsd-arm64), const BPF_LSH = 96 +pkg syscall (netbsd-arm64), const BPF_LSH ideal-int +pkg syscall (netbsd-arm64), const BPF_MAJOR_VERSION = 1 +pkg syscall (netbsd-arm64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-arm64), const BPF_MAXBUFSIZE = 16777216 +pkg syscall (netbsd-arm64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-arm64), const BPF_MAXINSNS = 512 +pkg syscall (netbsd-arm64), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-arm64), const BPF_MEM = 96 +pkg syscall (netbsd-arm64), const BPF_MEM ideal-int +pkg syscall (netbsd-arm64), const BPF_MEMWORDS = 16 +pkg syscall (netbsd-arm64), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-arm64), const BPF_MINBUFSIZE = 32 +pkg syscall (netbsd-arm64), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-arm64), const BPF_MINOR_VERSION = 1 +pkg syscall (netbsd-arm64), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-arm64), const BPF_MISC = 7 +pkg syscall (netbsd-arm64), const BPF_MISC ideal-int +pkg syscall (netbsd-arm64), const BPF_MSH = 160 +pkg syscall (netbsd-arm64), const BPF_MSH ideal-int +pkg syscall (netbsd-arm64), const BPF_MUL = 32 +pkg syscall (netbsd-arm64), const BPF_MUL ideal-int +pkg syscall (netbsd-arm64), const BPF_NEG = 128 +pkg syscall (netbsd-arm64), const BPF_NEG ideal-int +pkg syscall (netbsd-arm64), const BPF_OR = 64 +pkg syscall (netbsd-arm64), const BPF_OR ideal-int +pkg syscall (netbsd-arm64), const BPF_RELEASE = 199606 +pkg syscall (netbsd-arm64), const BPF_RELEASE ideal-int +pkg syscall (netbsd-arm64), const BPF_RET = 6 +pkg syscall (netbsd-arm64), const BPF_RET ideal-int +pkg syscall (netbsd-arm64), const BPF_RSH = 112 +pkg syscall (netbsd-arm64), const BPF_RSH ideal-int +pkg syscall (netbsd-arm64), const BPF_ST = 2 +pkg syscall (netbsd-arm64), const BPF_ST ideal-int +pkg syscall (netbsd-arm64), const BPF_STX = 3 +pkg syscall (netbsd-arm64), const BPF_STX ideal-int +pkg syscall (netbsd-arm64), const BPF_SUB = 16 +pkg syscall (netbsd-arm64), const BPF_SUB ideal-int +pkg syscall (netbsd-arm64), const BPF_TAX = 0 +pkg syscall (netbsd-arm64), const BPF_TAX ideal-int +pkg syscall (netbsd-arm64), const BPF_TXA = 128 +pkg syscall (netbsd-arm64), const BPF_TXA ideal-int +pkg syscall (netbsd-arm64), const BPF_W = 0 +pkg syscall (netbsd-arm64), const BPF_W ideal-int +pkg syscall (netbsd-arm64), const BPF_X = 8 +pkg syscall (netbsd-arm64), const BPF_X ideal-int +pkg syscall (netbsd-arm64), const BRKINT = 2 +pkg syscall (netbsd-arm64), const BRKINT ideal-int +pkg syscall (netbsd-arm64), const CFLUSH = 15 +pkg syscall (netbsd-arm64), const CFLUSH ideal-int +pkg syscall (netbsd-arm64), const CLOCAL = 32768 +pkg syscall (netbsd-arm64), const CLOCAL ideal-int +pkg syscall (netbsd-arm64), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-arm64), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-arm64), const CLONE_FILES = 1024 +pkg syscall (netbsd-arm64), const CLONE_FILES ideal-int +pkg syscall (netbsd-arm64), const CLONE_FS = 512 +pkg syscall (netbsd-arm64), const CLONE_FS ideal-int +pkg syscall (netbsd-arm64), const CLONE_PID = 4096 +pkg syscall (netbsd-arm64), const CLONE_PID ideal-int +pkg syscall (netbsd-arm64), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-arm64), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-arm64), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-arm64), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-arm64), const CLONE_VFORK = 16384 +pkg syscall (netbsd-arm64), const CLONE_VFORK ideal-int +pkg syscall (netbsd-arm64), const CLONE_VM = 256 +pkg syscall (netbsd-arm64), const CLONE_VM ideal-int +pkg syscall (netbsd-arm64), const CREAD = 2048 +pkg syscall (netbsd-arm64), const CREAD ideal-int +pkg syscall (netbsd-arm64), const CS5 = 0 +pkg syscall (netbsd-arm64), const CS5 ideal-int +pkg syscall (netbsd-arm64), const CS6 = 256 +pkg syscall (netbsd-arm64), const CS6 ideal-int +pkg syscall (netbsd-arm64), const CS7 = 512 +pkg syscall (netbsd-arm64), const CS7 ideal-int +pkg syscall (netbsd-arm64), const CS8 = 768 +pkg syscall (netbsd-arm64), const CS8 ideal-int +pkg syscall (netbsd-arm64), const CSIZE = 768 +pkg syscall (netbsd-arm64), const CSIZE ideal-int +pkg syscall (netbsd-arm64), const CSTART = 17 +pkg syscall (netbsd-arm64), const CSTART ideal-int +pkg syscall (netbsd-arm64), const CSTATUS = 20 +pkg syscall (netbsd-arm64), const CSTATUS ideal-int +pkg syscall (netbsd-arm64), const CSTOP = 19 +pkg syscall (netbsd-arm64), const CSTOPB = 1024 +pkg syscall (netbsd-arm64), const CSTOPB ideal-int +pkg syscall (netbsd-arm64), const CSTOP ideal-int +pkg syscall (netbsd-arm64), const CSUSP = 26 +pkg syscall (netbsd-arm64), const CSUSP ideal-int +pkg syscall (netbsd-arm64), const CTL_MAXNAME = 12 +pkg syscall (netbsd-arm64), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-arm64), const CTL_NET = 4 +pkg syscall (netbsd-arm64), const CTL_NET ideal-int +pkg syscall (netbsd-arm64), const CTL_QUERY = -2 +pkg syscall (netbsd-arm64), const CTL_QUERY ideal-int +pkg syscall (netbsd-arm64), const DIOCBSFLUSH = 536896632 +pkg syscall (netbsd-arm64), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-arm64), const DLT_A429 = 184 +pkg syscall (netbsd-arm64), const DLT_A429 ideal-int +pkg syscall (netbsd-arm64), const DLT_A653_ICM = 185 +pkg syscall (netbsd-arm64), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-arm64), const DLT_AIRONET_HEADER = 120 +pkg syscall (netbsd-arm64), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-arm64), const DLT_AOS = 222 +pkg syscall (netbsd-arm64), const DLT_AOS ideal-int +pkg syscall (netbsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (netbsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-arm64), const DLT_ARCNET = 7 +pkg syscall (netbsd-arm64), const DLT_ARCNET ideal-int +pkg syscall (netbsd-arm64), const DLT_ARCNET_LINUX = 129 +pkg syscall (netbsd-arm64), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-arm64), const DLT_ATM_CLIP = 19 +pkg syscall (netbsd-arm64), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-arm64), const DLT_ATM_RFC1483 = 11 +pkg syscall (netbsd-arm64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-arm64), const DLT_AURORA = 126 +pkg syscall (netbsd-arm64), const DLT_AURORA ideal-int +pkg syscall (netbsd-arm64), const DLT_AX25 = 3 +pkg syscall (netbsd-arm64), const DLT_AX25 ideal-int +pkg syscall (netbsd-arm64), const DLT_AX25_KISS = 202 +pkg syscall (netbsd-arm64), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-arm64), const DLT_BACNET_MS_TP = 165 +pkg syscall (netbsd-arm64), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (netbsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-arm64), const DLT_CAN20B = 190 +pkg syscall (netbsd-arm64), const DLT_CAN20B ideal-int +pkg syscall (netbsd-arm64), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (netbsd-arm64), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-arm64), const DLT_CHAOS = 5 +pkg syscall (netbsd-arm64), const DLT_CHAOS ideal-int +pkg syscall (netbsd-arm64), const DLT_C_HDLC = 104 +pkg syscall (netbsd-arm64), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-arm64), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (netbsd-arm64), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-arm64), const DLT_CISCO_IOS = 118 +pkg syscall (netbsd-arm64), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-arm64), const DLT_DECT = 221 +pkg syscall (netbsd-arm64), const DLT_DECT ideal-int +pkg syscall (netbsd-arm64), const DLT_DOCSIS = 143 +pkg syscall (netbsd-arm64), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-arm64), const DLT_ECONET = 115 +pkg syscall (netbsd-arm64), const DLT_ECONET ideal-int +pkg syscall (netbsd-arm64), const DLT_EN10MB = 1 +pkg syscall (netbsd-arm64), const DLT_EN10MB ideal-int +pkg syscall (netbsd-arm64), const DLT_EN3MB = 2 +pkg syscall (netbsd-arm64), const DLT_EN3MB ideal-int +pkg syscall (netbsd-arm64), const DLT_ENC = 109 +pkg syscall (netbsd-arm64), const DLT_ENC ideal-int +pkg syscall (netbsd-arm64), const DLT_ERF = 197 +pkg syscall (netbsd-arm64), const DLT_ERF_ETH = 175 +pkg syscall (netbsd-arm64), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-arm64), const DLT_ERF ideal-int +pkg syscall (netbsd-arm64), const DLT_ERF_POS = 176 +pkg syscall (netbsd-arm64), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-arm64), const DLT_FC_2 = 224 +pkg syscall (netbsd-arm64), const DLT_FC_2 ideal-int +pkg syscall (netbsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (netbsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-arm64), const DLT_FDDI = 10 +pkg syscall (netbsd-arm64), const DLT_FDDI ideal-int +pkg syscall (netbsd-arm64), const DLT_FLEXRAY = 210 +pkg syscall (netbsd-arm64), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-arm64), const DLT_FRELAY = 107 +pkg syscall (netbsd-arm64), const DLT_FRELAY ideal-int +pkg syscall (netbsd-arm64), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (netbsd-arm64), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-arm64), const DLT_GCOM_SERIAL = 173 +pkg syscall (netbsd-arm64), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-arm64), const DLT_GCOM_T1E1 = 172 +pkg syscall (netbsd-arm64), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-arm64), const DLT_GPF_F = 171 +pkg syscall (netbsd-arm64), const DLT_GPF_F ideal-int +pkg syscall (netbsd-arm64), const DLT_GPF_T = 170 +pkg syscall (netbsd-arm64), const DLT_GPF_T ideal-int +pkg syscall (netbsd-arm64), const DLT_GPRS_LLC = 169 +pkg syscall (netbsd-arm64), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-arm64), const DLT_GSMTAP_ABIS = 218 +pkg syscall (netbsd-arm64), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-arm64), const DLT_GSMTAP_UM = 217 +pkg syscall (netbsd-arm64), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-arm64), const DLT_HDLC = 16 +pkg syscall (netbsd-arm64), const DLT_HDLC ideal-int +pkg syscall (netbsd-arm64), const DLT_HHDLC = 121 +pkg syscall (netbsd-arm64), const DLT_HHDLC ideal-int +pkg syscall (netbsd-arm64), const DLT_HIPPI = 15 +pkg syscall (netbsd-arm64), const DLT_HIPPI ideal-int +pkg syscall (netbsd-arm64), const DLT_IBM_SN = 146 +pkg syscall (netbsd-arm64), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-arm64), const DLT_IBM_SP = 145 +pkg syscall (netbsd-arm64), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_11 = 105 +pkg syscall (netbsd-arm64), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4 = 195 +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (netbsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (netbsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-arm64), const DLT_IEEE802 = 6 +pkg syscall (netbsd-arm64), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-arm64), const DLT_IPMB = 199 +pkg syscall (netbsd-arm64), const DLT_IPMB ideal-int +pkg syscall (netbsd-arm64), const DLT_IPMB_LINUX = 209 +pkg syscall (netbsd-arm64), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-arm64), const DLT_IPNET = 226 +pkg syscall (netbsd-arm64), const DLT_IPNET ideal-int +pkg syscall (netbsd-arm64), const DLT_IP_OVER_FC = 122 +pkg syscall (netbsd-arm64), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-arm64), const DLT_IPV4 = 228 +pkg syscall (netbsd-arm64), const DLT_IPV4 ideal-int +pkg syscall (netbsd-arm64), const DLT_IPV6 = 229 +pkg syscall (netbsd-arm64), const DLT_IPV6 ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ES = 132 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ETHER = 178 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_GGSN = 133 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ISM = 194 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MFR = 134 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLFR = 131 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPP = 179 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ST = 200 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-arm64), const DLT_JUNIPER_VP = 183 +pkg syscall (netbsd-arm64), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-arm64), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (netbsd-arm64), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-arm64), const DLT_LAPD = 203 +pkg syscall (netbsd-arm64), const DLT_LAPD ideal-int +pkg syscall (netbsd-arm64), const DLT_LIN = 212 +pkg syscall (netbsd-arm64), const DLT_LIN ideal-int +pkg syscall (netbsd-arm64), const DLT_LINUX_EVDEV = 216 +pkg syscall (netbsd-arm64), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-arm64), const DLT_LINUX_IRDA = 144 +pkg syscall (netbsd-arm64), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-arm64), const DLT_LINUX_LAPD = 177 +pkg syscall (netbsd-arm64), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-arm64), const DLT_LINUX_SLL = 113 +pkg syscall (netbsd-arm64), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-arm64), const DLT_LOOP = 108 +pkg syscall (netbsd-arm64), const DLT_LOOP ideal-int +pkg syscall (netbsd-arm64), const DLT_LTALK = 114 +pkg syscall (netbsd-arm64), const DLT_LTALK ideal-int +pkg syscall (netbsd-arm64), const DLT_MFR = 182 +pkg syscall (netbsd-arm64), const DLT_MFR ideal-int +pkg syscall (netbsd-arm64), const DLT_MOST = 211 +pkg syscall (netbsd-arm64), const DLT_MOST ideal-int +pkg syscall (netbsd-arm64), const DLT_MPLS = 219 +pkg syscall (netbsd-arm64), const DLT_MPLS ideal-int +pkg syscall (netbsd-arm64), const DLT_MTP2 = 140 +pkg syscall (netbsd-arm64), const DLT_MTP2 ideal-int +pkg syscall (netbsd-arm64), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (netbsd-arm64), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-arm64), const DLT_MTP3 = 141 +pkg syscall (netbsd-arm64), const DLT_MTP3 ideal-int +pkg syscall (netbsd-arm64), const DLT_NULL = 0 +pkg syscall (netbsd-arm64), const DLT_NULL ideal-int +pkg syscall (netbsd-arm64), const DLT_PCI_EXP = 125 +pkg syscall (netbsd-arm64), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-arm64), const DLT_PFLOG = 117 +pkg syscall (netbsd-arm64), const DLT_PFLOG ideal-int +pkg syscall (netbsd-arm64), const DLT_PFSYNC = 18 +pkg syscall (netbsd-arm64), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-arm64), const DLT_PPI = 192 +pkg syscall (netbsd-arm64), const DLT_PPI ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP = 9 +pkg syscall (netbsd-arm64), const DLT_PPP_BSDOS = 14 +pkg syscall (netbsd-arm64), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP_ETHER = 51 +pkg syscall (netbsd-arm64), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP_PPPD = 166 +pkg syscall (netbsd-arm64), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP_SERIAL = 50 +pkg syscall (netbsd-arm64), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-arm64), const DLT_PPP_WITH_DIR = 204 +pkg syscall (netbsd-arm64), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-arm64), const DLT_PRISM_HEADER = 119 +pkg syscall (netbsd-arm64), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-arm64), const DLT_PRONET = 4 +pkg syscall (netbsd-arm64), const DLT_PRONET ideal-int +pkg syscall (netbsd-arm64), const DLT_RAIF1 = 198 +pkg syscall (netbsd-arm64), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-arm64), const DLT_RAW = 12 +pkg syscall (netbsd-arm64), const DLT_RAWAF_MASK = 35913728 +pkg syscall (netbsd-arm64), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-arm64), const DLT_RAW ideal-int +pkg syscall (netbsd-arm64), const DLT_RIO = 124 +pkg syscall (netbsd-arm64), const DLT_RIO ideal-int +pkg syscall (netbsd-arm64), const DLT_SCCP = 142 +pkg syscall (netbsd-arm64), const DLT_SCCP ideal-int +pkg syscall (netbsd-arm64), const DLT_SITA = 196 +pkg syscall (netbsd-arm64), const DLT_SITA ideal-int +pkg syscall (netbsd-arm64), const DLT_SLIP = 8 +pkg syscall (netbsd-arm64), const DLT_SLIP_BSDOS = 13 +pkg syscall (netbsd-arm64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-arm64), const DLT_SLIP ideal-int +pkg syscall (netbsd-arm64), const DLT_SUNATM = 123 +pkg syscall (netbsd-arm64), const DLT_SUNATM ideal-int +pkg syscall (netbsd-arm64), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (netbsd-arm64), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-arm64), const DLT_TZSP = 128 +pkg syscall (netbsd-arm64), const DLT_TZSP ideal-int +pkg syscall (netbsd-arm64), const DLT_USB = 186 +pkg syscall (netbsd-arm64), const DLT_USB ideal-int +pkg syscall (netbsd-arm64), const DLT_USB_LINUX = 189 +pkg syscall (netbsd-arm64), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-arm64), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (netbsd-arm64), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-arm64), const DLT_WIHART = 223 +pkg syscall (netbsd-arm64), const DLT_WIHART ideal-int +pkg syscall (netbsd-arm64), const DLT_X2E_SERIAL = 213 +pkg syscall (netbsd-arm64), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-arm64), const DLT_X2E_XORAYA = 214 +pkg syscall (netbsd-arm64), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-arm64), const DT_BLK = 6 +pkg syscall (netbsd-arm64), const DT_BLK ideal-int +pkg syscall (netbsd-arm64), const DT_CHR = 2 +pkg syscall (netbsd-arm64), const DT_CHR ideal-int +pkg syscall (netbsd-arm64), const DT_DIR = 4 +pkg syscall (netbsd-arm64), const DT_DIR ideal-int +pkg syscall (netbsd-arm64), const DT_FIFO = 1 +pkg syscall (netbsd-arm64), const DT_FIFO ideal-int +pkg syscall (netbsd-arm64), const DT_LNK = 10 +pkg syscall (netbsd-arm64), const DT_LNK ideal-int +pkg syscall (netbsd-arm64), const DT_REG = 8 +pkg syscall (netbsd-arm64), const DT_REG ideal-int +pkg syscall (netbsd-arm64), const DT_SOCK = 12 +pkg syscall (netbsd-arm64), const DT_SOCK ideal-int +pkg syscall (netbsd-arm64), const DT_UNKNOWN = 0 +pkg syscall (netbsd-arm64), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-arm64), const DT_WHT = 14 +pkg syscall (netbsd-arm64), const DT_WHT ideal-int +pkg syscall (netbsd-arm64), const E2BIG = 7 +pkg syscall (netbsd-arm64), const EACCES = 13 +pkg syscall (netbsd-arm64), const EADDRINUSE = 48 +pkg syscall (netbsd-arm64), const EADDRNOTAVAIL = 49 +pkg syscall (netbsd-arm64), const EAFNOSUPPORT = 47 +pkg syscall (netbsd-arm64), const EAGAIN = 35 +pkg syscall (netbsd-arm64), const EALREADY = 37 +pkg syscall (netbsd-arm64), const EAUTH = 80 +pkg syscall (netbsd-arm64), const EAUTH Errno +pkg syscall (netbsd-arm64), const EBADF = 9 +pkg syscall (netbsd-arm64), const EBADMSG = 88 +pkg syscall (netbsd-arm64), const EBADMSG Errno +pkg syscall (netbsd-arm64), const EBADRPC = 72 +pkg syscall (netbsd-arm64), const EBADRPC Errno +pkg syscall (netbsd-arm64), const EBUSY = 16 +pkg syscall (netbsd-arm64), const ECANCELED = 87 +pkg syscall (netbsd-arm64), const ECHILD = 10 +pkg syscall (netbsd-arm64), const ECHO = 8 +pkg syscall (netbsd-arm64), const ECHOCTL = 64 +pkg syscall (netbsd-arm64), const ECHOCTL ideal-int +pkg syscall (netbsd-arm64), const ECHOE = 2 +pkg syscall (netbsd-arm64), const ECHOE ideal-int +pkg syscall (netbsd-arm64), const ECHO ideal-int +pkg syscall (netbsd-arm64), const ECHOK = 4 +pkg syscall (netbsd-arm64), const ECHOKE = 1 +pkg syscall (netbsd-arm64), const ECHOKE ideal-int +pkg syscall (netbsd-arm64), const ECHOK ideal-int +pkg syscall (netbsd-arm64), const ECHONL = 16 +pkg syscall (netbsd-arm64), const ECHONL ideal-int +pkg syscall (netbsd-arm64), const ECHOPRT = 32 +pkg syscall (netbsd-arm64), const ECHOPRT ideal-int +pkg syscall (netbsd-arm64), const ECONNABORTED = 53 +pkg syscall (netbsd-arm64), const ECONNREFUSED = 61 +pkg syscall (netbsd-arm64), const ECONNRESET = 54 +pkg syscall (netbsd-arm64), const EDEADLK = 11 +pkg syscall (netbsd-arm64), const EDESTADDRREQ = 39 +pkg syscall (netbsd-arm64), const EDOM = 33 +pkg syscall (netbsd-arm64), const EDQUOT = 69 +pkg syscall (netbsd-arm64), const EEXIST = 17 +pkg syscall (netbsd-arm64), const EFAULT = 14 +pkg syscall (netbsd-arm64), const EFBIG = 27 +pkg syscall (netbsd-arm64), const EFTYPE = 79 +pkg syscall (netbsd-arm64), const EFTYPE Errno +pkg syscall (netbsd-arm64), const EHOSTDOWN = 64 +pkg syscall (netbsd-arm64), const EHOSTUNREACH = 65 +pkg syscall (netbsd-arm64), const EIDRM = 82 +pkg syscall (netbsd-arm64), const EILSEQ = 85 +pkg syscall (netbsd-arm64), const EINPROGRESS = 36 +pkg syscall (netbsd-arm64), const EINTR = 4 +pkg syscall (netbsd-arm64), const EINVAL = 22 +pkg syscall (netbsd-arm64), const EIO = 5 +pkg syscall (netbsd-arm64), const EISCONN = 56 +pkg syscall (netbsd-arm64), const EISDIR = 21 +pkg syscall (netbsd-arm64), const ELAST = 96 +pkg syscall (netbsd-arm64), const ELAST Errno +pkg syscall (netbsd-arm64), const ELOOP = 62 +pkg syscall (netbsd-arm64), const EMFILE = 24 +pkg syscall (netbsd-arm64), const EMLINK = 31 +pkg syscall (netbsd-arm64), const EMSGSIZE = 40 +pkg syscall (netbsd-arm64), const EMUL_LINUX = 1 +pkg syscall (netbsd-arm64), const EMUL_LINUX32 = 5 +pkg syscall (netbsd-arm64), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-arm64), const EMUL_LINUX ideal-int +pkg syscall (netbsd-arm64), const EMUL_MAXID = 6 +pkg syscall (netbsd-arm64), const EMUL_MAXID ideal-int +pkg syscall (netbsd-arm64), const EMULTIHOP = 94 +pkg syscall (netbsd-arm64), const EMULTIHOP Errno +pkg syscall (netbsd-arm64), const ENAMETOOLONG = 63 +pkg syscall (netbsd-arm64), const ENEEDAUTH = 81 +pkg syscall (netbsd-arm64), const ENEEDAUTH Errno +pkg syscall (netbsd-arm64), const ENETDOWN = 50 +pkg syscall (netbsd-arm64), const ENETRESET = 52 +pkg syscall (netbsd-arm64), const ENETUNREACH = 51 +pkg syscall (netbsd-arm64), const ENFILE = 23 +pkg syscall (netbsd-arm64), const ENOATTR = 93 +pkg syscall (netbsd-arm64), const ENOATTR Errno +pkg syscall (netbsd-arm64), const ENOBUFS = 55 +pkg syscall (netbsd-arm64), const ENODATA = 89 +pkg syscall (netbsd-arm64), const ENODATA Errno +pkg syscall (netbsd-arm64), const ENODEV = 19 +pkg syscall (netbsd-arm64), const ENOEXEC = 8 +pkg syscall (netbsd-arm64), const ENOLCK = 77 +pkg syscall (netbsd-arm64), const ENOLINK = 95 +pkg syscall (netbsd-arm64), const ENOLINK Errno +pkg syscall (netbsd-arm64), const ENOMEM = 12 +pkg syscall (netbsd-arm64), const ENOMSG = 83 +pkg syscall (netbsd-arm64), const ENOPROTOOPT = 42 +pkg syscall (netbsd-arm64), const ENOSPC = 28 +pkg syscall (netbsd-arm64), const ENOSR = 90 +pkg syscall (netbsd-arm64), const ENOSR Errno +pkg syscall (netbsd-arm64), const ENOSTR = 91 +pkg syscall (netbsd-arm64), const ENOSTR Errno +pkg syscall (netbsd-arm64), const ENOSYS = 78 +pkg syscall (netbsd-arm64), const ENOTBLK = 15 +pkg syscall (netbsd-arm64), const ENOTCONN = 57 +pkg syscall (netbsd-arm64), const ENOTDIR = 20 +pkg syscall (netbsd-arm64), const ENOTEMPTY = 66 +pkg syscall (netbsd-arm64), const ENOTSOCK = 38 +pkg syscall (netbsd-arm64), const ENOTSUP = 86 +pkg syscall (netbsd-arm64), const ENOTTY = 25 +pkg syscall (netbsd-arm64), const ENXIO = 6 +pkg syscall (netbsd-arm64), const EOPNOTSUPP = 45 +pkg syscall (netbsd-arm64), const EOVERFLOW = 84 +pkg syscall (netbsd-arm64), const EPERM = 1 +pkg syscall (netbsd-arm64), const EPFNOSUPPORT = 46 +pkg syscall (netbsd-arm64), const EPIPE = 32 +pkg syscall (netbsd-arm64), const EPROCLIM = 67 +pkg syscall (netbsd-arm64), const EPROCLIM Errno +pkg syscall (netbsd-arm64), const EPROCUNAVAIL = 76 +pkg syscall (netbsd-arm64), const EPROCUNAVAIL Errno +pkg syscall (netbsd-arm64), const EPROGMISMATCH = 75 +pkg syscall (netbsd-arm64), const EPROGMISMATCH Errno +pkg syscall (netbsd-arm64), const EPROGUNAVAIL = 74 +pkg syscall (netbsd-arm64), const EPROGUNAVAIL Errno +pkg syscall (netbsd-arm64), const EPROTO = 96 +pkg syscall (netbsd-arm64), const EPROTO Errno +pkg syscall (netbsd-arm64), const EPROTONOSUPPORT = 43 +pkg syscall (netbsd-arm64), const EPROTOTYPE = 41 +pkg syscall (netbsd-arm64), const ERANGE = 34 +pkg syscall (netbsd-arm64), const EREMOTE = 71 +pkg syscall (netbsd-arm64), const EROFS = 30 +pkg syscall (netbsd-arm64), const ERPCMISMATCH = 73 +pkg syscall (netbsd-arm64), const ERPCMISMATCH Errno +pkg syscall (netbsd-arm64), const ESHUTDOWN = 58 +pkg syscall (netbsd-arm64), const ESOCKTNOSUPPORT = 44 +pkg syscall (netbsd-arm64), const ESPIPE = 29 +pkg syscall (netbsd-arm64), const ESRCH = 3 +pkg syscall (netbsd-arm64), const ESTALE = 70 +pkg syscall (netbsd-arm64), const ETHER_ADDR_LEN = 6 +pkg syscall (netbsd-arm64), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHERCAP_JUMBO_MTU = 4 +pkg syscall (netbsd-arm64), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_HWTAGGING = 2 +pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_MTU = 1 +pkg syscall (netbsd-arm64), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-arm64), const ETHER_CRC_LEN = 4 +pkg syscall (netbsd-arm64), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_BE = 79764918 +pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_LE = 3988292384 +pkg syscall (netbsd-arm64), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-arm64), const ETHER_HDR_LEN = 14 +pkg syscall (netbsd-arm64), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHER_MAX_LEN = 1518 +pkg syscall (netbsd-arm64), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHER_MAX_LEN_JUMBO = 9018 +pkg syscall (netbsd-arm64), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-arm64), const ETHERMIN = 46 +pkg syscall (netbsd-arm64), const ETHERMIN ideal-int +pkg syscall (netbsd-arm64), const ETHER_MIN_LEN = 64 +pkg syscall (netbsd-arm64), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHERMTU = 1500 +pkg syscall (netbsd-arm64), const ETHERMTU ideal-int +pkg syscall (netbsd-arm64), const ETHERMTU_JUMBO = 9000 +pkg syscall (netbsd-arm64), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-arm64), const ETHER_PPPOE_ENCAP_LEN = 8 +pkg syscall (netbsd-arm64), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_8023 = 4 +pkg syscall (netbsd-arm64), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AARP = 33011 +pkg syscall (netbsd-arm64), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ACCTON = 33680 +pkg syscall (netbsd-arm64), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AEONIC = 32822 +pkg syscall (netbsd-arm64), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ALPHA = 33098 +pkg syscall (netbsd-arm64), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AMBER = 24584 +pkg syscall (netbsd-arm64), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AMOEBA = 33093 +pkg syscall (netbsd-arm64), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLO = 33015 +pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLODOMAIN = 32793 +pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_APPLETALK = 32923 +pkg syscall (netbsd-arm64), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_APPLITEK = 32967 +pkg syscall (netbsd-arm64), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ARGONAUT = 32826 +pkg syscall (netbsd-arm64), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ARP = 2054 +pkg syscall (netbsd-arm64), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AT = 32923 +pkg syscall (netbsd-arm64), const ETHERTYPE_ATALK = 32923 +pkg syscall (netbsd-arm64), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ATOMIC = 34527 +pkg syscall (netbsd-arm64), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ATT = 32873 +pkg syscall (netbsd-arm64), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ATTSTANFORD = 32776 +pkg syscall (netbsd-arm64), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AUTOPHON = 32874 +pkg syscall (netbsd-arm64), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_AXIS = 34902 +pkg syscall (netbsd-arm64), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_BCLOOP = 36867 +pkg syscall (netbsd-arm64), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_BOFL = 33026 +pkg syscall (netbsd-arm64), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_CABLETRON = 28724 +pkg syscall (netbsd-arm64), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_CHAOS = 2052 +pkg syscall (netbsd-arm64), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_COMDESIGN = 32876 +pkg syscall (netbsd-arm64), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_COMPUGRAPHIC = 32877 +pkg syscall (netbsd-arm64), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_COUNTERPOINT = 32866 +pkg syscall (netbsd-arm64), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUS = 32772 +pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUSVLN = 32771 +pkg syscall (netbsd-arm64), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DCA = 4660 +pkg syscall (netbsd-arm64), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DDE = 32891 +pkg syscall (netbsd-arm64), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DEBNI = 43690 +pkg syscall (netbsd-arm64), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECAM = 32840 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECCUST = 24582 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDIAG = 24581 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDNS = 32828 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDTS = 32830 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECEXPER = 24576 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECLAST = 32833 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECLTM = 32831 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECMUMPS = 24585 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DECNETBIOS = 32832 +pkg syscall (netbsd-arm64), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DELTACON = 34526 +pkg syscall (netbsd-arm64), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DIDDLE = 17185 +pkg syscall (netbsd-arm64), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG1 = 1632 +pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG2 = 1633 +pkg syscall (netbsd-arm64), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DN = 24579 +pkg syscall (netbsd-arm64), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DOGFIGHT = 6537 +pkg syscall (netbsd-arm64), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_DSMD = 32825 +pkg syscall (netbsd-arm64), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ECMA = 2051 +pkg syscall (netbsd-arm64), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ENCRYPT = 32829 +pkg syscall (netbsd-arm64), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_ES = 32861 +pkg syscall (netbsd-arm64), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_EXCELAN = 32784 +pkg syscall (netbsd-arm64), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_EXPERDATA = 32841 +pkg syscall (netbsd-arm64), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_FLIP = 33094 +pkg syscall (netbsd-arm64), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_FLOWCONTROL = 34824 +pkg syscall (netbsd-arm64), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_FRARP = 2056 +pkg syscall (netbsd-arm64), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_GENDYN = 32872 +pkg syscall (netbsd-arm64), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_HAYES = 33072 +pkg syscall (netbsd-arm64), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_HIPPI_FP = 33152 +pkg syscall (netbsd-arm64), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_HITACHI = 34848 +pkg syscall (netbsd-arm64), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_HP = 32773 +pkg syscall (netbsd-arm64), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUP = 2560 +pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUPAT = 2561 +pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBL = 19522 +pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBLDIAG = 16972 +pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IP = 2048 +pkg syscall (netbsd-arm64), const ETHERTYPE_IPAS = 34668 +pkg syscall (netbsd-arm64), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IPV6 = 34525 +pkg syscall (netbsd-arm64), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IPX = 33079 +pkg syscall (netbsd-arm64), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_IPXNEW = 32823 +pkg syscall (netbsd-arm64), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_KALPANA = 34178 +pkg syscall (netbsd-arm64), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LANBRIDGE = 32824 +pkg syscall (netbsd-arm64), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LANPROBE = 34952 +pkg syscall (netbsd-arm64), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LAT = 24580 +pkg syscall (netbsd-arm64), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LBACK = 36864 +pkg syscall (netbsd-arm64), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-arm64), const ETHER_TYPE_LEN = 2 +pkg syscall (netbsd-arm64), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LITTLE = 32864 +pkg syscall (netbsd-arm64), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LOGICRAFT = 33096 +pkg syscall (netbsd-arm64), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_LOOPBACK = 36864 +pkg syscall (netbsd-arm64), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MATRA = 32890 +pkg syscall (netbsd-arm64), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MAX = 65535 +pkg syscall (netbsd-arm64), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MERIT = 32892 +pkg syscall (netbsd-arm64), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MICP = 34618 +pkg syscall (netbsd-arm64), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MOPDL = 24577 +pkg syscall (netbsd-arm64), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MOPRC = 24578 +pkg syscall (netbsd-arm64), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MOTOROLA = 33165 +pkg syscall (netbsd-arm64), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS = 34887 +pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS_MCAST = 34888 +pkg syscall (netbsd-arm64), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_MUMPS = 33087 +pkg syscall (netbsd-arm64), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCC = 15364 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLAIM = 15369 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLREQ = 15365 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLRSP = 15366 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCREQ = 15362 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCRSP = 15363 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDG = 15367 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDGB = 15368 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDLTE = 15370 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAR = 15372 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAS = 15371 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRST = 15373 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPSCD = 15361 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPVCD = 15360 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NBS = 2050 +pkg syscall (netbsd-arm64), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NCD = 33097 +pkg syscall (netbsd-arm64), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NESTAR = 32774 +pkg syscall (netbsd-arm64), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NETBEUI = 33169 +pkg syscall (netbsd-arm64), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NOVELL = 33080 +pkg syscall (netbsd-arm64), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NS = 1536 +pkg syscall (netbsd-arm64), const ETHERTYPE_NSAT = 1537 +pkg syscall (netbsd-arm64), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NSCOMPAT = 2055 +pkg syscall (netbsd-arm64), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_NTRAILER = 16 +pkg syscall (netbsd-arm64), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_OS9 = 28679 +pkg syscall (netbsd-arm64), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_OS9NET = 28681 +pkg syscall (netbsd-arm64), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PACER = 32966 +pkg syscall (netbsd-arm64), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PAE = 34958 +pkg syscall (netbsd-arm64), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PCS = 16962 +pkg syscall (netbsd-arm64), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PLANNING = 32836 +pkg syscall (netbsd-arm64), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PPP = 34827 +pkg syscall (netbsd-arm64), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOE = 34916 +pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOEDISC = 34915 +pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PRIMENTS = 28721 +pkg syscall (netbsd-arm64), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PUP = 512 +pkg syscall (netbsd-arm64), const ETHERTYPE_PUPAT = 512 +pkg syscall (netbsd-arm64), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RACAL = 28720 +pkg syscall (netbsd-arm64), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RATIONAL = 33104 +pkg syscall (netbsd-arm64), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RAWFR = 25945 +pkg syscall (netbsd-arm64), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RCL = 6549 +pkg syscall (netbsd-arm64), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RDP = 34617 +pkg syscall (netbsd-arm64), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_RETIX = 33010 +pkg syscall (netbsd-arm64), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_REVARP = 32821 +pkg syscall (netbsd-arm64), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SCA = 24583 +pkg syscall (netbsd-arm64), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SECTRA = 34523 +pkg syscall (netbsd-arm64), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SECUREDATA = 34669 +pkg syscall (netbsd-arm64), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_BOUNCE = 32790 +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_DIAG = 32787 +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SGITW = 33150 +pkg syscall (netbsd-arm64), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_NETGAMES = 32788 +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_RESV = 32789 +pkg syscall (netbsd-arm64), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SIMNET = 21000 +pkg syscall (netbsd-arm64), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SLOWPROTOCOLS = 34825 +pkg syscall (netbsd-arm64), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SNA = 32981 +pkg syscall (netbsd-arm64), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SNMP = 33100 +pkg syscall (netbsd-arm64), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SONIX = 64245 +pkg syscall (netbsd-arm64), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SPIDER = 32927 +pkg syscall (netbsd-arm64), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_SPRITE = 1280 +pkg syscall (netbsd-arm64), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_STP = 33153 +pkg syscall (netbsd-arm64), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TALARIS = 33067 +pkg syscall (netbsd-arm64), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TALARISMC = 34091 +pkg syscall (netbsd-arm64), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TCPCOMP = 34667 +pkg syscall (netbsd-arm64), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TCPSM = 36866 +pkg syscall (netbsd-arm64), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TEC = 33103 +pkg syscall (netbsd-arm64), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TIGAN = 32815 +pkg syscall (netbsd-arm64), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TRAIL = 4096 +pkg syscall (netbsd-arm64), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TRANSETHER = 25944 +pkg syscall (netbsd-arm64), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_TYMSHARE = 32814 +pkg syscall (netbsd-arm64), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBBST = 28677 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDEBUG = 2304 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDIAGLOOP = 28674 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDL = 28672 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBNIU = 28673 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_UBNMC = 28675 +pkg syscall (netbsd-arm64), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VALID = 5632 +pkg syscall (netbsd-arm64), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VARIAN = 32989 +pkg syscall (netbsd-arm64), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VAXELN = 32827 +pkg syscall (netbsd-arm64), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VEECO = 32871 +pkg syscall (netbsd-arm64), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VEXP = 32859 +pkg syscall (netbsd-arm64), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VGLAB = 33073 +pkg syscall (netbsd-arm64), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VINES = 2989 +pkg syscall (netbsd-arm64), const ETHERTYPE_VINESECHO = 2991 +pkg syscall (netbsd-arm64), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VINESLOOP = 2990 +pkg syscall (netbsd-arm64), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VITAL = 65280 +pkg syscall (netbsd-arm64), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VLAN = 33024 +pkg syscall (netbsd-arm64), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VLTLMAN = 32896 +pkg syscall (netbsd-arm64), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VPROD = 32860 +pkg syscall (netbsd-arm64), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_VURESERVED = 33095 +pkg syscall (netbsd-arm64), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_WATERLOO = 33072 +pkg syscall (netbsd-arm64), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_WELLFLEET = 33027 +pkg syscall (netbsd-arm64), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_X25 = 2053 +pkg syscall (netbsd-arm64), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_X75 = 2049 +pkg syscall (netbsd-arm64), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_XNSSM = 36865 +pkg syscall (netbsd-arm64), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-arm64), const ETHERTYPE_XTP = 33149 +pkg syscall (netbsd-arm64), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-arm64), const ETHER_VLAN_ENCAP_LEN = 4 +pkg syscall (netbsd-arm64), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm64), const ETIME = 92 +pkg syscall (netbsd-arm64), const ETIMEDOUT = 60 +pkg syscall (netbsd-arm64), const ETIME Errno +pkg syscall (netbsd-arm64), const ETOOMANYREFS = 59 +pkg syscall (netbsd-arm64), const ETXTBSY = 26 +pkg syscall (netbsd-arm64), const EUSERS = 68 +pkg syscall (netbsd-arm64), const EV_ADD = 1 +pkg syscall (netbsd-arm64), const EV_ADD ideal-int +pkg syscall (netbsd-arm64), const EV_CLEAR = 32 +pkg syscall (netbsd-arm64), const EV_CLEAR ideal-int +pkg syscall (netbsd-arm64), const EV_DELETE = 2 +pkg syscall (netbsd-arm64), const EV_DELETE ideal-int +pkg syscall (netbsd-arm64), const EV_DISABLE = 8 +pkg syscall (netbsd-arm64), const EV_DISABLE ideal-int +pkg syscall (netbsd-arm64), const EV_ENABLE = 4 +pkg syscall (netbsd-arm64), const EV_ENABLE ideal-int +pkg syscall (netbsd-arm64), const EV_EOF = 32768 +pkg syscall (netbsd-arm64), const EV_EOF ideal-int +pkg syscall (netbsd-arm64), const EV_ERROR = 16384 +pkg syscall (netbsd-arm64), const EV_ERROR ideal-int +pkg syscall (netbsd-arm64), const EVFILT_AIO = 2 +pkg syscall (netbsd-arm64), const EVFILT_AIO ideal-int +pkg syscall (netbsd-arm64), const EVFILT_PROC = 4 +pkg syscall (netbsd-arm64), const EVFILT_PROC ideal-int +pkg syscall (netbsd-arm64), const EVFILT_READ = 0 +pkg syscall (netbsd-arm64), const EVFILT_READ ideal-int +pkg syscall (netbsd-arm64), const EVFILT_SIGNAL = 5 +pkg syscall (netbsd-arm64), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT = 7 +pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-arm64), const EVFILT_TIMER = 6 +pkg syscall (netbsd-arm64), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-arm64), const EVFILT_VNODE = 3 +pkg syscall (netbsd-arm64), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-arm64), const EVFILT_WRITE = 1 +pkg syscall (netbsd-arm64), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-arm64), const EV_FLAG1 = 8192 +pkg syscall (netbsd-arm64), const EV_FLAG1 ideal-int +pkg syscall (netbsd-arm64), const EV_ONESHOT = 16 +pkg syscall (netbsd-arm64), const EV_ONESHOT ideal-int +pkg syscall (netbsd-arm64), const EV_SYSFLAGS = 61440 +pkg syscall (netbsd-arm64), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-arm64), const EWOULDBLOCK = 35 +pkg syscall (netbsd-arm64), const EXDEV = 18 +pkg syscall (netbsd-arm64), const EXTA = 19200 +pkg syscall (netbsd-arm64), const EXTA ideal-int +pkg syscall (netbsd-arm64), const EXTB = 38400 +pkg syscall (netbsd-arm64), const EXTB ideal-int +pkg syscall (netbsd-arm64), const EXTPROC = 2048 +pkg syscall (netbsd-arm64), const EXTPROC ideal-int +pkg syscall (netbsd-arm64), const F_CLOSEM = 10 +pkg syscall (netbsd-arm64), const F_CLOSEM ideal-int +pkg syscall (netbsd-arm64), const FD_CLOEXEC = 1 +pkg syscall (netbsd-arm64), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-arm64), const FD_SETSIZE = 256 +pkg syscall (netbsd-arm64), const FD_SETSIZE ideal-int +pkg syscall (netbsd-arm64), const F_DUPFD = 0 +pkg syscall (netbsd-arm64), const F_DUPFD_CLOEXEC = 12 +pkg syscall (netbsd-arm64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-arm64), const F_DUPFD ideal-int +pkg syscall (netbsd-arm64), const F_FSCTL = -2147483648 +pkg syscall (netbsd-arm64), const F_FSCTL ideal-int +pkg syscall (netbsd-arm64), const F_FSDIRMASK = 1879048192 +pkg syscall (netbsd-arm64), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-arm64), const F_FSIN = 268435456 +pkg syscall (netbsd-arm64), const F_FSIN ideal-int +pkg syscall (netbsd-arm64), const F_FSINOUT = 805306368 +pkg syscall (netbsd-arm64), const F_FSINOUT ideal-int +pkg syscall (netbsd-arm64), const F_FSOUT = 536870912 +pkg syscall (netbsd-arm64), const F_FSOUT ideal-int +pkg syscall (netbsd-arm64), const F_FSPRIV = 32768 +pkg syscall (netbsd-arm64), const F_FSPRIV ideal-int +pkg syscall (netbsd-arm64), const F_FSVOID = 1073741824 +pkg syscall (netbsd-arm64), const F_FSVOID ideal-int +pkg syscall (netbsd-arm64), const F_GETFD = 1 +pkg syscall (netbsd-arm64), const F_GETFD ideal-int +pkg syscall (netbsd-arm64), const F_GETFL = 3 +pkg syscall (netbsd-arm64), const F_GETFL ideal-int +pkg syscall (netbsd-arm64), const F_GETLK = 7 +pkg syscall (netbsd-arm64), const F_GETLK ideal-int +pkg syscall (netbsd-arm64), const F_GETNOSIGPIPE = 13 +pkg syscall (netbsd-arm64), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm64), const F_GETOWN = 5 +pkg syscall (netbsd-arm64), const F_GETOWN ideal-int +pkg syscall (netbsd-arm64), const FLUSHO = 8388608 +pkg syscall (netbsd-arm64), const FLUSHO ideal-int +pkg syscall (netbsd-arm64), const F_MAXFD = 11 +pkg syscall (netbsd-arm64), const F_MAXFD ideal-int +pkg syscall (netbsd-arm64), const F_OK = 0 +pkg syscall (netbsd-arm64), const F_OK ideal-int +pkg syscall (netbsd-arm64), const F_PARAM_MASK = 4095 +pkg syscall (netbsd-arm64), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-arm64), const F_PARAM_MAX = 4095 +pkg syscall (netbsd-arm64), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-arm64), const F_RDLCK = 1 +pkg syscall (netbsd-arm64), const F_RDLCK ideal-int +pkg syscall (netbsd-arm64), const F_SETFD = 2 +pkg syscall (netbsd-arm64), const F_SETFD ideal-int +pkg syscall (netbsd-arm64), const F_SETFL = 4 +pkg syscall (netbsd-arm64), const F_SETFL ideal-int +pkg syscall (netbsd-arm64), const F_SETLK = 8 +pkg syscall (netbsd-arm64), const F_SETLK ideal-int +pkg syscall (netbsd-arm64), const F_SETLKW = 9 +pkg syscall (netbsd-arm64), const F_SETLKW ideal-int +pkg syscall (netbsd-arm64), const F_SETNOSIGPIPE = 14 +pkg syscall (netbsd-arm64), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm64), const F_SETOWN = 6 +pkg syscall (netbsd-arm64), const F_SETOWN ideal-int +pkg syscall (netbsd-arm64), const F_UNLCK = 2 +pkg syscall (netbsd-arm64), const F_UNLCK ideal-int +pkg syscall (netbsd-arm64), const F_WRLCK = 3 +pkg syscall (netbsd-arm64), const F_WRLCK ideal-int +pkg syscall (netbsd-arm64), const HUPCL = 16384 +pkg syscall (netbsd-arm64), const HUPCL ideal-int +pkg syscall (netbsd-arm64), const ICANON = 256 +pkg syscall (netbsd-arm64), const ICANON ideal-int +pkg syscall (netbsd-arm64), const ICMP6_FILTER = 18 +pkg syscall (netbsd-arm64), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-arm64), const ICRNL = 256 +pkg syscall (netbsd-arm64), const ICRNL ideal-int +pkg syscall (netbsd-arm64), const IEXTEN = 1024 +pkg syscall (netbsd-arm64), const IEXTEN ideal-int +pkg syscall (netbsd-arm64), const IFAN_ARRIVAL = 0 +pkg syscall (netbsd-arm64), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-arm64), const IFAN_DEPARTURE = 1 +pkg syscall (netbsd-arm64), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-arm64), const IFA_ROUTE = 1 +pkg syscall (netbsd-arm64), const IFA_ROUTE ideal-int +pkg syscall (netbsd-arm64), const IFF_ALLMULTI = 512 +pkg syscall (netbsd-arm64), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-arm64), const IFF_CANTCHANGE = 36690 +pkg syscall (netbsd-arm64), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-arm64), const IFF_DEBUG = 4 +pkg syscall (netbsd-arm64), const IFF_DEBUG ideal-int +pkg syscall (netbsd-arm64), const IFF_LINK0 = 4096 +pkg syscall (netbsd-arm64), const IFF_LINK0 ideal-int +pkg syscall (netbsd-arm64), const IFF_LINK1 = 8192 +pkg syscall (netbsd-arm64), const IFF_LINK1 ideal-int +pkg syscall (netbsd-arm64), const IFF_LINK2 = 16384 +pkg syscall (netbsd-arm64), const IFF_LINK2 ideal-int +pkg syscall (netbsd-arm64), const IFF_LOOPBACK = 8 +pkg syscall (netbsd-arm64), const IFF_MULTICAST = 32768 +pkg syscall (netbsd-arm64), const IFF_NOARP = 128 +pkg syscall (netbsd-arm64), const IFF_NOARP ideal-int +pkg syscall (netbsd-arm64), const IFF_NOTRAILERS = 32 +pkg syscall (netbsd-arm64), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-arm64), const IFF_OACTIVE = 1024 +pkg syscall (netbsd-arm64), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-arm64), const IFF_POINTOPOINT = 16 +pkg syscall (netbsd-arm64), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-arm64), const IFF_PROMISC = 256 +pkg syscall (netbsd-arm64), const IFF_PROMISC ideal-int +pkg syscall (netbsd-arm64), const IFF_RUNNING = 64 +pkg syscall (netbsd-arm64), const IFF_RUNNING ideal-int +pkg syscall (netbsd-arm64), const IFF_SIMPLEX = 2048 +pkg syscall (netbsd-arm64), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-arm64), const IFNAMSIZ = 16 +pkg syscall (netbsd-arm64), const IFNAMSIZ ideal-int +pkg syscall (netbsd-arm64), const IFT_1822 = 2 +pkg syscall (netbsd-arm64), const IFT_1822 ideal-int +pkg syscall (netbsd-arm64), const IFT_A12MPPSWITCH = 130 +pkg syscall (netbsd-arm64), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-arm64), const IFT_AAL2 = 187 +pkg syscall (netbsd-arm64), const IFT_AAL2 ideal-int +pkg syscall (netbsd-arm64), const IFT_AAL5 = 49 +pkg syscall (netbsd-arm64), const IFT_AAL5 ideal-int +pkg syscall (netbsd-arm64), const IFT_ADSL = 94 +pkg syscall (netbsd-arm64), const IFT_ADSL ideal-int +pkg syscall (netbsd-arm64), const IFT_AFLANE8023 = 59 +pkg syscall (netbsd-arm64), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-arm64), const IFT_AFLANE8025 = 60 +pkg syscall (netbsd-arm64), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-arm64), const IFT_ARAP = 88 +pkg syscall (netbsd-arm64), const IFT_ARAP ideal-int +pkg syscall (netbsd-arm64), const IFT_ARCNET = 35 +pkg syscall (netbsd-arm64), const IFT_ARCNET ideal-int +pkg syscall (netbsd-arm64), const IFT_ARCNETPLUS = 36 +pkg syscall (netbsd-arm64), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-arm64), const IFT_ASYNC = 84 +pkg syscall (netbsd-arm64), const IFT_ASYNC ideal-int +pkg syscall (netbsd-arm64), const IFT_ATM = 37 +pkg syscall (netbsd-arm64), const IFT_ATMDXI = 105 +pkg syscall (netbsd-arm64), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMFUNI = 106 +pkg syscall (netbsd-arm64), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-arm64), const IFT_ATM ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMIMA = 107 +pkg syscall (netbsd-arm64), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMLOGICAL = 80 +pkg syscall (netbsd-arm64), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMRADIO = 189 +pkg syscall (netbsd-arm64), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (netbsd-arm64), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMVCIENDPT = 194 +pkg syscall (netbsd-arm64), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-arm64), const IFT_ATMVIRTUAL = 149 +pkg syscall (netbsd-arm64), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-arm64), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (netbsd-arm64), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-arm64), const IFT_BRIDGE = 209 +pkg syscall (netbsd-arm64), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-arm64), const IFT_BSC = 83 +pkg syscall (netbsd-arm64), const IFT_BSC ideal-int +pkg syscall (netbsd-arm64), const IFT_CARP = 248 +pkg syscall (netbsd-arm64), const IFT_CARP ideal-int +pkg syscall (netbsd-arm64), const IFT_CCTEMUL = 61 +pkg syscall (netbsd-arm64), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-arm64), const IFT_CEPT = 19 +pkg syscall (netbsd-arm64), const IFT_CEPT ideal-int +pkg syscall (netbsd-arm64), const IFT_CES = 133 +pkg syscall (netbsd-arm64), const IFT_CES ideal-int +pkg syscall (netbsd-arm64), const IFT_CHANNEL = 70 +pkg syscall (netbsd-arm64), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_CNR = 85 +pkg syscall (netbsd-arm64), const IFT_CNR ideal-int +pkg syscall (netbsd-arm64), const IFT_COFFEE = 132 +pkg syscall (netbsd-arm64), const IFT_COFFEE ideal-int +pkg syscall (netbsd-arm64), const IFT_COMPOSITELINK = 155 +pkg syscall (netbsd-arm64), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-arm64), const IFT_DCN = 141 +pkg syscall (netbsd-arm64), const IFT_DCN ideal-int +pkg syscall (netbsd-arm64), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (netbsd-arm64), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (netbsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_DLSW = 74 +pkg syscall (netbsd-arm64), const IFT_DLSW ideal-int +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAMCHANNEL = 205 +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_DS0 = 81 +pkg syscall (netbsd-arm64), const IFT_DS0BUNDLE = 82 +pkg syscall (netbsd-arm64), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-arm64), const IFT_DS0 ideal-int +pkg syscall (netbsd-arm64), const IFT_DS1FDL = 170 +pkg syscall (netbsd-arm64), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-arm64), const IFT_DS3 = 30 +pkg syscall (netbsd-arm64), const IFT_DS3 ideal-int +pkg syscall (netbsd-arm64), const IFT_DTM = 140 +pkg syscall (netbsd-arm64), const IFT_DTM ideal-int +pkg syscall (netbsd-arm64), const IFT_DVBASILN = 172 +pkg syscall (netbsd-arm64), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-arm64), const IFT_DVBASIOUT = 173 +pkg syscall (netbsd-arm64), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-arm64), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (netbsd-arm64), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (netbsd-arm64), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-arm64), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (netbsd-arm64), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_ECONET = 206 +pkg syscall (netbsd-arm64), const IFT_ECONET ideal-int +pkg syscall (netbsd-arm64), const IFT_EON = 25 +pkg syscall (netbsd-arm64), const IFT_EON ideal-int +pkg syscall (netbsd-arm64), const IFT_EPLRS = 87 +pkg syscall (netbsd-arm64), const IFT_EPLRS ideal-int +pkg syscall (netbsd-arm64), const IFT_ESCON = 73 +pkg syscall (netbsd-arm64), const IFT_ESCON ideal-int +pkg syscall (netbsd-arm64), const IFT_ETHER = 6 +pkg syscall (netbsd-arm64), const IFT_ETHER ideal-int +pkg syscall (netbsd-arm64), const IFT_FAITH = 242 +pkg syscall (netbsd-arm64), const IFT_FAITH ideal-int +pkg syscall (netbsd-arm64), const IFT_FAST = 125 +pkg syscall (netbsd-arm64), const IFT_FASTETHER = 62 +pkg syscall (netbsd-arm64), const IFT_FASTETHERFX = 69 +pkg syscall (netbsd-arm64), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-arm64), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-arm64), const IFT_FAST ideal-int +pkg syscall (netbsd-arm64), const IFT_FDDI = 15 +pkg syscall (netbsd-arm64), const IFT_FDDI ideal-int +pkg syscall (netbsd-arm64), const IFT_FIBRECHANNEL = 56 +pkg syscall (netbsd-arm64), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (netbsd-arm64), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-arm64), const IFT_FRAMERELAYMPI = 92 +pkg syscall (netbsd-arm64), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-arm64), const IFT_FRDLCIENDPT = 193 +pkg syscall (netbsd-arm64), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-arm64), const IFT_FRELAY = 32 +pkg syscall (netbsd-arm64), const IFT_FRELAYDCE = 44 +pkg syscall (netbsd-arm64), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-arm64), const IFT_FRELAY ideal-int +pkg syscall (netbsd-arm64), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (netbsd-arm64), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-arm64), const IFT_FRFORWARD = 158 +pkg syscall (netbsd-arm64), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-arm64), const IFT_G703AT2MB = 67 +pkg syscall (netbsd-arm64), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-arm64), const IFT_G703AT64K = 66 +pkg syscall (netbsd-arm64), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-arm64), const IFT_GIF = 240 +pkg syscall (netbsd-arm64), const IFT_GIF ideal-int +pkg syscall (netbsd-arm64), const IFT_GIGABITETHERNET = 117 +pkg syscall (netbsd-arm64), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-arm64), const IFT_GR303IDT = 178 +pkg syscall (netbsd-arm64), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-arm64), const IFT_GR303RDT = 177 +pkg syscall (netbsd-arm64), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-arm64), const IFT_H323GATEKEEPER = 164 +pkg syscall (netbsd-arm64), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-arm64), const IFT_H323PROXY = 165 +pkg syscall (netbsd-arm64), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-arm64), const IFT_HDH1822 = 3 +pkg syscall (netbsd-arm64), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-arm64), const IFT_HDLC = 118 +pkg syscall (netbsd-arm64), const IFT_HDLC ideal-int +pkg syscall (netbsd-arm64), const IFT_HDSL2 = 168 +pkg syscall (netbsd-arm64), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-arm64), const IFT_HIPERLAN2 = 183 +pkg syscall (netbsd-arm64), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-arm64), const IFT_HIPPI = 47 +pkg syscall (netbsd-arm64), const IFT_HIPPI ideal-int +pkg syscall (netbsd-arm64), const IFT_HIPPIINTERFACE = 57 +pkg syscall (netbsd-arm64), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-arm64), const IFT_HOSTPAD = 90 +pkg syscall (netbsd-arm64), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-arm64), const IFT_HSSI = 46 +pkg syscall (netbsd-arm64), const IFT_HSSI ideal-int +pkg syscall (netbsd-arm64), const IFT_HY = 14 +pkg syscall (netbsd-arm64), const IFT_HY ideal-int +pkg syscall (netbsd-arm64), const IFT_IBM370PARCHAN = 72 +pkg syscall (netbsd-arm64), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-arm64), const IFT_IDSL = 154 +pkg syscall (netbsd-arm64), const IFT_IDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_IEEE1394 = 144 +pkg syscall (netbsd-arm64), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-arm64), const IFT_IEEE80211 = 71 +pkg syscall (netbsd-arm64), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-arm64), const IFT_IEEE80212 = 55 +pkg syscall (netbsd-arm64), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-arm64), const IFT_IEEE8023ADLAG = 161 +pkg syscall (netbsd-arm64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-arm64), const IFT_IFGSN = 145 +pkg syscall (netbsd-arm64), const IFT_IFGSN ideal-int +pkg syscall (netbsd-arm64), const IFT_IMT = 190 +pkg syscall (netbsd-arm64), const IFT_IMT ideal-int +pkg syscall (netbsd-arm64), const IFT_INFINIBAND = 199 +pkg syscall (netbsd-arm64), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-arm64), const IFT_INTERLEAVE = 124 +pkg syscall (netbsd-arm64), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-arm64), const IFT_IP = 126 +pkg syscall (netbsd-arm64), const IFT_IPFORWARD = 142 +pkg syscall (netbsd-arm64), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-arm64), const IFT_IP ideal-int +pkg syscall (netbsd-arm64), const IFT_IPOVERATM = 114 +pkg syscall (netbsd-arm64), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-arm64), const IFT_IPOVERCDLC = 109 +pkg syscall (netbsd-arm64), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-arm64), const IFT_IPOVERCLAW = 110 +pkg syscall (netbsd-arm64), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-arm64), const IFT_IPSWITCH = 78 +pkg syscall (netbsd-arm64), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-arm64), const IFT_ISDN = 63 +pkg syscall (netbsd-arm64), const IFT_ISDNBASIC = 20 +pkg syscall (netbsd-arm64), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-arm64), const IFT_ISDN ideal-int +pkg syscall (netbsd-arm64), const IFT_ISDNPRIMARY = 21 +pkg syscall (netbsd-arm64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-arm64), const IFT_ISDNS = 75 +pkg syscall (netbsd-arm64), const IFT_ISDNS ideal-int +pkg syscall (netbsd-arm64), const IFT_ISDNU = 76 +pkg syscall (netbsd-arm64), const IFT_ISDNU ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88022LLC = 41 +pkg syscall (netbsd-arm64), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88023 = 7 +pkg syscall (netbsd-arm64), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88024 = 8 +pkg syscall (netbsd-arm64), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88025 = 9 +pkg syscall (netbsd-arm64), const IFT_ISO88025CRFPINT = 98 +pkg syscall (netbsd-arm64), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88025DTR = 86 +pkg syscall (netbsd-arm64), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88025FIBER = 115 +pkg syscall (netbsd-arm64), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-arm64), const IFT_ISO88026 = 10 +pkg syscall (netbsd-arm64), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-arm64), const IFT_ISUP = 179 +pkg syscall (netbsd-arm64), const IFT_ISUP ideal-int +pkg syscall (netbsd-arm64), const IFT_L2VLAN = 135 +pkg syscall (netbsd-arm64), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-arm64), const IFT_L3IPVLAN = 136 +pkg syscall (netbsd-arm64), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-arm64), const IFT_L3IPXVLAN = 137 +pkg syscall (netbsd-arm64), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-arm64), const IFT_LAPB = 16 +pkg syscall (netbsd-arm64), const IFT_LAPB ideal-int +pkg syscall (netbsd-arm64), const IFT_LAPD = 77 +pkg syscall (netbsd-arm64), const IFT_LAPD ideal-int +pkg syscall (netbsd-arm64), const IFT_LAPF = 119 +pkg syscall (netbsd-arm64), const IFT_LAPF ideal-int +pkg syscall (netbsd-arm64), const IFT_LINEGROUP = 210 +pkg syscall (netbsd-arm64), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-arm64), const IFT_LOCALTALK = 42 +pkg syscall (netbsd-arm64), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-arm64), const IFT_LOOP = 24 +pkg syscall (netbsd-arm64), const IFT_LOOP ideal-int +pkg syscall (netbsd-arm64), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (netbsd-arm64), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-arm64), const IFT_MFSIGLINK = 167 +pkg syscall (netbsd-arm64), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-arm64), const IFT_MIOX25 = 38 +pkg syscall (netbsd-arm64), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-arm64), const IFT_MODEM = 48 +pkg syscall (netbsd-arm64), const IFT_MODEM ideal-int +pkg syscall (netbsd-arm64), const IFT_MPC = 113 +pkg syscall (netbsd-arm64), const IFT_MPC ideal-int +pkg syscall (netbsd-arm64), const IFT_MPLS = 166 +pkg syscall (netbsd-arm64), const IFT_MPLS ideal-int +pkg syscall (netbsd-arm64), const IFT_MPLSTUNNEL = 150 +pkg syscall (netbsd-arm64), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_MSDSL = 143 +pkg syscall (netbsd-arm64), const IFT_MSDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_MVL = 191 +pkg syscall (netbsd-arm64), const IFT_MVL ideal-int +pkg syscall (netbsd-arm64), const IFT_MYRINET = 99 +pkg syscall (netbsd-arm64), const IFT_MYRINET ideal-int +pkg syscall (netbsd-arm64), const IFT_NFAS = 175 +pkg syscall (netbsd-arm64), const IFT_NFAS ideal-int +pkg syscall (netbsd-arm64), const IFT_NSIP = 27 +pkg syscall (netbsd-arm64), const IFT_NSIP ideal-int +pkg syscall (netbsd-arm64), const IFT_OPTICALCHANNEL = 195 +pkg syscall (netbsd-arm64), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (netbsd-arm64), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-arm64), const IFT_OTHER = 1 +pkg syscall (netbsd-arm64), const IFT_OTHER ideal-int +pkg syscall (netbsd-arm64), const IFT_P10 = 12 +pkg syscall (netbsd-arm64), const IFT_P10 ideal-int +pkg syscall (netbsd-arm64), const IFT_P80 = 13 +pkg syscall (netbsd-arm64), const IFT_P80 ideal-int +pkg syscall (netbsd-arm64), const IFT_PARA = 34 +pkg syscall (netbsd-arm64), const IFT_PARA ideal-int +pkg syscall (netbsd-arm64), const IFT_PFLOG = 245 +pkg syscall (netbsd-arm64), const IFT_PFLOG ideal-int +pkg syscall (netbsd-arm64), const IFT_PFSYNC = 246 +pkg syscall (netbsd-arm64), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-arm64), const IFT_PLC = 174 +pkg syscall (netbsd-arm64), const IFT_PLC ideal-int +pkg syscall (netbsd-arm64), const IFT_PON155 = 207 +pkg syscall (netbsd-arm64), const IFT_PON155 ideal-int +pkg syscall (netbsd-arm64), const IFT_PON622 = 208 +pkg syscall (netbsd-arm64), const IFT_PON622 ideal-int +pkg syscall (netbsd-arm64), const IFT_POS = 171 +pkg syscall (netbsd-arm64), const IFT_POS ideal-int +pkg syscall (netbsd-arm64), const IFT_PPP = 23 +pkg syscall (netbsd-arm64), const IFT_PPP ideal-int +pkg syscall (netbsd-arm64), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (netbsd-arm64), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPATM = 197 +pkg syscall (netbsd-arm64), const IFT_PROPATM ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPBWAP2MP = 184 +pkg syscall (netbsd-arm64), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPCNLS = 89 +pkg syscall (netbsd-arm64), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (netbsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPMUX = 54 +pkg syscall (netbsd-arm64), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPVIRTUAL = 53 +pkg syscall (netbsd-arm64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-arm64), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (netbsd-arm64), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-arm64), const IFT_PTPSERIAL = 22 +pkg syscall (netbsd-arm64), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-arm64), const IFT_PVC = 241 +pkg syscall (netbsd-arm64), const IFT_PVC ideal-int +pkg syscall (netbsd-arm64), const IFT_Q2931 = 201 +pkg syscall (netbsd-arm64), const IFT_Q2931 ideal-int +pkg syscall (netbsd-arm64), const IFT_QLLC = 68 +pkg syscall (netbsd-arm64), const IFT_QLLC ideal-int +pkg syscall (netbsd-arm64), const IFT_RADIOMAC = 188 +pkg syscall (netbsd-arm64), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-arm64), const IFT_RADSL = 95 +pkg syscall (netbsd-arm64), const IFT_RADSL ideal-int +pkg syscall (netbsd-arm64), const IFT_REACHDSL = 192 +pkg syscall (netbsd-arm64), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_RFC1483 = 159 +pkg syscall (netbsd-arm64), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-arm64), const IFT_RS232 = 33 +pkg syscall (netbsd-arm64), const IFT_RS232 ideal-int +pkg syscall (netbsd-arm64), const IFT_RSRB = 79 +pkg syscall (netbsd-arm64), const IFT_RSRB ideal-int +pkg syscall (netbsd-arm64), const IFT_SDLC = 17 +pkg syscall (netbsd-arm64), const IFT_SDLC ideal-int +pkg syscall (netbsd-arm64), const IFT_SDSL = 96 +pkg syscall (netbsd-arm64), const IFT_SDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_SHDSL = 169 +pkg syscall (netbsd-arm64), const IFT_SHDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_SIP = 31 +pkg syscall (netbsd-arm64), const IFT_SIP ideal-int +pkg syscall (netbsd-arm64), const IFT_SIPSIG = 204 +pkg syscall (netbsd-arm64), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-arm64), const IFT_SIPTG = 203 +pkg syscall (netbsd-arm64), const IFT_SIPTG ideal-int +pkg syscall (netbsd-arm64), const IFT_SLIP = 28 +pkg syscall (netbsd-arm64), const IFT_SLIP ideal-int +pkg syscall (netbsd-arm64), const IFT_SMDSDXI = 43 +pkg syscall (netbsd-arm64), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-arm64), const IFT_SMDSICIP = 52 +pkg syscall (netbsd-arm64), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-arm64), const IFT_SONET = 39 +pkg syscall (netbsd-arm64), const IFT_SONET ideal-int +pkg syscall (netbsd-arm64), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (netbsd-arm64), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_SONETPATH = 50 +pkg syscall (netbsd-arm64), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-arm64), const IFT_SONETVT = 51 +pkg syscall (netbsd-arm64), const IFT_SONETVT ideal-int +pkg syscall (netbsd-arm64), const IFT_SRP = 151 +pkg syscall (netbsd-arm64), const IFT_SRP ideal-int +pkg syscall (netbsd-arm64), const IFT_SS7SIGLINK = 156 +pkg syscall (netbsd-arm64), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-arm64), const IFT_STACKTOSTACK = 111 +pkg syscall (netbsd-arm64), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-arm64), const IFT_STARLAN = 11 +pkg syscall (netbsd-arm64), const IFT_STARLAN ideal-int +pkg syscall (netbsd-arm64), const IFT_STF = 215 +pkg syscall (netbsd-arm64), const IFT_STF ideal-int +pkg syscall (netbsd-arm64), const IFT_T1 = 18 +pkg syscall (netbsd-arm64), const IFT_T1 ideal-int +pkg syscall (netbsd-arm64), const IFT_TDLC = 116 +pkg syscall (netbsd-arm64), const IFT_TDLC ideal-int +pkg syscall (netbsd-arm64), const IFT_TELINK = 200 +pkg syscall (netbsd-arm64), const IFT_TELINK ideal-int +pkg syscall (netbsd-arm64), const IFT_TERMPAD = 91 +pkg syscall (netbsd-arm64), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-arm64), const IFT_TR008 = 176 +pkg syscall (netbsd-arm64), const IFT_TR008 ideal-int +pkg syscall (netbsd-arm64), const IFT_TRANSPHDLC = 123 +pkg syscall (netbsd-arm64), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-arm64), const IFT_TUNNEL = 131 +pkg syscall (netbsd-arm64), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-arm64), const IFT_ULTRA = 29 +pkg syscall (netbsd-arm64), const IFT_ULTRA ideal-int +pkg syscall (netbsd-arm64), const IFT_USB = 160 +pkg syscall (netbsd-arm64), const IFT_USB ideal-int +pkg syscall (netbsd-arm64), const IFT_V11 = 64 +pkg syscall (netbsd-arm64), const IFT_V11 ideal-int +pkg syscall (netbsd-arm64), const IFT_V35 = 45 +pkg syscall (netbsd-arm64), const IFT_V35 ideal-int +pkg syscall (netbsd-arm64), const IFT_V36 = 65 +pkg syscall (netbsd-arm64), const IFT_V36 ideal-int +pkg syscall (netbsd-arm64), const IFT_V37 = 120 +pkg syscall (netbsd-arm64), const IFT_V37 ideal-int +pkg syscall (netbsd-arm64), const IFT_VDSL = 97 +pkg syscall (netbsd-arm64), const IFT_VDSL ideal-int +pkg syscall (netbsd-arm64), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (netbsd-arm64), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-arm64), const IFT_VIRTUALTG = 202 +pkg syscall (netbsd-arm64), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEDID = 213 +pkg syscall (netbsd-arm64), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEEM = 100 +pkg syscall (netbsd-arm64), const IFT_VOICEEMFGD = 211 +pkg syscall (netbsd-arm64), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEENCAP = 103 +pkg syscall (netbsd-arm64), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEFGDEANA = 212 +pkg syscall (netbsd-arm64), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEFXO = 101 +pkg syscall (netbsd-arm64), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEFXS = 102 +pkg syscall (netbsd-arm64), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEOVERATM = 152 +pkg syscall (netbsd-arm64), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEOVERCABLE = 198 +pkg syscall (netbsd-arm64), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (netbsd-arm64), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-arm64), const IFT_VOICEOVERIP = 104 +pkg syscall (netbsd-arm64), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-arm64), const IFT_X213 = 93 +pkg syscall (netbsd-arm64), const IFT_X213 ideal-int +pkg syscall (netbsd-arm64), const IFT_X25 = 5 +pkg syscall (netbsd-arm64), const IFT_X25DDN = 4 +pkg syscall (netbsd-arm64), const IFT_X25DDN ideal-int +pkg syscall (netbsd-arm64), const IFT_X25HUNTGROUP = 122 +pkg syscall (netbsd-arm64), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-arm64), const IFT_X25 ideal-int +pkg syscall (netbsd-arm64), const IFT_X25MLP = 121 +pkg syscall (netbsd-arm64), const IFT_X25MLP ideal-int +pkg syscall (netbsd-arm64), const IFT_X25PLE = 40 +pkg syscall (netbsd-arm64), const IFT_X25PLE ideal-int +pkg syscall (netbsd-arm64), const IFT_XETHER = 26 +pkg syscall (netbsd-arm64), const IFT_XETHER ideal-int +pkg syscall (netbsd-arm64), const IGNBRK = 1 +pkg syscall (netbsd-arm64), const IGNBRK ideal-int +pkg syscall (netbsd-arm64), const IGNCR = 128 +pkg syscall (netbsd-arm64), const IGNCR ideal-int +pkg syscall (netbsd-arm64), const IGNPAR = 4 +pkg syscall (netbsd-arm64), const IGNPAR ideal-int +pkg syscall (netbsd-arm64), const IMAXBEL = 8192 +pkg syscall (netbsd-arm64), const IMAXBEL ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSA_HOST = 16777215 +pkg syscall (netbsd-arm64), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSA_MAX = 128 +pkg syscall (netbsd-arm64), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSA_NET = 4278190080 +pkg syscall (netbsd-arm64), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (netbsd-arm64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSB_HOST = 65535 +pkg syscall (netbsd-arm64), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSB_MAX = 65536 +pkg syscall (netbsd-arm64), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSB_NET = 4294901760 +pkg syscall (netbsd-arm64), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (netbsd-arm64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSC_HOST = 255 +pkg syscall (netbsd-arm64), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSC_NET = 4294967040 +pkg syscall (netbsd-arm64), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (netbsd-arm64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSD_HOST = 268435455 +pkg syscall (netbsd-arm64), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSD_NET = 4026531840 +pkg syscall (netbsd-arm64), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-arm64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (netbsd-arm64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-arm64), const INLCR = 64 +pkg syscall (netbsd-arm64), const INLCR ideal-int +pkg syscall (netbsd-arm64), const IN_LOOPBACKNET = 127 +pkg syscall (netbsd-arm64), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-arm64), const INPCK = 16 +pkg syscall (netbsd-arm64), const INPCK ideal-int +pkg syscall (netbsd-arm64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (netbsd-arm64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-arm64), const IP_DF = 16384 +pkg syscall (netbsd-arm64), const IP_DF ideal-int +pkg syscall (netbsd-arm64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (netbsd-arm64), const IP_EF = 32768 +pkg syscall (netbsd-arm64), const IP_EF ideal-int +pkg syscall (netbsd-arm64), const IP_ERRORMTU = 21 +pkg syscall (netbsd-arm64), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-arm64), const IP_HDRINCL = 2 +pkg syscall (netbsd-arm64), const IP_HDRINCL ideal-int +pkg syscall (netbsd-arm64), const IP_IPSEC_POLICY = 22 +pkg syscall (netbsd-arm64), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm64), const IP_MAX_MEMBERSHIPS = 20 +pkg syscall (netbsd-arm64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-arm64), const IP_MAXPACKET = 65535 +pkg syscall (netbsd-arm64), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-arm64), const IP_MF = 8192 +pkg syscall (netbsd-arm64), const IP_MF ideal-int +pkg syscall (netbsd-arm64), const IP_MINFRAGSIZE = 69 +pkg syscall (netbsd-arm64), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-arm64), const IP_MINTTL = 24 +pkg syscall (netbsd-arm64), const IP_MINTTL ideal-int +pkg syscall (netbsd-arm64), const IP_MSS = 576 +pkg syscall (netbsd-arm64), const IP_MSS ideal-int +pkg syscall (netbsd-arm64), const IP_MULTICAST_IF = 9 +pkg syscall (netbsd-arm64), const IP_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm64), const IP_MULTICAST_TTL = 10 +pkg syscall (netbsd-arm64), const IP_OFFMASK = 8191 +pkg syscall (netbsd-arm64), const IP_OFFMASK ideal-int +pkg syscall (netbsd-arm64), const IP_OPTIONS = 1 +pkg syscall (netbsd-arm64), const IP_OPTIONS ideal-int +pkg syscall (netbsd-arm64), const IP_PORTRANGE = 19 +pkg syscall (netbsd-arm64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm64), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-arm64), const IP_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_AH = 51 +pkg syscall (netbsd-arm64), const IPPROTO_AH ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_CARP = 112 +pkg syscall (netbsd-arm64), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_DONE = 257 +pkg syscall (netbsd-arm64), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_DSTOPTS = 60 +pkg syscall (netbsd-arm64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_EGP = 8 +pkg syscall (netbsd-arm64), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ENCAP = 98 +pkg syscall (netbsd-arm64), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_EON = 80 +pkg syscall (netbsd-arm64), const IPPROTO_EON ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ESP = 50 +pkg syscall (netbsd-arm64), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ETHERIP = 97 +pkg syscall (netbsd-arm64), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_FRAGMENT = 44 +pkg syscall (netbsd-arm64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_GGP = 3 +pkg syscall (netbsd-arm64), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_GRE = 47 +pkg syscall (netbsd-arm64), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_HOPOPTS = 0 +pkg syscall (netbsd-arm64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ICMP = 1 +pkg syscall (netbsd-arm64), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ICMPV6 = 58 +pkg syscall (netbsd-arm64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IDP = 22 +pkg syscall (netbsd-arm64), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IGMP = 2 +pkg syscall (netbsd-arm64), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IPCOMP = 108 +pkg syscall (netbsd-arm64), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IPIP = 4 +pkg syscall (netbsd-arm64), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IPV4 = 4 +pkg syscall (netbsd-arm64), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_IPV6_ICMP = 58 +pkg syscall (netbsd-arm64), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_MAX = 256 +pkg syscall (netbsd-arm64), const IPPROTO_MAXID = 52 +pkg syscall (netbsd-arm64), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_MOBILE = 55 +pkg syscall (netbsd-arm64), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_NONE = 59 +pkg syscall (netbsd-arm64), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_PFSYNC = 240 +pkg syscall (netbsd-arm64), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_PIM = 103 +pkg syscall (netbsd-arm64), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_PUP = 12 +pkg syscall (netbsd-arm64), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_RAW = 255 +pkg syscall (netbsd-arm64), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_ROUTING = 43 +pkg syscall (netbsd-arm64), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_RSVP = 46 +pkg syscall (netbsd-arm64), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_TP = 29 +pkg syscall (netbsd-arm64), const IPPROTO_TP ideal-int +pkg syscall (netbsd-arm64), const IPPROTO_VRRP = 112 +pkg syscall (netbsd-arm64), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-arm64), const IP_RECVDSTADDR = 7 +pkg syscall (netbsd-arm64), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-arm64), const IP_RECVIF = 20 +pkg syscall (netbsd-arm64), const IP_RECVIF ideal-int +pkg syscall (netbsd-arm64), const IP_RECVOPTS = 5 +pkg syscall (netbsd-arm64), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-arm64), const IP_RECVRETOPTS = 6 +pkg syscall (netbsd-arm64), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-arm64), const IP_RECVTTL = 23 +pkg syscall (netbsd-arm64), const IP_RECVTTL ideal-int +pkg syscall (netbsd-arm64), const IP_RETOPTS = 8 +pkg syscall (netbsd-arm64), const IP_RETOPTS ideal-int +pkg syscall (netbsd-arm64), const IP_RF = 32768 +pkg syscall (netbsd-arm64), const IP_RF ideal-int +pkg syscall (netbsd-arm64), const IP_TOS = 3 +pkg syscall (netbsd-arm64), const IP_TTL = 4 +pkg syscall (netbsd-arm64), const IPV6_CHECKSUM = 26 +pkg syscall (netbsd-arm64), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (netbsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm64), const IPV6_DEFHLIM = 64 +pkg syscall (netbsd-arm64), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-arm64), const IPV6_DONTFRAG = 62 +pkg syscall (netbsd-arm64), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-arm64), const IPV6_DSTOPTS = 50 +pkg syscall (netbsd-arm64), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-arm64), const IPV6_FAITH = 29 +pkg syscall (netbsd-arm64), const IPV6_FAITH ideal-int +pkg syscall (netbsd-arm64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (netbsd-arm64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-arm64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (netbsd-arm64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-arm64), const IPV6_FRAGTTL = 120 +pkg syscall (netbsd-arm64), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-arm64), const IPV6_HLIMDEC = 1 +pkg syscall (netbsd-arm64), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-arm64), const IPV6_HOPLIMIT = 47 +pkg syscall (netbsd-arm64), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-arm64), const IPV6_HOPOPTS = 49 +pkg syscall (netbsd-arm64), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-arm64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (netbsd-arm64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm64), const IPV6_JOIN_GROUP = 12 +pkg syscall (netbsd-arm64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (netbsd-arm64), const IPV6_MAXHLIM = 255 +pkg syscall (netbsd-arm64), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-arm64), const IPV6_MAXPACKET = 65535 +pkg syscall (netbsd-arm64), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-arm64), const IPV6_MMTU = 1280 +pkg syscall (netbsd-arm64), const IPV6_MMTU ideal-int +pkg syscall (netbsd-arm64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (netbsd-arm64), const IPV6_MULTICAST_IF = 9 +pkg syscall (netbsd-arm64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (netbsd-arm64), const IPV6_NEXTHOP = 48 +pkg syscall (netbsd-arm64), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-arm64), const IPV6_PATHMTU = 44 +pkg syscall (netbsd-arm64), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-arm64), const IPV6_PKTINFO = 46 +pkg syscall (netbsd-arm64), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE = 14 +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (netbsd-arm64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVDSTOPTS = 40 +pkg syscall (netbsd-arm64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (netbsd-arm64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVHOPOPTS = 39 +pkg syscall (netbsd-arm64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVPATHMTU = 43 +pkg syscall (netbsd-arm64), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVPKTINFO = 36 +pkg syscall (netbsd-arm64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVRTHDR = 38 +pkg syscall (netbsd-arm64), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-arm64), const IPV6_RECVTCLASS = 57 +pkg syscall (netbsd-arm64), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-arm64), const IPV6_RTHDR = 51 +pkg syscall (netbsd-arm64), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (netbsd-arm64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-arm64), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-arm64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (netbsd-arm64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-arm64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (netbsd-arm64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-arm64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (netbsd-arm64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-arm64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (netbsd-arm64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-arm64), const IPV6_TCLASS = 61 +pkg syscall (netbsd-arm64), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-arm64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (netbsd-arm64), const IPV6_USE_MIN_MTU = 42 +pkg syscall (netbsd-arm64), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-arm64), const IPV6_V6ONLY = 27 +pkg syscall (netbsd-arm64), const IPV6_VERSION = 96 +pkg syscall (netbsd-arm64), const IPV6_VERSION ideal-int +pkg syscall (netbsd-arm64), const IPV6_VERSION_MASK = 240 +pkg syscall (netbsd-arm64), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-arm64), const ISIG = 128 +pkg syscall (netbsd-arm64), const ISIG ideal-int +pkg syscall (netbsd-arm64), const ISTRIP = 32 +pkg syscall (netbsd-arm64), const ISTRIP ideal-int +pkg syscall (netbsd-arm64), const IXANY = 2048 +pkg syscall (netbsd-arm64), const IXANY ideal-int +pkg syscall (netbsd-arm64), const IXOFF = 1024 +pkg syscall (netbsd-arm64), const IXOFF ideal-int +pkg syscall (netbsd-arm64), const IXON = 512 +pkg syscall (netbsd-arm64), const IXON ideal-int +pkg syscall (netbsd-arm64), const LOCK_EX = 2 +pkg syscall (netbsd-arm64), const LOCK_EX ideal-int +pkg syscall (netbsd-arm64), const LOCK_NB = 4 +pkg syscall (netbsd-arm64), const LOCK_NB ideal-int +pkg syscall (netbsd-arm64), const LOCK_SH = 1 +pkg syscall (netbsd-arm64), const LOCK_SH ideal-int +pkg syscall (netbsd-arm64), const LOCK_UN = 8 +pkg syscall (netbsd-arm64), const LOCK_UN ideal-int +pkg syscall (netbsd-arm64), const MADV_DONTNEED = 4 +pkg syscall (netbsd-arm64), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-arm64), const MADV_FREE = 6 +pkg syscall (netbsd-arm64), const MADV_FREE ideal-int +pkg syscall (netbsd-arm64), const MADV_NORMAL = 0 +pkg syscall (netbsd-arm64), const MADV_NORMAL ideal-int +pkg syscall (netbsd-arm64), const MADV_RANDOM = 1 +pkg syscall (netbsd-arm64), const MADV_RANDOM ideal-int +pkg syscall (netbsd-arm64), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-arm64), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-arm64), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-arm64), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-arm64), const MADV_WILLNEED = 3 +pkg syscall (netbsd-arm64), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-arm64), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-arm64), const MAP_ANON = 4096 +pkg syscall (netbsd-arm64), const MAP_ANON ideal-int +pkg syscall (netbsd-arm64), const MAP_FILE = 0 +pkg syscall (netbsd-arm64), const MAP_FILE ideal-int +pkg syscall (netbsd-arm64), const MAP_FIXED = 16 +pkg syscall (netbsd-arm64), const MAP_FIXED ideal-int +pkg syscall (netbsd-arm64), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-arm64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT = 128 +pkg syscall (netbsd-arm64), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-arm64), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-arm64), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-arm64), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-arm64), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-arm64), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-arm64), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-arm64), const MAP_NORESERVE = 64 +pkg syscall (netbsd-arm64), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-arm64), const MAP_PRIVATE = 2 +pkg syscall (netbsd-arm64), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-arm64), const MAP_RENAME = 32 +pkg syscall (netbsd-arm64), const MAP_RENAME ideal-int +pkg syscall (netbsd-arm64), const MAP_SHARED = 1 +pkg syscall (netbsd-arm64), const MAP_SHARED ideal-int +pkg syscall (netbsd-arm64), const MAP_STACK = 8192 +pkg syscall (netbsd-arm64), const MAP_STACK ideal-int +pkg syscall (netbsd-arm64), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-arm64), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-arm64), const MAP_WIRED = 2048 +pkg syscall (netbsd-arm64), const MAP_WIRED ideal-int +pkg syscall (netbsd-arm64), const MCL_CURRENT = 1 +pkg syscall (netbsd-arm64), const MCL_CURRENT ideal-int +pkg syscall (netbsd-arm64), const MCL_FUTURE = 2 +pkg syscall (netbsd-arm64), const MCL_FUTURE ideal-int +pkg syscall (netbsd-arm64), const MS_ASYNC = 1 +pkg syscall (netbsd-arm64), const MS_ASYNC ideal-int +pkg syscall (netbsd-arm64), const MSG_BCAST = 256 +pkg syscall (netbsd-arm64), const MSG_BCAST ideal-int +pkg syscall (netbsd-arm64), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (netbsd-arm64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-arm64), const MSG_CONTROLMBUF = 33554432 +pkg syscall (netbsd-arm64), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-arm64), const MSG_CTRUNC = 32 +pkg syscall (netbsd-arm64), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-arm64), const MSG_DONTROUTE = 4 +pkg syscall (netbsd-arm64), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-arm64), const MSG_DONTWAIT = 128 +pkg syscall (netbsd-arm64), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-arm64), const MSG_EOR = 8 +pkg syscall (netbsd-arm64), const MSG_EOR ideal-int +pkg syscall (netbsd-arm64), const MSG_IOVUSRSPACE = 67108864 +pkg syscall (netbsd-arm64), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-arm64), const MSG_LENUSRSPACE = 134217728 +pkg syscall (netbsd-arm64), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-arm64), const MSG_MCAST = 512 +pkg syscall (netbsd-arm64), const MSG_MCAST ideal-int +pkg syscall (netbsd-arm64), const MSG_NAMEMBUF = 16777216 +pkg syscall (netbsd-arm64), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-arm64), const MSG_NBIO = 4096 +pkg syscall (netbsd-arm64), const MSG_NBIO ideal-int +pkg syscall (netbsd-arm64), const MSG_NOSIGNAL = 1024 +pkg syscall (netbsd-arm64), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-arm64), const MSG_OOB = 1 +pkg syscall (netbsd-arm64), const MSG_OOB ideal-int +pkg syscall (netbsd-arm64), const MSG_PEEK = 2 +pkg syscall (netbsd-arm64), const MSG_PEEK ideal-int +pkg syscall (netbsd-arm64), const MSG_TRUNC = 16 +pkg syscall (netbsd-arm64), const MSG_TRUNC ideal-int +pkg syscall (netbsd-arm64), const MSG_USERFLAGS = 16777215 +pkg syscall (netbsd-arm64), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-arm64), const MSG_WAITALL = 64 +pkg syscall (netbsd-arm64), const MSG_WAITALL ideal-int +pkg syscall (netbsd-arm64), const MS_INVALIDATE = 2 +pkg syscall (netbsd-arm64), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-arm64), const MS_SYNC = 4 +pkg syscall (netbsd-arm64), const MS_SYNC ideal-int +pkg syscall (netbsd-arm64), const NAME_MAX = 511 +pkg syscall (netbsd-arm64), const NAME_MAX ideal-int +pkg syscall (netbsd-arm64), const NET_RT_DUMP = 1 +pkg syscall (netbsd-arm64), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-arm64), const NET_RT_FLAGS = 2 +pkg syscall (netbsd-arm64), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-arm64), const NET_RT_IFLIST = 5 +pkg syscall (netbsd-arm64), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-arm64), const NET_RT_MAXID = 6 +pkg syscall (netbsd-arm64), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-arm64), const NET_RT_OIFLIST = 4 +pkg syscall (netbsd-arm64), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-arm64), const NET_RT_OOIFLIST = 3 +pkg syscall (netbsd-arm64), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-arm64), const NOFLSH = 2147483648 +pkg syscall (netbsd-arm64), const NOFLSH ideal-int +pkg syscall (netbsd-arm64), const NOTE_ATTRIB = 8 +pkg syscall (netbsd-arm64), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-arm64), const NOTE_CHILD = 4 +pkg syscall (netbsd-arm64), const NOTE_CHILD ideal-int +pkg syscall (netbsd-arm64), const NOTE_DELETE = 1 +pkg syscall (netbsd-arm64), const NOTE_DELETE ideal-int +pkg syscall (netbsd-arm64), const NOTE_EXEC = 536870912 +pkg syscall (netbsd-arm64), const NOTE_EXEC ideal-int +pkg syscall (netbsd-arm64), const NOTE_EXIT = 2147483648 +pkg syscall (netbsd-arm64), const NOTE_EXIT ideal-int +pkg syscall (netbsd-arm64), const NOTE_EXTEND = 4 +pkg syscall (netbsd-arm64), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-arm64), const NOTE_FORK = 1073741824 +pkg syscall (netbsd-arm64), const NOTE_FORK ideal-int +pkg syscall (netbsd-arm64), const NOTE_LINK = 16 +pkg syscall (netbsd-arm64), const NOTE_LINK ideal-int +pkg syscall (netbsd-arm64), const NOTE_LOWAT = 1 +pkg syscall (netbsd-arm64), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-arm64), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (netbsd-arm64), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-arm64), const NOTE_PDATAMASK = 1048575 +pkg syscall (netbsd-arm64), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-arm64), const NOTE_RENAME = 32 +pkg syscall (netbsd-arm64), const NOTE_RENAME ideal-int +pkg syscall (netbsd-arm64), const NOTE_REVOKE = 64 +pkg syscall (netbsd-arm64), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-arm64), const NOTE_TRACK = 1 +pkg syscall (netbsd-arm64), const NOTE_TRACKERR = 2 +pkg syscall (netbsd-arm64), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-arm64), const NOTE_TRACK ideal-int +pkg syscall (netbsd-arm64), const NOTE_WRITE = 2 +pkg syscall (netbsd-arm64), const NOTE_WRITE ideal-int +pkg syscall (netbsd-arm64), const O_ACCMODE = 3 +pkg syscall (netbsd-arm64), const O_ACCMODE ideal-int +pkg syscall (netbsd-arm64), const O_ALT_IO = 262144 +pkg syscall (netbsd-arm64), const O_ALT_IO ideal-int +pkg syscall (netbsd-arm64), const O_APPEND = 8 +pkg syscall (netbsd-arm64), const O_ASYNC = 64 +pkg syscall (netbsd-arm64), const O_CLOEXEC = 4194304 +pkg syscall (netbsd-arm64), const O_CREAT = 512 +pkg syscall (netbsd-arm64), const OCRNL = 16 +pkg syscall (netbsd-arm64), const OCRNL ideal-int +pkg syscall (netbsd-arm64), const O_DIRECT = 524288 +pkg syscall (netbsd-arm64), const O_DIRECT ideal-int +pkg syscall (netbsd-arm64), const O_DIRECTORY = 2097152 +pkg syscall (netbsd-arm64), const O_DIRECTORY ideal-int +pkg syscall (netbsd-arm64), const O_DSYNC = 65536 +pkg syscall (netbsd-arm64), const O_DSYNC ideal-int +pkg syscall (netbsd-arm64), const O_EXCL = 2048 +pkg syscall (netbsd-arm64), const O_EXLOCK = 32 +pkg syscall (netbsd-arm64), const O_EXLOCK ideal-int +pkg syscall (netbsd-arm64), const OFIOGETBMAP = 3221513850 +pkg syscall (netbsd-arm64), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-arm64), const O_FSYNC = 128 +pkg syscall (netbsd-arm64), const O_FSYNC ideal-int +pkg syscall (netbsd-arm64), const O_NDELAY = 4 +pkg syscall (netbsd-arm64), const O_NDELAY ideal-int +pkg syscall (netbsd-arm64), const ONLCR = 2 +pkg syscall (netbsd-arm64), const ONLCR ideal-int +pkg syscall (netbsd-arm64), const ONLRET = 64 +pkg syscall (netbsd-arm64), const ONLRET ideal-int +pkg syscall (netbsd-arm64), const ONOCR = 32 +pkg syscall (netbsd-arm64), const ONOCR ideal-int +pkg syscall (netbsd-arm64), const O_NOCTTY = 32768 +pkg syscall (netbsd-arm64), const ONOEOT = 8 +pkg syscall (netbsd-arm64), const ONOEOT ideal-int +pkg syscall (netbsd-arm64), const O_NOFOLLOW = 256 +pkg syscall (netbsd-arm64), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-arm64), const O_NONBLOCK = 4 +pkg syscall (netbsd-arm64), const O_NOSIGPIPE = 16777216 +pkg syscall (netbsd-arm64), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64), const OPOST = 1 +pkg syscall (netbsd-arm64), const OPOST ideal-int +pkg syscall (netbsd-arm64), const O_RSYNC = 131072 +pkg syscall (netbsd-arm64), const O_RSYNC ideal-int +pkg syscall (netbsd-arm64), const O_SHLOCK = 16 +pkg syscall (netbsd-arm64), const O_SHLOCK ideal-int +pkg syscall (netbsd-arm64), const O_SYNC = 128 +pkg syscall (netbsd-arm64), const O_TRUNC = 1024 +pkg syscall (netbsd-arm64), const PARENB = 4096 +pkg syscall (netbsd-arm64), const PARENB ideal-int +pkg syscall (netbsd-arm64), const PARMRK = 8 +pkg syscall (netbsd-arm64), const PARMRK ideal-int +pkg syscall (netbsd-arm64), const PARODD = 8192 +pkg syscall (netbsd-arm64), const PARODD ideal-int +pkg syscall (netbsd-arm64), const PENDIN = 536870912 +pkg syscall (netbsd-arm64), const PENDIN ideal-int +pkg syscall (netbsd-arm64), const PRI_IOFLUSH = 124 +pkg syscall (netbsd-arm64), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-arm64), const PRIO_PGRP = 1 +pkg syscall (netbsd-arm64), const PRIO_PGRP ideal-int +pkg syscall (netbsd-arm64), const PRIO_PROCESS = 0 +pkg syscall (netbsd-arm64), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-arm64), const PRIO_USER = 2 +pkg syscall (netbsd-arm64), const PRIO_USER ideal-int +pkg syscall (netbsd-arm64), const PROT_EXEC = 4 +pkg syscall (netbsd-arm64), const PROT_EXEC ideal-int +pkg syscall (netbsd-arm64), const PROT_NONE = 0 +pkg syscall (netbsd-arm64), const PROT_NONE ideal-int +pkg syscall (netbsd-arm64), const PROT_READ = 1 +pkg syscall (netbsd-arm64), const PROT_READ ideal-int +pkg syscall (netbsd-arm64), const PROT_WRITE = 2 +pkg syscall (netbsd-arm64), const PROT_WRITE ideal-int +pkg syscall (netbsd-arm64), const PTRACE_CONT = 7 +pkg syscall (netbsd-arm64), const PTRACE_CONT ideal-int +pkg syscall (netbsd-arm64), const PTRACE_KILL = 8 +pkg syscall (netbsd-arm64), const PTRACE_KILL ideal-int +pkg syscall (netbsd-arm64), const PTRACE_TRACEME = 0 +pkg syscall (netbsd-arm64), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-arm64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (netbsd-arm64), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_AS = 10 +pkg syscall (netbsd-arm64), const RLIMIT_AS ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_CORE = 4 +pkg syscall (netbsd-arm64), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_CPU = 0 +pkg syscall (netbsd-arm64), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_DATA = 2 +pkg syscall (netbsd-arm64), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_FSIZE = 1 +pkg syscall (netbsd-arm64), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_NOFILE = 8 +pkg syscall (netbsd-arm64), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-arm64), const RLIMIT_STACK = 3 +pkg syscall (netbsd-arm64), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-arm64), const RTA_AUTHOR = 64 +pkg syscall (netbsd-arm64), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-arm64), const RTA_BRD = 128 +pkg syscall (netbsd-arm64), const RTA_BRD ideal-int +pkg syscall (netbsd-arm64), const RTA_DST = 1 +pkg syscall (netbsd-arm64), const RTA_DST ideal-int +pkg syscall (netbsd-arm64), const RTA_GATEWAY = 2 +pkg syscall (netbsd-arm64), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-arm64), const RTA_GENMASK = 8 +pkg syscall (netbsd-arm64), const RTA_GENMASK ideal-int +pkg syscall (netbsd-arm64), const RTA_IFA = 32 +pkg syscall (netbsd-arm64), const RTA_IFA ideal-int +pkg syscall (netbsd-arm64), const RTA_IFP = 16 +pkg syscall (netbsd-arm64), const RTA_IFP ideal-int +pkg syscall (netbsd-arm64), const RTA_NETMASK = 4 +pkg syscall (netbsd-arm64), const RTA_NETMASK ideal-int +pkg syscall (netbsd-arm64), const RTA_TAG = 256 +pkg syscall (netbsd-arm64), const RTA_TAG ideal-int +pkg syscall (netbsd-arm64), const RTAX_AUTHOR = 6 +pkg syscall (netbsd-arm64), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-arm64), const RTAX_BRD = 7 +pkg syscall (netbsd-arm64), const RTAX_BRD ideal-int +pkg syscall (netbsd-arm64), const RTAX_DST = 0 +pkg syscall (netbsd-arm64), const RTAX_DST ideal-int +pkg syscall (netbsd-arm64), const RTAX_GATEWAY = 1 +pkg syscall (netbsd-arm64), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-arm64), const RTAX_GENMASK = 3 +pkg syscall (netbsd-arm64), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-arm64), const RTAX_IFA = 5 +pkg syscall (netbsd-arm64), const RTAX_IFA ideal-int +pkg syscall (netbsd-arm64), const RTAX_IFP = 4 +pkg syscall (netbsd-arm64), const RTAX_IFP ideal-int +pkg syscall (netbsd-arm64), const RTAX_MAX = 9 +pkg syscall (netbsd-arm64), const RTAX_MAX ideal-int +pkg syscall (netbsd-arm64), const RTAX_NETMASK = 2 +pkg syscall (netbsd-arm64), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-arm64), const RTAX_TAG = 8 +pkg syscall (netbsd-arm64), const RTAX_TAG ideal-int +pkg syscall (netbsd-arm64), const RTF_ANNOUNCE = 131072 +pkg syscall (netbsd-arm64), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-arm64), const RTF_BLACKHOLE = 4096 +pkg syscall (netbsd-arm64), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-arm64), const RTF_CLONED = 8192 +pkg syscall (netbsd-arm64), const RTF_CLONED ideal-int +pkg syscall (netbsd-arm64), const RTF_CLONING = 256 +pkg syscall (netbsd-arm64), const RTF_CLONING ideal-int +pkg syscall (netbsd-arm64), const RTF_DONE = 64 +pkg syscall (netbsd-arm64), const RTF_DONE ideal-int +pkg syscall (netbsd-arm64), const RTF_DYNAMIC = 16 +pkg syscall (netbsd-arm64), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-arm64), const RTF_GATEWAY = 2 +pkg syscall (netbsd-arm64), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-arm64), const RTF_HOST = 4 +pkg syscall (netbsd-arm64), const RTF_HOST ideal-int +pkg syscall (netbsd-arm64), const RTF_LLINFO = 1024 +pkg syscall (netbsd-arm64), const RTF_LLINFO ideal-int +pkg syscall (netbsd-arm64), const RTF_MASK = 128 +pkg syscall (netbsd-arm64), const RTF_MASK ideal-int +pkg syscall (netbsd-arm64), const RTF_MODIFIED = 32 +pkg syscall (netbsd-arm64), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-arm64), const RTF_PROTO1 = 32768 +pkg syscall (netbsd-arm64), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-arm64), const RTF_PROTO2 = 16384 +pkg syscall (netbsd-arm64), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-arm64), const RTF_REJECT = 8 +pkg syscall (netbsd-arm64), const RTF_REJECT ideal-int +pkg syscall (netbsd-arm64), const RTF_SRC = 65536 +pkg syscall (netbsd-arm64), const RTF_SRC ideal-int +pkg syscall (netbsd-arm64), const RTF_STATIC = 2048 +pkg syscall (netbsd-arm64), const RTF_STATIC ideal-int +pkg syscall (netbsd-arm64), const RTF_UP = 1 +pkg syscall (netbsd-arm64), const RTF_UP ideal-int +pkg syscall (netbsd-arm64), const RTF_XRESOLVE = 512 +pkg syscall (netbsd-arm64), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-arm64), const RTM_ADD = 1 +pkg syscall (netbsd-arm64), const RTM_ADD ideal-int +pkg syscall (netbsd-arm64), const RTM_CHANGE = 3 +pkg syscall (netbsd-arm64), const RTM_CHANGE ideal-int +pkg syscall (netbsd-arm64), const RTM_CHGADDR = 21 +pkg syscall (netbsd-arm64), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-arm64), const RTM_DELADDR = 13 +pkg syscall (netbsd-arm64), const RTM_DELADDR ideal-int +pkg syscall (netbsd-arm64), const RTM_DELETE = 2 +pkg syscall (netbsd-arm64), const RTM_DELETE ideal-int +pkg syscall (netbsd-arm64), const RTM_GET = 4 +pkg syscall (netbsd-arm64), const RTM_GET ideal-int +pkg syscall (netbsd-arm64), const RTM_IEEE80211 = 17 +pkg syscall (netbsd-arm64), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-arm64), const RTM_IFANNOUNCE = 16 +pkg syscall (netbsd-arm64), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-arm64), const RTM_IFINFO = 20 +pkg syscall (netbsd-arm64), const RTM_IFINFO ideal-int +pkg syscall (netbsd-arm64), const RTM_LLINFO_UPD = 19 +pkg syscall (netbsd-arm64), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-arm64), const RTM_LOCK = 8 +pkg syscall (netbsd-arm64), const RTM_LOCK ideal-int +pkg syscall (netbsd-arm64), const RTM_LOSING = 5 +pkg syscall (netbsd-arm64), const RTM_LOSING ideal-int +pkg syscall (netbsd-arm64), const RTM_MISS = 7 +pkg syscall (netbsd-arm64), const RTM_MISS ideal-int +pkg syscall (netbsd-arm64), const RTM_NEWADDR = 12 +pkg syscall (netbsd-arm64), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-arm64), const RTM_OIFINFO = 15 +pkg syscall (netbsd-arm64), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-arm64), const RTM_OLDADD = 9 +pkg syscall (netbsd-arm64), const RTM_OLDADD ideal-int +pkg syscall (netbsd-arm64), const RTM_OLDDEL = 10 +pkg syscall (netbsd-arm64), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-arm64), const RTM_OOIFINFO = 14 +pkg syscall (netbsd-arm64), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-arm64), const RTM_REDIRECT = 6 +pkg syscall (netbsd-arm64), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-arm64), const RTM_RESOLVE = 11 +pkg syscall (netbsd-arm64), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-arm64), const RTM_RTTUNIT = 1000000 +pkg syscall (netbsd-arm64), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-arm64), const RTM_SETGATE = 18 +pkg syscall (netbsd-arm64), const RTM_SETGATE ideal-int +pkg syscall (netbsd-arm64), const RTM_VERSION = 4 +pkg syscall (netbsd-arm64), const RTM_VERSION ideal-int +pkg syscall (netbsd-arm64), const RTV_EXPIRE = 4 +pkg syscall (netbsd-arm64), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-arm64), const RTV_HOPCOUNT = 2 +pkg syscall (netbsd-arm64), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-arm64), const RTV_MTU = 1 +pkg syscall (netbsd-arm64), const RTV_MTU ideal-int +pkg syscall (netbsd-arm64), const RTV_RPIPE = 8 +pkg syscall (netbsd-arm64), const RTV_RPIPE ideal-int +pkg syscall (netbsd-arm64), const RTV_RTT = 64 +pkg syscall (netbsd-arm64), const RTV_RTT ideal-int +pkg syscall (netbsd-arm64), const RTV_RTTVAR = 128 +pkg syscall (netbsd-arm64), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-arm64), const RTV_SPIPE = 16 +pkg syscall (netbsd-arm64), const RTV_SPIPE ideal-int +pkg syscall (netbsd-arm64), const RTV_SSTHRESH = 32 +pkg syscall (netbsd-arm64), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-arm64), const RUSAGE_CHILDREN = -1 +pkg syscall (netbsd-arm64), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-arm64), const RUSAGE_SELF = 0 +pkg syscall (netbsd-arm64), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-arm64), const S_ARCH1 = 65536 +pkg syscall (netbsd-arm64), const S_ARCH1 ideal-int +pkg syscall (netbsd-arm64), const S_ARCH2 = 131072 +pkg syscall (netbsd-arm64), const S_ARCH2 ideal-int +pkg syscall (netbsd-arm64), const S_BLKSIZE = 512 +pkg syscall (netbsd-arm64), const S_BLKSIZE ideal-int +pkg syscall (netbsd-arm64), const SCM_CREDS = 4 +pkg syscall (netbsd-arm64), const SCM_CREDS ideal-int +pkg syscall (netbsd-arm64), const SCM_RIGHTS = 1 +pkg syscall (netbsd-arm64), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-arm64), const SCM_TIMESTAMP = 8 +pkg syscall (netbsd-arm64), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-arm64), const S_IEXEC = 64 +pkg syscall (netbsd-arm64), const S_IEXEC ideal-int +pkg syscall (netbsd-arm64), const S_IFMT = 61440 +pkg syscall (netbsd-arm64), const S_IFWHT = 57344 +pkg syscall (netbsd-arm64), const S_IFWHT ideal-int +pkg syscall (netbsd-arm64), const SIGBUS = 10 +pkg syscall (netbsd-arm64), const SIGCHLD = 20 +pkg syscall (netbsd-arm64), const SIGCHLD Signal +pkg syscall (netbsd-arm64), const SIGCONT = 19 +pkg syscall (netbsd-arm64), const SIGCONT Signal +pkg syscall (netbsd-arm64), const SIGEMT = 7 +pkg syscall (netbsd-arm64), const SIGEMT Signal +pkg syscall (netbsd-arm64), const SIGINFO = 29 +pkg syscall (netbsd-arm64), const SIGINFO Signal +pkg syscall (netbsd-arm64), const SIGIO = 23 +pkg syscall (netbsd-arm64), const SIGIO Signal +pkg syscall (netbsd-arm64), const SIGIOT = 6 +pkg syscall (netbsd-arm64), const SIGIOT Signal +pkg syscall (netbsd-arm64), const SIGPROF = 27 +pkg syscall (netbsd-arm64), const SIGPROF Signal +pkg syscall (netbsd-arm64), const SIGPWR = 32 +pkg syscall (netbsd-arm64), const SIGPWR Signal +pkg syscall (netbsd-arm64), const SIGSTOP = 17 +pkg syscall (netbsd-arm64), const SIGSTOP Signal +pkg syscall (netbsd-arm64), const SIGSYS = 12 +pkg syscall (netbsd-arm64), const SIGSYS Signal +pkg syscall (netbsd-arm64), const SIGTSTP = 18 +pkg syscall (netbsd-arm64), const SIGTSTP Signal +pkg syscall (netbsd-arm64), const SIGTTIN = 21 +pkg syscall (netbsd-arm64), const SIGTTIN Signal +pkg syscall (netbsd-arm64), const SIGTTOU = 22 +pkg syscall (netbsd-arm64), const SIGTTOU Signal +pkg syscall (netbsd-arm64), const SIGURG = 16 +pkg syscall (netbsd-arm64), const SIGURG Signal +pkg syscall (netbsd-arm64), const SIGUSR1 = 30 +pkg syscall (netbsd-arm64), const SIGUSR1 Signal +pkg syscall (netbsd-arm64), const SIGUSR2 = 31 +pkg syscall (netbsd-arm64), const SIGUSR2 Signal +pkg syscall (netbsd-arm64), const SIGVTALRM = 26 +pkg syscall (netbsd-arm64), const SIGVTALRM Signal +pkg syscall (netbsd-arm64), const SIGWINCH = 28 +pkg syscall (netbsd-arm64), const SIGWINCH Signal +pkg syscall (netbsd-arm64), const SIGXCPU = 24 +pkg syscall (netbsd-arm64), const SIGXCPU Signal +pkg syscall (netbsd-arm64), const SIGXFSZ = 25 +pkg syscall (netbsd-arm64), const SIGXFSZ Signal +pkg syscall (netbsd-arm64), const SIOCADDMULTI = 2156947761 +pkg syscall (netbsd-arm64), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-arm64), const SIOCADDRT = 2151182858 +pkg syscall (netbsd-arm64), const SIOCADDRT ideal-int +pkg syscall (netbsd-arm64), const SIOCAIFADDR = 2151704858 +pkg syscall (netbsd-arm64), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCALIFADDR = 2165860636 +pkg syscall (netbsd-arm64), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCATMARK = 1074033415 +pkg syscall (netbsd-arm64), const SIOCATMARK ideal-int +pkg syscall (netbsd-arm64), const SIOCDELMULTI = 2156947762 +pkg syscall (netbsd-arm64), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-arm64), const SIOCDELRT = 2151182859 +pkg syscall (netbsd-arm64), const SIOCDELRT ideal-int +pkg syscall (netbsd-arm64), const SIOCDIFADDR = 2156947737 +pkg syscall (netbsd-arm64), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCDIFPHYADDR = 2156947785 +pkg syscall (netbsd-arm64), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCDLIFADDR = 2165860638 +pkg syscall (netbsd-arm64), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (netbsd-arm64), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-arm64), const SIOCGETPFSYNC = 3230689784 +pkg syscall (netbsd-arm64), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-arm64), const SIOCGETSGCNT = 3223352628 +pkg syscall (netbsd-arm64), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-arm64), const SIOCGETVIFCNT = 3223876915 +pkg syscall (netbsd-arm64), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-arm64), const SIOCGHIWAT = 1074033409 +pkg syscall (netbsd-arm64), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFADDR = 3230689569 +pkg syscall (netbsd-arm64), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFADDRPREF = 3231213856 +pkg syscall (netbsd-arm64), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFALIAS = 3225446683 +pkg syscall (netbsd-arm64), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFBRDADDR = 3230689571 +pkg syscall (netbsd-arm64), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFCAP = 3223349622 +pkg syscall (netbsd-arm64), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFCONF = 3222300966 +pkg syscall (netbsd-arm64), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFDATA = 3231213957 +pkg syscall (netbsd-arm64), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFDLT = 3230689655 +pkg syscall (netbsd-arm64), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFDSTADDR = 3230689570 +pkg syscall (netbsd-arm64), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFFLAGS = 3230689553 +pkg syscall (netbsd-arm64), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFGENERIC = 3230689594 +pkg syscall (netbsd-arm64), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFMEDIA = 3224398134 +pkg syscall (netbsd-arm64), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFMETRIC = 3230689559 +pkg syscall (netbsd-arm64), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFMTU = 3230689662 +pkg syscall (netbsd-arm64), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFNETMASK = 3230689573 +pkg syscall (netbsd-arm64), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFPDSTADDR = 3230689608 +pkg syscall (netbsd-arm64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGIFPSRCADDR = 3230689607 +pkg syscall (netbsd-arm64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGLIFADDR = 3239602461 +pkg syscall (netbsd-arm64), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (netbsd-arm64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCGLINKSTR = 3223873927 +pkg syscall (netbsd-arm64), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-arm64), const SIOCGLOWAT = 1074033411 +pkg syscall (netbsd-arm64), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-arm64), const SIOCGPGRP = 1074033417 +pkg syscall (netbsd-arm64), const SIOCGPGRP ideal-int +pkg syscall (netbsd-arm64), const SIOCGVH = 3230689667 +pkg syscall (netbsd-arm64), const SIOCGVH ideal-int +pkg syscall (netbsd-arm64), const SIOCIFCREATE = 2156947834 +pkg syscall (netbsd-arm64), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-arm64), const SIOCIFDESTROY = 2156947833 +pkg syscall (netbsd-arm64), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-arm64), const SIOCIFGCLONERS = 3222301048 +pkg syscall (netbsd-arm64), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-arm64), const SIOCINITIFADDR = 3228592516 +pkg syscall (netbsd-arm64), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (netbsd-arm64), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-arm64), const SIOCSETPFSYNC = 2156947959 +pkg syscall (netbsd-arm64), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-arm64), const SIOCSHIWAT = 2147775232 +pkg syscall (netbsd-arm64), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFADDR = 2156947724 +pkg syscall (netbsd-arm64), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFADDRPREF = 2157472031 +pkg syscall (netbsd-arm64), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFBRDADDR = 2156947731 +pkg syscall (netbsd-arm64), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFCAP = 2149607797 +pkg syscall (netbsd-arm64), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFDSTADDR = 2156947726 +pkg syscall (netbsd-arm64), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFFLAGS = 2156947728 +pkg syscall (netbsd-arm64), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFGENERIC = 2156947769 +pkg syscall (netbsd-arm64), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFMEDIA = 3230689589 +pkg syscall (netbsd-arm64), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFMETRIC = 2156947736 +pkg syscall (netbsd-arm64), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFMTU = 2156947839 +pkg syscall (netbsd-arm64), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFNETMASK = 2156947734 +pkg syscall (netbsd-arm64), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-arm64), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (netbsd-arm64), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (netbsd-arm64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-arm64), const SIOCSLINKSTR = 2150132104 +pkg syscall (netbsd-arm64), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-arm64), const SIOCSLOWAT = 2147775234 +pkg syscall (netbsd-arm64), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-arm64), const SIOCSPGRP = 2147775240 +pkg syscall (netbsd-arm64), const SIOCSPGRP ideal-int +pkg syscall (netbsd-arm64), const SIOCSVH = 3230689666 +pkg syscall (netbsd-arm64), const SIOCSVH ideal-int +pkg syscall (netbsd-arm64), const SIOCZIFDATA = 3231213958 +pkg syscall (netbsd-arm64), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-arm64), const S_IREAD = 256 +pkg syscall (netbsd-arm64), const S_IREAD ideal-int +pkg syscall (netbsd-arm64), const S_IRGRP = 32 +pkg syscall (netbsd-arm64), const S_IRGRP ideal-int +pkg syscall (netbsd-arm64), const S_IROTH = 4 +pkg syscall (netbsd-arm64), const S_IROTH ideal-int +pkg syscall (netbsd-arm64), const S_IRWXG = 56 +pkg syscall (netbsd-arm64), const S_IRWXG ideal-int +pkg syscall (netbsd-arm64), const S_IRWXO = 7 +pkg syscall (netbsd-arm64), const S_IRWXO ideal-int +pkg syscall (netbsd-arm64), const S_IRWXU = 448 +pkg syscall (netbsd-arm64), const S_IRWXU ideal-int +pkg syscall (netbsd-arm64), const S_ISTXT = 512 +pkg syscall (netbsd-arm64), const S_ISTXT ideal-int +pkg syscall (netbsd-arm64), const S_IWGRP = 16 +pkg syscall (netbsd-arm64), const S_IWGRP ideal-int +pkg syscall (netbsd-arm64), const S_IWOTH = 2 +pkg syscall (netbsd-arm64), const S_IWOTH ideal-int +pkg syscall (netbsd-arm64), const S_IWRITE = 128 +pkg syscall (netbsd-arm64), const S_IWRITE ideal-int +pkg syscall (netbsd-arm64), const S_IXGRP = 8 +pkg syscall (netbsd-arm64), const S_IXGRP ideal-int +pkg syscall (netbsd-arm64), const S_IXOTH = 1 +pkg syscall (netbsd-arm64), const S_IXOTH ideal-int +pkg syscall (netbsd-arm64), const SizeofBpfHdr = 32 +pkg syscall (netbsd-arm64), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-arm64), const SizeofBpfInsn = 8 +pkg syscall (netbsd-arm64), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-arm64), const SizeofBpfProgram = 16 +pkg syscall (netbsd-arm64), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-arm64), const SizeofBpfStat = 128 +pkg syscall (netbsd-arm64), const SizeofBpfStat ideal-int +pkg syscall (netbsd-arm64), const SizeofBpfVersion = 4 +pkg syscall (netbsd-arm64), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-arm64), const SizeofCmsghdr = 12 +pkg syscall (netbsd-arm64), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-arm64), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-arm64), const SizeofIfaMsghdr = 24 +pkg syscall (netbsd-arm64), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (netbsd-arm64), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofIfData = 136 +pkg syscall (netbsd-arm64), const SizeofIfData ideal-int +pkg syscall (netbsd-arm64), const SizeofIfMsghdr = 152 +pkg syscall (netbsd-arm64), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofInet6Pktinfo = 20 +pkg syscall (netbsd-arm64), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-arm64), const SizeofIPMreq = 8 +pkg syscall (netbsd-arm64), const SizeofIPMreq ideal-int +pkg syscall (netbsd-arm64), const SizeofIPv6Mreq = 20 +pkg syscall (netbsd-arm64), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-arm64), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-arm64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-arm64), const SizeofLinger = 8 +pkg syscall (netbsd-arm64), const SizeofLinger ideal-int +pkg syscall (netbsd-arm64), const SizeofMsghdr = 48 +pkg syscall (netbsd-arm64), const SizeofMsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofRtMetrics = 80 +pkg syscall (netbsd-arm64), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-arm64), const SizeofRtMsghdr = 120 +pkg syscall (netbsd-arm64), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-arm64), const SizeofSockaddrAny = 108 +pkg syscall (netbsd-arm64), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-arm64), const SizeofSockaddrDatalink = 20 +pkg syscall (netbsd-arm64), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-arm64), const SizeofSockaddrInet4 = 16 +pkg syscall (netbsd-arm64), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-arm64), const SizeofSockaddrInet6 = 28 +pkg syscall (netbsd-arm64), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-arm64), const SizeofSockaddrUnix = 106 +pkg syscall (netbsd-arm64), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-arm64), const S_LOGIN_SET = 1 +pkg syscall (netbsd-arm64), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-arm64), const SO_ACCEPTCONN = 2 +pkg syscall (netbsd-arm64), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-arm64), const SO_ACCEPTFILTER = 4096 +pkg syscall (netbsd-arm64), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-arm64), const SO_BROADCAST = 32 +pkg syscall (netbsd-arm64), const SOCK_CLOEXEC = 268435456 +pkg syscall (netbsd-arm64), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK = 4026531840 +pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-arm64), const SOCK_NONBLOCK = 536870912 +pkg syscall (netbsd-arm64), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-arm64), const SOCK_NOSIGPIPE = 1073741824 +pkg syscall (netbsd-arm64), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64), const SOCK_RDM = 4 +pkg syscall (netbsd-arm64), const SOCK_RDM ideal-int +pkg syscall (netbsd-arm64), const SO_DEBUG = 1 +pkg syscall (netbsd-arm64), const SO_DEBUG ideal-int +pkg syscall (netbsd-arm64), const SO_DONTROUTE = 16 +pkg syscall (netbsd-arm64), const SO_ERROR = 4103 +pkg syscall (netbsd-arm64), const SO_ERROR ideal-int +pkg syscall (netbsd-arm64), const SO_KEEPALIVE = 8 +pkg syscall (netbsd-arm64), const SO_LINGER = 128 +pkg syscall (netbsd-arm64), const SOL_SOCKET = 65535 +pkg syscall (netbsd-arm64), const SOMAXCONN = 128 +pkg syscall (netbsd-arm64), const SO_NOHEADER = 4106 +pkg syscall (netbsd-arm64), const SO_NOHEADER ideal-int +pkg syscall (netbsd-arm64), const SO_NOSIGPIPE = 2048 +pkg syscall (netbsd-arm64), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm64), const SO_OOBINLINE = 256 +pkg syscall (netbsd-arm64), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-arm64), const SO_OVERFLOWED = 4105 +pkg syscall (netbsd-arm64), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-arm64), const SO_RCVBUF = 4098 +pkg syscall (netbsd-arm64), const SO_RCVLOWAT = 4100 +pkg syscall (netbsd-arm64), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-arm64), const SO_RCVTIMEO = 4108 +pkg syscall (netbsd-arm64), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-arm64), const SO_REUSEADDR = 4 +pkg syscall (netbsd-arm64), const SO_REUSEPORT = 512 +pkg syscall (netbsd-arm64), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-arm64), const SO_SNDBUF = 4097 +pkg syscall (netbsd-arm64), const SO_SNDLOWAT = 4099 +pkg syscall (netbsd-arm64), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-arm64), const SO_SNDTIMEO = 4107 +pkg syscall (netbsd-arm64), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-arm64), const SO_TIMESTAMP = 8192 +pkg syscall (netbsd-arm64), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-arm64), const SO_TYPE = 4104 +pkg syscall (netbsd-arm64), const SO_TYPE ideal-int +pkg syscall (netbsd-arm64), const SO_USELOOPBACK = 64 +pkg syscall (netbsd-arm64), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-arm64), const SYS_ACCEPT = 30 +pkg syscall (netbsd-arm64), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-arm64), const SYS_ACCESS = 33 +pkg syscall (netbsd-arm64), const SYS_ACCESS ideal-int +pkg syscall (netbsd-arm64), const SYS_ACCT = 51 +pkg syscall (netbsd-arm64), const SYS_ACCT ideal-int +pkg syscall (netbsd-arm64), const SYS_ADJTIME = 421 +pkg syscall (netbsd-arm64), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_BIND = 104 +pkg syscall (netbsd-arm64), const SYS_BIND ideal-int +pkg syscall (netbsd-arm64), const SYS_BREAK = 17 +pkg syscall (netbsd-arm64), const SYS_BREAK ideal-int +pkg syscall (netbsd-arm64), const SYS_CHDIR = 12 +pkg syscall (netbsd-arm64), const SYS_CHDIR ideal-int +pkg syscall (netbsd-arm64), const SYS_CHFLAGS = 34 +pkg syscall (netbsd-arm64), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-arm64), const SYS_CHMOD = 15 +pkg syscall (netbsd-arm64), const SYS_CHMOD ideal-int +pkg syscall (netbsd-arm64), const SYS_CHOWN = 16 +pkg syscall (netbsd-arm64), const SYS_CHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS_CHROOT = 61 +pkg syscall (netbsd-arm64), const SYS_CHROOT ideal-int +pkg syscall (netbsd-arm64), const SYS_CLOCK_GETRES = 429 +pkg syscall (netbsd-arm64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-arm64), const SYS_CLOCK_GETTIME = 427 +pkg syscall (netbsd-arm64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_CLOCK_SETTIME = 428 +pkg syscall (netbsd-arm64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-arm64), const SYS___CLONE = 287 +pkg syscall (netbsd-arm64), const SYS___CLONE ideal-int +pkg syscall (netbsd-arm64), const SYS_CLOSE = 6 +pkg syscall (netbsd-arm64), const SYS_CLOSE ideal-int +pkg syscall (netbsd-arm64), const SYS_CONNECT = 98 +pkg syscall (netbsd-arm64), const SYS_CONNECT ideal-int +pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 = 0 +pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 = 16777216 +pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-arm64), const SYSCTL_VERSION = 16777216 +pkg syscall (netbsd-arm64), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-arm64), const SYSCTL_VERS_MASK = 4278190080 +pkg syscall (netbsd-arm64), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-arm64), const SYS_DUP2 = 90 +pkg syscall (netbsd-arm64), const SYS_DUP2 ideal-int +pkg syscall (netbsd-arm64), const SYS_DUP3 = 454 +pkg syscall (netbsd-arm64), const SYS_DUP3 ideal-int +pkg syscall (netbsd-arm64), const SYS_DUP = 41 +pkg syscall (netbsd-arm64), const SYS_DUP ideal-int +pkg syscall (netbsd-arm64), const SYS_EXECVE = 59 +pkg syscall (netbsd-arm64), const SYS_EXECVE ideal-int +pkg syscall (netbsd-arm64), const SYS_EXIT = 1 +pkg syscall (netbsd-arm64), const SYS_EXIT ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTRCTL = 360 +pkg syscall (netbsd-arm64), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FD = 366 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FILE = 363 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_LINK = 369 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FD = 365 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FILE = 362 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_LINK = 368 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FD = 370 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FILE = 371 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_LINK = 372 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FD = 364 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FILE = 361 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_LINK = 367 +pkg syscall (netbsd-arm64), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-arm64), const SYS_FACCESSAT = 462 +pkg syscall (netbsd-arm64), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHDIR = 13 +pkg syscall (netbsd-arm64), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHFLAGS = 35 +pkg syscall (netbsd-arm64), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHMOD = 124 +pkg syscall (netbsd-arm64), const SYS_FCHMODAT = 463 +pkg syscall (netbsd-arm64), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHOWN = 123 +pkg syscall (netbsd-arm64), const SYS_FCHOWNAT = 464 +pkg syscall (netbsd-arm64), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS_FCHROOT = 297 +pkg syscall (netbsd-arm64), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-arm64), const SYS_FCNTL = 92 +pkg syscall (netbsd-arm64), const SYS_FCNTL ideal-int +pkg syscall (netbsd-arm64), const SYS_FDATASYNC = 241 +pkg syscall (netbsd-arm64), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-arm64), const SYS_FEXECVE = 465 +pkg syscall (netbsd-arm64), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-arm64), const SYS_FGETXATTR = 380 +pkg syscall (netbsd-arm64), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_FHSTAT = 451 +pkg syscall (netbsd-arm64), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FKTRACE = 288 +pkg syscall (netbsd-arm64), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-arm64), const SYS_FLISTXATTR = 383 +pkg syscall (netbsd-arm64), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_FLOCK = 131 +pkg syscall (netbsd-arm64), const SYS_FLOCK ideal-int +pkg syscall (netbsd-arm64), const SYS_FORK = 2 +pkg syscall (netbsd-arm64), const SYS_FORK ideal-int +pkg syscall (netbsd-arm64), const SYS_FPATHCONF = 192 +pkg syscall (netbsd-arm64), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-arm64), const SYS_FREMOVEXATTR = 386 +pkg syscall (netbsd-arm64), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_FSETXATTR = 377 +pkg syscall (netbsd-arm64), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_FSTAT = 440 +pkg syscall (netbsd-arm64), const SYS_FSTATAT = 466 +pkg syscall (netbsd-arm64), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FSTAT ideal-int +pkg syscall (netbsd-arm64), const SYS_FSTATVFS1 = 358 +pkg syscall (netbsd-arm64), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-arm64), const SYS_FSYNC = 95 +pkg syscall (netbsd-arm64), const SYS_FSYNC ideal-int +pkg syscall (netbsd-arm64), const SYS_FSYNC_RANGE = 354 +pkg syscall (netbsd-arm64), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-arm64), const SYS_FTRUNCATE = 201 +pkg syscall (netbsd-arm64), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-arm64), const SYS_FUTIMENS = 472 +pkg syscall (netbsd-arm64), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-arm64), const SYS_FUTIMES = 423 +pkg syscall (netbsd-arm64), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-arm64), const SYS_GETCONTEXT = 307 +pkg syscall (netbsd-arm64), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-arm64), const SYS___GETCWD = 296 +pkg syscall (netbsd-arm64), const SYS___GETCWD ideal-int +pkg syscall (netbsd-arm64), const SYS_GETDENTS = 390 +pkg syscall (netbsd-arm64), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-arm64), const SYS_GETEGID = 43 +pkg syscall (netbsd-arm64), const SYS_GETEGID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETEUID = 25 +pkg syscall (netbsd-arm64), const SYS_GETEUID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETFH = 395 +pkg syscall (netbsd-arm64), const SYS_GETFH ideal-int +pkg syscall (netbsd-arm64), const SYS_GETGID = 47 +pkg syscall (netbsd-arm64), const SYS_GETGID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETGROUPS = 79 +pkg syscall (netbsd-arm64), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-arm64), const SYS_GETITIMER = 426 +pkg syscall (netbsd-arm64), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-arm64), const SYS___GETLOGIN = 49 +pkg syscall (netbsd-arm64), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPEERNAME = 31 +pkg syscall (netbsd-arm64), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPGID = 207 +pkg syscall (netbsd-arm64), const SYS_GETPGID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPGRP = 81 +pkg syscall (netbsd-arm64), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPID = 20 +pkg syscall (netbsd-arm64), const SYS_GETPID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPPID = 39 +pkg syscall (netbsd-arm64), const SYS_GETPPID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETPRIORITY = 100 +pkg syscall (netbsd-arm64), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-arm64), const SYS_GETRLIMIT = 194 +pkg syscall (netbsd-arm64), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-arm64), const SYS_GETRUSAGE = 445 +pkg syscall (netbsd-arm64), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-arm64), const SYS_GETSID = 286 +pkg syscall (netbsd-arm64), const SYS_GETSID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETSOCKNAME = 32 +pkg syscall (netbsd-arm64), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-arm64), const SYS_GETSOCKOPT = 118 +pkg syscall (netbsd-arm64), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-arm64), const SYS_GETTIMEOFDAY = 418 +pkg syscall (netbsd-arm64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm64), const SYS_GETUID = 24 +pkg syscall (netbsd-arm64), const SYS_GETUID ideal-int +pkg syscall (netbsd-arm64), const SYS_GETVFSSTAT = 356 +pkg syscall (netbsd-arm64), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-arm64), const SYS_GETXATTR = 378 +pkg syscall (netbsd-arm64), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_IOCTL = 54 +pkg syscall (netbsd-arm64), const SYS_IOCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_ISSETUGID = 305 +pkg syscall (netbsd-arm64), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-arm64), const SYS_KEVENT = 435 +pkg syscall (netbsd-arm64), const SYS_KEVENT ideal-int +pkg syscall (netbsd-arm64), const SYS_KILL = 37 +pkg syscall (netbsd-arm64), const SYS_KILL ideal-int +pkg syscall (netbsd-arm64), const SYS_KQUEUE1 = 455 +pkg syscall (netbsd-arm64), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-arm64), const SYS_KQUEUE = 344 +pkg syscall (netbsd-arm64), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-arm64), const SYS_KTRACE = 45 +pkg syscall (netbsd-arm64), const SYS_KTRACE ideal-int +pkg syscall (netbsd-arm64), const SYS_LCHFLAGS = 304 +pkg syscall (netbsd-arm64), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-arm64), const SYS_LCHMOD = 274 +pkg syscall (netbsd-arm64), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-arm64), const SYS_LCHOWN = 275 +pkg syscall (netbsd-arm64), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS_LGETXATTR = 379 +pkg syscall (netbsd-arm64), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_LINK = 9 +pkg syscall (netbsd-arm64), const SYS_LINKAT = 457 +pkg syscall (netbsd-arm64), const SYS_LINKAT ideal-int +pkg syscall (netbsd-arm64), const SYS_LINK ideal-int +pkg syscall (netbsd-arm64), const SYS_LISTEN = 106 +pkg syscall (netbsd-arm64), const SYS_LISTEN ideal-int +pkg syscall (netbsd-arm64), const SYS_LISTXATTR = 381 +pkg syscall (netbsd-arm64), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_LLISTXATTR = 382 +pkg syscall (netbsd-arm64), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_LREMOVEXATTR = 385 +pkg syscall (netbsd-arm64), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_LSEEK = 199 +pkg syscall (netbsd-arm64), const SYS_LSEEK ideal-int +pkg syscall (netbsd-arm64), const SYS_LSETXATTR = 376 +pkg syscall (netbsd-arm64), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_LSTAT = 441 +pkg syscall (netbsd-arm64), const SYS_LSTAT ideal-int +pkg syscall (netbsd-arm64), const SYS_LUTIMES = 424 +pkg syscall (netbsd-arm64), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_CONTINUE = 314 +pkg syscall (netbsd-arm64), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_CREATE = 309 +pkg syscall (netbsd-arm64), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_CTL = 325 +pkg syscall (netbsd-arm64), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_DETACH = 319 +pkg syscall (netbsd-arm64), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_EXIT = 310 +pkg syscall (netbsd-arm64), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_GETNAME = 324 +pkg syscall (netbsd-arm64), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_GETPRIVATE = 316 +pkg syscall (netbsd-arm64), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_KILL = 318 +pkg syscall (netbsd-arm64), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_PARK = 434 +pkg syscall (netbsd-arm64), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_SELF = 311 +pkg syscall (netbsd-arm64), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_SETNAME = 323 +pkg syscall (netbsd-arm64), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_SETPRIVATE = 317 +pkg syscall (netbsd-arm64), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_SUSPEND = 313 +pkg syscall (netbsd-arm64), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK = 321 +pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK_ALL = 322 +pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_WAIT = 312 +pkg syscall (netbsd-arm64), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-arm64), const SYS__LWP_WAKEUP = 315 +pkg syscall (netbsd-arm64), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-arm64), const SYS_MADVISE = 75 +pkg syscall (netbsd-arm64), const SYS_MADVISE ideal-int +pkg syscall (netbsd-arm64), const SYS_MINCORE = 78 +pkg syscall (netbsd-arm64), const SYS_MINCORE ideal-int +pkg syscall (netbsd-arm64), const SYS_MINHERIT = 273 +pkg syscall (netbsd-arm64), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-arm64), const SYS_MKDIR = 136 +pkg syscall (netbsd-arm64), const SYS_MKDIRAT = 461 +pkg syscall (netbsd-arm64), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-arm64), const SYS_MKDIR ideal-int +pkg syscall (netbsd-arm64), const SYS_MKFIFO = 132 +pkg syscall (netbsd-arm64), const SYS_MKFIFOAT = 459 +pkg syscall (netbsd-arm64), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-arm64), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-arm64), const SYS_MKNOD = 450 +pkg syscall (netbsd-arm64), const SYS_MKNODAT = 460 +pkg syscall (netbsd-arm64), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-arm64), const SYS_MKNOD ideal-int +pkg syscall (netbsd-arm64), const SYS_MLOCK = 203 +pkg syscall (netbsd-arm64), const SYS_MLOCKALL = 242 +pkg syscall (netbsd-arm64), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-arm64), const SYS_MLOCK ideal-int +pkg syscall (netbsd-arm64), const SYS_MMAP = 197 +pkg syscall (netbsd-arm64), const SYS_MMAP ideal-int +pkg syscall (netbsd-arm64), const SYS_MODCTL = 246 +pkg syscall (netbsd-arm64), const SYS_MODCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_MOUNT = 410 +pkg syscall (netbsd-arm64), const SYS_MOUNT ideal-int +pkg syscall (netbsd-arm64), const SYS_MPROTECT = 74 +pkg syscall (netbsd-arm64), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-arm64), const SYS_MREMAP = 411 +pkg syscall (netbsd-arm64), const SYS_MREMAP ideal-int +pkg syscall (netbsd-arm64), const SYS_MSGCTL = 444 +pkg syscall (netbsd-arm64), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_MSGGET = 225 +pkg syscall (netbsd-arm64), const SYS_MSGGET ideal-int +pkg syscall (netbsd-arm64), const SYS_MSGRCV = 227 +pkg syscall (netbsd-arm64), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-arm64), const SYS_MSGSND = 226 +pkg syscall (netbsd-arm64), const SYS_MSGSND ideal-int +pkg syscall (netbsd-arm64), const SYS_MUNLOCK = 204 +pkg syscall (netbsd-arm64), const SYS_MUNLOCKALL = 243 +pkg syscall (netbsd-arm64), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-arm64), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-arm64), const SYS_MUNMAP = 73 +pkg syscall (netbsd-arm64), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-arm64), const SYS_NANOSLEEP = 430 +pkg syscall (netbsd-arm64), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-arm64), const SYS_NTP_ADJTIME = 176 +pkg syscall (netbsd-arm64), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_NTP_GETTIME = 448 +pkg syscall (netbsd-arm64), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_OPEN = 5 +pkg syscall (netbsd-arm64), const SYS_OPENAT = 468 +pkg syscall (netbsd-arm64), const SYS_OPENAT ideal-int +pkg syscall (netbsd-arm64), const SYS_OPEN ideal-int +pkg syscall (netbsd-arm64), const SYS_PACCEPT = 456 +pkg syscall (netbsd-arm64), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-arm64), const SYS_PATHCONF = 191 +pkg syscall (netbsd-arm64), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-arm64), const SYS_PIPE2 = 453 +pkg syscall (netbsd-arm64), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-arm64), const SYS_PIPE = 42 +pkg syscall (netbsd-arm64), const SYS_PIPE ideal-int +pkg syscall (netbsd-arm64), const SYS_PMC_CONTROL = 342 +pkg syscall (netbsd-arm64), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-arm64), const SYS_PMC_GET_INFO = 341 +pkg syscall (netbsd-arm64), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-arm64), const SYS_POLL = 209 +pkg syscall (netbsd-arm64), const SYS_POLL ideal-int +pkg syscall (netbsd-arm64), const SYS_POLLTS = 437 +pkg syscall (netbsd-arm64), const SYS_POLLTS ideal-int +pkg syscall (netbsd-arm64), const SYS___POSIX_CHOWN = 283 +pkg syscall (netbsd-arm64), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS_POSIX_FADVISE = 416 +pkg syscall (netbsd-arm64), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-arm64), const SYS___POSIX_FCHOWN = 284 +pkg syscall (netbsd-arm64), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS___POSIX_LCHOWN = 285 +pkg syscall (netbsd-arm64), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-arm64), const SYS___POSIX_RENAME = 270 +pkg syscall (netbsd-arm64), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-arm64), const SYS_POSIX_SPAWN = 474 +pkg syscall (netbsd-arm64), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-arm64), const SYS_PREAD = 173 +pkg syscall (netbsd-arm64), const SYS_PREAD ideal-int +pkg syscall (netbsd-arm64), const SYS_PREADV = 289 +pkg syscall (netbsd-arm64), const SYS_PREADV ideal-int +pkg syscall (netbsd-arm64), const SYS_PROFIL = 44 +pkg syscall (netbsd-arm64), const SYS_PROFIL ideal-int +pkg syscall (netbsd-arm64), const SYS_PSELECT = 436 +pkg syscall (netbsd-arm64), const SYS_PSELECT ideal-int +pkg syscall (netbsd-arm64), const SYS_PSET_ASSIGN = 414 +pkg syscall (netbsd-arm64), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-arm64), const SYS__PSET_BIND = 415 +pkg syscall (netbsd-arm64), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-arm64), const SYS_PSET_CREATE = 412 +pkg syscall (netbsd-arm64), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-arm64), const SYS_PSET_DESTROY = 413 +pkg syscall (netbsd-arm64), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-arm64), const SYS_PTRACE = 26 +pkg syscall (netbsd-arm64), const SYS_PTRACE ideal-int +pkg syscall (netbsd-arm64), const SYS_PWRITE = 174 +pkg syscall (netbsd-arm64), const SYS_PWRITE ideal-int +pkg syscall (netbsd-arm64), const SYS_PWRITEV = 290 +pkg syscall (netbsd-arm64), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-arm64), const SYS___QUOTACTL = 473 +pkg syscall (netbsd-arm64), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-arm64), const SYS_RASCTL = 343 +pkg syscall (netbsd-arm64), const SYS_RASCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_READ = 3 +pkg syscall (netbsd-arm64), const SYS_READ ideal-int +pkg syscall (netbsd-arm64), const SYS_READLINK = 58 +pkg syscall (netbsd-arm64), const SYS_READLINKAT = 469 +pkg syscall (netbsd-arm64), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-arm64), const SYS_READLINK ideal-int +pkg syscall (netbsd-arm64), const SYS_READV = 120 +pkg syscall (netbsd-arm64), const SYS_READV ideal-int +pkg syscall (netbsd-arm64), const SYS_REBOOT = 208 +pkg syscall (netbsd-arm64), const SYS_REBOOT ideal-int +pkg syscall (netbsd-arm64), const SYS_RECVFROM = 29 +pkg syscall (netbsd-arm64), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-arm64), const SYS_RECVMMSG = 475 +pkg syscall (netbsd-arm64), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-arm64), const SYS_RECVMSG = 27 +pkg syscall (netbsd-arm64), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-arm64), const SYS_REMOVEXATTR = 384 +pkg syscall (netbsd-arm64), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_RENAME = 128 +pkg syscall (netbsd-arm64), const SYS_RENAMEAT = 458 +pkg syscall (netbsd-arm64), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-arm64), const SYS_RENAME ideal-int +pkg syscall (netbsd-arm64), const SYS_REVOKE = 56 +pkg syscall (netbsd-arm64), const SYS_REVOKE ideal-int +pkg syscall (netbsd-arm64), const SYS_RMDIR = 137 +pkg syscall (netbsd-arm64), const SYS_RMDIR ideal-int +pkg syscall (netbsd-arm64), const SYS_SBRK = 69 +pkg syscall (netbsd-arm64), const SYS_SBRK ideal-int +pkg syscall (netbsd-arm64), const SYS__SCHED_GETAFFINITY = 349 +pkg syscall (netbsd-arm64), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-arm64), const SYS__SCHED_GETPARAM = 347 +pkg syscall (netbsd-arm64), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-arm64), const SYS__SCHED_SETAFFINITY = 348 +pkg syscall (netbsd-arm64), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-arm64), const SYS__SCHED_SETPARAM = 346 +pkg syscall (netbsd-arm64), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-arm64), const SYS_SCHED_YIELD = 350 +pkg syscall (netbsd-arm64), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-arm64), const SYS_SELECT = 417 +pkg syscall (netbsd-arm64), const SYS_SELECT ideal-int +pkg syscall (netbsd-arm64), const SYS_SEMCONFIG = 223 +pkg syscall (netbsd-arm64), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-arm64), const SYS___SEMCTL = 442 +pkg syscall (netbsd-arm64), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_SEMGET = 221 +pkg syscall (netbsd-arm64), const SYS_SEMGET ideal-int +pkg syscall (netbsd-arm64), const SYS_SEMOP = 222 +pkg syscall (netbsd-arm64), const SYS_SEMOP ideal-int +pkg syscall (netbsd-arm64), const SYS_SENDMMSG = 476 +pkg syscall (netbsd-arm64), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-arm64), const SYS_SENDMSG = 28 +pkg syscall (netbsd-arm64), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-arm64), const SYS_SENDTO = 133 +pkg syscall (netbsd-arm64), const SYS_SENDTO ideal-int +pkg syscall (netbsd-arm64), const SYS_SETCONTEXT = 308 +pkg syscall (netbsd-arm64), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-arm64), const SYS_SETEGID = 182 +pkg syscall (netbsd-arm64), const SYS_SETEGID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETEUID = 183 +pkg syscall (netbsd-arm64), const SYS_SETEUID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETGID = 181 +pkg syscall (netbsd-arm64), const SYS_SETGID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETGROUPS = 80 +pkg syscall (netbsd-arm64), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-arm64), const SYS_SETITIMER = 425 +pkg syscall (netbsd-arm64), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-arm64), const SYS___SETLOGIN = 50 +pkg syscall (netbsd-arm64), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-arm64), const SYS_SETPGID = 82 +pkg syscall (netbsd-arm64), const SYS_SETPGID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETPRIORITY = 96 +pkg syscall (netbsd-arm64), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-arm64), const SYS_SETREGID = 127 +pkg syscall (netbsd-arm64), const SYS_SETREGID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETREUID = 126 +pkg syscall (netbsd-arm64), const SYS_SETREUID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETRLIMIT = 195 +pkg syscall (netbsd-arm64), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-arm64), const SYS_SETSID = 147 +pkg syscall (netbsd-arm64), const SYS_SETSID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETSOCKOPT = 105 +pkg syscall (netbsd-arm64), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-arm64), const SYS_SETTIMEOFDAY = 419 +pkg syscall (netbsd-arm64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm64), const SYS_SETUID = 23 +pkg syscall (netbsd-arm64), const SYS_SETUID ideal-int +pkg syscall (netbsd-arm64), const SYS_SETXATTR = 375 +pkg syscall (netbsd-arm64), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-arm64), const SYS_SHMAT = 228 +pkg syscall (netbsd-arm64), const SYS_SHMAT ideal-int +pkg syscall (netbsd-arm64), const SYS_SHMCTL = 443 +pkg syscall (netbsd-arm64), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_SHMDT = 230 +pkg syscall (netbsd-arm64), const SYS_SHMDT ideal-int +pkg syscall (netbsd-arm64), const SYS_SHMGET = 231 +pkg syscall (netbsd-arm64), const SYS_SHMGET ideal-int +pkg syscall (netbsd-arm64), const SYS_SHUTDOWN = 134 +pkg syscall (netbsd-arm64), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-arm64), const SYS___SIGACTION_SIGTRAMP = 340 +pkg syscall (netbsd-arm64), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-arm64), const SYS_SIGQUEUEINFO = 245 +pkg syscall (netbsd-arm64), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-arm64), const SYS___SIGTIMEDWAIT = 431 +pkg syscall (netbsd-arm64), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-arm64), const SYS_SOCKET = 394 +pkg syscall (netbsd-arm64), const SYS_SOCKET ideal-int +pkg syscall (netbsd-arm64), const SYS_SOCKETPAIR = 135 +pkg syscall (netbsd-arm64), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-arm64), const SYS_SSTK = 70 +pkg syscall (netbsd-arm64), const SYS_SSTK ideal-int +pkg syscall (netbsd-arm64), const SYS_STAT = 439 +pkg syscall (netbsd-arm64), const SYS_STAT ideal-int +pkg syscall (netbsd-arm64), const SYS_STATVFS1 = 357 +pkg syscall (netbsd-arm64), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-arm64), const SYS_SWAPCTL = 271 +pkg syscall (netbsd-arm64), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_SYMLINK = 57 +pkg syscall (netbsd-arm64), const SYS_SYMLINKAT = 470 +pkg syscall (netbsd-arm64), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-arm64), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-arm64), const SYS_SYNC = 36 +pkg syscall (netbsd-arm64), const SYS_SYNC ideal-int +pkg syscall (netbsd-arm64), const SYS_SYSARCH = 165 +pkg syscall (netbsd-arm64), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-arm64), const SYS___SYSCTL = 202 +pkg syscall (netbsd-arm64), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-arm64), const SYS_TIMER_CREATE = 235 +pkg syscall (netbsd-arm64), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-arm64), const SYS_TIMER_DELETE = 236 +pkg syscall (netbsd-arm64), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-arm64), const SYS_TIMER_GETOVERRUN = 239 +pkg syscall (netbsd-arm64), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-arm64), const SYS_TIMER_GETTIME = 447 +pkg syscall (netbsd-arm64), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_TIMER_SETTIME = 446 +pkg syscall (netbsd-arm64), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-arm64), const SYS_TRUNCATE = 200 +pkg syscall (netbsd-arm64), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-arm64), const SYS_UMASK = 60 +pkg syscall (netbsd-arm64), const SYS_UMASK ideal-int +pkg syscall (netbsd-arm64), const SYS_UNDELETE = 205 +pkg syscall (netbsd-arm64), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-arm64), const SYS_UNLINK = 10 +pkg syscall (netbsd-arm64), const SYS_UNLINKAT = 471 +pkg syscall (netbsd-arm64), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-arm64), const SYS_UNLINK ideal-int +pkg syscall (netbsd-arm64), const SYS_UNMOUNT = 22 +pkg syscall (netbsd-arm64), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-arm64), const SYS_UTIMENSAT = 467 +pkg syscall (netbsd-arm64), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-arm64), const SYS_UTIMES = 420 +pkg syscall (netbsd-arm64), const SYS_UTIMES ideal-int +pkg syscall (netbsd-arm64), const SYS_UTRACE = 306 +pkg syscall (netbsd-arm64), const SYS_UTRACE ideal-int +pkg syscall (netbsd-arm64), const SYS_UUIDGEN = 355 +pkg syscall (netbsd-arm64), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-arm64), const SYS_VADVISE = 72 +pkg syscall (netbsd-arm64), const SYS_VADVISE ideal-int +pkg syscall (netbsd-arm64), const SYS_VFORK = 66 +pkg syscall (netbsd-arm64), const SYS_VFORK ideal-int +pkg syscall (netbsd-arm64), const SYS_WAIT4 = 449 +pkg syscall (netbsd-arm64), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-arm64), const SYS_WRITE = 4 +pkg syscall (netbsd-arm64), const SYS_WRITE ideal-int +pkg syscall (netbsd-arm64), const SYS_WRITEV = 121 +pkg syscall (netbsd-arm64), const SYS_WRITEV ideal-int +pkg syscall (netbsd-arm64), const TCIFLUSH = 1 +pkg syscall (netbsd-arm64), const TCIFLUSH ideal-int +pkg syscall (netbsd-arm64), const TCIOFLUSH = 3 +pkg syscall (netbsd-arm64), const TCIOFLUSH ideal-int +pkg syscall (netbsd-arm64), const TCOFLUSH = 2 +pkg syscall (netbsd-arm64), const TCOFLUSH ideal-int +pkg syscall (netbsd-arm64), const TCP_CONGCTL = 32 +pkg syscall (netbsd-arm64), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-arm64), const TCP_KEEPCNT = 6 +pkg syscall (netbsd-arm64), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-arm64), const TCP_KEEPIDLE = 3 +pkg syscall (netbsd-arm64), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-arm64), const TCP_KEEPINIT = 7 +pkg syscall (netbsd-arm64), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-arm64), const TCP_KEEPINTVL = 5 +pkg syscall (netbsd-arm64), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-arm64), const TCP_MAXBURST = 4 +pkg syscall (netbsd-arm64), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-arm64), const TCP_MAXSEG = 2 +pkg syscall (netbsd-arm64), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-arm64), const TCP_MAXWIN = 65535 +pkg syscall (netbsd-arm64), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-arm64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (netbsd-arm64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-arm64), const TCP_MD5SIG = 16 +pkg syscall (netbsd-arm64), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-arm64), const TCP_MINMSS = 216 +pkg syscall (netbsd-arm64), const TCP_MINMSS ideal-int +pkg syscall (netbsd-arm64), const TCP_MSS = 536 +pkg syscall (netbsd-arm64), const TCP_MSS ideal-int +pkg syscall (netbsd-arm64), const TCSAFLUSH = 2 +pkg syscall (netbsd-arm64), const TCSAFLUSH ideal-int +pkg syscall (netbsd-arm64), const TIOCCBRK = 536900730 +pkg syscall (netbsd-arm64), const TIOCCBRK ideal-int +pkg syscall (netbsd-arm64), const TIOCCDTR = 536900728 +pkg syscall (netbsd-arm64), const TIOCCDTR ideal-int +pkg syscall (netbsd-arm64), const TIOCCONS = 2147775586 +pkg syscall (netbsd-arm64), const TIOCCONS ideal-int +pkg syscall (netbsd-arm64), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (netbsd-arm64), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-arm64), const TIOCDRAIN = 536900702 +pkg syscall (netbsd-arm64), const TIOCDRAIN ideal-int +pkg syscall (netbsd-arm64), const TIOCEXCL = 536900621 +pkg syscall (netbsd-arm64), const TIOCEXCL ideal-int +pkg syscall (netbsd-arm64), const TIOCEXT = 2147775584 +pkg syscall (netbsd-arm64), const TIOCEXT ideal-int +pkg syscall (netbsd-arm64), const TIOCFLAG_CDTRCTS = 16 +pkg syscall (netbsd-arm64), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-arm64), const TIOCFLAG_CLOCAL = 2 +pkg syscall (netbsd-arm64), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-arm64), const TIOCFLAG_CRTSCTS = 4 +pkg syscall (netbsd-arm64), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-arm64), const TIOCFLAG_MDMBUF = 8 +pkg syscall (netbsd-arm64), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-arm64), const TIOCFLAG_SOFTCAR = 1 +pkg syscall (netbsd-arm64), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-arm64), const TIOCFLUSH = 2147775504 +pkg syscall (netbsd-arm64), const TIOCFLUSH ideal-int +pkg syscall (netbsd-arm64), const TIOCGETA = 1076655123 +pkg syscall (netbsd-arm64), const TIOCGETA ideal-int +pkg syscall (netbsd-arm64), const TIOCGETD = 1074033690 +pkg syscall (netbsd-arm64), const TIOCGETD ideal-int +pkg syscall (netbsd-arm64), const TIOCGFLAGS = 1074033757 +pkg syscall (netbsd-arm64), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-arm64), const TIOCGLINED = 1075868738 +pkg syscall (netbsd-arm64), const TIOCGLINED ideal-int +pkg syscall (netbsd-arm64), const TIOCGPGRP = 1074033783 +pkg syscall (netbsd-arm64), const TIOCGPGRP ideal-int +pkg syscall (netbsd-arm64), const TIOCGQSIZE = 1074033793 +pkg syscall (netbsd-arm64), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-arm64), const TIOCGRANTPT = 536900679 +pkg syscall (netbsd-arm64), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-arm64), const TIOCGSID = 1074033763 +pkg syscall (netbsd-arm64), const TIOCGSID ideal-int +pkg syscall (netbsd-arm64), const TIOCGSIZE = 1074295912 +pkg syscall (netbsd-arm64), const TIOCGSIZE ideal-int +pkg syscall (netbsd-arm64), const TIOCGWINSZ = 1074295912 +pkg syscall (netbsd-arm64), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-arm64), const TIOCMBIC = 2147775595 +pkg syscall (netbsd-arm64), const TIOCMBIC ideal-int +pkg syscall (netbsd-arm64), const TIOCMBIS = 2147775596 +pkg syscall (netbsd-arm64), const TIOCMBIS ideal-int +pkg syscall (netbsd-arm64), const TIOCM_CAR = 64 +pkg syscall (netbsd-arm64), const TIOCM_CAR ideal-int +pkg syscall (netbsd-arm64), const TIOCM_CD = 64 +pkg syscall (netbsd-arm64), const TIOCM_CD ideal-int +pkg syscall (netbsd-arm64), const TIOCM_CTS = 32 +pkg syscall (netbsd-arm64), const TIOCM_CTS ideal-int +pkg syscall (netbsd-arm64), const TIOCM_DSR = 256 +pkg syscall (netbsd-arm64), const TIOCM_DSR ideal-int +pkg syscall (netbsd-arm64), const TIOCM_DTR = 2 +pkg syscall (netbsd-arm64), const TIOCM_DTR ideal-int +pkg syscall (netbsd-arm64), const TIOCMGET = 1074033770 +pkg syscall (netbsd-arm64), const TIOCMGET ideal-int +pkg syscall (netbsd-arm64), const TIOCM_LE = 1 +pkg syscall (netbsd-arm64), const TIOCM_LE ideal-int +pkg syscall (netbsd-arm64), const TIOCM_RI = 128 +pkg syscall (netbsd-arm64), const TIOCM_RI ideal-int +pkg syscall (netbsd-arm64), const TIOCM_RNG = 128 +pkg syscall (netbsd-arm64), const TIOCM_RNG ideal-int +pkg syscall (netbsd-arm64), const TIOCM_RTS = 4 +pkg syscall (netbsd-arm64), const TIOCM_RTS ideal-int +pkg syscall (netbsd-arm64), const TIOCMSET = 2147775597 +pkg syscall (netbsd-arm64), const TIOCMSET ideal-int +pkg syscall (netbsd-arm64), const TIOCM_SR = 16 +pkg syscall (netbsd-arm64), const TIOCM_SR ideal-int +pkg syscall (netbsd-arm64), const TIOCM_ST = 8 +pkg syscall (netbsd-arm64), const TIOCM_ST ideal-int +pkg syscall (netbsd-arm64), const TIOCNOTTY = 536900721 +pkg syscall (netbsd-arm64), const TIOCNOTTY ideal-int +pkg syscall (netbsd-arm64), const TIOCNXCL = 536900622 +pkg syscall (netbsd-arm64), const TIOCNXCL ideal-int +pkg syscall (netbsd-arm64), const TIOCOUTQ = 1074033779 +pkg syscall (netbsd-arm64), const TIOCOUTQ ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT = 2147775600 +pkg syscall (netbsd-arm64), const TIOCPKT_DATA = 0 +pkg syscall (netbsd-arm64), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_DOSTOP = 32 +pkg syscall (netbsd-arm64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (netbsd-arm64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_IOCTL = 64 +pkg syscall (netbsd-arm64), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_NOSTOP = 16 +pkg syscall (netbsd-arm64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_START = 8 +pkg syscall (netbsd-arm64), const TIOCPKT_START ideal-int +pkg syscall (netbsd-arm64), const TIOCPKT_STOP = 4 +pkg syscall (netbsd-arm64), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-arm64), const TIOCPTMGET = 1076393030 +pkg syscall (netbsd-arm64), const TIOCPTMGET ideal-int +pkg syscall (netbsd-arm64), const TIOCPTSNAME = 1076393032 +pkg syscall (netbsd-arm64), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-arm64), const TIOCRCVFRAME = 2148037701 +pkg syscall (netbsd-arm64), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-arm64), const TIOCREMOTE = 2147775593 +pkg syscall (netbsd-arm64), const TIOCREMOTE ideal-int +pkg syscall (netbsd-arm64), const TIOCSBRK = 536900731 +pkg syscall (netbsd-arm64), const TIOCSBRK ideal-int +pkg syscall (netbsd-arm64), const TIOCSCTTY = 536900705 +pkg syscall (netbsd-arm64), const TIOCSCTTY ideal-int +pkg syscall (netbsd-arm64), const TIOCSDTR = 536900729 +pkg syscall (netbsd-arm64), const TIOCSDTR ideal-int +pkg syscall (netbsd-arm64), const TIOCSETA = 2150396948 +pkg syscall (netbsd-arm64), const TIOCSETAF = 2150396950 +pkg syscall (netbsd-arm64), const TIOCSETAF ideal-int +pkg syscall (netbsd-arm64), const TIOCSETA ideal-int +pkg syscall (netbsd-arm64), const TIOCSETAW = 2150396949 +pkg syscall (netbsd-arm64), const TIOCSETAW ideal-int +pkg syscall (netbsd-arm64), const TIOCSETD = 2147775515 +pkg syscall (netbsd-arm64), const TIOCSETD ideal-int +pkg syscall (netbsd-arm64), const TIOCSFLAGS = 2147775580 +pkg syscall (netbsd-arm64), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-arm64), const TIOCSIG = 536900703 +pkg syscall (netbsd-arm64), const TIOCSIG ideal-int +pkg syscall (netbsd-arm64), const TIOCSLINED = 2149610563 +pkg syscall (netbsd-arm64), const TIOCSLINED ideal-int +pkg syscall (netbsd-arm64), const TIOCSPGRP = 2147775606 +pkg syscall (netbsd-arm64), const TIOCSPGRP ideal-int +pkg syscall (netbsd-arm64), const TIOCSQSIZE = 2147775616 +pkg syscall (netbsd-arm64), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-arm64), const TIOCSSIZE = 2148037735 +pkg syscall (netbsd-arm64), const TIOCSSIZE ideal-int +pkg syscall (netbsd-arm64), const TIOCSTART = 536900718 +pkg syscall (netbsd-arm64), const TIOCSTART ideal-int +pkg syscall (netbsd-arm64), const TIOCSTAT = 2147775589 +pkg syscall (netbsd-arm64), const TIOCSTAT ideal-int +pkg syscall (netbsd-arm64), const TIOCSTI = 2147578994 +pkg syscall (netbsd-arm64), const TIOCSTI ideal-int +pkg syscall (netbsd-arm64), const TIOCSTOP = 536900719 +pkg syscall (netbsd-arm64), const TIOCSTOP ideal-int +pkg syscall (netbsd-arm64), const TIOCSWINSZ = 2148037735 +pkg syscall (netbsd-arm64), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-arm64), const TIOCUCNTL = 2147775590 +pkg syscall (netbsd-arm64), const TIOCUCNTL ideal-int +pkg syscall (netbsd-arm64), const TIOCXMTFRAME = 2148037700 +pkg syscall (netbsd-arm64), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-arm64), const TOSTOP = 4194304 +pkg syscall (netbsd-arm64), const TOSTOP ideal-int +pkg syscall (netbsd-arm64), const VDISCARD = 15 +pkg syscall (netbsd-arm64), const VDISCARD ideal-int +pkg syscall (netbsd-arm64), const VDSUSP = 11 +pkg syscall (netbsd-arm64), const VDSUSP ideal-int +pkg syscall (netbsd-arm64), const VEOF = 0 +pkg syscall (netbsd-arm64), const VEOF ideal-int +pkg syscall (netbsd-arm64), const VEOL = 1 +pkg syscall (netbsd-arm64), const VEOL2 = 2 +pkg syscall (netbsd-arm64), const VEOL2 ideal-int +pkg syscall (netbsd-arm64), const VEOL ideal-int +pkg syscall (netbsd-arm64), const VERASE = 3 +pkg syscall (netbsd-arm64), const VERASE ideal-int +pkg syscall (netbsd-arm64), const VINTR = 8 +pkg syscall (netbsd-arm64), const VINTR ideal-int +pkg syscall (netbsd-arm64), const VKILL = 5 +pkg syscall (netbsd-arm64), const VKILL ideal-int +pkg syscall (netbsd-arm64), const VLNEXT = 14 +pkg syscall (netbsd-arm64), const VLNEXT ideal-int +pkg syscall (netbsd-arm64), const VMIN = 16 +pkg syscall (netbsd-arm64), const VMIN ideal-int +pkg syscall (netbsd-arm64), const VQUIT = 9 +pkg syscall (netbsd-arm64), const VQUIT ideal-int +pkg syscall (netbsd-arm64), const VREPRINT = 6 +pkg syscall (netbsd-arm64), const VREPRINT ideal-int +pkg syscall (netbsd-arm64), const VSTART = 12 +pkg syscall (netbsd-arm64), const VSTART ideal-int +pkg syscall (netbsd-arm64), const VSTATUS = 18 +pkg syscall (netbsd-arm64), const VSTATUS ideal-int +pkg syscall (netbsd-arm64), const VSTOP = 13 +pkg syscall (netbsd-arm64), const VSTOP ideal-int +pkg syscall (netbsd-arm64), const VSUSP = 10 +pkg syscall (netbsd-arm64), const VSUSP ideal-int +pkg syscall (netbsd-arm64), const VTIME = 17 +pkg syscall (netbsd-arm64), const VTIME ideal-int +pkg syscall (netbsd-arm64), const VWERASE = 4 +pkg syscall (netbsd-arm64), const VWERASE ideal-int +pkg syscall (netbsd-arm64), const WALL = 8 +pkg syscall (netbsd-arm64), const WALL ideal-int +pkg syscall (netbsd-arm64), const WALLSIG = 8 +pkg syscall (netbsd-arm64), const WALLSIG ideal-int +pkg syscall (netbsd-arm64), const WALTSIG = 4 +pkg syscall (netbsd-arm64), const WALTSIG ideal-int +pkg syscall (netbsd-arm64), const WCLONE = 4 +pkg syscall (netbsd-arm64), const WCLONE ideal-int +pkg syscall (netbsd-arm64), const WCOREFLAG = 128 +pkg syscall (netbsd-arm64), const WCOREFLAG ideal-int +pkg syscall (netbsd-arm64), const WNOHANG = 1 +pkg syscall (netbsd-arm64), const WNOHANG ideal-int +pkg syscall (netbsd-arm64), const WNOWAIT = 65536 +pkg syscall (netbsd-arm64), const WNOWAIT ideal-int +pkg syscall (netbsd-arm64), const WNOZOMBIE = 131072 +pkg syscall (netbsd-arm64), const WNOZOMBIE ideal-int +pkg syscall (netbsd-arm64), const WOPTSCHECKED = 262144 +pkg syscall (netbsd-arm64), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-arm64), const WSTOPPED = 127 +pkg syscall (netbsd-arm64), const WSTOPPED ideal-int +pkg syscall (netbsd-arm64), const WUNTRACED = 2 +pkg syscall (netbsd-arm64), const WUNTRACED ideal-int +pkg syscall (netbsd-arm64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64), func Access(string, uint32) error +pkg syscall (netbsd-arm64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-arm64), func Bind(int, Sockaddr) error +pkg syscall (netbsd-arm64), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-arm64), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-arm64), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-arm64), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-arm64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-arm64), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-arm64), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-arm64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-arm64), func CheckBpfVersion(int) error +pkg syscall (netbsd-arm64), func Chflags(string, int) error +pkg syscall (netbsd-arm64), func Chroot(string) error +pkg syscall (netbsd-arm64), func Close(int) error +pkg syscall (netbsd-arm64), func CloseOnExec(int) +pkg syscall (netbsd-arm64), func CmsgLen(int) int +pkg syscall (netbsd-arm64), func CmsgSpace(int) int +pkg syscall (netbsd-arm64), func Connect(int, Sockaddr) error +pkg syscall (netbsd-arm64), func Dup2(int, int) error +pkg syscall (netbsd-arm64), func Dup(int) (int, error) +pkg syscall (netbsd-arm64), func Fchdir(int) error +pkg syscall (netbsd-arm64), func Fchflags(int, int) error +pkg syscall (netbsd-arm64), func Fchmod(int, uint32) error +pkg syscall (netbsd-arm64), func Fchown(int, int, int) error +pkg syscall (netbsd-arm64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-arm64), func Flock(int, int) error +pkg syscall (netbsd-arm64), func FlushBpf(int) error +pkg syscall (netbsd-arm64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-arm64), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-arm64), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-arm64), func Fsync(int) error +pkg syscall (netbsd-arm64), func Ftruncate(int, int64) error +pkg syscall (netbsd-arm64), func Futimes(int, []Timeval) error +pkg syscall (netbsd-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-arm64), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-arm64), func Getpgid(int) (int, error) +pkg syscall (netbsd-arm64), func Getpgrp() int +pkg syscall (netbsd-arm64), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-arm64), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm64), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-arm64), func Getsid(int) (int, error) +pkg syscall (netbsd-arm64), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-arm64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-arm64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-arm64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-arm64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-arm64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-arm64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-arm64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-arm64), func Issetugid() bool +pkg syscall (netbsd-arm64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-arm64), func Kill(int, Signal) error +pkg syscall (netbsd-arm64), func Kqueue() (int, error) +pkg syscall (netbsd-arm64), func Listen(int, int) error +pkg syscall (netbsd-arm64), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-arm64), func Mkfifo(string, uint32) error +pkg syscall (netbsd-arm64), func Mknod(string, uint32, int) error +pkg syscall (netbsd-arm64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-arm64), func Munmap([]uint8) error +pkg syscall (netbsd-arm64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-arm64), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-arm64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-arm64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-arm64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-arm64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-arm64), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-arm64), func Pipe2([]int, int) error +pkg syscall (netbsd-arm64), func Pipe([]int) error +pkg syscall (netbsd-arm64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-arm64), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-arm64), func Revoke(string) error +pkg syscall (netbsd-arm64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-arm64), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-arm64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-arm64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-arm64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-arm64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-arm64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-arm64), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-arm64), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-arm64), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-arm64), func SetBpfInterface(int, string) error +pkg syscall (netbsd-arm64), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-arm64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-arm64), func Setegid(int) error +pkg syscall (netbsd-arm64), func Seteuid(int) error +pkg syscall (netbsd-arm64), func Setgid(int) error +pkg syscall (netbsd-arm64), func Setgroups([]int) error +pkg syscall (netbsd-arm64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-arm64), func SetNonblock(int, bool) error +pkg syscall (netbsd-arm64), func Setpgid(int, int) error +pkg syscall (netbsd-arm64), func Setpriority(int, int, int) error +pkg syscall (netbsd-arm64), func Setregid(int, int) error +pkg syscall (netbsd-arm64), func Setreuid(int, int) error +pkg syscall (netbsd-arm64), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm64), func Setsid() (int, error) +pkg syscall (netbsd-arm64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-arm64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-arm64), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-arm64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-arm64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-arm64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-arm64), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-arm64), func Settimeofday(*Timeval) error +pkg syscall (netbsd-arm64), func Setuid(int) error +pkg syscall (netbsd-arm64), func Shutdown(int, int) error +pkg syscall (netbsd-arm64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-arm64), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-arm64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-arm64), func Stat(string, *Stat_t) error +pkg syscall (netbsd-arm64), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-arm64), func Sync() error +pkg syscall (netbsd-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm64), func Sysctl(string) (string, error) +pkg syscall (netbsd-arm64), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-arm64), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-arm64), func Truncate(string, int64) error +pkg syscall (netbsd-arm64), func Umask(int) int +pkg syscall (netbsd-arm64), func UnixRights(...int) []uint8 +pkg syscall (netbsd-arm64), func Unmount(string, int) error +pkg syscall (netbsd-arm64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-arm64), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-arm64), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-arm64), method (*Iovec) SetLen(int) +pkg syscall (netbsd-arm64), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-arm64), type BpfHdr struct +pkg syscall (netbsd-arm64), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-arm64), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-arm64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-arm64), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm64), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-arm64), type BpfInsn struct +pkg syscall (netbsd-arm64), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-arm64), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-arm64), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-arm64), type BpfInsn struct, K uint32 +pkg syscall (netbsd-arm64), type BpfProgram struct +pkg syscall (netbsd-arm64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-arm64), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64), type BpfStat struct +pkg syscall (netbsd-arm64), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-arm64), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-arm64), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-arm64), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-arm64), type BpfTimeval struct +pkg syscall (netbsd-arm64), type BpfTimeval struct, Sec int64 +pkg syscall (netbsd-arm64), type BpfTimeval struct, Usec int64 +pkg syscall (netbsd-arm64), type BpfVersion struct +pkg syscall (netbsd-arm64), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-arm64), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-arm64), type Cmsghdr struct +pkg syscall (netbsd-arm64), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-arm64), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-arm64), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-arm64), type Credential struct +pkg syscall (netbsd-arm64), type Credential struct, Gid uint32 +pkg syscall (netbsd-arm64), type Credential struct, Groups []uint32 +pkg syscall (netbsd-arm64), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-arm64), type Credential struct, Uid uint32 +pkg syscall (netbsd-arm64), type Dirent struct +pkg syscall (netbsd-arm64), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-arm64), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-arm64), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-arm64), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-arm64), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-arm64), type Dirent struct, Type uint8 +pkg syscall (netbsd-arm64), type FdSet struct +pkg syscall (netbsd-arm64), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-arm64), type Flock_t struct +pkg syscall (netbsd-arm64), type Flock_t struct, Len int64 +pkg syscall (netbsd-arm64), type Flock_t struct, Pid int32 +pkg syscall (netbsd-arm64), type Flock_t struct, Start int64 +pkg syscall (netbsd-arm64), type Flock_t struct, Type int16 +pkg syscall (netbsd-arm64), type Flock_t struct, Whence int16 +pkg syscall (netbsd-arm64), type Fsid struct +pkg syscall (netbsd-arm64), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-arm64), type ICMPv6Filter struct +pkg syscall (netbsd-arm64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-arm64), type IfaMsghdr struct +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-arm64), type IfData struct +pkg syscall (netbsd-arm64), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-arm64), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-arm64), type IfData struct, Collisions uint64 +pkg syscall (netbsd-arm64), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-arm64), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-arm64), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-arm64), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-arm64), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-arm64), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-arm64), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-arm64), type IfData struct, Link_state int32 +pkg syscall (netbsd-arm64), type IfData struct, Metric uint64 +pkg syscall (netbsd-arm64), type IfData struct, Mtu uint64 +pkg syscall (netbsd-arm64), type IfData struct, Noproto uint64 +pkg syscall (netbsd-arm64), type IfData struct, Obytes uint64 +pkg syscall (netbsd-arm64), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-arm64), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-arm64), type IfData struct, Opackets uint64 +pkg syscall (netbsd-arm64), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-arm64), type IfData struct, Type uint8 +pkg syscall (netbsd-arm64), type IfMsghdr struct +pkg syscall (netbsd-arm64), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-arm64), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64), type Inet6Pktinfo struct +pkg syscall (netbsd-arm64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-arm64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct +pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-arm64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-arm64), type InterfaceMessage struct +pkg syscall (netbsd-arm64), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-arm64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-arm64), type Iovec struct +pkg syscall (netbsd-arm64), type Iovec struct, Base *uint8 +pkg syscall (netbsd-arm64), type Iovec struct, Len uint64 +pkg syscall (netbsd-arm64), type IPv6MTUInfo struct +pkg syscall (netbsd-arm64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-arm64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-arm64), type Kevent_t struct +pkg syscall (netbsd-arm64), type Kevent_t struct, Data int64 +pkg syscall (netbsd-arm64), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-arm64), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-arm64), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-arm64), type Kevent_t struct, Ident uint64 +pkg syscall (netbsd-arm64), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64), type Kevent_t struct, Udata int64 +pkg syscall (netbsd-arm64), type Mclpool [0]uint8 +pkg syscall (netbsd-arm64), type Msghdr struct +pkg syscall (netbsd-arm64), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-arm64), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-arm64), type Msghdr struct, Flags int32 +pkg syscall (netbsd-arm64), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-arm64), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-arm64), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-arm64), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-arm64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-arm64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-arm64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-arm64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-arm64), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-arm64), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-arm64), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-arm64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-arm64), type Rlimit struct +pkg syscall (netbsd-arm64), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-arm64), type Rlimit struct, Max uint64 +pkg syscall (netbsd-arm64), type RouteMessage struct +pkg syscall (netbsd-arm64), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-arm64), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-arm64), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-arm64), type RtMetrics struct +pkg syscall (netbsd-arm64), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-arm64), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-arm64), type RtMsghdr struct +pkg syscall (netbsd-arm64), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-arm64), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-arm64), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-arm64), type Rusage struct, Idrss int64 +pkg syscall (netbsd-arm64), type Rusage struct, Inblock int64 +pkg syscall (netbsd-arm64), type Rusage struct, Isrss int64 +pkg syscall (netbsd-arm64), type Rusage struct, Ixrss int64 +pkg syscall (netbsd-arm64), type Rusage struct, Majflt int64 +pkg syscall (netbsd-arm64), type Rusage struct, Maxrss int64 +pkg syscall (netbsd-arm64), type Rusage struct, Minflt int64 +pkg syscall (netbsd-arm64), type Rusage struct, Msgrcv int64 +pkg syscall (netbsd-arm64), type Rusage struct, Msgsnd int64 +pkg syscall (netbsd-arm64), type Rusage struct, Nivcsw int64 +pkg syscall (netbsd-arm64), type Rusage struct, Nsignals int64 +pkg syscall (netbsd-arm64), type Rusage struct, Nswap int64 +pkg syscall (netbsd-arm64), type Rusage struct, Nvcsw int64 +pkg syscall (netbsd-arm64), type Rusage struct, Oublock int64 +pkg syscall (netbsd-arm64), type Rusage struct, Stime Timeval +pkg syscall (netbsd-arm64), type Rusage struct, Utime Timeval +pkg syscall (netbsd-arm64), type SockaddrDatalink struct +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm64), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm64), type SocketControlMessage struct +pkg syscall (netbsd-arm64), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-arm64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-arm64), type Statfs_t [0]uint8 +pkg syscall (netbsd-arm64), type Stat_t struct +pkg syscall (netbsd-arm64), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-arm64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-arm64), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-arm64), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-arm64), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-arm64), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-arm64), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-arm64), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm64), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-arm64), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-arm64), type Stat_t struct, Size int64 +pkg syscall (netbsd-arm64), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-arm64), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-arm64), type Sysctlnode struct +pkg syscall (netbsd-arm64), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-arm64), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-arm64), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-arm64), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-arm64), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-arm64), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-arm64), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-arm64), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-arm64), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-arm64), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-arm64), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-arm64), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-arm64), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-arm64), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-arm64), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-arm64), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-arm64), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-arm64), type Termios struct +pkg syscall (netbsd-arm64), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-arm64), type Termios struct, Cflag uint32 +pkg syscall (netbsd-arm64), type Termios struct, Iflag uint32 +pkg syscall (netbsd-arm64), type Termios struct, Ispeed int32 +pkg syscall (netbsd-arm64), type Termios struct, Lflag uint32 +pkg syscall (netbsd-arm64), type Termios struct, Oflag uint32 +pkg syscall (netbsd-arm64), type Termios struct, Ospeed int32 +pkg syscall (netbsd-arm64), type Timespec struct, Nsec int64 +pkg syscall (netbsd-arm64), type Timespec struct, Sec int64 +pkg syscall (netbsd-arm64), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm64), type Timeval struct, Sec int64 +pkg syscall (netbsd-arm64), type Timeval struct, Usec int32 +pkg syscall (netbsd-arm64), type WaitStatus uint32 +pkg syscall (netbsd-arm64), var Stderr int +pkg syscall (netbsd-arm64), var Stdin int +pkg syscall (netbsd-arm64), var Stdout int +pkg syscall (windows-386), type SysProcAttr struct, ProcessAttributes *SecurityAttributes +pkg syscall (windows-386), type SysProcAttr struct, ThreadAttributes *SecurityAttributes +pkg syscall (windows-amd64), type SysProcAttr struct, ProcessAttributes *SecurityAttributes +pkg syscall (windows-amd64), type SysProcAttr struct, ThreadAttributes *SecurityAttributes +pkg testing, func Init() +pkg testing, method (*B) ReportMetric(float64, string) +pkg testing, type BenchmarkResult struct, Extra map[string]float64 +pkg text/template, method (ExecError) Unwrap() error +pkg time, method (Duration) Microseconds() int64 +pkg time, method (Duration) Milliseconds() int64 +pkg unicode, const Version = "11.0.0" +pkg unicode, var Dogra *RangeTable +pkg unicode, var Gunjala_Gondi *RangeTable +pkg unicode, var Hanifi_Rohingya *RangeTable +pkg unicode, var Makasar *RangeTable +pkg unicode, var Medefaidrin *RangeTable +pkg unicode, var Old_Sogdian *RangeTable +pkg unicode, var Sogdian *RangeTable diff --git a/platform/dbops/binaries/go/go/api/go1.14.txt b/platform/dbops/binaries/go/go/api/go1.14.txt new file mode 100644 index 0000000000000000000000000000000000000000..0374649fda3406ab124637b2480dd653760c5118 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.14.txt @@ -0,0 +1,8914 @@ +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 52393 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 52392 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16 +pkg crypto/tls, func CipherSuiteName(uint16) string +pkg crypto/tls, func CipherSuites() []*CipherSuite +pkg crypto/tls, func InsecureCipherSuites() []*CipherSuite +pkg crypto/tls, method (*CertificateRequestInfo) SupportsCertificate(*Certificate) error +pkg crypto/tls, method (*ClientHelloInfo) SupportsCertificate(*Certificate) error +pkg crypto/tls, type Certificate struct, SupportedSignatureAlgorithms []SignatureScheme +pkg crypto/tls, type CertificateRequestInfo struct, Version uint16 +pkg crypto/tls, type CipherSuite struct +pkg crypto/tls, type CipherSuite struct, ID uint16 +pkg crypto/tls, type CipherSuite struct, Insecure bool +pkg crypto/tls, type CipherSuite struct, Name string +pkg crypto/tls, type CipherSuite struct, SupportedVersions []uint16 +pkg debug/dwarf, const AttrAddrBase = 115 +pkg debug/dwarf, const AttrAddrBase Attr +pkg debug/dwarf, const AttrAlignment = 136 +pkg debug/dwarf, const AttrAlignment Attr +pkg debug/dwarf, const AttrBinaryScale = 91 +pkg debug/dwarf, const AttrBinaryScale Attr +pkg debug/dwarf, const AttrCallAllCalls = 122 +pkg debug/dwarf, const AttrCallAllCalls Attr +pkg debug/dwarf, const AttrCallAllSourceCalls = 123 +pkg debug/dwarf, const AttrCallAllSourceCalls Attr +pkg debug/dwarf, const AttrCallAllTailCalls = 124 +pkg debug/dwarf, const AttrCallAllTailCalls Attr +pkg debug/dwarf, const AttrCallDataLocation = 133 +pkg debug/dwarf, const AttrCallDataLocation Attr +pkg debug/dwarf, const AttrCallDataValue = 134 +pkg debug/dwarf, const AttrCallDataValue Attr +pkg debug/dwarf, const AttrCallOrigin = 127 +pkg debug/dwarf, const AttrCallOrigin Attr +pkg debug/dwarf, const AttrCallPC = 129 +pkg debug/dwarf, const AttrCallPC Attr +pkg debug/dwarf, const AttrCallParameter = 128 +pkg debug/dwarf, const AttrCallParameter Attr +pkg debug/dwarf, const AttrCallReturnPC = 125 +pkg debug/dwarf, const AttrCallReturnPC Attr +pkg debug/dwarf, const AttrCallTailCall = 130 +pkg debug/dwarf, const AttrCallTailCall Attr +pkg debug/dwarf, const AttrCallTarget = 131 +pkg debug/dwarf, const AttrCallTarget Attr +pkg debug/dwarf, const AttrCallTargetClobbered = 132 +pkg debug/dwarf, const AttrCallTargetClobbered Attr +pkg debug/dwarf, const AttrCallValue = 126 +pkg debug/dwarf, const AttrCallValue Attr +pkg debug/dwarf, const AttrConstExpr = 108 +pkg debug/dwarf, const AttrConstExpr Attr +pkg debug/dwarf, const AttrDataBitOffset = 107 +pkg debug/dwarf, const AttrDataBitOffset Attr +pkg debug/dwarf, const AttrDecimalScale = 92 +pkg debug/dwarf, const AttrDecimalScale Attr +pkg debug/dwarf, const AttrDecimalSign = 94 +pkg debug/dwarf, const AttrDecimalSign Attr +pkg debug/dwarf, const AttrDefaulted = 139 +pkg debug/dwarf, const AttrDefaulted Attr +pkg debug/dwarf, const AttrDeleted = 138 +pkg debug/dwarf, const AttrDeleted Attr +pkg debug/dwarf, const AttrDigitCount = 95 +pkg debug/dwarf, const AttrDigitCount Attr +pkg debug/dwarf, const AttrDwoName = 118 +pkg debug/dwarf, const AttrDwoName Attr +pkg debug/dwarf, const AttrElemental = 102 +pkg debug/dwarf, const AttrElemental Attr +pkg debug/dwarf, const AttrEndianity = 101 +pkg debug/dwarf, const AttrEndianity Attr +pkg debug/dwarf, const AttrEnumClass = 109 +pkg debug/dwarf, const AttrEnumClass Attr +pkg debug/dwarf, const AttrExplicit = 99 +pkg debug/dwarf, const AttrExplicit Attr +pkg debug/dwarf, const AttrExportSymbols = 137 +pkg debug/dwarf, const AttrExportSymbols Attr +pkg debug/dwarf, const AttrLinkageName = 110 +pkg debug/dwarf, const AttrLinkageName Attr +pkg debug/dwarf, const AttrLoclistsBase = 140 +pkg debug/dwarf, const AttrLoclistsBase Attr +pkg debug/dwarf, const AttrMacros = 121 +pkg debug/dwarf, const AttrMacros Attr +pkg debug/dwarf, const AttrMainSubprogram = 106 +pkg debug/dwarf, const AttrMainSubprogram Attr +pkg debug/dwarf, const AttrMutable = 97 +pkg debug/dwarf, const AttrMutable Attr +pkg debug/dwarf, const AttrNoreturn = 135 +pkg debug/dwarf, const AttrNoreturn Attr +pkg debug/dwarf, const AttrObjectPointer = 100 +pkg debug/dwarf, const AttrObjectPointer Attr +pkg debug/dwarf, const AttrPictureString = 96 +pkg debug/dwarf, const AttrPictureString Attr +pkg debug/dwarf, const AttrPure = 103 +pkg debug/dwarf, const AttrPure Attr +pkg debug/dwarf, const AttrRank = 113 +pkg debug/dwarf, const AttrRank Attr +pkg debug/dwarf, const AttrRecursive = 104 +pkg debug/dwarf, const AttrRecursive Attr +pkg debug/dwarf, const AttrReference = 119 +pkg debug/dwarf, const AttrReference Attr +pkg debug/dwarf, const AttrRnglistsBase = 116 +pkg debug/dwarf, const AttrRnglistsBase Attr +pkg debug/dwarf, const AttrRvalueReference = 120 +pkg debug/dwarf, const AttrRvalueReference Attr +pkg debug/dwarf, const AttrSignature = 105 +pkg debug/dwarf, const AttrSignature Attr +pkg debug/dwarf, const AttrSmall = 93 +pkg debug/dwarf, const AttrSmall Attr +pkg debug/dwarf, const AttrStrOffsetsBase = 114 +pkg debug/dwarf, const AttrStrOffsetsBase Attr +pkg debug/dwarf, const AttrStringLengthBitSize = 111 +pkg debug/dwarf, const AttrStringLengthBitSize Attr +pkg debug/dwarf, const AttrStringLengthByteSize = 112 +pkg debug/dwarf, const AttrStringLengthByteSize Attr +pkg debug/dwarf, const AttrThreadsScaled = 98 +pkg debug/dwarf, const AttrThreadsScaled Attr +pkg debug/dwarf, const ClassAddrPtr = 15 +pkg debug/dwarf, const ClassAddrPtr Class +pkg debug/dwarf, const ClassLocList = 16 +pkg debug/dwarf, const ClassLocList Class +pkg debug/dwarf, const ClassRngList = 17 +pkg debug/dwarf, const ClassRngList Class +pkg debug/dwarf, const ClassRngListsPtr = 18 +pkg debug/dwarf, const ClassRngListsPtr Class +pkg debug/dwarf, const ClassStrOffsetsPtr = 19 +pkg debug/dwarf, const ClassStrOffsetsPtr Class +pkg debug/dwarf, const TagAtomicType = 71 +pkg debug/dwarf, const TagAtomicType Tag +pkg debug/dwarf, const TagCallSite = 72 +pkg debug/dwarf, const TagCallSite Tag +pkg debug/dwarf, const TagCallSiteParameter = 73 +pkg debug/dwarf, const TagCallSiteParameter Tag +pkg debug/dwarf, const TagCoarrayType = 68 +pkg debug/dwarf, const TagCoarrayType Tag +pkg debug/dwarf, const TagDynamicType = 70 +pkg debug/dwarf, const TagDynamicType Tag +pkg debug/dwarf, const TagGenericSubrange = 69 +pkg debug/dwarf, const TagGenericSubrange Tag +pkg debug/dwarf, const TagImmutableType = 75 +pkg debug/dwarf, const TagImmutableType Tag +pkg debug/dwarf, const TagSkeletonUnit = 74 +pkg debug/dwarf, const TagSkeletonUnit Tag +pkg debug/dwarf, method (*Data) AddSection(string, []uint8) error +pkg debug/dwarf, method (*LineReader) Files() []*LineFile +pkg debug/dwarf, method (*Reader) ByteOrder() binary.ByteOrder +pkg encoding/asn1, const TagBMPString = 30 +pkg encoding/asn1, const TagBMPString ideal-int +pkg encoding/json, method (*Decoder) InputOffset() int64 +pkg go/build, type Context struct, Dir string +pkg go/doc, func NewFromFiles(*token.FileSet, []*ast.File, string, ...interface{}) (*Package, error) +pkg go/doc, type Example struct, Suffix string +pkg go/doc, type Func struct, Examples []*Example +pkg go/doc, type Package struct, Examples []*Example +pkg go/doc, type Type struct, Examples []*Example +pkg hash/maphash, func MakeSeed() Seed +pkg hash/maphash, method (*Hash) BlockSize() int +pkg hash/maphash, method (*Hash) Reset() +pkg hash/maphash, method (*Hash) Seed() Seed +pkg hash/maphash, method (*Hash) SetSeed(Seed) +pkg hash/maphash, method (*Hash) Size() int +pkg hash/maphash, method (*Hash) Sum([]uint8) []uint8 +pkg hash/maphash, method (*Hash) Sum64() uint64 +pkg hash/maphash, method (*Hash) Write([]uint8) (int, error) +pkg hash/maphash, method (*Hash) WriteByte(uint8) error +pkg hash/maphash, method (*Hash) WriteString(string) (int, error) +pkg hash/maphash, type Hash struct +pkg hash/maphash, type Seed struct +pkg log, const Lmsgprefix = 64 +pkg log, const Lmsgprefix ideal-int +pkg math, func FMA(float64, float64, float64) float64 +pkg math/bits, func Rem(uint, uint, uint) uint +pkg math/bits, func Rem32(uint32, uint32, uint32) uint32 +pkg math/bits, func Rem64(uint64, uint64, uint64) uint64 +pkg mime/multipart, method (*Reader) NextRawPart() (*Part, error) +pkg net/http, method (Header) Values(string) []string +pkg net/http, type Transport struct, DialTLSContext func(context.Context, string, string) (net.Conn, error) +pkg net/http/httptest, type Server struct, EnableHTTP2 bool +pkg net/textproto, method (MIMEHeader) Values(string) []string +pkg strconv, method (*NumError) Unwrap() error +pkg syscall (windows-386), const CTRL_CLOSE_EVENT = 2 +pkg syscall (windows-386), const CTRL_CLOSE_EVENT ideal-int +pkg syscall (windows-386), const CTRL_LOGOFF_EVENT = 5 +pkg syscall (windows-386), const CTRL_LOGOFF_EVENT ideal-int +pkg syscall (windows-386), const CTRL_SHUTDOWN_EVENT = 6 +pkg syscall (windows-386), const CTRL_SHUTDOWN_EVENT ideal-int +pkg syscall (windows-amd64), const CTRL_CLOSE_EVENT = 2 +pkg syscall (windows-amd64), const CTRL_CLOSE_EVENT ideal-int +pkg syscall (windows-amd64), const CTRL_LOGOFF_EVENT = 5 +pkg syscall (windows-amd64), const CTRL_LOGOFF_EVENT ideal-int +pkg syscall (windows-amd64), const CTRL_SHUTDOWN_EVENT = 6 +pkg syscall (windows-amd64), const CTRL_SHUTDOWN_EVENT ideal-int +pkg testing, method (*B) Cleanup(func()) +pkg testing, method (*T) Cleanup(func()) +pkg testing, type TB interface, Cleanup(func()) +pkg unicode, const Version = "12.0.0" +pkg unicode, var Elymaic *RangeTable +pkg unicode, var Nandinagari *RangeTable +pkg unicode, var Nyiakeng_Puachue_Hmong *RangeTable +pkg unicode, var Wancho *RangeTable +# freebsd arm64 port +pkg log/syslog (freebsd-arm64), const LOG_ALERT = 1 +pkg log/syslog (freebsd-arm64), const LOG_ALERT Priority +pkg log/syslog (freebsd-arm64), const LOG_AUTH = 32 +pkg log/syslog (freebsd-arm64), const LOG_AUTH Priority +pkg log/syslog (freebsd-arm64), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-arm64), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-arm64), const LOG_CRIT = 2 +pkg log/syslog (freebsd-arm64), const LOG_CRIT Priority +pkg log/syslog (freebsd-arm64), const LOG_CRON = 72 +pkg log/syslog (freebsd-arm64), const LOG_CRON Priority +pkg log/syslog (freebsd-arm64), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-arm64), const LOG_DAEMON Priority +pkg log/syslog (freebsd-arm64), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-arm64), const LOG_DEBUG Priority +pkg log/syslog (freebsd-arm64), const LOG_EMERG = 0 +pkg log/syslog (freebsd-arm64), const LOG_EMERG Priority +pkg log/syslog (freebsd-arm64), const LOG_ERR = 3 +pkg log/syslog (freebsd-arm64), const LOG_ERR Priority +pkg log/syslog (freebsd-arm64), const LOG_FTP = 88 +pkg log/syslog (freebsd-arm64), const LOG_FTP Priority +pkg log/syslog (freebsd-arm64), const LOG_INFO = 6 +pkg log/syslog (freebsd-arm64), const LOG_INFO Priority +pkg log/syslog (freebsd-arm64), const LOG_KERN = 0 +pkg log/syslog (freebsd-arm64), const LOG_KERN Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-arm64), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-arm64), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-arm64), const LOG_LPR = 48 +pkg log/syslog (freebsd-arm64), const LOG_LPR Priority +pkg log/syslog (freebsd-arm64), const LOG_MAIL = 16 +pkg log/syslog (freebsd-arm64), const LOG_MAIL Priority +pkg log/syslog (freebsd-arm64), const LOG_NEWS = 56 +pkg log/syslog (freebsd-arm64), const LOG_NEWS Priority +pkg log/syslog (freebsd-arm64), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-arm64), const LOG_NOTICE Priority +pkg log/syslog (freebsd-arm64), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-arm64), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-arm64), const LOG_USER = 8 +pkg log/syslog (freebsd-arm64), const LOG_USER Priority +pkg log/syslog (freebsd-arm64), const LOG_UUCP = 64 +pkg log/syslog (freebsd-arm64), const LOG_UUCP Priority +pkg log/syslog (freebsd-arm64), const LOG_WARNING = 4 +pkg log/syslog (freebsd-arm64), const LOG_WARNING Priority +pkg log/syslog (freebsd-arm64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm64), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-arm64), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Close() error +pkg log/syslog (freebsd-arm64), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Err(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Info(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-arm64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-arm64), type Priority int +pkg log/syslog (freebsd-arm64), type Writer struct +pkg log/syslog (freebsd-arm64-cgo), const LOG_ALERT = 1 +pkg log/syslog (freebsd-arm64-cgo), const LOG_ALERT Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_AUTH = 32 +pkg log/syslog (freebsd-arm64-cgo), const LOG_AUTH Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (freebsd-arm64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_CRIT = 2 +pkg log/syslog (freebsd-arm64-cgo), const LOG_CRIT Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_CRON = 72 +pkg log/syslog (freebsd-arm64-cgo), const LOG_CRON Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (freebsd-arm64-cgo), const LOG_DAEMON Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (freebsd-arm64-cgo), const LOG_DEBUG Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_EMERG = 0 +pkg log/syslog (freebsd-arm64-cgo), const LOG_EMERG Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_ERR = 3 +pkg log/syslog (freebsd-arm64-cgo), const LOG_ERR Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_FTP = 88 +pkg log/syslog (freebsd-arm64-cgo), const LOG_FTP Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_INFO = 6 +pkg log/syslog (freebsd-arm64-cgo), const LOG_INFO Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_KERN = 0 +pkg log/syslog (freebsd-arm64-cgo), const LOG_KERN Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_LPR = 48 +pkg log/syslog (freebsd-arm64-cgo), const LOG_LPR Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_MAIL = 16 +pkg log/syslog (freebsd-arm64-cgo), const LOG_MAIL Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_NEWS = 56 +pkg log/syslog (freebsd-arm64-cgo), const LOG_NEWS Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (freebsd-arm64-cgo), const LOG_NOTICE Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (freebsd-arm64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_USER = 8 +pkg log/syslog (freebsd-arm64-cgo), const LOG_USER Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_UUCP = 64 +pkg log/syslog (freebsd-arm64-cgo), const LOG_UUCP Priority +pkg log/syslog (freebsd-arm64-cgo), const LOG_WARNING = 4 +pkg log/syslog (freebsd-arm64-cgo), const LOG_WARNING Priority +pkg log/syslog (freebsd-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Close() error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Err(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Info(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-arm64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-arm64-cgo), type Priority int +pkg log/syslog (freebsd-arm64-cgo), type Writer struct +pkg math/bits (freebsd-arm64), const UintSize = 64 +pkg math/bits (freebsd-arm64-cgo), const UintSize = 64 +pkg os (freebsd-arm64), const DevNull = "/dev/null" +pkg os (freebsd-arm64), const O_APPEND = 8 +pkg os (freebsd-arm64), const O_CREATE = 512 +pkg os (freebsd-arm64), const O_EXCL = 2048 +pkg os (freebsd-arm64), const O_SYNC = 128 +pkg os (freebsd-arm64), const O_TRUNC = 1024 +pkg os (freebsd-arm64), const PathListSeparator = 58 +pkg os (freebsd-arm64), const PathSeparator = 47 +pkg os (freebsd-arm64-cgo), const DevNull = "/dev/null" +pkg os (freebsd-arm64-cgo), const O_APPEND = 8 +pkg os (freebsd-arm64-cgo), const O_CREATE = 512 +pkg os (freebsd-arm64-cgo), const O_EXCL = 2048 +pkg os (freebsd-arm64-cgo), const O_SYNC = 128 +pkg os (freebsd-arm64-cgo), const O_TRUNC = 1024 +pkg os (freebsd-arm64-cgo), const PathListSeparator = 58 +pkg os (freebsd-arm64-cgo), const PathSeparator = 47 +pkg path/filepath (freebsd-arm64), const ListSeparator = 58 +pkg path/filepath (freebsd-arm64), const Separator = 47 +pkg path/filepath (freebsd-arm64-cgo), const ListSeparator = 58 +pkg path/filepath (freebsd-arm64-cgo), const Separator = 47 +pkg runtime (freebsd-arm64), const GOARCH = "arm64" +pkg runtime (freebsd-arm64), const GOOS = "freebsd" +pkg runtime (freebsd-arm64-cgo), const GOARCH = "arm64" +pkg runtime (freebsd-arm64-cgo), const GOOS = "freebsd" +pkg strconv (freebsd-arm64), const IntSize = 64 +pkg strconv (freebsd-arm64-cgo), const IntSize = 64 +pkg syscall (freebsd-arm64), const AF_APPLETALK = 16 +pkg syscall (freebsd-arm64), const AF_APPLETALK ideal-int +pkg syscall (freebsd-arm64), const AF_ARP = 35 +pkg syscall (freebsd-arm64), const AF_ARP ideal-int +pkg syscall (freebsd-arm64), const AF_ATM = 30 +pkg syscall (freebsd-arm64), const AF_ATM ideal-int +pkg syscall (freebsd-arm64), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-arm64), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-arm64), const AF_CCITT = 10 +pkg syscall (freebsd-arm64), const AF_CCITT ideal-int +pkg syscall (freebsd-arm64), const AF_CHAOS = 5 +pkg syscall (freebsd-arm64), const AF_CHAOS ideal-int +pkg syscall (freebsd-arm64), const AF_CNT = 21 +pkg syscall (freebsd-arm64), const AF_CNT ideal-int +pkg syscall (freebsd-arm64), const AF_COIP = 20 +pkg syscall (freebsd-arm64), const AF_COIP ideal-int +pkg syscall (freebsd-arm64), const AF_DATAKIT = 9 +pkg syscall (freebsd-arm64), const AF_DATAKIT ideal-int +pkg syscall (freebsd-arm64), const AF_DECnet = 12 +pkg syscall (freebsd-arm64), const AF_DECnet ideal-int +pkg syscall (freebsd-arm64), const AF_DLI = 13 +pkg syscall (freebsd-arm64), const AF_DLI ideal-int +pkg syscall (freebsd-arm64), const AF_E164 = 26 +pkg syscall (freebsd-arm64), const AF_E164 ideal-int +pkg syscall (freebsd-arm64), const AF_ECMA = 8 +pkg syscall (freebsd-arm64), const AF_ECMA ideal-int +pkg syscall (freebsd-arm64), const AF_HYLINK = 15 +pkg syscall (freebsd-arm64), const AF_HYLINK ideal-int +pkg syscall (freebsd-arm64), const AF_IEEE80211 = 37 +pkg syscall (freebsd-arm64), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-arm64), const AF_IMPLINK = 3 +pkg syscall (freebsd-arm64), const AF_IMPLINK ideal-int +pkg syscall (freebsd-arm64), const AF_INET_SDP = 40 +pkg syscall (freebsd-arm64), const AF_INET_SDP ideal-int +pkg syscall (freebsd-arm64), const AF_INET6 = 28 +pkg syscall (freebsd-arm64), const AF_INET6_SDP = 42 +pkg syscall (freebsd-arm64), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-arm64), const AF_IPX = 23 +pkg syscall (freebsd-arm64), const AF_IPX ideal-int +pkg syscall (freebsd-arm64), const AF_ISDN = 26 +pkg syscall (freebsd-arm64), const AF_ISDN ideal-int +pkg syscall (freebsd-arm64), const AF_ISO = 7 +pkg syscall (freebsd-arm64), const AF_ISO ideal-int +pkg syscall (freebsd-arm64), const AF_LAT = 14 +pkg syscall (freebsd-arm64), const AF_LAT ideal-int +pkg syscall (freebsd-arm64), const AF_LINK = 18 +pkg syscall (freebsd-arm64), const AF_LINK ideal-int +pkg syscall (freebsd-arm64), const AF_LOCAL = 1 +pkg syscall (freebsd-arm64), const AF_LOCAL ideal-int +pkg syscall (freebsd-arm64), const AF_MAX = 42 +pkg syscall (freebsd-arm64), const AF_MAX ideal-int +pkg syscall (freebsd-arm64), const AF_NATM = 29 +pkg syscall (freebsd-arm64), const AF_NATM ideal-int +pkg syscall (freebsd-arm64), const AF_NETBIOS = 6 +pkg syscall (freebsd-arm64), const AF_NETBIOS ideal-int +pkg syscall (freebsd-arm64), const AF_NETGRAPH = 32 +pkg syscall (freebsd-arm64), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-arm64), const AF_OSI = 7 +pkg syscall (freebsd-arm64), const AF_OSI ideal-int +pkg syscall (freebsd-arm64), const AF_PUP = 4 +pkg syscall (freebsd-arm64), const AF_PUP ideal-int +pkg syscall (freebsd-arm64), const AF_ROUTE = 17 +pkg syscall (freebsd-arm64), const AF_ROUTE ideal-int +pkg syscall (freebsd-arm64), const AF_SCLUSTER = 34 +pkg syscall (freebsd-arm64), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-arm64), const AF_SIP = 24 +pkg syscall (freebsd-arm64), const AF_SIP ideal-int +pkg syscall (freebsd-arm64), const AF_SLOW = 33 +pkg syscall (freebsd-arm64), const AF_SLOW ideal-int +pkg syscall (freebsd-arm64), const AF_SNA = 11 +pkg syscall (freebsd-arm64), const AF_SNA ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR00 = 39 +pkg syscall (freebsd-arm64), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR01 = 41 +pkg syscall (freebsd-arm64), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR02 = 43 +pkg syscall (freebsd-arm64), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR03 = 45 +pkg syscall (freebsd-arm64), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR04 = 47 +pkg syscall (freebsd-arm64), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR05 = 49 +pkg syscall (freebsd-arm64), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR06 = 51 +pkg syscall (freebsd-arm64), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR07 = 53 +pkg syscall (freebsd-arm64), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR08 = 55 +pkg syscall (freebsd-arm64), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR09 = 57 +pkg syscall (freebsd-arm64), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR10 = 59 +pkg syscall (freebsd-arm64), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR11 = 61 +pkg syscall (freebsd-arm64), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR12 = 63 +pkg syscall (freebsd-arm64), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR13 = 65 +pkg syscall (freebsd-arm64), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR14 = 67 +pkg syscall (freebsd-arm64), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR15 = 69 +pkg syscall (freebsd-arm64), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR16 = 71 +pkg syscall (freebsd-arm64), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR17 = 73 +pkg syscall (freebsd-arm64), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR18 = 75 +pkg syscall (freebsd-arm64), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR19 = 77 +pkg syscall (freebsd-arm64), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR20 = 79 +pkg syscall (freebsd-arm64), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR21 = 81 +pkg syscall (freebsd-arm64), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR22 = 83 +pkg syscall (freebsd-arm64), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR23 = 85 +pkg syscall (freebsd-arm64), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR24 = 87 +pkg syscall (freebsd-arm64), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR25 = 89 +pkg syscall (freebsd-arm64), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR26 = 91 +pkg syscall (freebsd-arm64), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR27 = 93 +pkg syscall (freebsd-arm64), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR28 = 95 +pkg syscall (freebsd-arm64), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR29 = 97 +pkg syscall (freebsd-arm64), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR30 = 99 +pkg syscall (freebsd-arm64), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR31 = 101 +pkg syscall (freebsd-arm64), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR32 = 103 +pkg syscall (freebsd-arm64), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR33 = 105 +pkg syscall (freebsd-arm64), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR34 = 107 +pkg syscall (freebsd-arm64), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR35 = 109 +pkg syscall (freebsd-arm64), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR36 = 111 +pkg syscall (freebsd-arm64), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR37 = 113 +pkg syscall (freebsd-arm64), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR38 = 115 +pkg syscall (freebsd-arm64), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR39 = 117 +pkg syscall (freebsd-arm64), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR40 = 119 +pkg syscall (freebsd-arm64), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR41 = 121 +pkg syscall (freebsd-arm64), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR42 = 123 +pkg syscall (freebsd-arm64), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR43 = 125 +pkg syscall (freebsd-arm64), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR44 = 127 +pkg syscall (freebsd-arm64), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR45 = 129 +pkg syscall (freebsd-arm64), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR46 = 131 +pkg syscall (freebsd-arm64), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-arm64), const AF_VENDOR47 = 133 +pkg syscall (freebsd-arm64), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-arm64), const B0 = 0 +pkg syscall (freebsd-arm64), const B0 ideal-int +pkg syscall (freebsd-arm64), const B110 = 110 +pkg syscall (freebsd-arm64), const B110 ideal-int +pkg syscall (freebsd-arm64), const B115200 = 115200 +pkg syscall (freebsd-arm64), const B115200 ideal-int +pkg syscall (freebsd-arm64), const B1200 = 1200 +pkg syscall (freebsd-arm64), const B1200 ideal-int +pkg syscall (freebsd-arm64), const B134 = 134 +pkg syscall (freebsd-arm64), const B134 ideal-int +pkg syscall (freebsd-arm64), const B14400 = 14400 +pkg syscall (freebsd-arm64), const B14400 ideal-int +pkg syscall (freebsd-arm64), const B150 = 150 +pkg syscall (freebsd-arm64), const B150 ideal-int +pkg syscall (freebsd-arm64), const B1800 = 1800 +pkg syscall (freebsd-arm64), const B1800 ideal-int +pkg syscall (freebsd-arm64), const B19200 = 19200 +pkg syscall (freebsd-arm64), const B19200 ideal-int +pkg syscall (freebsd-arm64), const B200 = 200 +pkg syscall (freebsd-arm64), const B200 ideal-int +pkg syscall (freebsd-arm64), const B230400 = 230400 +pkg syscall (freebsd-arm64), const B230400 ideal-int +pkg syscall (freebsd-arm64), const B2400 = 2400 +pkg syscall (freebsd-arm64), const B2400 ideal-int +pkg syscall (freebsd-arm64), const B28800 = 28800 +pkg syscall (freebsd-arm64), const B28800 ideal-int +pkg syscall (freebsd-arm64), const B300 = 300 +pkg syscall (freebsd-arm64), const B300 ideal-int +pkg syscall (freebsd-arm64), const B38400 = 38400 +pkg syscall (freebsd-arm64), const B38400 ideal-int +pkg syscall (freebsd-arm64), const B460800 = 460800 +pkg syscall (freebsd-arm64), const B460800 ideal-int +pkg syscall (freebsd-arm64), const B4800 = 4800 +pkg syscall (freebsd-arm64), const B4800 ideal-int +pkg syscall (freebsd-arm64), const B50 = 50 +pkg syscall (freebsd-arm64), const B50 ideal-int +pkg syscall (freebsd-arm64), const B57600 = 57600 +pkg syscall (freebsd-arm64), const B57600 ideal-int +pkg syscall (freebsd-arm64), const B600 = 600 +pkg syscall (freebsd-arm64), const B600 ideal-int +pkg syscall (freebsd-arm64), const B7200 = 7200 +pkg syscall (freebsd-arm64), const B7200 ideal-int +pkg syscall (freebsd-arm64), const B75 = 75 +pkg syscall (freebsd-arm64), const B75 ideal-int +pkg syscall (freebsd-arm64), const B76800 = 76800 +pkg syscall (freebsd-arm64), const B76800 ideal-int +pkg syscall (freebsd-arm64), const B921600 = 921600 +pkg syscall (freebsd-arm64), const B921600 ideal-int +pkg syscall (freebsd-arm64), const B9600 = 9600 +pkg syscall (freebsd-arm64), const B9600 ideal-int +pkg syscall (freebsd-arm64), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-arm64), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-arm64), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-arm64), const BIOCFLUSH ideal-int +pkg syscall (freebsd-arm64), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-arm64), const BIOCGBLEN ideal-int +pkg syscall (freebsd-arm64), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-arm64), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-arm64), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-arm64), const BIOCGDLT ideal-int +pkg syscall (freebsd-arm64), const BIOCGDLTLIST = 3222291065 +pkg syscall (freebsd-arm64), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-arm64), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-arm64), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-arm64), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-arm64), const BIOCGETIF ideal-int +pkg syscall (freebsd-arm64), const BIOCGETZMAX = 1074283135 +pkg syscall (freebsd-arm64), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-arm64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-arm64), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-arm64), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-arm64), const BIOCGRSIG ideal-int +pkg syscall (freebsd-arm64), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-arm64), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-arm64), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-arm64), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-arm64), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-arm64), const BIOCGSTATS ideal-int +pkg syscall (freebsd-arm64), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-arm64), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-arm64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-arm64), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-arm64), const BIOCLOCK = 536887930 +pkg syscall (freebsd-arm64), const BIOCLOCK ideal-int +pkg syscall (freebsd-arm64), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-arm64), const BIOCPROMISC ideal-int +pkg syscall (freebsd-arm64), const BIOCROTZBUF = 1075331712 +pkg syscall (freebsd-arm64), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-arm64), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-arm64), const BIOCSBLEN ideal-int +pkg syscall (freebsd-arm64), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-arm64), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-arm64), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-arm64), const BIOCSDLT ideal-int +pkg syscall (freebsd-arm64), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-arm64), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-arm64), const BIOCSETF = 2148549223 +pkg syscall (freebsd-arm64), const BIOCSETF ideal-int +pkg syscall (freebsd-arm64), const BIOCSETFNR = 2148549250 +pkg syscall (freebsd-arm64), const BIOCSETFNR ideal-int +pkg syscall (freebsd-arm64), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-arm64), const BIOCSETIF ideal-int +pkg syscall (freebsd-arm64), const BIOCSETWF = 2148549243 +pkg syscall (freebsd-arm64), const BIOCSETWF ideal-int +pkg syscall (freebsd-arm64), const BIOCSETZBUF = 2149073537 +pkg syscall (freebsd-arm64), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-arm64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-arm64), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-arm64), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-arm64), const BIOCSRSIG ideal-int +pkg syscall (freebsd-arm64), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-arm64), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-arm64), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-arm64), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-arm64), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-arm64), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-arm64), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-arm64), const BIOCVERSION ideal-int +pkg syscall (freebsd-arm64), const BPF_A = 16 +pkg syscall (freebsd-arm64), const BPF_A ideal-int +pkg syscall (freebsd-arm64), const BPF_ABS = 32 +pkg syscall (freebsd-arm64), const BPF_ABS ideal-int +pkg syscall (freebsd-arm64), const BPF_ADD = 0 +pkg syscall (freebsd-arm64), const BPF_ADD ideal-int +pkg syscall (freebsd-arm64), const BPF_ALIGNMENT = 8 +pkg syscall (freebsd-arm64), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-arm64), const BPF_ALU = 4 +pkg syscall (freebsd-arm64), const BPF_ALU ideal-int +pkg syscall (freebsd-arm64), const BPF_AND = 80 +pkg syscall (freebsd-arm64), const BPF_AND ideal-int +pkg syscall (freebsd-arm64), const BPF_B = 16 +pkg syscall (freebsd-arm64), const BPF_B ideal-int +pkg syscall (freebsd-arm64), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-arm64), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-arm64), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-arm64), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-arm64), const BPF_DIV = 48 +pkg syscall (freebsd-arm64), const BPF_DIV ideal-int +pkg syscall (freebsd-arm64), const BPF_H = 8 +pkg syscall (freebsd-arm64), const BPF_H ideal-int +pkg syscall (freebsd-arm64), const BPF_IMM = 0 +pkg syscall (freebsd-arm64), const BPF_IMM ideal-int +pkg syscall (freebsd-arm64), const BPF_IND = 64 +pkg syscall (freebsd-arm64), const BPF_IND ideal-int +pkg syscall (freebsd-arm64), const BPF_JA = 0 +pkg syscall (freebsd-arm64), const BPF_JA ideal-int +pkg syscall (freebsd-arm64), const BPF_JEQ = 16 +pkg syscall (freebsd-arm64), const BPF_JEQ ideal-int +pkg syscall (freebsd-arm64), const BPF_JGE = 48 +pkg syscall (freebsd-arm64), const BPF_JGE ideal-int +pkg syscall (freebsd-arm64), const BPF_JGT = 32 +pkg syscall (freebsd-arm64), const BPF_JGT ideal-int +pkg syscall (freebsd-arm64), const BPF_JMP = 5 +pkg syscall (freebsd-arm64), const BPF_JMP ideal-int +pkg syscall (freebsd-arm64), const BPF_JSET = 64 +pkg syscall (freebsd-arm64), const BPF_JSET ideal-int +pkg syscall (freebsd-arm64), const BPF_K = 0 +pkg syscall (freebsd-arm64), const BPF_K ideal-int +pkg syscall (freebsd-arm64), const BPF_LD = 0 +pkg syscall (freebsd-arm64), const BPF_LD ideal-int +pkg syscall (freebsd-arm64), const BPF_LDX = 1 +pkg syscall (freebsd-arm64), const BPF_LDX ideal-int +pkg syscall (freebsd-arm64), const BPF_LEN = 128 +pkg syscall (freebsd-arm64), const BPF_LEN ideal-int +pkg syscall (freebsd-arm64), const BPF_LSH = 96 +pkg syscall (freebsd-arm64), const BPF_LSH ideal-int +pkg syscall (freebsd-arm64), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-arm64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-arm64), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-arm64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-arm64), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-arm64), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-arm64), const BPF_MEM = 96 +pkg syscall (freebsd-arm64), const BPF_MEM ideal-int +pkg syscall (freebsd-arm64), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-arm64), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-arm64), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-arm64), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-arm64), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-arm64), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-arm64), const BPF_MISC = 7 +pkg syscall (freebsd-arm64), const BPF_MISC ideal-int +pkg syscall (freebsd-arm64), const BPF_MSH = 160 +pkg syscall (freebsd-arm64), const BPF_MSH ideal-int +pkg syscall (freebsd-arm64), const BPF_MUL = 32 +pkg syscall (freebsd-arm64), const BPF_MUL ideal-int +pkg syscall (freebsd-arm64), const BPF_NEG = 128 +pkg syscall (freebsd-arm64), const BPF_NEG ideal-int +pkg syscall (freebsd-arm64), const BPF_OR = 64 +pkg syscall (freebsd-arm64), const BPF_OR ideal-int +pkg syscall (freebsd-arm64), const BPF_RELEASE = 199606 +pkg syscall (freebsd-arm64), const BPF_RELEASE ideal-int +pkg syscall (freebsd-arm64), const BPF_RET = 6 +pkg syscall (freebsd-arm64), const BPF_RET ideal-int +pkg syscall (freebsd-arm64), const BPF_RSH = 112 +pkg syscall (freebsd-arm64), const BPF_RSH ideal-int +pkg syscall (freebsd-arm64), const BPF_ST = 2 +pkg syscall (freebsd-arm64), const BPF_ST ideal-int +pkg syscall (freebsd-arm64), const BPF_STX = 3 +pkg syscall (freebsd-arm64), const BPF_STX ideal-int +pkg syscall (freebsd-arm64), const BPF_SUB = 16 +pkg syscall (freebsd-arm64), const BPF_SUB ideal-int +pkg syscall (freebsd-arm64), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-arm64), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-arm64), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_FAST = 256 +pkg syscall (freebsd-arm64), const BPF_T_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-arm64), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-arm64), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-arm64), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm64), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm64), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-arm64), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NONE = 3 +pkg syscall (freebsd-arm64), const BPF_T_NONE ideal-int +pkg syscall (freebsd-arm64), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-arm64), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-arm64), const BPF_TAX = 0 +pkg syscall (freebsd-arm64), const BPF_TAX ideal-int +pkg syscall (freebsd-arm64), const BPF_TXA = 128 +pkg syscall (freebsd-arm64), const BPF_TXA ideal-int +pkg syscall (freebsd-arm64), const BPF_W = 0 +pkg syscall (freebsd-arm64), const BPF_W ideal-int +pkg syscall (freebsd-arm64), const BPF_X = 8 +pkg syscall (freebsd-arm64), const BPF_X ideal-int +pkg syscall (freebsd-arm64), const BRKINT = 2 +pkg syscall (freebsd-arm64), const BRKINT ideal-int +pkg syscall (freebsd-arm64), const CFLUSH = 15 +pkg syscall (freebsd-arm64), const CFLUSH ideal-int +pkg syscall (freebsd-arm64), const CLOCAL = 32768 +pkg syscall (freebsd-arm64), const CLOCAL ideal-int +pkg syscall (freebsd-arm64), const CREAD = 2048 +pkg syscall (freebsd-arm64), const CREAD ideal-int +pkg syscall (freebsd-arm64), const CS5 = 0 +pkg syscall (freebsd-arm64), const CS5 ideal-int +pkg syscall (freebsd-arm64), const CS6 = 256 +pkg syscall (freebsd-arm64), const CS6 ideal-int +pkg syscall (freebsd-arm64), const CS7 = 512 +pkg syscall (freebsd-arm64), const CS7 ideal-int +pkg syscall (freebsd-arm64), const CS8 = 768 +pkg syscall (freebsd-arm64), const CS8 ideal-int +pkg syscall (freebsd-arm64), const CSIZE = 768 +pkg syscall (freebsd-arm64), const CSIZE ideal-int +pkg syscall (freebsd-arm64), const CSTART = 17 +pkg syscall (freebsd-arm64), const CSTART ideal-int +pkg syscall (freebsd-arm64), const CSTATUS = 20 +pkg syscall (freebsd-arm64), const CSTATUS ideal-int +pkg syscall (freebsd-arm64), const CSTOP = 19 +pkg syscall (freebsd-arm64), const CSTOP ideal-int +pkg syscall (freebsd-arm64), const CSTOPB = 1024 +pkg syscall (freebsd-arm64), const CSTOPB ideal-int +pkg syscall (freebsd-arm64), const CSUSP = 26 +pkg syscall (freebsd-arm64), const CSUSP ideal-int +pkg syscall (freebsd-arm64), const CTL_MAXNAME = 24 +pkg syscall (freebsd-arm64), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-arm64), const CTL_NET = 4 +pkg syscall (freebsd-arm64), const CTL_NET ideal-int +pkg syscall (freebsd-arm64), const DLT_A429 = 184 +pkg syscall (freebsd-arm64), const DLT_A429 ideal-int +pkg syscall (freebsd-arm64), const DLT_A653_ICM = 185 +pkg syscall (freebsd-arm64), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-arm64), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-arm64), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-arm64), const DLT_AOS = 222 +pkg syscall (freebsd-arm64), const DLT_AOS ideal-int +pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-arm64), const DLT_ARCNET = 7 +pkg syscall (freebsd-arm64), const DLT_ARCNET ideal-int +pkg syscall (freebsd-arm64), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-arm64), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-arm64), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-arm64), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-arm64), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-arm64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-arm64), const DLT_AURORA = 126 +pkg syscall (freebsd-arm64), const DLT_AURORA ideal-int +pkg syscall (freebsd-arm64), const DLT_AX25 = 3 +pkg syscall (freebsd-arm64), const DLT_AX25 ideal-int +pkg syscall (freebsd-arm64), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-arm64), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-arm64), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-arm64), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-arm64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-arm64), const DLT_C_HDLC = 104 +pkg syscall (freebsd-arm64), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-arm64), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-arm64), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-arm64), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-arm64), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-arm64), const DLT_CAN20B = 190 +pkg syscall (freebsd-arm64), const DLT_CAN20B ideal-int +pkg syscall (freebsd-arm64), const DLT_CHAOS = 5 +pkg syscall (freebsd-arm64), const DLT_CHAOS ideal-int +pkg syscall (freebsd-arm64), const DLT_CHDLC = 104 +pkg syscall (freebsd-arm64), const DLT_CHDLC ideal-int +pkg syscall (freebsd-arm64), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-arm64), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-arm64), const DLT_DBUS = 231 +pkg syscall (freebsd-arm64), const DLT_DBUS ideal-int +pkg syscall (freebsd-arm64), const DLT_DECT = 221 +pkg syscall (freebsd-arm64), const DLT_DECT ideal-int +pkg syscall (freebsd-arm64), const DLT_DOCSIS = 143 +pkg syscall (freebsd-arm64), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-arm64), const DLT_DVB_CI = 235 +pkg syscall (freebsd-arm64), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-arm64), const DLT_ECONET = 115 +pkg syscall (freebsd-arm64), const DLT_ECONET ideal-int +pkg syscall (freebsd-arm64), const DLT_EN10MB = 1 +pkg syscall (freebsd-arm64), const DLT_EN10MB ideal-int +pkg syscall (freebsd-arm64), const DLT_EN3MB = 2 +pkg syscall (freebsd-arm64), const DLT_EN3MB ideal-int +pkg syscall (freebsd-arm64), const DLT_ENC = 109 +pkg syscall (freebsd-arm64), const DLT_ENC ideal-int +pkg syscall (freebsd-arm64), const DLT_ERF = 197 +pkg syscall (freebsd-arm64), const DLT_ERF ideal-int +pkg syscall (freebsd-arm64), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-arm64), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-arm64), const DLT_ERF_POS = 176 +pkg syscall (freebsd-arm64), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-arm64), const DLT_FC_2 = 224 +pkg syscall (freebsd-arm64), const DLT_FC_2 ideal-int +pkg syscall (freebsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-arm64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-arm64), const DLT_FDDI = 10 +pkg syscall (freebsd-arm64), const DLT_FDDI ideal-int +pkg syscall (freebsd-arm64), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-arm64), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-arm64), const DLT_FRELAY = 107 +pkg syscall (freebsd-arm64), const DLT_FRELAY ideal-int +pkg syscall (freebsd-arm64), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-arm64), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-arm64), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-arm64), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-arm64), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-arm64), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-arm64), const DLT_GPF_F = 171 +pkg syscall (freebsd-arm64), const DLT_GPF_F ideal-int +pkg syscall (freebsd-arm64), const DLT_GPF_T = 170 +pkg syscall (freebsd-arm64), const DLT_GPF_T ideal-int +pkg syscall (freebsd-arm64), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-arm64), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-arm64), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-arm64), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-arm64), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-arm64), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-arm64), const DLT_HHDLC = 121 +pkg syscall (freebsd-arm64), const DLT_HHDLC ideal-int +pkg syscall (freebsd-arm64), const DLT_IBM_SN = 146 +pkg syscall (freebsd-arm64), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-arm64), const DLT_IBM_SP = 145 +pkg syscall (freebsd-arm64), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802 = 6 +pkg syscall (freebsd-arm64), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-arm64), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-arm64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-arm64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-arm64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-arm64), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-arm64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-arm64), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-arm64), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-arm64), const DLT_IPFILTER = 116 +pkg syscall (freebsd-arm64), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-arm64), const DLT_IPMB = 199 +pkg syscall (freebsd-arm64), const DLT_IPMB ideal-int +pkg syscall (freebsd-arm64), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-arm64), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-arm64), const DLT_IPNET = 226 +pkg syscall (freebsd-arm64), const DLT_IPNET ideal-int +pkg syscall (freebsd-arm64), const DLT_IPOIB = 242 +pkg syscall (freebsd-arm64), const DLT_IPOIB ideal-int +pkg syscall (freebsd-arm64), const DLT_IPV4 = 228 +pkg syscall (freebsd-arm64), const DLT_IPV4 ideal-int +pkg syscall (freebsd-arm64), const DLT_IPV6 = 229 +pkg syscall (freebsd-arm64), const DLT_IPV6 ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-arm64), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-arm64), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-arm64), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-arm64), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-arm64), const DLT_LAPD = 203 +pkg syscall (freebsd-arm64), const DLT_LAPD ideal-int +pkg syscall (freebsd-arm64), const DLT_LIN = 212 +pkg syscall (freebsd-arm64), const DLT_LIN ideal-int +pkg syscall (freebsd-arm64), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-arm64), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-arm64), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-arm64), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-arm64), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-arm64), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-arm64), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-arm64), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-arm64), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-arm64), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-arm64), const DLT_LOOP = 108 +pkg syscall (freebsd-arm64), const DLT_LOOP ideal-int +pkg syscall (freebsd-arm64), const DLT_LTALK = 114 +pkg syscall (freebsd-arm64), const DLT_LTALK ideal-int +pkg syscall (freebsd-arm64), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-arm64), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-arm64), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-arm64), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-arm64), const DLT_MFR = 182 +pkg syscall (freebsd-arm64), const DLT_MFR ideal-int +pkg syscall (freebsd-arm64), const DLT_MOST = 211 +pkg syscall (freebsd-arm64), const DLT_MOST ideal-int +pkg syscall (freebsd-arm64), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-arm64), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-arm64), const DLT_MPLS = 219 +pkg syscall (freebsd-arm64), const DLT_MPLS ideal-int +pkg syscall (freebsd-arm64), const DLT_MTP2 = 140 +pkg syscall (freebsd-arm64), const DLT_MTP2 ideal-int +pkg syscall (freebsd-arm64), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-arm64), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-arm64), const DLT_MTP3 = 141 +pkg syscall (freebsd-arm64), const DLT_MTP3 ideal-int +pkg syscall (freebsd-arm64), const DLT_MUX27010 = 236 +pkg syscall (freebsd-arm64), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-arm64), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-arm64), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-arm64), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-arm64), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-arm64), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-arm64), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-arm64), const DLT_NFLOG = 239 +pkg syscall (freebsd-arm64), const DLT_NFLOG ideal-int +pkg syscall (freebsd-arm64), const DLT_NG40 = 244 +pkg syscall (freebsd-arm64), const DLT_NG40 ideal-int +pkg syscall (freebsd-arm64), const DLT_NULL = 0 +pkg syscall (freebsd-arm64), const DLT_NULL ideal-int +pkg syscall (freebsd-arm64), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-arm64), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-arm64), const DLT_PFLOG = 117 +pkg syscall (freebsd-arm64), const DLT_PFLOG ideal-int +pkg syscall (freebsd-arm64), const DLT_PFSYNC = 121 +pkg syscall (freebsd-arm64), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-arm64), const DLT_PPI = 192 +pkg syscall (freebsd-arm64), const DLT_PPI ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP = 9 +pkg syscall (freebsd-arm64), const DLT_PPP ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-arm64), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-arm64), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-arm64), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-arm64), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-arm64), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-arm64), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-arm64), const DLT_PRONET = 4 +pkg syscall (freebsd-arm64), const DLT_PRONET ideal-int +pkg syscall (freebsd-arm64), const DLT_RAIF1 = 198 +pkg syscall (freebsd-arm64), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-arm64), const DLT_RAW = 12 +pkg syscall (freebsd-arm64), const DLT_RAW ideal-int +pkg syscall (freebsd-arm64), const DLT_RIO = 124 +pkg syscall (freebsd-arm64), const DLT_RIO ideal-int +pkg syscall (freebsd-arm64), const DLT_SCCP = 142 +pkg syscall (freebsd-arm64), const DLT_SCCP ideal-int +pkg syscall (freebsd-arm64), const DLT_SITA = 196 +pkg syscall (freebsd-arm64), const DLT_SITA ideal-int +pkg syscall (freebsd-arm64), const DLT_SLIP = 8 +pkg syscall (freebsd-arm64), const DLT_SLIP ideal-int +pkg syscall (freebsd-arm64), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-arm64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-arm64), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-arm64), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-arm64), const DLT_SUNATM = 123 +pkg syscall (freebsd-arm64), const DLT_SUNATM ideal-int +pkg syscall (freebsd-arm64), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-arm64), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-arm64), const DLT_TZSP = 128 +pkg syscall (freebsd-arm64), const DLT_TZSP ideal-int +pkg syscall (freebsd-arm64), const DLT_USB = 186 +pkg syscall (freebsd-arm64), const DLT_USB ideal-int +pkg syscall (freebsd-arm64), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-arm64), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-arm64), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-arm64), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-arm64), const DLT_USER0 = 147 +pkg syscall (freebsd-arm64), const DLT_USER0 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER1 = 148 +pkg syscall (freebsd-arm64), const DLT_USER1 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER10 = 157 +pkg syscall (freebsd-arm64), const DLT_USER10 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER11 = 158 +pkg syscall (freebsd-arm64), const DLT_USER11 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER12 = 159 +pkg syscall (freebsd-arm64), const DLT_USER12 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER13 = 160 +pkg syscall (freebsd-arm64), const DLT_USER13 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER14 = 161 +pkg syscall (freebsd-arm64), const DLT_USER14 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER15 = 162 +pkg syscall (freebsd-arm64), const DLT_USER15 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER2 = 149 +pkg syscall (freebsd-arm64), const DLT_USER2 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER3 = 150 +pkg syscall (freebsd-arm64), const DLT_USER3 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER4 = 151 +pkg syscall (freebsd-arm64), const DLT_USER4 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER5 = 152 +pkg syscall (freebsd-arm64), const DLT_USER5 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER6 = 153 +pkg syscall (freebsd-arm64), const DLT_USER6 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER7 = 154 +pkg syscall (freebsd-arm64), const DLT_USER7 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER8 = 155 +pkg syscall (freebsd-arm64), const DLT_USER8 ideal-int +pkg syscall (freebsd-arm64), const DLT_USER9 = 156 +pkg syscall (freebsd-arm64), const DLT_USER9 ideal-int +pkg syscall (freebsd-arm64), const DLT_WIHART = 223 +pkg syscall (freebsd-arm64), const DLT_WIHART ideal-int +pkg syscall (freebsd-arm64), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-arm64), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-arm64), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-arm64), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-arm64), const DT_BLK = 6 +pkg syscall (freebsd-arm64), const DT_BLK ideal-int +pkg syscall (freebsd-arm64), const DT_CHR = 2 +pkg syscall (freebsd-arm64), const DT_CHR ideal-int +pkg syscall (freebsd-arm64), const DT_DIR = 4 +pkg syscall (freebsd-arm64), const DT_DIR ideal-int +pkg syscall (freebsd-arm64), const DT_FIFO = 1 +pkg syscall (freebsd-arm64), const DT_FIFO ideal-int +pkg syscall (freebsd-arm64), const DT_LNK = 10 +pkg syscall (freebsd-arm64), const DT_LNK ideal-int +pkg syscall (freebsd-arm64), const DT_REG = 8 +pkg syscall (freebsd-arm64), const DT_REG ideal-int +pkg syscall (freebsd-arm64), const DT_SOCK = 12 +pkg syscall (freebsd-arm64), const DT_SOCK ideal-int +pkg syscall (freebsd-arm64), const DT_UNKNOWN = 0 +pkg syscall (freebsd-arm64), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-arm64), const DT_WHT = 14 +pkg syscall (freebsd-arm64), const DT_WHT ideal-int +pkg syscall (freebsd-arm64), const E2BIG = 7 +pkg syscall (freebsd-arm64), const EACCES = 13 +pkg syscall (freebsd-arm64), const EADDRINUSE = 48 +pkg syscall (freebsd-arm64), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-arm64), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-arm64), const EAGAIN = 35 +pkg syscall (freebsd-arm64), const EALREADY = 37 +pkg syscall (freebsd-arm64), const EAUTH = 80 +pkg syscall (freebsd-arm64), const EAUTH Errno +pkg syscall (freebsd-arm64), const EBADF = 9 +pkg syscall (freebsd-arm64), const EBADMSG = 89 +pkg syscall (freebsd-arm64), const EBADMSG Errno +pkg syscall (freebsd-arm64), const EBADRPC = 72 +pkg syscall (freebsd-arm64), const EBADRPC Errno +pkg syscall (freebsd-arm64), const EBUSY = 16 +pkg syscall (freebsd-arm64), const ECANCELED = 85 +pkg syscall (freebsd-arm64), const ECAPMODE = 94 +pkg syscall (freebsd-arm64), const ECAPMODE Errno +pkg syscall (freebsd-arm64), const ECHILD = 10 +pkg syscall (freebsd-arm64), const ECHO = 8 +pkg syscall (freebsd-arm64), const ECHO ideal-int +pkg syscall (freebsd-arm64), const ECHOCTL = 64 +pkg syscall (freebsd-arm64), const ECHOCTL ideal-int +pkg syscall (freebsd-arm64), const ECHOE = 2 +pkg syscall (freebsd-arm64), const ECHOE ideal-int +pkg syscall (freebsd-arm64), const ECHOK = 4 +pkg syscall (freebsd-arm64), const ECHOK ideal-int +pkg syscall (freebsd-arm64), const ECHOKE = 1 +pkg syscall (freebsd-arm64), const ECHOKE ideal-int +pkg syscall (freebsd-arm64), const ECHONL = 16 +pkg syscall (freebsd-arm64), const ECHONL ideal-int +pkg syscall (freebsd-arm64), const ECHOPRT = 32 +pkg syscall (freebsd-arm64), const ECHOPRT ideal-int +pkg syscall (freebsd-arm64), const ECONNABORTED = 53 +pkg syscall (freebsd-arm64), const ECONNREFUSED = 61 +pkg syscall (freebsd-arm64), const ECONNRESET = 54 +pkg syscall (freebsd-arm64), const EDEADLK = 11 +pkg syscall (freebsd-arm64), const EDESTADDRREQ = 39 +pkg syscall (freebsd-arm64), const EDOM = 33 +pkg syscall (freebsd-arm64), const EDOOFUS = 88 +pkg syscall (freebsd-arm64), const EDOOFUS Errno +pkg syscall (freebsd-arm64), const EDQUOT = 69 +pkg syscall (freebsd-arm64), const EEXIST = 17 +pkg syscall (freebsd-arm64), const EFAULT = 14 +pkg syscall (freebsd-arm64), const EFBIG = 27 +pkg syscall (freebsd-arm64), const EFTYPE = 79 +pkg syscall (freebsd-arm64), const EFTYPE Errno +pkg syscall (freebsd-arm64), const EHOSTDOWN = 64 +pkg syscall (freebsd-arm64), const EHOSTUNREACH = 65 +pkg syscall (freebsd-arm64), const EIDRM = 82 +pkg syscall (freebsd-arm64), const EILSEQ = 86 +pkg syscall (freebsd-arm64), const EINPROGRESS = 36 +pkg syscall (freebsd-arm64), const EINTR = 4 +pkg syscall (freebsd-arm64), const EINVAL = 22 +pkg syscall (freebsd-arm64), const EIO = 5 +pkg syscall (freebsd-arm64), const EISCONN = 56 +pkg syscall (freebsd-arm64), const EISDIR = 21 +pkg syscall (freebsd-arm64), const ELAST = 96 +pkg syscall (freebsd-arm64), const ELAST Errno +pkg syscall (freebsd-arm64), const ELOOP = 62 +pkg syscall (freebsd-arm64), const EMFILE = 24 +pkg syscall (freebsd-arm64), const EMLINK = 31 +pkg syscall (freebsd-arm64), const EMSGSIZE = 40 +pkg syscall (freebsd-arm64), const EMULTIHOP = 90 +pkg syscall (freebsd-arm64), const EMULTIHOP Errno +pkg syscall (freebsd-arm64), const ENAMETOOLONG = 63 +pkg syscall (freebsd-arm64), const ENEEDAUTH = 81 +pkg syscall (freebsd-arm64), const ENEEDAUTH Errno +pkg syscall (freebsd-arm64), const ENETDOWN = 50 +pkg syscall (freebsd-arm64), const ENETRESET = 52 +pkg syscall (freebsd-arm64), const ENETUNREACH = 51 +pkg syscall (freebsd-arm64), const ENFILE = 23 +pkg syscall (freebsd-arm64), const ENOATTR = 87 +pkg syscall (freebsd-arm64), const ENOATTR Errno +pkg syscall (freebsd-arm64), const ENOBUFS = 55 +pkg syscall (freebsd-arm64), const ENODEV = 19 +pkg syscall (freebsd-arm64), const ENOEXEC = 8 +pkg syscall (freebsd-arm64), const ENOLCK = 77 +pkg syscall (freebsd-arm64), const ENOLINK = 91 +pkg syscall (freebsd-arm64), const ENOLINK Errno +pkg syscall (freebsd-arm64), const ENOMEM = 12 +pkg syscall (freebsd-arm64), const ENOMSG = 83 +pkg syscall (freebsd-arm64), const ENOPROTOOPT = 42 +pkg syscall (freebsd-arm64), const ENOSPC = 28 +pkg syscall (freebsd-arm64), const ENOSYS = 78 +pkg syscall (freebsd-arm64), const ENOTBLK = 15 +pkg syscall (freebsd-arm64), const ENOTCAPABLE = 93 +pkg syscall (freebsd-arm64), const ENOTCAPABLE Errno +pkg syscall (freebsd-arm64), const ENOTCONN = 57 +pkg syscall (freebsd-arm64), const ENOTDIR = 20 +pkg syscall (freebsd-arm64), const ENOTEMPTY = 66 +pkg syscall (freebsd-arm64), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-arm64), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-arm64), const ENOTSOCK = 38 +pkg syscall (freebsd-arm64), const ENOTSUP = 45 +pkg syscall (freebsd-arm64), const ENOTTY = 25 +pkg syscall (freebsd-arm64), const ENXIO = 6 +pkg syscall (freebsd-arm64), const EOPNOTSUPP = 45 +pkg syscall (freebsd-arm64), const EOVERFLOW = 84 +pkg syscall (freebsd-arm64), const EOWNERDEAD = 96 +pkg syscall (freebsd-arm64), const EOWNERDEAD Errno +pkg syscall (freebsd-arm64), const EPERM = 1 +pkg syscall (freebsd-arm64), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-arm64), const EPIPE = 32 +pkg syscall (freebsd-arm64), const EPROCLIM = 67 +pkg syscall (freebsd-arm64), const EPROCLIM Errno +pkg syscall (freebsd-arm64), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-arm64), const EPROCUNAVAIL Errno +pkg syscall (freebsd-arm64), const EPROGMISMATCH = 75 +pkg syscall (freebsd-arm64), const EPROGMISMATCH Errno +pkg syscall (freebsd-arm64), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-arm64), const EPROGUNAVAIL Errno +pkg syscall (freebsd-arm64), const EPROTO = 92 +pkg syscall (freebsd-arm64), const EPROTO Errno +pkg syscall (freebsd-arm64), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-arm64), const EPROTOTYPE = 41 +pkg syscall (freebsd-arm64), const ERANGE = 34 +pkg syscall (freebsd-arm64), const EREMOTE = 71 +pkg syscall (freebsd-arm64), const EROFS = 30 +pkg syscall (freebsd-arm64), const ERPCMISMATCH = 73 +pkg syscall (freebsd-arm64), const ERPCMISMATCH Errno +pkg syscall (freebsd-arm64), const ESHUTDOWN = 58 +pkg syscall (freebsd-arm64), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-arm64), const ESPIPE = 29 +pkg syscall (freebsd-arm64), const ESRCH = 3 +pkg syscall (freebsd-arm64), const ESTALE = 70 +pkg syscall (freebsd-arm64), const ETIMEDOUT = 60 +pkg syscall (freebsd-arm64), const ETOOMANYREFS = 59 +pkg syscall (freebsd-arm64), const ETXTBSY = 26 +pkg syscall (freebsd-arm64), const EUSERS = 68 +pkg syscall (freebsd-arm64), const EV_ADD = 1 +pkg syscall (freebsd-arm64), const EV_ADD ideal-int +pkg syscall (freebsd-arm64), const EV_CLEAR = 32 +pkg syscall (freebsd-arm64), const EV_CLEAR ideal-int +pkg syscall (freebsd-arm64), const EV_DELETE = 2 +pkg syscall (freebsd-arm64), const EV_DELETE ideal-int +pkg syscall (freebsd-arm64), const EV_DISABLE = 8 +pkg syscall (freebsd-arm64), const EV_DISABLE ideal-int +pkg syscall (freebsd-arm64), const EV_DISPATCH = 128 +pkg syscall (freebsd-arm64), const EV_DISPATCH ideal-int +pkg syscall (freebsd-arm64), const EV_DROP = 4096 +pkg syscall (freebsd-arm64), const EV_DROP ideal-int +pkg syscall (freebsd-arm64), const EV_ENABLE = 4 +pkg syscall (freebsd-arm64), const EV_ENABLE ideal-int +pkg syscall (freebsd-arm64), const EV_EOF = 32768 +pkg syscall (freebsd-arm64), const EV_EOF ideal-int +pkg syscall (freebsd-arm64), const EV_ERROR = 16384 +pkg syscall (freebsd-arm64), const EV_ERROR ideal-int +pkg syscall (freebsd-arm64), const EV_FLAG1 = 8192 +pkg syscall (freebsd-arm64), const EV_FLAG1 ideal-int +pkg syscall (freebsd-arm64), const EV_ONESHOT = 16 +pkg syscall (freebsd-arm64), const EV_ONESHOT ideal-int +pkg syscall (freebsd-arm64), const EV_RECEIPT = 64 +pkg syscall (freebsd-arm64), const EV_RECEIPT ideal-int +pkg syscall (freebsd-arm64), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-arm64), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-arm64), const EVFILT_AIO = -3 +pkg syscall (freebsd-arm64), const EVFILT_AIO ideal-int +pkg syscall (freebsd-arm64), const EVFILT_FS = -9 +pkg syscall (freebsd-arm64), const EVFILT_FS ideal-int +pkg syscall (freebsd-arm64), const EVFILT_LIO = -10 +pkg syscall (freebsd-arm64), const EVFILT_LIO ideal-int +pkg syscall (freebsd-arm64), const EVFILT_PROC = -5 +pkg syscall (freebsd-arm64), const EVFILT_PROC ideal-int +pkg syscall (freebsd-arm64), const EVFILT_READ = -1 +pkg syscall (freebsd-arm64), const EVFILT_READ ideal-int +pkg syscall (freebsd-arm64), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-arm64), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-arm64), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-arm64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-arm64), const EVFILT_TIMER = -7 +pkg syscall (freebsd-arm64), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-arm64), const EVFILT_USER = -11 +pkg syscall (freebsd-arm64), const EVFILT_USER ideal-int +pkg syscall (freebsd-arm64), const EVFILT_VNODE = -4 +pkg syscall (freebsd-arm64), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-arm64), const EVFILT_WRITE = -2 +pkg syscall (freebsd-arm64), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-arm64), const EWOULDBLOCK = 35 +pkg syscall (freebsd-arm64), const EXDEV = 18 +pkg syscall (freebsd-arm64), const EXTA = 19200 +pkg syscall (freebsd-arm64), const EXTA ideal-int +pkg syscall (freebsd-arm64), const EXTB = 38400 +pkg syscall (freebsd-arm64), const EXTB ideal-int +pkg syscall (freebsd-arm64), const EXTPROC = 2048 +pkg syscall (freebsd-arm64), const EXTPROC ideal-int +pkg syscall (freebsd-arm64), const F_CANCEL = 5 +pkg syscall (freebsd-arm64), const F_CANCEL ideal-int +pkg syscall (freebsd-arm64), const F_DUP2FD = 10 +pkg syscall (freebsd-arm64), const F_DUP2FD ideal-int +pkg syscall (freebsd-arm64), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-arm64), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64), const F_DUPFD = 0 +pkg syscall (freebsd-arm64), const F_DUPFD ideal-int +pkg syscall (freebsd-arm64), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-arm64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64), const F_GETFD = 1 +pkg syscall (freebsd-arm64), const F_GETFD ideal-int +pkg syscall (freebsd-arm64), const F_GETFL = 3 +pkg syscall (freebsd-arm64), const F_GETFL ideal-int +pkg syscall (freebsd-arm64), const F_GETLK = 11 +pkg syscall (freebsd-arm64), const F_GETLK ideal-int +pkg syscall (freebsd-arm64), const F_GETOWN = 5 +pkg syscall (freebsd-arm64), const F_GETOWN ideal-int +pkg syscall (freebsd-arm64), const F_OGETLK = 7 +pkg syscall (freebsd-arm64), const F_OGETLK ideal-int +pkg syscall (freebsd-arm64), const F_OK = 0 +pkg syscall (freebsd-arm64), const F_OK ideal-int +pkg syscall (freebsd-arm64), const F_OSETLK = 8 +pkg syscall (freebsd-arm64), const F_OSETLK ideal-int +pkg syscall (freebsd-arm64), const F_OSETLKW = 9 +pkg syscall (freebsd-arm64), const F_OSETLKW ideal-int +pkg syscall (freebsd-arm64), const F_RDAHEAD = 16 +pkg syscall (freebsd-arm64), const F_RDAHEAD ideal-int +pkg syscall (freebsd-arm64), const F_RDLCK = 1 +pkg syscall (freebsd-arm64), const F_RDLCK ideal-int +pkg syscall (freebsd-arm64), const F_READAHEAD = 15 +pkg syscall (freebsd-arm64), const F_READAHEAD ideal-int +pkg syscall (freebsd-arm64), const F_SETFD = 2 +pkg syscall (freebsd-arm64), const F_SETFD ideal-int +pkg syscall (freebsd-arm64), const F_SETFL = 4 +pkg syscall (freebsd-arm64), const F_SETFL ideal-int +pkg syscall (freebsd-arm64), const F_SETLK = 12 +pkg syscall (freebsd-arm64), const F_SETLK ideal-int +pkg syscall (freebsd-arm64), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-arm64), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-arm64), const F_SETLKW = 13 +pkg syscall (freebsd-arm64), const F_SETLKW ideal-int +pkg syscall (freebsd-arm64), const F_SETOWN = 6 +pkg syscall (freebsd-arm64), const F_SETOWN ideal-int +pkg syscall (freebsd-arm64), const F_UNLCK = 2 +pkg syscall (freebsd-arm64), const F_UNLCK ideal-int +pkg syscall (freebsd-arm64), const F_UNLCKSYS = 4 +pkg syscall (freebsd-arm64), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-arm64), const F_WRLCK = 3 +pkg syscall (freebsd-arm64), const F_WRLCK ideal-int +pkg syscall (freebsd-arm64), const FD_CLOEXEC = 1 +pkg syscall (freebsd-arm64), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64), const FD_SETSIZE = 1024 +pkg syscall (freebsd-arm64), const FD_SETSIZE ideal-int +pkg syscall (freebsd-arm64), const FLUSHO = 8388608 +pkg syscall (freebsd-arm64), const FLUSHO ideal-int +pkg syscall (freebsd-arm64), const HUPCL = 16384 +pkg syscall (freebsd-arm64), const HUPCL ideal-int +pkg syscall (freebsd-arm64), const ICANON = 256 +pkg syscall (freebsd-arm64), const ICANON ideal-int +pkg syscall (freebsd-arm64), const ICMP6_FILTER = 18 +pkg syscall (freebsd-arm64), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-arm64), const ICRNL = 256 +pkg syscall (freebsd-arm64), const ICRNL ideal-int +pkg syscall (freebsd-arm64), const IEXTEN = 1024 +pkg syscall (freebsd-arm64), const IEXTEN ideal-int +pkg syscall (freebsd-arm64), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-arm64), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-arm64), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-arm64), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-arm64), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-arm64), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-arm64), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-arm64), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-arm64), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-arm64), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-arm64), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-arm64), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-arm64), const IFF_DEBUG = 4 +pkg syscall (freebsd-arm64), const IFF_DEBUG ideal-int +pkg syscall (freebsd-arm64), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-arm64), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-arm64), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-arm64), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-arm64), const IFF_DYING = 2097152 +pkg syscall (freebsd-arm64), const IFF_DYING ideal-int +pkg syscall (freebsd-arm64), const IFF_LINK0 = 4096 +pkg syscall (freebsd-arm64), const IFF_LINK0 ideal-int +pkg syscall (freebsd-arm64), const IFF_LINK1 = 8192 +pkg syscall (freebsd-arm64), const IFF_LINK1 ideal-int +pkg syscall (freebsd-arm64), const IFF_LINK2 = 16384 +pkg syscall (freebsd-arm64), const IFF_LINK2 ideal-int +pkg syscall (freebsd-arm64), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-arm64), const IFF_MONITOR = 262144 +pkg syscall (freebsd-arm64), const IFF_MONITOR ideal-int +pkg syscall (freebsd-arm64), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-arm64), const IFF_NOARP = 128 +pkg syscall (freebsd-arm64), const IFF_NOARP ideal-int +pkg syscall (freebsd-arm64), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-arm64), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-arm64), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-arm64), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-arm64), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-arm64), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-arm64), const IFF_PROMISC = 256 +pkg syscall (freebsd-arm64), const IFF_PROMISC ideal-int +pkg syscall (freebsd-arm64), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-arm64), const IFF_RENAMING ideal-int +pkg syscall (freebsd-arm64), const IFF_RUNNING = 64 +pkg syscall (freebsd-arm64), const IFF_RUNNING ideal-int +pkg syscall (freebsd-arm64), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-arm64), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-arm64), const IFF_SMART = 32 +pkg syscall (freebsd-arm64), const IFF_SMART ideal-int +pkg syscall (freebsd-arm64), const IFF_STATICARP = 524288 +pkg syscall (freebsd-arm64), const IFF_STATICARP ideal-int +pkg syscall (freebsd-arm64), const IFNAMSIZ = 16 +pkg syscall (freebsd-arm64), const IFNAMSIZ ideal-int +pkg syscall (freebsd-arm64), const IFT_1822 = 2 +pkg syscall (freebsd-arm64), const IFT_1822 ideal-int +pkg syscall (freebsd-arm64), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-arm64), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-arm64), const IFT_AAL2 = 187 +pkg syscall (freebsd-arm64), const IFT_AAL2 ideal-int +pkg syscall (freebsd-arm64), const IFT_AAL5 = 49 +pkg syscall (freebsd-arm64), const IFT_AAL5 ideal-int +pkg syscall (freebsd-arm64), const IFT_ADSL = 94 +pkg syscall (freebsd-arm64), const IFT_ADSL ideal-int +pkg syscall (freebsd-arm64), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-arm64), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-arm64), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-arm64), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-arm64), const IFT_ARAP = 88 +pkg syscall (freebsd-arm64), const IFT_ARAP ideal-int +pkg syscall (freebsd-arm64), const IFT_ARCNET = 35 +pkg syscall (freebsd-arm64), const IFT_ARCNET ideal-int +pkg syscall (freebsd-arm64), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-arm64), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-arm64), const IFT_ASYNC = 84 +pkg syscall (freebsd-arm64), const IFT_ASYNC ideal-int +pkg syscall (freebsd-arm64), const IFT_ATM = 37 +pkg syscall (freebsd-arm64), const IFT_ATM ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMDXI = 105 +pkg syscall (freebsd-arm64), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-arm64), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMIMA = 107 +pkg syscall (freebsd-arm64), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-arm64), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-arm64), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-arm64), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-arm64), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-arm64), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-arm64), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-arm64), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-arm64), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-arm64), const IFT_BRIDGE = 209 +pkg syscall (freebsd-arm64), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-arm64), const IFT_BSC = 83 +pkg syscall (freebsd-arm64), const IFT_BSC ideal-int +pkg syscall (freebsd-arm64), const IFT_CARP = 248 +pkg syscall (freebsd-arm64), const IFT_CARP ideal-int +pkg syscall (freebsd-arm64), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-arm64), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-arm64), const IFT_CEPT = 19 +pkg syscall (freebsd-arm64), const IFT_CEPT ideal-int +pkg syscall (freebsd-arm64), const IFT_CES = 133 +pkg syscall (freebsd-arm64), const IFT_CES ideal-int +pkg syscall (freebsd-arm64), const IFT_CHANNEL = 70 +pkg syscall (freebsd-arm64), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_CNR = 85 +pkg syscall (freebsd-arm64), const IFT_CNR ideal-int +pkg syscall (freebsd-arm64), const IFT_COFFEE = 132 +pkg syscall (freebsd-arm64), const IFT_COFFEE ideal-int +pkg syscall (freebsd-arm64), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-arm64), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-arm64), const IFT_DCN = 141 +pkg syscall (freebsd-arm64), const IFT_DCN ideal-int +pkg syscall (freebsd-arm64), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-arm64), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-arm64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_DLSW = 74 +pkg syscall (freebsd-arm64), const IFT_DLSW ideal-int +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-arm64), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_DS0 = 81 +pkg syscall (freebsd-arm64), const IFT_DS0 ideal-int +pkg syscall (freebsd-arm64), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-arm64), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-arm64), const IFT_DS1FDL = 170 +pkg syscall (freebsd-arm64), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-arm64), const IFT_DS3 = 30 +pkg syscall (freebsd-arm64), const IFT_DS3 ideal-int +pkg syscall (freebsd-arm64), const IFT_DTM = 140 +pkg syscall (freebsd-arm64), const IFT_DTM ideal-int +pkg syscall (freebsd-arm64), const IFT_DVBASILN = 172 +pkg syscall (freebsd-arm64), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-arm64), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-arm64), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-arm64), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-arm64), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-arm64), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-arm64), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-arm64), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_ENC = 244 +pkg syscall (freebsd-arm64), const IFT_ENC ideal-int +pkg syscall (freebsd-arm64), const IFT_EON = 25 +pkg syscall (freebsd-arm64), const IFT_EON ideal-int +pkg syscall (freebsd-arm64), const IFT_EPLRS = 87 +pkg syscall (freebsd-arm64), const IFT_EPLRS ideal-int +pkg syscall (freebsd-arm64), const IFT_ESCON = 73 +pkg syscall (freebsd-arm64), const IFT_ESCON ideal-int +pkg syscall (freebsd-arm64), const IFT_ETHER = 6 +pkg syscall (freebsd-arm64), const IFT_ETHER ideal-int +pkg syscall (freebsd-arm64), const IFT_FAITH = 242 +pkg syscall (freebsd-arm64), const IFT_FAITH ideal-int +pkg syscall (freebsd-arm64), const IFT_FAST = 125 +pkg syscall (freebsd-arm64), const IFT_FAST ideal-int +pkg syscall (freebsd-arm64), const IFT_FASTETHER = 62 +pkg syscall (freebsd-arm64), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-arm64), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-arm64), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-arm64), const IFT_FDDI = 15 +pkg syscall (freebsd-arm64), const IFT_FDDI ideal-int +pkg syscall (freebsd-arm64), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-arm64), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-arm64), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-arm64), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-arm64), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-arm64), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-arm64), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-arm64), const IFT_FRELAY = 32 +pkg syscall (freebsd-arm64), const IFT_FRELAY ideal-int +pkg syscall (freebsd-arm64), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-arm64), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-arm64), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-arm64), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-arm64), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-arm64), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-arm64), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-arm64), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-arm64), const IFT_G703AT64K = 66 +pkg syscall (freebsd-arm64), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-arm64), const IFT_GIF = 240 +pkg syscall (freebsd-arm64), const IFT_GIF ideal-int +pkg syscall (freebsd-arm64), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-arm64), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-arm64), const IFT_GR303IDT = 178 +pkg syscall (freebsd-arm64), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-arm64), const IFT_GR303RDT = 177 +pkg syscall (freebsd-arm64), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-arm64), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-arm64), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-arm64), const IFT_H323PROXY = 165 +pkg syscall (freebsd-arm64), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-arm64), const IFT_HDH1822 = 3 +pkg syscall (freebsd-arm64), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-arm64), const IFT_HDLC = 118 +pkg syscall (freebsd-arm64), const IFT_HDLC ideal-int +pkg syscall (freebsd-arm64), const IFT_HDSL2 = 168 +pkg syscall (freebsd-arm64), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-arm64), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-arm64), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-arm64), const IFT_HIPPI = 47 +pkg syscall (freebsd-arm64), const IFT_HIPPI ideal-int +pkg syscall (freebsd-arm64), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-arm64), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-arm64), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-arm64), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-arm64), const IFT_HSSI = 46 +pkg syscall (freebsd-arm64), const IFT_HSSI ideal-int +pkg syscall (freebsd-arm64), const IFT_HY = 14 +pkg syscall (freebsd-arm64), const IFT_HY ideal-int +pkg syscall (freebsd-arm64), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-arm64), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-arm64), const IFT_IDSL = 154 +pkg syscall (freebsd-arm64), const IFT_IDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-arm64), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-arm64), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-arm64), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-arm64), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-arm64), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-arm64), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-arm64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-arm64), const IFT_IFGSN = 145 +pkg syscall (freebsd-arm64), const IFT_IFGSN ideal-int +pkg syscall (freebsd-arm64), const IFT_IMT = 190 +pkg syscall (freebsd-arm64), const IFT_IMT ideal-int +pkg syscall (freebsd-arm64), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-arm64), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-arm64), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-arm64), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-arm64), const IFT_IP = 126 +pkg syscall (freebsd-arm64), const IFT_IP ideal-int +pkg syscall (freebsd-arm64), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-arm64), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-arm64), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-arm64), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-arm64), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-arm64), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-arm64), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-arm64), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-arm64), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-arm64), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-arm64), const IFT_IPXIP = 249 +pkg syscall (freebsd-arm64), const IFT_IPXIP ideal-int +pkg syscall (freebsd-arm64), const IFT_ISDN = 63 +pkg syscall (freebsd-arm64), const IFT_ISDN ideal-int +pkg syscall (freebsd-arm64), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-arm64), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-arm64), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-arm64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-arm64), const IFT_ISDNS = 75 +pkg syscall (freebsd-arm64), const IFT_ISDNS ideal-int +pkg syscall (freebsd-arm64), const IFT_ISDNU = 76 +pkg syscall (freebsd-arm64), const IFT_ISDNU ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-arm64), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88023 = 7 +pkg syscall (freebsd-arm64), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88024 = 8 +pkg syscall (freebsd-arm64), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88025 = 9 +pkg syscall (freebsd-arm64), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-arm64), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-arm64), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-arm64), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-arm64), const IFT_ISO88026 = 10 +pkg syscall (freebsd-arm64), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-arm64), const IFT_ISUP = 179 +pkg syscall (freebsd-arm64), const IFT_ISUP ideal-int +pkg syscall (freebsd-arm64), const IFT_L2VLAN = 135 +pkg syscall (freebsd-arm64), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-arm64), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-arm64), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-arm64), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-arm64), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-arm64), const IFT_LAPB = 16 +pkg syscall (freebsd-arm64), const IFT_LAPB ideal-int +pkg syscall (freebsd-arm64), const IFT_LAPD = 77 +pkg syscall (freebsd-arm64), const IFT_LAPD ideal-int +pkg syscall (freebsd-arm64), const IFT_LAPF = 119 +pkg syscall (freebsd-arm64), const IFT_LAPF ideal-int +pkg syscall (freebsd-arm64), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-arm64), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-arm64), const IFT_LOOP = 24 +pkg syscall (freebsd-arm64), const IFT_LOOP ideal-int +pkg syscall (freebsd-arm64), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-arm64), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-arm64), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-arm64), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-arm64), const IFT_MIOX25 = 38 +pkg syscall (freebsd-arm64), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-arm64), const IFT_MODEM = 48 +pkg syscall (freebsd-arm64), const IFT_MODEM ideal-int +pkg syscall (freebsd-arm64), const IFT_MPC = 113 +pkg syscall (freebsd-arm64), const IFT_MPC ideal-int +pkg syscall (freebsd-arm64), const IFT_MPLS = 166 +pkg syscall (freebsd-arm64), const IFT_MPLS ideal-int +pkg syscall (freebsd-arm64), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-arm64), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_MSDSL = 143 +pkg syscall (freebsd-arm64), const IFT_MSDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_MVL = 191 +pkg syscall (freebsd-arm64), const IFT_MVL ideal-int +pkg syscall (freebsd-arm64), const IFT_MYRINET = 99 +pkg syscall (freebsd-arm64), const IFT_MYRINET ideal-int +pkg syscall (freebsd-arm64), const IFT_NFAS = 175 +pkg syscall (freebsd-arm64), const IFT_NFAS ideal-int +pkg syscall (freebsd-arm64), const IFT_NSIP = 27 +pkg syscall (freebsd-arm64), const IFT_NSIP ideal-int +pkg syscall (freebsd-arm64), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-arm64), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-arm64), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-arm64), const IFT_OTHER = 1 +pkg syscall (freebsd-arm64), const IFT_OTHER ideal-int +pkg syscall (freebsd-arm64), const IFT_P10 = 12 +pkg syscall (freebsd-arm64), const IFT_P10 ideal-int +pkg syscall (freebsd-arm64), const IFT_P80 = 13 +pkg syscall (freebsd-arm64), const IFT_P80 ideal-int +pkg syscall (freebsd-arm64), const IFT_PARA = 34 +pkg syscall (freebsd-arm64), const IFT_PARA ideal-int +pkg syscall (freebsd-arm64), const IFT_PFLOG = 246 +pkg syscall (freebsd-arm64), const IFT_PFLOG ideal-int +pkg syscall (freebsd-arm64), const IFT_PFSYNC = 247 +pkg syscall (freebsd-arm64), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-arm64), const IFT_PLC = 174 +pkg syscall (freebsd-arm64), const IFT_PLC ideal-int +pkg syscall (freebsd-arm64), const IFT_POS = 171 +pkg syscall (freebsd-arm64), const IFT_POS ideal-int +pkg syscall (freebsd-arm64), const IFT_PPP = 23 +pkg syscall (freebsd-arm64), const IFT_PPP ideal-int +pkg syscall (freebsd-arm64), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-arm64), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-arm64), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-arm64), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-arm64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPMUX = 54 +pkg syscall (freebsd-arm64), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-arm64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-arm64), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-arm64), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-arm64), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-arm64), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-arm64), const IFT_PVC = 241 +pkg syscall (freebsd-arm64), const IFT_PVC ideal-int +pkg syscall (freebsd-arm64), const IFT_QLLC = 68 +pkg syscall (freebsd-arm64), const IFT_QLLC ideal-int +pkg syscall (freebsd-arm64), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-arm64), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-arm64), const IFT_RADSL = 95 +pkg syscall (freebsd-arm64), const IFT_RADSL ideal-int +pkg syscall (freebsd-arm64), const IFT_REACHDSL = 192 +pkg syscall (freebsd-arm64), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_RFC1483 = 159 +pkg syscall (freebsd-arm64), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-arm64), const IFT_RS232 = 33 +pkg syscall (freebsd-arm64), const IFT_RS232 ideal-int +pkg syscall (freebsd-arm64), const IFT_RSRB = 79 +pkg syscall (freebsd-arm64), const IFT_RSRB ideal-int +pkg syscall (freebsd-arm64), const IFT_SDLC = 17 +pkg syscall (freebsd-arm64), const IFT_SDLC ideal-int +pkg syscall (freebsd-arm64), const IFT_SDSL = 96 +pkg syscall (freebsd-arm64), const IFT_SDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_SHDSL = 169 +pkg syscall (freebsd-arm64), const IFT_SHDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_SIP = 31 +pkg syscall (freebsd-arm64), const IFT_SIP ideal-int +pkg syscall (freebsd-arm64), const IFT_SLIP = 28 +pkg syscall (freebsd-arm64), const IFT_SLIP ideal-int +pkg syscall (freebsd-arm64), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-arm64), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-arm64), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-arm64), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-arm64), const IFT_SONET = 39 +pkg syscall (freebsd-arm64), const IFT_SONET ideal-int +pkg syscall (freebsd-arm64), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-arm64), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_SONETPATH = 50 +pkg syscall (freebsd-arm64), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-arm64), const IFT_SONETVT = 51 +pkg syscall (freebsd-arm64), const IFT_SONETVT ideal-int +pkg syscall (freebsd-arm64), const IFT_SRP = 151 +pkg syscall (freebsd-arm64), const IFT_SRP ideal-int +pkg syscall (freebsd-arm64), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-arm64), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-arm64), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-arm64), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-arm64), const IFT_STARLAN = 11 +pkg syscall (freebsd-arm64), const IFT_STARLAN ideal-int +pkg syscall (freebsd-arm64), const IFT_STF = 215 +pkg syscall (freebsd-arm64), const IFT_STF ideal-int +pkg syscall (freebsd-arm64), const IFT_T1 = 18 +pkg syscall (freebsd-arm64), const IFT_T1 ideal-int +pkg syscall (freebsd-arm64), const IFT_TDLC = 116 +pkg syscall (freebsd-arm64), const IFT_TDLC ideal-int +pkg syscall (freebsd-arm64), const IFT_TERMPAD = 91 +pkg syscall (freebsd-arm64), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-arm64), const IFT_TR008 = 176 +pkg syscall (freebsd-arm64), const IFT_TR008 ideal-int +pkg syscall (freebsd-arm64), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-arm64), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-arm64), const IFT_TUNNEL = 131 +pkg syscall (freebsd-arm64), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-arm64), const IFT_ULTRA = 29 +pkg syscall (freebsd-arm64), const IFT_ULTRA ideal-int +pkg syscall (freebsd-arm64), const IFT_USB = 160 +pkg syscall (freebsd-arm64), const IFT_USB ideal-int +pkg syscall (freebsd-arm64), const IFT_V11 = 64 +pkg syscall (freebsd-arm64), const IFT_V11 ideal-int +pkg syscall (freebsd-arm64), const IFT_V35 = 45 +pkg syscall (freebsd-arm64), const IFT_V35 ideal-int +pkg syscall (freebsd-arm64), const IFT_V36 = 65 +pkg syscall (freebsd-arm64), const IFT_V36 ideal-int +pkg syscall (freebsd-arm64), const IFT_V37 = 120 +pkg syscall (freebsd-arm64), const IFT_V37 ideal-int +pkg syscall (freebsd-arm64), const IFT_VDSL = 97 +pkg syscall (freebsd-arm64), const IFT_VDSL ideal-int +pkg syscall (freebsd-arm64), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-arm64), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEEM = 100 +pkg syscall (freebsd-arm64), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-arm64), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-arm64), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-arm64), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-arm64), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-arm64), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-arm64), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-arm64), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-arm64), const IFT_X213 = 93 +pkg syscall (freebsd-arm64), const IFT_X213 ideal-int +pkg syscall (freebsd-arm64), const IFT_X25 = 5 +pkg syscall (freebsd-arm64), const IFT_X25 ideal-int +pkg syscall (freebsd-arm64), const IFT_X25DDN = 4 +pkg syscall (freebsd-arm64), const IFT_X25DDN ideal-int +pkg syscall (freebsd-arm64), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-arm64), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-arm64), const IFT_X25MLP = 121 +pkg syscall (freebsd-arm64), const IFT_X25MLP ideal-int +pkg syscall (freebsd-arm64), const IFT_X25PLE = 40 +pkg syscall (freebsd-arm64), const IFT_X25PLE ideal-int +pkg syscall (freebsd-arm64), const IFT_XETHER = 26 +pkg syscall (freebsd-arm64), const IFT_XETHER ideal-int +pkg syscall (freebsd-arm64), const IGNBRK = 1 +pkg syscall (freebsd-arm64), const IGNBRK ideal-int +pkg syscall (freebsd-arm64), const IGNCR = 128 +pkg syscall (freebsd-arm64), const IGNCR ideal-int +pkg syscall (freebsd-arm64), const IGNPAR = 4 +pkg syscall (freebsd-arm64), const IGNPAR ideal-int +pkg syscall (freebsd-arm64), const IMAXBEL = 8192 +pkg syscall (freebsd-arm64), const IMAXBEL ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-arm64), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-arm64), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-arm64), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-arm64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-arm64), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-arm64), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-arm64), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-arm64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-arm64), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-arm64), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-arm64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-arm64), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-arm64), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-arm64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-arm64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-arm64), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-arm64), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-arm64), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-arm64), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-arm64), const INLCR = 64 +pkg syscall (freebsd-arm64), const INLCR ideal-int +pkg syscall (freebsd-arm64), const INPCK = 16 +pkg syscall (freebsd-arm64), const INPCK ideal-int +pkg syscall (freebsd-arm64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-arm64), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-arm64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm64), const IP_BINDANY = 24 +pkg syscall (freebsd-arm64), const IP_BINDANY ideal-int +pkg syscall (freebsd-arm64), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-arm64), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-arm64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-arm64), const IP_DF = 16384 +pkg syscall (freebsd-arm64), const IP_DF ideal-int +pkg syscall (freebsd-arm64), const IP_DONTFRAG = 67 +pkg syscall (freebsd-arm64), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-arm64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-arm64), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-arm64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-arm64), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-arm64), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-arm64), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-arm64), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-arm64), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-arm64), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-arm64), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-arm64), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-arm64), const IP_FAITH = 22 +pkg syscall (freebsd-arm64), const IP_FAITH ideal-int +pkg syscall (freebsd-arm64), const IP_FW_ADD = 50 +pkg syscall (freebsd-arm64), const IP_FW_ADD ideal-int +pkg syscall (freebsd-arm64), const IP_FW_DEL = 51 +pkg syscall (freebsd-arm64), const IP_FW_DEL ideal-int +pkg syscall (freebsd-arm64), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-arm64), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-arm64), const IP_FW_GET = 54 +pkg syscall (freebsd-arm64), const IP_FW_GET ideal-int +pkg syscall (freebsd-arm64), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-arm64), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-arm64), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-arm64), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-arm64), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-arm64), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-arm64), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-arm64), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-arm64), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-arm64), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-arm64), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-arm64), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-arm64), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-arm64), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-arm64), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-arm64), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-arm64), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-arm64), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-arm64), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-arm64), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-arm64), const IP_FW_ZERO = 53 +pkg syscall (freebsd-arm64), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-arm64), const IP_FW3 = 48 +pkg syscall (freebsd-arm64), const IP_FW3 ideal-int +pkg syscall (freebsd-arm64), const IP_HDRINCL = 2 +pkg syscall (freebsd-arm64), const IP_HDRINCL ideal-int +pkg syscall (freebsd-arm64), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-arm64), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm64), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm64), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-arm64), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-arm64), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-arm64), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-arm64), const IP_MF = 8192 +pkg syscall (freebsd-arm64), const IP_MF ideal-int +pkg syscall (freebsd-arm64), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm64), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64), const IP_MINTTL = 66 +pkg syscall (freebsd-arm64), const IP_MINTTL ideal-int +pkg syscall (freebsd-arm64), const IP_MSFILTER = 74 +pkg syscall (freebsd-arm64), const IP_MSFILTER ideal-int +pkg syscall (freebsd-arm64), const IP_MSS = 576 +pkg syscall (freebsd-arm64), const IP_MSS ideal-int +pkg syscall (freebsd-arm64), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-arm64), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm64), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-arm64), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-arm64), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-arm64), const IP_OFFMASK = 8191 +pkg syscall (freebsd-arm64), const IP_OFFMASK ideal-int +pkg syscall (freebsd-arm64), const IP_ONESBCAST = 23 +pkg syscall (freebsd-arm64), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-arm64), const IP_OPTIONS = 1 +pkg syscall (freebsd-arm64), const IP_OPTIONS ideal-int +pkg syscall (freebsd-arm64), const IP_PORTRANGE = 19 +pkg syscall (freebsd-arm64), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-arm64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm64), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm64), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-arm64), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-arm64), const IP_RECVIF = 20 +pkg syscall (freebsd-arm64), const IP_RECVIF ideal-int +pkg syscall (freebsd-arm64), const IP_RECVOPTS = 5 +pkg syscall (freebsd-arm64), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-arm64), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-arm64), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-arm64), const IP_RECVTOS = 68 +pkg syscall (freebsd-arm64), const IP_RECVTOS ideal-int +pkg syscall (freebsd-arm64), const IP_RECVTTL = 65 +pkg syscall (freebsd-arm64), const IP_RECVTTL ideal-int +pkg syscall (freebsd-arm64), const IP_RETOPTS = 8 +pkg syscall (freebsd-arm64), const IP_RETOPTS ideal-int +pkg syscall (freebsd-arm64), const IP_RF = 32768 +pkg syscall (freebsd-arm64), const IP_RF ideal-int +pkg syscall (freebsd-arm64), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-arm64), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-arm64), const IP_RSVP_ON = 15 +pkg syscall (freebsd-arm64), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-arm64), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-arm64), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-arm64), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-arm64), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-arm64), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-arm64), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-arm64), const IP_TOS = 3 +pkg syscall (freebsd-arm64), const IP_TTL = 4 +pkg syscall (freebsd-arm64), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-arm64), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_3PC = 34 +pkg syscall (freebsd-arm64), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-arm64), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_AH = 51 +pkg syscall (freebsd-arm64), const IPPROTO_AH ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-arm64), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_APES = 99 +pkg syscall (freebsd-arm64), const IPPROTO_APES ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-arm64), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-arm64), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_BHA = 49 +pkg syscall (freebsd-arm64), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_BLT = 30 +pkg syscall (freebsd-arm64), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-arm64), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CARP = 112 +pkg syscall (freebsd-arm64), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-arm64), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-arm64), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-arm64), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-arm64), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-arm64), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_DDP = 37 +pkg syscall (freebsd-arm64), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_DGP = 86 +pkg syscall (freebsd-arm64), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-arm64), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_DONE = 257 +pkg syscall (freebsd-arm64), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-arm64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_EGP = 8 +pkg syscall (freebsd-arm64), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-arm64), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-arm64), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_EON = 80 +pkg syscall (freebsd-arm64), const IPPROTO_EON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ESP = 50 +pkg syscall (freebsd-arm64), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-arm64), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-arm64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_GGP = 3 +pkg syscall (freebsd-arm64), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-arm64), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_GRE = 47 +pkg syscall (freebsd-arm64), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-arm64), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_HMP = 20 +pkg syscall (freebsd-arm64), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-arm64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-arm64), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-arm64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IDP = 22 +pkg syscall (freebsd-arm64), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-arm64), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-arm64), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-arm64), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IGP = 85 +pkg syscall (freebsd-arm64), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-arm64), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IL = 40 +pkg syscall (freebsd-arm64), const IPPROTO_IL ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-arm64), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_INP = 32 +pkg syscall (freebsd-arm64), const IPPROTO_INP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-arm64), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-arm64), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-arm64), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-arm64), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-arm64), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-arm64), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-arm64), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-arm64), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_LARP = 91 +pkg syscall (freebsd-arm64), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-arm64), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-arm64), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MAX = 256 +pkg syscall (freebsd-arm64), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-arm64), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-arm64), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MH = 135 +pkg syscall (freebsd-arm64), const IPPROTO_MH ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-arm64), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MICP = 95 +pkg syscall (freebsd-arm64), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-arm64), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-arm64), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MTP = 92 +pkg syscall (freebsd-arm64), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_MUX = 18 +pkg syscall (freebsd-arm64), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ND = 77 +pkg syscall (freebsd-arm64), const IPPROTO_ND ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-arm64), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_NONE = 59 +pkg syscall (freebsd-arm64), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_NSP = 31 +pkg syscall (freebsd-arm64), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-arm64), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-arm64), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-arm64), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-arm64), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PGM = 113 +pkg syscall (freebsd-arm64), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-arm64), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PIM = 103 +pkg syscall (freebsd-arm64), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PRM = 21 +pkg syscall (freebsd-arm64), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PUP = 12 +pkg syscall (freebsd-arm64), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_PVP = 75 +pkg syscall (freebsd-arm64), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_RAW = 255 +pkg syscall (freebsd-arm64), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-arm64), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_RDP = 27 +pkg syscall (freebsd-arm64), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-arm64), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-arm64), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_RVD = 66 +pkg syscall (freebsd-arm64), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-arm64), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-arm64), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-arm64), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-arm64), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-arm64), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SEND = 259 +pkg syscall (freebsd-arm64), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SEP = 33 +pkg syscall (freebsd-arm64), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-arm64), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-arm64), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-arm64), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_ST = 7 +pkg syscall (freebsd-arm64), const IPPROTO_ST ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-arm64), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-arm64), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TCF = 87 +pkg syscall (freebsd-arm64), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-arm64), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TP = 29 +pkg syscall (freebsd-arm64), const IPPROTO_TP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-arm64), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-arm64), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-arm64), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_TTP = 84 +pkg syscall (freebsd-arm64), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_VINES = 83 +pkg syscall (freebsd-arm64), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_VISA = 70 +pkg syscall (freebsd-arm64), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-arm64), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-arm64), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-arm64), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_WSN = 74 +pkg syscall (freebsd-arm64), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_XNET = 15 +pkg syscall (freebsd-arm64), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-arm64), const IPPROTO_XTP = 36 +pkg syscall (freebsd-arm64), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-arm64), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-arm64), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-arm64), const IPV6_BINDANY = 64 +pkg syscall (freebsd-arm64), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-arm64), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-arm64), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-arm64), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-arm64), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-arm64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm64), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-arm64), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-arm64), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-arm64), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-arm64), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-arm64), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-arm64), const IPV6_FAITH = 29 +pkg syscall (freebsd-arm64), const IPV6_FAITH ideal-int +pkg syscall (freebsd-arm64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-arm64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-arm64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-arm64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-arm64), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-arm64), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-arm64), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-arm64), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-arm64), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-arm64), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-arm64), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-arm64), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-arm64), const IPV6_FW_GET = 34 +pkg syscall (freebsd-arm64), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-arm64), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-arm64), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-arm64), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-arm64), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-arm64), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-arm64), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-arm64), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-arm64), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-arm64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-arm64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm64), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-arm64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-arm64), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm64), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-arm64), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-arm64), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-arm64), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-arm64), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-arm64), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-arm64), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm64), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64), const IPV6_MMTU = 1280 +pkg syscall (freebsd-arm64), const IPV6_MMTU ideal-int +pkg syscall (freebsd-arm64), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-arm64), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-arm64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-arm64), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-arm64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm64), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-arm64), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-arm64), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-arm64), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-arm64), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-arm64), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm64), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-arm64), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-arm64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-arm64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-arm64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-arm64), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-arm64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-arm64), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-arm64), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-arm64), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-arm64), const IPV6_RTHDR = 51 +pkg syscall (freebsd-arm64), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-arm64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-arm64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-arm64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-arm64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-arm64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-arm64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-arm64), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-arm64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-arm64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-arm64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-arm64), const IPV6_TCLASS = 61 +pkg syscall (freebsd-arm64), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-arm64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-arm64), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-arm64), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-arm64), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-arm64), const IPV6_VERSION = 96 +pkg syscall (freebsd-arm64), const IPV6_VERSION ideal-int +pkg syscall (freebsd-arm64), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-arm64), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-arm64), const ISIG = 128 +pkg syscall (freebsd-arm64), const ISIG ideal-int +pkg syscall (freebsd-arm64), const ISTRIP = 32 +pkg syscall (freebsd-arm64), const ISTRIP ideal-int +pkg syscall (freebsd-arm64), const IXANY = 2048 +pkg syscall (freebsd-arm64), const IXANY ideal-int +pkg syscall (freebsd-arm64), const IXOFF = 1024 +pkg syscall (freebsd-arm64), const IXOFF ideal-int +pkg syscall (freebsd-arm64), const IXON = 512 +pkg syscall (freebsd-arm64), const IXON ideal-int +pkg syscall (freebsd-arm64), const LOCK_EX = 2 +pkg syscall (freebsd-arm64), const LOCK_EX ideal-int +pkg syscall (freebsd-arm64), const LOCK_NB = 4 +pkg syscall (freebsd-arm64), const LOCK_NB ideal-int +pkg syscall (freebsd-arm64), const LOCK_SH = 1 +pkg syscall (freebsd-arm64), const LOCK_SH ideal-int +pkg syscall (freebsd-arm64), const LOCK_UN = 8 +pkg syscall (freebsd-arm64), const LOCK_UN ideal-int +pkg syscall (freebsd-arm64), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-arm64), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-arm64), const MADV_CORE = 9 +pkg syscall (freebsd-arm64), const MADV_CORE ideal-int +pkg syscall (freebsd-arm64), const MADV_DONTNEED = 4 +pkg syscall (freebsd-arm64), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-arm64), const MADV_FREE = 5 +pkg syscall (freebsd-arm64), const MADV_FREE ideal-int +pkg syscall (freebsd-arm64), const MADV_NOCORE = 8 +pkg syscall (freebsd-arm64), const MADV_NOCORE ideal-int +pkg syscall (freebsd-arm64), const MADV_NORMAL = 0 +pkg syscall (freebsd-arm64), const MADV_NORMAL ideal-int +pkg syscall (freebsd-arm64), const MADV_NOSYNC = 6 +pkg syscall (freebsd-arm64), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-arm64), const MADV_PROTECT = 10 +pkg syscall (freebsd-arm64), const MADV_PROTECT ideal-int +pkg syscall (freebsd-arm64), const MADV_RANDOM = 1 +pkg syscall (freebsd-arm64), const MADV_RANDOM ideal-int +pkg syscall (freebsd-arm64), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-arm64), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-arm64), const MADV_WILLNEED = 3 +pkg syscall (freebsd-arm64), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-arm64), const MAP_32BIT = 524288 +pkg syscall (freebsd-arm64), const MAP_32BIT ideal-int +pkg syscall (freebsd-arm64), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-arm64), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-arm64), const MAP_ANON = 4096 +pkg syscall (freebsd-arm64), const MAP_ANON ideal-int +pkg syscall (freebsd-arm64), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-arm64), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-arm64), const MAP_COPY = 2 +pkg syscall (freebsd-arm64), const MAP_COPY ideal-int +pkg syscall (freebsd-arm64), const MAP_FILE = 0 +pkg syscall (freebsd-arm64), const MAP_FILE ideal-int +pkg syscall (freebsd-arm64), const MAP_FIXED = 16 +pkg syscall (freebsd-arm64), const MAP_FIXED ideal-int +pkg syscall (freebsd-arm64), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-arm64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-arm64), const MAP_NOCORE = 131072 +pkg syscall (freebsd-arm64), const MAP_NOCORE ideal-int +pkg syscall (freebsd-arm64), const MAP_NORESERVE = 64 +pkg syscall (freebsd-arm64), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-arm64), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-arm64), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-arm64), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-arm64), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-arm64), const MAP_PRIVATE = 2 +pkg syscall (freebsd-arm64), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-arm64), const MAP_RENAME = 32 +pkg syscall (freebsd-arm64), const MAP_RENAME ideal-int +pkg syscall (freebsd-arm64), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-arm64), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-arm64), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-arm64), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-arm64), const MAP_SHARED = 1 +pkg syscall (freebsd-arm64), const MAP_SHARED ideal-int +pkg syscall (freebsd-arm64), const MAP_STACK = 1024 +pkg syscall (freebsd-arm64), const MAP_STACK ideal-int +pkg syscall (freebsd-arm64), const MCL_CURRENT = 1 +pkg syscall (freebsd-arm64), const MCL_CURRENT ideal-int +pkg syscall (freebsd-arm64), const MCL_FUTURE = 2 +pkg syscall (freebsd-arm64), const MCL_FUTURE ideal-int +pkg syscall (freebsd-arm64), const MS_ASYNC = 1 +pkg syscall (freebsd-arm64), const MS_ASYNC ideal-int +pkg syscall (freebsd-arm64), const MS_INVALIDATE = 2 +pkg syscall (freebsd-arm64), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-arm64), const MS_SYNC = 0 +pkg syscall (freebsd-arm64), const MS_SYNC ideal-int +pkg syscall (freebsd-arm64), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-arm64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-arm64), const MSG_COMPAT = 32768 +pkg syscall (freebsd-arm64), const MSG_COMPAT ideal-int +pkg syscall (freebsd-arm64), const MSG_CTRUNC = 32 +pkg syscall (freebsd-arm64), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-arm64), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-arm64), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-arm64), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-arm64), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-arm64), const MSG_EOF = 256 +pkg syscall (freebsd-arm64), const MSG_EOF ideal-int +pkg syscall (freebsd-arm64), const MSG_EOR = 8 +pkg syscall (freebsd-arm64), const MSG_EOR ideal-int +pkg syscall (freebsd-arm64), const MSG_NBIO = 16384 +pkg syscall (freebsd-arm64), const MSG_NBIO ideal-int +pkg syscall (freebsd-arm64), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-arm64), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-arm64), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-arm64), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-arm64), const MSG_OOB = 1 +pkg syscall (freebsd-arm64), const MSG_OOB ideal-int +pkg syscall (freebsd-arm64), const MSG_PEEK = 2 +pkg syscall (freebsd-arm64), const MSG_PEEK ideal-int +pkg syscall (freebsd-arm64), const MSG_TRUNC = 16 +pkg syscall (freebsd-arm64), const MSG_TRUNC ideal-int +pkg syscall (freebsd-arm64), const MSG_WAITALL = 64 +pkg syscall (freebsd-arm64), const MSG_WAITALL ideal-int +pkg syscall (freebsd-arm64), const NAME_MAX = 255 +pkg syscall (freebsd-arm64), const NAME_MAX ideal-int +pkg syscall (freebsd-arm64), const NET_RT_DUMP = 1 +pkg syscall (freebsd-arm64), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-arm64), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-arm64), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-arm64), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-arm64), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-arm64), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-arm64), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-arm64), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-arm64), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-arm64), const NET_RT_MAXID = 6 +pkg syscall (freebsd-arm64), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-arm64), const NOFLSH = 2147483648 +pkg syscall (freebsd-arm64), const NOFLSH ideal-int +pkg syscall (freebsd-arm64), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-arm64), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-arm64), const NOTE_CHILD = 4 +pkg syscall (freebsd-arm64), const NOTE_CHILD ideal-int +pkg syscall (freebsd-arm64), const NOTE_DELETE = 1 +pkg syscall (freebsd-arm64), const NOTE_DELETE ideal-int +pkg syscall (freebsd-arm64), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-arm64), const NOTE_EXEC ideal-int +pkg syscall (freebsd-arm64), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-arm64), const NOTE_EXIT ideal-int +pkg syscall (freebsd-arm64), const NOTE_EXTEND = 4 +pkg syscall (freebsd-arm64), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-arm64), const NOTE_FFAND ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-arm64), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-arm64), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-arm64), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFNOP = 0 +pkg syscall (freebsd-arm64), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-arm64), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-arm64), const NOTE_FFOR ideal-int +pkg syscall (freebsd-arm64), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-arm64), const NOTE_FORK ideal-int +pkg syscall (freebsd-arm64), const NOTE_LINK = 16 +pkg syscall (freebsd-arm64), const NOTE_LINK ideal-int +pkg syscall (freebsd-arm64), const NOTE_LOWAT = 1 +pkg syscall (freebsd-arm64), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-arm64), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-arm64), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-arm64), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-arm64), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-arm64), const NOTE_RENAME = 32 +pkg syscall (freebsd-arm64), const NOTE_RENAME ideal-int +pkg syscall (freebsd-arm64), const NOTE_REVOKE = 64 +pkg syscall (freebsd-arm64), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-arm64), const NOTE_TRACK = 1 +pkg syscall (freebsd-arm64), const NOTE_TRACK ideal-int +pkg syscall (freebsd-arm64), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-arm64), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-arm64), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-arm64), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-arm64), const NOTE_WRITE = 2 +pkg syscall (freebsd-arm64), const NOTE_WRITE ideal-int +pkg syscall (freebsd-arm64), const O_ACCMODE = 3 +pkg syscall (freebsd-arm64), const O_ACCMODE ideal-int +pkg syscall (freebsd-arm64), const O_APPEND = 8 +pkg syscall (freebsd-arm64), const O_ASYNC = 64 +pkg syscall (freebsd-arm64), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-arm64), const O_CREAT = 512 +pkg syscall (freebsd-arm64), const O_DIRECT = 65536 +pkg syscall (freebsd-arm64), const O_DIRECT ideal-int +pkg syscall (freebsd-arm64), const O_DIRECTORY = 131072 +pkg syscall (freebsd-arm64), const O_DIRECTORY ideal-int +pkg syscall (freebsd-arm64), const O_EXCL = 2048 +pkg syscall (freebsd-arm64), const O_EXEC = 262144 +pkg syscall (freebsd-arm64), const O_EXEC ideal-int +pkg syscall (freebsd-arm64), const O_EXLOCK = 32 +pkg syscall (freebsd-arm64), const O_EXLOCK ideal-int +pkg syscall (freebsd-arm64), const O_FSYNC = 128 +pkg syscall (freebsd-arm64), const O_FSYNC ideal-int +pkg syscall (freebsd-arm64), const O_NDELAY = 4 +pkg syscall (freebsd-arm64), const O_NDELAY ideal-int +pkg syscall (freebsd-arm64), const O_NOCTTY = 32768 +pkg syscall (freebsd-arm64), const O_NOFOLLOW = 256 +pkg syscall (freebsd-arm64), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-arm64), const O_NONBLOCK = 4 +pkg syscall (freebsd-arm64), const O_SHLOCK = 16 +pkg syscall (freebsd-arm64), const O_SHLOCK ideal-int +pkg syscall (freebsd-arm64), const O_SYNC = 128 +pkg syscall (freebsd-arm64), const O_TRUNC = 1024 +pkg syscall (freebsd-arm64), const O_TTY_INIT = 524288 +pkg syscall (freebsd-arm64), const O_TTY_INIT ideal-int +pkg syscall (freebsd-arm64), const OCRNL = 16 +pkg syscall (freebsd-arm64), const OCRNL ideal-int +pkg syscall (freebsd-arm64), const ONLCR = 2 +pkg syscall (freebsd-arm64), const ONLCR ideal-int +pkg syscall (freebsd-arm64), const ONLRET = 64 +pkg syscall (freebsd-arm64), const ONLRET ideal-int +pkg syscall (freebsd-arm64), const ONOCR = 32 +pkg syscall (freebsd-arm64), const ONOCR ideal-int +pkg syscall (freebsd-arm64), const ONOEOT = 8 +pkg syscall (freebsd-arm64), const ONOEOT ideal-int +pkg syscall (freebsd-arm64), const OPOST = 1 +pkg syscall (freebsd-arm64), const OPOST ideal-int +pkg syscall (freebsd-arm64), const PARENB = 4096 +pkg syscall (freebsd-arm64), const PARENB ideal-int +pkg syscall (freebsd-arm64), const PARMRK = 8 +pkg syscall (freebsd-arm64), const PARMRK ideal-int +pkg syscall (freebsd-arm64), const PARODD = 8192 +pkg syscall (freebsd-arm64), const PARODD ideal-int +pkg syscall (freebsd-arm64), const PENDIN = 536870912 +pkg syscall (freebsd-arm64), const PENDIN ideal-int +pkg syscall (freebsd-arm64), const PRIO_PGRP = 1 +pkg syscall (freebsd-arm64), const PRIO_PGRP ideal-int +pkg syscall (freebsd-arm64), const PRIO_PROCESS = 0 +pkg syscall (freebsd-arm64), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-arm64), const PRIO_USER = 2 +pkg syscall (freebsd-arm64), const PRIO_USER ideal-int +pkg syscall (freebsd-arm64), const PROT_EXEC = 4 +pkg syscall (freebsd-arm64), const PROT_EXEC ideal-int +pkg syscall (freebsd-arm64), const PROT_NONE = 0 +pkg syscall (freebsd-arm64), const PROT_NONE ideal-int +pkg syscall (freebsd-arm64), const PROT_READ = 1 +pkg syscall (freebsd-arm64), const PROT_READ ideal-int +pkg syscall (freebsd-arm64), const PROT_WRITE = 2 +pkg syscall (freebsd-arm64), const PROT_WRITE ideal-int +pkg syscall (freebsd-arm64), const PTRACE_CONT = 7 +pkg syscall (freebsd-arm64), const PTRACE_CONT ideal-int +pkg syscall (freebsd-arm64), const PTRACE_KILL = 8 +pkg syscall (freebsd-arm64), const PTRACE_KILL ideal-int +pkg syscall (freebsd-arm64), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-arm64), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-arm64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-arm64), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_AS = 10 +pkg syscall (freebsd-arm64), const RLIMIT_AS ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_CORE = 4 +pkg syscall (freebsd-arm64), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_CPU = 0 +pkg syscall (freebsd-arm64), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_DATA = 2 +pkg syscall (freebsd-arm64), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-arm64), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-arm64), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-arm64), const RLIMIT_STACK = 3 +pkg syscall (freebsd-arm64), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-arm64), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-arm64), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-arm64), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-arm64), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-arm64), const RT_NORTREF = 2 +pkg syscall (freebsd-arm64), const RT_NORTREF ideal-int +pkg syscall (freebsd-arm64), const RTA_AUTHOR = 64 +pkg syscall (freebsd-arm64), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-arm64), const RTA_BRD = 128 +pkg syscall (freebsd-arm64), const RTA_BRD ideal-int +pkg syscall (freebsd-arm64), const RTA_DST = 1 +pkg syscall (freebsd-arm64), const RTA_DST ideal-int +pkg syscall (freebsd-arm64), const RTA_GATEWAY = 2 +pkg syscall (freebsd-arm64), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-arm64), const RTA_GENMASK = 8 +pkg syscall (freebsd-arm64), const RTA_GENMASK ideal-int +pkg syscall (freebsd-arm64), const RTA_IFA = 32 +pkg syscall (freebsd-arm64), const RTA_IFA ideal-int +pkg syscall (freebsd-arm64), const RTA_IFP = 16 +pkg syscall (freebsd-arm64), const RTA_IFP ideal-int +pkg syscall (freebsd-arm64), const RTA_NETMASK = 4 +pkg syscall (freebsd-arm64), const RTA_NETMASK ideal-int +pkg syscall (freebsd-arm64), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-arm64), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-arm64), const RTAX_BRD = 7 +pkg syscall (freebsd-arm64), const RTAX_BRD ideal-int +pkg syscall (freebsd-arm64), const RTAX_DST = 0 +pkg syscall (freebsd-arm64), const RTAX_DST ideal-int +pkg syscall (freebsd-arm64), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-arm64), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-arm64), const RTAX_GENMASK = 3 +pkg syscall (freebsd-arm64), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-arm64), const RTAX_IFA = 5 +pkg syscall (freebsd-arm64), const RTAX_IFA ideal-int +pkg syscall (freebsd-arm64), const RTAX_IFP = 4 +pkg syscall (freebsd-arm64), const RTAX_IFP ideal-int +pkg syscall (freebsd-arm64), const RTAX_MAX = 8 +pkg syscall (freebsd-arm64), const RTAX_MAX ideal-int +pkg syscall (freebsd-arm64), const RTAX_NETMASK = 2 +pkg syscall (freebsd-arm64), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-arm64), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-arm64), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-arm64), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-arm64), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-arm64), const RTF_DONE = 64 +pkg syscall (freebsd-arm64), const RTF_DONE ideal-int +pkg syscall (freebsd-arm64), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-arm64), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-arm64), const RTF_FMASK = 268752904 +pkg syscall (freebsd-arm64), const RTF_FMASK ideal-int +pkg syscall (freebsd-arm64), const RTF_GATEWAY = 2 +pkg syscall (freebsd-arm64), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-arm64), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-arm64), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-arm64), const RTF_HOST = 4 +pkg syscall (freebsd-arm64), const RTF_HOST ideal-int +pkg syscall (freebsd-arm64), const RTF_LLDATA = 1024 +pkg syscall (freebsd-arm64), const RTF_LLDATA ideal-int +pkg syscall (freebsd-arm64), const RTF_LLINFO = 1024 +pkg syscall (freebsd-arm64), const RTF_LLINFO ideal-int +pkg syscall (freebsd-arm64), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-arm64), const RTF_LOCAL ideal-int +pkg syscall (freebsd-arm64), const RTF_MODIFIED = 32 +pkg syscall (freebsd-arm64), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-arm64), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-arm64), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-arm64), const RTF_PINNED = 1048576 +pkg syscall (freebsd-arm64), const RTF_PINNED ideal-int +pkg syscall (freebsd-arm64), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-arm64), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-arm64), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-arm64), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-arm64), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-arm64), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-arm64), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-arm64), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-arm64), const RTF_REJECT = 8 +pkg syscall (freebsd-arm64), const RTF_REJECT ideal-int +pkg syscall (freebsd-arm64), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-arm64), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-arm64), const RTF_STATIC = 2048 +pkg syscall (freebsd-arm64), const RTF_STATIC ideal-int +pkg syscall (freebsd-arm64), const RTF_STICKY = 268435456 +pkg syscall (freebsd-arm64), const RTF_STICKY ideal-int +pkg syscall (freebsd-arm64), const RTF_UP = 1 +pkg syscall (freebsd-arm64), const RTF_UP ideal-int +pkg syscall (freebsd-arm64), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-arm64), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-arm64), const RTM_ADD = 1 +pkg syscall (freebsd-arm64), const RTM_ADD ideal-int +pkg syscall (freebsd-arm64), const RTM_CHANGE = 3 +pkg syscall (freebsd-arm64), const RTM_CHANGE ideal-int +pkg syscall (freebsd-arm64), const RTM_DELADDR = 13 +pkg syscall (freebsd-arm64), const RTM_DELADDR ideal-int +pkg syscall (freebsd-arm64), const RTM_DELETE = 2 +pkg syscall (freebsd-arm64), const RTM_DELETE ideal-int +pkg syscall (freebsd-arm64), const RTM_DELMADDR = 16 +pkg syscall (freebsd-arm64), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-arm64), const RTM_GET = 4 +pkg syscall (freebsd-arm64), const RTM_GET ideal-int +pkg syscall (freebsd-arm64), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-arm64), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-arm64), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-arm64), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-arm64), const RTM_IFINFO = 14 +pkg syscall (freebsd-arm64), const RTM_IFINFO ideal-int +pkg syscall (freebsd-arm64), const RTM_LOCK = 8 +pkg syscall (freebsd-arm64), const RTM_LOCK ideal-int +pkg syscall (freebsd-arm64), const RTM_LOSING = 5 +pkg syscall (freebsd-arm64), const RTM_LOSING ideal-int +pkg syscall (freebsd-arm64), const RTM_MISS = 7 +pkg syscall (freebsd-arm64), const RTM_MISS ideal-int +pkg syscall (freebsd-arm64), const RTM_NEWADDR = 12 +pkg syscall (freebsd-arm64), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-arm64), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-arm64), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-arm64), const RTM_OLDADD = 9 +pkg syscall (freebsd-arm64), const RTM_OLDADD ideal-int +pkg syscall (freebsd-arm64), const RTM_OLDDEL = 10 +pkg syscall (freebsd-arm64), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-arm64), const RTM_REDIRECT = 6 +pkg syscall (freebsd-arm64), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-arm64), const RTM_RESOLVE = 11 +pkg syscall (freebsd-arm64), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-arm64), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-arm64), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-arm64), const RTM_VERSION = 5 +pkg syscall (freebsd-arm64), const RTM_VERSION ideal-int +pkg syscall (freebsd-arm64), const RTV_EXPIRE = 4 +pkg syscall (freebsd-arm64), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-arm64), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-arm64), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-arm64), const RTV_MTU = 1 +pkg syscall (freebsd-arm64), const RTV_MTU ideal-int +pkg syscall (freebsd-arm64), const RTV_RPIPE = 8 +pkg syscall (freebsd-arm64), const RTV_RPIPE ideal-int +pkg syscall (freebsd-arm64), const RTV_RTT = 64 +pkg syscall (freebsd-arm64), const RTV_RTT ideal-int +pkg syscall (freebsd-arm64), const RTV_RTTVAR = 128 +pkg syscall (freebsd-arm64), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-arm64), const RTV_SPIPE = 16 +pkg syscall (freebsd-arm64), const RTV_SPIPE ideal-int +pkg syscall (freebsd-arm64), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-arm64), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-arm64), const RTV_WEIGHT = 256 +pkg syscall (freebsd-arm64), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-arm64), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-arm64), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-arm64), const RUSAGE_SELF = 0 +pkg syscall (freebsd-arm64), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-arm64), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-arm64), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-arm64), const S_IFMT = 61440 +pkg syscall (freebsd-arm64), const S_IRWXG = 56 +pkg syscall (freebsd-arm64), const S_IRWXG ideal-int +pkg syscall (freebsd-arm64), const S_IRWXO = 7 +pkg syscall (freebsd-arm64), const S_IRWXO ideal-int +pkg syscall (freebsd-arm64), const SCM_BINTIME = 4 +pkg syscall (freebsd-arm64), const SCM_BINTIME ideal-int +pkg syscall (freebsd-arm64), const SCM_CREDS = 3 +pkg syscall (freebsd-arm64), const SCM_CREDS ideal-int +pkg syscall (freebsd-arm64), const SCM_RIGHTS = 1 +pkg syscall (freebsd-arm64), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-arm64), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-arm64), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-arm64), const SIGBUS = 10 +pkg syscall (freebsd-arm64), const SIGCHLD = 20 +pkg syscall (freebsd-arm64), const SIGCHLD Signal +pkg syscall (freebsd-arm64), const SIGCONT = 19 +pkg syscall (freebsd-arm64), const SIGCONT Signal +pkg syscall (freebsd-arm64), const SIGEMT = 7 +pkg syscall (freebsd-arm64), const SIGEMT Signal +pkg syscall (freebsd-arm64), const SIGINFO = 29 +pkg syscall (freebsd-arm64), const SIGINFO Signal +pkg syscall (freebsd-arm64), const SIGIO = 23 +pkg syscall (freebsd-arm64), const SIGIO Signal +pkg syscall (freebsd-arm64), const SIGIOT = 6 +pkg syscall (freebsd-arm64), const SIGIOT Signal +pkg syscall (freebsd-arm64), const SIGLIBRT = 33 +pkg syscall (freebsd-arm64), const SIGLIBRT Signal +pkg syscall (freebsd-arm64), const SIGLWP = 32 +pkg syscall (freebsd-arm64), const SIGLWP Signal +pkg syscall (freebsd-arm64), const SIGPROF = 27 +pkg syscall (freebsd-arm64), const SIGPROF Signal +pkg syscall (freebsd-arm64), const SIGSTOP = 17 +pkg syscall (freebsd-arm64), const SIGSTOP Signal +pkg syscall (freebsd-arm64), const SIGSYS = 12 +pkg syscall (freebsd-arm64), const SIGSYS Signal +pkg syscall (freebsd-arm64), const SIGTHR = 32 +pkg syscall (freebsd-arm64), const SIGTHR Signal +pkg syscall (freebsd-arm64), const SIGTSTP = 18 +pkg syscall (freebsd-arm64), const SIGTSTP Signal +pkg syscall (freebsd-arm64), const SIGTTIN = 21 +pkg syscall (freebsd-arm64), const SIGTTIN Signal +pkg syscall (freebsd-arm64), const SIGTTOU = 22 +pkg syscall (freebsd-arm64), const SIGTTOU Signal +pkg syscall (freebsd-arm64), const SIGURG = 16 +pkg syscall (freebsd-arm64), const SIGURG Signal +pkg syscall (freebsd-arm64), const SIGUSR1 = 30 +pkg syscall (freebsd-arm64), const SIGUSR1 Signal +pkg syscall (freebsd-arm64), const SIGUSR2 = 31 +pkg syscall (freebsd-arm64), const SIGUSR2 Signal +pkg syscall (freebsd-arm64), const SIGVTALRM = 26 +pkg syscall (freebsd-arm64), const SIGVTALRM Signal +pkg syscall (freebsd-arm64), const SIGWINCH = 28 +pkg syscall (freebsd-arm64), const SIGWINCH Signal +pkg syscall (freebsd-arm64), const SIGXCPU = 24 +pkg syscall (freebsd-arm64), const SIGXCPU Signal +pkg syscall (freebsd-arm64), const SIGXFSZ = 25 +pkg syscall (freebsd-arm64), const SIGXFSZ Signal +pkg syscall (freebsd-arm64), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-arm64), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-arm64), const SIOCADDRT = 2151707146 +pkg syscall (freebsd-arm64), const SIOCADDRT ideal-int +pkg syscall (freebsd-arm64), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-arm64), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCAIFGROUP = 2150132103 +pkg syscall (freebsd-arm64), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-arm64), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-arm64), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-arm64), const SIOCATMARK ideal-int +pkg syscall (freebsd-arm64), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-arm64), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-arm64), const SIOCDELRT = 2151707147 +pkg syscall (freebsd-arm64), const SIOCDELRT ideal-int +pkg syscall (freebsd-arm64), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-arm64), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCDIFGROUP = 2150132105 +pkg syscall (freebsd-arm64), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-arm64), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-arm64), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-arm64), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (freebsd-arm64), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-arm64), const SIOCGETSGCNT = 3223351824 +pkg syscall (freebsd-arm64), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-arm64), const SIOCGETVIFCNT = 3223876111 +pkg syscall (freebsd-arm64), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-arm64), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-arm64), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-arm64), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-arm64), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-arm64), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFCONF = 3222300964 +pkg syscall (freebsd-arm64), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-arm64), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-arm64), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-arm64), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-arm64), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-arm64), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFGMEMB = 3223873930 +pkg syscall (freebsd-arm64), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFGROUP = 3223873928 +pkg syscall (freebsd-arm64), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-arm64), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-arm64), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFMEDIA = 3224398136 +pkg syscall (freebsd-arm64), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-arm64), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-arm64), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-arm64), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-arm64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-arm64), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-arm64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-arm64), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-arm64), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-arm64), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-arm64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-arm64), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-arm64), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-arm64), const SIOCGPGRP ideal-int +pkg syscall (freebsd-arm64), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-arm64), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-arm64), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-arm64), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-arm64), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-arm64), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-arm64), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-arm64), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-arm64), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-arm64), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-arm64), const SIOCIFGCLONERS = 3222301048 +pkg syscall (freebsd-arm64), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-arm64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (freebsd-arm64), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-arm64), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-arm64), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-arm64), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-arm64), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-arm64), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-arm64), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-arm64), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-arm64), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-arm64), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-arm64), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-arm64), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-arm64), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-arm64), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-arm64), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-arm64), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-arm64), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-arm64), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-arm64), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-arm64), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-arm64), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-arm64), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-arm64), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-arm64), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-arm64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-arm64), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-arm64), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-arm64), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-arm64), const SIOCSPGRP ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfHdr = 32 +pkg syscall (freebsd-arm64), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfInsn = 8 +pkg syscall (freebsd-arm64), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfProgram = 16 +pkg syscall (freebsd-arm64), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfStat = 8 +pkg syscall (freebsd-arm64), const SizeofBpfStat ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfVersion = 4 +pkg syscall (freebsd-arm64), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfZbuf = 24 +pkg syscall (freebsd-arm64), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-arm64), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-arm64), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-arm64), const SizeofCmsghdr = 12 +pkg syscall (freebsd-arm64), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-arm64), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-arm64), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-arm64), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-arm64), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofIfData = 152 +pkg syscall (freebsd-arm64), const SizeofIfData ideal-int +pkg syscall (freebsd-arm64), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-arm64), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofIfMsghdr = 168 +pkg syscall (freebsd-arm64), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-arm64), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-arm64), const SizeofIPMreq = 8 +pkg syscall (freebsd-arm64), const SizeofIPMreq ideal-int +pkg syscall (freebsd-arm64), const SizeofIPMreqn = 12 +pkg syscall (freebsd-arm64), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-arm64), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-arm64), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-arm64), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-arm64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-arm64), const SizeofLinger = 8 +pkg syscall (freebsd-arm64), const SizeofLinger ideal-int +pkg syscall (freebsd-arm64), const SizeofMsghdr = 48 +pkg syscall (freebsd-arm64), const SizeofMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofRtMetrics = 112 +pkg syscall (freebsd-arm64), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-arm64), const SizeofRtMsghdr = 152 +pkg syscall (freebsd-arm64), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-arm64), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-arm64), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-arm64), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-arm64), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-arm64), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-arm64), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-arm64), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-arm64), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-arm64), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-arm64), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-arm64), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-arm64), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-arm64), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-arm64), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-arm64), const SO_BINTIME = 8192 +pkg syscall (freebsd-arm64), const SO_BINTIME ideal-int +pkg syscall (freebsd-arm64), const SO_BROADCAST = 32 +pkg syscall (freebsd-arm64), const SO_DEBUG = 1 +pkg syscall (freebsd-arm64), const SO_DEBUG ideal-int +pkg syscall (freebsd-arm64), const SO_DONTROUTE = 16 +pkg syscall (freebsd-arm64), const SO_ERROR = 4103 +pkg syscall (freebsd-arm64), const SO_ERROR ideal-int +pkg syscall (freebsd-arm64), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-arm64), const SO_LABEL = 4105 +pkg syscall (freebsd-arm64), const SO_LABEL ideal-int +pkg syscall (freebsd-arm64), const SO_LINGER = 128 +pkg syscall (freebsd-arm64), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-arm64), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-arm64), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-arm64), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-arm64), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-arm64), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-arm64), const SO_NO_DDP = 32768 +pkg syscall (freebsd-arm64), const SO_NO_DDP ideal-int +pkg syscall (freebsd-arm64), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-arm64), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-arm64), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-arm64), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-arm64), const SO_OOBINLINE = 256 +pkg syscall (freebsd-arm64), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-arm64), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-arm64), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-arm64), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-arm64), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-arm64), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-arm64), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-arm64), const SO_RCVBUF = 4098 +pkg syscall (freebsd-arm64), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-arm64), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-arm64), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-arm64), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-arm64), const SO_REUSEADDR = 4 +pkg syscall (freebsd-arm64), const SO_REUSEPORT = 512 +pkg syscall (freebsd-arm64), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-arm64), const SO_SETFIB = 4116 +pkg syscall (freebsd-arm64), const SO_SETFIB ideal-int +pkg syscall (freebsd-arm64), const SO_SNDBUF = 4097 +pkg syscall (freebsd-arm64), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-arm64), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-arm64), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-arm64), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-arm64), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-arm64), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-arm64), const SO_TYPE = 4104 +pkg syscall (freebsd-arm64), const SO_TYPE ideal-int +pkg syscall (freebsd-arm64), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-arm64), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-arm64), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-arm64), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-arm64), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-arm64), const SO_VENDOR ideal-int +pkg syscall (freebsd-arm64), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-arm64), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-arm64), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-arm64), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-arm64), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-arm64), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-arm64), const SOCK_RDM = 4 +pkg syscall (freebsd-arm64), const SOCK_RDM ideal-int +pkg syscall (freebsd-arm64), const SOL_SOCKET = 65535 +pkg syscall (freebsd-arm64), const SOMAXCONN = 128 +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-arm64), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-arm64), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-arm64), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-arm64), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-arm64), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-arm64), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-arm64), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm64), const SYS___CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm64), const SYS___GETCWD = 326 +pkg syscall (freebsd-arm64), const SYS___GETCWD ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-arm64), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-arm64), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-arm64), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-arm64), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-arm64), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-arm64), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-arm64), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-arm64), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-arm64), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-arm64), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-arm64), const SYS___SEMCTL = 510 +pkg syscall (freebsd-arm64), const SYS___SEMCTL ideal-int +pkg syscall (freebsd-arm64), const SYS___SETUGID = 374 +pkg syscall (freebsd-arm64), const SYS___SETUGID ideal-int +pkg syscall (freebsd-arm64), const SYS___SYSCTL = 202 +pkg syscall (freebsd-arm64), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-arm64), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-arm64), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-arm64), const SYS_ABORT2 = 463 +pkg syscall (freebsd-arm64), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-arm64), const SYS_ACCEPT = 30 +pkg syscall (freebsd-arm64), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-arm64), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-arm64), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-arm64), const SYS_ACCESS = 33 +pkg syscall (freebsd-arm64), const SYS_ACCESS ideal-int +pkg syscall (freebsd-arm64), const SYS_ACCT = 51 +pkg syscall (freebsd-arm64), const SYS_ACCT ideal-int +pkg syscall (freebsd-arm64), const SYS_ADJTIME = 140 +pkg syscall (freebsd-arm64), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_CANCEL = 316 +pkg syscall (freebsd-arm64), const SYS_AIO_CANCEL ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_ERROR = 317 +pkg syscall (freebsd-arm64), const SYS_AIO_ERROR ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_FSYNC = 465 +pkg syscall (freebsd-arm64), const SYS_AIO_FSYNC ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_MLOCK = 543 +pkg syscall (freebsd-arm64), const SYS_AIO_MLOCK ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_READ = 255 +pkg syscall (freebsd-arm64), const SYS_AIO_READ ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_RETURN = 314 +pkg syscall (freebsd-arm64), const SYS_AIO_RETURN ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_SUSPEND = 315 +pkg syscall (freebsd-arm64), const SYS_AIO_SUSPEND ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_WAITCOMPLETE = 359 +pkg syscall (freebsd-arm64), const SYS_AIO_WAITCOMPLETE ideal-int +pkg syscall (freebsd-arm64), const SYS_AIO_WRITE = 256 +pkg syscall (freebsd-arm64), const SYS_AIO_WRITE ideal-int +pkg syscall (freebsd-arm64), const SYS_AUDIT = 445 +pkg syscall (freebsd-arm64), const SYS_AUDIT ideal-int +pkg syscall (freebsd-arm64), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-arm64), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_AUDITON = 446 +pkg syscall (freebsd-arm64), const SYS_AUDITON ideal-int +pkg syscall (freebsd-arm64), const SYS_BIND = 104 +pkg syscall (freebsd-arm64), const SYS_BIND ideal-int +pkg syscall (freebsd-arm64), const SYS_BINDAT = 538 +pkg syscall (freebsd-arm64), const SYS_BINDAT ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-arm64), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm64), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm64), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-arm64), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm64), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm64), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm64), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm64), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm64), const SYS_CHDIR = 12 +pkg syscall (freebsd-arm64), const SYS_CHDIR ideal-int +pkg syscall (freebsd-arm64), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-arm64), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-arm64), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-arm64), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-arm64), const SYS_CHMOD = 15 +pkg syscall (freebsd-arm64), const SYS_CHMOD ideal-int +pkg syscall (freebsd-arm64), const SYS_CHOWN = 16 +pkg syscall (freebsd-arm64), const SYS_CHOWN ideal-int +pkg syscall (freebsd-arm64), const SYS_CHROOT = 61 +pkg syscall (freebsd-arm64), const SYS_CHROOT ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-arm64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOCK_NANOSLEEP = 244 +pkg syscall (freebsd-arm64), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-arm64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOSE = 6 +pkg syscall (freebsd-arm64), const SYS_CLOSE ideal-int +pkg syscall (freebsd-arm64), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-arm64), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-arm64), const SYS_CONNECT = 98 +pkg syscall (freebsd-arm64), const SYS_CONNECT ideal-int +pkg syscall (freebsd-arm64), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-arm64), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_CPUSET = 484 +pkg syscall (freebsd-arm64), const SYS_CPUSET ideal-int +pkg syscall (freebsd-arm64), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-arm64), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-arm64), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-arm64), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-arm64), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-arm64), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-arm64), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-arm64), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-arm64), const SYS_DUP = 41 +pkg syscall (freebsd-arm64), const SYS_DUP ideal-int +pkg syscall (freebsd-arm64), const SYS_DUP2 = 90 +pkg syscall (freebsd-arm64), const SYS_DUP2 ideal-int +pkg syscall (freebsd-arm64), const SYS_EACCESS = 376 +pkg syscall (freebsd-arm64), const SYS_EACCESS ideal-int +pkg syscall (freebsd-arm64), const SYS_EXECVE = 59 +pkg syscall (freebsd-arm64), const SYS_EXECVE ideal-int +pkg syscall (freebsd-arm64), const SYS_EXIT = 1 +pkg syscall (freebsd-arm64), const SYS_EXIT ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-arm64), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-arm64), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-arm64), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHDIR = 13 +pkg syscall (freebsd-arm64), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-arm64), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHMOD = 124 +pkg syscall (freebsd-arm64), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-arm64), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHOWN = 123 +pkg syscall (freebsd-arm64), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-arm64), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-arm64), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FCNTL = 92 +pkg syscall (freebsd-arm64), const SYS_FCNTL ideal-int +pkg syscall (freebsd-arm64), const SYS_FDATASYNC = 550 +pkg syscall (freebsd-arm64), const SYS_FDATASYNC ideal-int +pkg syscall (freebsd-arm64), const SYS_FEXECVE = 492 +pkg syscall (freebsd-arm64), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-arm64), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-arm64), const SYS_FHOPEN = 298 +pkg syscall (freebsd-arm64), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-arm64), const SYS_FHSTAT = 299 +pkg syscall (freebsd-arm64), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-arm64), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-arm64), const SYS_FLOCK = 131 +pkg syscall (freebsd-arm64), const SYS_FLOCK ideal-int +pkg syscall (freebsd-arm64), const SYS_FORK = 2 +pkg syscall (freebsd-arm64), const SYS_FORK ideal-int +pkg syscall (freebsd-arm64), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-arm64), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-arm64), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm64), const SYS_FSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm64), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-arm64), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm64), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-arm64), const SYS_FSYNC = 95 +pkg syscall (freebsd-arm64), const SYS_FSYNC ideal-int +pkg syscall (freebsd-arm64), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-arm64), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-arm64), const SYS_FUTIMENS = 546 +pkg syscall (freebsd-arm64), const SYS_FUTIMENS ideal-int +pkg syscall (freebsd-arm64), const SYS_FUTIMES = 206 +pkg syscall (freebsd-arm64), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-arm64), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-arm64), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-arm64), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-arm64), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm64), const SYS_GETAUID = 447 +pkg syscall (freebsd-arm64), const SYS_GETAUID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-arm64), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETDENTS = 272 +pkg syscall (freebsd-arm64), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-arm64), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-arm64), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-arm64), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-arm64), const SYS_GETEGID = 43 +pkg syscall (freebsd-arm64), const SYS_GETEGID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETEUID = 25 +pkg syscall (freebsd-arm64), const SYS_GETEUID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETFH = 161 +pkg syscall (freebsd-arm64), const SYS_GETFH ideal-int +pkg syscall (freebsd-arm64), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm64), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETGID = 47 +pkg syscall (freebsd-arm64), const SYS_GETGID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-arm64), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-arm64), const SYS_GETITIMER = 86 +pkg syscall (freebsd-arm64), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-arm64), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-arm64), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-arm64), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-arm64), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-arm64), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPGID = 207 +pkg syscall (freebsd-arm64), const SYS_GETPGID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPGRP = 81 +pkg syscall (freebsd-arm64), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPID = 20 +pkg syscall (freebsd-arm64), const SYS_GETPID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPPID = 39 +pkg syscall (freebsd-arm64), const SYS_GETPPID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-arm64), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-arm64), const SYS_GETRESGID = 361 +pkg syscall (freebsd-arm64), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETRESUID = 360 +pkg syscall (freebsd-arm64), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-arm64), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-arm64), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-arm64), const SYS_GETSID = 310 +pkg syscall (freebsd-arm64), const SYS_GETSID ideal-int +pkg syscall (freebsd-arm64), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-arm64), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-arm64), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-arm64), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-arm64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-arm64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm64), const SYS_GETUID = 24 +pkg syscall (freebsd-arm64), const SYS_GETUID ideal-int +pkg syscall (freebsd-arm64), const SYS_GSSD_SYSCALL = 505 +pkg syscall (freebsd-arm64), const SYS_GSSD_SYSCALL ideal-int +pkg syscall (freebsd-arm64), const SYS_IOCTL = 54 +pkg syscall (freebsd-arm64), const SYS_IOCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-arm64), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-arm64), const SYS_JAIL = 338 +pkg syscall (freebsd-arm64), const SYS_JAIL ideal-int +pkg syscall (freebsd-arm64), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-arm64), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-arm64), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-arm64), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-arm64), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-arm64), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-arm64), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-arm64), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-arm64), const SYS_KENV = 390 +pkg syscall (freebsd-arm64), const SYS_KENV ideal-int +pkg syscall (freebsd-arm64), const SYS_KEVENT = 363 +pkg syscall (freebsd-arm64), const SYS_KEVENT ideal-int +pkg syscall (freebsd-arm64), const SYS_KILL = 37 +pkg syscall (freebsd-arm64), const SYS_KILL ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDFIND = 306 +pkg syscall (freebsd-arm64), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-arm64), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-arm64), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-arm64), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-arm64), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDSYM = 337 +pkg syscall (freebsd-arm64), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-arm64), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-arm64), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-arm64), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_NOTIFY = 461 +pkg syscall (freebsd-arm64), const SYS_KMQ_NOTIFY ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_OPEN = 457 +pkg syscall (freebsd-arm64), const SYS_KMQ_OPEN ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_SETATTR = 458 +pkg syscall (freebsd-arm64), const SYS_KMQ_SETATTR ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_TIMEDRECEIVE = 459 +pkg syscall (freebsd-arm64), const SYS_KMQ_TIMEDRECEIVE ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_TIMEDSEND = 460 +pkg syscall (freebsd-arm64), const SYS_KMQ_TIMEDSEND ideal-int +pkg syscall (freebsd-arm64), const SYS_KMQ_UNLINK = 462 +pkg syscall (freebsd-arm64), const SYS_KMQ_UNLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_KQUEUE = 362 +pkg syscall (freebsd-arm64), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_CLOSE = 400 +pkg syscall (freebsd-arm64), const SYS_KSEM_CLOSE ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_DESTROY = 408 +pkg syscall (freebsd-arm64), const SYS_KSEM_DESTROY ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_GETVALUE = 407 +pkg syscall (freebsd-arm64), const SYS_KSEM_GETVALUE ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_INIT = 404 +pkg syscall (freebsd-arm64), const SYS_KSEM_INIT ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_OPEN = 405 +pkg syscall (freebsd-arm64), const SYS_KSEM_OPEN ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_POST = 401 +pkg syscall (freebsd-arm64), const SYS_KSEM_POST ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_TIMEDWAIT = 441 +pkg syscall (freebsd-arm64), const SYS_KSEM_TIMEDWAIT ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_TRYWAIT = 403 +pkg syscall (freebsd-arm64), const SYS_KSEM_TRYWAIT ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_UNLINK = 406 +pkg syscall (freebsd-arm64), const SYS_KSEM_UNLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_KSEM_WAIT = 402 +pkg syscall (freebsd-arm64), const SYS_KSEM_WAIT ideal-int +pkg syscall (freebsd-arm64), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-arm64), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-arm64), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-arm64), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-arm64), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-arm64), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-arm64), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-arm64), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-arm64), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_KTRACE = 45 +pkg syscall (freebsd-arm64), const SYS_KTRACE ideal-int +pkg syscall (freebsd-arm64), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-arm64), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-arm64), const SYS_LCHMOD = 274 +pkg syscall (freebsd-arm64), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-arm64), const SYS_LCHOWN = 254 +pkg syscall (freebsd-arm64), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-arm64), const SYS_LGETFH = 160 +pkg syscall (freebsd-arm64), const SYS_LGETFH ideal-int +pkg syscall (freebsd-arm64), const SYS_LINK = 9 +pkg syscall (freebsd-arm64), const SYS_LINK ideal-int +pkg syscall (freebsd-arm64), const SYS_LINKAT = 495 +pkg syscall (freebsd-arm64), const SYS_LINKAT ideal-int +pkg syscall (freebsd-arm64), const SYS_LIO_LISTIO = 257 +pkg syscall (freebsd-arm64), const SYS_LIO_LISTIO ideal-int +pkg syscall (freebsd-arm64), const SYS_LISTEN = 106 +pkg syscall (freebsd-arm64), const SYS_LISTEN ideal-int +pkg syscall (freebsd-arm64), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-arm64), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-arm64), const SYS_LSEEK = 478 +pkg syscall (freebsd-arm64), const SYS_LSEEK ideal-int +pkg syscall (freebsd-arm64), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm64), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_LUTIMES = 276 +pkg syscall (freebsd-arm64), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-arm64), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-arm64), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-arm64), const SYS_MADVISE = 75 +pkg syscall (freebsd-arm64), const SYS_MADVISE ideal-int +pkg syscall (freebsd-arm64), const SYS_MINCORE = 78 +pkg syscall (freebsd-arm64), const SYS_MINCORE ideal-int +pkg syscall (freebsd-arm64), const SYS_MINHERIT = 250 +pkg syscall (freebsd-arm64), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-arm64), const SYS_MKDIR = 136 +pkg syscall (freebsd-arm64), const SYS_MKDIR ideal-int +pkg syscall (freebsd-arm64), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-arm64), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-arm64), const SYS_MKFIFO = 132 +pkg syscall (freebsd-arm64), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-arm64), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-arm64), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-arm64), const SYS_MKNOD = 14 +pkg syscall (freebsd-arm64), const SYS_MKNOD ideal-int +pkg syscall (freebsd-arm64), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm64), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-arm64), const SYS_MLOCK = 203 +pkg syscall (freebsd-arm64), const SYS_MLOCK ideal-int +pkg syscall (freebsd-arm64), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-arm64), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-arm64), const SYS_MMAP = 477 +pkg syscall (freebsd-arm64), const SYS_MMAP ideal-int +pkg syscall (freebsd-arm64), const SYS_MODFIND = 303 +pkg syscall (freebsd-arm64), const SYS_MODFIND ideal-int +pkg syscall (freebsd-arm64), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-arm64), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_MODNEXT = 300 +pkg syscall (freebsd-arm64), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_MODSTAT = 301 +pkg syscall (freebsd-arm64), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_MOUNT = 21 +pkg syscall (freebsd-arm64), const SYS_MOUNT ideal-int +pkg syscall (freebsd-arm64), const SYS_MPROTECT = 74 +pkg syscall (freebsd-arm64), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-arm64), const SYS_MSGCTL = 511 +pkg syscall (freebsd-arm64), const SYS_MSGCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_MSGGET = 225 +pkg syscall (freebsd-arm64), const SYS_MSGGET ideal-int +pkg syscall (freebsd-arm64), const SYS_MSGRCV = 227 +pkg syscall (freebsd-arm64), const SYS_MSGRCV ideal-int +pkg syscall (freebsd-arm64), const SYS_MSGSND = 226 +pkg syscall (freebsd-arm64), const SYS_MSGSND ideal-int +pkg syscall (freebsd-arm64), const SYS_MSGSYS = 170 +pkg syscall (freebsd-arm64), const SYS_MSGSYS ideal-int +pkg syscall (freebsd-arm64), const SYS_MSYNC = 65 +pkg syscall (freebsd-arm64), const SYS_MSYNC ideal-int +pkg syscall (freebsd-arm64), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-arm64), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-arm64), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-arm64), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-arm64), const SYS_MUNMAP = 73 +pkg syscall (freebsd-arm64), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-arm64), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-arm64), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-arm64), const SYS_NFSSVC = 155 +pkg syscall (freebsd-arm64), const SYS_NFSSVC ideal-int +pkg syscall (freebsd-arm64), const SYS_NFSTAT = 279 +pkg syscall (freebsd-arm64), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_NLM_SYSCALL = 154 +pkg syscall (freebsd-arm64), const SYS_NLM_SYSCALL ideal-int +pkg syscall (freebsd-arm64), const SYS_NLSTAT = 280 +pkg syscall (freebsd-arm64), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_NMOUNT = 378 +pkg syscall (freebsd-arm64), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-arm64), const SYS_NSTAT = 278 +pkg syscall (freebsd-arm64), const SYS_NSTAT ideal-int +pkg syscall (freebsd-arm64), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-arm64), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-arm64), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY = 548 +pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY ideal-int +pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY = 549 +pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY ideal-int +pkg syscall (freebsd-arm64), const SYS_OBREAK = 17 +pkg syscall (freebsd-arm64), const SYS_OBREAK ideal-int +pkg syscall (freebsd-arm64), const SYS_OPEN = 5 +pkg syscall (freebsd-arm64), const SYS_OPEN ideal-int +pkg syscall (freebsd-arm64), const SYS_OPENAT = 499 +pkg syscall (freebsd-arm64), const SYS_OPENAT ideal-int +pkg syscall (freebsd-arm64), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-arm64), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-arm64), const SYS_OVADVISE = 72 +pkg syscall (freebsd-arm64), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-arm64), const SYS_PATHCONF = 191 +pkg syscall (freebsd-arm64), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-arm64), const SYS_PDFORK = 518 +pkg syscall (freebsd-arm64), const SYS_PDFORK ideal-int +pkg syscall (freebsd-arm64), const SYS_PDGETPID = 520 +pkg syscall (freebsd-arm64), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-arm64), const SYS_PDKILL = 519 +pkg syscall (freebsd-arm64), const SYS_PDKILL ideal-int +pkg syscall (freebsd-arm64), const SYS_PIPE = 42 +pkg syscall (freebsd-arm64), const SYS_PIPE ideal-int +pkg syscall (freebsd-arm64), const SYS_PIPE2 = 542 +pkg syscall (freebsd-arm64), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-arm64), const SYS_POLL = 209 +pkg syscall (freebsd-arm64), const SYS_POLL ideal-int +pkg syscall (freebsd-arm64), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-arm64), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-arm64), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-arm64), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-arm64), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-arm64), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-arm64), const SYS_PPOLL = 545 +pkg syscall (freebsd-arm64), const SYS_PPOLL ideal-int +pkg syscall (freebsd-arm64), const SYS_PREAD = 475 +pkg syscall (freebsd-arm64), const SYS_PREAD ideal-int +pkg syscall (freebsd-arm64), const SYS_PREADV = 289 +pkg syscall (freebsd-arm64), const SYS_PREADV ideal-int +pkg syscall (freebsd-arm64), const SYS_PROCCTL = 544 +pkg syscall (freebsd-arm64), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_PROFIL = 44 +pkg syscall (freebsd-arm64), const SYS_PROFIL ideal-int +pkg syscall (freebsd-arm64), const SYS_PSELECT = 522 +pkg syscall (freebsd-arm64), const SYS_PSELECT ideal-int +pkg syscall (freebsd-arm64), const SYS_PTRACE = 26 +pkg syscall (freebsd-arm64), const SYS_PTRACE ideal-int +pkg syscall (freebsd-arm64), const SYS_PWRITE = 476 +pkg syscall (freebsd-arm64), const SYS_PWRITE ideal-int +pkg syscall (freebsd-arm64), const SYS_PWRITEV = 290 +pkg syscall (freebsd-arm64), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-arm64), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-arm64), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-arm64), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-arm64), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-arm64), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-arm64), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-arm64), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-arm64), const SYS_READ = 3 +pkg syscall (freebsd-arm64), const SYS_READ ideal-int +pkg syscall (freebsd-arm64), const SYS_READLINK = 58 +pkg syscall (freebsd-arm64), const SYS_READLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_READLINKAT = 500 +pkg syscall (freebsd-arm64), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-arm64), const SYS_READV = 120 +pkg syscall (freebsd-arm64), const SYS_READV ideal-int +pkg syscall (freebsd-arm64), const SYS_REBOOT = 55 +pkg syscall (freebsd-arm64), const SYS_REBOOT ideal-int +pkg syscall (freebsd-arm64), const SYS_RECVFROM = 29 +pkg syscall (freebsd-arm64), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-arm64), const SYS_RECVMSG = 27 +pkg syscall (freebsd-arm64), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-arm64), const SYS_RENAME = 128 +pkg syscall (freebsd-arm64), const SYS_RENAME ideal-int +pkg syscall (freebsd-arm64), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-arm64), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-arm64), const SYS_REVOKE = 56 +pkg syscall (freebsd-arm64), const SYS_REVOKE ideal-int +pkg syscall (freebsd-arm64), const SYS_RFORK = 251 +pkg syscall (freebsd-arm64), const SYS_RFORK ideal-int +pkg syscall (freebsd-arm64), const SYS_RMDIR = 137 +pkg syscall (freebsd-arm64), const SYS_RMDIR ideal-int +pkg syscall (freebsd-arm64), const SYS_RTPRIO = 166 +pkg syscall (freebsd-arm64), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-arm64), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-arm64), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-arm64), const SYS_SBRK = 69 +pkg syscall (freebsd-arm64), const SYS_SBRK ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-arm64), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-arm64), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-arm64), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-arm64), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-arm64), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-arm64), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-arm64), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-arm64), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-arm64), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-arm64), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-arm64), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-arm64), const SYS_SELECT = 93 +pkg syscall (freebsd-arm64), const SYS_SELECT ideal-int +pkg syscall (freebsd-arm64), const SYS_SEMGET = 221 +pkg syscall (freebsd-arm64), const SYS_SEMGET ideal-int +pkg syscall (freebsd-arm64), const SYS_SEMOP = 222 +pkg syscall (freebsd-arm64), const SYS_SEMOP ideal-int +pkg syscall (freebsd-arm64), const SYS_SEMSYS = 169 +pkg syscall (freebsd-arm64), const SYS_SEMSYS ideal-int +pkg syscall (freebsd-arm64), const SYS_SENDFILE = 393 +pkg syscall (freebsd-arm64), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-arm64), const SYS_SENDMSG = 28 +pkg syscall (freebsd-arm64), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-arm64), const SYS_SENDTO = 133 +pkg syscall (freebsd-arm64), const SYS_SENDTO ideal-int +pkg syscall (freebsd-arm64), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-arm64), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-arm64), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-arm64), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm64), const SYS_SETAUID = 448 +pkg syscall (freebsd-arm64), const SYS_SETAUID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-arm64), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_SETEGID = 182 +pkg syscall (freebsd-arm64), const SYS_SETEGID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETEUID = 183 +pkg syscall (freebsd-arm64), const SYS_SETEUID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETFIB = 175 +pkg syscall (freebsd-arm64), const SYS_SETFIB ideal-int +pkg syscall (freebsd-arm64), const SYS_SETGID = 181 +pkg syscall (freebsd-arm64), const SYS_SETGID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-arm64), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-arm64), const SYS_SETITIMER = 83 +pkg syscall (freebsd-arm64), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-arm64), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-arm64), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-arm64), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-arm64), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-arm64), const SYS_SETPGID = 82 +pkg syscall (freebsd-arm64), const SYS_SETPGID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-arm64), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-arm64), const SYS_SETREGID = 127 +pkg syscall (freebsd-arm64), const SYS_SETREGID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETRESGID = 312 +pkg syscall (freebsd-arm64), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETRESUID = 311 +pkg syscall (freebsd-arm64), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETREUID = 126 +pkg syscall (freebsd-arm64), const SYS_SETREUID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-arm64), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-arm64), const SYS_SETSID = 147 +pkg syscall (freebsd-arm64), const SYS_SETSID ideal-int +pkg syscall (freebsd-arm64), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-arm64), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-arm64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-arm64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm64), const SYS_SETUID = 23 +pkg syscall (freebsd-arm64), const SYS_SETUID ideal-int +pkg syscall (freebsd-arm64), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-arm64), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-arm64), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-arm64), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_SHMAT = 228 +pkg syscall (freebsd-arm64), const SYS_SHMAT ideal-int +pkg syscall (freebsd-arm64), const SYS_SHMCTL = 512 +pkg syscall (freebsd-arm64), const SYS_SHMCTL ideal-int +pkg syscall (freebsd-arm64), const SYS_SHMDT = 230 +pkg syscall (freebsd-arm64), const SYS_SHMDT ideal-int +pkg syscall (freebsd-arm64), const SYS_SHMGET = 231 +pkg syscall (freebsd-arm64), const SYS_SHMGET ideal-int +pkg syscall (freebsd-arm64), const SYS_SHMSYS = 171 +pkg syscall (freebsd-arm64), const SYS_SHMSYS ideal-int +pkg syscall (freebsd-arm64), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-arm64), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGACTION = 416 +pkg syscall (freebsd-arm64), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-arm64), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-arm64), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-arm64), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-arm64), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-arm64), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-arm64), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-arm64), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-arm64), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-arm64), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-arm64), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-arm64), const SYS_SOCKET = 97 +pkg syscall (freebsd-arm64), const SYS_SOCKET ideal-int +pkg syscall (freebsd-arm64), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-arm64), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-arm64), const SYS_SSTK = 70 +pkg syscall (freebsd-arm64), const SYS_SSTK ideal-int +pkg syscall (freebsd-arm64), const SYS_STAT = 188 +pkg syscall (freebsd-arm64), const SYS_STAT ideal-int +pkg syscall (freebsd-arm64), const SYS_STATFS = 396 +pkg syscall (freebsd-arm64), const SYS_STATFS ideal-int +pkg syscall (freebsd-arm64), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-arm64), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-arm64), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-arm64), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-arm64), const SYS_SWAPON = 85 +pkg syscall (freebsd-arm64), const SYS_SWAPON ideal-int +pkg syscall (freebsd-arm64), const SYS_SYMLINK = 57 +pkg syscall (freebsd-arm64), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-arm64), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-arm64), const SYS_SYNC = 36 +pkg syscall (freebsd-arm64), const SYS_SYNC ideal-int +pkg syscall (freebsd-arm64), const SYS_SYSARCH = 165 +pkg syscall (freebsd-arm64), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-arm64), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-arm64), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_KILL = 433 +pkg syscall (freebsd-arm64), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-arm64), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_NEW = 455 +pkg syscall (freebsd-arm64), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_SELF = 432 +pkg syscall (freebsd-arm64), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-arm64), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-arm64), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-arm64), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-arm64), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-arm64), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-arm64), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-arm64), const SYS_UMASK = 60 +pkg syscall (freebsd-arm64), const SYS_UMASK ideal-int +pkg syscall (freebsd-arm64), const SYS_UNDELETE = 205 +pkg syscall (freebsd-arm64), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-arm64), const SYS_UNLINK = 10 +pkg syscall (freebsd-arm64), const SYS_UNLINK ideal-int +pkg syscall (freebsd-arm64), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-arm64), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-arm64), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-arm64), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-arm64), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-arm64), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-arm64), const SYS_UTIMES = 138 +pkg syscall (freebsd-arm64), const SYS_UTIMES ideal-int +pkg syscall (freebsd-arm64), const SYS_UTRACE = 335 +pkg syscall (freebsd-arm64), const SYS_UTRACE ideal-int +pkg syscall (freebsd-arm64), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-arm64), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-arm64), const SYS_VFORK = 66 +pkg syscall (freebsd-arm64), const SYS_VFORK ideal-int +pkg syscall (freebsd-arm64), const SYS_WAIT4 = 7 +pkg syscall (freebsd-arm64), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-arm64), const SYS_WAIT6 = 532 +pkg syscall (freebsd-arm64), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-arm64), const SYS_WRITE = 4 +pkg syscall (freebsd-arm64), const SYS_WRITE ideal-int +pkg syscall (freebsd-arm64), const SYS_WRITEV = 121 +pkg syscall (freebsd-arm64), const SYS_WRITEV ideal-int +pkg syscall (freebsd-arm64), const SYS_YIELD = 321 +pkg syscall (freebsd-arm64), const SYS_YIELD ideal-int +pkg syscall (freebsd-arm64), const TCIFLUSH = 1 +pkg syscall (freebsd-arm64), const TCIFLUSH ideal-int +pkg syscall (freebsd-arm64), const TCIOFLUSH = 3 +pkg syscall (freebsd-arm64), const TCIOFLUSH ideal-int +pkg syscall (freebsd-arm64), const TCOFLUSH = 2 +pkg syscall (freebsd-arm64), const TCOFLUSH ideal-int +pkg syscall (freebsd-arm64), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-arm64), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-arm64), const TCP_CONGESTION = 64 +pkg syscall (freebsd-arm64), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-arm64), const TCP_INFO = 32 +pkg syscall (freebsd-arm64), const TCP_INFO ideal-int +pkg syscall (freebsd-arm64), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-arm64), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-arm64), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-arm64), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-arm64), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-arm64), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-arm64), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-arm64), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-arm64), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-arm64), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-arm64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-arm64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-arm64), const TCP_MAXBURST = 4 +pkg syscall (freebsd-arm64), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-arm64), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-arm64), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-arm64), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-arm64), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-arm64), const TCP_MAXSEG = 2 +pkg syscall (freebsd-arm64), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-arm64), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-arm64), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-arm64), const TCP_MD5SIG = 16 +pkg syscall (freebsd-arm64), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-arm64), const TCP_MINMSS = 216 +pkg syscall (freebsd-arm64), const TCP_MINMSS ideal-int +pkg syscall (freebsd-arm64), const TCP_MSS = 536 +pkg syscall (freebsd-arm64), const TCP_MSS ideal-int +pkg syscall (freebsd-arm64), const TCP_NOOPT = 8 +pkg syscall (freebsd-arm64), const TCP_NOOPT ideal-int +pkg syscall (freebsd-arm64), const TCP_NOPUSH = 4 +pkg syscall (freebsd-arm64), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-arm64), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-arm64), const TCP_VENDOR ideal-int +pkg syscall (freebsd-arm64), const TCSAFLUSH = 2 +pkg syscall (freebsd-arm64), const TCSAFLUSH ideal-int +pkg syscall (freebsd-arm64), const TIOCCBRK = 536900730 +pkg syscall (freebsd-arm64), const TIOCCBRK ideal-int +pkg syscall (freebsd-arm64), const TIOCCDTR = 536900728 +pkg syscall (freebsd-arm64), const TIOCCDTR ideal-int +pkg syscall (freebsd-arm64), const TIOCCONS = 2147775586 +pkg syscall (freebsd-arm64), const TIOCCONS ideal-int +pkg syscall (freebsd-arm64), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-arm64), const TIOCDRAIN ideal-int +pkg syscall (freebsd-arm64), const TIOCEXCL = 536900621 +pkg syscall (freebsd-arm64), const TIOCEXCL ideal-int +pkg syscall (freebsd-arm64), const TIOCEXT = 2147775584 +pkg syscall (freebsd-arm64), const TIOCEXT ideal-int +pkg syscall (freebsd-arm64), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-arm64), const TIOCFLUSH ideal-int +pkg syscall (freebsd-arm64), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-arm64), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-arm64), const TIOCGETA = 1076655123 +pkg syscall (freebsd-arm64), const TIOCGETA ideal-int +pkg syscall (freebsd-arm64), const TIOCGETD = 1074033690 +pkg syscall (freebsd-arm64), const TIOCGETD ideal-int +pkg syscall (freebsd-arm64), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-arm64), const TIOCGPGRP ideal-int +pkg syscall (freebsd-arm64), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-arm64), const TIOCGPTN ideal-int +pkg syscall (freebsd-arm64), const TIOCGSID = 1074033763 +pkg syscall (freebsd-arm64), const TIOCGSID ideal-int +pkg syscall (freebsd-arm64), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-arm64), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-arm64), const TIOCM_CAR = 64 +pkg syscall (freebsd-arm64), const TIOCM_CAR ideal-int +pkg syscall (freebsd-arm64), const TIOCM_CD = 64 +pkg syscall (freebsd-arm64), const TIOCM_CD ideal-int +pkg syscall (freebsd-arm64), const TIOCM_CTS = 32 +pkg syscall (freebsd-arm64), const TIOCM_CTS ideal-int +pkg syscall (freebsd-arm64), const TIOCM_DCD = 64 +pkg syscall (freebsd-arm64), const TIOCM_DCD ideal-int +pkg syscall (freebsd-arm64), const TIOCM_DSR = 256 +pkg syscall (freebsd-arm64), const TIOCM_DSR ideal-int +pkg syscall (freebsd-arm64), const TIOCM_DTR = 2 +pkg syscall (freebsd-arm64), const TIOCM_DTR ideal-int +pkg syscall (freebsd-arm64), const TIOCM_LE = 1 +pkg syscall (freebsd-arm64), const TIOCM_LE ideal-int +pkg syscall (freebsd-arm64), const TIOCM_RI = 128 +pkg syscall (freebsd-arm64), const TIOCM_RI ideal-int +pkg syscall (freebsd-arm64), const TIOCM_RNG = 128 +pkg syscall (freebsd-arm64), const TIOCM_RNG ideal-int +pkg syscall (freebsd-arm64), const TIOCM_RTS = 4 +pkg syscall (freebsd-arm64), const TIOCM_RTS ideal-int +pkg syscall (freebsd-arm64), const TIOCM_SR = 16 +pkg syscall (freebsd-arm64), const TIOCM_SR ideal-int +pkg syscall (freebsd-arm64), const TIOCM_ST = 8 +pkg syscall (freebsd-arm64), const TIOCM_ST ideal-int +pkg syscall (freebsd-arm64), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-arm64), const TIOCMBIC ideal-int +pkg syscall (freebsd-arm64), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-arm64), const TIOCMBIS ideal-int +pkg syscall (freebsd-arm64), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-arm64), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-arm64), const TIOCMGET = 1074033770 +pkg syscall (freebsd-arm64), const TIOCMGET ideal-int +pkg syscall (freebsd-arm64), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-arm64), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-arm64), const TIOCMSET = 2147775597 +pkg syscall (freebsd-arm64), const TIOCMSET ideal-int +pkg syscall (freebsd-arm64), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-arm64), const TIOCNOTTY ideal-int +pkg syscall (freebsd-arm64), const TIOCNXCL = 536900622 +pkg syscall (freebsd-arm64), const TIOCNXCL ideal-int +pkg syscall (freebsd-arm64), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-arm64), const TIOCOUTQ ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT = 2147775600 +pkg syscall (freebsd-arm64), const TIOCPKT ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-arm64), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-arm64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-arm64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-arm64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-arm64), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-arm64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_START = 8 +pkg syscall (freebsd-arm64), const TIOCPKT_START ideal-int +pkg syscall (freebsd-arm64), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-arm64), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-arm64), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-arm64), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-arm64), const TIOCSBRK = 536900731 +pkg syscall (freebsd-arm64), const TIOCSBRK ideal-int +pkg syscall (freebsd-arm64), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-arm64), const TIOCSCTTY ideal-int +pkg syscall (freebsd-arm64), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-arm64), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-arm64), const TIOCSDTR = 536900729 +pkg syscall (freebsd-arm64), const TIOCSDTR ideal-int +pkg syscall (freebsd-arm64), const TIOCSETA = 2150396948 +pkg syscall (freebsd-arm64), const TIOCSETA ideal-int +pkg syscall (freebsd-arm64), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-arm64), const TIOCSETAF ideal-int +pkg syscall (freebsd-arm64), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-arm64), const TIOCSETAW ideal-int +pkg syscall (freebsd-arm64), const TIOCSETD = 2147775515 +pkg syscall (freebsd-arm64), const TIOCSETD ideal-int +pkg syscall (freebsd-arm64), const TIOCSIG = 537162847 +pkg syscall (freebsd-arm64), const TIOCSIG ideal-int +pkg syscall (freebsd-arm64), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-arm64), const TIOCSPGRP ideal-int +pkg syscall (freebsd-arm64), const TIOCSTART = 536900718 +pkg syscall (freebsd-arm64), const TIOCSTART ideal-int +pkg syscall (freebsd-arm64), const TIOCSTAT = 536900709 +pkg syscall (freebsd-arm64), const TIOCSTAT ideal-int +pkg syscall (freebsd-arm64), const TIOCSTI = 2147578994 +pkg syscall (freebsd-arm64), const TIOCSTI ideal-int +pkg syscall (freebsd-arm64), const TIOCSTOP = 536900719 +pkg syscall (freebsd-arm64), const TIOCSTOP ideal-int +pkg syscall (freebsd-arm64), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-arm64), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-arm64), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-arm64), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-arm64), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-arm64), const TIOCUCNTL ideal-int +pkg syscall (freebsd-arm64), const TOSTOP = 4194304 +pkg syscall (freebsd-arm64), const TOSTOP ideal-int +pkg syscall (freebsd-arm64), const VDISCARD = 15 +pkg syscall (freebsd-arm64), const VDISCARD ideal-int +pkg syscall (freebsd-arm64), const VDSUSP = 11 +pkg syscall (freebsd-arm64), const VDSUSP ideal-int +pkg syscall (freebsd-arm64), const VEOF = 0 +pkg syscall (freebsd-arm64), const VEOF ideal-int +pkg syscall (freebsd-arm64), const VEOL = 1 +pkg syscall (freebsd-arm64), const VEOL ideal-int +pkg syscall (freebsd-arm64), const VEOL2 = 2 +pkg syscall (freebsd-arm64), const VEOL2 ideal-int +pkg syscall (freebsd-arm64), const VERASE = 3 +pkg syscall (freebsd-arm64), const VERASE ideal-int +pkg syscall (freebsd-arm64), const VERASE2 = 7 +pkg syscall (freebsd-arm64), const VERASE2 ideal-int +pkg syscall (freebsd-arm64), const VINTR = 8 +pkg syscall (freebsd-arm64), const VINTR ideal-int +pkg syscall (freebsd-arm64), const VKILL = 5 +pkg syscall (freebsd-arm64), const VKILL ideal-int +pkg syscall (freebsd-arm64), const VLNEXT = 14 +pkg syscall (freebsd-arm64), const VLNEXT ideal-int +pkg syscall (freebsd-arm64), const VMIN = 16 +pkg syscall (freebsd-arm64), const VMIN ideal-int +pkg syscall (freebsd-arm64), const VQUIT = 9 +pkg syscall (freebsd-arm64), const VQUIT ideal-int +pkg syscall (freebsd-arm64), const VREPRINT = 6 +pkg syscall (freebsd-arm64), const VREPRINT ideal-int +pkg syscall (freebsd-arm64), const VSTART = 12 +pkg syscall (freebsd-arm64), const VSTART ideal-int +pkg syscall (freebsd-arm64), const VSTATUS = 18 +pkg syscall (freebsd-arm64), const VSTATUS ideal-int +pkg syscall (freebsd-arm64), const VSTOP = 13 +pkg syscall (freebsd-arm64), const VSTOP ideal-int +pkg syscall (freebsd-arm64), const VSUSP = 10 +pkg syscall (freebsd-arm64), const VSUSP ideal-int +pkg syscall (freebsd-arm64), const VTIME = 17 +pkg syscall (freebsd-arm64), const VTIME ideal-int +pkg syscall (freebsd-arm64), const VWERASE = 4 +pkg syscall (freebsd-arm64), const VWERASE ideal-int +pkg syscall (freebsd-arm64), const WCONTINUED = 4 +pkg syscall (freebsd-arm64), const WCONTINUED ideal-int +pkg syscall (freebsd-arm64), const WCOREFLAG = 128 +pkg syscall (freebsd-arm64), const WCOREFLAG ideal-int +pkg syscall (freebsd-arm64), const WEXITED = 16 +pkg syscall (freebsd-arm64), const WEXITED ideal-int +pkg syscall (freebsd-arm64), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-arm64), const WLINUXCLONE ideal-int +pkg syscall (freebsd-arm64), const WNOHANG = 1 +pkg syscall (freebsd-arm64), const WNOHANG ideal-int +pkg syscall (freebsd-arm64), const WNOWAIT = 8 +pkg syscall (freebsd-arm64), const WNOWAIT ideal-int +pkg syscall (freebsd-arm64), const WSTOPPED = 2 +pkg syscall (freebsd-arm64), const WSTOPPED ideal-int +pkg syscall (freebsd-arm64), const WTRAPPED = 32 +pkg syscall (freebsd-arm64), const WTRAPPED ideal-int +pkg syscall (freebsd-arm64), const WUNTRACED = 2 +pkg syscall (freebsd-arm64), const WUNTRACED ideal-int +pkg syscall (freebsd-arm64), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64), func Access(string, uint32) error +pkg syscall (freebsd-arm64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-arm64), func Bind(int, Sockaddr) error +pkg syscall (freebsd-arm64), func BpfBuflen //deprecated +pkg syscall (freebsd-arm64), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-arm64), func BpfDatalink //deprecated +pkg syscall (freebsd-arm64), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-arm64), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-arm64), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-arm64), func BpfInterface //deprecated +pkg syscall (freebsd-arm64), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-arm64), func BpfJump //deprecated +pkg syscall (freebsd-arm64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-arm64), func BpfStats //deprecated +pkg syscall (freebsd-arm64), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-arm64), func BpfStmt //deprecated +pkg syscall (freebsd-arm64), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-arm64), func BpfTimeout //deprecated +pkg syscall (freebsd-arm64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-arm64), func CheckBpfVersion //deprecated +pkg syscall (freebsd-arm64), func CheckBpfVersion(int) error +pkg syscall (freebsd-arm64), func Chflags(string, int) error +pkg syscall (freebsd-arm64), func Chroot(string) error +pkg syscall (freebsd-arm64), func Close(int) error +pkg syscall (freebsd-arm64), func CloseOnExec(int) +pkg syscall (freebsd-arm64), func CmsgLen(int) int +pkg syscall (freebsd-arm64), func CmsgSpace(int) int +pkg syscall (freebsd-arm64), func Connect(int, Sockaddr) error +pkg syscall (freebsd-arm64), func Dup(int) (int, error) +pkg syscall (freebsd-arm64), func Dup2(int, int) error +pkg syscall (freebsd-arm64), func Fchdir(int) error +pkg syscall (freebsd-arm64), func Fchflags(int, int) error +pkg syscall (freebsd-arm64), func Fchmod(int, uint32) error +pkg syscall (freebsd-arm64), func Fchown(int, int, int) error +pkg syscall (freebsd-arm64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-arm64), func Flock(int, int) error +pkg syscall (freebsd-arm64), func FlushBpf //deprecated +pkg syscall (freebsd-arm64), func FlushBpf(int) error +pkg syscall (freebsd-arm64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-arm64), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-arm64), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-arm64), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-arm64), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-arm64), func Fsync(int) error +pkg syscall (freebsd-arm64), func Ftruncate(int, int64) error +pkg syscall (freebsd-arm64), func Futimes(int, []Timeval) error +pkg syscall (freebsd-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-arm64), func Getdtablesize() int +pkg syscall (freebsd-arm64), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-arm64), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-arm64), func Getpgid(int) (int, error) +pkg syscall (freebsd-arm64), func Getpgrp() int +pkg syscall (freebsd-arm64), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-arm64), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm64), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-arm64), func Getsid(int) (int, error) +pkg syscall (freebsd-arm64), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-arm64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-arm64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-arm64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-arm64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-arm64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-arm64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-arm64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-arm64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-arm64), func Issetugid() bool +pkg syscall (freebsd-arm64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-arm64), func Kill(int, Signal) error +pkg syscall (freebsd-arm64), func Kqueue() (int, error) +pkg syscall (freebsd-arm64), func Listen(int, int) error +pkg syscall (freebsd-arm64), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-arm64), func Mkfifo(string, uint32) error +pkg syscall (freebsd-arm64), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-arm64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-arm64), func Munmap([]uint8) error +pkg syscall (freebsd-arm64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-arm64), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-arm64), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-arm64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-arm64), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-arm64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-arm64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-arm64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-arm64), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-arm64), func Pipe([]int) error +pkg syscall (freebsd-arm64), func Pipe2([]int, int) error +pkg syscall (freebsd-arm64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-arm64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-arm64), func Revoke(string) error +pkg syscall (freebsd-arm64), func RouteRIB //deprecated +pkg syscall (freebsd-arm64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-arm64), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-arm64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-arm64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-arm64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-arm64), func SetBpf //deprecated +pkg syscall (freebsd-arm64), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-arm64), func SetBpfBuflen //deprecated +pkg syscall (freebsd-arm64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-arm64), func SetBpfDatalink //deprecated +pkg syscall (freebsd-arm64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-arm64), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-arm64), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-arm64), func SetBpfImmediate //deprecated +pkg syscall (freebsd-arm64), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-arm64), func SetBpfInterface //deprecated +pkg syscall (freebsd-arm64), func SetBpfInterface(int, string) error +pkg syscall (freebsd-arm64), func SetBpfPromisc //deprecated +pkg syscall (freebsd-arm64), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-arm64), func SetBpfTimeout //deprecated +pkg syscall (freebsd-arm64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-arm64), func Setegid(int) error +pkg syscall (freebsd-arm64), func Seteuid(int) error +pkg syscall (freebsd-arm64), func Setgid(int) error +pkg syscall (freebsd-arm64), func Setgroups([]int) error +pkg syscall (freebsd-arm64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-arm64), func Setlogin(string) error +pkg syscall (freebsd-arm64), func SetNonblock(int, bool) error +pkg syscall (freebsd-arm64), func Setpgid(int, int) error +pkg syscall (freebsd-arm64), func Setpriority(int, int, int) error +pkg syscall (freebsd-arm64), func Setregid(int, int) error +pkg syscall (freebsd-arm64), func Setreuid(int, int) error +pkg syscall (freebsd-arm64), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm64), func Setsid() (int, error) +pkg syscall (freebsd-arm64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-arm64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-arm64), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-arm64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-arm64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-arm64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-arm64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-arm64), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-arm64), func Settimeofday(*Timeval) error +pkg syscall (freebsd-arm64), func Setuid(int) error +pkg syscall (freebsd-arm64), func Shutdown(int, int) error +pkg syscall (freebsd-arm64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-arm64), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-arm64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-arm64), func Stat(string, *Stat_t) error +pkg syscall (freebsd-arm64), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-arm64), func StringSlicePtr //deprecated +pkg syscall (freebsd-arm64), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-arm64), func Sync() error +pkg syscall (freebsd-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64), func Sysctl(string) (string, error) +pkg syscall (freebsd-arm64), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-arm64), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-arm64), func Truncate(string, int64) error +pkg syscall (freebsd-arm64), func Umask(int) int +pkg syscall (freebsd-arm64), func Undelete(string) error +pkg syscall (freebsd-arm64), func UnixRights(...int) []uint8 +pkg syscall (freebsd-arm64), func Unmount(string, int) error +pkg syscall (freebsd-arm64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-arm64), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-arm64), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-arm64), method (*Iovec) SetLen(int) +pkg syscall (freebsd-arm64), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-arm64), type BpfHdr struct +pkg syscall (freebsd-arm64), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-arm64), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-arm64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-arm64), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-arm64), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-arm64), type BpfInsn struct +pkg syscall (freebsd-arm64), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-arm64), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-arm64), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-arm64), type BpfInsn struct, K uint32 +pkg syscall (freebsd-arm64), type BpfProgram struct +pkg syscall (freebsd-arm64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-arm64), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64), type BpfStat struct +pkg syscall (freebsd-arm64), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-arm64), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-arm64), type BpfVersion struct +pkg syscall (freebsd-arm64), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-arm64), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-arm64), type BpfZbuf struct +pkg syscall (freebsd-arm64), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-arm64), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-arm64), type BpfZbuf struct, Buflen uint64 +pkg syscall (freebsd-arm64), type BpfZbufHeader struct +pkg syscall (freebsd-arm64), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-arm64), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-arm64), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-arm64), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-arm64), type Cmsghdr struct +pkg syscall (freebsd-arm64), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-arm64), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-arm64), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-arm64), type Credential struct +pkg syscall (freebsd-arm64), type Credential struct, Gid uint32 +pkg syscall (freebsd-arm64), type Credential struct, Groups []uint32 +pkg syscall (freebsd-arm64), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-arm64), type Credential struct, Uid uint32 +pkg syscall (freebsd-arm64), type Dirent struct +pkg syscall (freebsd-arm64), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-arm64), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-arm64), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-arm64), type Dirent struct, Off int64 +pkg syscall (freebsd-arm64), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-arm64), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-arm64), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-arm64), type Dirent struct, Type uint8 +pkg syscall (freebsd-arm64), type FdSet struct +pkg syscall (freebsd-arm64), type FdSet struct, X__fds_bits [16]uint64 +pkg syscall (freebsd-arm64), type Flock_t struct +pkg syscall (freebsd-arm64), type Flock_t struct, Len int64 +pkg syscall (freebsd-arm64), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64), type Flock_t struct, Pid int32 +pkg syscall (freebsd-arm64), type Flock_t struct, Start int64 +pkg syscall (freebsd-arm64), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-arm64), type Flock_t struct, Type int16 +pkg syscall (freebsd-arm64), type Flock_t struct, Whence int16 +pkg syscall (freebsd-arm64), type Fsid struct +pkg syscall (freebsd-arm64), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-arm64), type ICMPv6Filter struct +pkg syscall (freebsd-arm64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-arm64), type IfaMsghdr struct +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-arm64), type IfData struct +pkg syscall (freebsd-arm64), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-arm64), type IfData struct, Baudrate uint64 +pkg syscall (freebsd-arm64), type IfData struct, Collisions uint64 +pkg syscall (freebsd-arm64), type IfData struct, Datalen uint8 +pkg syscall (freebsd-arm64), type IfData struct, Epoch int64 +pkg syscall (freebsd-arm64), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-arm64), type IfData struct, Hwassist uint64 +pkg syscall (freebsd-arm64), type IfData struct, Ibytes uint64 +pkg syscall (freebsd-arm64), type IfData struct, Ierrors uint64 +pkg syscall (freebsd-arm64), type IfData struct, Imcasts uint64 +pkg syscall (freebsd-arm64), type IfData struct, Ipackets uint64 +pkg syscall (freebsd-arm64), type IfData struct, Iqdrops uint64 +pkg syscall (freebsd-arm64), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-arm64), type IfData struct, Link_state uint8 +pkg syscall (freebsd-arm64), type IfData struct, Metric uint64 +pkg syscall (freebsd-arm64), type IfData struct, Mtu uint64 +pkg syscall (freebsd-arm64), type IfData struct, Noproto uint64 +pkg syscall (freebsd-arm64), type IfData struct, Obytes uint64 +pkg syscall (freebsd-arm64), type IfData struct, Oerrors uint64 +pkg syscall (freebsd-arm64), type IfData struct, Omcasts uint64 +pkg syscall (freebsd-arm64), type IfData struct, Opackets uint64 +pkg syscall (freebsd-arm64), type IfData struct, Physical uint8 +pkg syscall (freebsd-arm64), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-arm64), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-arm64), type IfData struct, Type uint8 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64), type IfMsghdr struct +pkg syscall (freebsd-arm64), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-arm64), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64), type Inet6Pktinfo struct +pkg syscall (freebsd-arm64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-arm64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-arm64), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-arm64), type InterfaceAddrMessage struct +pkg syscall (freebsd-arm64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-arm64), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-arm64), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-arm64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-arm64), type InterfaceMessage //deprecated +pkg syscall (freebsd-arm64), type InterfaceMessage struct +pkg syscall (freebsd-arm64), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-arm64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-arm64), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-arm64), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-arm64), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-arm64), type Iovec struct +pkg syscall (freebsd-arm64), type Iovec struct, Base *uint8 +pkg syscall (freebsd-arm64), type Iovec struct, Len uint64 +pkg syscall (freebsd-arm64), type IPMreqn struct +pkg syscall (freebsd-arm64), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-arm64), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-arm64), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-arm64), type IPv6MTUInfo struct +pkg syscall (freebsd-arm64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-arm64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-arm64), type Kevent_t struct +pkg syscall (freebsd-arm64), type Kevent_t struct, Data int64 +pkg syscall (freebsd-arm64), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-arm64), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-arm64), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-arm64), type Kevent_t struct, Ident uint64 +pkg syscall (freebsd-arm64), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-arm64), type Msghdr struct +pkg syscall (freebsd-arm64), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-arm64), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-arm64), type Msghdr struct, Flags int32 +pkg syscall (freebsd-arm64), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-arm64), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-arm64), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-arm64), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-arm64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (freebsd-arm64), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-arm64), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-arm64), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-arm64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-arm64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-arm64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-arm64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-arm64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-arm64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-arm64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-arm64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-arm64), type Rlimit struct +pkg syscall (freebsd-arm64), type Rlimit struct, Cur int64 +pkg syscall (freebsd-arm64), type Rlimit struct, Max int64 +pkg syscall (freebsd-arm64), type RouteMessage //deprecated +pkg syscall (freebsd-arm64), type RouteMessage struct +pkg syscall (freebsd-arm64), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-arm64), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-arm64), type RoutingMessage //deprecated +pkg syscall (freebsd-arm64), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-arm64), type RtMetrics struct +pkg syscall (freebsd-arm64), type RtMetrics struct, Expire uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Filler [3]uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Hopcount uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Locks uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Mtu uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Pksent uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Recvpipe uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Rtt uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Rttvar uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Sendpipe uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Ssthresh uint64 +pkg syscall (freebsd-arm64), type RtMetrics struct, Weight uint64 +pkg syscall (freebsd-arm64), type RtMsghdr struct +pkg syscall (freebsd-arm64), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Inits uint64 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-arm64), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64), type Rusage struct, Idrss int64 +pkg syscall (freebsd-arm64), type Rusage struct, Inblock int64 +pkg syscall (freebsd-arm64), type Rusage struct, Isrss int64 +pkg syscall (freebsd-arm64), type Rusage struct, Ixrss int64 +pkg syscall (freebsd-arm64), type Rusage struct, Majflt int64 +pkg syscall (freebsd-arm64), type Rusage struct, Maxrss int64 +pkg syscall (freebsd-arm64), type Rusage struct, Minflt int64 +pkg syscall (freebsd-arm64), type Rusage struct, Msgrcv int64 +pkg syscall (freebsd-arm64), type Rusage struct, Msgsnd int64 +pkg syscall (freebsd-arm64), type Rusage struct, Nivcsw int64 +pkg syscall (freebsd-arm64), type Rusage struct, Nsignals int64 +pkg syscall (freebsd-arm64), type Rusage struct, Nswap int64 +pkg syscall (freebsd-arm64), type Rusage struct, Nvcsw int64 +pkg syscall (freebsd-arm64), type Rusage struct, Oublock int64 +pkg syscall (freebsd-arm64), type Rusage struct, Stime Timeval +pkg syscall (freebsd-arm64), type Rusage struct, Utime Timeval +pkg syscall (freebsd-arm64), type SockaddrDatalink struct +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm64), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm64), type SocketControlMessage struct +pkg syscall (freebsd-arm64), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-arm64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-arm64), type Stat_t struct +pkg syscall (freebsd-arm64), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-arm64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-arm64), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-arm64), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-arm64), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-arm64), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-arm64), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-arm64), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-arm64), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-arm64), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-arm64), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-arm64), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Size int64 +pkg syscall (freebsd-arm64), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm64), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-arm64), type Statfs_t struct +pkg syscall (freebsd-arm64), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-arm64), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-arm64), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-arm64), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-arm64), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-arm64), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-arm64), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-arm64), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-arm64), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-arm64), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-arm64), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-arm64), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-arm64), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-arm64), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-arm64), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-arm64), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-arm64), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-arm64), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-arm64), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-arm64), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-arm64), type Termios struct +pkg syscall (freebsd-arm64), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-arm64), type Termios struct, Cflag uint32 +pkg syscall (freebsd-arm64), type Termios struct, Iflag uint32 +pkg syscall (freebsd-arm64), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-arm64), type Termios struct, Lflag uint32 +pkg syscall (freebsd-arm64), type Termios struct, Oflag uint32 +pkg syscall (freebsd-arm64), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-arm64), type Timespec struct, Nsec int64 +pkg syscall (freebsd-arm64), type Timespec struct, Sec int64 +pkg syscall (freebsd-arm64), type Timeval struct, Sec int64 +pkg syscall (freebsd-arm64), type Timeval struct, Usec int64 +pkg syscall (freebsd-arm64), type WaitStatus uint32 +pkg syscall (freebsd-arm64), var Stderr int +pkg syscall (freebsd-arm64), var Stdin int +pkg syscall (freebsd-arm64), var Stdout int +pkg syscall (freebsd-arm64-cgo), const AF_APPLETALK = 16 +pkg syscall (freebsd-arm64-cgo), const AF_APPLETALK ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ARP = 35 +pkg syscall (freebsd-arm64-cgo), const AF_ARP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ATM = 30 +pkg syscall (freebsd-arm64-cgo), const AF_ATM ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_BLUETOOTH = 36 +pkg syscall (freebsd-arm64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_CCITT = 10 +pkg syscall (freebsd-arm64-cgo), const AF_CCITT ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_CHAOS = 5 +pkg syscall (freebsd-arm64-cgo), const AF_CHAOS ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_CNT = 21 +pkg syscall (freebsd-arm64-cgo), const AF_CNT ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_COIP = 20 +pkg syscall (freebsd-arm64-cgo), const AF_COIP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_DATAKIT = 9 +pkg syscall (freebsd-arm64-cgo), const AF_DATAKIT ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_DECnet = 12 +pkg syscall (freebsd-arm64-cgo), const AF_DECnet ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_DLI = 13 +pkg syscall (freebsd-arm64-cgo), const AF_DLI ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_E164 = 26 +pkg syscall (freebsd-arm64-cgo), const AF_E164 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ECMA = 8 +pkg syscall (freebsd-arm64-cgo), const AF_ECMA ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_HYLINK = 15 +pkg syscall (freebsd-arm64-cgo), const AF_HYLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_IEEE80211 = 37 +pkg syscall (freebsd-arm64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_IMPLINK = 3 +pkg syscall (freebsd-arm64-cgo), const AF_IMPLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_INET_SDP = 40 +pkg syscall (freebsd-arm64-cgo), const AF_INET_SDP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_INET6 = 28 +pkg syscall (freebsd-arm64-cgo), const AF_INET6_SDP = 42 +pkg syscall (freebsd-arm64-cgo), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_IPX = 23 +pkg syscall (freebsd-arm64-cgo), const AF_IPX ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ISDN = 26 +pkg syscall (freebsd-arm64-cgo), const AF_ISDN ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ISO = 7 +pkg syscall (freebsd-arm64-cgo), const AF_ISO ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_LAT = 14 +pkg syscall (freebsd-arm64-cgo), const AF_LAT ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_LINK = 18 +pkg syscall (freebsd-arm64-cgo), const AF_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_LOCAL = 1 +pkg syscall (freebsd-arm64-cgo), const AF_LOCAL ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_MAX = 42 +pkg syscall (freebsd-arm64-cgo), const AF_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_NATM = 29 +pkg syscall (freebsd-arm64-cgo), const AF_NATM ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_NETBIOS = 6 +pkg syscall (freebsd-arm64-cgo), const AF_NETBIOS ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_NETGRAPH = 32 +pkg syscall (freebsd-arm64-cgo), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_OSI = 7 +pkg syscall (freebsd-arm64-cgo), const AF_OSI ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_PUP = 4 +pkg syscall (freebsd-arm64-cgo), const AF_PUP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_ROUTE = 17 +pkg syscall (freebsd-arm64-cgo), const AF_ROUTE ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_SCLUSTER = 34 +pkg syscall (freebsd-arm64-cgo), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_SIP = 24 +pkg syscall (freebsd-arm64-cgo), const AF_SIP ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_SLOW = 33 +pkg syscall (freebsd-arm64-cgo), const AF_SLOW ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_SNA = 11 +pkg syscall (freebsd-arm64-cgo), const AF_SNA ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR00 = 39 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR01 = 41 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR02 = 43 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR03 = 45 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR04 = 47 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR05 = 49 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR06 = 51 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR07 = 53 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR08 = 55 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR09 = 57 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR10 = 59 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR11 = 61 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR12 = 63 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR13 = 65 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR14 = 67 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR15 = 69 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR16 = 71 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR17 = 73 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR18 = 75 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR19 = 77 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR20 = 79 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR21 = 81 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR22 = 83 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR23 = 85 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR24 = 87 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR25 = 89 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR26 = 91 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR27 = 93 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR28 = 95 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR29 = 97 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR30 = 99 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR31 = 101 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR32 = 103 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR33 = 105 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR34 = 107 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR35 = 109 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR36 = 111 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR37 = 113 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR38 = 115 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR39 = 117 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR40 = 119 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR41 = 121 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR42 = 123 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR43 = 125 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR44 = 127 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR45 = 129 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR46 = 131 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR47 = 133 +pkg syscall (freebsd-arm64-cgo), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-arm64-cgo), const B0 = 0 +pkg syscall (freebsd-arm64-cgo), const B0 ideal-int +pkg syscall (freebsd-arm64-cgo), const B110 = 110 +pkg syscall (freebsd-arm64-cgo), const B110 ideal-int +pkg syscall (freebsd-arm64-cgo), const B115200 = 115200 +pkg syscall (freebsd-arm64-cgo), const B115200 ideal-int +pkg syscall (freebsd-arm64-cgo), const B1200 = 1200 +pkg syscall (freebsd-arm64-cgo), const B1200 ideal-int +pkg syscall (freebsd-arm64-cgo), const B134 = 134 +pkg syscall (freebsd-arm64-cgo), const B134 ideal-int +pkg syscall (freebsd-arm64-cgo), const B14400 = 14400 +pkg syscall (freebsd-arm64-cgo), const B14400 ideal-int +pkg syscall (freebsd-arm64-cgo), const B150 = 150 +pkg syscall (freebsd-arm64-cgo), const B150 ideal-int +pkg syscall (freebsd-arm64-cgo), const B1800 = 1800 +pkg syscall (freebsd-arm64-cgo), const B1800 ideal-int +pkg syscall (freebsd-arm64-cgo), const B19200 = 19200 +pkg syscall (freebsd-arm64-cgo), const B19200 ideal-int +pkg syscall (freebsd-arm64-cgo), const B200 = 200 +pkg syscall (freebsd-arm64-cgo), const B200 ideal-int +pkg syscall (freebsd-arm64-cgo), const B230400 = 230400 +pkg syscall (freebsd-arm64-cgo), const B230400 ideal-int +pkg syscall (freebsd-arm64-cgo), const B2400 = 2400 +pkg syscall (freebsd-arm64-cgo), const B2400 ideal-int +pkg syscall (freebsd-arm64-cgo), const B28800 = 28800 +pkg syscall (freebsd-arm64-cgo), const B28800 ideal-int +pkg syscall (freebsd-arm64-cgo), const B300 = 300 +pkg syscall (freebsd-arm64-cgo), const B300 ideal-int +pkg syscall (freebsd-arm64-cgo), const B38400 = 38400 +pkg syscall (freebsd-arm64-cgo), const B38400 ideal-int +pkg syscall (freebsd-arm64-cgo), const B460800 = 460800 +pkg syscall (freebsd-arm64-cgo), const B460800 ideal-int +pkg syscall (freebsd-arm64-cgo), const B4800 = 4800 +pkg syscall (freebsd-arm64-cgo), const B4800 ideal-int +pkg syscall (freebsd-arm64-cgo), const B50 = 50 +pkg syscall (freebsd-arm64-cgo), const B50 ideal-int +pkg syscall (freebsd-arm64-cgo), const B57600 = 57600 +pkg syscall (freebsd-arm64-cgo), const B57600 ideal-int +pkg syscall (freebsd-arm64-cgo), const B600 = 600 +pkg syscall (freebsd-arm64-cgo), const B600 ideal-int +pkg syscall (freebsd-arm64-cgo), const B7200 = 7200 +pkg syscall (freebsd-arm64-cgo), const B7200 ideal-int +pkg syscall (freebsd-arm64-cgo), const B75 = 75 +pkg syscall (freebsd-arm64-cgo), const B75 ideal-int +pkg syscall (freebsd-arm64-cgo), const B76800 = 76800 +pkg syscall (freebsd-arm64-cgo), const B76800 ideal-int +pkg syscall (freebsd-arm64-cgo), const B921600 = 921600 +pkg syscall (freebsd-arm64-cgo), const B921600 ideal-int +pkg syscall (freebsd-arm64-cgo), const B9600 = 9600 +pkg syscall (freebsd-arm64-cgo), const B9600 ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCFEEDBACK = 2147762812 +pkg syscall (freebsd-arm64-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (freebsd-arm64-cgo), const BIOCFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (freebsd-arm64-cgo), const BIOCGBLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGDIRECTION = 1074020982 +pkg syscall (freebsd-arm64-cgo), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (freebsd-arm64-cgo), const BIOCGDLT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGDLTLIST = 3222291065 +pkg syscall (freebsd-arm64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGETBUFMODE = 1074020989 +pkg syscall (freebsd-arm64-cgo), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGETIF = 1075855979 +pkg syscall (freebsd-arm64-cgo), const BIOCGETIF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGETZMAX = 1074283135 +pkg syscall (freebsd-arm64-cgo), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (freebsd-arm64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (freebsd-arm64-cgo), const BIOCGRSIG ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-arm64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (freebsd-arm64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (freebsd-arm64-cgo), const BIOCGSTATS ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCGTSTAMP = 1074020995 +pkg syscall (freebsd-arm64-cgo), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (freebsd-arm64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCLOCK = 536887930 +pkg syscall (freebsd-arm64-cgo), const BIOCLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (freebsd-arm64-cgo), const BIOCPROMISC ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCROTZBUF = 1075331712 +pkg syscall (freebsd-arm64-cgo), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (freebsd-arm64-cgo), const BIOCSBLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSDIRECTION = 2147762807 +pkg syscall (freebsd-arm64-cgo), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSDLT = 2147762808 +pkg syscall (freebsd-arm64-cgo), const BIOCSDLT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETBUFMODE = 2147762814 +pkg syscall (freebsd-arm64-cgo), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETF = 2148549223 +pkg syscall (freebsd-arm64-cgo), const BIOCSETF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETFNR = 2148549250 +pkg syscall (freebsd-arm64-cgo), const BIOCSETFNR ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETIF = 2149597804 +pkg syscall (freebsd-arm64-cgo), const BIOCSETIF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETWF = 2148549243 +pkg syscall (freebsd-arm64-cgo), const BIOCSETWF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSETZBUF = 2149073537 +pkg syscall (freebsd-arm64-cgo), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (freebsd-arm64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (freebsd-arm64-cgo), const BIOCSRSIG ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-arm64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (freebsd-arm64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCSTSTAMP = 2147762820 +pkg syscall (freebsd-arm64-cgo), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-arm64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (freebsd-arm64-cgo), const BIOCVERSION ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_A = 16 +pkg syscall (freebsd-arm64-cgo), const BPF_A ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_ABS = 32 +pkg syscall (freebsd-arm64-cgo), const BPF_ABS ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_ADD = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_ALIGNMENT = 8 +pkg syscall (freebsd-arm64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_ALU = 4 +pkg syscall (freebsd-arm64-cgo), const BPF_ALU ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_AND = 80 +pkg syscall (freebsd-arm64-cgo), const BPF_AND ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_B = 16 +pkg syscall (freebsd-arm64-cgo), const BPF_B ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_BUFMODE_BUFFER = 1 +pkg syscall (freebsd-arm64-cgo), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_BUFMODE_ZBUF = 2 +pkg syscall (freebsd-arm64-cgo), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_DIV = 48 +pkg syscall (freebsd-arm64-cgo), const BPF_DIV ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_H = 8 +pkg syscall (freebsd-arm64-cgo), const BPF_H ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_IMM = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_IMM ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_IND = 64 +pkg syscall (freebsd-arm64-cgo), const BPF_IND ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JA = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_JA ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JEQ = 16 +pkg syscall (freebsd-arm64-cgo), const BPF_JEQ ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JGE = 48 +pkg syscall (freebsd-arm64-cgo), const BPF_JGE ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JGT = 32 +pkg syscall (freebsd-arm64-cgo), const BPF_JGT ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JMP = 5 +pkg syscall (freebsd-arm64-cgo), const BPF_JMP ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_JSET = 64 +pkg syscall (freebsd-arm64-cgo), const BPF_JSET ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_K = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_K ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_LD = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_LD ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_LDX = 1 +pkg syscall (freebsd-arm64-cgo), const BPF_LDX ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_LEN = 128 +pkg syscall (freebsd-arm64-cgo), const BPF_LEN ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_LSH = 96 +pkg syscall (freebsd-arm64-cgo), const BPF_LSH ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (freebsd-arm64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (freebsd-arm64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (freebsd-arm64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MEM = 96 +pkg syscall (freebsd-arm64-cgo), const BPF_MEM ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (freebsd-arm64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (freebsd-arm64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (freebsd-arm64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MISC = 7 +pkg syscall (freebsd-arm64-cgo), const BPF_MISC ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MSH = 160 +pkg syscall (freebsd-arm64-cgo), const BPF_MSH ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_MUL = 32 +pkg syscall (freebsd-arm64-cgo), const BPF_MUL ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_NEG = 128 +pkg syscall (freebsd-arm64-cgo), const BPF_NEG ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_OR = 64 +pkg syscall (freebsd-arm64-cgo), const BPF_OR ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_RELEASE = 199606 +pkg syscall (freebsd-arm64-cgo), const BPF_RELEASE ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_RET = 6 +pkg syscall (freebsd-arm64-cgo), const BPF_RET ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_RSH = 112 +pkg syscall (freebsd-arm64-cgo), const BPF_RSH ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_ST = 2 +pkg syscall (freebsd-arm64-cgo), const BPF_ST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_STX = 3 +pkg syscall (freebsd-arm64-cgo), const BPF_STX ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_SUB = 16 +pkg syscall (freebsd-arm64-cgo), const BPF_SUB ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME = 2 +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_FAST = 258 +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_MONOTONIC = 514 +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST = 770 +pkg syscall (freebsd-arm64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_FAST = 256 +pkg syscall (freebsd-arm64-cgo), const BPF_T_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_FLAG_MASK = 768 +pkg syscall (freebsd-arm64-cgo), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_FORMAT_MASK = 3 +pkg syscall (freebsd-arm64-cgo), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_FAST = 256 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_MONOTONIC = 512 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MONOTONIC = 512 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_MONOTONIC_FAST = 768 +pkg syscall (freebsd-arm64-cgo), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME = 1 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_FAST = 257 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_MONOTONIC = 513 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NONE = 3 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NONE ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_T_NORMAL = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_TAX = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_TAX ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_TXA = 128 +pkg syscall (freebsd-arm64-cgo), const BPF_TXA ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_W = 0 +pkg syscall (freebsd-arm64-cgo), const BPF_W ideal-int +pkg syscall (freebsd-arm64-cgo), const BPF_X = 8 +pkg syscall (freebsd-arm64-cgo), const BPF_X ideal-int +pkg syscall (freebsd-arm64-cgo), const BRKINT = 2 +pkg syscall (freebsd-arm64-cgo), const BRKINT ideal-int +pkg syscall (freebsd-arm64-cgo), const CFLUSH = 15 +pkg syscall (freebsd-arm64-cgo), const CFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const CLOCAL = 32768 +pkg syscall (freebsd-arm64-cgo), const CLOCAL ideal-int +pkg syscall (freebsd-arm64-cgo), const CREAD = 2048 +pkg syscall (freebsd-arm64-cgo), const CREAD ideal-int +pkg syscall (freebsd-arm64-cgo), const CS5 = 0 +pkg syscall (freebsd-arm64-cgo), const CS5 ideal-int +pkg syscall (freebsd-arm64-cgo), const CS6 = 256 +pkg syscall (freebsd-arm64-cgo), const CS6 ideal-int +pkg syscall (freebsd-arm64-cgo), const CS7 = 512 +pkg syscall (freebsd-arm64-cgo), const CS7 ideal-int +pkg syscall (freebsd-arm64-cgo), const CS8 = 768 +pkg syscall (freebsd-arm64-cgo), const CS8 ideal-int +pkg syscall (freebsd-arm64-cgo), const CSIZE = 768 +pkg syscall (freebsd-arm64-cgo), const CSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const CSTART = 17 +pkg syscall (freebsd-arm64-cgo), const CSTART ideal-int +pkg syscall (freebsd-arm64-cgo), const CSTATUS = 20 +pkg syscall (freebsd-arm64-cgo), const CSTATUS ideal-int +pkg syscall (freebsd-arm64-cgo), const CSTOP = 19 +pkg syscall (freebsd-arm64-cgo), const CSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const CSTOPB = 1024 +pkg syscall (freebsd-arm64-cgo), const CSTOPB ideal-int +pkg syscall (freebsd-arm64-cgo), const CSUSP = 26 +pkg syscall (freebsd-arm64-cgo), const CSUSP ideal-int +pkg syscall (freebsd-arm64-cgo), const CTL_MAXNAME = 24 +pkg syscall (freebsd-arm64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-arm64-cgo), const CTL_NET = 4 +pkg syscall (freebsd-arm64-cgo), const CTL_NET ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_A429 = 184 +pkg syscall (freebsd-arm64-cgo), const DLT_A429 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_A653_ICM = 185 +pkg syscall (freebsd-arm64-cgo), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_AIRONET_HEADER = 120 +pkg syscall (freebsd-arm64-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_AOS = 222 +pkg syscall (freebsd-arm64-cgo), const DLT_AOS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (freebsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ARCNET = 7 +pkg syscall (freebsd-arm64-cgo), const DLT_ARCNET ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ARCNET_LINUX = 129 +pkg syscall (freebsd-arm64-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (freebsd-arm64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (freebsd-arm64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_AURORA = 126 +pkg syscall (freebsd-arm64-cgo), const DLT_AURORA ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_AX25 = 3 +pkg syscall (freebsd-arm64-cgo), const DLT_AX25 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_AX25_KISS = 202 +pkg syscall (freebsd-arm64-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_BACNET_MS_TP = 165 +pkg syscall (freebsd-arm64-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 +pkg syscall (freebsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 +pkg syscall (freebsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_C_HDLC = 104 +pkg syscall (freebsd-arm64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR = 205 +pkg syscall (freebsd-arm64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_CAN_SOCKETCAN = 227 +pkg syscall (freebsd-arm64-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_CAN20B = 190 +pkg syscall (freebsd-arm64-cgo), const DLT_CAN20B ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_CHAOS = 5 +pkg syscall (freebsd-arm64-cgo), const DLT_CHAOS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_CHDLC = 104 +pkg syscall (freebsd-arm64-cgo), const DLT_CHDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_CISCO_IOS = 118 +pkg syscall (freebsd-arm64-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_DBUS = 231 +pkg syscall (freebsd-arm64-cgo), const DLT_DBUS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_DECT = 221 +pkg syscall (freebsd-arm64-cgo), const DLT_DECT ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_DOCSIS = 143 +pkg syscall (freebsd-arm64-cgo), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_DVB_CI = 235 +pkg syscall (freebsd-arm64-cgo), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ECONET = 115 +pkg syscall (freebsd-arm64-cgo), const DLT_ECONET ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_EN10MB = 1 +pkg syscall (freebsd-arm64-cgo), const DLT_EN10MB ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_EN3MB = 2 +pkg syscall (freebsd-arm64-cgo), const DLT_EN3MB ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ENC = 109 +pkg syscall (freebsd-arm64-cgo), const DLT_ENC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ERF = 197 +pkg syscall (freebsd-arm64-cgo), const DLT_ERF ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ERF_ETH = 175 +pkg syscall (freebsd-arm64-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_ERF_POS = 176 +pkg syscall (freebsd-arm64-cgo), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FC_2 = 224 +pkg syscall (freebsd-arm64-cgo), const DLT_FC_2 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 +pkg syscall (freebsd-arm64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FDDI = 10 +pkg syscall (freebsd-arm64-cgo), const DLT_FDDI ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FLEXRAY = 210 +pkg syscall (freebsd-arm64-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FRELAY = 107 +pkg syscall (freebsd-arm64-cgo), const DLT_FRELAY ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_FRELAY_WITH_DIR = 206 +pkg syscall (freebsd-arm64-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GCOM_SERIAL = 173 +pkg syscall (freebsd-arm64-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GCOM_T1E1 = 172 +pkg syscall (freebsd-arm64-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GPF_F = 171 +pkg syscall (freebsd-arm64-cgo), const DLT_GPF_F ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GPF_T = 170 +pkg syscall (freebsd-arm64-cgo), const DLT_GPF_T ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GPRS_LLC = 169 +pkg syscall (freebsd-arm64-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GSMTAP_ABIS = 218 +pkg syscall (freebsd-arm64-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_GSMTAP_UM = 217 +pkg syscall (freebsd-arm64-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_HHDLC = 121 +pkg syscall (freebsd-arm64-cgo), const DLT_HHDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IBM_SN = 146 +pkg syscall (freebsd-arm64-cgo), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IBM_SP = 145 +pkg syscall (freebsd-arm64-cgo), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802 = 6 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4 = 195 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX = 191 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_NOFCS = 230 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS = 188 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 +pkg syscall (freebsd-arm64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IP_OVER_FC = 122 +pkg syscall (freebsd-arm64-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPFILTER = 116 +pkg syscall (freebsd-arm64-cgo), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPMB = 199 +pkg syscall (freebsd-arm64-cgo), const DLT_IPMB ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPMB_LINUX = 209 +pkg syscall (freebsd-arm64-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPNET = 226 +pkg syscall (freebsd-arm64-cgo), const DLT_IPNET ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPOIB = 242 +pkg syscall (freebsd-arm64-cgo), const DLT_IPOIB ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPV4 = 228 +pkg syscall (freebsd-arm64-cgo), const DLT_IPV4 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_IPV6 = 229 +pkg syscall (freebsd-arm64-cgo), const DLT_IPV6 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM_CEMIC = 238 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM1 = 137 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM2 = 135 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_CHDLC = 181 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ES = 132 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ETHER = 178 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_FIBRECHANNEL = 234 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_FRELAY = 180 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_GGSN = 133 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ISM = 194 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MFR = 134 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MLFR = 131 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MLPPP = 130 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MONITOR = 164 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER = 174 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPP = 179 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPPOE = 167 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_SERVICES = 136 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_SRX_E2E = 233 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ST = 200 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_VP = 183 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_VS = 232 +pkg syscall (freebsd-arm64-cgo), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LAPB_WITH_DIR = 207 +pkg syscall (freebsd-arm64-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LAPD = 203 +pkg syscall (freebsd-arm64-cgo), const DLT_LAPD ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LIN = 212 +pkg syscall (freebsd-arm64-cgo), const DLT_LIN ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_EVDEV = 216 +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_IRDA = 144 +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_LAPD = 177 +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_PPP_WITHDIRECTION = 166 +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (freebsd-arm64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LOOP = 108 +pkg syscall (freebsd-arm64-cgo), const DLT_LOOP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_LTALK = 114 +pkg syscall (freebsd-arm64-cgo), const DLT_LTALK ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-arm64-cgo), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MATCHING_MIN = 104 +pkg syscall (freebsd-arm64-cgo), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MFR = 182 +pkg syscall (freebsd-arm64-cgo), const DLT_MFR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MOST = 211 +pkg syscall (freebsd-arm64-cgo), const DLT_MOST ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-arm64-cgo), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MPLS = 219 +pkg syscall (freebsd-arm64-cgo), const DLT_MPLS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MTP2 = 140 +pkg syscall (freebsd-arm64-cgo), const DLT_MTP2 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MTP2_WITH_PHDR = 139 +pkg syscall (freebsd-arm64-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MTP3 = 141 +pkg syscall (freebsd-arm64-cgo), const DLT_MTP3 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_MUX27010 = 236 +pkg syscall (freebsd-arm64-cgo), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NETANALYZER = 240 +pkg syscall (freebsd-arm64-cgo), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NETANALYZER_TRANSPARENT = 241 +pkg syscall (freebsd-arm64-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-arm64-cgo), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NFLOG = 239 +pkg syscall (freebsd-arm64-cgo), const DLT_NFLOG ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NG40 = 244 +pkg syscall (freebsd-arm64-cgo), const DLT_NG40 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_NULL = 0 +pkg syscall (freebsd-arm64-cgo), const DLT_NULL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PCI_EXP = 125 +pkg syscall (freebsd-arm64-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PFLOG = 117 +pkg syscall (freebsd-arm64-cgo), const DLT_PFLOG ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PFSYNC = 121 +pkg syscall (freebsd-arm64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPI = 192 +pkg syscall (freebsd-arm64-cgo), const DLT_PPI ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP = 9 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_ETHER = 51 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_PPPD = 166 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_WITH_DIR = 204 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_WITH_DIRECTION = 166 +pkg syscall (freebsd-arm64-cgo), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PRISM_HEADER = 119 +pkg syscall (freebsd-arm64-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_PRONET = 4 +pkg syscall (freebsd-arm64-cgo), const DLT_PRONET ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_RAIF1 = 198 +pkg syscall (freebsd-arm64-cgo), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_RAW = 12 +pkg syscall (freebsd-arm64-cgo), const DLT_RAW ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_RIO = 124 +pkg syscall (freebsd-arm64-cgo), const DLT_RIO ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SCCP = 142 +pkg syscall (freebsd-arm64-cgo), const DLT_SCCP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SITA = 196 +pkg syscall (freebsd-arm64-cgo), const DLT_SITA ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SLIP = 8 +pkg syscall (freebsd-arm64-cgo), const DLT_SLIP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (freebsd-arm64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_STANAG_5066_D_PDU = 237 +pkg syscall (freebsd-arm64-cgo), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SUNATM = 123 +pkg syscall (freebsd-arm64-cgo), const DLT_SUNATM ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL = 99 +pkg syscall (freebsd-arm64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_TZSP = 128 +pkg syscall (freebsd-arm64-cgo), const DLT_TZSP ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USB = 186 +pkg syscall (freebsd-arm64-cgo), const DLT_USB ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USB_LINUX = 189 +pkg syscall (freebsd-arm64-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED = 220 +pkg syscall (freebsd-arm64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER0 = 147 +pkg syscall (freebsd-arm64-cgo), const DLT_USER0 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER1 = 148 +pkg syscall (freebsd-arm64-cgo), const DLT_USER1 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER10 = 157 +pkg syscall (freebsd-arm64-cgo), const DLT_USER10 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER11 = 158 +pkg syscall (freebsd-arm64-cgo), const DLT_USER11 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER12 = 159 +pkg syscall (freebsd-arm64-cgo), const DLT_USER12 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER13 = 160 +pkg syscall (freebsd-arm64-cgo), const DLT_USER13 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER14 = 161 +pkg syscall (freebsd-arm64-cgo), const DLT_USER14 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER15 = 162 +pkg syscall (freebsd-arm64-cgo), const DLT_USER15 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER2 = 149 +pkg syscall (freebsd-arm64-cgo), const DLT_USER2 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER3 = 150 +pkg syscall (freebsd-arm64-cgo), const DLT_USER3 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER4 = 151 +pkg syscall (freebsd-arm64-cgo), const DLT_USER4 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER5 = 152 +pkg syscall (freebsd-arm64-cgo), const DLT_USER5 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER6 = 153 +pkg syscall (freebsd-arm64-cgo), const DLT_USER6 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER7 = 154 +pkg syscall (freebsd-arm64-cgo), const DLT_USER7 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER8 = 155 +pkg syscall (freebsd-arm64-cgo), const DLT_USER8 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_USER9 = 156 +pkg syscall (freebsd-arm64-cgo), const DLT_USER9 ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_WIHART = 223 +pkg syscall (freebsd-arm64-cgo), const DLT_WIHART ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_X2E_SERIAL = 213 +pkg syscall (freebsd-arm64-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-arm64-cgo), const DLT_X2E_XORAYA = 214 +pkg syscall (freebsd-arm64-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_BLK = 6 +pkg syscall (freebsd-arm64-cgo), const DT_BLK ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_CHR = 2 +pkg syscall (freebsd-arm64-cgo), const DT_CHR ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_DIR = 4 +pkg syscall (freebsd-arm64-cgo), const DT_DIR ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_FIFO = 1 +pkg syscall (freebsd-arm64-cgo), const DT_FIFO ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_LNK = 10 +pkg syscall (freebsd-arm64-cgo), const DT_LNK ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_REG = 8 +pkg syscall (freebsd-arm64-cgo), const DT_REG ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_SOCK = 12 +pkg syscall (freebsd-arm64-cgo), const DT_SOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_UNKNOWN = 0 +pkg syscall (freebsd-arm64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const DT_WHT = 14 +pkg syscall (freebsd-arm64-cgo), const DT_WHT ideal-int +pkg syscall (freebsd-arm64-cgo), const E2BIG = 7 +pkg syscall (freebsd-arm64-cgo), const EACCES = 13 +pkg syscall (freebsd-arm64-cgo), const EADDRINUSE = 48 +pkg syscall (freebsd-arm64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (freebsd-arm64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (freebsd-arm64-cgo), const EAGAIN = 35 +pkg syscall (freebsd-arm64-cgo), const EALREADY = 37 +pkg syscall (freebsd-arm64-cgo), const EAUTH = 80 +pkg syscall (freebsd-arm64-cgo), const EAUTH Errno +pkg syscall (freebsd-arm64-cgo), const EBADF = 9 +pkg syscall (freebsd-arm64-cgo), const EBADMSG = 89 +pkg syscall (freebsd-arm64-cgo), const EBADMSG Errno +pkg syscall (freebsd-arm64-cgo), const EBADRPC = 72 +pkg syscall (freebsd-arm64-cgo), const EBADRPC Errno +pkg syscall (freebsd-arm64-cgo), const EBUSY = 16 +pkg syscall (freebsd-arm64-cgo), const ECANCELED = 85 +pkg syscall (freebsd-arm64-cgo), const ECAPMODE = 94 +pkg syscall (freebsd-arm64-cgo), const ECAPMODE Errno +pkg syscall (freebsd-arm64-cgo), const ECHILD = 10 +pkg syscall (freebsd-arm64-cgo), const ECHO = 8 +pkg syscall (freebsd-arm64-cgo), const ECHO ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHOCTL = 64 +pkg syscall (freebsd-arm64-cgo), const ECHOCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHOE = 2 +pkg syscall (freebsd-arm64-cgo), const ECHOE ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHOK = 4 +pkg syscall (freebsd-arm64-cgo), const ECHOK ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHOKE = 1 +pkg syscall (freebsd-arm64-cgo), const ECHOKE ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHONL = 16 +pkg syscall (freebsd-arm64-cgo), const ECHONL ideal-int +pkg syscall (freebsd-arm64-cgo), const ECHOPRT = 32 +pkg syscall (freebsd-arm64-cgo), const ECHOPRT ideal-int +pkg syscall (freebsd-arm64-cgo), const ECONNABORTED = 53 +pkg syscall (freebsd-arm64-cgo), const ECONNREFUSED = 61 +pkg syscall (freebsd-arm64-cgo), const ECONNRESET = 54 +pkg syscall (freebsd-arm64-cgo), const EDEADLK = 11 +pkg syscall (freebsd-arm64-cgo), const EDESTADDRREQ = 39 +pkg syscall (freebsd-arm64-cgo), const EDOM = 33 +pkg syscall (freebsd-arm64-cgo), const EDOOFUS = 88 +pkg syscall (freebsd-arm64-cgo), const EDOOFUS Errno +pkg syscall (freebsd-arm64-cgo), const EDQUOT = 69 +pkg syscall (freebsd-arm64-cgo), const EEXIST = 17 +pkg syscall (freebsd-arm64-cgo), const EFAULT = 14 +pkg syscall (freebsd-arm64-cgo), const EFBIG = 27 +pkg syscall (freebsd-arm64-cgo), const EFTYPE = 79 +pkg syscall (freebsd-arm64-cgo), const EFTYPE Errno +pkg syscall (freebsd-arm64-cgo), const EHOSTDOWN = 64 +pkg syscall (freebsd-arm64-cgo), const EHOSTUNREACH = 65 +pkg syscall (freebsd-arm64-cgo), const EIDRM = 82 +pkg syscall (freebsd-arm64-cgo), const EILSEQ = 86 +pkg syscall (freebsd-arm64-cgo), const EINPROGRESS = 36 +pkg syscall (freebsd-arm64-cgo), const EINTR = 4 +pkg syscall (freebsd-arm64-cgo), const EINVAL = 22 +pkg syscall (freebsd-arm64-cgo), const EIO = 5 +pkg syscall (freebsd-arm64-cgo), const EISCONN = 56 +pkg syscall (freebsd-arm64-cgo), const EISDIR = 21 +pkg syscall (freebsd-arm64-cgo), const ELAST = 96 +pkg syscall (freebsd-arm64-cgo), const ELAST Errno +pkg syscall (freebsd-arm64-cgo), const ELOOP = 62 +pkg syscall (freebsd-arm64-cgo), const EMFILE = 24 +pkg syscall (freebsd-arm64-cgo), const EMLINK = 31 +pkg syscall (freebsd-arm64-cgo), const EMSGSIZE = 40 +pkg syscall (freebsd-arm64-cgo), const EMULTIHOP = 90 +pkg syscall (freebsd-arm64-cgo), const EMULTIHOP Errno +pkg syscall (freebsd-arm64-cgo), const ENAMETOOLONG = 63 +pkg syscall (freebsd-arm64-cgo), const ENEEDAUTH = 81 +pkg syscall (freebsd-arm64-cgo), const ENEEDAUTH Errno +pkg syscall (freebsd-arm64-cgo), const ENETDOWN = 50 +pkg syscall (freebsd-arm64-cgo), const ENETRESET = 52 +pkg syscall (freebsd-arm64-cgo), const ENETUNREACH = 51 +pkg syscall (freebsd-arm64-cgo), const ENFILE = 23 +pkg syscall (freebsd-arm64-cgo), const ENOATTR = 87 +pkg syscall (freebsd-arm64-cgo), const ENOATTR Errno +pkg syscall (freebsd-arm64-cgo), const ENOBUFS = 55 +pkg syscall (freebsd-arm64-cgo), const ENODEV = 19 +pkg syscall (freebsd-arm64-cgo), const ENOEXEC = 8 +pkg syscall (freebsd-arm64-cgo), const ENOLCK = 77 +pkg syscall (freebsd-arm64-cgo), const ENOLINK = 91 +pkg syscall (freebsd-arm64-cgo), const ENOLINK Errno +pkg syscall (freebsd-arm64-cgo), const ENOMEM = 12 +pkg syscall (freebsd-arm64-cgo), const ENOMSG = 83 +pkg syscall (freebsd-arm64-cgo), const ENOPROTOOPT = 42 +pkg syscall (freebsd-arm64-cgo), const ENOSPC = 28 +pkg syscall (freebsd-arm64-cgo), const ENOSYS = 78 +pkg syscall (freebsd-arm64-cgo), const ENOTBLK = 15 +pkg syscall (freebsd-arm64-cgo), const ENOTCAPABLE = 93 +pkg syscall (freebsd-arm64-cgo), const ENOTCAPABLE Errno +pkg syscall (freebsd-arm64-cgo), const ENOTCONN = 57 +pkg syscall (freebsd-arm64-cgo), const ENOTDIR = 20 +pkg syscall (freebsd-arm64-cgo), const ENOTEMPTY = 66 +pkg syscall (freebsd-arm64-cgo), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-arm64-cgo), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-arm64-cgo), const ENOTSOCK = 38 +pkg syscall (freebsd-arm64-cgo), const ENOTSUP = 45 +pkg syscall (freebsd-arm64-cgo), const ENOTTY = 25 +pkg syscall (freebsd-arm64-cgo), const ENXIO = 6 +pkg syscall (freebsd-arm64-cgo), const EOPNOTSUPP = 45 +pkg syscall (freebsd-arm64-cgo), const EOVERFLOW = 84 +pkg syscall (freebsd-arm64-cgo), const EOWNERDEAD = 96 +pkg syscall (freebsd-arm64-cgo), const EOWNERDEAD Errno +pkg syscall (freebsd-arm64-cgo), const EPERM = 1 +pkg syscall (freebsd-arm64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (freebsd-arm64-cgo), const EPIPE = 32 +pkg syscall (freebsd-arm64-cgo), const EPROCLIM = 67 +pkg syscall (freebsd-arm64-cgo), const EPROCLIM Errno +pkg syscall (freebsd-arm64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (freebsd-arm64-cgo), const EPROCUNAVAIL Errno +pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH = 75 +pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH Errno +pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL Errno +pkg syscall (freebsd-arm64-cgo), const EPROTO = 92 +pkg syscall (freebsd-arm64-cgo), const EPROTO Errno +pkg syscall (freebsd-arm64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (freebsd-arm64-cgo), const EPROTOTYPE = 41 +pkg syscall (freebsd-arm64-cgo), const ERANGE = 34 +pkg syscall (freebsd-arm64-cgo), const EREMOTE = 71 +pkg syscall (freebsd-arm64-cgo), const EROFS = 30 +pkg syscall (freebsd-arm64-cgo), const ERPCMISMATCH = 73 +pkg syscall (freebsd-arm64-cgo), const ERPCMISMATCH Errno +pkg syscall (freebsd-arm64-cgo), const ESHUTDOWN = 58 +pkg syscall (freebsd-arm64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (freebsd-arm64-cgo), const ESPIPE = 29 +pkg syscall (freebsd-arm64-cgo), const ESRCH = 3 +pkg syscall (freebsd-arm64-cgo), const ESTALE = 70 +pkg syscall (freebsd-arm64-cgo), const ETIMEDOUT = 60 +pkg syscall (freebsd-arm64-cgo), const ETOOMANYREFS = 59 +pkg syscall (freebsd-arm64-cgo), const ETXTBSY = 26 +pkg syscall (freebsd-arm64-cgo), const EUSERS = 68 +pkg syscall (freebsd-arm64-cgo), const EV_ADD = 1 +pkg syscall (freebsd-arm64-cgo), const EV_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_CLEAR = 32 +pkg syscall (freebsd-arm64-cgo), const EV_CLEAR ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_DELETE = 2 +pkg syscall (freebsd-arm64-cgo), const EV_DELETE ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_DISABLE = 8 +pkg syscall (freebsd-arm64-cgo), const EV_DISABLE ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_DISPATCH = 128 +pkg syscall (freebsd-arm64-cgo), const EV_DISPATCH ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_DROP = 4096 +pkg syscall (freebsd-arm64-cgo), const EV_DROP ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_ENABLE = 4 +pkg syscall (freebsd-arm64-cgo), const EV_ENABLE ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_EOF = 32768 +pkg syscall (freebsd-arm64-cgo), const EV_EOF ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_ERROR = 16384 +pkg syscall (freebsd-arm64-cgo), const EV_ERROR ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_FLAG1 = 8192 +pkg syscall (freebsd-arm64-cgo), const EV_FLAG1 ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_ONESHOT = 16 +pkg syscall (freebsd-arm64-cgo), const EV_ONESHOT ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_RECEIPT = 64 +pkg syscall (freebsd-arm64-cgo), const EV_RECEIPT ideal-int +pkg syscall (freebsd-arm64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (freebsd-arm64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_AIO = -3 +pkg syscall (freebsd-arm64-cgo), const EVFILT_AIO ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_FS = -9 +pkg syscall (freebsd-arm64-cgo), const EVFILT_FS ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_LIO = -10 +pkg syscall (freebsd-arm64-cgo), const EVFILT_LIO ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_PROC = -5 +pkg syscall (freebsd-arm64-cgo), const EVFILT_PROC ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_READ = -1 +pkg syscall (freebsd-arm64-cgo), const EVFILT_READ ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (freebsd-arm64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_SYSCOUNT = 11 +pkg syscall (freebsd-arm64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_TIMER = -7 +pkg syscall (freebsd-arm64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_USER = -11 +pkg syscall (freebsd-arm64-cgo), const EVFILT_USER ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_VNODE = -4 +pkg syscall (freebsd-arm64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-arm64-cgo), const EVFILT_WRITE = -2 +pkg syscall (freebsd-arm64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const EWOULDBLOCK = 35 +pkg syscall (freebsd-arm64-cgo), const EXDEV = 18 +pkg syscall (freebsd-arm64-cgo), const EXTA = 19200 +pkg syscall (freebsd-arm64-cgo), const EXTA ideal-int +pkg syscall (freebsd-arm64-cgo), const EXTB = 38400 +pkg syscall (freebsd-arm64-cgo), const EXTB ideal-int +pkg syscall (freebsd-arm64-cgo), const EXTPROC = 2048 +pkg syscall (freebsd-arm64-cgo), const EXTPROC ideal-int +pkg syscall (freebsd-arm64-cgo), const F_CANCEL = 5 +pkg syscall (freebsd-arm64-cgo), const F_CANCEL ideal-int +pkg syscall (freebsd-arm64-cgo), const F_DUP2FD = 10 +pkg syscall (freebsd-arm64-cgo), const F_DUP2FD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-arm64-cgo), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const F_DUPFD = 0 +pkg syscall (freebsd-arm64-cgo), const F_DUPFD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const F_GETFD = 1 +pkg syscall (freebsd-arm64-cgo), const F_GETFD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_GETFL = 3 +pkg syscall (freebsd-arm64-cgo), const F_GETFL ideal-int +pkg syscall (freebsd-arm64-cgo), const F_GETLK = 11 +pkg syscall (freebsd-arm64-cgo), const F_GETLK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_GETOWN = 5 +pkg syscall (freebsd-arm64-cgo), const F_GETOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const F_OGETLK = 7 +pkg syscall (freebsd-arm64-cgo), const F_OGETLK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_OK = 0 +pkg syscall (freebsd-arm64-cgo), const F_OK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_OSETLK = 8 +pkg syscall (freebsd-arm64-cgo), const F_OSETLK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_OSETLKW = 9 +pkg syscall (freebsd-arm64-cgo), const F_OSETLKW ideal-int +pkg syscall (freebsd-arm64-cgo), const F_RDAHEAD = 16 +pkg syscall (freebsd-arm64-cgo), const F_RDAHEAD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_RDLCK = 1 +pkg syscall (freebsd-arm64-cgo), const F_RDLCK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_READAHEAD = 15 +pkg syscall (freebsd-arm64-cgo), const F_READAHEAD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETFD = 2 +pkg syscall (freebsd-arm64-cgo), const F_SETFD ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETFL = 4 +pkg syscall (freebsd-arm64-cgo), const F_SETFL ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETLK = 12 +pkg syscall (freebsd-arm64-cgo), const F_SETLK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETLK_REMOTE = 14 +pkg syscall (freebsd-arm64-cgo), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETLKW = 13 +pkg syscall (freebsd-arm64-cgo), const F_SETLKW ideal-int +pkg syscall (freebsd-arm64-cgo), const F_SETOWN = 6 +pkg syscall (freebsd-arm64-cgo), const F_SETOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const F_UNLCK = 2 +pkg syscall (freebsd-arm64-cgo), const F_UNLCK ideal-int +pkg syscall (freebsd-arm64-cgo), const F_UNLCKSYS = 4 +pkg syscall (freebsd-arm64-cgo), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-arm64-cgo), const F_WRLCK = 3 +pkg syscall (freebsd-arm64-cgo), const F_WRLCK ideal-int +pkg syscall (freebsd-arm64-cgo), const FD_CLOEXEC = 1 +pkg syscall (freebsd-arm64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const FD_SETSIZE = 1024 +pkg syscall (freebsd-arm64-cgo), const FD_SETSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const FLUSHO = 8388608 +pkg syscall (freebsd-arm64-cgo), const FLUSHO ideal-int +pkg syscall (freebsd-arm64-cgo), const HUPCL = 16384 +pkg syscall (freebsd-arm64-cgo), const HUPCL ideal-int +pkg syscall (freebsd-arm64-cgo), const ICANON = 256 +pkg syscall (freebsd-arm64-cgo), const ICANON ideal-int +pkg syscall (freebsd-arm64-cgo), const ICMP6_FILTER = 18 +pkg syscall (freebsd-arm64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const ICRNL = 256 +pkg syscall (freebsd-arm64-cgo), const ICRNL ideal-int +pkg syscall (freebsd-arm64-cgo), const IEXTEN = 1024 +pkg syscall (freebsd-arm64-cgo), const IEXTEN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFAN_ARRIVAL = 0 +pkg syscall (freebsd-arm64-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFAN_DEPARTURE = 1 +pkg syscall (freebsd-arm64-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (freebsd-arm64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (freebsd-arm64-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_CANTCHANGE = 2199410 +pkg syscall (freebsd-arm64-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_CANTCONFIG = 65536 +pkg syscall (freebsd-arm64-cgo), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_DEBUG = 4 +pkg syscall (freebsd-arm64-cgo), const IFF_DEBUG ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_DRV_OACTIVE = 1024 +pkg syscall (freebsd-arm64-cgo), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_DRV_RUNNING = 64 +pkg syscall (freebsd-arm64-cgo), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_DYING = 2097152 +pkg syscall (freebsd-arm64-cgo), const IFF_DYING ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_LINK0 = 4096 +pkg syscall (freebsd-arm64-cgo), const IFF_LINK0 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_LINK1 = 8192 +pkg syscall (freebsd-arm64-cgo), const IFF_LINK1 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_LINK2 = 16384 +pkg syscall (freebsd-arm64-cgo), const IFF_LINK2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (freebsd-arm64-cgo), const IFF_MONITOR = 262144 +pkg syscall (freebsd-arm64-cgo), const IFF_MONITOR ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (freebsd-arm64-cgo), const IFF_NOARP = 128 +pkg syscall (freebsd-arm64-cgo), const IFF_NOARP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (freebsd-arm64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (freebsd-arm64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_PPROMISC = 131072 +pkg syscall (freebsd-arm64-cgo), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_PROMISC = 256 +pkg syscall (freebsd-arm64-cgo), const IFF_PROMISC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_RENAMING = 4194304 +pkg syscall (freebsd-arm64-cgo), const IFF_RENAMING ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_RUNNING = 64 +pkg syscall (freebsd-arm64-cgo), const IFF_RUNNING ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (freebsd-arm64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_SMART = 32 +pkg syscall (freebsd-arm64-cgo), const IFF_SMART ideal-int +pkg syscall (freebsd-arm64-cgo), const IFF_STATICARP = 524288 +pkg syscall (freebsd-arm64-cgo), const IFF_STATICARP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFNAMSIZ = 16 +pkg syscall (freebsd-arm64-cgo), const IFNAMSIZ ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_1822 = 2 +pkg syscall (freebsd-arm64-cgo), const IFT_1822 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_A12MPPSWITCH = 130 +pkg syscall (freebsd-arm64-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_AAL2 = 187 +pkg syscall (freebsd-arm64-cgo), const IFT_AAL2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_AAL5 = 49 +pkg syscall (freebsd-arm64-cgo), const IFT_AAL5 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ADSL = 94 +pkg syscall (freebsd-arm64-cgo), const IFT_ADSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_AFLANE8023 = 59 +pkg syscall (freebsd-arm64-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_AFLANE8025 = 60 +pkg syscall (freebsd-arm64-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ARAP = 88 +pkg syscall (freebsd-arm64-cgo), const IFT_ARAP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ARCNET = 35 +pkg syscall (freebsd-arm64-cgo), const IFT_ARCNET ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (freebsd-arm64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ASYNC = 84 +pkg syscall (freebsd-arm64-cgo), const IFT_ASYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATM = 37 +pkg syscall (freebsd-arm64-cgo), const IFT_ATM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMDXI = 105 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMFUNI = 106 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMIMA = 107 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMLOGICAL = 80 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMRADIO = 189 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMSUBINTERFACE = 134 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMVCIENDPT = 194 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ATMVIRTUAL = 149 +pkg syscall (freebsd-arm64-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 +pkg syscall (freebsd-arm64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_BRIDGE = 209 +pkg syscall (freebsd-arm64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_BSC = 83 +pkg syscall (freebsd-arm64-cgo), const IFT_BSC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CARP = 248 +pkg syscall (freebsd-arm64-cgo), const IFT_CARP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CCTEMUL = 61 +pkg syscall (freebsd-arm64-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CEPT = 19 +pkg syscall (freebsd-arm64-cgo), const IFT_CEPT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CES = 133 +pkg syscall (freebsd-arm64-cgo), const IFT_CES ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CHANNEL = 70 +pkg syscall (freebsd-arm64-cgo), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_CNR = 85 +pkg syscall (freebsd-arm64-cgo), const IFT_CNR ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_COFFEE = 132 +pkg syscall (freebsd-arm64-cgo), const IFT_COFFEE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_COMPOSITELINK = 155 +pkg syscall (freebsd-arm64-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DCN = 141 +pkg syscall (freebsd-arm64-cgo), const IFT_DCN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DIGITALPOWERLINE = 138 +pkg syscall (freebsd-arm64-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 +pkg syscall (freebsd-arm64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DLSW = 74 +pkg syscall (freebsd-arm64-cgo), const IFT_DLSW ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER = 127 +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 +pkg syscall (freebsd-arm64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DS0 = 81 +pkg syscall (freebsd-arm64-cgo), const IFT_DS0 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DS0BUNDLE = 82 +pkg syscall (freebsd-arm64-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DS1FDL = 170 +pkg syscall (freebsd-arm64-cgo), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DS3 = 30 +pkg syscall (freebsd-arm64-cgo), const IFT_DS3 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DTM = 140 +pkg syscall (freebsd-arm64-cgo), const IFT_DTM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DVBASILN = 172 +pkg syscall (freebsd-arm64-cgo), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DVBASIOUT = 173 +pkg syscall (freebsd-arm64-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCMACLAYER = 146 +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCUPSTREAM = 148 +pkg syscall (freebsd-arm64-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ENC = 244 +pkg syscall (freebsd-arm64-cgo), const IFT_ENC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_EON = 25 +pkg syscall (freebsd-arm64-cgo), const IFT_EON ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_EPLRS = 87 +pkg syscall (freebsd-arm64-cgo), const IFT_EPLRS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ESCON = 73 +pkg syscall (freebsd-arm64-cgo), const IFT_ESCON ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ETHER = 6 +pkg syscall (freebsd-arm64-cgo), const IFT_ETHER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FAITH = 242 +pkg syscall (freebsd-arm64-cgo), const IFT_FAITH ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FAST = 125 +pkg syscall (freebsd-arm64-cgo), const IFT_FAST ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FASTETHER = 62 +pkg syscall (freebsd-arm64-cgo), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FASTETHERFX = 69 +pkg syscall (freebsd-arm64-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FDDI = 15 +pkg syscall (freebsd-arm64-cgo), const IFT_FDDI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FIBRECHANNEL = 56 +pkg syscall (freebsd-arm64-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 +pkg syscall (freebsd-arm64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRAMERELAYMPI = 92 +pkg syscall (freebsd-arm64-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRDLCIENDPT = 193 +pkg syscall (freebsd-arm64-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRELAY = 32 +pkg syscall (freebsd-arm64-cgo), const IFT_FRELAY ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (freebsd-arm64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRF16MFRBUNDLE = 163 +pkg syscall (freebsd-arm64-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_FRFORWARD = 158 +pkg syscall (freebsd-arm64-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_G703AT2MB = 67 +pkg syscall (freebsd-arm64-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_G703AT64K = 66 +pkg syscall (freebsd-arm64-cgo), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_GIF = 240 +pkg syscall (freebsd-arm64-cgo), const IFT_GIF ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_GIGABITETHERNET = 117 +pkg syscall (freebsd-arm64-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_GR303IDT = 178 +pkg syscall (freebsd-arm64-cgo), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_GR303RDT = 177 +pkg syscall (freebsd-arm64-cgo), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_H323GATEKEEPER = 164 +pkg syscall (freebsd-arm64-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_H323PROXY = 165 +pkg syscall (freebsd-arm64-cgo), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HDH1822 = 3 +pkg syscall (freebsd-arm64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HDLC = 118 +pkg syscall (freebsd-arm64-cgo), const IFT_HDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HDSL2 = 168 +pkg syscall (freebsd-arm64-cgo), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HIPERLAN2 = 183 +pkg syscall (freebsd-arm64-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HIPPI = 47 +pkg syscall (freebsd-arm64-cgo), const IFT_HIPPI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HIPPIINTERFACE = 57 +pkg syscall (freebsd-arm64-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HOSTPAD = 90 +pkg syscall (freebsd-arm64-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HSSI = 46 +pkg syscall (freebsd-arm64-cgo), const IFT_HSSI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_HY = 14 +pkg syscall (freebsd-arm64-cgo), const IFT_HY ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IBM370PARCHAN = 72 +pkg syscall (freebsd-arm64-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IDSL = 154 +pkg syscall (freebsd-arm64-cgo), const IFT_IDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE80211 = 71 +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE80212 = 55 +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE8023ADLAG = 161 +pkg syscall (freebsd-arm64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IFGSN = 145 +pkg syscall (freebsd-arm64-cgo), const IFT_IFGSN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IMT = 190 +pkg syscall (freebsd-arm64-cgo), const IFT_IMT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_INFINIBAND = 199 +pkg syscall (freebsd-arm64-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_INTERLEAVE = 124 +pkg syscall (freebsd-arm64-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IP = 126 +pkg syscall (freebsd-arm64-cgo), const IFT_IP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPFORWARD = 142 +pkg syscall (freebsd-arm64-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERATM = 114 +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERCDLC = 109 +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERCLAW = 110 +pkg syscall (freebsd-arm64-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPSWITCH = 78 +pkg syscall (freebsd-arm64-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_IPXIP = 249 +pkg syscall (freebsd-arm64-cgo), const IFT_IPXIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISDN = 63 +pkg syscall (freebsd-arm64-cgo), const IFT_ISDN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNS = 75 +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNU = 76 +pkg syscall (freebsd-arm64-cgo), const IFT_ISDNU ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88023 = 7 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88024 = 8 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025 = 9 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025CRFPINT = 98 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025DTR = 86 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025FIBER = 115 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88026 = 10 +pkg syscall (freebsd-arm64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ISUP = 179 +pkg syscall (freebsd-arm64-cgo), const IFT_ISUP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_L2VLAN = 135 +pkg syscall (freebsd-arm64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_L3IPVLAN = 136 +pkg syscall (freebsd-arm64-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_L3IPXVLAN = 137 +pkg syscall (freebsd-arm64-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_LAPB = 16 +pkg syscall (freebsd-arm64-cgo), const IFT_LAPB ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_LAPD = 77 +pkg syscall (freebsd-arm64-cgo), const IFT_LAPD ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_LAPF = 119 +pkg syscall (freebsd-arm64-cgo), const IFT_LAPF ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (freebsd-arm64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_LOOP = 24 +pkg syscall (freebsd-arm64-cgo), const IFT_LOOP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MEDIAMAILOVERIP = 139 +pkg syscall (freebsd-arm64-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MFSIGLINK = 167 +pkg syscall (freebsd-arm64-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MIOX25 = 38 +pkg syscall (freebsd-arm64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MODEM = 48 +pkg syscall (freebsd-arm64-cgo), const IFT_MODEM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MPC = 113 +pkg syscall (freebsd-arm64-cgo), const IFT_MPC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MPLS = 166 +pkg syscall (freebsd-arm64-cgo), const IFT_MPLS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MPLSTUNNEL = 150 +pkg syscall (freebsd-arm64-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MSDSL = 143 +pkg syscall (freebsd-arm64-cgo), const IFT_MSDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MVL = 191 +pkg syscall (freebsd-arm64-cgo), const IFT_MVL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_MYRINET = 99 +pkg syscall (freebsd-arm64-cgo), const IFT_MYRINET ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_NFAS = 175 +pkg syscall (freebsd-arm64-cgo), const IFT_NFAS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_NSIP = 27 +pkg syscall (freebsd-arm64-cgo), const IFT_NSIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_OPTICALCHANNEL = 195 +pkg syscall (freebsd-arm64-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_OPTICALTRANSPORT = 196 +pkg syscall (freebsd-arm64-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_OTHER = 1 +pkg syscall (freebsd-arm64-cgo), const IFT_OTHER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_P10 = 12 +pkg syscall (freebsd-arm64-cgo), const IFT_P10 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_P80 = 13 +pkg syscall (freebsd-arm64-cgo), const IFT_P80 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PARA = 34 +pkg syscall (freebsd-arm64-cgo), const IFT_PARA ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PFLOG = 246 +pkg syscall (freebsd-arm64-cgo), const IFT_PFLOG ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PFSYNC = 247 +pkg syscall (freebsd-arm64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PLC = 174 +pkg syscall (freebsd-arm64-cgo), const IFT_PLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_POS = 171 +pkg syscall (freebsd-arm64-cgo), const IFT_POS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PPP = 23 +pkg syscall (freebsd-arm64-cgo), const IFT_PPP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 +pkg syscall (freebsd-arm64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPBWAP2MP = 184 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPCNLS = 89 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPMUX = 54 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PROPWIRELESSP2P = 157 +pkg syscall (freebsd-arm64-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (freebsd-arm64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_PVC = 241 +pkg syscall (freebsd-arm64-cgo), const IFT_PVC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_QLLC = 68 +pkg syscall (freebsd-arm64-cgo), const IFT_QLLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_RADIOMAC = 188 +pkg syscall (freebsd-arm64-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_RADSL = 95 +pkg syscall (freebsd-arm64-cgo), const IFT_RADSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_REACHDSL = 192 +pkg syscall (freebsd-arm64-cgo), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_RFC1483 = 159 +pkg syscall (freebsd-arm64-cgo), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_RS232 = 33 +pkg syscall (freebsd-arm64-cgo), const IFT_RS232 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_RSRB = 79 +pkg syscall (freebsd-arm64-cgo), const IFT_RSRB ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SDLC = 17 +pkg syscall (freebsd-arm64-cgo), const IFT_SDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SDSL = 96 +pkg syscall (freebsd-arm64-cgo), const IFT_SDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SHDSL = 169 +pkg syscall (freebsd-arm64-cgo), const IFT_SHDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SIP = 31 +pkg syscall (freebsd-arm64-cgo), const IFT_SIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SLIP = 28 +pkg syscall (freebsd-arm64-cgo), const IFT_SLIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (freebsd-arm64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (freebsd-arm64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SONET = 39 +pkg syscall (freebsd-arm64-cgo), const IFT_SONET ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 +pkg syscall (freebsd-arm64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SONETPATH = 50 +pkg syscall (freebsd-arm64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SONETVT = 51 +pkg syscall (freebsd-arm64-cgo), const IFT_SONETVT ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SRP = 151 +pkg syscall (freebsd-arm64-cgo), const IFT_SRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_SS7SIGLINK = 156 +pkg syscall (freebsd-arm64-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_STACKTOSTACK = 111 +pkg syscall (freebsd-arm64-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_STARLAN = 11 +pkg syscall (freebsd-arm64-cgo), const IFT_STARLAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_STF = 215 +pkg syscall (freebsd-arm64-cgo), const IFT_STF ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_T1 = 18 +pkg syscall (freebsd-arm64-cgo), const IFT_T1 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_TDLC = 116 +pkg syscall (freebsd-arm64-cgo), const IFT_TDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_TERMPAD = 91 +pkg syscall (freebsd-arm64-cgo), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_TR008 = 176 +pkg syscall (freebsd-arm64-cgo), const IFT_TR008 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_TRANSPHDLC = 123 +pkg syscall (freebsd-arm64-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_TUNNEL = 131 +pkg syscall (freebsd-arm64-cgo), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_ULTRA = 29 +pkg syscall (freebsd-arm64-cgo), const IFT_ULTRA ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_USB = 160 +pkg syscall (freebsd-arm64-cgo), const IFT_USB ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_V11 = 64 +pkg syscall (freebsd-arm64-cgo), const IFT_V11 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_V35 = 45 +pkg syscall (freebsd-arm64-cgo), const IFT_V35 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_V36 = 65 +pkg syscall (freebsd-arm64-cgo), const IFT_V36 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_V37 = 120 +pkg syscall (freebsd-arm64-cgo), const IFT_V37 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VDSL = 97 +pkg syscall (freebsd-arm64-cgo), const IFT_VDSL ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VIRTUALIPADDRESS = 112 +pkg syscall (freebsd-arm64-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEEM = 100 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEENCAP = 103 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEFXO = 101 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEFXS = 102 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERATM = 152 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERIP = 104 +pkg syscall (freebsd-arm64-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X213 = 93 +pkg syscall (freebsd-arm64-cgo), const IFT_X213 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X25 = 5 +pkg syscall (freebsd-arm64-cgo), const IFT_X25 ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X25DDN = 4 +pkg syscall (freebsd-arm64-cgo), const IFT_X25DDN ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X25HUNTGROUP = 122 +pkg syscall (freebsd-arm64-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X25MLP = 121 +pkg syscall (freebsd-arm64-cgo), const IFT_X25MLP ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_X25PLE = 40 +pkg syscall (freebsd-arm64-cgo), const IFT_X25PLE ideal-int +pkg syscall (freebsd-arm64-cgo), const IFT_XETHER = 26 +pkg syscall (freebsd-arm64-cgo), const IFT_XETHER ideal-int +pkg syscall (freebsd-arm64-cgo), const IGNBRK = 1 +pkg syscall (freebsd-arm64-cgo), const IGNBRK ideal-int +pkg syscall (freebsd-arm64-cgo), const IGNCR = 128 +pkg syscall (freebsd-arm64-cgo), const IGNCR ideal-int +pkg syscall (freebsd-arm64-cgo), const IGNPAR = 4 +pkg syscall (freebsd-arm64-cgo), const IGNPAR ideal-int +pkg syscall (freebsd-arm64-cgo), const IMAXBEL = 8192 +pkg syscall (freebsd-arm64-cgo), const IMAXBEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (freebsd-arm64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (freebsd-arm64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-arm64-cgo), const IN_RFC3021_MASK = 4294967294 +pkg syscall (freebsd-arm64-cgo), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const INLCR = 64 +pkg syscall (freebsd-arm64-cgo), const INLCR ideal-int +pkg syscall (freebsd-arm64-cgo), const INPCK = 16 +pkg syscall (freebsd-arm64-cgo), const INPCK ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (freebsd-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (freebsd-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_BINDANY = 24 +pkg syscall (freebsd-arm64-cgo), const IP_BINDANY ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (freebsd-arm64-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (freebsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DF = 16384 +pkg syscall (freebsd-arm64-cgo), const IP_DF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DONTFRAG = 67 +pkg syscall (freebsd-arm64-cgo), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (freebsd-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (freebsd-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET3 = 49 +pkg syscall (freebsd-arm64-cgo), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FAITH = 22 +pkg syscall (freebsd-arm64-cgo), const IP_FAITH ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_ADD = 50 +pkg syscall (freebsd-arm64-cgo), const IP_FW_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_DEL = 51 +pkg syscall (freebsd-arm64-cgo), const IP_FW_DEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_FLUSH = 52 +pkg syscall (freebsd-arm64-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_GET = 54 +pkg syscall (freebsd-arm64-cgo), const IP_FW_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_CFG = 56 +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_DEL = 57 +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_GET_CONFIG = 58 +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_GET_LOG = 59 +pkg syscall (freebsd-arm64-cgo), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_RESETLOG = 55 +pkg syscall (freebsd-arm64-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_ADD = 40 +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_DEL = 41 +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_FLUSH = 42 +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_GETSIZE = 43 +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_LIST = 44 +pkg syscall (freebsd-arm64-cgo), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW_ZERO = 53 +pkg syscall (freebsd-arm64-cgo), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_FW3 = 48 +pkg syscall (freebsd-arm64-cgo), const IP_FW3 ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_HDRINCL = 2 +pkg syscall (freebsd-arm64-cgo), const IP_HDRINCL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (freebsd-arm64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOURCE_FILTER = 1024 +pkg syscall (freebsd-arm64-cgo), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (freebsd-arm64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MF = 8192 +pkg syscall (freebsd-arm64-cgo), const IP_MF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm64-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MINTTL = 66 +pkg syscall (freebsd-arm64-cgo), const IP_MINTTL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MSFILTER = 74 +pkg syscall (freebsd-arm64-cgo), const IP_MSFILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MSS = 576 +pkg syscall (freebsd-arm64-cgo), const IP_MSS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (freebsd-arm64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (freebsd-arm64-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (freebsd-arm64-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_OFFMASK = 8191 +pkg syscall (freebsd-arm64-cgo), const IP_OFFMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_ONESBCAST = 23 +pkg syscall (freebsd-arm64-cgo), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_OPTIONS = 1 +pkg syscall (freebsd-arm64-cgo), const IP_OPTIONS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE = 19 +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (freebsd-arm64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVIF = 20 +pkg syscall (freebsd-arm64-cgo), const IP_RECVIF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVOPTS = 5 +pkg syscall (freebsd-arm64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (freebsd-arm64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVTOS = 68 +pkg syscall (freebsd-arm64-cgo), const IP_RECVTOS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RECVTTL = 65 +pkg syscall (freebsd-arm64-cgo), const IP_RECVTTL ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RETOPTS = 8 +pkg syscall (freebsd-arm64-cgo), const IP_RETOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RF = 32768 +pkg syscall (freebsd-arm64-cgo), const IP_RF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_OFF = 16 +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_ON = 15 +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (freebsd-arm64-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_SENDSRCADDR = 7 +pkg syscall (freebsd-arm64-cgo), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IP_TOS = 3 +pkg syscall (freebsd-arm64-cgo), const IP_TTL = 4 +pkg syscall (freebsd-arm64-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (freebsd-arm64-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_3PC = 34 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ADFS = 68 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AH = 51 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AH ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AHIP = 61 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_APES = 99 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_APES ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AX25 = 93 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BHA = 49 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BLT = 30 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CARP = 112 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CFTP = 62 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CMTP = 38 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CPHB = 73 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CPNX = 72 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DDP = 37 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DGP = 86 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DIVERT = 258 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DONE = 257 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EGP = 8 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EMCON = 14 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EON = 80 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_EON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ESP = 50 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GGP = 3 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GMTP = 100 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GRE = 47 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HELLO = 63 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HMP = 20 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDP = 22 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDPR = 35 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDRP = 45 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGP = 85 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGRP = 88 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IL = 40 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IL ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_INLSP = 52 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_INP = 32 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_INP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPCV = 71 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPPC = 67 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IRTP = 28 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LARP = 91 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MAX = 256 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MEAS = 19 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MH = 135 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MH ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MHRP = 48 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MICP = 95 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MOBILE = 55 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MTP = 92 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MUX = 18 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ND = 77 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ND ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NHRP = 54 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NONE = 59 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NSP = 31 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NVPII = 11 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_OLD_DIVERT = 254 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PFSYNC = 240 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PGM = 113 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PIGP = 9 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PIM = 103 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PRM = 21 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PUP = 12 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PVP = 75 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RAW = 255 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RDP = 27 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RVD = 66 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SATMON = 69 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SCTP = 132 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SDRP = 42 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SEND = 259 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SEP = 33 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SKIP = 57 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SPACER = 32767 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SRPC = 90 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ST = 7 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_ST ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TCF = 87 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TLSP = 56 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TP = 29 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TPXX = 39 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TTP = 84 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VINES = 83 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VISA = 70 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VMTP = 81 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WBMON = 78 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WSN = 74 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_XNET = 15 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-arm64-cgo), const IPPROTO_XTP = 36 +pkg syscall (freebsd-arm64-cgo), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_AUTOFLOWLABEL = 59 +pkg syscall (freebsd-arm64-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_BINDANY = 64 +pkg syscall (freebsd-arm64-cgo), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (freebsd-arm64-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (freebsd-arm64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (freebsd-arm64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_DONTFRAG = 62 +pkg syscall (freebsd-arm64-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_DSTOPTS = 50 +pkg syscall (freebsd-arm64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FAITH = 29 +pkg syscall (freebsd-arm64-cgo), const IPV6_FAITH ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (freebsd-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (freebsd-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (freebsd-arm64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_ADD = 30 +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_DEL = 31 +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_GET = 34 +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (freebsd-arm64-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (freebsd-arm64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_HOPLIMIT = 47 +pkg syscall (freebsd-arm64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_HOPOPTS = 49 +pkg syscall (freebsd-arm64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (freebsd-arm64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (freebsd-arm64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (freebsd-arm64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (freebsd-arm64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MMTU = 1280 +pkg syscall (freebsd-arm64-cgo), const IPV6_MMTU ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MSFILTER = 74 +pkg syscall (freebsd-arm64-cgo), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (freebsd-arm64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (freebsd-arm64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (freebsd-arm64-cgo), const IPV6_NEXTHOP = 48 +pkg syscall (freebsd-arm64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PATHMTU = 44 +pkg syscall (freebsd-arm64-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PKTINFO = 46 +pkg syscall (freebsd-arm64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (freebsd-arm64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_PREFER_TEMPADDR = 63 +pkg syscall (freebsd-arm64-cgo), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVDSTOPTS = 40 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVHOPLIMIT = 37 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVHOPOPTS = 39 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVPATHMTU = 43 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVPKTINFO = 36 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVRTHDR = 38 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVTCLASS = 57 +pkg syscall (freebsd-arm64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR = 51 +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDRDSTOPTS = 35 +pkg syscall (freebsd-arm64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (freebsd-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_TCLASS = 61 +pkg syscall (freebsd-arm64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (freebsd-arm64-cgo), const IPV6_USE_MIN_MTU = 42 +pkg syscall (freebsd-arm64-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (freebsd-arm64-cgo), const IPV6_VERSION = 96 +pkg syscall (freebsd-arm64-cgo), const IPV6_VERSION ideal-int +pkg syscall (freebsd-arm64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (freebsd-arm64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const ISIG = 128 +pkg syscall (freebsd-arm64-cgo), const ISIG ideal-int +pkg syscall (freebsd-arm64-cgo), const ISTRIP = 32 +pkg syscall (freebsd-arm64-cgo), const ISTRIP ideal-int +pkg syscall (freebsd-arm64-cgo), const IXANY = 2048 +pkg syscall (freebsd-arm64-cgo), const IXANY ideal-int +pkg syscall (freebsd-arm64-cgo), const IXOFF = 1024 +pkg syscall (freebsd-arm64-cgo), const IXOFF ideal-int +pkg syscall (freebsd-arm64-cgo), const IXON = 512 +pkg syscall (freebsd-arm64-cgo), const IXON ideal-int +pkg syscall (freebsd-arm64-cgo), const LOCK_EX = 2 +pkg syscall (freebsd-arm64-cgo), const LOCK_EX ideal-int +pkg syscall (freebsd-arm64-cgo), const LOCK_NB = 4 +pkg syscall (freebsd-arm64-cgo), const LOCK_NB ideal-int +pkg syscall (freebsd-arm64-cgo), const LOCK_SH = 1 +pkg syscall (freebsd-arm64-cgo), const LOCK_SH ideal-int +pkg syscall (freebsd-arm64-cgo), const LOCK_UN = 8 +pkg syscall (freebsd-arm64-cgo), const LOCK_UN ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_AUTOSYNC = 7 +pkg syscall (freebsd-arm64-cgo), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_CORE = 9 +pkg syscall (freebsd-arm64-cgo), const MADV_CORE ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_DONTNEED = 4 +pkg syscall (freebsd-arm64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_FREE = 5 +pkg syscall (freebsd-arm64-cgo), const MADV_FREE ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_NOCORE = 8 +pkg syscall (freebsd-arm64-cgo), const MADV_NOCORE ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_NORMAL = 0 +pkg syscall (freebsd-arm64-cgo), const MADV_NORMAL ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_NOSYNC = 6 +pkg syscall (freebsd-arm64-cgo), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_PROTECT = 10 +pkg syscall (freebsd-arm64-cgo), const MADV_PROTECT ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_RANDOM = 1 +pkg syscall (freebsd-arm64-cgo), const MADV_RANDOM ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (freebsd-arm64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-arm64-cgo), const MADV_WILLNEED = 3 +pkg syscall (freebsd-arm64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_32BIT = 524288 +pkg syscall (freebsd-arm64-cgo), const MAP_32BIT ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-arm64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_ANON = 4096 +pkg syscall (freebsd-arm64-cgo), const MAP_ANON ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_ANONYMOUS = 4096 +pkg syscall (freebsd-arm64-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_COPY = 2 +pkg syscall (freebsd-arm64-cgo), const MAP_COPY ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_FILE = 0 +pkg syscall (freebsd-arm64-cgo), const MAP_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_FIXED = 16 +pkg syscall (freebsd-arm64-cgo), const MAP_FIXED ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (freebsd-arm64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_NOCORE = 131072 +pkg syscall (freebsd-arm64-cgo), const MAP_NOCORE ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_NORESERVE = 64 +pkg syscall (freebsd-arm64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_NOSYNC = 2048 +pkg syscall (freebsd-arm64-cgo), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_PREFAULT_READ = 262144 +pkg syscall (freebsd-arm64-cgo), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_PRIVATE = 2 +pkg syscall (freebsd-arm64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_RENAME = 32 +pkg syscall (freebsd-arm64-cgo), const MAP_RENAME ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (freebsd-arm64-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_RESERVED0100 = 256 +pkg syscall (freebsd-arm64-cgo), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_SHARED = 1 +pkg syscall (freebsd-arm64-cgo), const MAP_SHARED ideal-int +pkg syscall (freebsd-arm64-cgo), const MAP_STACK = 1024 +pkg syscall (freebsd-arm64-cgo), const MAP_STACK ideal-int +pkg syscall (freebsd-arm64-cgo), const MCL_CURRENT = 1 +pkg syscall (freebsd-arm64-cgo), const MCL_CURRENT ideal-int +pkg syscall (freebsd-arm64-cgo), const MCL_FUTURE = 2 +pkg syscall (freebsd-arm64-cgo), const MCL_FUTURE ideal-int +pkg syscall (freebsd-arm64-cgo), const MS_ASYNC = 1 +pkg syscall (freebsd-arm64-cgo), const MS_ASYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MS_INVALIDATE = 2 +pkg syscall (freebsd-arm64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-arm64-cgo), const MS_SYNC = 0 +pkg syscall (freebsd-arm64-cgo), const MS_SYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-arm64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_COMPAT = 32768 +pkg syscall (freebsd-arm64-cgo), const MSG_COMPAT ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_CTRUNC = 32 +pkg syscall (freebsd-arm64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (freebsd-arm64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (freebsd-arm64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_EOF = 256 +pkg syscall (freebsd-arm64-cgo), const MSG_EOF ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_EOR = 8 +pkg syscall (freebsd-arm64-cgo), const MSG_EOR ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_NBIO = 16384 +pkg syscall (freebsd-arm64-cgo), const MSG_NBIO ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_NOSIGNAL = 131072 +pkg syscall (freebsd-arm64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_NOTIFICATION = 8192 +pkg syscall (freebsd-arm64-cgo), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_OOB = 1 +pkg syscall (freebsd-arm64-cgo), const MSG_OOB ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_PEEK = 2 +pkg syscall (freebsd-arm64-cgo), const MSG_PEEK ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_TRUNC = 16 +pkg syscall (freebsd-arm64-cgo), const MSG_TRUNC ideal-int +pkg syscall (freebsd-arm64-cgo), const MSG_WAITALL = 64 +pkg syscall (freebsd-arm64-cgo), const MSG_WAITALL ideal-int +pkg syscall (freebsd-arm64-cgo), const NAME_MAX = 255 +pkg syscall (freebsd-arm64-cgo), const NAME_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_DUMP = 1 +pkg syscall (freebsd-arm64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (freebsd-arm64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFLIST = 3 +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFLISTL = 5 +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFMALIST = 4 +pkg syscall (freebsd-arm64-cgo), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-arm64-cgo), const NET_RT_MAXID = 6 +pkg syscall (freebsd-arm64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-arm64-cgo), const NOFLSH = 2147483648 +pkg syscall (freebsd-arm64-cgo), const NOFLSH ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (freebsd-arm64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_CHILD = 4 +pkg syscall (freebsd-arm64-cgo), const NOTE_CHILD ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_DELETE = 1 +pkg syscall (freebsd-arm64-cgo), const NOTE_DELETE ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (freebsd-arm64-cgo), const NOTE_EXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (freebsd-arm64-cgo), const NOTE_EXIT ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_EXTEND = 4 +pkg syscall (freebsd-arm64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFAND ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFNOP = 0 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (freebsd-arm64-cgo), const NOTE_FFOR ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (freebsd-arm64-cgo), const NOTE_FORK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_LINK = 16 +pkg syscall (freebsd-arm64-cgo), const NOTE_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_LOWAT = 1 +pkg syscall (freebsd-arm64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_PCTRLMASK = 4026531840 +pkg syscall (freebsd-arm64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (freebsd-arm64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_RENAME = 32 +pkg syscall (freebsd-arm64-cgo), const NOTE_RENAME ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_REVOKE = 64 +pkg syscall (freebsd-arm64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_TRACK = 1 +pkg syscall (freebsd-arm64-cgo), const NOTE_TRACK ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (freebsd-arm64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (freebsd-arm64-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-arm64-cgo), const NOTE_WRITE = 2 +pkg syscall (freebsd-arm64-cgo), const NOTE_WRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const O_ACCMODE = 3 +pkg syscall (freebsd-arm64-cgo), const O_ACCMODE ideal-int +pkg syscall (freebsd-arm64-cgo), const O_APPEND = 8 +pkg syscall (freebsd-arm64-cgo), const O_ASYNC = 64 +pkg syscall (freebsd-arm64-cgo), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-arm64-cgo), const O_CREAT = 512 +pkg syscall (freebsd-arm64-cgo), const O_DIRECT = 65536 +pkg syscall (freebsd-arm64-cgo), const O_DIRECT ideal-int +pkg syscall (freebsd-arm64-cgo), const O_DIRECTORY = 131072 +pkg syscall (freebsd-arm64-cgo), const O_DIRECTORY ideal-int +pkg syscall (freebsd-arm64-cgo), const O_EXCL = 2048 +pkg syscall (freebsd-arm64-cgo), const O_EXEC = 262144 +pkg syscall (freebsd-arm64-cgo), const O_EXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const O_EXLOCK = 32 +pkg syscall (freebsd-arm64-cgo), const O_EXLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const O_FSYNC = 128 +pkg syscall (freebsd-arm64-cgo), const O_FSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const O_NDELAY = 4 +pkg syscall (freebsd-arm64-cgo), const O_NDELAY ideal-int +pkg syscall (freebsd-arm64-cgo), const O_NOCTTY = 32768 +pkg syscall (freebsd-arm64-cgo), const O_NOFOLLOW = 256 +pkg syscall (freebsd-arm64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-arm64-cgo), const O_NONBLOCK = 4 +pkg syscall (freebsd-arm64-cgo), const O_SHLOCK = 16 +pkg syscall (freebsd-arm64-cgo), const O_SHLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const O_SYNC = 128 +pkg syscall (freebsd-arm64-cgo), const O_TRUNC = 1024 +pkg syscall (freebsd-arm64-cgo), const O_TTY_INIT = 524288 +pkg syscall (freebsd-arm64-cgo), const O_TTY_INIT ideal-int +pkg syscall (freebsd-arm64-cgo), const OCRNL = 16 +pkg syscall (freebsd-arm64-cgo), const OCRNL ideal-int +pkg syscall (freebsd-arm64-cgo), const ONLCR = 2 +pkg syscall (freebsd-arm64-cgo), const ONLCR ideal-int +pkg syscall (freebsd-arm64-cgo), const ONLRET = 64 +pkg syscall (freebsd-arm64-cgo), const ONLRET ideal-int +pkg syscall (freebsd-arm64-cgo), const ONOCR = 32 +pkg syscall (freebsd-arm64-cgo), const ONOCR ideal-int +pkg syscall (freebsd-arm64-cgo), const ONOEOT = 8 +pkg syscall (freebsd-arm64-cgo), const ONOEOT ideal-int +pkg syscall (freebsd-arm64-cgo), const OPOST = 1 +pkg syscall (freebsd-arm64-cgo), const OPOST ideal-int +pkg syscall (freebsd-arm64-cgo), const PARENB = 4096 +pkg syscall (freebsd-arm64-cgo), const PARENB ideal-int +pkg syscall (freebsd-arm64-cgo), const PARMRK = 8 +pkg syscall (freebsd-arm64-cgo), const PARMRK ideal-int +pkg syscall (freebsd-arm64-cgo), const PARODD = 8192 +pkg syscall (freebsd-arm64-cgo), const PARODD ideal-int +pkg syscall (freebsd-arm64-cgo), const PENDIN = 536870912 +pkg syscall (freebsd-arm64-cgo), const PENDIN ideal-int +pkg syscall (freebsd-arm64-cgo), const PRIO_PGRP = 1 +pkg syscall (freebsd-arm64-cgo), const PRIO_PGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const PRIO_PROCESS = 0 +pkg syscall (freebsd-arm64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-arm64-cgo), const PRIO_USER = 2 +pkg syscall (freebsd-arm64-cgo), const PRIO_USER ideal-int +pkg syscall (freebsd-arm64-cgo), const PROT_EXEC = 4 +pkg syscall (freebsd-arm64-cgo), const PROT_EXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const PROT_NONE = 0 +pkg syscall (freebsd-arm64-cgo), const PROT_NONE ideal-int +pkg syscall (freebsd-arm64-cgo), const PROT_READ = 1 +pkg syscall (freebsd-arm64-cgo), const PROT_READ ideal-int +pkg syscall (freebsd-arm64-cgo), const PROT_WRITE = 2 +pkg syscall (freebsd-arm64-cgo), const PROT_WRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const PTRACE_CONT = 7 +pkg syscall (freebsd-arm64-cgo), const PTRACE_CONT ideal-int +pkg syscall (freebsd-arm64-cgo), const PTRACE_KILL = 8 +pkg syscall (freebsd-arm64-cgo), const PTRACE_KILL ideal-int +pkg syscall (freebsd-arm64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (freebsd-arm64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (freebsd-arm64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_AS = 10 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_AS ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_CORE = 4 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_CPU = 0 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_DATA = 2 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-arm64-cgo), const RLIMIT_STACK = 3 +pkg syscall (freebsd-arm64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-arm64-cgo), const RT_CACHING_CONTEXT = 1 +pkg syscall (freebsd-arm64-cgo), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const RT_DEFAULT_FIB = 0 +pkg syscall (freebsd-arm64-cgo), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-arm64-cgo), const RT_NORTREF = 2 +pkg syscall (freebsd-arm64-cgo), const RT_NORTREF ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_AUTHOR = 64 +pkg syscall (freebsd-arm64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_BRD = 128 +pkg syscall (freebsd-arm64-cgo), const RTA_BRD ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_DST = 1 +pkg syscall (freebsd-arm64-cgo), const RTA_DST ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_GATEWAY = 2 +pkg syscall (freebsd-arm64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_GENMASK = 8 +pkg syscall (freebsd-arm64-cgo), const RTA_GENMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_IFA = 32 +pkg syscall (freebsd-arm64-cgo), const RTA_IFA ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_IFP = 16 +pkg syscall (freebsd-arm64-cgo), const RTA_IFP ideal-int +pkg syscall (freebsd-arm64-cgo), const RTA_NETMASK = 4 +pkg syscall (freebsd-arm64-cgo), const RTA_NETMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (freebsd-arm64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_BRD = 7 +pkg syscall (freebsd-arm64-cgo), const RTAX_BRD ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_DST = 0 +pkg syscall (freebsd-arm64-cgo), const RTAX_DST ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (freebsd-arm64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_GENMASK = 3 +pkg syscall (freebsd-arm64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_IFA = 5 +pkg syscall (freebsd-arm64-cgo), const RTAX_IFA ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_IFP = 4 +pkg syscall (freebsd-arm64-cgo), const RTAX_IFP ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_MAX = 8 +pkg syscall (freebsd-arm64-cgo), const RTAX_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const RTAX_NETMASK = 2 +pkg syscall (freebsd-arm64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (freebsd-arm64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (freebsd-arm64-cgo), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_DONE = 64 +pkg syscall (freebsd-arm64-cgo), const RTF_DONE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (freebsd-arm64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_FMASK = 268752904 +pkg syscall (freebsd-arm64-cgo), const RTF_FMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_GATEWAY = 2 +pkg syscall (freebsd-arm64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-arm64-cgo), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_HOST = 4 +pkg syscall (freebsd-arm64-cgo), const RTF_HOST ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_LLDATA = 1024 +pkg syscall (freebsd-arm64-cgo), const RTF_LLDATA ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_LLINFO = 1024 +pkg syscall (freebsd-arm64-cgo), const RTF_LLINFO ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_LOCAL = 2097152 +pkg syscall (freebsd-arm64-cgo), const RTF_LOCAL ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_MODIFIED = 32 +pkg syscall (freebsd-arm64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (freebsd-arm64-cgo), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_PINNED = 1048576 +pkg syscall (freebsd-arm64-cgo), const RTF_PINNED ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_PRCLONING = 65536 +pkg syscall (freebsd-arm64-cgo), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO3 = 262144 +pkg syscall (freebsd-arm64-cgo), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_REJECT = 8 +pkg syscall (freebsd-arm64-cgo), const RTF_REJECT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_RNH_LOCKED = 1073741824 +pkg syscall (freebsd-arm64-cgo), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_STATIC = 2048 +pkg syscall (freebsd-arm64-cgo), const RTF_STATIC ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_STICKY = 268435456 +pkg syscall (freebsd-arm64-cgo), const RTF_STICKY ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_UP = 1 +pkg syscall (freebsd-arm64-cgo), const RTF_UP ideal-int +pkg syscall (freebsd-arm64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (freebsd-arm64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_ADD = 1 +pkg syscall (freebsd-arm64-cgo), const RTM_ADD ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_CHANGE = 3 +pkg syscall (freebsd-arm64-cgo), const RTM_CHANGE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_DELADDR = 13 +pkg syscall (freebsd-arm64-cgo), const RTM_DELADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_DELETE = 2 +pkg syscall (freebsd-arm64-cgo), const RTM_DELETE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_DELMADDR = 16 +pkg syscall (freebsd-arm64-cgo), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_GET = 4 +pkg syscall (freebsd-arm64-cgo), const RTM_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_IEEE80211 = 18 +pkg syscall (freebsd-arm64-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_IFANNOUNCE = 17 +pkg syscall (freebsd-arm64-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_IFINFO = 14 +pkg syscall (freebsd-arm64-cgo), const RTM_IFINFO ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_LOCK = 8 +pkg syscall (freebsd-arm64-cgo), const RTM_LOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_LOSING = 5 +pkg syscall (freebsd-arm64-cgo), const RTM_LOSING ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_MISS = 7 +pkg syscall (freebsd-arm64-cgo), const RTM_MISS ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_NEWADDR = 12 +pkg syscall (freebsd-arm64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_NEWMADDR = 15 +pkg syscall (freebsd-arm64-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_OLDADD = 9 +pkg syscall (freebsd-arm64-cgo), const RTM_OLDADD ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_OLDDEL = 10 +pkg syscall (freebsd-arm64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_REDIRECT = 6 +pkg syscall (freebsd-arm64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_RESOLVE = 11 +pkg syscall (freebsd-arm64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (freebsd-arm64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTM_VERSION = 5 +pkg syscall (freebsd-arm64-cgo), const RTM_VERSION ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_EXPIRE = 4 +pkg syscall (freebsd-arm64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (freebsd-arm64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_MTU = 1 +pkg syscall (freebsd-arm64-cgo), const RTV_MTU ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_RPIPE = 8 +pkg syscall (freebsd-arm64-cgo), const RTV_RPIPE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_RTT = 64 +pkg syscall (freebsd-arm64-cgo), const RTV_RTT ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_RTTVAR = 128 +pkg syscall (freebsd-arm64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_SPIPE = 16 +pkg syscall (freebsd-arm64-cgo), const RTV_SPIPE ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (freebsd-arm64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-arm64-cgo), const RTV_WEIGHT = 256 +pkg syscall (freebsd-arm64-cgo), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-arm64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (freebsd-arm64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-arm64-cgo), const RUSAGE_SELF = 0 +pkg syscall (freebsd-arm64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-arm64-cgo), const RUSAGE_THREAD = 1 +pkg syscall (freebsd-arm64-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-arm64-cgo), const S_IFMT = 61440 +pkg syscall (freebsd-arm64-cgo), const S_IRWXG = 56 +pkg syscall (freebsd-arm64-cgo), const S_IRWXG ideal-int +pkg syscall (freebsd-arm64-cgo), const S_IRWXO = 7 +pkg syscall (freebsd-arm64-cgo), const S_IRWXO ideal-int +pkg syscall (freebsd-arm64-cgo), const SCM_BINTIME = 4 +pkg syscall (freebsd-arm64-cgo), const SCM_BINTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SCM_CREDS = 3 +pkg syscall (freebsd-arm64-cgo), const SCM_CREDS ideal-int +pkg syscall (freebsd-arm64-cgo), const SCM_RIGHTS = 1 +pkg syscall (freebsd-arm64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-arm64-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (freebsd-arm64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIGBUS = 10 +pkg syscall (freebsd-arm64-cgo), const SIGCHLD = 20 +pkg syscall (freebsd-arm64-cgo), const SIGCHLD Signal +pkg syscall (freebsd-arm64-cgo), const SIGCONT = 19 +pkg syscall (freebsd-arm64-cgo), const SIGCONT Signal +pkg syscall (freebsd-arm64-cgo), const SIGEMT = 7 +pkg syscall (freebsd-arm64-cgo), const SIGEMT Signal +pkg syscall (freebsd-arm64-cgo), const SIGINFO = 29 +pkg syscall (freebsd-arm64-cgo), const SIGINFO Signal +pkg syscall (freebsd-arm64-cgo), const SIGIO = 23 +pkg syscall (freebsd-arm64-cgo), const SIGIO Signal +pkg syscall (freebsd-arm64-cgo), const SIGIOT = 6 +pkg syscall (freebsd-arm64-cgo), const SIGIOT Signal +pkg syscall (freebsd-arm64-cgo), const SIGLIBRT = 33 +pkg syscall (freebsd-arm64-cgo), const SIGLIBRT Signal +pkg syscall (freebsd-arm64-cgo), const SIGLWP = 32 +pkg syscall (freebsd-arm64-cgo), const SIGLWP Signal +pkg syscall (freebsd-arm64-cgo), const SIGPROF = 27 +pkg syscall (freebsd-arm64-cgo), const SIGPROF Signal +pkg syscall (freebsd-arm64-cgo), const SIGSTOP = 17 +pkg syscall (freebsd-arm64-cgo), const SIGSTOP Signal +pkg syscall (freebsd-arm64-cgo), const SIGSYS = 12 +pkg syscall (freebsd-arm64-cgo), const SIGSYS Signal +pkg syscall (freebsd-arm64-cgo), const SIGTHR = 32 +pkg syscall (freebsd-arm64-cgo), const SIGTHR Signal +pkg syscall (freebsd-arm64-cgo), const SIGTSTP = 18 +pkg syscall (freebsd-arm64-cgo), const SIGTSTP Signal +pkg syscall (freebsd-arm64-cgo), const SIGTTIN = 21 +pkg syscall (freebsd-arm64-cgo), const SIGTTIN Signal +pkg syscall (freebsd-arm64-cgo), const SIGTTOU = 22 +pkg syscall (freebsd-arm64-cgo), const SIGTTOU Signal +pkg syscall (freebsd-arm64-cgo), const SIGURG = 16 +pkg syscall (freebsd-arm64-cgo), const SIGURG Signal +pkg syscall (freebsd-arm64-cgo), const SIGUSR1 = 30 +pkg syscall (freebsd-arm64-cgo), const SIGUSR1 Signal +pkg syscall (freebsd-arm64-cgo), const SIGUSR2 = 31 +pkg syscall (freebsd-arm64-cgo), const SIGUSR2 Signal +pkg syscall (freebsd-arm64-cgo), const SIGVTALRM = 26 +pkg syscall (freebsd-arm64-cgo), const SIGVTALRM Signal +pkg syscall (freebsd-arm64-cgo), const SIGWINCH = 28 +pkg syscall (freebsd-arm64-cgo), const SIGWINCH Signal +pkg syscall (freebsd-arm64-cgo), const SIGXCPU = 24 +pkg syscall (freebsd-arm64-cgo), const SIGXCPU Signal +pkg syscall (freebsd-arm64-cgo), const SIGXFSZ = 25 +pkg syscall (freebsd-arm64-cgo), const SIGXFSZ Signal +pkg syscall (freebsd-arm64-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (freebsd-arm64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCADDRT = 2151707146 +pkg syscall (freebsd-arm64-cgo), const SIOCADDRT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-arm64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCAIFGROUP = 2150132103 +pkg syscall (freebsd-arm64-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCALIFADDR = 2165860635 +pkg syscall (freebsd-arm64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (freebsd-arm64-cgo), const SIOCATMARK ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (freebsd-arm64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDELRT = 2151707147 +pkg syscall (freebsd-arm64-cgo), const SIOCDELRT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (freebsd-arm64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDIFGROUP = 2150132105 +pkg syscall (freebsd-arm64-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDIFPHYADDR = 2149607753 +pkg syscall (freebsd-arm64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCDLIFADDR = 2165860637 +pkg syscall (freebsd-arm64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (freebsd-arm64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGETSGCNT = 3223351824 +pkg syscall (freebsd-arm64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGETVIFCNT = 3223876111 +pkg syscall (freebsd-arm64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (freebsd-arm64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFCAP = 3223349535 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFCONF = 3222300964 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFDESCR = 3223349546 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFFIB = 3223349596 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGMEMB = 3223873930 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGROUP = 3223873928 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFINDEX = 3223349536 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMAC = 3223349542 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMEDIA = 3224398136 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPDSTADDR = 3223349576 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPSRCADDR = 3223349575 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-arm64-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGLIFADDR = 3239602460 +pkg syscall (freebsd-arm64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGLIFPHYADDR = 3239602507 +pkg syscall (freebsd-arm64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (freebsd-arm64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (freebsd-arm64-cgo), const SIOCGPGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGPRIVATE_0 = 3223349584 +pkg syscall (freebsd-arm64-cgo), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCGPRIVATE_1 = 3223349585 +pkg syscall (freebsd-arm64-cgo), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCIFCREATE = 3223349626 +pkg syscall (freebsd-arm64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCIFCREATE2 = 3223349628 +pkg syscall (freebsd-arm64-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (freebsd-arm64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCIFGCLONERS = 3222301048 +pkg syscall (freebsd-arm64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (freebsd-arm64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (freebsd-arm64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFCAP = 2149607710 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFDESCR = 2149607721 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFFIB = 2149607773 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMAC = 2149607719 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFNAME = 2149607720 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFRVNET = 3223349595 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSIFVNET = 3223349594 +pkg syscall (freebsd-arm64-cgo), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSLIFPHYADDR = 2165860682 +pkg syscall (freebsd-arm64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (freebsd-arm64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (freebsd-arm64-cgo), const SIOCSPGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfHdr = 32 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfInsn = 8 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfProgram = 16 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfStat = 8 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfStat ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfVersion = 4 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfZbuf = 24 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofBpfZbufHeader = 32 +pkg syscall (freebsd-arm64-cgo), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofCmsghdr = 12 +pkg syscall (freebsd-arm64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-arm64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (freebsd-arm64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIfAnnounceMsghdr = 24 +pkg syscall (freebsd-arm64-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIfData = 152 +pkg syscall (freebsd-arm64-cgo), const SizeofIfData ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (freebsd-arm64-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIfMsghdr = 168 +pkg syscall (freebsd-arm64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (freebsd-arm64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIPMreq = 8 +pkg syscall (freebsd-arm64-cgo), const SizeofIPMreq ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIPMreqn = 12 +pkg syscall (freebsd-arm64-cgo), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (freebsd-arm64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-arm64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofLinger = 8 +pkg syscall (freebsd-arm64-cgo), const SizeofLinger ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofMsghdr = 48 +pkg syscall (freebsd-arm64-cgo), const SizeofMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofRtMetrics = 112 +pkg syscall (freebsd-arm64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofRtMsghdr = 152 +pkg syscall (freebsd-arm64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-arm64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (freebsd-arm64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_ACCEPTFILTER = 4096 +pkg syscall (freebsd-arm64-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_BINTIME = 8192 +pkg syscall (freebsd-arm64-cgo), const SO_BINTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_BROADCAST = 32 +pkg syscall (freebsd-arm64-cgo), const SO_DEBUG = 1 +pkg syscall (freebsd-arm64-cgo), const SO_DEBUG ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_DONTROUTE = 16 +pkg syscall (freebsd-arm64-cgo), const SO_ERROR = 4103 +pkg syscall (freebsd-arm64-cgo), const SO_ERROR ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (freebsd-arm64-cgo), const SO_LABEL = 4105 +pkg syscall (freebsd-arm64-cgo), const SO_LABEL ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_LINGER = 128 +pkg syscall (freebsd-arm64-cgo), const SO_LISTENINCQLEN = 4115 +pkg syscall (freebsd-arm64-cgo), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_LISTENQLEN = 4114 +pkg syscall (freebsd-arm64-cgo), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_LISTENQLIMIT = 4113 +pkg syscall (freebsd-arm64-cgo), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_NO_DDP = 32768 +pkg syscall (freebsd-arm64-cgo), const SO_NO_DDP ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_NO_OFFLOAD = 16384 +pkg syscall (freebsd-arm64-cgo), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_NOSIGPIPE = 2048 +pkg syscall (freebsd-arm64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_OOBINLINE = 256 +pkg syscall (freebsd-arm64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_PEERLABEL = 4112 +pkg syscall (freebsd-arm64-cgo), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_PROTOCOL = 4118 +pkg syscall (freebsd-arm64-cgo), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_PROTOTYPE = 4118 +pkg syscall (freebsd-arm64-cgo), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_RCVBUF = 4098 +pkg syscall (freebsd-arm64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (freebsd-arm64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (freebsd-arm64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_REUSEADDR = 4 +pkg syscall (freebsd-arm64-cgo), const SO_REUSEPORT = 512 +pkg syscall (freebsd-arm64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_SETFIB = 4116 +pkg syscall (freebsd-arm64-cgo), const SO_SETFIB ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_SNDBUF = 4097 +pkg syscall (freebsd-arm64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (freebsd-arm64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (freebsd-arm64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (freebsd-arm64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_TYPE = 4104 +pkg syscall (freebsd-arm64-cgo), const SO_TYPE ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (freebsd-arm64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_USER_COOKIE = 4117 +pkg syscall (freebsd-arm64-cgo), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-arm64-cgo), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-arm64-cgo), const SO_VENDOR ideal-int +pkg syscall (freebsd-arm64-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-arm64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-arm64-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (freebsd-arm64-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-arm64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const SOCK_RDM = 4 +pkg syscall (freebsd-arm64-cgo), const SOCK_RDM ideal-int +pkg syscall (freebsd-arm64-cgo), const SOL_SOCKET = 65535 +pkg syscall (freebsd-arm64-cgo), const SOMAXCONN = 128 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_FD = 354 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_FILE = 353 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_LINK = 428 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_FD = 352 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_FILE = 351 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_LINK = 427 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_FD = 349 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_FILE = 347 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_LINK = 425 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_FD = 350 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_FILE = 348 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_LINK = 426 +pkg syscall (freebsd-arm64-cgo), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___CAP_RIGHTS_GET = 515 +pkg syscall (freebsd-arm64-cgo), const SYS___CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___GETCWD = 326 +pkg syscall (freebsd-arm64-cgo), const SYS___GETCWD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_EXECVE = 415 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_FD = 386 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_FILE = 387 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_LINK = 410 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_PID = 409 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_PROC = 384 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_FD = 388 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_FILE = 389 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_LINK = 411 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_PROC = 385 +pkg syscall (freebsd-arm64-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___SEMCTL = 510 +pkg syscall (freebsd-arm64-cgo), const SYS___SEMCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___SETUGID = 374 +pkg syscall (freebsd-arm64-cgo), const SYS___SETUGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS___SYSCTL = 202 +pkg syscall (freebsd-arm64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS__UMTX_OP = 454 +pkg syscall (freebsd-arm64-cgo), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ABORT2 = 463 +pkg syscall (freebsd-arm64-cgo), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ACCEPT = 30 +pkg syscall (freebsd-arm64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-arm64-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ACCESS = 33 +pkg syscall (freebsd-arm64-cgo), const SYS_ACCESS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ACCT = 51 +pkg syscall (freebsd-arm64-cgo), const SYS_ACCT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ADJTIME = 140 +pkg syscall (freebsd-arm64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_CANCEL = 316 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_CANCEL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_ERROR = 317 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_ERROR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_FSYNC = 465 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_FSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_MLOCK = 543 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_MLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_READ = 255 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_READ ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_RETURN = 314 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_RETURN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_SUSPEND = 315 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_SUSPEND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_WAITCOMPLETE = 359 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_WAITCOMPLETE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_WRITE = 256 +pkg syscall (freebsd-arm64-cgo), const SYS_AIO_WRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AUDIT = 445 +pkg syscall (freebsd-arm64-cgo), const SYS_AUDIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AUDITCTL = 453 +pkg syscall (freebsd-arm64-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_AUDITON = 446 +pkg syscall (freebsd-arm64-cgo), const SYS_AUDITON ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_BIND = 104 +pkg syscall (freebsd-arm64-cgo), const SYS_BIND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_BINDAT = 538 +pkg syscall (freebsd-arm64-cgo), const SYS_BINDAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_ENTER = 516 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_FCNTLS_GET = 537 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_FCNTLS_LIMIT = 536 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_GETMODE = 517 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_IOCTLS_GET = 535 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_IOCTLS_LIMIT = 534 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_RIGHTS_LIMIT = 533 +pkg syscall (freebsd-arm64-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHDIR = 12 +pkg syscall (freebsd-arm64-cgo), const SYS_CHDIR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (freebsd-arm64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-arm64-cgo), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHMOD = 15 +pkg syscall (freebsd-arm64-cgo), const SYS_CHMOD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHOWN = 16 +pkg syscall (freebsd-arm64-cgo), const SYS_CHOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CHROOT = 61 +pkg syscall (freebsd-arm64-cgo), const SYS_CHROOT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 = 247 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETRES = 234 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETTIME = 232 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_NANOSLEEP = 244 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_SETTIME = 233 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOSE = 6 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOSE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CLOSEFROM = 509 +pkg syscall (freebsd-arm64-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CONNECT = 98 +pkg syscall (freebsd-arm64-cgo), const SYS_CONNECT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-arm64-cgo), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET = 484 +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_GETAFFINITY = 487 +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_GETID = 486 +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_SETAFFINITY = 488 +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_SETID = 485 +pkg syscall (freebsd-arm64-cgo), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_DUP = 41 +pkg syscall (freebsd-arm64-cgo), const SYS_DUP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_DUP2 = 90 +pkg syscall (freebsd-arm64-cgo), const SYS_DUP2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EACCESS = 376 +pkg syscall (freebsd-arm64-cgo), const SYS_EACCESS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXECVE = 59 +pkg syscall (freebsd-arm64-cgo), const SYS_EXECVE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXIT = 1 +pkg syscall (freebsd-arm64-cgo), const SYS_EXIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD = 373 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE = 358 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK = 414 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_FD = 372 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_FILE = 357 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_LINK = 413 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_FD = 437 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE = 438 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK = 439 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_FD = 371 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_FILE = 356 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_LINK = 412 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTRCTL = 355 +pkg syscall (freebsd-arm64-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FACCESSAT = 489 +pkg syscall (freebsd-arm64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHDIR = 13 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHMOD = 124 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHMODAT = 490 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHOWN = 123 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCHOWNAT = 491 +pkg syscall (freebsd-arm64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FCNTL = 92 +pkg syscall (freebsd-arm64-cgo), const SYS_FCNTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FDATASYNC = 550 +pkg syscall (freebsd-arm64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FEXECVE = 492 +pkg syscall (freebsd-arm64-cgo), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_GETCOUNTER = 241 +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_GETESTIMATE = 243 +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_SETESTIMATE = 242 +pkg syscall (freebsd-arm64-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FHOPEN = 298 +pkg syscall (freebsd-arm64-cgo), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FHSTAT = 299 +pkg syscall (freebsd-arm64-cgo), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FHSTATFS = 398 +pkg syscall (freebsd-arm64-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FLOCK = 131 +pkg syscall (freebsd-arm64-cgo), const SYS_FLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FORK = 2 +pkg syscall (freebsd-arm64-cgo), const SYS_FORK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (freebsd-arm64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FSTAT = 189 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATAT = 493 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATFS = 397 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FSYNC = 95 +pkg syscall (freebsd-arm64-cgo), const SYS_FSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FTRUNCATE = 480 +pkg syscall (freebsd-arm64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMENS = 546 +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMES = 206 +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMESAT = 494 +pkg syscall (freebsd-arm64-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUDIT = 449 +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUDIT_ADDR = 451 +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUID = 447 +pkg syscall (freebsd-arm64-cgo), const SYS_GETAUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETCONTEXT = 421 +pkg syscall (freebsd-arm64-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETDENTS = 272 +pkg syscall (freebsd-arm64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (freebsd-arm64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (freebsd-arm64-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETEGID = 43 +pkg syscall (freebsd-arm64-cgo), const SYS_GETEGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETEUID = 25 +pkg syscall (freebsd-arm64-cgo), const SYS_GETEUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETFH = 161 +pkg syscall (freebsd-arm64-cgo), const SYS_GETFH ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETFSSTAT = 395 +pkg syscall (freebsd-arm64-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETGID = 47 +pkg syscall (freebsd-arm64-cgo), const SYS_GETGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (freebsd-arm64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETITIMER = 86 +pkg syscall (freebsd-arm64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETLOGIN = 49 +pkg syscall (freebsd-arm64-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETLOGINCLASS = 523 +pkg syscall (freebsd-arm64-cgo), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPGID = 207 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPGRP = 81 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPID = 20 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPPID = 39 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPPID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (freebsd-arm64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETRESGID = 361 +pkg syscall (freebsd-arm64-cgo), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETRESUID = 360 +pkg syscall (freebsd-arm64-cgo), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (freebsd-arm64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (freebsd-arm64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETSID = 310 +pkg syscall (freebsd-arm64-cgo), const SYS_GETSID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (freebsd-arm64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (freebsd-arm64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (freebsd-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GETUID = 24 +pkg syscall (freebsd-arm64-cgo), const SYS_GETUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_GSSD_SYSCALL = 505 +pkg syscall (freebsd-arm64-cgo), const SYS_GSSD_SYSCALL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_IOCTL = 54 +pkg syscall (freebsd-arm64-cgo), const SYS_IOCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_ISSETUGID = 253 +pkg syscall (freebsd-arm64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL = 338 +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_ATTACH = 436 +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_GET = 506 +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_REMOVE = 508 +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_SET = 507 +pkg syscall (freebsd-arm64-cgo), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KENV = 390 +pkg syscall (freebsd-arm64-cgo), const SYS_KENV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KEVENT = 363 +pkg syscall (freebsd-arm64-cgo), const SYS_KEVENT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KILL = 37 +pkg syscall (freebsd-arm64-cgo), const SYS_KILL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDFIND = 306 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDFIRSTMOD = 309 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDLOAD = 304 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDNEXT = 307 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDSTAT = 308 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDSYM = 337 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDUNLOAD = 305 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KLDUNLOADF = 444 +pkg syscall (freebsd-arm64-cgo), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_NOTIFY = 461 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_NOTIFY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_OPEN = 457 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_OPEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_SETATTR = 458 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_SETATTR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_TIMEDRECEIVE = 459 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_TIMEDRECEIVE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_TIMEDSEND = 460 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_TIMEDSEND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_UNLINK = 462 +pkg syscall (freebsd-arm64-cgo), const SYS_KMQ_UNLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KQUEUE = 362 +pkg syscall (freebsd-arm64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_CLOSE = 400 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_CLOSE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_DESTROY = 408 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_DESTROY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_GETVALUE = 407 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_GETVALUE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_INIT = 404 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_INIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_OPEN = 405 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_OPEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_POST = 401 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_POST ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_TIMEDWAIT = 441 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_TIMEDWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_TRYWAIT = 403 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_TRYWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_UNLINK = 406 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_UNLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_WAIT = 402 +pkg syscall (freebsd-arm64-cgo), const SYS_KSEM_WAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_CREATE = 235 +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_DELETE = 236 +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_GETOVERRUN = 239 +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_GETTIME = 238 +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_SETTIME = 237 +pkg syscall (freebsd-arm64-cgo), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_KTRACE = 45 +pkg syscall (freebsd-arm64-cgo), const SYS_KTRACE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LCHFLAGS = 391 +pkg syscall (freebsd-arm64-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LCHMOD = 274 +pkg syscall (freebsd-arm64-cgo), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LCHOWN = 254 +pkg syscall (freebsd-arm64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LGETFH = 160 +pkg syscall (freebsd-arm64-cgo), const SYS_LGETFH ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LINK = 9 +pkg syscall (freebsd-arm64-cgo), const SYS_LINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LINKAT = 495 +pkg syscall (freebsd-arm64-cgo), const SYS_LINKAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LIO_LISTIO = 257 +pkg syscall (freebsd-arm64-cgo), const SYS_LIO_LISTIO ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LISTEN = 106 +pkg syscall (freebsd-arm64-cgo), const SYS_LISTEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LPATHCONF = 513 +pkg syscall (freebsd-arm64-cgo), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LSEEK = 478 +pkg syscall (freebsd-arm64-cgo), const SYS_LSEEK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT = 190 +pkg syscall (freebsd-arm64-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_LUTIMES = 276 +pkg syscall (freebsd-arm64-cgo), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MAC_SYSCALL = 394 +pkg syscall (freebsd-arm64-cgo), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MADVISE = 75 +pkg syscall (freebsd-arm64-cgo), const SYS_MADVISE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MINCORE = 78 +pkg syscall (freebsd-arm64-cgo), const SYS_MINCORE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MINHERIT = 250 +pkg syscall (freebsd-arm64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKDIR = 136 +pkg syscall (freebsd-arm64-cgo), const SYS_MKDIR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKDIRAT = 496 +pkg syscall (freebsd-arm64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKFIFO = 132 +pkg syscall (freebsd-arm64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKFIFOAT = 497 +pkg syscall (freebsd-arm64-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKNOD = 14 +pkg syscall (freebsd-arm64-cgo), const SYS_MKNOD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT = 498 +pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MLOCK = 203 +pkg syscall (freebsd-arm64-cgo), const SYS_MLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MLOCKALL = 324 +pkg syscall (freebsd-arm64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MMAP = 477 +pkg syscall (freebsd-arm64-cgo), const SYS_MMAP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MODFIND = 303 +pkg syscall (freebsd-arm64-cgo), const SYS_MODFIND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MODFNEXT = 302 +pkg syscall (freebsd-arm64-cgo), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MODNEXT = 300 +pkg syscall (freebsd-arm64-cgo), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MODSTAT = 301 +pkg syscall (freebsd-arm64-cgo), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MOUNT = 21 +pkg syscall (freebsd-arm64-cgo), const SYS_MOUNT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MPROTECT = 74 +pkg syscall (freebsd-arm64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSGCTL = 511 +pkg syscall (freebsd-arm64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSGGET = 225 +pkg syscall (freebsd-arm64-cgo), const SYS_MSGGET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSGRCV = 227 +pkg syscall (freebsd-arm64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSGSND = 226 +pkg syscall (freebsd-arm64-cgo), const SYS_MSGSND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSGSYS = 170 +pkg syscall (freebsd-arm64-cgo), const SYS_MSGSYS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MSYNC = 65 +pkg syscall (freebsd-arm64-cgo), const SYS_MSYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (freebsd-arm64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (freebsd-arm64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_MUNMAP = 73 +pkg syscall (freebsd-arm64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NANOSLEEP = 240 +pkg syscall (freebsd-arm64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NFSSVC = 155 +pkg syscall (freebsd-arm64-cgo), const SYS_NFSSVC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NFSTAT = 279 +pkg syscall (freebsd-arm64-cgo), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NLM_SYSCALL = 154 +pkg syscall (freebsd-arm64-cgo), const SYS_NLM_SYSCALL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NLSTAT = 280 +pkg syscall (freebsd-arm64-cgo), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NMOUNT = 378 +pkg syscall (freebsd-arm64-cgo), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NSTAT = 278 +pkg syscall (freebsd-arm64-cgo), const SYS_NSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NTP_ADJTIME = 176 +pkg syscall (freebsd-arm64-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NTP_GETTIME = 248 +pkg syscall (freebsd-arm64-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NUMA_GETAFFINITY = 548 +pkg syscall (freebsd-arm64-cgo), const SYS_NUMA_GETAFFINITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_NUMA_SETAFFINITY = 549 +pkg syscall (freebsd-arm64-cgo), const SYS_NUMA_SETAFFINITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_OBREAK = 17 +pkg syscall (freebsd-arm64-cgo), const SYS_OBREAK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_OPEN = 5 +pkg syscall (freebsd-arm64-cgo), const SYS_OPEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_OPENAT = 499 +pkg syscall (freebsd-arm64-cgo), const SYS_OPENAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_OPENBSD_POLL = 252 +pkg syscall (freebsd-arm64-cgo), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_OVADVISE = 72 +pkg syscall (freebsd-arm64-cgo), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PATHCONF = 191 +pkg syscall (freebsd-arm64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PDFORK = 518 +pkg syscall (freebsd-arm64-cgo), const SYS_PDFORK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PDGETPID = 520 +pkg syscall (freebsd-arm64-cgo), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PDKILL = 519 +pkg syscall (freebsd-arm64-cgo), const SYS_PDKILL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PIPE = 42 +pkg syscall (freebsd-arm64-cgo), const SYS_PIPE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PIPE2 = 542 +pkg syscall (freebsd-arm64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_POLL = 209 +pkg syscall (freebsd-arm64-cgo), const SYS_POLL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_FADVISE = 531 +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_FALLOCATE = 530 +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_OPENPT = 504 +pkg syscall (freebsd-arm64-cgo), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PPOLL = 545 +pkg syscall (freebsd-arm64-cgo), const SYS_PPOLL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PREAD = 475 +pkg syscall (freebsd-arm64-cgo), const SYS_PREAD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PREADV = 289 +pkg syscall (freebsd-arm64-cgo), const SYS_PREADV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PROCCTL = 544 +pkg syscall (freebsd-arm64-cgo), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PROFIL = 44 +pkg syscall (freebsd-arm64-cgo), const SYS_PROFIL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PSELECT = 522 +pkg syscall (freebsd-arm64-cgo), const SYS_PSELECT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PTRACE = 26 +pkg syscall (freebsd-arm64-cgo), const SYS_PTRACE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PWRITE = 476 +pkg syscall (freebsd-arm64-cgo), const SYS_PWRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_PWRITEV = 290 +pkg syscall (freebsd-arm64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_QUOTACTL = 148 +pkg syscall (freebsd-arm64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_ADD_RULE = 528 +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_LIMITS = 527 +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_RACCT = 525 +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_RULES = 526 +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_REMOVE_RULE = 529 +pkg syscall (freebsd-arm64-cgo), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_READ = 3 +pkg syscall (freebsd-arm64-cgo), const SYS_READ ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_READLINK = 58 +pkg syscall (freebsd-arm64-cgo), const SYS_READLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_READLINKAT = 500 +pkg syscall (freebsd-arm64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_READV = 120 +pkg syscall (freebsd-arm64-cgo), const SYS_READV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_REBOOT = 55 +pkg syscall (freebsd-arm64-cgo), const SYS_REBOOT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RECVFROM = 29 +pkg syscall (freebsd-arm64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RECVMSG = 27 +pkg syscall (freebsd-arm64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RENAME = 128 +pkg syscall (freebsd-arm64-cgo), const SYS_RENAME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RENAMEAT = 501 +pkg syscall (freebsd-arm64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_REVOKE = 56 +pkg syscall (freebsd-arm64-cgo), const SYS_REVOKE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RFORK = 251 +pkg syscall (freebsd-arm64-cgo), const SYS_RFORK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RMDIR = 137 +pkg syscall (freebsd-arm64-cgo), const SYS_RMDIR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RTPRIO = 166 +pkg syscall (freebsd-arm64-cgo), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_RTPRIO_THREAD = 466 +pkg syscall (freebsd-arm64-cgo), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SBRK = 69 +pkg syscall (freebsd-arm64-cgo), const SYS_SBRK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 332 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 333 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GETPARAM = 328 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GETSCHEDULER = 330 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_RR_GET_INTERVAL = 334 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_SETPARAM = 327 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_SETSCHEDULER = 329 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_YIELD = 331 +pkg syscall (freebsd-arm64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_RECVMSG = 474 +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_SENDMSG = 472 +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_PEELOFF = 471 +pkg syscall (freebsd-arm64-cgo), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SELECT = 93 +pkg syscall (freebsd-arm64-cgo), const SYS_SELECT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SEMGET = 221 +pkg syscall (freebsd-arm64-cgo), const SYS_SEMGET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SEMOP = 222 +pkg syscall (freebsd-arm64-cgo), const SYS_SEMOP ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SEMSYS = 169 +pkg syscall (freebsd-arm64-cgo), const SYS_SEMSYS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SENDFILE = 393 +pkg syscall (freebsd-arm64-cgo), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SENDMSG = 28 +pkg syscall (freebsd-arm64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SENDTO = 133 +pkg syscall (freebsd-arm64-cgo), const SYS_SENDTO ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUDIT = 450 +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUDIT_ADDR = 452 +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUID = 448 +pkg syscall (freebsd-arm64-cgo), const SYS_SETAUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETCONTEXT = 422 +pkg syscall (freebsd-arm64-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETEGID = 182 +pkg syscall (freebsd-arm64-cgo), const SYS_SETEGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETEUID = 183 +pkg syscall (freebsd-arm64-cgo), const SYS_SETEUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETFIB = 175 +pkg syscall (freebsd-arm64-cgo), const SYS_SETFIB ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETGID = 181 +pkg syscall (freebsd-arm64-cgo), const SYS_SETGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (freebsd-arm64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETITIMER = 83 +pkg syscall (freebsd-arm64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETLOGIN = 50 +pkg syscall (freebsd-arm64-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETLOGINCLASS = 524 +pkg syscall (freebsd-arm64-cgo), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETPGID = 82 +pkg syscall (freebsd-arm64-cgo), const SYS_SETPGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (freebsd-arm64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETREGID = 127 +pkg syscall (freebsd-arm64-cgo), const SYS_SETREGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETRESGID = 312 +pkg syscall (freebsd-arm64-cgo), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETRESUID = 311 +pkg syscall (freebsd-arm64-cgo), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETREUID = 126 +pkg syscall (freebsd-arm64-cgo), const SYS_SETREUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (freebsd-arm64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETSID = 147 +pkg syscall (freebsd-arm64-cgo), const SYS_SETSID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (freebsd-arm64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (freebsd-arm64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SETUID = 23 +pkg syscall (freebsd-arm64-cgo), const SYS_SETUID ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHM_OPEN = 482 +pkg syscall (freebsd-arm64-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHM_UNLINK = 483 +pkg syscall (freebsd-arm64-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHMAT = 228 +pkg syscall (freebsd-arm64-cgo), const SYS_SHMAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHMCTL = 512 +pkg syscall (freebsd-arm64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHMDT = 230 +pkg syscall (freebsd-arm64-cgo), const SYS_SHMDT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHMGET = 231 +pkg syscall (freebsd-arm64-cgo), const SYS_SHMGET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHMSYS = 171 +pkg syscall (freebsd-arm64-cgo), const SYS_SHMSYS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (freebsd-arm64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGACTION = 416 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGPENDING = 343 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGPROCMASK = 340 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGQUEUE = 456 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGRETURN = 417 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGSUSPEND = 341 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGTIMEDWAIT = 345 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGWAIT = 429 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SIGWAITINFO = 346 +pkg syscall (freebsd-arm64-cgo), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SOCKET = 97 +pkg syscall (freebsd-arm64-cgo), const SYS_SOCKET ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (freebsd-arm64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SSTK = 70 +pkg syscall (freebsd-arm64-cgo), const SYS_SSTK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_STAT = 188 +pkg syscall (freebsd-arm64-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_STATFS = 396 +pkg syscall (freebsd-arm64-cgo), const SYS_STATFS ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPCONTEXT = 423 +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPOFF = 424 +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPON = 85 +pkg syscall (freebsd-arm64-cgo), const SYS_SWAPON ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SYMLINK = 57 +pkg syscall (freebsd-arm64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SYMLINKAT = 502 +pkg syscall (freebsd-arm64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SYNC = 36 +pkg syscall (freebsd-arm64-cgo), const SYS_SYNC ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_SYSARCH = 165 +pkg syscall (freebsd-arm64-cgo), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_CREATE = 430 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_EXIT = 431 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_KILL = 433 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_KILL2 = 481 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_NEW = 455 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SELF = 432 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SET_NAME = 464 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SUSPEND = 442 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_THR_WAKE = 443 +pkg syscall (freebsd-arm64-cgo), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_TRUNCATE = 479 +pkg syscall (freebsd-arm64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UMASK = 60 +pkg syscall (freebsd-arm64-cgo), const SYS_UMASK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UNDELETE = 205 +pkg syscall (freebsd-arm64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UNLINK = 10 +pkg syscall (freebsd-arm64-cgo), const SYS_UNLINK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UNLINKAT = 503 +pkg syscall (freebsd-arm64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UNMOUNT = 22 +pkg syscall (freebsd-arm64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UTIMENSAT = 547 +pkg syscall (freebsd-arm64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UTIMES = 138 +pkg syscall (freebsd-arm64-cgo), const SYS_UTIMES ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UTRACE = 335 +pkg syscall (freebsd-arm64-cgo), const SYS_UTRACE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_UUIDGEN = 392 +pkg syscall (freebsd-arm64-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_VFORK = 66 +pkg syscall (freebsd-arm64-cgo), const SYS_VFORK ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_WAIT4 = 7 +pkg syscall (freebsd-arm64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_WAIT6 = 532 +pkg syscall (freebsd-arm64-cgo), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_WRITE = 4 +pkg syscall (freebsd-arm64-cgo), const SYS_WRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_WRITEV = 121 +pkg syscall (freebsd-arm64-cgo), const SYS_WRITEV ideal-int +pkg syscall (freebsd-arm64-cgo), const SYS_YIELD = 321 +pkg syscall (freebsd-arm64-cgo), const SYS_YIELD ideal-int +pkg syscall (freebsd-arm64-cgo), const TCIFLUSH = 1 +pkg syscall (freebsd-arm64-cgo), const TCIFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TCIOFLUSH = 3 +pkg syscall (freebsd-arm64-cgo), const TCIOFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TCOFLUSH = 2 +pkg syscall (freebsd-arm64-cgo), const TCOFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_CA_NAME_MAX = 16 +pkg syscall (freebsd-arm64-cgo), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_CONGESTION = 64 +pkg syscall (freebsd-arm64-cgo), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_INFO = 32 +pkg syscall (freebsd-arm64-cgo), const TCP_INFO ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPCNT = 1024 +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPIDLE = 256 +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPINIT = 128 +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPINTVL = 512 +pkg syscall (freebsd-arm64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAX_SACK = 4 +pkg syscall (freebsd-arm64-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (freebsd-arm64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAXBURST = 4 +pkg syscall (freebsd-arm64-cgo), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAXHLEN = 60 +pkg syscall (freebsd-arm64-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAXOLEN = 40 +pkg syscall (freebsd-arm64-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAXSEG = 2 +pkg syscall (freebsd-arm64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (freebsd-arm64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MD5SIG = 16 +pkg syscall (freebsd-arm64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MINMSS = 216 +pkg syscall (freebsd-arm64-cgo), const TCP_MINMSS ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_MSS = 536 +pkg syscall (freebsd-arm64-cgo), const TCP_MSS ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_NOOPT = 8 +pkg syscall (freebsd-arm64-cgo), const TCP_NOOPT ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_NOPUSH = 4 +pkg syscall (freebsd-arm64-cgo), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-arm64-cgo), const TCP_VENDOR ideal-int +pkg syscall (freebsd-arm64-cgo), const TCSAFLUSH = 2 +pkg syscall (freebsd-arm64-cgo), const TCSAFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCCBRK = 536900730 +pkg syscall (freebsd-arm64-cgo), const TIOCCBRK ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCCDTR = 536900728 +pkg syscall (freebsd-arm64-cgo), const TIOCCDTR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCCONS = 2147775586 +pkg syscall (freebsd-arm64-cgo), const TIOCCONS ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (freebsd-arm64-cgo), const TIOCDRAIN ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCEXCL = 536900621 +pkg syscall (freebsd-arm64-cgo), const TIOCEXCL ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCEXT = 2147775584 +pkg syscall (freebsd-arm64-cgo), const TIOCEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (freebsd-arm64-cgo), const TIOCFLUSH ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (freebsd-arm64-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGETA = 1076655123 +pkg syscall (freebsd-arm64-cgo), const TIOCGETA ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGETD = 1074033690 +pkg syscall (freebsd-arm64-cgo), const TIOCGETD ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (freebsd-arm64-cgo), const TIOCGPGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGPTN = 1074033679 +pkg syscall (freebsd-arm64-cgo), const TIOCGPTN ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGSID = 1074033763 +pkg syscall (freebsd-arm64-cgo), const TIOCGSID ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (freebsd-arm64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_CAR = 64 +pkg syscall (freebsd-arm64-cgo), const TIOCM_CAR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_CD = 64 +pkg syscall (freebsd-arm64-cgo), const TIOCM_CD ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_CTS = 32 +pkg syscall (freebsd-arm64-cgo), const TIOCM_CTS ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_DCD = 64 +pkg syscall (freebsd-arm64-cgo), const TIOCM_DCD ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_DSR = 256 +pkg syscall (freebsd-arm64-cgo), const TIOCM_DSR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_DTR = 2 +pkg syscall (freebsd-arm64-cgo), const TIOCM_DTR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_LE = 1 +pkg syscall (freebsd-arm64-cgo), const TIOCM_LE ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_RI = 128 +pkg syscall (freebsd-arm64-cgo), const TIOCM_RI ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_RNG = 128 +pkg syscall (freebsd-arm64-cgo), const TIOCM_RNG ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_RTS = 4 +pkg syscall (freebsd-arm64-cgo), const TIOCM_RTS ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_SR = 16 +pkg syscall (freebsd-arm64-cgo), const TIOCM_SR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCM_ST = 8 +pkg syscall (freebsd-arm64-cgo), const TIOCM_ST ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (freebsd-arm64-cgo), const TIOCMBIC ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (freebsd-arm64-cgo), const TIOCMBIS ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (freebsd-arm64-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMGET = 1074033770 +pkg syscall (freebsd-arm64-cgo), const TIOCMGET ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (freebsd-arm64-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCMSET = 2147775597 +pkg syscall (freebsd-arm64-cgo), const TIOCMSET ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (freebsd-arm64-cgo), const TIOCNOTTY ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCNXCL = 536900622 +pkg syscall (freebsd-arm64-cgo), const TIOCNXCL ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (freebsd-arm64-cgo), const TIOCOUTQ ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT = 2147775600 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_START = 8 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_START ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (freebsd-arm64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCPTMASTER = 536900636 +pkg syscall (freebsd-arm64-cgo), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSBRK = 536900731 +pkg syscall (freebsd-arm64-cgo), const TIOCSBRK ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (freebsd-arm64-cgo), const TIOCSCTTY ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (freebsd-arm64-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSDTR = 536900729 +pkg syscall (freebsd-arm64-cgo), const TIOCSDTR ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSETA = 2150396948 +pkg syscall (freebsd-arm64-cgo), const TIOCSETA ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSETAF = 2150396950 +pkg syscall (freebsd-arm64-cgo), const TIOCSETAF ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSETAW = 2150396949 +pkg syscall (freebsd-arm64-cgo), const TIOCSETAW ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSETD = 2147775515 +pkg syscall (freebsd-arm64-cgo), const TIOCSETD ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSIG = 537162847 +pkg syscall (freebsd-arm64-cgo), const TIOCSIG ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (freebsd-arm64-cgo), const TIOCSPGRP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSTART = 536900718 +pkg syscall (freebsd-arm64-cgo), const TIOCSTART ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSTAT = 536900709 +pkg syscall (freebsd-arm64-cgo), const TIOCSTAT ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSTI = 2147578994 +pkg syscall (freebsd-arm64-cgo), const TIOCSTI ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSTOP = 536900719 +pkg syscall (freebsd-arm64-cgo), const TIOCSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (freebsd-arm64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-arm64-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-arm64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (freebsd-arm64-cgo), const TIOCUCNTL ideal-int +pkg syscall (freebsd-arm64-cgo), const TOSTOP = 4194304 +pkg syscall (freebsd-arm64-cgo), const TOSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const VDISCARD = 15 +pkg syscall (freebsd-arm64-cgo), const VDISCARD ideal-int +pkg syscall (freebsd-arm64-cgo), const VDSUSP = 11 +pkg syscall (freebsd-arm64-cgo), const VDSUSP ideal-int +pkg syscall (freebsd-arm64-cgo), const VEOF = 0 +pkg syscall (freebsd-arm64-cgo), const VEOF ideal-int +pkg syscall (freebsd-arm64-cgo), const VEOL = 1 +pkg syscall (freebsd-arm64-cgo), const VEOL ideal-int +pkg syscall (freebsd-arm64-cgo), const VEOL2 = 2 +pkg syscall (freebsd-arm64-cgo), const VEOL2 ideal-int +pkg syscall (freebsd-arm64-cgo), const VERASE = 3 +pkg syscall (freebsd-arm64-cgo), const VERASE ideal-int +pkg syscall (freebsd-arm64-cgo), const VERASE2 = 7 +pkg syscall (freebsd-arm64-cgo), const VERASE2 ideal-int +pkg syscall (freebsd-arm64-cgo), const VINTR = 8 +pkg syscall (freebsd-arm64-cgo), const VINTR ideal-int +pkg syscall (freebsd-arm64-cgo), const VKILL = 5 +pkg syscall (freebsd-arm64-cgo), const VKILL ideal-int +pkg syscall (freebsd-arm64-cgo), const VLNEXT = 14 +pkg syscall (freebsd-arm64-cgo), const VLNEXT ideal-int +pkg syscall (freebsd-arm64-cgo), const VMIN = 16 +pkg syscall (freebsd-arm64-cgo), const VMIN ideal-int +pkg syscall (freebsd-arm64-cgo), const VQUIT = 9 +pkg syscall (freebsd-arm64-cgo), const VQUIT ideal-int +pkg syscall (freebsd-arm64-cgo), const VREPRINT = 6 +pkg syscall (freebsd-arm64-cgo), const VREPRINT ideal-int +pkg syscall (freebsd-arm64-cgo), const VSTART = 12 +pkg syscall (freebsd-arm64-cgo), const VSTART ideal-int +pkg syscall (freebsd-arm64-cgo), const VSTATUS = 18 +pkg syscall (freebsd-arm64-cgo), const VSTATUS ideal-int +pkg syscall (freebsd-arm64-cgo), const VSTOP = 13 +pkg syscall (freebsd-arm64-cgo), const VSTOP ideal-int +pkg syscall (freebsd-arm64-cgo), const VSUSP = 10 +pkg syscall (freebsd-arm64-cgo), const VSUSP ideal-int +pkg syscall (freebsd-arm64-cgo), const VTIME = 17 +pkg syscall (freebsd-arm64-cgo), const VTIME ideal-int +pkg syscall (freebsd-arm64-cgo), const VWERASE = 4 +pkg syscall (freebsd-arm64-cgo), const VWERASE ideal-int +pkg syscall (freebsd-arm64-cgo), const WCONTINUED = 4 +pkg syscall (freebsd-arm64-cgo), const WCONTINUED ideal-int +pkg syscall (freebsd-arm64-cgo), const WCOREFLAG = 128 +pkg syscall (freebsd-arm64-cgo), const WCOREFLAG ideal-int +pkg syscall (freebsd-arm64-cgo), const WEXITED = 16 +pkg syscall (freebsd-arm64-cgo), const WEXITED ideal-int +pkg syscall (freebsd-arm64-cgo), const WLINUXCLONE = 2147483648 +pkg syscall (freebsd-arm64-cgo), const WLINUXCLONE ideal-int +pkg syscall (freebsd-arm64-cgo), const WNOHANG = 1 +pkg syscall (freebsd-arm64-cgo), const WNOHANG ideal-int +pkg syscall (freebsd-arm64-cgo), const WNOWAIT = 8 +pkg syscall (freebsd-arm64-cgo), const WNOWAIT ideal-int +pkg syscall (freebsd-arm64-cgo), const WSTOPPED = 2 +pkg syscall (freebsd-arm64-cgo), const WSTOPPED ideal-int +pkg syscall (freebsd-arm64-cgo), const WTRAPPED = 32 +pkg syscall (freebsd-arm64-cgo), const WTRAPPED ideal-int +pkg syscall (freebsd-arm64-cgo), const WUNTRACED = 2 +pkg syscall (freebsd-arm64-cgo), const WUNTRACED ideal-int +pkg syscall (freebsd-arm64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func Access(string, uint32) error +pkg syscall (freebsd-arm64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-arm64-cgo), func Bind(int, Sockaddr) error +pkg syscall (freebsd-arm64-cgo), func BpfBuflen //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func BpfDatalink //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func BpfInterface //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-arm64-cgo), func BpfJump //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-arm64-cgo), func BpfStats //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-arm64-cgo), func BpfStmt //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-arm64-cgo), func BpfTimeout //deprecated +pkg syscall (freebsd-arm64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-arm64-cgo), func CheckBpfVersion //deprecated +pkg syscall (freebsd-arm64-cgo), func CheckBpfVersion(int) error +pkg syscall (freebsd-arm64-cgo), func Chflags(string, int) error +pkg syscall (freebsd-arm64-cgo), func Chroot(string) error +pkg syscall (freebsd-arm64-cgo), func Close(int) error +pkg syscall (freebsd-arm64-cgo), func CloseOnExec(int) +pkg syscall (freebsd-arm64-cgo), func CmsgLen(int) int +pkg syscall (freebsd-arm64-cgo), func CmsgSpace(int) int +pkg syscall (freebsd-arm64-cgo), func Connect(int, Sockaddr) error +pkg syscall (freebsd-arm64-cgo), func Dup(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Dup2(int, int) error +pkg syscall (freebsd-arm64-cgo), func Fchdir(int) error +pkg syscall (freebsd-arm64-cgo), func Fchflags(int, int) error +pkg syscall (freebsd-arm64-cgo), func Fchmod(int, uint32) error +pkg syscall (freebsd-arm64-cgo), func Fchown(int, int, int) error +pkg syscall (freebsd-arm64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-arm64-cgo), func Flock(int, int) error +pkg syscall (freebsd-arm64-cgo), func FlushBpf //deprecated +pkg syscall (freebsd-arm64-cgo), func FlushBpf(int) error +pkg syscall (freebsd-arm64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-arm64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-arm64-cgo), func Fstatat(int, string, *Stat_t, int) error +pkg syscall (freebsd-arm64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-arm64-cgo), func Fsync(int) error +pkg syscall (freebsd-arm64-cgo), func Ftruncate(int, int64) error +pkg syscall (freebsd-arm64-cgo), func Futimes(int, []Timeval) error +pkg syscall (freebsd-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-arm64-cgo), func Getdtablesize() int +pkg syscall (freebsd-arm64-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func Getpgid(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Getpgrp() int +pkg syscall (freebsd-arm64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-arm64-cgo), func Getsid(int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-arm64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-arm64-cgo), func Issetugid() bool +pkg syscall (freebsd-arm64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-arm64-cgo), func Kill(int, Signal) error +pkg syscall (freebsd-arm64-cgo), func Kqueue() (int, error) +pkg syscall (freebsd-arm64-cgo), func Listen(int, int) error +pkg syscall (freebsd-arm64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-arm64-cgo), func Mkfifo(string, uint32) error +pkg syscall (freebsd-arm64-cgo), func Mknod(string, uint32, uint64) error +pkg syscall (freebsd-arm64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-arm64-cgo), func Munmap([]uint8) error +pkg syscall (freebsd-arm64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-arm64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-arm64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-arm64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-arm64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-arm64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-arm64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-arm64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-arm64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Pipe([]int) error +pkg syscall (freebsd-arm64-cgo), func Pipe2([]int, int) error +pkg syscall (freebsd-arm64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-arm64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-arm64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-arm64-cgo), func Revoke(string) error +pkg syscall (freebsd-arm64-cgo), func RouteRIB //deprecated +pkg syscall (freebsd-arm64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-arm64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-arm64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-arm64-cgo), func SetBpf //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-arm64-cgo), func SetBpfBuflen //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func SetBpfDatalink //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-arm64-cgo), func SetBpfImmediate //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-arm64-cgo), func SetBpfInterface //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfInterface(int, string) error +pkg syscall (freebsd-arm64-cgo), func SetBpfPromisc //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-arm64-cgo), func SetBpfTimeout //deprecated +pkg syscall (freebsd-arm64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-arm64-cgo), func Setegid(int) error +pkg syscall (freebsd-arm64-cgo), func Seteuid(int) error +pkg syscall (freebsd-arm64-cgo), func Setgid(int) error +pkg syscall (freebsd-arm64-cgo), func Setgroups([]int) error +pkg syscall (freebsd-arm64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-arm64-cgo), func Setlogin(string) error +pkg syscall (freebsd-arm64-cgo), func SetNonblock(int, bool) error +pkg syscall (freebsd-arm64-cgo), func Setpgid(int, int) error +pkg syscall (freebsd-arm64-cgo), func Setpriority(int, int, int) error +pkg syscall (freebsd-arm64-cgo), func Setregid(int, int) error +pkg syscall (freebsd-arm64-cgo), func Setreuid(int, int) error +pkg syscall (freebsd-arm64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm64-cgo), func Setsid() (int, error) +pkg syscall (freebsd-arm64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-arm64-cgo), func Settimeofday(*Timeval) error +pkg syscall (freebsd-arm64-cgo), func Setuid(int) error +pkg syscall (freebsd-arm64-cgo), func Shutdown(int, int) error +pkg syscall (freebsd-arm64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-arm64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-arm64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-arm64-cgo), func Stat(string, *Stat_t) error +pkg syscall (freebsd-arm64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-arm64-cgo), func StringSlicePtr //deprecated +pkg syscall (freebsd-arm64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-arm64-cgo), func Sync() error +pkg syscall (freebsd-arm64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm64-cgo), func Sysctl(string) (string, error) +pkg syscall (freebsd-arm64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-arm64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-arm64-cgo), func Truncate(string, int64) error +pkg syscall (freebsd-arm64-cgo), func Umask(int) int +pkg syscall (freebsd-arm64-cgo), func Undelete(string) error +pkg syscall (freebsd-arm64-cgo), func UnixRights(...int) []uint8 +pkg syscall (freebsd-arm64-cgo), func Unmount(string, int) error +pkg syscall (freebsd-arm64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-arm64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-arm64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-arm64-cgo), method (*Iovec) SetLen(int) +pkg syscall (freebsd-arm64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-arm64-cgo), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-arm64-cgo), type BpfInsn struct +pkg syscall (freebsd-arm64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-arm64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-arm64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-arm64-cgo), type BpfInsn struct, K uint32 +pkg syscall (freebsd-arm64-cgo), type BpfProgram struct +pkg syscall (freebsd-arm64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-arm64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64-cgo), type BpfStat struct +pkg syscall (freebsd-arm64-cgo), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-arm64-cgo), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-arm64-cgo), type BpfVersion struct +pkg syscall (freebsd-arm64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-arm64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-arm64-cgo), type BpfZbuf struct +pkg syscall (freebsd-arm64-cgo), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-arm64-cgo), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-arm64-cgo), type BpfZbuf struct, Buflen uint64 +pkg syscall (freebsd-arm64-cgo), type BpfZbufHeader struct +pkg syscall (freebsd-arm64-cgo), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-arm64-cgo), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-arm64-cgo), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-arm64-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-arm64-cgo), type Cmsghdr struct +pkg syscall (freebsd-arm64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-arm64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-arm64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-arm64-cgo), type Credential struct +pkg syscall (freebsd-arm64-cgo), type Credential struct, Gid uint32 +pkg syscall (freebsd-arm64-cgo), type Credential struct, Groups []uint32 +pkg syscall (freebsd-arm64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-arm64-cgo), type Credential struct, Uid uint32 +pkg syscall (freebsd-arm64-cgo), type Dirent struct +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Fileno uint64 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Off int64 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Pad0 uint8 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Pad1 uint16 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-arm64-cgo), type Dirent struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type FdSet struct +pkg syscall (freebsd-arm64-cgo), type FdSet struct, X__fds_bits [16]uint64 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Len int64 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Pid int32 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Start int64 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Type int16 +pkg syscall (freebsd-arm64-cgo), type Flock_t struct, Whence int16 +pkg syscall (freebsd-arm64-cgo), type Fsid struct +pkg syscall (freebsd-arm64-cgo), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-arm64-cgo), type ICMPv6Filter struct +pkg syscall (freebsd-arm64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-arm64-cgo), type IfData struct +pkg syscall (freebsd-arm64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Baudrate uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Collisions uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Datalen uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Epoch int64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Hwassist uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Ibytes uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Ierrors uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Imcasts uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Ipackets uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-arm64-cgo), type IfData struct, Link_state uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Metric uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Mtu uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Noproto uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Obytes uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Oerrors uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Omcasts uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Opackets uint64 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Physical uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-arm64-cgo), type IfData struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64-cgo), type Inet6Pktinfo struct +pkg syscall (freebsd-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-arm64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type InterfaceAddrMessage struct +pkg syscall (freebsd-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-arm64-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-arm64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-arm64-cgo), type InterfaceMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type InterfaceMessage struct +pkg syscall (freebsd-arm64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-arm64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-arm64-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-arm64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-arm64-cgo), type Iovec struct +pkg syscall (freebsd-arm64-cgo), type Iovec struct, Base *uint8 +pkg syscall (freebsd-arm64-cgo), type Iovec struct, Len uint64 +pkg syscall (freebsd-arm64-cgo), type IPMreqn struct +pkg syscall (freebsd-arm64-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-arm64-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-arm64-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-arm64-cgo), type IPv6MTUInfo struct +pkg syscall (freebsd-arm64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Data int64 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (freebsd-arm64-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Flags int32 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-arm64-cgo), type Rlimit struct +pkg syscall (freebsd-arm64-cgo), type Rlimit struct, Cur int64 +pkg syscall (freebsd-arm64-cgo), type Rlimit struct, Max int64 +pkg syscall (freebsd-arm64-cgo), type RouteMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type RouteMessage struct +pkg syscall (freebsd-arm64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-arm64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-arm64-cgo), type RoutingMessage //deprecated +pkg syscall (freebsd-arm64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Expire uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Filler [3]uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Pksent uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (freebsd-arm64-cgo), type RtMetrics struct, Weight uint64 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Inits uint64 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Idrss int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Inblock int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Isrss int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Majflt int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Minflt int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Nswap int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Oublock int64 +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Stime Timeval +pkg syscall (freebsd-arm64-cgo), type Rusage struct, Utime Timeval +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm64-cgo), type SocketControlMessage struct +pkg syscall (freebsd-arm64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-arm64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-arm64-cgo), type Stat_t struct +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Blksize int32 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Dev uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Gen uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Nlink uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Padding0 int16 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Padding1 int32 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Size int64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-arm64-cgo), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-arm64-cgo), type Termios struct +pkg syscall (freebsd-arm64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Cflag uint32 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Iflag uint32 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Lflag uint32 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Oflag uint32 +pkg syscall (freebsd-arm64-cgo), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-arm64-cgo), type Timespec struct, Nsec int64 +pkg syscall (freebsd-arm64-cgo), type Timespec struct, Sec int64 +pkg syscall (freebsd-arm64-cgo), type Timeval struct, Sec int64 +pkg syscall (freebsd-arm64-cgo), type Timeval struct, Usec int64 +pkg syscall (freebsd-arm64-cgo), type WaitStatus uint32 +pkg syscall (freebsd-arm64-cgo), var Stderr int +pkg syscall (freebsd-arm64-cgo), var Stdin int +pkg syscall (freebsd-arm64-cgo), var Stdout int diff --git a/platform/dbops/binaries/go/go/api/go1.15.txt b/platform/dbops/binaries/go/go/api/go1.15.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd90506eba46b6190af200ee410f822f5f3aa170 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.15.txt @@ -0,0 +1,130 @@ +pkg bufio, var ErrBadReadCount error +pkg crypto, method (Hash) String() string +pkg crypto/ecdsa, func SignASN1(io.Reader, *PrivateKey, []uint8) ([]uint8, error) +pkg crypto/ecdsa, func VerifyASN1(*PublicKey, []uint8, []uint8) bool +pkg crypto/ecdsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool +pkg crypto/ecdsa, method (*PublicKey) Equal(crypto.PublicKey) bool +pkg crypto/ed25519, method (PrivateKey) Equal(crypto.PrivateKey) bool +pkg crypto/ed25519, method (PublicKey) Equal(crypto.PublicKey) bool +pkg crypto/elliptic, func MarshalCompressed(Curve, *big.Int, *big.Int) []uint8 +pkg crypto/elliptic, func UnmarshalCompressed(Curve, []uint8) (*big.Int, *big.Int) +pkg crypto/rsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool +pkg crypto/rsa, method (*PublicKey) Equal(crypto.PublicKey) bool +pkg crypto/tls, method (*Dialer) Dial(string, string) (net.Conn, error) +pkg crypto/tls, method (*Dialer) DialContext(context.Context, string, string) (net.Conn, error) +pkg crypto/tls, method (ClientAuthType) String() string +pkg crypto/tls, method (CurveID) String() string +pkg crypto/tls, method (SignatureScheme) String() string +pkg crypto/tls, type Config struct, VerifyConnection func(ConnectionState) error +pkg crypto/tls, type Dialer struct +pkg crypto/tls, type Dialer struct, Config *Config +pkg crypto/tls, type Dialer struct, NetDialer *net.Dialer +pkg crypto/x509, func CreateRevocationList(io.Reader, *RevocationList, *Certificate, crypto.Signer) ([]uint8, error) +pkg crypto/x509, type RevocationList struct +pkg crypto/x509, type RevocationList struct, ExtraExtensions []pkix.Extension +pkg crypto/x509, type RevocationList struct, NextUpdate time.Time +pkg crypto/x509, type RevocationList struct, Number *big.Int +pkg crypto/x509, type RevocationList struct, RevokedCertificates []pkix.RevokedCertificate +pkg crypto/x509, type RevocationList struct, SignatureAlgorithm SignatureAlgorithm +pkg crypto/x509, type RevocationList struct, ThisUpdate time.Time +pkg database/sql, method (*DB) SetConnMaxIdleTime(time.Duration) +pkg database/sql, method (*Row) Err() error +pkg database/sql, type DBStats struct, MaxIdleTimeClosed int64 +pkg database/sql/driver, type Validator interface { IsValid } +pkg database/sql/driver, type Validator interface, IsValid() bool +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 4096 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_APPCONTAINER ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE = 64 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY = 128 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_GUARD_CF = 16384 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_GUARD_CF ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA = 32 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_BIND = 2048 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_BIND ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION = 512 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_SEH = 1024 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NO_SEH ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 256 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 32768 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE ideal-int +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 8192 +pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER ideal-int +pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE = 256 +pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE ideal-int +pkg debug/pe, const IMAGE_FILE_AGGRESIVE_WS_TRIM = 16 +pkg debug/pe, const IMAGE_FILE_AGGRESIVE_WS_TRIM ideal-int +pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI = 32768 +pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI ideal-int +pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO = 128 +pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO ideal-int +pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED = 512 +pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED ideal-int +pkg debug/pe, const IMAGE_FILE_DLL = 8192 +pkg debug/pe, const IMAGE_FILE_DLL ideal-int +pkg debug/pe, const IMAGE_FILE_EXECUTABLE_IMAGE = 2 +pkg debug/pe, const IMAGE_FILE_EXECUTABLE_IMAGE ideal-int +pkg debug/pe, const IMAGE_FILE_LARGE_ADDRESS_AWARE = 32 +pkg debug/pe, const IMAGE_FILE_LARGE_ADDRESS_AWARE ideal-int +pkg debug/pe, const IMAGE_FILE_LINE_NUMS_STRIPPED = 4 +pkg debug/pe, const IMAGE_FILE_LINE_NUMS_STRIPPED ideal-int +pkg debug/pe, const IMAGE_FILE_LOCAL_SYMS_STRIPPED = 8 +pkg debug/pe, const IMAGE_FILE_LOCAL_SYMS_STRIPPED ideal-int +pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP = 2048 +pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP ideal-int +pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED = 1 +pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED ideal-int +pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 1024 +pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP ideal-int +pkg debug/pe, const IMAGE_FILE_SYSTEM = 4096 +pkg debug/pe, const IMAGE_FILE_SYSTEM ideal-int +pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY = 16384 +pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION = 10 +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11 +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM = 13 +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12 +pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE = 1 +pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8 +pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE_WINDOWS ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI = 5 +pkg debug/pe, const IMAGE_SUBSYSTEM_OS2_CUI ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_POSIX_CUI = 7 +pkg debug/pe, const IMAGE_SUBSYSTEM_POSIX_CUI ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_UNKNOWN = 0 +pkg debug/pe, const IMAGE_SUBSYSTEM_UNKNOWN ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION = 16 +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI = 9 +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CUI = 3 +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_CUI ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_GUI = 2 +pkg debug/pe, const IMAGE_SUBSYSTEM_WINDOWS_GUI ideal-int +pkg debug/pe, const IMAGE_SUBSYSTEM_XBOX = 14 +pkg debug/pe, const IMAGE_SUBSYSTEM_XBOX ideal-int +pkg math/big, method (*Int) FillBytes([]uint8) []uint8 +pkg net, method (*Resolver) LookupIP(context.Context, string, string) ([]IP, error) +pkg net/url, method (*URL) EscapedFragment() string +pkg net/url, method (*URL) Redacted() string +pkg net/url, type URL struct, RawFragment string +pkg os, method (*File) ReadFrom(io.Reader) (int64, error) +pkg os, var ErrDeadlineExceeded error +pkg regexp, method (*Regexp) SubexpIndex(string) int +pkg strconv, func FormatComplex(complex128, uint8, int, int) string +pkg strconv, func ParseComplex(string, int) (complex128, error) +pkg sync, method (*Map) LoadAndDelete(interface{}) (interface{}, bool) +pkg testing, method (*B) TempDir() string +pkg testing, method (*T) Deadline() (time.Time, bool) +pkg testing, method (*T) TempDir() string +pkg testing, type TB interface, TempDir() string +pkg time, method (*Ticker) Reset(Duration) diff --git a/platform/dbops/binaries/go/go/api/go1.16.txt b/platform/dbops/binaries/go/go/api/go1.16.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12a050939a3740ee068af779ff198d16f7fb085 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.16.txt @@ -0,0 +1,8527 @@ +pkg archive/zip, method (*ReadCloser) Open(string) (fs.File, error) +pkg archive/zip, method (*Reader) Open(string) (fs.File, error) +pkg crypto/x509, method (SystemRootsError) Unwrap() error +pkg debug/elf, const DT_ADDRRNGHI = 1879047935 +pkg debug/elf, const DT_ADDRRNGHI DynTag +pkg debug/elf, const DT_ADDRRNGLO = 1879047680 +pkg debug/elf, const DT_ADDRRNGLO DynTag +pkg debug/elf, const DT_AUDIT = 1879047932 +pkg debug/elf, const DT_AUDIT DynTag +pkg debug/elf, const DT_AUXILIARY = 2147483645 +pkg debug/elf, const DT_AUXILIARY DynTag +pkg debug/elf, const DT_CHECKSUM = 1879047672 +pkg debug/elf, const DT_CHECKSUM DynTag +pkg debug/elf, const DT_CONFIG = 1879047930 +pkg debug/elf, const DT_CONFIG DynTag +pkg debug/elf, const DT_DEPAUDIT = 1879047931 +pkg debug/elf, const DT_DEPAUDIT DynTag +pkg debug/elf, const DT_FEATURE = 1879047676 +pkg debug/elf, const DT_FEATURE DynTag +pkg debug/elf, const DT_FILTER = 2147483647 +pkg debug/elf, const DT_FILTER DynTag +pkg debug/elf, const DT_FLAGS_1 = 1879048187 +pkg debug/elf, const DT_FLAGS_1 DynTag +pkg debug/elf, const DT_GNU_CONFLICT = 1879047928 +pkg debug/elf, const DT_GNU_CONFLICT DynTag +pkg debug/elf, const DT_GNU_CONFLICTSZ = 1879047670 +pkg debug/elf, const DT_GNU_CONFLICTSZ DynTag +pkg debug/elf, const DT_GNU_HASH = 1879047925 +pkg debug/elf, const DT_GNU_HASH DynTag +pkg debug/elf, const DT_GNU_LIBLIST = 1879047929 +pkg debug/elf, const DT_GNU_LIBLIST DynTag +pkg debug/elf, const DT_GNU_LIBLISTSZ = 1879047671 +pkg debug/elf, const DT_GNU_LIBLISTSZ DynTag +pkg debug/elf, const DT_GNU_PRELINKED = 1879047669 +pkg debug/elf, const DT_GNU_PRELINKED DynTag +pkg debug/elf, const DT_MIPS_AUX_DYNAMIC = 1879048241 +pkg debug/elf, const DT_MIPS_AUX_DYNAMIC DynTag +pkg debug/elf, const DT_MIPS_BASE_ADDRESS = 1879048198 +pkg debug/elf, const DT_MIPS_BASE_ADDRESS DynTag +pkg debug/elf, const DT_MIPS_COMPACT_SIZE = 1879048239 +pkg debug/elf, const DT_MIPS_COMPACT_SIZE DynTag +pkg debug/elf, const DT_MIPS_CONFLICT = 1879048200 +pkg debug/elf, const DT_MIPS_CONFLICT DynTag +pkg debug/elf, const DT_MIPS_CONFLICTNO = 1879048203 +pkg debug/elf, const DT_MIPS_CONFLICTNO DynTag +pkg debug/elf, const DT_MIPS_CXX_FLAGS = 1879048226 +pkg debug/elf, const DT_MIPS_CXX_FLAGS DynTag +pkg debug/elf, const DT_MIPS_DELTA_CLASS = 1879048215 +pkg debug/elf, const DT_MIPS_DELTA_CLASS DynTag +pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM = 1879048224 +pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM DynTag +pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM_NO = 1879048225 +pkg debug/elf, const DT_MIPS_DELTA_CLASSSYM_NO DynTag +pkg debug/elf, const DT_MIPS_DELTA_CLASS_NO = 1879048216 +pkg debug/elf, const DT_MIPS_DELTA_CLASS_NO DynTag +pkg debug/elf, const DT_MIPS_DELTA_INSTANCE = 1879048217 +pkg debug/elf, const DT_MIPS_DELTA_INSTANCE DynTag +pkg debug/elf, const DT_MIPS_DELTA_INSTANCE_NO = 1879048218 +pkg debug/elf, const DT_MIPS_DELTA_INSTANCE_NO DynTag +pkg debug/elf, const DT_MIPS_DELTA_RELOC = 1879048219 +pkg debug/elf, const DT_MIPS_DELTA_RELOC DynTag +pkg debug/elf, const DT_MIPS_DELTA_RELOC_NO = 1879048220 +pkg debug/elf, const DT_MIPS_DELTA_RELOC_NO DynTag +pkg debug/elf, const DT_MIPS_DELTA_SYM = 1879048221 +pkg debug/elf, const DT_MIPS_DELTA_SYM DynTag +pkg debug/elf, const DT_MIPS_DELTA_SYM_NO = 1879048222 +pkg debug/elf, const DT_MIPS_DELTA_SYM_NO DynTag +pkg debug/elf, const DT_MIPS_DYNSTR_ALIGN = 1879048235 +pkg debug/elf, const DT_MIPS_DYNSTR_ALIGN DynTag +pkg debug/elf, const DT_MIPS_FLAGS = 1879048197 +pkg debug/elf, const DT_MIPS_FLAGS DynTag +pkg debug/elf, const DT_MIPS_GOTSYM = 1879048211 +pkg debug/elf, const DT_MIPS_GOTSYM DynTag +pkg debug/elf, const DT_MIPS_GP_VALUE = 1879048240 +pkg debug/elf, const DT_MIPS_GP_VALUE DynTag +pkg debug/elf, const DT_MIPS_HIDDEN_GOTIDX = 1879048231 +pkg debug/elf, const DT_MIPS_HIDDEN_GOTIDX DynTag +pkg debug/elf, const DT_MIPS_HIPAGENO = 1879048212 +pkg debug/elf, const DT_MIPS_HIPAGENO DynTag +pkg debug/elf, const DT_MIPS_ICHECKSUM = 1879048195 +pkg debug/elf, const DT_MIPS_ICHECKSUM DynTag +pkg debug/elf, const DT_MIPS_INTERFACE = 1879048234 +pkg debug/elf, const DT_MIPS_INTERFACE DynTag +pkg debug/elf, const DT_MIPS_INTERFACE_SIZE = 1879048236 +pkg debug/elf, const DT_MIPS_INTERFACE_SIZE DynTag +pkg debug/elf, const DT_MIPS_IVERSION = 1879048196 +pkg debug/elf, const DT_MIPS_IVERSION DynTag +pkg debug/elf, const DT_MIPS_LIBLIST = 1879048201 +pkg debug/elf, const DT_MIPS_LIBLIST DynTag +pkg debug/elf, const DT_MIPS_LIBLISTNO = 1879048208 +pkg debug/elf, const DT_MIPS_LIBLISTNO DynTag +pkg debug/elf, const DT_MIPS_LOCALPAGE_GOTIDX = 1879048229 +pkg debug/elf, const DT_MIPS_LOCALPAGE_GOTIDX DynTag +pkg debug/elf, const DT_MIPS_LOCAL_GOTIDX = 1879048230 +pkg debug/elf, const DT_MIPS_LOCAL_GOTIDX DynTag +pkg debug/elf, const DT_MIPS_LOCAL_GOTNO = 1879048202 +pkg debug/elf, const DT_MIPS_LOCAL_GOTNO DynTag +pkg debug/elf, const DT_MIPS_MSYM = 1879048199 +pkg debug/elf, const DT_MIPS_MSYM DynTag +pkg debug/elf, const DT_MIPS_OPTIONS = 1879048233 +pkg debug/elf, const DT_MIPS_OPTIONS DynTag +pkg debug/elf, const DT_MIPS_PERF_SUFFIX = 1879048238 +pkg debug/elf, const DT_MIPS_PERF_SUFFIX DynTag +pkg debug/elf, const DT_MIPS_PIXIE_INIT = 1879048227 +pkg debug/elf, const DT_MIPS_PIXIE_INIT DynTag +pkg debug/elf, const DT_MIPS_PLTGOT = 1879048242 +pkg debug/elf, const DT_MIPS_PLTGOT DynTag +pkg debug/elf, const DT_MIPS_PROTECTED_GOTIDX = 1879048232 +pkg debug/elf, const DT_MIPS_PROTECTED_GOTIDX DynTag +pkg debug/elf, const DT_MIPS_RLD_MAP = 1879048214 +pkg debug/elf, const DT_MIPS_RLD_MAP DynTag +pkg debug/elf, const DT_MIPS_RLD_MAP_REL = 1879048245 +pkg debug/elf, const DT_MIPS_RLD_MAP_REL DynTag +pkg debug/elf, const DT_MIPS_RLD_TEXT_RESOLVE_ADDR = 1879048237 +pkg debug/elf, const DT_MIPS_RLD_TEXT_RESOLVE_ADDR DynTag +pkg debug/elf, const DT_MIPS_RLD_VERSION = 1879048193 +pkg debug/elf, const DT_MIPS_RLD_VERSION DynTag +pkg debug/elf, const DT_MIPS_RWPLT = 1879048244 +pkg debug/elf, const DT_MIPS_RWPLT DynTag +pkg debug/elf, const DT_MIPS_SYMBOL_LIB = 1879048228 +pkg debug/elf, const DT_MIPS_SYMBOL_LIB DynTag +pkg debug/elf, const DT_MIPS_SYMTABNO = 1879048209 +pkg debug/elf, const DT_MIPS_SYMTABNO DynTag +pkg debug/elf, const DT_MIPS_TIME_STAMP = 1879048194 +pkg debug/elf, const DT_MIPS_TIME_STAMP DynTag +pkg debug/elf, const DT_MIPS_UNREFEXTNO = 1879048210 +pkg debug/elf, const DT_MIPS_UNREFEXTNO DynTag +pkg debug/elf, const DT_MOVEENT = 1879047674 +pkg debug/elf, const DT_MOVEENT DynTag +pkg debug/elf, const DT_MOVESZ = 1879047675 +pkg debug/elf, const DT_MOVESZ DynTag +pkg debug/elf, const DT_MOVETAB = 1879047934 +pkg debug/elf, const DT_MOVETAB DynTag +pkg debug/elf, const DT_PLTPAD = 1879047933 +pkg debug/elf, const DT_PLTPAD DynTag +pkg debug/elf, const DT_PLTPADSZ = 1879047673 +pkg debug/elf, const DT_PLTPADSZ DynTag +pkg debug/elf, const DT_POSFLAG_1 = 1879047677 +pkg debug/elf, const DT_POSFLAG_1 DynTag +pkg debug/elf, const DT_PPC64_GLINK = 1879048192 +pkg debug/elf, const DT_PPC64_GLINK DynTag +pkg debug/elf, const DT_PPC64_OPD = 1879048193 +pkg debug/elf, const DT_PPC64_OPD DynTag +pkg debug/elf, const DT_PPC64_OPDSZ = 1879048194 +pkg debug/elf, const DT_PPC64_OPDSZ DynTag +pkg debug/elf, const DT_PPC64_OPT = 1879048195 +pkg debug/elf, const DT_PPC64_OPT DynTag +pkg debug/elf, const DT_PPC_GOT = 1879048192 +pkg debug/elf, const DT_PPC_GOT DynTag +pkg debug/elf, const DT_PPC_OPT = 1879048193 +pkg debug/elf, const DT_PPC_OPT DynTag +pkg debug/elf, const DT_RELACOUNT = 1879048185 +pkg debug/elf, const DT_RELACOUNT DynTag +pkg debug/elf, const DT_RELCOUNT = 1879048186 +pkg debug/elf, const DT_RELCOUNT DynTag +pkg debug/elf, const DT_SPARC_REGISTER = 1879048193 +pkg debug/elf, const DT_SPARC_REGISTER DynTag +pkg debug/elf, const DT_SYMINENT = 1879047679 +pkg debug/elf, const DT_SYMINENT DynTag +pkg debug/elf, const DT_SYMINFO = 1879047935 +pkg debug/elf, const DT_SYMINFO DynTag +pkg debug/elf, const DT_SYMINSZ = 1879047678 +pkg debug/elf, const DT_SYMINSZ DynTag +pkg debug/elf, const DT_SYMTAB_SHNDX = 34 +pkg debug/elf, const DT_SYMTAB_SHNDX DynTag +pkg debug/elf, const DT_TLSDESC_GOT = 1879047927 +pkg debug/elf, const DT_TLSDESC_GOT DynTag +pkg debug/elf, const DT_TLSDESC_PLT = 1879047926 +pkg debug/elf, const DT_TLSDESC_PLT DynTag +pkg debug/elf, const DT_USED = 2147483646 +pkg debug/elf, const DT_USED DynTag +pkg debug/elf, const DT_VALRNGHI = 1879047679 +pkg debug/elf, const DT_VALRNGHI DynTag +pkg debug/elf, const DT_VALRNGLO = 1879047424 +pkg debug/elf, const DT_VALRNGLO DynTag +pkg debug/elf, const DT_VERDEF = 1879048188 +pkg debug/elf, const DT_VERDEF DynTag +pkg debug/elf, const DT_VERDEFNUM = 1879048189 +pkg debug/elf, const DT_VERDEFNUM DynTag +pkg debug/elf, const PT_AARCH64_ARCHEXT = 1879048192 +pkg debug/elf, const PT_AARCH64_ARCHEXT ProgType +pkg debug/elf, const PT_AARCH64_UNWIND = 1879048193 +pkg debug/elf, const PT_AARCH64_UNWIND ProgType +pkg debug/elf, const PT_ARM_ARCHEXT = 1879048192 +pkg debug/elf, const PT_ARM_ARCHEXT ProgType +pkg debug/elf, const PT_ARM_EXIDX = 1879048193 +pkg debug/elf, const PT_ARM_EXIDX ProgType +pkg debug/elf, const PT_GNU_EH_FRAME = 1685382480 +pkg debug/elf, const PT_GNU_EH_FRAME ProgType +pkg debug/elf, const PT_GNU_MBIND_HI = 1685386580 +pkg debug/elf, const PT_GNU_MBIND_HI ProgType +pkg debug/elf, const PT_GNU_MBIND_LO = 1685382485 +pkg debug/elf, const PT_GNU_MBIND_LO ProgType +pkg debug/elf, const PT_GNU_PROPERTY = 1685382483 +pkg debug/elf, const PT_GNU_PROPERTY ProgType +pkg debug/elf, const PT_GNU_RELRO = 1685382482 +pkg debug/elf, const PT_GNU_RELRO ProgType +pkg debug/elf, const PT_GNU_STACK = 1685382481 +pkg debug/elf, const PT_GNU_STACK ProgType +pkg debug/elf, const PT_MIPS_ABIFLAGS = 1879048195 +pkg debug/elf, const PT_MIPS_ABIFLAGS ProgType +pkg debug/elf, const PT_MIPS_OPTIONS = 1879048194 +pkg debug/elf, const PT_MIPS_OPTIONS ProgType +pkg debug/elf, const PT_MIPS_REGINFO = 1879048192 +pkg debug/elf, const PT_MIPS_REGINFO ProgType +pkg debug/elf, const PT_MIPS_RTPROC = 1879048193 +pkg debug/elf, const PT_MIPS_RTPROC ProgType +pkg debug/elf, const PT_OPENBSD_BOOTDATA = 1705253862 +pkg debug/elf, const PT_OPENBSD_BOOTDATA ProgType +pkg debug/elf, const PT_OPENBSD_RANDOMIZE = 1705237478 +pkg debug/elf, const PT_OPENBSD_RANDOMIZE ProgType +pkg debug/elf, const PT_OPENBSD_WXNEEDED = 1705237479 +pkg debug/elf, const PT_OPENBSD_WXNEEDED ProgType +pkg debug/elf, const PT_PAX_FLAGS = 1694766464 +pkg debug/elf, const PT_PAX_FLAGS ProgType +pkg debug/elf, const PT_S390_PGSTE = 1879048192 +pkg debug/elf, const PT_S390_PGSTE ProgType +pkg debug/elf, const PT_SUNWSTACK = 1879048187 +pkg debug/elf, const PT_SUNWSTACK ProgType +pkg debug/elf, const PT_SUNW_EH_FRAME = 1685382480 +pkg debug/elf, const PT_SUNW_EH_FRAME ProgType +pkg embed, method (FS) Open(string) (fs.File, error) +pkg embed, method (FS) ReadDir(string) ([]fs.DirEntry, error) +pkg embed, method (FS) ReadFile(string) ([]uint8, error) +pkg embed, type FS struct +pkg flag, func Func(string, string, func(string) error) +pkg flag, method (*FlagSet) Func(string, string, func(string) error) +pkg go/build, type Package struct, EmbedPatterns []string +pkg go/build, type Package struct, EmbedPatternPos map[string][]token.Position +pkg go/build, type Package struct, IgnoredOtherFiles []string +pkg go/build, type Package struct, TestEmbedPatterns []string +pkg go/build, type Package struct, TestEmbedPatternPos map[string][]token.Position +pkg go/build, type Package struct, XTestEmbedPatterns []string +pkg go/build, type Package struct, XTestEmbedPatternPos map[string][]token.Position +pkg go/build/constraint, func IsGoBuild(string) bool +pkg go/build/constraint, func IsPlusBuild(string) bool +pkg go/build/constraint, func Parse(string) (Expr, error) +pkg go/build/constraint, func PlusBuildLines(Expr) ([]string, error) +pkg go/build/constraint, method (*AndExpr) Eval(func(string) bool) bool +pkg go/build/constraint, method (*AndExpr) String() string +pkg go/build/constraint, method (*NotExpr) Eval(func(string) bool) bool +pkg go/build/constraint, method (*NotExpr) String() string +pkg go/build/constraint, method (*OrExpr) Eval(func(string) bool) bool +pkg go/build/constraint, method (*OrExpr) String() string +pkg go/build/constraint, method (*SyntaxError) Error() string +pkg go/build/constraint, method (*TagExpr) Eval(func(string) bool) bool +pkg go/build/constraint, method (*TagExpr) String() string +pkg go/build/constraint, type AndExpr struct +pkg go/build/constraint, type AndExpr struct, X Expr +pkg go/build/constraint, type AndExpr struct, Y Expr +pkg go/build/constraint, type Expr interface, Eval(func(string) bool) bool +pkg go/build/constraint, type Expr interface, String() string +pkg go/build/constraint, type Expr interface, unexported methods +pkg go/build/constraint, type NotExpr struct +pkg go/build/constraint, type NotExpr struct, X Expr +pkg go/build/constraint, type OrExpr struct +pkg go/build/constraint, type OrExpr struct, X Expr +pkg go/build/constraint, type OrExpr struct, Y Expr +pkg go/build/constraint, type SyntaxError struct +pkg go/build/constraint, type SyntaxError struct, Err string +pkg go/build/constraint, type SyntaxError struct, Offset int +pkg go/build/constraint, type TagExpr struct +pkg go/build/constraint, type TagExpr struct, Tag string +pkg html/template, func ParseFS(fs.FS, ...string) (*Template, error) +pkg html/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error) +pkg io, func NopCloser(Reader) ReadCloser +pkg io, func ReadAll(Reader) ([]uint8, error) +pkg io, type ReadSeekCloser interface { Close, Read, Seek } +pkg io, type ReadSeekCloser interface, Close() error +pkg io, type ReadSeekCloser interface, Read([]uint8) (int, error) +pkg io, type ReadSeekCloser interface, Seek(int64, int) (int64, error) +pkg io, var Discard Writer +pkg io/fs, const ModeAppend = 1073741824 +pkg io/fs, const ModeAppend FileMode +pkg io/fs, const ModeCharDevice = 2097152 +pkg io/fs, const ModeCharDevice FileMode +pkg io/fs, const ModeDevice = 67108864 +pkg io/fs, const ModeDevice FileMode +pkg io/fs, const ModeDir = 2147483648 +pkg io/fs, const ModeDir FileMode +pkg io/fs, const ModeExclusive = 536870912 +pkg io/fs, const ModeExclusive FileMode +pkg io/fs, const ModeIrregular = 524288 +pkg io/fs, const ModeIrregular FileMode +pkg io/fs, const ModeNamedPipe = 33554432 +pkg io/fs, const ModeNamedPipe FileMode +pkg io/fs, const ModePerm = 511 +pkg io/fs, const ModePerm FileMode +pkg io/fs, const ModeSetgid = 4194304 +pkg io/fs, const ModeSetgid FileMode +pkg io/fs, const ModeSetuid = 8388608 +pkg io/fs, const ModeSetuid FileMode +pkg io/fs, const ModeSocket = 16777216 +pkg io/fs, const ModeSocket FileMode +pkg io/fs, const ModeSticky = 1048576 +pkg io/fs, const ModeSticky FileMode +pkg io/fs, const ModeSymlink = 134217728 +pkg io/fs, const ModeSymlink FileMode +pkg io/fs, const ModeTemporary = 268435456 +pkg io/fs, const ModeTemporary FileMode +pkg io/fs, const ModeType = 2401763328 +pkg io/fs, const ModeType FileMode +pkg io/fs, func Glob(FS, string) ([]string, error) +pkg io/fs, func ReadDir(FS, string) ([]DirEntry, error) +pkg io/fs, func ReadFile(FS, string) ([]uint8, error) +pkg io/fs, func Stat(FS, string) (FileInfo, error) +pkg io/fs, func Sub(FS, string) (FS, error) +pkg io/fs, func ValidPath(string) bool +pkg io/fs, func WalkDir(FS, string, WalkDirFunc) error +pkg io/fs, method (*PathError) Error() string +pkg io/fs, method (*PathError) Timeout() bool +pkg io/fs, method (*PathError) Unwrap() error +pkg io/fs, method (FileMode) IsDir() bool +pkg io/fs, method (FileMode) IsRegular() bool +pkg io/fs, method (FileMode) Perm() FileMode +pkg io/fs, method (FileMode) String() string +pkg io/fs, method (FileMode) Type() FileMode +pkg io/fs, type DirEntry interface { Info, IsDir, Name, Type } +pkg io/fs, type DirEntry interface, Info() (FileInfo, error) +pkg io/fs, type DirEntry interface, IsDir() bool +pkg io/fs, type DirEntry interface, Name() string +pkg io/fs, type DirEntry interface, Type() FileMode +pkg io/fs, type FS interface { Open } +pkg io/fs, type FS interface, Open(string) (File, error) +pkg io/fs, type File interface { Close, Read, Stat } +pkg io/fs, type File interface, Close() error +pkg io/fs, type File interface, Read([]uint8) (int, error) +pkg io/fs, type File interface, Stat() (FileInfo, error) +pkg io/fs, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys } +pkg io/fs, type FileInfo interface, IsDir() bool +pkg io/fs, type FileInfo interface, ModTime() time.Time +pkg io/fs, type FileInfo interface, Mode() FileMode +pkg io/fs, type FileInfo interface, Name() string +pkg io/fs, type FileInfo interface, Size() int64 +pkg io/fs, type FileInfo interface, Sys() interface{} +pkg io/fs, type FileMode uint32 +pkg io/fs, type GlobFS interface { Glob, Open } +pkg io/fs, type GlobFS interface, Glob(string) ([]string, error) +pkg io/fs, type GlobFS interface, Open(string) (File, error) +pkg io/fs, type PathError struct +pkg io/fs, type PathError struct, Err error +pkg io/fs, type PathError struct, Op string +pkg io/fs, type PathError struct, Path string +pkg io/fs, type ReadDirFS interface { Open, ReadDir } +pkg io/fs, type ReadDirFS interface, Open(string) (File, error) +pkg io/fs, type ReadDirFS interface, ReadDir(string) ([]DirEntry, error) +pkg io/fs, type ReadDirFile interface { Close, Read, ReadDir, Stat } +pkg io/fs, type ReadDirFile interface, Close() error +pkg io/fs, type ReadDirFile interface, Read([]uint8) (int, error) +pkg io/fs, type ReadDirFile interface, ReadDir(int) ([]DirEntry, error) +pkg io/fs, type ReadDirFile interface, Stat() (FileInfo, error) +pkg io/fs, type ReadFileFS interface { Open, ReadFile } +pkg io/fs, type ReadFileFS interface, Open(string) (File, error) +pkg io/fs, type ReadFileFS interface, ReadFile(string) ([]uint8, error) +pkg io/fs, type StatFS interface { Open, Stat } +pkg io/fs, type StatFS interface, Open(string) (File, error) +pkg io/fs, type StatFS interface, Stat(string) (FileInfo, error) +pkg io/fs, type SubFS interface { Open, Sub } +pkg io/fs, type SubFS interface, Open(string) (File, error) +pkg io/fs, type SubFS interface, Sub(string) (FS, error) +pkg io/fs, type WalkDirFunc func(string, DirEntry, error) error +pkg io/fs, var ErrClosed error +pkg io/fs, var ErrExist error +pkg io/fs, var ErrInvalid error +pkg io/fs, var ErrNotExist error +pkg io/fs, var ErrPermission error +pkg io/fs, var SkipDir error +pkg log, func Default() *Logger +pkg net, var ErrClosed error +pkg net/http, func FS(fs.FS) FileSystem +pkg net/http, type Transport struct, GetProxyConnectHeader func(context.Context, *url.URL, string) (Header, error) +pkg os, const ModeAppend fs.FileMode +pkg os, const ModeCharDevice fs.FileMode +pkg os, const ModeDevice fs.FileMode +pkg os, const ModeDir fs.FileMode +pkg os, const ModeExclusive fs.FileMode +pkg os, const ModeIrregular fs.FileMode +pkg os, const ModeNamedPipe fs.FileMode +pkg os, const ModePerm fs.FileMode +pkg os, const ModeSetgid fs.FileMode +pkg os, const ModeSetuid fs.FileMode +pkg os, const ModeSocket fs.FileMode +pkg os, const ModeSticky fs.FileMode +pkg os, const ModeSymlink fs.FileMode +pkg os, const ModeTemporary fs.FileMode +pkg os, const ModeType fs.FileMode +pkg os, func Chmod(string, fs.FileMode) error +pkg os, func CreateTemp(string, string) (*File, error) +pkg os, func DirFS(string) fs.FS +pkg os, func Lstat(string) (fs.FileInfo, error) +pkg os, func Mkdir(string, fs.FileMode) error +pkg os, func MkdirAll(string, fs.FileMode) error +pkg os, func MkdirTemp(string, string) (string, error) +pkg os, func OpenFile(string, int, fs.FileMode) (*File, error) +pkg os, func ReadDir(string) ([]fs.DirEntry, error) +pkg os, func ReadFile(string) ([]uint8, error) +pkg os, func SameFile(fs.FileInfo, fs.FileInfo) bool +pkg os, func Stat(string) (fs.FileInfo, error) +pkg os, func WriteFile(string, []uint8, fs.FileMode) error +pkg os, method (*File) Chmod(fs.FileMode) error +pkg os, method (*File) ReadDir(int) ([]fs.DirEntry, error) +pkg os, method (*File) Readdir(int) ([]fs.FileInfo, error) +pkg os, method (*File) Stat() (fs.FileInfo, error) +pkg os, type DirEntry = fs.DirEntry +pkg os, type FileInfo = fs.FileInfo +pkg os, type FileMode = fs.FileMode +pkg os, type PathError = fs.PathError +pkg os, var ErrProcessDone error +pkg os/signal, func NotifyContext(context.Context, ...os.Signal) (context.Context, context.CancelFunc) +pkg path/filepath, func WalkDir(string, fs.WalkDirFunc) error +pkg runtime/metrics, const KindBad = 0 +pkg runtime/metrics, const KindBad ValueKind +pkg runtime/metrics, const KindFloat64 = 2 +pkg runtime/metrics, const KindFloat64 ValueKind +pkg runtime/metrics, const KindFloat64Histogram = 3 +pkg runtime/metrics, const KindFloat64Histogram ValueKind +pkg runtime/metrics, const KindUint64 = 1 +pkg runtime/metrics, const KindUint64 ValueKind +pkg runtime/metrics, func All() []Description +pkg runtime/metrics, func Read([]Sample) +pkg runtime/metrics, method (Value) Float64() float64 +pkg runtime/metrics, method (Value) Float64Histogram() *Float64Histogram +pkg runtime/metrics, method (Value) Kind() ValueKind +pkg runtime/metrics, method (Value) Uint64() uint64 +pkg runtime/metrics, type Description struct +pkg runtime/metrics, type Description struct, Cumulative bool +pkg runtime/metrics, type Description struct, Description string +pkg runtime/metrics, type Description struct, Kind ValueKind +pkg runtime/metrics, type Description struct, Name string +pkg runtime/metrics, type Float64Histogram struct +pkg runtime/metrics, type Float64Histogram struct, Buckets []float64 +pkg runtime/metrics, type Float64Histogram struct, Counts []uint64 +pkg runtime/metrics, type Sample struct +pkg runtime/metrics, type Sample struct, Name string +pkg runtime/metrics, type Sample struct, Value Value +pkg runtime/metrics, type Value struct +pkg runtime/metrics, type ValueKind int +pkg syscall (linux-386), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func Setegid(int) error +pkg syscall (linux-386), func Seteuid(int) error +pkg syscall (linux-386-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func Setegid(int) error +pkg syscall (linux-386-cgo), func Seteuid(int) error +pkg syscall (linux-amd64), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func Setegid(int) error +pkg syscall (linux-amd64), func Seteuid(int) error +pkg syscall (linux-amd64-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func Setegid(int) error +pkg syscall (linux-amd64-cgo), func Seteuid(int) error +pkg syscall (linux-arm), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func Setegid(int) error +pkg syscall (linux-arm), func Seteuid(int) error +pkg syscall (linux-arm-cgo), func AllThreadsSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func AllThreadsSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func Setegid(int) error +pkg syscall (linux-arm-cgo), func Seteuid(int) error +pkg syscall (windows-386), method (*DLLError) Unwrap() error +pkg syscall (windows-386), type SysProcAttr struct, NoInheritHandles bool +pkg syscall (windows-amd64), method (*DLLError) Unwrap() error +pkg syscall (windows-amd64), type SysProcAttr struct, NoInheritHandles bool +pkg testing/fstest, func TestFS(fs.FS, ...string) error +pkg testing/fstest, method (MapFS) Glob(string) ([]string, error) +pkg testing/fstest, method (MapFS) Open(string) (fs.File, error) +pkg testing/fstest, method (MapFS) ReadDir(string) ([]fs.DirEntry, error) +pkg testing/fstest, method (MapFS) ReadFile(string) ([]uint8, error) +pkg testing/fstest, method (MapFS) Stat(string) (fs.FileInfo, error) +pkg testing/fstest, method (MapFS) Sub(string) (fs.FS, error) +pkg testing/fstest, type MapFS map[string]*MapFile +pkg testing/fstest, type MapFile struct +pkg testing/fstest, type MapFile struct, Data []uint8 +pkg testing/fstest, type MapFile struct, ModTime time.Time +pkg testing/fstest, type MapFile struct, Mode fs.FileMode +pkg testing/fstest, type MapFile struct, Sys interface{} +pkg testing/iotest, func ErrReader(error) io.Reader +pkg testing/iotest, func TestReader(io.Reader, []uint8) error +pkg text/template, func ParseFS(fs.FS, ...string) (*Template, error) +pkg text/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error) +pkg text/template/parse, const NodeComment = 20 +pkg text/template/parse, const NodeComment NodeType +pkg text/template/parse, const ParseComments = 1 +pkg text/template/parse, const ParseComments Mode +pkg text/template/parse, method (*CommentNode) Copy() Node +pkg text/template/parse, method (*CommentNode) String() string +pkg text/template/parse, method (CommentNode) Position() Pos +pkg text/template/parse, method (CommentNode) Type() NodeType +pkg text/template/parse, type CommentNode struct +pkg text/template/parse, type CommentNode struct, Text string +pkg text/template/parse, type CommentNode struct, embedded NodeType +pkg text/template/parse, type CommentNode struct, embedded Pos +pkg text/template/parse, type Mode uint +pkg text/template/parse, type Tree struct, Mode Mode +pkg unicode, const Version = "13.0.0" +pkg unicode, var Chorasmian *RangeTable +pkg unicode, var Dives_Akuru *RangeTable +pkg unicode, var Khitan_Small_Script *RangeTable +pkg unicode, var Yezidi *RangeTable +# all deprecations up to and including Go 1.16 +pkg archive/tar, const TypeRegA //deprecated +pkg archive/tar, type Header struct, Xattrs //deprecated +pkg archive/zip, method (*File) ModTime //deprecated +pkg archive/zip, method (*File) SetModTime //deprecated +pkg archive/zip, method (*FileHeader) ModTime //deprecated +pkg archive/zip, method (*FileHeader) SetModTime //deprecated +pkg archive/zip, type FileHeader struct, CompressedSize //deprecated +pkg archive/zip, type FileHeader struct, ModifiedDate //deprecated +pkg archive/zip, type FileHeader struct, ModifiedTime //deprecated +pkg archive/zip, type FileHeader struct, UncompressedSize //deprecated +pkg compress/flate, type ReadError //deprecated +pkg compress/flate, type WriteError //deprecated +pkg crypto/rc4, method (*Cipher) Reset //deprecated +pkg crypto/tls, const VersionSSL30 //deprecated +pkg crypto/tls, method (*Config) BuildNameToCertificate //deprecated +pkg crypto/tls, type Config struct, NameToCertificate //deprecated +pkg crypto/tls, type Config struct, SessionTicketKey //deprecated +pkg crypto/tls, type ConnectionState struct, NegotiatedProtocolIsMutual //deprecated +pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated +pkg crypto/x509, func DecryptPEMBlock //deprecated +pkg crypto/x509, func EncryptPEMBlock //deprecated +pkg crypto/x509, func IsEncryptedPEMBlock //deprecated +pkg crypto/x509, type CertificateRequest struct, Attributes //deprecated +pkg database/sql/driver, type ColumnConverter //deprecated +pkg database/sql/driver, type Conn interface, Begin //deprecated +pkg database/sql/driver, type Execer //deprecated +pkg database/sql/driver, type Queryer //deprecated +pkg database/sql/driver, type Stmt interface, Exec //deprecated +pkg database/sql/driver, type Stmt interface, Query //deprecated +pkg debug/gosym, method (*LineTable) LineToPC //deprecated +pkg debug/gosym, method (*LineTable) PCToLine //deprecated +pkg encoding/csv, type Reader struct, TrailingComma //deprecated +pkg encoding/csv, var ErrTrailingComma //deprecated +pkg encoding/json, type InvalidUTF8Error //deprecated +pkg encoding/json, type UnmarshalFieldError //deprecated +pkg go/build, const AllowBinary //deprecated +pkg go/doc, type Package struct, Bugs //deprecated +pkg go/importer, func For //deprecated +pkg go/importer, func ForCompiler //deprecated +pkg go/types, func NewInterface //deprecated +pkg go/types, method (*Interface) Embedded //deprecated +pkg image, var ZP //deprecated +pkg image, var ZR //deprecated +pkg image/jpeg, type Reader //deprecated +pkg net, type Dialer struct, Cancel //deprecated +pkg net, type Dialer struct, DualStack //deprecated +pkg net/http, method (*Transport) CancelRequest //deprecated +pkg net/http, type CloseNotifier //deprecated +pkg net/http, type ProtocolError //deprecated +pkg net/http, type Request struct, Cancel //deprecated +pkg net/http, type Transport struct, Dial //deprecated +pkg net/http, type Transport struct, DialTLS //deprecated +pkg net/http, var ErrHeaderTooLong //deprecated +pkg net/http, var ErrMissingContentLength //deprecated +pkg net/http, var ErrShortBody //deprecated +pkg net/http, var ErrUnexpectedTrailer //deprecated +pkg net/http, var ErrWriteAfterFlush //deprecated +pkg net/http/httptest, type ResponseRecorder struct, HeaderMap //deprecated +pkg net/http/httputil, func NewClientConn //deprecated +pkg net/http/httputil, func NewProxyClientConn //deprecated +pkg net/http/httputil, func NewServerConn //deprecated +pkg net/http/httputil, type ClientConn //deprecated +pkg net/http/httputil, type ServerConn //deprecated +pkg net/http/httputil, var ErrClosed //deprecated +pkg net/http/httputil, var ErrPersistEOF //deprecated +pkg net/http/httputil, var ErrPipeline //deprecated +pkg os, const SEEK_CUR //deprecated +pkg os, const SEEK_END //deprecated +pkg os, const SEEK_SET //deprecated +pkg path/filepath, func HasPrefix //deprecated +pkg regexp, method (*Regexp) Copy //deprecated +pkg runtime, func CPUProfile //deprecated +pkg syscall (darwin-amd64), func BpfBuflen //deprecated +pkg syscall (darwin-amd64), func BpfDatalink //deprecated +pkg syscall (darwin-amd64), func BpfHeadercmpl //deprecated +pkg syscall (darwin-amd64), func BpfInterface //deprecated +pkg syscall (darwin-amd64), func BpfJump //deprecated +pkg syscall (darwin-amd64), func BpfStats //deprecated +pkg syscall (darwin-amd64), func BpfStmt //deprecated +pkg syscall (darwin-amd64), func BpfTimeout //deprecated +pkg syscall (darwin-amd64), func CheckBpfVersion //deprecated +pkg syscall (darwin-amd64), func FlushBpf //deprecated +pkg syscall (darwin-amd64), func ParseRoutingMessage //deprecated +pkg syscall (darwin-amd64), func ParseRoutingSockaddr //deprecated +pkg syscall (darwin-amd64), func RouteRIB //deprecated +pkg syscall (darwin-amd64), func SetBpf //deprecated +pkg syscall (darwin-amd64), func SetBpfBuflen //deprecated +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 +pkg syscall (darwin-amd64), type InterfaceAddrMessage //deprecated +pkg syscall (darwin-amd64), type InterfaceMessage //deprecated +pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (darwin-amd64), type RouteMessage //deprecated +pkg syscall (darwin-amd64), type RoutingMessage //deprecated +pkg syscall (darwin-amd64-cgo), func BpfBuflen //deprecated +pkg syscall (darwin-amd64-cgo), func BpfDatalink //deprecated +pkg syscall (darwin-amd64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (darwin-amd64-cgo), func BpfInterface //deprecated +pkg syscall (darwin-amd64-cgo), func BpfJump //deprecated +pkg syscall (darwin-amd64-cgo), func BpfStats //deprecated +pkg syscall (darwin-amd64-cgo), func BpfStmt //deprecated +pkg syscall (darwin-amd64-cgo), func BpfTimeout //deprecated +pkg syscall (darwin-amd64-cgo), func CheckBpfVersion //deprecated +pkg syscall (darwin-amd64-cgo), func FlushBpf //deprecated +pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (darwin-amd64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (darwin-amd64-cgo), func RouteRIB //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpf //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfBuflen //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfDatalink //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfImmediate //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfInterface //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfPromisc //deprecated +pkg syscall (darwin-amd64-cgo), func SetBpfTimeout //deprecated +pkg syscall (darwin-amd64-cgo), func StringSlicePtr //deprecated +pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (darwin-amd64-cgo), type InterfaceMessage //deprecated +pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (darwin-amd64-cgo), type RouteMessage //deprecated +pkg syscall (darwin-amd64-cgo), type RoutingMessage //deprecated +pkg syscall (freebsd-386), func BpfBuflen //deprecated +pkg syscall (freebsd-386), func BpfDatalink //deprecated +pkg syscall (freebsd-386), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-386), func BpfInterface //deprecated +pkg syscall (freebsd-386), func BpfJump //deprecated +pkg syscall (freebsd-386), func BpfStats //deprecated +pkg syscall (freebsd-386), func BpfStmt //deprecated +pkg syscall (freebsd-386), func BpfTimeout //deprecated +pkg syscall (freebsd-386), func CheckBpfVersion //deprecated +pkg syscall (freebsd-386), func FlushBpf //deprecated +pkg syscall (freebsd-386), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-386), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-386), func RouteRIB //deprecated +pkg syscall (freebsd-386), func SetBpf //deprecated +pkg syscall (freebsd-386), func SetBpfBuflen //deprecated +pkg syscall (freebsd-386), func SetBpfDatalink //deprecated +pkg syscall (freebsd-386), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-386), func SetBpfImmediate //deprecated +pkg syscall (freebsd-386), func SetBpfInterface //deprecated +pkg syscall (freebsd-386), func SetBpfPromisc //deprecated +pkg syscall (freebsd-386), func SetBpfTimeout //deprecated +pkg syscall (freebsd-386), func StringSlicePtr //deprecated +pkg syscall (freebsd-386), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-386), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-386), type InterfaceMessage //deprecated +pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-386), type RouteMessage //deprecated +pkg syscall (freebsd-386), type RoutingMessage //deprecated +pkg syscall (freebsd-386-cgo), func BpfBuflen //deprecated +pkg syscall (freebsd-386-cgo), func BpfDatalink //deprecated +pkg syscall (freebsd-386-cgo), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-386-cgo), func BpfInterface //deprecated +pkg syscall (freebsd-386-cgo), func BpfJump //deprecated +pkg syscall (freebsd-386-cgo), func BpfStats //deprecated +pkg syscall (freebsd-386-cgo), func BpfStmt //deprecated +pkg syscall (freebsd-386-cgo), func BpfTimeout //deprecated +pkg syscall (freebsd-386-cgo), func CheckBpfVersion //deprecated +pkg syscall (freebsd-386-cgo), func FlushBpf //deprecated +pkg syscall (freebsd-386-cgo), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-386-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-386-cgo), func RouteRIB //deprecated +pkg syscall (freebsd-386-cgo), func SetBpf //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfBuflen //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfDatalink //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfImmediate //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfInterface //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfPromisc //deprecated +pkg syscall (freebsd-386-cgo), func SetBpfTimeout //deprecated +pkg syscall (freebsd-386-cgo), func StringSlicePtr //deprecated +pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-386-cgo), type InterfaceMessage //deprecated +pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-386-cgo), type RouteMessage //deprecated +pkg syscall (freebsd-386-cgo), type RoutingMessage //deprecated +pkg syscall (freebsd-amd64), func BpfBuflen //deprecated +pkg syscall (freebsd-amd64), func BpfDatalink //deprecated +pkg syscall (freebsd-amd64), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-amd64), func BpfInterface //deprecated +pkg syscall (freebsd-amd64), func BpfJump //deprecated +pkg syscall (freebsd-amd64), func BpfStats //deprecated +pkg syscall (freebsd-amd64), func BpfStmt //deprecated +pkg syscall (freebsd-amd64), func BpfTimeout //deprecated +pkg syscall (freebsd-amd64), func CheckBpfVersion //deprecated +pkg syscall (freebsd-amd64), func FlushBpf //deprecated +pkg syscall (freebsd-amd64), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-amd64), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-amd64), func RouteRIB //deprecated +pkg syscall (freebsd-amd64), func SetBpf //deprecated +pkg syscall (freebsd-amd64), func SetBpfBuflen //deprecated +pkg syscall (freebsd-amd64), func SetBpfDatalink //deprecated +pkg syscall (freebsd-amd64), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-amd64), func SetBpfImmediate //deprecated +pkg syscall (freebsd-amd64), func SetBpfInterface //deprecated +pkg syscall (freebsd-amd64), func SetBpfPromisc //deprecated +pkg syscall (freebsd-amd64), func SetBpfTimeout //deprecated +pkg syscall (freebsd-amd64), func StringSlicePtr //deprecated +pkg syscall (freebsd-amd64), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-amd64), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-amd64), type InterfaceMessage //deprecated +pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-amd64), type RouteMessage //deprecated +pkg syscall (freebsd-amd64), type RoutingMessage //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfBuflen //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfDatalink //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfInterface //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfJump //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfStats //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfStmt //deprecated +pkg syscall (freebsd-amd64-cgo), func BpfTimeout //deprecated +pkg syscall (freebsd-amd64-cgo), func CheckBpfVersion //deprecated +pkg syscall (freebsd-amd64-cgo), func FlushBpf //deprecated +pkg syscall (freebsd-amd64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-amd64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-amd64-cgo), func RouteRIB //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpf //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfBuflen //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfDatalink //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfImmediate //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfInterface //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfPromisc //deprecated +pkg syscall (freebsd-amd64-cgo), func SetBpfTimeout //deprecated +pkg syscall (freebsd-amd64-cgo), func StringSlicePtr //deprecated +pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-amd64-cgo), type InterfaceMessage //deprecated +pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-amd64-cgo), type RouteMessage //deprecated +pkg syscall (freebsd-amd64-cgo), type RoutingMessage //deprecated +pkg syscall (freebsd-arm), func BpfBuflen //deprecated +pkg syscall (freebsd-arm), func BpfDatalink //deprecated +pkg syscall (freebsd-arm), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-arm), func BpfInterface //deprecated +pkg syscall (freebsd-arm), func BpfJump //deprecated +pkg syscall (freebsd-arm), func BpfStats //deprecated +pkg syscall (freebsd-arm), func BpfStmt //deprecated +pkg syscall (freebsd-arm), func BpfTimeout //deprecated +pkg syscall (freebsd-arm), func CheckBpfVersion //deprecated +pkg syscall (freebsd-arm), func FlushBpf //deprecated +pkg syscall (freebsd-arm), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-arm), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-arm), func RouteRIB //deprecated +pkg syscall (freebsd-arm), func SetBpf //deprecated +pkg syscall (freebsd-arm), func SetBpfBuflen //deprecated +pkg syscall (freebsd-arm), func SetBpfDatalink //deprecated +pkg syscall (freebsd-arm), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-arm), func SetBpfImmediate //deprecated +pkg syscall (freebsd-arm), func SetBpfInterface //deprecated +pkg syscall (freebsd-arm), func SetBpfPromisc //deprecated +pkg syscall (freebsd-arm), func SetBpfTimeout //deprecated +pkg syscall (freebsd-arm), func StringSlicePtr //deprecated +pkg syscall (freebsd-arm), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-arm), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-arm), type InterfaceMessage //deprecated +pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-arm), type RouteMessage //deprecated +pkg syscall (freebsd-arm), type RoutingMessage //deprecated +pkg syscall (freebsd-arm-cgo), func BpfBuflen //deprecated +pkg syscall (freebsd-arm-cgo), func BpfDatalink //deprecated +pkg syscall (freebsd-arm-cgo), func BpfHeadercmpl //deprecated +pkg syscall (freebsd-arm-cgo), func BpfInterface //deprecated +pkg syscall (freebsd-arm-cgo), func BpfJump //deprecated +pkg syscall (freebsd-arm-cgo), func BpfStats //deprecated +pkg syscall (freebsd-arm-cgo), func BpfStmt //deprecated +pkg syscall (freebsd-arm-cgo), func BpfTimeout //deprecated +pkg syscall (freebsd-arm-cgo), func CheckBpfVersion //deprecated +pkg syscall (freebsd-arm-cgo), func FlushBpf //deprecated +pkg syscall (freebsd-arm-cgo), func ParseRoutingMessage //deprecated +pkg syscall (freebsd-arm-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (freebsd-arm-cgo), func RouteRIB //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpf //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfBuflen //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfDatalink //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfImmediate //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfInterface //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfPromisc //deprecated +pkg syscall (freebsd-arm-cgo), func SetBpfTimeout //deprecated +pkg syscall (freebsd-arm-cgo), func StringSlicePtr //deprecated +pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (freebsd-arm-cgo), type InterfaceMessage //deprecated +pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (freebsd-arm-cgo), type RouteMessage //deprecated +pkg syscall (freebsd-arm-cgo), type RoutingMessage //deprecated +pkg syscall (linux-386), func AttachLsf //deprecated +pkg syscall (linux-386), func DetachLsf //deprecated +pkg syscall (linux-386), func LsfJump //deprecated +pkg syscall (linux-386), func LsfSocket //deprecated +pkg syscall (linux-386), func LsfStmt //deprecated +pkg syscall (linux-386), func SetLsfPromisc //deprecated +pkg syscall (linux-386), func StringSlicePtr //deprecated +pkg syscall (linux-386-cgo), func AttachLsf //deprecated +pkg syscall (linux-386-cgo), func DetachLsf //deprecated +pkg syscall (linux-386-cgo), func LsfJump //deprecated +pkg syscall (linux-386-cgo), func LsfSocket //deprecated +pkg syscall (linux-386-cgo), func LsfStmt //deprecated +pkg syscall (linux-386-cgo), func SetLsfPromisc //deprecated +pkg syscall (linux-386-cgo), func StringSlicePtr //deprecated +pkg syscall (linux-amd64), func AttachLsf //deprecated +pkg syscall (linux-amd64), func DetachLsf //deprecated +pkg syscall (linux-amd64), func LsfJump //deprecated +pkg syscall (linux-amd64), func LsfSocket //deprecated +pkg syscall (linux-amd64), func LsfStmt //deprecated +pkg syscall (linux-amd64), func SetLsfPromisc //deprecated +pkg syscall (linux-amd64), func StringSlicePtr //deprecated +pkg syscall (linux-amd64-cgo), func AttachLsf //deprecated +pkg syscall (linux-amd64-cgo), func DetachLsf //deprecated +pkg syscall (linux-amd64-cgo), func LsfJump //deprecated +pkg syscall (linux-amd64-cgo), func LsfSocket //deprecated +pkg syscall (linux-amd64-cgo), func LsfStmt //deprecated +pkg syscall (linux-amd64-cgo), func SetLsfPromisc //deprecated +pkg syscall (linux-amd64-cgo), func StringSlicePtr //deprecated +pkg syscall (linux-arm), func AttachLsf //deprecated +pkg syscall (linux-arm), func DetachLsf //deprecated +pkg syscall (linux-arm), func LsfJump //deprecated +pkg syscall (linux-arm), func LsfSocket //deprecated +pkg syscall (linux-arm), func LsfStmt //deprecated +pkg syscall (linux-arm), func SetLsfPromisc //deprecated +pkg syscall (linux-arm), func StringSlicePtr //deprecated +pkg syscall (linux-arm-cgo), func AttachLsf //deprecated +pkg syscall (linux-arm-cgo), func DetachLsf //deprecated +pkg syscall (linux-arm-cgo), func LsfJump //deprecated +pkg syscall (linux-arm-cgo), func LsfSocket //deprecated +pkg syscall (linux-arm-cgo), func LsfStmt //deprecated +pkg syscall (linux-arm-cgo), func SetLsfPromisc //deprecated +pkg syscall (linux-arm-cgo), func StringSlicePtr //deprecated +pkg syscall (netbsd-386), func BpfBuflen //deprecated +pkg syscall (netbsd-386), func BpfDatalink //deprecated +pkg syscall (netbsd-386), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-386), func BpfInterface //deprecated +pkg syscall (netbsd-386), func BpfJump //deprecated +pkg syscall (netbsd-386), func BpfStats //deprecated +pkg syscall (netbsd-386), func BpfStmt //deprecated +pkg syscall (netbsd-386), func BpfTimeout //deprecated +pkg syscall (netbsd-386), func CheckBpfVersion //deprecated +pkg syscall (netbsd-386), func FlushBpf //deprecated +pkg syscall (netbsd-386), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-386), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-386), func RouteRIB //deprecated +pkg syscall (netbsd-386), func SetBpf //deprecated +pkg syscall (netbsd-386), func SetBpfBuflen //deprecated +pkg syscall (netbsd-386), func SetBpfDatalink //deprecated +pkg syscall (netbsd-386), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-386), func SetBpfImmediate //deprecated +pkg syscall (netbsd-386), func SetBpfInterface //deprecated +pkg syscall (netbsd-386), func SetBpfPromisc //deprecated +pkg syscall (netbsd-386), func SetBpfTimeout //deprecated +pkg syscall (netbsd-386), func StringSlicePtr //deprecated +pkg syscall (netbsd-386), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-386), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-386), type InterfaceMessage //deprecated +pkg syscall (netbsd-386), type RouteMessage //deprecated +pkg syscall (netbsd-386), type RoutingMessage //deprecated +pkg syscall (netbsd-386-cgo), func BpfBuflen //deprecated +pkg syscall (netbsd-386-cgo), func BpfDatalink //deprecated +pkg syscall (netbsd-386-cgo), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-386-cgo), func BpfInterface //deprecated +pkg syscall (netbsd-386-cgo), func BpfJump //deprecated +pkg syscall (netbsd-386-cgo), func BpfStats //deprecated +pkg syscall (netbsd-386-cgo), func BpfStmt //deprecated +pkg syscall (netbsd-386-cgo), func BpfTimeout //deprecated +pkg syscall (netbsd-386-cgo), func CheckBpfVersion //deprecated +pkg syscall (netbsd-386-cgo), func FlushBpf //deprecated +pkg syscall (netbsd-386-cgo), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-386-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-386-cgo), func RouteRIB //deprecated +pkg syscall (netbsd-386-cgo), func SetBpf //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfBuflen //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfDatalink //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfImmediate //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfInterface //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfPromisc //deprecated +pkg syscall (netbsd-386-cgo), func SetBpfTimeout //deprecated +pkg syscall (netbsd-386-cgo), func StringSlicePtr //deprecated +pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-386-cgo), type InterfaceMessage //deprecated +pkg syscall (netbsd-386-cgo), type RouteMessage //deprecated +pkg syscall (netbsd-386-cgo), type RoutingMessage //deprecated +pkg syscall (netbsd-amd64), func BpfBuflen //deprecated +pkg syscall (netbsd-amd64), func BpfDatalink //deprecated +pkg syscall (netbsd-amd64), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-amd64), func BpfInterface //deprecated +pkg syscall (netbsd-amd64), func BpfJump //deprecated +pkg syscall (netbsd-amd64), func BpfStats //deprecated +pkg syscall (netbsd-amd64), func BpfStmt //deprecated +pkg syscall (netbsd-amd64), func BpfTimeout //deprecated +pkg syscall (netbsd-amd64), func CheckBpfVersion //deprecated +pkg syscall (netbsd-amd64), func FlushBpf //deprecated +pkg syscall (netbsd-amd64), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-amd64), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-amd64), func RouteRIB //deprecated +pkg syscall (netbsd-amd64), func SetBpf //deprecated +pkg syscall (netbsd-amd64), func SetBpfBuflen //deprecated +pkg syscall (netbsd-amd64), func SetBpfDatalink //deprecated +pkg syscall (netbsd-amd64), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-amd64), func SetBpfImmediate //deprecated +pkg syscall (netbsd-amd64), func SetBpfInterface //deprecated +pkg syscall (netbsd-amd64), func SetBpfPromisc //deprecated +pkg syscall (netbsd-amd64), func SetBpfTimeout //deprecated +pkg syscall (netbsd-amd64), func StringSlicePtr //deprecated +pkg syscall (netbsd-amd64), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-amd64), type InterfaceMessage //deprecated +pkg syscall (netbsd-amd64), type RouteMessage //deprecated +pkg syscall (netbsd-amd64), type RoutingMessage //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfBuflen //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfDatalink //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfInterface //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfJump //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfStats //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfStmt //deprecated +pkg syscall (netbsd-amd64-cgo), func BpfTimeout //deprecated +pkg syscall (netbsd-amd64-cgo), func CheckBpfVersion //deprecated +pkg syscall (netbsd-amd64-cgo), func FlushBpf //deprecated +pkg syscall (netbsd-amd64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-amd64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-amd64-cgo), func RouteRIB //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpf //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfBuflen //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfDatalink //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfImmediate //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfInterface //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfPromisc //deprecated +pkg syscall (netbsd-amd64-cgo), func SetBpfTimeout //deprecated +pkg syscall (netbsd-amd64-cgo), func StringSlicePtr //deprecated +pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-amd64-cgo), type InterfaceMessage //deprecated +pkg syscall (netbsd-amd64-cgo), type RouteMessage //deprecated +pkg syscall (netbsd-amd64-cgo), type RoutingMessage //deprecated +pkg syscall (netbsd-arm), func BpfBuflen //deprecated +pkg syscall (netbsd-arm), func BpfDatalink //deprecated +pkg syscall (netbsd-arm), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-arm), func BpfInterface //deprecated +pkg syscall (netbsd-arm), func BpfJump //deprecated +pkg syscall (netbsd-arm), func BpfStats //deprecated +pkg syscall (netbsd-arm), func BpfStmt //deprecated +pkg syscall (netbsd-arm), func BpfTimeout //deprecated +pkg syscall (netbsd-arm), func CheckBpfVersion //deprecated +pkg syscall (netbsd-arm), func FlushBpf //deprecated +pkg syscall (netbsd-arm), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-arm), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-arm), func RouteRIB //deprecated +pkg syscall (netbsd-arm), func SetBpf //deprecated +pkg syscall (netbsd-arm), func SetBpfBuflen //deprecated +pkg syscall (netbsd-arm), func SetBpfDatalink //deprecated +pkg syscall (netbsd-arm), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-arm), func SetBpfImmediate //deprecated +pkg syscall (netbsd-arm), func SetBpfInterface //deprecated +pkg syscall (netbsd-arm), func SetBpfPromisc //deprecated +pkg syscall (netbsd-arm), func SetBpfTimeout //deprecated +pkg syscall (netbsd-arm), func StringSlicePtr //deprecated +pkg syscall (netbsd-arm), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-arm), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-arm), type InterfaceMessage //deprecated +pkg syscall (netbsd-arm), type RouteMessage //deprecated +pkg syscall (netbsd-arm), type RoutingMessage //deprecated +pkg syscall (netbsd-arm-cgo), func BpfBuflen //deprecated +pkg syscall (netbsd-arm-cgo), func BpfDatalink //deprecated +pkg syscall (netbsd-arm-cgo), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-arm-cgo), func BpfInterface //deprecated +pkg syscall (netbsd-arm-cgo), func BpfJump //deprecated +pkg syscall (netbsd-arm-cgo), func BpfStats //deprecated +pkg syscall (netbsd-arm-cgo), func BpfStmt //deprecated +pkg syscall (netbsd-arm-cgo), func BpfTimeout //deprecated +pkg syscall (netbsd-arm-cgo), func CheckBpfVersion //deprecated +pkg syscall (netbsd-arm-cgo), func FlushBpf //deprecated +pkg syscall (netbsd-arm-cgo), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-arm-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-arm-cgo), func RouteRIB //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpf //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfBuflen //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfDatalink //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfImmediate //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfInterface //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfPromisc //deprecated +pkg syscall (netbsd-arm-cgo), func SetBpfTimeout //deprecated +pkg syscall (netbsd-arm-cgo), func StringSlicePtr //deprecated +pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-arm-cgo), type InterfaceMessage //deprecated +pkg syscall (netbsd-arm-cgo), type RouteMessage //deprecated +pkg syscall (netbsd-arm-cgo), type RoutingMessage //deprecated +pkg syscall (netbsd-arm64), func BpfBuflen //deprecated +pkg syscall (netbsd-arm64), func BpfDatalink //deprecated +pkg syscall (netbsd-arm64), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-arm64), func BpfInterface //deprecated +pkg syscall (netbsd-arm64), func BpfJump //deprecated +pkg syscall (netbsd-arm64), func BpfStats //deprecated +pkg syscall (netbsd-arm64), func BpfStmt //deprecated +pkg syscall (netbsd-arm64), func BpfTimeout //deprecated +pkg syscall (netbsd-arm64), func CheckBpfVersion //deprecated +pkg syscall (netbsd-arm64), func FlushBpf //deprecated +pkg syscall (netbsd-arm64), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-arm64), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-arm64), func RouteRIB //deprecated +pkg syscall (netbsd-arm64), func SetBpf //deprecated +pkg syscall (netbsd-arm64), func SetBpfBuflen //deprecated +pkg syscall (netbsd-arm64), func SetBpfDatalink //deprecated +pkg syscall (netbsd-arm64), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-arm64), func SetBpfImmediate //deprecated +pkg syscall (netbsd-arm64), func SetBpfInterface //deprecated +pkg syscall (netbsd-arm64), func SetBpfPromisc //deprecated +pkg syscall (netbsd-arm64), func SetBpfTimeout //deprecated +pkg syscall (netbsd-arm64), func StringSlicePtr //deprecated +pkg syscall (netbsd-arm64), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-arm64), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-arm64), type InterfaceMessage //deprecated +pkg syscall (netbsd-arm64), type RouteMessage //deprecated +pkg syscall (netbsd-arm64), type RoutingMessage //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfBuflen //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfDatalink //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfInterface //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfJump //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfStats //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfStmt //deprecated +pkg syscall (netbsd-arm64-cgo), func BpfTimeout //deprecated +pkg syscall (netbsd-arm64-cgo), func CheckBpfVersion //deprecated +pkg syscall (netbsd-arm64-cgo), func FlushBpf //deprecated +pkg syscall (netbsd-arm64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (netbsd-arm64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (netbsd-arm64-cgo), func RouteRIB //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpf //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfBuflen //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfDatalink //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfImmediate //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfInterface //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfPromisc //deprecated +pkg syscall (netbsd-arm64-cgo), func SetBpfTimeout //deprecated +pkg syscall (netbsd-arm64-cgo), func StringSlicePtr //deprecated +pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (netbsd-arm64-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (netbsd-arm64-cgo), type InterfaceMessage //deprecated +pkg syscall (netbsd-arm64-cgo), type RouteMessage //deprecated +pkg syscall (netbsd-arm64-cgo), type RoutingMessage //deprecated +pkg syscall (openbsd-386), func BpfBuflen //deprecated +pkg syscall (openbsd-386), func BpfDatalink //deprecated +pkg syscall (openbsd-386), func BpfHeadercmpl //deprecated +pkg syscall (openbsd-386), func BpfInterface //deprecated +pkg syscall (openbsd-386), func BpfJump //deprecated +pkg syscall (openbsd-386), func BpfStats //deprecated +pkg syscall (openbsd-386), func BpfStmt //deprecated +pkg syscall (openbsd-386), func BpfTimeout //deprecated +pkg syscall (openbsd-386), func CheckBpfVersion //deprecated +pkg syscall (openbsd-386), func FlushBpf //deprecated +pkg syscall (openbsd-386), func ParseRoutingMessage //deprecated +pkg syscall (openbsd-386), func ParseRoutingSockaddr //deprecated +pkg syscall (openbsd-386), func RouteRIB //deprecated +pkg syscall (openbsd-386), func SetBpf //deprecated +pkg syscall (openbsd-386), func SetBpfBuflen //deprecated +pkg syscall (openbsd-386), func SetBpfDatalink //deprecated +pkg syscall (openbsd-386), func SetBpfHeadercmpl //deprecated +pkg syscall (openbsd-386), func SetBpfImmediate //deprecated +pkg syscall (openbsd-386), func SetBpfInterface //deprecated +pkg syscall (openbsd-386), func SetBpfPromisc //deprecated +pkg syscall (openbsd-386), func SetBpfTimeout //deprecated +pkg syscall (openbsd-386), func StringSlicePtr //deprecated +pkg syscall (openbsd-386), type InterfaceAddrMessage //deprecated +pkg syscall (openbsd-386), type InterfaceAnnounceMessage //deprecated +pkg syscall (openbsd-386), type InterfaceMessage //deprecated +pkg syscall (openbsd-386), type RouteMessage //deprecated +pkg syscall (openbsd-386), type RoutingMessage //deprecated +pkg syscall (openbsd-386-cgo), func BpfBuflen //deprecated +pkg syscall (openbsd-386-cgo), func BpfDatalink //deprecated +pkg syscall (openbsd-386-cgo), func BpfHeadercmpl //deprecated +pkg syscall (openbsd-386-cgo), func BpfInterface //deprecated +pkg syscall (openbsd-386-cgo), func BpfJump //deprecated +pkg syscall (openbsd-386-cgo), func BpfStats //deprecated +pkg syscall (openbsd-386-cgo), func BpfStmt //deprecated +pkg syscall (openbsd-386-cgo), func BpfTimeout //deprecated +pkg syscall (openbsd-386-cgo), func CheckBpfVersion //deprecated +pkg syscall (openbsd-386-cgo), func FlushBpf //deprecated +pkg syscall (openbsd-386-cgo), func ParseRoutingMessage //deprecated +pkg syscall (openbsd-386-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (openbsd-386-cgo), func RouteRIB //deprecated +pkg syscall (openbsd-386-cgo), func SetBpf //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfBuflen //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfDatalink //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfImmediate //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfInterface //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfPromisc //deprecated +pkg syscall (openbsd-386-cgo), func SetBpfTimeout //deprecated +pkg syscall (openbsd-386-cgo), func StringSlicePtr //deprecated +pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (openbsd-386-cgo), type InterfaceMessage //deprecated +pkg syscall (openbsd-386-cgo), type RouteMessage //deprecated +pkg syscall (openbsd-386-cgo), type RoutingMessage //deprecated +pkg syscall (openbsd-amd64), func BpfBuflen //deprecated +pkg syscall (openbsd-amd64), func BpfDatalink //deprecated +pkg syscall (openbsd-amd64), func BpfHeadercmpl //deprecated +pkg syscall (openbsd-amd64), func BpfInterface //deprecated +pkg syscall (openbsd-amd64), func BpfJump //deprecated +pkg syscall (openbsd-amd64), func BpfStats //deprecated +pkg syscall (openbsd-amd64), func BpfStmt //deprecated +pkg syscall (openbsd-amd64), func BpfTimeout //deprecated +pkg syscall (openbsd-amd64), func CheckBpfVersion //deprecated +pkg syscall (openbsd-amd64), func FlushBpf //deprecated +pkg syscall (openbsd-amd64), func ParseRoutingMessage //deprecated +pkg syscall (openbsd-amd64), func ParseRoutingSockaddr //deprecated +pkg syscall (openbsd-amd64), func RouteRIB //deprecated +pkg syscall (openbsd-amd64), func SetBpf //deprecated +pkg syscall (openbsd-amd64), func SetBpfBuflen //deprecated +pkg syscall (openbsd-amd64), func SetBpfDatalink //deprecated +pkg syscall (openbsd-amd64), func SetBpfHeadercmpl //deprecated +pkg syscall (openbsd-amd64), func SetBpfImmediate //deprecated +pkg syscall (openbsd-amd64), func SetBpfInterface //deprecated +pkg syscall (openbsd-amd64), func SetBpfPromisc //deprecated +pkg syscall (openbsd-amd64), func SetBpfTimeout //deprecated +pkg syscall (openbsd-amd64), func StringSlicePtr //deprecated +pkg syscall (openbsd-amd64), type InterfaceAddrMessage //deprecated +pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage //deprecated +pkg syscall (openbsd-amd64), type InterfaceMessage //deprecated +pkg syscall (openbsd-amd64), type RouteMessage //deprecated +pkg syscall (openbsd-amd64), type RoutingMessage //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfBuflen //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfDatalink //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfInterface //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfJump //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfStats //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfStmt //deprecated +pkg syscall (openbsd-amd64-cgo), func BpfTimeout //deprecated +pkg syscall (openbsd-amd64-cgo), func CheckBpfVersion //deprecated +pkg syscall (openbsd-amd64-cgo), func FlushBpf //deprecated +pkg syscall (openbsd-amd64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (openbsd-amd64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (openbsd-amd64-cgo), func RouteRIB //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpf //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfBuflen //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfDatalink //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfImmediate //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfInterface //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfPromisc //deprecated +pkg syscall (openbsd-amd64-cgo), func SetBpfTimeout //deprecated +pkg syscall (openbsd-amd64-cgo), func StringSlicePtr //deprecated +pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage //deprecated +pkg syscall (openbsd-amd64-cgo), type InterfaceMessage //deprecated +pkg syscall (openbsd-amd64-cgo), type RouteMessage //deprecated +pkg syscall (openbsd-amd64-cgo), type RoutingMessage //deprecated +pkg syscall (windows-386), func FormatMessage //deprecated +pkg syscall (windows-386), func StringToUTF16 //deprecated +pkg syscall (windows-386), func StringToUTF16Ptr //deprecated +pkg syscall (windows-amd64), func FormatMessage //deprecated +pkg syscall (windows-amd64), func StringToUTF16 //deprecated +pkg syscall (windows-amd64), func StringToUTF16Ptr //deprecated +pkg syscall, func StringBytePtr //deprecated +pkg syscall, func StringByteSlice //deprecated +# darwin arm64 port +pkg log/syslog (darwin-arm64), const LOG_ALERT = 1 +pkg log/syslog (darwin-arm64), const LOG_ALERT Priority +pkg log/syslog (darwin-arm64), const LOG_AUTH = 32 +pkg log/syslog (darwin-arm64), const LOG_AUTH Priority +pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-arm64), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-arm64), const LOG_CRIT = 2 +pkg log/syslog (darwin-arm64), const LOG_CRIT Priority +pkg log/syslog (darwin-arm64), const LOG_CRON = 72 +pkg log/syslog (darwin-arm64), const LOG_CRON Priority +pkg log/syslog (darwin-arm64), const LOG_DAEMON = 24 +pkg log/syslog (darwin-arm64), const LOG_DAEMON Priority +pkg log/syslog (darwin-arm64), const LOG_DEBUG = 7 +pkg log/syslog (darwin-arm64), const LOG_DEBUG Priority +pkg log/syslog (darwin-arm64), const LOG_EMERG = 0 +pkg log/syslog (darwin-arm64), const LOG_EMERG Priority +pkg log/syslog (darwin-arm64), const LOG_ERR = 3 +pkg log/syslog (darwin-arm64), const LOG_ERR Priority +pkg log/syslog (darwin-arm64), const LOG_FTP = 88 +pkg log/syslog (darwin-arm64), const LOG_FTP Priority +pkg log/syslog (darwin-arm64), const LOG_INFO = 6 +pkg log/syslog (darwin-arm64), const LOG_INFO Priority +pkg log/syslog (darwin-arm64), const LOG_KERN = 0 +pkg log/syslog (darwin-arm64), const LOG_KERN Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-arm64), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-arm64), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-arm64), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-arm64), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-arm64), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-arm64), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-arm64), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-arm64), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-arm64), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-arm64), const LOG_LPR = 48 +pkg log/syslog (darwin-arm64), const LOG_LPR Priority +pkg log/syslog (darwin-arm64), const LOG_MAIL = 16 +pkg log/syslog (darwin-arm64), const LOG_MAIL Priority +pkg log/syslog (darwin-arm64), const LOG_NEWS = 56 +pkg log/syslog (darwin-arm64), const LOG_NEWS Priority +pkg log/syslog (darwin-arm64), const LOG_NOTICE = 5 +pkg log/syslog (darwin-arm64), const LOG_NOTICE Priority +pkg log/syslog (darwin-arm64), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-arm64), const LOG_SYSLOG Priority +pkg log/syslog (darwin-arm64), const LOG_USER = 8 +pkg log/syslog (darwin-arm64), const LOG_USER Priority +pkg log/syslog (darwin-arm64), const LOG_UUCP = 64 +pkg log/syslog (darwin-arm64), const LOG_UUCP Priority +pkg log/syslog (darwin-arm64), const LOG_WARNING = 4 +pkg log/syslog (darwin-arm64), const LOG_WARNING Priority +pkg log/syslog (darwin-arm64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-arm64), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-arm64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-arm64), method (*Writer) Alert(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Close() error +pkg log/syslog (darwin-arm64), method (*Writer) Crit(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Debug(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Err(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Info(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Notice(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Warning(string) error +pkg log/syslog (darwin-arm64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-arm64), type Priority int +pkg log/syslog (darwin-arm64), type Writer struct +pkg log/syslog (darwin-arm64-cgo), const LOG_ALERT = 1 +pkg log/syslog (darwin-arm64-cgo), const LOG_ALERT Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_AUTH = 32 +pkg log/syslog (darwin-arm64-cgo), const LOG_AUTH Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_AUTHPRIV = 80 +pkg log/syslog (darwin-arm64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_CRIT = 2 +pkg log/syslog (darwin-arm64-cgo), const LOG_CRIT Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_CRON = 72 +pkg log/syslog (darwin-arm64-cgo), const LOG_CRON Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_DAEMON = 24 +pkg log/syslog (darwin-arm64-cgo), const LOG_DAEMON Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_DEBUG = 7 +pkg log/syslog (darwin-arm64-cgo), const LOG_DEBUG Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_EMERG = 0 +pkg log/syslog (darwin-arm64-cgo), const LOG_EMERG Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_ERR = 3 +pkg log/syslog (darwin-arm64-cgo), const LOG_ERR Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_FTP = 88 +pkg log/syslog (darwin-arm64-cgo), const LOG_FTP Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_INFO = 6 +pkg log/syslog (darwin-arm64-cgo), const LOG_INFO Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_KERN = 0 +pkg log/syslog (darwin-arm64-cgo), const LOG_KERN Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL0 = 128 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL1 = 136 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL2 = 144 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL3 = 152 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL4 = 160 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL5 = 168 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL6 = 176 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL7 = 184 +pkg log/syslog (darwin-arm64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_LPR = 48 +pkg log/syslog (darwin-arm64-cgo), const LOG_LPR Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_MAIL = 16 +pkg log/syslog (darwin-arm64-cgo), const LOG_MAIL Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_NEWS = 56 +pkg log/syslog (darwin-arm64-cgo), const LOG_NEWS Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_NOTICE = 5 +pkg log/syslog (darwin-arm64-cgo), const LOG_NOTICE Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_SYSLOG = 40 +pkg log/syslog (darwin-arm64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_USER = 8 +pkg log/syslog (darwin-arm64-cgo), const LOG_USER Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_UUCP = 64 +pkg log/syslog (darwin-arm64-cgo), const LOG_UUCP Priority +pkg log/syslog (darwin-arm64-cgo), const LOG_WARNING = 4 +pkg log/syslog (darwin-arm64-cgo), const LOG_WARNING Priority +pkg log/syslog (darwin-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-arm64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Close() error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Err(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Info(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (darwin-arm64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-arm64-cgo), type Priority int +pkg log/syslog (darwin-arm64-cgo), type Writer struct +pkg math/bits (darwin-arm64), const UintSize = 64 +pkg math/bits (darwin-arm64-cgo), const UintSize = 64 +pkg os (darwin-arm64), const DevNull = "/dev/null" +pkg os (darwin-arm64), const O_APPEND = 8 +pkg os (darwin-arm64), const O_CREATE = 512 +pkg os (darwin-arm64), const O_EXCL = 2048 +pkg os (darwin-arm64), const O_SYNC = 128 +pkg os (darwin-arm64), const O_TRUNC = 1024 +pkg os (darwin-arm64), const PathListSeparator = 58 +pkg os (darwin-arm64), const PathSeparator = 47 +pkg os (darwin-arm64-cgo), const DevNull = "/dev/null" +pkg os (darwin-arm64-cgo), const O_APPEND = 8 +pkg os (darwin-arm64-cgo), const O_CREATE = 512 +pkg os (darwin-arm64-cgo), const O_EXCL = 2048 +pkg os (darwin-arm64-cgo), const O_SYNC = 128 +pkg os (darwin-arm64-cgo), const O_TRUNC = 1024 +pkg os (darwin-arm64-cgo), const PathListSeparator = 58 +pkg os (darwin-arm64-cgo), const PathSeparator = 47 +pkg path/filepath (darwin-arm64), const ListSeparator = 58 +pkg path/filepath (darwin-arm64), const Separator = 47 +pkg path/filepath (darwin-arm64-cgo), const ListSeparator = 58 +pkg path/filepath (darwin-arm64-cgo), const Separator = 47 +pkg runtime (darwin-arm64), const GOARCH = "arm64" +pkg runtime (darwin-arm64), const GOOS = "darwin" +pkg runtime (darwin-arm64-cgo), const GOARCH = "arm64" +pkg runtime (darwin-arm64-cgo), const GOOS = "darwin" +pkg strconv (darwin-arm64), const IntSize = 64 +pkg strconv (darwin-arm64-cgo), const IntSize = 64 +pkg syscall (darwin-arm64), const AF_APPLETALK = 16 +pkg syscall (darwin-arm64), const AF_APPLETALK ideal-int +pkg syscall (darwin-arm64), const AF_CCITT = 10 +pkg syscall (darwin-arm64), const AF_CCITT ideal-int +pkg syscall (darwin-arm64), const AF_CHAOS = 5 +pkg syscall (darwin-arm64), const AF_CHAOS ideal-int +pkg syscall (darwin-arm64), const AF_CNT = 21 +pkg syscall (darwin-arm64), const AF_CNT ideal-int +pkg syscall (darwin-arm64), const AF_COIP = 20 +pkg syscall (darwin-arm64), const AF_COIP ideal-int +pkg syscall (darwin-arm64), const AF_DATAKIT = 9 +pkg syscall (darwin-arm64), const AF_DATAKIT ideal-int +pkg syscall (darwin-arm64), const AF_DECnet = 12 +pkg syscall (darwin-arm64), const AF_DECnet ideal-int +pkg syscall (darwin-arm64), const AF_DLI = 13 +pkg syscall (darwin-arm64), const AF_DLI ideal-int +pkg syscall (darwin-arm64), const AF_E164 = 28 +pkg syscall (darwin-arm64), const AF_E164 ideal-int +pkg syscall (darwin-arm64), const AF_ECMA = 8 +pkg syscall (darwin-arm64), const AF_ECMA ideal-int +pkg syscall (darwin-arm64), const AF_HYLINK = 15 +pkg syscall (darwin-arm64), const AF_HYLINK ideal-int +pkg syscall (darwin-arm64), const AF_IEEE80211 = 37 +pkg syscall (darwin-arm64), const AF_IEEE80211 ideal-int +pkg syscall (darwin-arm64), const AF_IMPLINK = 3 +pkg syscall (darwin-arm64), const AF_IMPLINK ideal-int +pkg syscall (darwin-arm64), const AF_INET6 = 30 +pkg syscall (darwin-arm64), const AF_IPX = 23 +pkg syscall (darwin-arm64), const AF_IPX ideal-int +pkg syscall (darwin-arm64), const AF_ISDN = 28 +pkg syscall (darwin-arm64), const AF_ISDN ideal-int +pkg syscall (darwin-arm64), const AF_ISO = 7 +pkg syscall (darwin-arm64), const AF_ISO ideal-int +pkg syscall (darwin-arm64), const AF_LAT = 14 +pkg syscall (darwin-arm64), const AF_LAT ideal-int +pkg syscall (darwin-arm64), const AF_LINK = 18 +pkg syscall (darwin-arm64), const AF_LINK ideal-int +pkg syscall (darwin-arm64), const AF_LOCAL = 1 +pkg syscall (darwin-arm64), const AF_LOCAL ideal-int +pkg syscall (darwin-arm64), const AF_MAX = 40 +pkg syscall (darwin-arm64), const AF_MAX ideal-int +pkg syscall (darwin-arm64), const AF_NATM = 31 +pkg syscall (darwin-arm64), const AF_NATM ideal-int +pkg syscall (darwin-arm64), const AF_NDRV = 27 +pkg syscall (darwin-arm64), const AF_NDRV ideal-int +pkg syscall (darwin-arm64), const AF_NETBIOS = 33 +pkg syscall (darwin-arm64), const AF_NETBIOS ideal-int +pkg syscall (darwin-arm64), const AF_NS = 6 +pkg syscall (darwin-arm64), const AF_NS ideal-int +pkg syscall (darwin-arm64), const AF_OSI = 7 +pkg syscall (darwin-arm64), const AF_OSI ideal-int +pkg syscall (darwin-arm64), const AF_PPP = 34 +pkg syscall (darwin-arm64), const AF_PPP ideal-int +pkg syscall (darwin-arm64), const AF_PUP = 4 +pkg syscall (darwin-arm64), const AF_PUP ideal-int +pkg syscall (darwin-arm64), const AF_RESERVED_36 = 36 +pkg syscall (darwin-arm64), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-arm64), const AF_ROUTE = 17 +pkg syscall (darwin-arm64), const AF_ROUTE ideal-int +pkg syscall (darwin-arm64), const AF_SIP = 24 +pkg syscall (darwin-arm64), const AF_SIP ideal-int +pkg syscall (darwin-arm64), const AF_SNA = 11 +pkg syscall (darwin-arm64), const AF_SNA ideal-int +pkg syscall (darwin-arm64), const AF_SYSTEM = 32 +pkg syscall (darwin-arm64), const AF_SYSTEM ideal-int +pkg syscall (darwin-arm64), const AF_UTUN = 38 +pkg syscall (darwin-arm64), const AF_UTUN ideal-int +pkg syscall (darwin-arm64), const B0 = 0 +pkg syscall (darwin-arm64), const B0 ideal-int +pkg syscall (darwin-arm64), const B110 = 110 +pkg syscall (darwin-arm64), const B110 ideal-int +pkg syscall (darwin-arm64), const B115200 = 115200 +pkg syscall (darwin-arm64), const B115200 ideal-int +pkg syscall (darwin-arm64), const B1200 = 1200 +pkg syscall (darwin-arm64), const B1200 ideal-int +pkg syscall (darwin-arm64), const B134 = 134 +pkg syscall (darwin-arm64), const B134 ideal-int +pkg syscall (darwin-arm64), const B14400 = 14400 +pkg syscall (darwin-arm64), const B14400 ideal-int +pkg syscall (darwin-arm64), const B150 = 150 +pkg syscall (darwin-arm64), const B150 ideal-int +pkg syscall (darwin-arm64), const B1800 = 1800 +pkg syscall (darwin-arm64), const B1800 ideal-int +pkg syscall (darwin-arm64), const B19200 = 19200 +pkg syscall (darwin-arm64), const B19200 ideal-int +pkg syscall (darwin-arm64), const B200 = 200 +pkg syscall (darwin-arm64), const B200 ideal-int +pkg syscall (darwin-arm64), const B230400 = 230400 +pkg syscall (darwin-arm64), const B230400 ideal-int +pkg syscall (darwin-arm64), const B2400 = 2400 +pkg syscall (darwin-arm64), const B2400 ideal-int +pkg syscall (darwin-arm64), const B28800 = 28800 +pkg syscall (darwin-arm64), const B28800 ideal-int +pkg syscall (darwin-arm64), const B300 = 300 +pkg syscall (darwin-arm64), const B300 ideal-int +pkg syscall (darwin-arm64), const B38400 = 38400 +pkg syscall (darwin-arm64), const B38400 ideal-int +pkg syscall (darwin-arm64), const B4800 = 4800 +pkg syscall (darwin-arm64), const B4800 ideal-int +pkg syscall (darwin-arm64), const B50 = 50 +pkg syscall (darwin-arm64), const B50 ideal-int +pkg syscall (darwin-arm64), const B57600 = 57600 +pkg syscall (darwin-arm64), const B57600 ideal-int +pkg syscall (darwin-arm64), const B600 = 600 +pkg syscall (darwin-arm64), const B600 ideal-int +pkg syscall (darwin-arm64), const B7200 = 7200 +pkg syscall (darwin-arm64), const B7200 ideal-int +pkg syscall (darwin-arm64), const B75 = 75 +pkg syscall (darwin-arm64), const B75 ideal-int +pkg syscall (darwin-arm64), const B76800 = 76800 +pkg syscall (darwin-arm64), const B76800 ideal-int +pkg syscall (darwin-arm64), const B9600 = 9600 +pkg syscall (darwin-arm64), const B9600 ideal-int +pkg syscall (darwin-arm64), const BIOCFLUSH = 536887912 +pkg syscall (darwin-arm64), const BIOCFLUSH ideal-int +pkg syscall (darwin-arm64), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-arm64), const BIOCGBLEN ideal-int +pkg syscall (darwin-arm64), const BIOCGDLT = 1074020970 +pkg syscall (darwin-arm64), const BIOCGDLT ideal-int +pkg syscall (darwin-arm64), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-arm64), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-arm64), const BIOCGETIF = 1075855979 +pkg syscall (darwin-arm64), const BIOCGETIF ideal-int +pkg syscall (darwin-arm64), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-arm64), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-arm64), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-arm64), const BIOCGRSIG ideal-int +pkg syscall (darwin-arm64), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (darwin-arm64), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-arm64), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-arm64), const BIOCGSEESENT ideal-int +pkg syscall (darwin-arm64), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-arm64), const BIOCGSTATS ideal-int +pkg syscall (darwin-arm64), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-arm64), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-arm64), const BIOCPROMISC = 536887913 +pkg syscall (darwin-arm64), const BIOCPROMISC ideal-int +pkg syscall (darwin-arm64), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-arm64), const BIOCSBLEN ideal-int +pkg syscall (darwin-arm64), const BIOCSDLT = 2147762808 +pkg syscall (darwin-arm64), const BIOCSDLT ideal-int +pkg syscall (darwin-arm64), const BIOCSETF = 2148549223 +pkg syscall (darwin-arm64), const BIOCSETF ideal-int +pkg syscall (darwin-arm64), const BIOCSETIF = 2149597804 +pkg syscall (darwin-arm64), const BIOCSETIF ideal-int +pkg syscall (darwin-arm64), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-arm64), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-arm64), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-arm64), const BIOCSRSIG ideal-int +pkg syscall (darwin-arm64), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (darwin-arm64), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-arm64), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-arm64), const BIOCSSEESENT ideal-int +pkg syscall (darwin-arm64), const BIOCVERSION = 1074020977 +pkg syscall (darwin-arm64), const BIOCVERSION ideal-int +pkg syscall (darwin-arm64), const BPF_A = 16 +pkg syscall (darwin-arm64), const BPF_A ideal-int +pkg syscall (darwin-arm64), const BPF_ABS = 32 +pkg syscall (darwin-arm64), const BPF_ABS ideal-int +pkg syscall (darwin-arm64), const BPF_ADD = 0 +pkg syscall (darwin-arm64), const BPF_ADD ideal-int +pkg syscall (darwin-arm64), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-arm64), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-arm64), const BPF_ALU = 4 +pkg syscall (darwin-arm64), const BPF_ALU ideal-int +pkg syscall (darwin-arm64), const BPF_AND = 80 +pkg syscall (darwin-arm64), const BPF_AND ideal-int +pkg syscall (darwin-arm64), const BPF_B = 16 +pkg syscall (darwin-arm64), const BPF_B ideal-int +pkg syscall (darwin-arm64), const BPF_DIV = 48 +pkg syscall (darwin-arm64), const BPF_DIV ideal-int +pkg syscall (darwin-arm64), const BPF_H = 8 +pkg syscall (darwin-arm64), const BPF_H ideal-int +pkg syscall (darwin-arm64), const BPF_IMM = 0 +pkg syscall (darwin-arm64), const BPF_IMM ideal-int +pkg syscall (darwin-arm64), const BPF_IND = 64 +pkg syscall (darwin-arm64), const BPF_IND ideal-int +pkg syscall (darwin-arm64), const BPF_JA = 0 +pkg syscall (darwin-arm64), const BPF_JA ideal-int +pkg syscall (darwin-arm64), const BPF_JEQ = 16 +pkg syscall (darwin-arm64), const BPF_JEQ ideal-int +pkg syscall (darwin-arm64), const BPF_JGE = 48 +pkg syscall (darwin-arm64), const BPF_JGE ideal-int +pkg syscall (darwin-arm64), const BPF_JGT = 32 +pkg syscall (darwin-arm64), const BPF_JGT ideal-int +pkg syscall (darwin-arm64), const BPF_JMP = 5 +pkg syscall (darwin-arm64), const BPF_JMP ideal-int +pkg syscall (darwin-arm64), const BPF_JSET = 64 +pkg syscall (darwin-arm64), const BPF_JSET ideal-int +pkg syscall (darwin-arm64), const BPF_K = 0 +pkg syscall (darwin-arm64), const BPF_K ideal-int +pkg syscall (darwin-arm64), const BPF_LD = 0 +pkg syscall (darwin-arm64), const BPF_LD ideal-int +pkg syscall (darwin-arm64), const BPF_LDX = 1 +pkg syscall (darwin-arm64), const BPF_LDX ideal-int +pkg syscall (darwin-arm64), const BPF_LEN = 128 +pkg syscall (darwin-arm64), const BPF_LEN ideal-int +pkg syscall (darwin-arm64), const BPF_LSH = 96 +pkg syscall (darwin-arm64), const BPF_LSH ideal-int +pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-arm64), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-arm64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-arm64), const BPF_MAXINSNS = 512 +pkg syscall (darwin-arm64), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-arm64), const BPF_MEM = 96 +pkg syscall (darwin-arm64), const BPF_MEM ideal-int +pkg syscall (darwin-arm64), const BPF_MEMWORDS = 16 +pkg syscall (darwin-arm64), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-arm64), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-arm64), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-arm64), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-arm64), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-arm64), const BPF_MISC = 7 +pkg syscall (darwin-arm64), const BPF_MISC ideal-int +pkg syscall (darwin-arm64), const BPF_MSH = 160 +pkg syscall (darwin-arm64), const BPF_MSH ideal-int +pkg syscall (darwin-arm64), const BPF_MUL = 32 +pkg syscall (darwin-arm64), const BPF_MUL ideal-int +pkg syscall (darwin-arm64), const BPF_NEG = 128 +pkg syscall (darwin-arm64), const BPF_NEG ideal-int +pkg syscall (darwin-arm64), const BPF_OR = 64 +pkg syscall (darwin-arm64), const BPF_OR ideal-int +pkg syscall (darwin-arm64), const BPF_RELEASE = 199606 +pkg syscall (darwin-arm64), const BPF_RELEASE ideal-int +pkg syscall (darwin-arm64), const BPF_RET = 6 +pkg syscall (darwin-arm64), const BPF_RET ideal-int +pkg syscall (darwin-arm64), const BPF_RSH = 112 +pkg syscall (darwin-arm64), const BPF_RSH ideal-int +pkg syscall (darwin-arm64), const BPF_ST = 2 +pkg syscall (darwin-arm64), const BPF_ST ideal-int +pkg syscall (darwin-arm64), const BPF_STX = 3 +pkg syscall (darwin-arm64), const BPF_STX ideal-int +pkg syscall (darwin-arm64), const BPF_SUB = 16 +pkg syscall (darwin-arm64), const BPF_SUB ideal-int +pkg syscall (darwin-arm64), const BPF_TAX = 0 +pkg syscall (darwin-arm64), const BPF_TAX ideal-int +pkg syscall (darwin-arm64), const BPF_TXA = 128 +pkg syscall (darwin-arm64), const BPF_TXA ideal-int +pkg syscall (darwin-arm64), const BPF_W = 0 +pkg syscall (darwin-arm64), const BPF_W ideal-int +pkg syscall (darwin-arm64), const BPF_X = 8 +pkg syscall (darwin-arm64), const BPF_X ideal-int +pkg syscall (darwin-arm64), const BRKINT = 2 +pkg syscall (darwin-arm64), const BRKINT ideal-int +pkg syscall (darwin-arm64), const CFLUSH = 15 +pkg syscall (darwin-arm64), const CFLUSH ideal-int +pkg syscall (darwin-arm64), const CLOCAL = 32768 +pkg syscall (darwin-arm64), const CLOCAL ideal-int +pkg syscall (darwin-arm64), const CREAD = 2048 +pkg syscall (darwin-arm64), const CREAD ideal-int +pkg syscall (darwin-arm64), const CS5 = 0 +pkg syscall (darwin-arm64), const CS5 ideal-int +pkg syscall (darwin-arm64), const CS6 = 256 +pkg syscall (darwin-arm64), const CS6 ideal-int +pkg syscall (darwin-arm64), const CS7 = 512 +pkg syscall (darwin-arm64), const CS7 ideal-int +pkg syscall (darwin-arm64), const CS8 = 768 +pkg syscall (darwin-arm64), const CS8 ideal-int +pkg syscall (darwin-arm64), const CSIZE = 768 +pkg syscall (darwin-arm64), const CSIZE ideal-int +pkg syscall (darwin-arm64), const CSTART = 17 +pkg syscall (darwin-arm64), const CSTART ideal-int +pkg syscall (darwin-arm64), const CSTATUS = 20 +pkg syscall (darwin-arm64), const CSTATUS ideal-int +pkg syscall (darwin-arm64), const CSTOP = 19 +pkg syscall (darwin-arm64), const CSTOP ideal-int +pkg syscall (darwin-arm64), const CSTOPB = 1024 +pkg syscall (darwin-arm64), const CSTOPB ideal-int +pkg syscall (darwin-arm64), const CSUSP = 26 +pkg syscall (darwin-arm64), const CSUSP ideal-int +pkg syscall (darwin-arm64), const CTL_MAXNAME = 12 +pkg syscall (darwin-arm64), const CTL_MAXNAME ideal-int +pkg syscall (darwin-arm64), const CTL_NET = 4 +pkg syscall (darwin-arm64), const CTL_NET ideal-int +pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-arm64), const DLT_ARCNET = 7 +pkg syscall (darwin-arm64), const DLT_ARCNET ideal-int +pkg syscall (darwin-arm64), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-arm64), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-arm64), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-arm64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-arm64), const DLT_AX25 = 3 +pkg syscall (darwin-arm64), const DLT_AX25 ideal-int +pkg syscall (darwin-arm64), const DLT_CHAOS = 5 +pkg syscall (darwin-arm64), const DLT_CHAOS ideal-int +pkg syscall (darwin-arm64), const DLT_CHDLC = 104 +pkg syscall (darwin-arm64), const DLT_CHDLC ideal-int +pkg syscall (darwin-arm64), const DLT_C_HDLC = 104 +pkg syscall (darwin-arm64), const DLT_C_HDLC ideal-int +pkg syscall (darwin-arm64), const DLT_EN10MB = 1 +pkg syscall (darwin-arm64), const DLT_EN10MB ideal-int +pkg syscall (darwin-arm64), const DLT_EN3MB = 2 +pkg syscall (darwin-arm64), const DLT_EN3MB ideal-int +pkg syscall (darwin-arm64), const DLT_FDDI = 10 +pkg syscall (darwin-arm64), const DLT_FDDI ideal-int +pkg syscall (darwin-arm64), const DLT_IEEE802 = 6 +pkg syscall (darwin-arm64), const DLT_IEEE802 ideal-int +pkg syscall (darwin-arm64), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-arm64), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-arm64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-arm64), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-arm64), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-arm64), const DLT_LOOP = 108 +pkg syscall (darwin-arm64), const DLT_LOOP ideal-int +pkg syscall (darwin-arm64), const DLT_NULL = 0 +pkg syscall (darwin-arm64), const DLT_NULL ideal-int +pkg syscall (darwin-arm64), const DLT_PFLOG = 117 +pkg syscall (darwin-arm64), const DLT_PFLOG ideal-int +pkg syscall (darwin-arm64), const DLT_PFSYNC = 18 +pkg syscall (darwin-arm64), const DLT_PFSYNC ideal-int +pkg syscall (darwin-arm64), const DLT_PPP = 9 +pkg syscall (darwin-arm64), const DLT_PPP ideal-int +pkg syscall (darwin-arm64), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-arm64), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-arm64), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-arm64), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-arm64), const DLT_PRONET = 4 +pkg syscall (darwin-arm64), const DLT_PRONET ideal-int +pkg syscall (darwin-arm64), const DLT_RAW = 12 +pkg syscall (darwin-arm64), const DLT_RAW ideal-int +pkg syscall (darwin-arm64), const DLT_SLIP = 8 +pkg syscall (darwin-arm64), const DLT_SLIP ideal-int +pkg syscall (darwin-arm64), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-arm64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-arm64), const DT_BLK = 6 +pkg syscall (darwin-arm64), const DT_BLK ideal-int +pkg syscall (darwin-arm64), const DT_CHR = 2 +pkg syscall (darwin-arm64), const DT_CHR ideal-int +pkg syscall (darwin-arm64), const DT_DIR = 4 +pkg syscall (darwin-arm64), const DT_DIR ideal-int +pkg syscall (darwin-arm64), const DT_FIFO = 1 +pkg syscall (darwin-arm64), const DT_FIFO ideal-int +pkg syscall (darwin-arm64), const DT_LNK = 10 +pkg syscall (darwin-arm64), const DT_LNK ideal-int +pkg syscall (darwin-arm64), const DT_REG = 8 +pkg syscall (darwin-arm64), const DT_REG ideal-int +pkg syscall (darwin-arm64), const DT_SOCK = 12 +pkg syscall (darwin-arm64), const DT_SOCK ideal-int +pkg syscall (darwin-arm64), const DT_UNKNOWN = 0 +pkg syscall (darwin-arm64), const DT_UNKNOWN ideal-int +pkg syscall (darwin-arm64), const DT_WHT = 14 +pkg syscall (darwin-arm64), const DT_WHT ideal-int +pkg syscall (darwin-arm64), const E2BIG = 7 +pkg syscall (darwin-arm64), const EACCES = 13 +pkg syscall (darwin-arm64), const EADDRINUSE = 48 +pkg syscall (darwin-arm64), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-arm64), const EAFNOSUPPORT = 47 +pkg syscall (darwin-arm64), const EAGAIN = 35 +pkg syscall (darwin-arm64), const EALREADY = 37 +pkg syscall (darwin-arm64), const EAUTH = 80 +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 +pkg syscall (darwin-arm64), const EBADMSG Errno +pkg syscall (darwin-arm64), const EBADRPC = 72 +pkg syscall (darwin-arm64), const EBADRPC Errno +pkg syscall (darwin-arm64), const EBUSY = 16 +pkg syscall (darwin-arm64), const ECANCELED = 89 +pkg syscall (darwin-arm64), const ECHILD = 10 +pkg syscall (darwin-arm64), const ECHO = 8 +pkg syscall (darwin-arm64), const ECHO ideal-int +pkg syscall (darwin-arm64), const ECHOCTL = 64 +pkg syscall (darwin-arm64), const ECHOCTL ideal-int +pkg syscall (darwin-arm64), const ECHOE = 2 +pkg syscall (darwin-arm64), const ECHOE ideal-int +pkg syscall (darwin-arm64), const ECHOK = 4 +pkg syscall (darwin-arm64), const ECHOK ideal-int +pkg syscall (darwin-arm64), const ECHOKE = 1 +pkg syscall (darwin-arm64), const ECHOKE ideal-int +pkg syscall (darwin-arm64), const ECHONL = 16 +pkg syscall (darwin-arm64), const ECHONL ideal-int +pkg syscall (darwin-arm64), const ECHOPRT = 32 +pkg syscall (darwin-arm64), const ECHOPRT ideal-int +pkg syscall (darwin-arm64), const ECONNABORTED = 53 +pkg syscall (darwin-arm64), const ECONNREFUSED = 61 +pkg syscall (darwin-arm64), const ECONNRESET = 54 +pkg syscall (darwin-arm64), const EDEADLK = 11 +pkg syscall (darwin-arm64), const EDESTADDRREQ = 39 +pkg syscall (darwin-arm64), const EDEVERR = 83 +pkg syscall (darwin-arm64), const EDEVERR Errno +pkg syscall (darwin-arm64), const EDOM = 33 +pkg syscall (darwin-arm64), const EDQUOT = 69 +pkg syscall (darwin-arm64), const EEXIST = 17 +pkg syscall (darwin-arm64), const EFAULT = 14 +pkg syscall (darwin-arm64), const EFBIG = 27 +pkg syscall (darwin-arm64), const EFTYPE = 79 +pkg syscall (darwin-arm64), const EFTYPE Errno +pkg syscall (darwin-arm64), const EHOSTDOWN = 64 +pkg syscall (darwin-arm64), const EHOSTUNREACH = 65 +pkg syscall (darwin-arm64), const EIDRM = 90 +pkg syscall (darwin-arm64), const EILSEQ = 92 +pkg syscall (darwin-arm64), const EINPROGRESS = 36 +pkg syscall (darwin-arm64), const EINTR = 4 +pkg syscall (darwin-arm64), const EINVAL = 22 +pkg syscall (darwin-arm64), const EIO = 5 +pkg syscall (darwin-arm64), const EISCONN = 56 +pkg syscall (darwin-arm64), const EISDIR = 21 +pkg syscall (darwin-arm64), const ELAST = 106 +pkg syscall (darwin-arm64), const ELAST Errno +pkg syscall (darwin-arm64), const ELOOP = 62 +pkg syscall (darwin-arm64), const EMFILE = 24 +pkg syscall (darwin-arm64), const EMLINK = 31 +pkg syscall (darwin-arm64), const EMSGSIZE = 40 +pkg syscall (darwin-arm64), const EMULTIHOP = 95 +pkg syscall (darwin-arm64), const EMULTIHOP Errno +pkg syscall (darwin-arm64), const ENAMETOOLONG = 63 +pkg syscall (darwin-arm64), const ENEEDAUTH = 81 +pkg syscall (darwin-arm64), const ENEEDAUTH Errno +pkg syscall (darwin-arm64), const ENETDOWN = 50 +pkg syscall (darwin-arm64), const ENETRESET = 52 +pkg syscall (darwin-arm64), const ENETUNREACH = 51 +pkg syscall (darwin-arm64), const ENFILE = 23 +pkg syscall (darwin-arm64), const ENOATTR = 93 +pkg syscall (darwin-arm64), const ENOATTR Errno +pkg syscall (darwin-arm64), const ENOBUFS = 55 +pkg syscall (darwin-arm64), const ENODATA = 96 +pkg syscall (darwin-arm64), const ENODATA Errno +pkg syscall (darwin-arm64), const ENODEV = 19 +pkg syscall (darwin-arm64), const ENOEXEC = 8 +pkg syscall (darwin-arm64), const ENOLCK = 77 +pkg syscall (darwin-arm64), const ENOLINK = 97 +pkg syscall (darwin-arm64), const ENOLINK Errno +pkg syscall (darwin-arm64), const ENOMEM = 12 +pkg syscall (darwin-arm64), const ENOMSG = 91 +pkg syscall (darwin-arm64), const ENOPOLICY = 103 +pkg syscall (darwin-arm64), const ENOPOLICY Errno +pkg syscall (darwin-arm64), const ENOPROTOOPT = 42 +pkg syscall (darwin-arm64), const ENOSPC = 28 +pkg syscall (darwin-arm64), const ENOSR = 98 +pkg syscall (darwin-arm64), const ENOSR Errno +pkg syscall (darwin-arm64), const ENOSTR = 99 +pkg syscall (darwin-arm64), const ENOSTR Errno +pkg syscall (darwin-arm64), const ENOSYS = 78 +pkg syscall (darwin-arm64), const ENOTBLK = 15 +pkg syscall (darwin-arm64), const ENOTCONN = 57 +pkg syscall (darwin-arm64), const ENOTDIR = 20 +pkg syscall (darwin-arm64), const ENOTEMPTY = 66 +pkg syscall (darwin-arm64), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-arm64), const ENOTRECOVERABLE Errno +pkg syscall (darwin-arm64), const ENOTSOCK = 38 +pkg syscall (darwin-arm64), const ENOTSUP = 45 +pkg syscall (darwin-arm64), const ENOTTY = 25 +pkg syscall (darwin-arm64), const ENXIO = 6 +pkg syscall (darwin-arm64), const EOPNOTSUPP = 102 +pkg syscall (darwin-arm64), const EOVERFLOW = 84 +pkg syscall (darwin-arm64), const EOWNERDEAD = 105 +pkg syscall (darwin-arm64), const EOWNERDEAD Errno +pkg syscall (darwin-arm64), const EPERM = 1 +pkg syscall (darwin-arm64), const EPFNOSUPPORT = 46 +pkg syscall (darwin-arm64), const EPIPE = 32 +pkg syscall (darwin-arm64), const EPROCLIM = 67 +pkg syscall (darwin-arm64), const EPROCLIM Errno +pkg syscall (darwin-arm64), const EPROCUNAVAIL = 76 +pkg syscall (darwin-arm64), const EPROCUNAVAIL Errno +pkg syscall (darwin-arm64), const EPROGMISMATCH = 75 +pkg syscall (darwin-arm64), const EPROGMISMATCH Errno +pkg syscall (darwin-arm64), const EPROGUNAVAIL = 74 +pkg syscall (darwin-arm64), const EPROGUNAVAIL Errno +pkg syscall (darwin-arm64), const EPROTO = 100 +pkg syscall (darwin-arm64), const EPROTO Errno +pkg syscall (darwin-arm64), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-arm64), const EPROTOTYPE = 41 +pkg syscall (darwin-arm64), const EPWROFF = 82 +pkg syscall (darwin-arm64), const EPWROFF Errno +pkg syscall (darwin-arm64), const EQFULL = 106 +pkg syscall (darwin-arm64), const EQFULL Errno +pkg syscall (darwin-arm64), const ERANGE = 34 +pkg syscall (darwin-arm64), const EREMOTE = 71 +pkg syscall (darwin-arm64), const EROFS = 30 +pkg syscall (darwin-arm64), const ERPCMISMATCH = 73 +pkg syscall (darwin-arm64), const ERPCMISMATCH Errno +pkg syscall (darwin-arm64), const ESHLIBVERS = 87 +pkg syscall (darwin-arm64), const ESHLIBVERS Errno +pkg syscall (darwin-arm64), const ESHUTDOWN = 58 +pkg syscall (darwin-arm64), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-arm64), const ESPIPE = 29 +pkg syscall (darwin-arm64), const ESRCH = 3 +pkg syscall (darwin-arm64), const ESTALE = 70 +pkg syscall (darwin-arm64), const ETIME = 101 +pkg syscall (darwin-arm64), const ETIME Errno +pkg syscall (darwin-arm64), const ETIMEDOUT = 60 +pkg syscall (darwin-arm64), const ETOOMANYREFS = 59 +pkg syscall (darwin-arm64), const ETXTBSY = 26 +pkg syscall (darwin-arm64), const EUSERS = 68 +pkg syscall (darwin-arm64), const EVFILT_AIO = -3 +pkg syscall (darwin-arm64), const EVFILT_AIO ideal-int +pkg syscall (darwin-arm64), const EVFILT_FS = -9 +pkg syscall (darwin-arm64), const EVFILT_FS ideal-int +pkg syscall (darwin-arm64), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-arm64), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-arm64), const EVFILT_PROC = -5 +pkg syscall (darwin-arm64), const EVFILT_PROC ideal-int +pkg syscall (darwin-arm64), const EVFILT_READ = -1 +pkg syscall (darwin-arm64), const EVFILT_READ ideal-int +pkg syscall (darwin-arm64), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-arm64), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-arm64), const EVFILT_SYSCOUNT = 14 +pkg syscall (darwin-arm64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-arm64), const EVFILT_THREADMARKER = 14 +pkg syscall (darwin-arm64), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-arm64), const EVFILT_TIMER = -7 +pkg syscall (darwin-arm64), const EVFILT_TIMER ideal-int +pkg syscall (darwin-arm64), const EVFILT_USER = -10 +pkg syscall (darwin-arm64), const EVFILT_USER ideal-int +pkg syscall (darwin-arm64), const EVFILT_VM = -12 +pkg syscall (darwin-arm64), const EVFILT_VM ideal-int +pkg syscall (darwin-arm64), const EVFILT_VNODE = -4 +pkg syscall (darwin-arm64), const EVFILT_VNODE ideal-int +pkg syscall (darwin-arm64), const EVFILT_WRITE = -2 +pkg syscall (darwin-arm64), const EVFILT_WRITE ideal-int +pkg syscall (darwin-arm64), const EV_ADD = 1 +pkg syscall (darwin-arm64), const EV_ADD ideal-int +pkg syscall (darwin-arm64), const EV_CLEAR = 32 +pkg syscall (darwin-arm64), const EV_CLEAR ideal-int +pkg syscall (darwin-arm64), const EV_DELETE = 2 +pkg syscall (darwin-arm64), const EV_DELETE ideal-int +pkg syscall (darwin-arm64), const EV_DISABLE = 8 +pkg syscall (darwin-arm64), const EV_DISABLE ideal-int +pkg syscall (darwin-arm64), const EV_DISPATCH = 128 +pkg syscall (darwin-arm64), const EV_DISPATCH ideal-int +pkg syscall (darwin-arm64), const EV_ENABLE = 4 +pkg syscall (darwin-arm64), const EV_ENABLE ideal-int +pkg syscall (darwin-arm64), const EV_EOF = 32768 +pkg syscall (darwin-arm64), const EV_EOF ideal-int +pkg syscall (darwin-arm64), const EV_ERROR = 16384 +pkg syscall (darwin-arm64), const EV_ERROR ideal-int +pkg syscall (darwin-arm64), const EV_FLAG0 = 4096 +pkg syscall (darwin-arm64), const EV_FLAG0 ideal-int +pkg syscall (darwin-arm64), const EV_FLAG1 = 8192 +pkg syscall (darwin-arm64), const EV_FLAG1 ideal-int +pkg syscall (darwin-arm64), const EV_ONESHOT = 16 +pkg syscall (darwin-arm64), const EV_ONESHOT ideal-int +pkg syscall (darwin-arm64), const EV_OOBAND = 8192 +pkg syscall (darwin-arm64), const EV_OOBAND ideal-int +pkg syscall (darwin-arm64), const EV_POLL = 4096 +pkg syscall (darwin-arm64), const EV_POLL ideal-int +pkg syscall (darwin-arm64), const EV_RECEIPT = 64 +pkg syscall (darwin-arm64), const EV_RECEIPT ideal-int +pkg syscall (darwin-arm64), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-arm64), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-arm64), const EWOULDBLOCK = 35 +pkg syscall (darwin-arm64), const EXDEV = 18 +pkg syscall (darwin-arm64), const EXTA = 19200 +pkg syscall (darwin-arm64), const EXTA ideal-int +pkg syscall (darwin-arm64), const EXTB = 38400 +pkg syscall (darwin-arm64), const EXTB ideal-int +pkg syscall (darwin-arm64), const EXTPROC = 2048 +pkg syscall (darwin-arm64), const EXTPROC ideal-int +pkg syscall (darwin-arm64), const FD_CLOEXEC = 1 +pkg syscall (darwin-arm64), const FD_CLOEXEC ideal-int +pkg syscall (darwin-arm64), const FD_SETSIZE = 1024 +pkg syscall (darwin-arm64), const FD_SETSIZE ideal-int +pkg syscall (darwin-arm64), const FLUSHO = 8388608 +pkg syscall (darwin-arm64), const FLUSHO ideal-int +pkg syscall (darwin-arm64), const F_ADDFILESIGS = 61 +pkg syscall (darwin-arm64), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-arm64), const F_ADDSIGS = 59 +pkg syscall (darwin-arm64), const F_ADDSIGS ideal-int +pkg syscall (darwin-arm64), const F_ALLOCATEALL = 4 +pkg syscall (darwin-arm64), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-arm64), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-arm64), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-arm64), const F_CHKCLEAN = 41 +pkg syscall (darwin-arm64), const F_CHKCLEAN ideal-int +pkg syscall (darwin-arm64), const F_DUPFD = 0 +pkg syscall (darwin-arm64), const F_DUPFD ideal-int +pkg syscall (darwin-arm64), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-arm64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-arm64), const F_FINDSIGS = 78 +pkg syscall (darwin-arm64), const F_FINDSIGS ideal-int +pkg syscall (darwin-arm64), const F_FLUSH_DATA = 40 +pkg syscall (darwin-arm64), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-arm64), const F_FREEZE_FS = 53 +pkg syscall (darwin-arm64), const F_FREEZE_FS ideal-int +pkg syscall (darwin-arm64), const F_FULLFSYNC = 51 +pkg syscall (darwin-arm64), const F_FULLFSYNC ideal-int +pkg syscall (darwin-arm64), const F_GETCODEDIR = 72 +pkg syscall (darwin-arm64), const F_GETCODEDIR ideal-int +pkg syscall (darwin-arm64), const F_GETFD = 1 +pkg syscall (darwin-arm64), const F_GETFD ideal-int +pkg syscall (darwin-arm64), const F_GETFL = 3 +pkg syscall (darwin-arm64), const F_GETFL ideal-int +pkg syscall (darwin-arm64), const F_GETLK = 7 +pkg syscall (darwin-arm64), const F_GETLK ideal-int +pkg syscall (darwin-arm64), const F_GETLKPID = 66 +pkg syscall (darwin-arm64), const F_GETLKPID ideal-int +pkg syscall (darwin-arm64), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-arm64), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-arm64), const F_GETOWN = 5 +pkg syscall (darwin-arm64), const F_GETOWN ideal-int +pkg syscall (darwin-arm64), const F_GETPATH = 50 +pkg syscall (darwin-arm64), const F_GETPATH ideal-int +pkg syscall (darwin-arm64), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-arm64), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-arm64), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-arm64), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-arm64), const F_GETPROTECTIONLEVEL = 77 +pkg syscall (darwin-arm64), const F_GETPROTECTIONLEVEL ideal-int +pkg syscall (darwin-arm64), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-arm64), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-arm64), const F_LOG2PHYS = 49 +pkg syscall (darwin-arm64), const F_LOG2PHYS ideal-int +pkg syscall (darwin-arm64), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-arm64), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-arm64), const F_NOCACHE = 48 +pkg syscall (darwin-arm64), const F_NOCACHE ideal-int +pkg syscall (darwin-arm64), const F_NODIRECT = 62 +pkg syscall (darwin-arm64), const F_NODIRECT ideal-int +pkg syscall (darwin-arm64), const F_OK = 0 +pkg syscall (darwin-arm64), const F_OK ideal-int +pkg syscall (darwin-arm64), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-arm64), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-arm64), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-arm64), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-arm64), const F_PREALLOCATE = 42 +pkg syscall (darwin-arm64), const F_PREALLOCATE ideal-int +pkg syscall (darwin-arm64), const F_RDADVISE = 44 +pkg syscall (darwin-arm64), const F_RDADVISE ideal-int +pkg syscall (darwin-arm64), const F_RDAHEAD = 45 +pkg syscall (darwin-arm64), const F_RDAHEAD ideal-int +pkg syscall (darwin-arm64), const F_RDLCK = 1 +pkg syscall (darwin-arm64), const F_RDLCK ideal-int +pkg syscall (darwin-arm64), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-arm64), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-arm64), const F_SETFD = 2 +pkg syscall (darwin-arm64), const F_SETFD ideal-int +pkg syscall (darwin-arm64), const F_SETFL = 4 +pkg syscall (darwin-arm64), const F_SETFL ideal-int +pkg syscall (darwin-arm64), const F_SETLK = 8 +pkg syscall (darwin-arm64), const F_SETLK ideal-int +pkg syscall (darwin-arm64), const F_SETLKW = 9 +pkg syscall (darwin-arm64), const F_SETLKW ideal-int +pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT = 10 +pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT ideal-int +pkg syscall (darwin-arm64), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-arm64), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-arm64), const F_SETOWN = 6 +pkg syscall (darwin-arm64), const F_SETOWN ideal-int +pkg syscall (darwin-arm64), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-arm64), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-arm64), const F_SETSIZE = 43 +pkg syscall (darwin-arm64), const F_SETSIZE ideal-int +pkg syscall (darwin-arm64), const F_SINGLE_WRITER = 76 +pkg syscall (darwin-arm64), const F_SINGLE_WRITER ideal-int +pkg syscall (darwin-arm64), const F_THAW_FS = 54 +pkg syscall (darwin-arm64), const F_THAW_FS ideal-int +pkg syscall (darwin-arm64), const F_TRANSCODEKEY = 75 +pkg syscall (darwin-arm64), const F_TRANSCODEKEY ideal-int +pkg syscall (darwin-arm64), const F_UNLCK = 2 +pkg syscall (darwin-arm64), const F_UNLCK ideal-int +pkg syscall (darwin-arm64), const F_VOLPOSMODE = 4 +pkg syscall (darwin-arm64), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-arm64), const F_WRLCK = 3 +pkg syscall (darwin-arm64), const F_WRLCK ideal-int +pkg syscall (darwin-arm64), const HUPCL = 16384 +pkg syscall (darwin-arm64), const HUPCL ideal-int +pkg syscall (darwin-arm64), const ICANON = 256 +pkg syscall (darwin-arm64), const ICANON ideal-int +pkg syscall (darwin-arm64), const ICMP6_FILTER = 18 +pkg syscall (darwin-arm64), const ICMP6_FILTER ideal-int +pkg syscall (darwin-arm64), const ICRNL = 256 +pkg syscall (darwin-arm64), const ICRNL ideal-int +pkg syscall (darwin-arm64), const IEXTEN = 1024 +pkg syscall (darwin-arm64), const IEXTEN ideal-int +pkg syscall (darwin-arm64), const IFF_ALLMULTI = 512 +pkg syscall (darwin-arm64), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-arm64), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-arm64), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-arm64), const IFF_DEBUG = 4 +pkg syscall (darwin-arm64), const IFF_DEBUG ideal-int +pkg syscall (darwin-arm64), const IFF_LINK0 = 4096 +pkg syscall (darwin-arm64), const IFF_LINK0 ideal-int +pkg syscall (darwin-arm64), const IFF_LINK1 = 8192 +pkg syscall (darwin-arm64), const IFF_LINK1 ideal-int +pkg syscall (darwin-arm64), const IFF_LINK2 = 16384 +pkg syscall (darwin-arm64), const IFF_LINK2 ideal-int +pkg syscall (darwin-arm64), const IFF_LOOPBACK = 8 +pkg syscall (darwin-arm64), const IFF_MULTICAST = 32768 +pkg syscall (darwin-arm64), const IFF_NOARP = 128 +pkg syscall (darwin-arm64), const IFF_NOARP ideal-int +pkg syscall (darwin-arm64), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-arm64), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-arm64), const IFF_OACTIVE = 1024 +pkg syscall (darwin-arm64), const IFF_OACTIVE ideal-int +pkg syscall (darwin-arm64), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-arm64), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-arm64), const IFF_PROMISC = 256 +pkg syscall (darwin-arm64), const IFF_PROMISC ideal-int +pkg syscall (darwin-arm64), const IFF_RUNNING = 64 +pkg syscall (darwin-arm64), const IFF_RUNNING ideal-int +pkg syscall (darwin-arm64), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-arm64), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-arm64), const IFNAMSIZ = 16 +pkg syscall (darwin-arm64), const IFNAMSIZ ideal-int +pkg syscall (darwin-arm64), const IFT_1822 = 2 +pkg syscall (darwin-arm64), const IFT_1822 ideal-int +pkg syscall (darwin-arm64), const IFT_AAL5 = 49 +pkg syscall (darwin-arm64), const IFT_AAL5 ideal-int +pkg syscall (darwin-arm64), const IFT_ARCNET = 35 +pkg syscall (darwin-arm64), const IFT_ARCNET ideal-int +pkg syscall (darwin-arm64), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-arm64), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-arm64), const IFT_ATM = 37 +pkg syscall (darwin-arm64), const IFT_ATM ideal-int +pkg syscall (darwin-arm64), const IFT_BRIDGE = 209 +pkg syscall (darwin-arm64), const IFT_BRIDGE ideal-int +pkg syscall (darwin-arm64), const IFT_CARP = 248 +pkg syscall (darwin-arm64), const IFT_CARP ideal-int +pkg syscall (darwin-arm64), const IFT_CELLULAR = 255 +pkg syscall (darwin-arm64), const IFT_CELLULAR ideal-int +pkg syscall (darwin-arm64), const IFT_CEPT = 19 +pkg syscall (darwin-arm64), const IFT_CEPT ideal-int +pkg syscall (darwin-arm64), const IFT_DS3 = 30 +pkg syscall (darwin-arm64), const IFT_DS3 ideal-int +pkg syscall (darwin-arm64), const IFT_ENC = 244 +pkg syscall (darwin-arm64), const IFT_ENC ideal-int +pkg syscall (darwin-arm64), const IFT_EON = 25 +pkg syscall (darwin-arm64), const IFT_EON ideal-int +pkg syscall (darwin-arm64), const IFT_ETHER = 6 +pkg syscall (darwin-arm64), const IFT_ETHER ideal-int +pkg syscall (darwin-arm64), const IFT_FAITH = 56 +pkg syscall (darwin-arm64), const IFT_FAITH ideal-int +pkg syscall (darwin-arm64), const IFT_FDDI = 15 +pkg syscall (darwin-arm64), const IFT_FDDI ideal-int +pkg syscall (darwin-arm64), const IFT_FRELAY = 32 +pkg syscall (darwin-arm64), const IFT_FRELAY ideal-int +pkg syscall (darwin-arm64), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-arm64), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-arm64), const IFT_GIF = 55 +pkg syscall (darwin-arm64), const IFT_GIF ideal-int +pkg syscall (darwin-arm64), const IFT_HDH1822 = 3 +pkg syscall (darwin-arm64), const IFT_HDH1822 ideal-int +pkg syscall (darwin-arm64), const IFT_HIPPI = 47 +pkg syscall (darwin-arm64), const IFT_HIPPI ideal-int +pkg syscall (darwin-arm64), const IFT_HSSI = 46 +pkg syscall (darwin-arm64), const IFT_HSSI ideal-int +pkg syscall (darwin-arm64), const IFT_HY = 14 +pkg syscall (darwin-arm64), const IFT_HY ideal-int +pkg syscall (darwin-arm64), const IFT_IEEE1394 = 144 +pkg syscall (darwin-arm64), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-arm64), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-arm64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-arm64), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-arm64), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-arm64), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-arm64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-arm64), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-arm64), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-arm64), const IFT_ISO88023 = 7 +pkg syscall (darwin-arm64), const IFT_ISO88023 ideal-int +pkg syscall (darwin-arm64), const IFT_ISO88024 = 8 +pkg syscall (darwin-arm64), const IFT_ISO88024 ideal-int +pkg syscall (darwin-arm64), const IFT_ISO88025 = 9 +pkg syscall (darwin-arm64), const IFT_ISO88025 ideal-int +pkg syscall (darwin-arm64), const IFT_ISO88026 = 10 +pkg syscall (darwin-arm64), const IFT_ISO88026 ideal-int +pkg syscall (darwin-arm64), const IFT_L2VLAN = 135 +pkg syscall (darwin-arm64), const IFT_L2VLAN ideal-int +pkg syscall (darwin-arm64), const IFT_LAPB = 16 +pkg syscall (darwin-arm64), const IFT_LAPB ideal-int +pkg syscall (darwin-arm64), const IFT_LOCALTALK = 42 +pkg syscall (darwin-arm64), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-arm64), const IFT_LOOP = 24 +pkg syscall (darwin-arm64), const IFT_LOOP ideal-int +pkg syscall (darwin-arm64), const IFT_MIOX25 = 38 +pkg syscall (darwin-arm64), const IFT_MIOX25 ideal-int +pkg syscall (darwin-arm64), const IFT_MODEM = 48 +pkg syscall (darwin-arm64), const IFT_MODEM ideal-int +pkg syscall (darwin-arm64), const IFT_NSIP = 27 +pkg syscall (darwin-arm64), const IFT_NSIP ideal-int +pkg syscall (darwin-arm64), const IFT_OTHER = 1 +pkg syscall (darwin-arm64), const IFT_OTHER ideal-int +pkg syscall (darwin-arm64), const IFT_P10 = 12 +pkg syscall (darwin-arm64), const IFT_P10 ideal-int +pkg syscall (darwin-arm64), const IFT_P80 = 13 +pkg syscall (darwin-arm64), const IFT_P80 ideal-int +pkg syscall (darwin-arm64), const IFT_PARA = 34 +pkg syscall (darwin-arm64), const IFT_PARA ideal-int +pkg syscall (darwin-arm64), const IFT_PDP = 255 +pkg syscall (darwin-arm64), const IFT_PDP ideal-int +pkg syscall (darwin-arm64), const IFT_PFLOG = 245 +pkg syscall (darwin-arm64), const IFT_PFLOG ideal-int +pkg syscall (darwin-arm64), const IFT_PFSYNC = 246 +pkg syscall (darwin-arm64), const IFT_PFSYNC ideal-int +pkg syscall (darwin-arm64), const IFT_PPP = 23 +pkg syscall (darwin-arm64), const IFT_PPP ideal-int +pkg syscall (darwin-arm64), const IFT_PROPMUX = 54 +pkg syscall (darwin-arm64), const IFT_PROPMUX ideal-int +pkg syscall (darwin-arm64), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-arm64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-arm64), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-arm64), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-arm64), const IFT_RS232 = 33 +pkg syscall (darwin-arm64), const IFT_RS232 ideal-int +pkg syscall (darwin-arm64), const IFT_SDLC = 17 +pkg syscall (darwin-arm64), const IFT_SDLC ideal-int +pkg syscall (darwin-arm64), const IFT_SIP = 31 +pkg syscall (darwin-arm64), const IFT_SIP ideal-int +pkg syscall (darwin-arm64), const IFT_SLIP = 28 +pkg syscall (darwin-arm64), const IFT_SLIP ideal-int +pkg syscall (darwin-arm64), const IFT_SMDSDXI = 43 +pkg syscall (darwin-arm64), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-arm64), const IFT_SMDSICIP = 52 +pkg syscall (darwin-arm64), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-arm64), const IFT_SONET = 39 +pkg syscall (darwin-arm64), const IFT_SONET ideal-int +pkg syscall (darwin-arm64), const IFT_SONETPATH = 50 +pkg syscall (darwin-arm64), const IFT_SONETPATH ideal-int +pkg syscall (darwin-arm64), const IFT_SONETVT = 51 +pkg syscall (darwin-arm64), const IFT_SONETVT ideal-int +pkg syscall (darwin-arm64), const IFT_STARLAN = 11 +pkg syscall (darwin-arm64), const IFT_STARLAN ideal-int +pkg syscall (darwin-arm64), const IFT_STF = 57 +pkg syscall (darwin-arm64), const IFT_STF ideal-int +pkg syscall (darwin-arm64), const IFT_T1 = 18 +pkg syscall (darwin-arm64), const IFT_T1 ideal-int +pkg syscall (darwin-arm64), const IFT_ULTRA = 29 +pkg syscall (darwin-arm64), const IFT_ULTRA ideal-int +pkg syscall (darwin-arm64), const IFT_V35 = 45 +pkg syscall (darwin-arm64), const IFT_V35 ideal-int +pkg syscall (darwin-arm64), const IFT_X25 = 5 +pkg syscall (darwin-arm64), const IFT_X25 ideal-int +pkg syscall (darwin-arm64), const IFT_X25DDN = 4 +pkg syscall (darwin-arm64), const IFT_X25DDN ideal-int +pkg syscall (darwin-arm64), const IFT_X25PLE = 40 +pkg syscall (darwin-arm64), const IFT_X25PLE ideal-int +pkg syscall (darwin-arm64), const IFT_XETHER = 26 +pkg syscall (darwin-arm64), const IFT_XETHER ideal-int +pkg syscall (darwin-arm64), const IGNBRK = 1 +pkg syscall (darwin-arm64), const IGNBRK ideal-int +pkg syscall (darwin-arm64), const IGNCR = 128 +pkg syscall (darwin-arm64), const IGNCR ideal-int +pkg syscall (darwin-arm64), const IGNPAR = 4 +pkg syscall (darwin-arm64), const IGNPAR ideal-int +pkg syscall (darwin-arm64), const IMAXBEL = 8192 +pkg syscall (darwin-arm64), const IMAXBEL ideal-int +pkg syscall (darwin-arm64), const INLCR = 64 +pkg syscall (darwin-arm64), const INLCR ideal-int +pkg syscall (darwin-arm64), const INPCK = 16 +pkg syscall (darwin-arm64), const INPCK ideal-int +pkg syscall (darwin-arm64), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-arm64), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-arm64), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-arm64), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-arm64), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-arm64), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-arm64), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-arm64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-arm64), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-arm64), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-arm64), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-arm64), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-arm64), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-arm64), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-arm64), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-arm64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-arm64), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-arm64), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-arm64), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-arm64), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-arm64), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-arm64), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-arm64), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-arm64), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-arm64), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-arm64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-arm64), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-arm64), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-arm64), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-arm64), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-arm64), const IPPROTO_3PC = 34 +pkg syscall (darwin-arm64), const IPPROTO_3PC ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ADFS = 68 +pkg syscall (darwin-arm64), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_AH = 51 +pkg syscall (darwin-arm64), const IPPROTO_AH ideal-int +pkg syscall (darwin-arm64), const IPPROTO_AHIP = 61 +pkg syscall (darwin-arm64), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_APES = 99 +pkg syscall (darwin-arm64), const IPPROTO_APES ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-arm64), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_AX25 = 93 +pkg syscall (darwin-arm64), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_BHA = 49 +pkg syscall (darwin-arm64), const IPPROTO_BHA ideal-int +pkg syscall (darwin-arm64), const IPPROTO_BLT = 30 +pkg syscall (darwin-arm64), const IPPROTO_BLT ideal-int +pkg syscall (darwin-arm64), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-arm64), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_CFTP = 62 +pkg syscall (darwin-arm64), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-arm64), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_CMTP = 38 +pkg syscall (darwin-arm64), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_CPHB = 73 +pkg syscall (darwin-arm64), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-arm64), const IPPROTO_CPNX = 72 +pkg syscall (darwin-arm64), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-arm64), const IPPROTO_DDP = 37 +pkg syscall (darwin-arm64), const IPPROTO_DDP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_DGP = 86 +pkg syscall (darwin-arm64), const IPPROTO_DGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-arm64), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-arm64), const IPPROTO_DONE = 257 +pkg syscall (darwin-arm64), const IPPROTO_DONE ideal-int +pkg syscall (darwin-arm64), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-arm64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_EGP = 8 +pkg syscall (darwin-arm64), const IPPROTO_EGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_EMCON = 14 +pkg syscall (darwin-arm64), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-arm64), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_EON = 80 +pkg syscall (darwin-arm64), const IPPROTO_EON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ESP = 50 +pkg syscall (darwin-arm64), const IPPROTO_ESP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-arm64), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-arm64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-arm64), const IPPROTO_GGP = 3 +pkg syscall (darwin-arm64), const IPPROTO_GGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_GMTP = 100 +pkg syscall (darwin-arm64), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_GRE = 47 +pkg syscall (darwin-arm64), const IPPROTO_GRE ideal-int +pkg syscall (darwin-arm64), const IPPROTO_HELLO = 63 +pkg syscall (darwin-arm64), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-arm64), const IPPROTO_HMP = 20 +pkg syscall (darwin-arm64), const IPPROTO_HMP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-arm64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ICMP = 1 +pkg syscall (darwin-arm64), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-arm64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IDP = 22 +pkg syscall (darwin-arm64), const IPPROTO_IDP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IDPR = 35 +pkg syscall (darwin-arm64), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IDRP = 45 +pkg syscall (darwin-arm64), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IGMP = 2 +pkg syscall (darwin-arm64), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IGP = 85 +pkg syscall (darwin-arm64), const IPPROTO_IGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IGRP = 88 +pkg syscall (darwin-arm64), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IL = 40 +pkg syscall (darwin-arm64), const IPPROTO_IL ideal-int +pkg syscall (darwin-arm64), const IPPROTO_INLSP = 52 +pkg syscall (darwin-arm64), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_INP = 32 +pkg syscall (darwin-arm64), const IPPROTO_INP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-arm64), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPCV = 71 +pkg syscall (darwin-arm64), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-arm64), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPIP = 4 +pkg syscall (darwin-arm64), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPPC = 67 +pkg syscall (darwin-arm64), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-arm64), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_IRTP = 28 +pkg syscall (darwin-arm64), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-arm64), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-arm64), const IPPROTO_LARP = 91 +pkg syscall (darwin-arm64), const IPPROTO_LARP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-arm64), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-arm64), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MAX = 256 +pkg syscall (darwin-arm64), const IPPROTO_MAX ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MAXID = 52 +pkg syscall (darwin-arm64), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MEAS = 19 +pkg syscall (darwin-arm64), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MHRP = 48 +pkg syscall (darwin-arm64), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MICP = 95 +pkg syscall (darwin-arm64), const IPPROTO_MICP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MTP = 92 +pkg syscall (darwin-arm64), const IPPROTO_MTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_MUX = 18 +pkg syscall (darwin-arm64), const IPPROTO_MUX ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ND = 77 +pkg syscall (darwin-arm64), const IPPROTO_ND ideal-int +pkg syscall (darwin-arm64), const IPPROTO_NHRP = 54 +pkg syscall (darwin-arm64), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_NONE = 59 +pkg syscall (darwin-arm64), const IPPROTO_NONE ideal-int +pkg syscall (darwin-arm64), const IPPROTO_NSP = 31 +pkg syscall (darwin-arm64), const IPPROTO_NSP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_NVPII = 11 +pkg syscall (darwin-arm64), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-arm64), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-arm64), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PGM = 113 +pkg syscall (darwin-arm64), const IPPROTO_PGM ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PIGP = 9 +pkg syscall (darwin-arm64), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PIM = 103 +pkg syscall (darwin-arm64), const IPPROTO_PIM ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PRM = 21 +pkg syscall (darwin-arm64), const IPPROTO_PRM ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PUP = 12 +pkg syscall (darwin-arm64), const IPPROTO_PUP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_PVP = 75 +pkg syscall (darwin-arm64), const IPPROTO_PVP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_RAW = 255 +pkg syscall (darwin-arm64), const IPPROTO_RAW ideal-int +pkg syscall (darwin-arm64), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-arm64), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_RDP = 27 +pkg syscall (darwin-arm64), const IPPROTO_RDP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-arm64), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-arm64), const IPPROTO_RSVP = 46 +pkg syscall (darwin-arm64), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_RVD = 66 +pkg syscall (darwin-arm64), const IPPROTO_RVD ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-arm64), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SATMON = 69 +pkg syscall (darwin-arm64), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-arm64), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SCTP = 132 +pkg syscall (darwin-arm64), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SDRP = 42 +pkg syscall (darwin-arm64), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SEP = 33 +pkg syscall (darwin-arm64), const IPPROTO_SEP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SRPC = 90 +pkg syscall (darwin-arm64), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-arm64), const IPPROTO_ST = 7 +pkg syscall (darwin-arm64), const IPPROTO_ST ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-arm64), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-arm64), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TCF = 87 +pkg syscall (darwin-arm64), const IPPROTO_TCF ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TP = 29 +pkg syscall (darwin-arm64), const IPPROTO_TP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TPXX = 39 +pkg syscall (darwin-arm64), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-arm64), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-arm64), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-arm64), const IPPROTO_TTP = 84 +pkg syscall (darwin-arm64), const IPPROTO_TTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_VINES = 83 +pkg syscall (darwin-arm64), const IPPROTO_VINES ideal-int +pkg syscall (darwin-arm64), const IPPROTO_VISA = 70 +pkg syscall (darwin-arm64), const IPPROTO_VISA ideal-int +pkg syscall (darwin-arm64), const IPPROTO_VMTP = 81 +pkg syscall (darwin-arm64), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-arm64), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-arm64), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-arm64), const IPPROTO_WBMON = 78 +pkg syscall (darwin-arm64), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-arm64), const IPPROTO_WSN = 74 +pkg syscall (darwin-arm64), const IPPROTO_WSN ideal-int +pkg syscall (darwin-arm64), const IPPROTO_XNET = 15 +pkg syscall (darwin-arm64), const IPPROTO_XNET ideal-int +pkg syscall (darwin-arm64), const IPPROTO_XTP = 36 +pkg syscall (darwin-arm64), const IPPROTO_XTP ideal-int +pkg syscall (darwin-arm64), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-arm64), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-arm64), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-arm64), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-arm64), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-arm64), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-arm64), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-arm64), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-arm64), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-arm64), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-arm64), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-arm64), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-arm64), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-arm64), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-arm64), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-arm64), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-arm64), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-arm64), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-arm64), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-arm64), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-arm64), const IPV6_FAITH = 29 +pkg syscall (darwin-arm64), const IPV6_FAITH ideal-int +pkg syscall (darwin-arm64), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-arm64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-arm64), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-arm64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-arm64), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-arm64), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-arm64), const IPV6_FW_ADD = 30 +pkg syscall (darwin-arm64), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-arm64), const IPV6_FW_DEL = 31 +pkg syscall (darwin-arm64), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-arm64), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-arm64), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-arm64), const IPV6_FW_GET = 34 +pkg syscall (darwin-arm64), const IPV6_FW_GET ideal-int +pkg syscall (darwin-arm64), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-arm64), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-arm64), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-arm64), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-arm64), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-arm64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-arm64), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-arm64), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-arm64), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-arm64), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-arm64), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-arm64), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-arm64), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-arm64), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-arm64), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-arm64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-arm64), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-arm64), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64), const IPV6_MMTU = 1280 +pkg syscall (darwin-arm64), const IPV6_MMTU ideal-int +pkg syscall (darwin-arm64), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-arm64), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-arm64), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-arm64), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-arm64), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-arm64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-arm64), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-arm64), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-arm64), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-arm64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-arm64), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-arm64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-arm64), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-arm64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-arm64), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-arm64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-arm64), const IPV6_TCLASS = 36 +pkg syscall (darwin-arm64), const IPV6_TCLASS ideal-int +pkg syscall (darwin-arm64), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-arm64), const IPV6_V6ONLY = 27 +pkg syscall (darwin-arm64), const IPV6_VERSION = 96 +pkg syscall (darwin-arm64), const IPV6_VERSION ideal-int +pkg syscall (darwin-arm64), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-arm64), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-arm64), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-arm64), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-arm64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-arm64), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-arm64), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-arm64), const IP_BOUND_IF = 25 +pkg syscall (darwin-arm64), const IP_BOUND_IF ideal-int +pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-arm64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-arm64), const IP_DF = 16384 +pkg syscall (darwin-arm64), const IP_DF ideal-int +pkg syscall (darwin-arm64), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-arm64), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-arm64), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-arm64), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-arm64), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-arm64), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-arm64), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-arm64), const IP_FAITH = 22 +pkg syscall (darwin-arm64), const IP_FAITH ideal-int +pkg syscall (darwin-arm64), const IP_FW_ADD = 40 +pkg syscall (darwin-arm64), const IP_FW_ADD ideal-int +pkg syscall (darwin-arm64), const IP_FW_DEL = 41 +pkg syscall (darwin-arm64), const IP_FW_DEL ideal-int +pkg syscall (darwin-arm64), const IP_FW_FLUSH = 42 +pkg syscall (darwin-arm64), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-arm64), const IP_FW_GET = 44 +pkg syscall (darwin-arm64), const IP_FW_GET ideal-int +pkg syscall (darwin-arm64), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-arm64), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-arm64), const IP_FW_ZERO = 43 +pkg syscall (darwin-arm64), const IP_FW_ZERO ideal-int +pkg syscall (darwin-arm64), const IP_HDRINCL = 2 +pkg syscall (darwin-arm64), const IP_HDRINCL ideal-int +pkg syscall (darwin-arm64), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-arm64), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-arm64), const IP_MAXPACKET = 65535 +pkg syscall (darwin-arm64), const IP_MAXPACKET ideal-int +pkg syscall (darwin-arm64), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-arm64), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-arm64), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-arm64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-arm64), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-arm64), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-arm64), const IP_MF = 8192 +pkg syscall (darwin-arm64), const IP_MF ideal-int +pkg syscall (darwin-arm64), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-arm64), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64), const IP_MSFILTER = 74 +pkg syscall (darwin-arm64), const IP_MSFILTER ideal-int +pkg syscall (darwin-arm64), const IP_MSS = 576 +pkg syscall (darwin-arm64), const IP_MSS ideal-int +pkg syscall (darwin-arm64), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-arm64), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-arm64), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-arm64), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-arm64), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-arm64), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-arm64), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-arm64), const IP_NAT__XXX = 55 +pkg syscall (darwin-arm64), const IP_NAT__XXX ideal-int +pkg syscall (darwin-arm64), const IP_OFFMASK = 8191 +pkg syscall (darwin-arm64), const IP_OFFMASK ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-arm64), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-arm64), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-arm64), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-arm64), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-arm64), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-arm64), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-arm64), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-arm64), const IP_OPTIONS = 1 +pkg syscall (darwin-arm64), const IP_OPTIONS ideal-int +pkg syscall (darwin-arm64), const IP_PKTINFO = 26 +pkg syscall (darwin-arm64), const IP_PKTINFO ideal-int +pkg syscall (darwin-arm64), const IP_PORTRANGE = 19 +pkg syscall (darwin-arm64), const IP_PORTRANGE ideal-int +pkg syscall (darwin-arm64), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-arm64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-arm64), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-arm64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-arm64), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-arm64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-arm64), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-arm64), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-arm64), const IP_RECVIF = 20 +pkg syscall (darwin-arm64), const IP_RECVIF ideal-int +pkg syscall (darwin-arm64), const IP_RECVOPTS = 5 +pkg syscall (darwin-arm64), const IP_RECVOPTS ideal-int +pkg syscall (darwin-arm64), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-arm64), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-arm64), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-arm64), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-arm64), const IP_RECVTTL = 24 +pkg syscall (darwin-arm64), const IP_RECVTTL ideal-int +pkg syscall (darwin-arm64), const IP_RETOPTS = 8 +pkg syscall (darwin-arm64), const IP_RETOPTS ideal-int +pkg syscall (darwin-arm64), const IP_RF = 32768 +pkg syscall (darwin-arm64), const IP_RF ideal-int +pkg syscall (darwin-arm64), const IP_RSVP_OFF = 16 +pkg syscall (darwin-arm64), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-arm64), const IP_RSVP_ON = 15 +pkg syscall (darwin-arm64), const IP_RSVP_ON ideal-int +pkg syscall (darwin-arm64), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-arm64), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-arm64), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-arm64), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-arm64), const IP_STRIPHDR = 23 +pkg syscall (darwin-arm64), const IP_STRIPHDR ideal-int +pkg syscall (darwin-arm64), const IP_TOS = 3 +pkg syscall (darwin-arm64), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-arm64), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-arm64), const IP_TTL = 4 +pkg syscall (darwin-arm64), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-arm64), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-arm64), const ISIG = 128 +pkg syscall (darwin-arm64), const ISIG ideal-int +pkg syscall (darwin-arm64), const ISTRIP = 32 +pkg syscall (darwin-arm64), const ISTRIP ideal-int +pkg syscall (darwin-arm64), const IUTF8 = 16384 +pkg syscall (darwin-arm64), const IUTF8 ideal-int +pkg syscall (darwin-arm64), const IXANY = 2048 +pkg syscall (darwin-arm64), const IXANY ideal-int +pkg syscall (darwin-arm64), const IXOFF = 1024 +pkg syscall (darwin-arm64), const IXOFF ideal-int +pkg syscall (darwin-arm64), const IXON = 512 +pkg syscall (darwin-arm64), const IXON ideal-int +pkg syscall (darwin-arm64), const LOCK_EX = 2 +pkg syscall (darwin-arm64), const LOCK_EX ideal-int +pkg syscall (darwin-arm64), const LOCK_NB = 4 +pkg syscall (darwin-arm64), const LOCK_NB ideal-int +pkg syscall (darwin-arm64), const LOCK_SH = 1 +pkg syscall (darwin-arm64), const LOCK_SH ideal-int +pkg syscall (darwin-arm64), const LOCK_UN = 8 +pkg syscall (darwin-arm64), const LOCK_UN ideal-int +pkg syscall (darwin-arm64), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-arm64), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-arm64), const MADV_DONTNEED = 4 +pkg syscall (darwin-arm64), const MADV_DONTNEED ideal-int +pkg syscall (darwin-arm64), const MADV_FREE = 5 +pkg syscall (darwin-arm64), const MADV_FREE ideal-int +pkg syscall (darwin-arm64), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-arm64), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-arm64), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-arm64), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-arm64), const MADV_NORMAL = 0 +pkg syscall (darwin-arm64), const MADV_NORMAL ideal-int +pkg syscall (darwin-arm64), const MADV_RANDOM = 1 +pkg syscall (darwin-arm64), const MADV_RANDOM ideal-int +pkg syscall (darwin-arm64), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-arm64), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-arm64), const MADV_WILLNEED = 3 +pkg syscall (darwin-arm64), const MADV_WILLNEED ideal-int +pkg syscall (darwin-arm64), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-arm64), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-arm64), const MAP_ANON = 4096 +pkg syscall (darwin-arm64), const MAP_ANON ideal-int +pkg syscall (darwin-arm64), const MAP_COPY = 2 +pkg syscall (darwin-arm64), const MAP_COPY ideal-int +pkg syscall (darwin-arm64), const MAP_FILE = 0 +pkg syscall (darwin-arm64), const MAP_FILE ideal-int +pkg syscall (darwin-arm64), const MAP_FIXED = 16 +pkg syscall (darwin-arm64), const MAP_FIXED ideal-int +pkg syscall (darwin-arm64), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-arm64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-arm64), const MAP_JIT = 2048 +pkg syscall (darwin-arm64), const MAP_JIT ideal-int +pkg syscall (darwin-arm64), const MAP_NOCACHE = 1024 +pkg syscall (darwin-arm64), const MAP_NOCACHE ideal-int +pkg syscall (darwin-arm64), const MAP_NOEXTEND = 256 +pkg syscall (darwin-arm64), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-arm64), const MAP_NORESERVE = 64 +pkg syscall (darwin-arm64), const MAP_NORESERVE ideal-int +pkg syscall (darwin-arm64), const MAP_PRIVATE = 2 +pkg syscall (darwin-arm64), const MAP_PRIVATE ideal-int +pkg syscall (darwin-arm64), const MAP_RENAME = 32 +pkg syscall (darwin-arm64), const MAP_RENAME ideal-int +pkg syscall (darwin-arm64), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-arm64), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-arm64), const MAP_SHARED = 1 +pkg syscall (darwin-arm64), const MAP_SHARED ideal-int +pkg syscall (darwin-arm64), const MCL_CURRENT = 1 +pkg syscall (darwin-arm64), const MCL_CURRENT ideal-int +pkg syscall (darwin-arm64), const MCL_FUTURE = 2 +pkg syscall (darwin-arm64), const MCL_FUTURE ideal-int +pkg syscall (darwin-arm64), const MSG_CTRUNC = 32 +pkg syscall (darwin-arm64), const MSG_CTRUNC ideal-int +pkg syscall (darwin-arm64), const MSG_DONTROUTE = 4 +pkg syscall (darwin-arm64), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-arm64), const MSG_DONTWAIT = 128 +pkg syscall (darwin-arm64), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-arm64), const MSG_EOF = 256 +pkg syscall (darwin-arm64), const MSG_EOF ideal-int +pkg syscall (darwin-arm64), const MSG_EOR = 8 +pkg syscall (darwin-arm64), const MSG_EOR ideal-int +pkg syscall (darwin-arm64), const MSG_FLUSH = 1024 +pkg syscall (darwin-arm64), const MSG_FLUSH ideal-int +pkg syscall (darwin-arm64), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-arm64), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-arm64), const MSG_HOLD = 2048 +pkg syscall (darwin-arm64), const MSG_HOLD ideal-int +pkg syscall (darwin-arm64), const MSG_NEEDSA = 65536 +pkg syscall (darwin-arm64), const MSG_NEEDSA ideal-int +pkg syscall (darwin-arm64), const MSG_OOB = 1 +pkg syscall (darwin-arm64), const MSG_OOB ideal-int +pkg syscall (darwin-arm64), const MSG_PEEK = 2 +pkg syscall (darwin-arm64), const MSG_PEEK ideal-int +pkg syscall (darwin-arm64), const MSG_RCVMORE = 16384 +pkg syscall (darwin-arm64), const MSG_RCVMORE ideal-int +pkg syscall (darwin-arm64), const MSG_SEND = 4096 +pkg syscall (darwin-arm64), const MSG_SEND ideal-int +pkg syscall (darwin-arm64), const MSG_TRUNC = 16 +pkg syscall (darwin-arm64), const MSG_TRUNC ideal-int +pkg syscall (darwin-arm64), const MSG_WAITALL = 64 +pkg syscall (darwin-arm64), const MSG_WAITALL ideal-int +pkg syscall (darwin-arm64), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-arm64), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-arm64), const MS_ASYNC = 1 +pkg syscall (darwin-arm64), const MS_ASYNC ideal-int +pkg syscall (darwin-arm64), const MS_DEACTIVATE = 8 +pkg syscall (darwin-arm64), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-arm64), const MS_INVALIDATE = 2 +pkg syscall (darwin-arm64), const MS_INVALIDATE ideal-int +pkg syscall (darwin-arm64), const MS_KILLPAGES = 4 +pkg syscall (darwin-arm64), const MS_KILLPAGES ideal-int +pkg syscall (darwin-arm64), const MS_SYNC = 16 +pkg syscall (darwin-arm64), const MS_SYNC ideal-int +pkg syscall (darwin-arm64), const NAME_MAX = 255 +pkg syscall (darwin-arm64), const NAME_MAX ideal-int +pkg syscall (darwin-arm64), const NET_RT_DUMP = 1 +pkg syscall (darwin-arm64), const NET_RT_DUMP ideal-int +pkg syscall (darwin-arm64), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-arm64), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-arm64), const NET_RT_FLAGS = 2 +pkg syscall (darwin-arm64), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-arm64), const NET_RT_IFLIST = 3 +pkg syscall (darwin-arm64), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-arm64), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-arm64), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-arm64), const NET_RT_MAXID = 10 +pkg syscall (darwin-arm64), const NET_RT_MAXID ideal-int +pkg syscall (darwin-arm64), const NET_RT_STAT = 4 +pkg syscall (darwin-arm64), const NET_RT_STAT ideal-int +pkg syscall (darwin-arm64), const NET_RT_TRASH = 5 +pkg syscall (darwin-arm64), const NET_RT_TRASH ideal-int +pkg syscall (darwin-arm64), const NOFLSH = 2147483648 +pkg syscall (darwin-arm64), const NOFLSH ideal-int +pkg syscall (darwin-arm64), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-arm64), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-arm64), const NOTE_ATTRIB = 8 +pkg syscall (darwin-arm64), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-arm64), const NOTE_BACKGROUND = 64 +pkg syscall (darwin-arm64), const NOTE_BACKGROUND ideal-int +pkg syscall (darwin-arm64), const NOTE_CHILD = 4 +pkg syscall (darwin-arm64), const NOTE_CHILD ideal-int +pkg syscall (darwin-arm64), const NOTE_CRITICAL = 32 +pkg syscall (darwin-arm64), const NOTE_CRITICAL ideal-int +pkg syscall (darwin-arm64), const NOTE_DELETE = 1 +pkg syscall (darwin-arm64), const NOTE_DELETE ideal-int +pkg syscall (darwin-arm64), const NOTE_EXEC = 536870912 +pkg syscall (darwin-arm64), const NOTE_EXEC ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-arm64), const NOTE_EXIT ideal-int +pkg syscall (darwin-arm64), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-arm64), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_CSERROR = 262144 +pkg syscall (darwin-arm64), const NOTE_EXIT_CSERROR ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_DECRYPTFAIL = 65536 +pkg syscall (darwin-arm64), const NOTE_EXIT_DECRYPTFAIL ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL = 33554432 +pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK = 458752 +pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY = 131072 +pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY ideal-int +pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED = 524288 +pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED ideal-int +pkg syscall (darwin-arm64), const NOTE_EXTEND = 4 +pkg syscall (darwin-arm64), const NOTE_EXTEND ideal-int +pkg syscall (darwin-arm64), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-arm64), const NOTE_FFAND ideal-int +pkg syscall (darwin-arm64), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-arm64), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-arm64), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-arm64), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-arm64), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-arm64), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-arm64), const NOTE_FFNOP = 0 +pkg syscall (darwin-arm64), const NOTE_FFNOP ideal-int +pkg syscall (darwin-arm64), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-arm64), const NOTE_FFOR ideal-int +pkg syscall (darwin-arm64), const NOTE_FORK = 1073741824 +pkg syscall (darwin-arm64), const NOTE_FORK ideal-int +pkg syscall (darwin-arm64), const NOTE_LEEWAY = 16 +pkg syscall (darwin-arm64), const NOTE_LEEWAY ideal-int +pkg syscall (darwin-arm64), const NOTE_LINK = 16 +pkg syscall (darwin-arm64), const NOTE_LINK ideal-int +pkg syscall (darwin-arm64), const NOTE_LOWAT = 1 +pkg syscall (darwin-arm64), const NOTE_LOWAT ideal-int +pkg syscall (darwin-arm64), const NOTE_NONE = 128 +pkg syscall (darwin-arm64), const NOTE_NONE ideal-int +pkg syscall (darwin-arm64), const NOTE_NSECONDS = 4 +pkg syscall (darwin-arm64), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-arm64), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-arm64), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-arm64), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-arm64), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-arm64), const NOTE_REAP = 268435456 +pkg syscall (darwin-arm64), const NOTE_REAP ideal-int +pkg syscall (darwin-arm64), const NOTE_RENAME = 32 +pkg syscall (darwin-arm64), const NOTE_RENAME ideal-int +pkg syscall (darwin-arm64), const NOTE_REVOKE = 64 +pkg syscall (darwin-arm64), const NOTE_REVOKE ideal-int +pkg syscall (darwin-arm64), const NOTE_SECONDS = 1 +pkg syscall (darwin-arm64), const NOTE_SECONDS ideal-int +pkg syscall (darwin-arm64), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-arm64), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-arm64), const NOTE_TRACK = 1 +pkg syscall (darwin-arm64), const NOTE_TRACK ideal-int +pkg syscall (darwin-arm64), const NOTE_TRACKERR = 2 +pkg syscall (darwin-arm64), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-arm64), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-arm64), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-arm64), const NOTE_USECONDS = 2 +pkg syscall (darwin-arm64), const NOTE_USECONDS ideal-int +pkg syscall (darwin-arm64), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-arm64), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-arm64), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-arm64), const NOTE_WRITE = 2 +pkg syscall (darwin-arm64), const NOTE_WRITE ideal-int +pkg syscall (darwin-arm64), const OCRNL = 16 +pkg syscall (darwin-arm64), const OCRNL ideal-int +pkg syscall (darwin-arm64), const OFDEL = 131072 +pkg syscall (darwin-arm64), const OFDEL ideal-int +pkg syscall (darwin-arm64), const OFILL = 128 +pkg syscall (darwin-arm64), const OFILL ideal-int +pkg syscall (darwin-arm64), const ONLCR = 2 +pkg syscall (darwin-arm64), const ONLCR ideal-int +pkg syscall (darwin-arm64), const ONLRET = 64 +pkg syscall (darwin-arm64), const ONLRET ideal-int +pkg syscall (darwin-arm64), const ONOCR = 32 +pkg syscall (darwin-arm64), const ONOCR ideal-int +pkg syscall (darwin-arm64), const ONOEOT = 8 +pkg syscall (darwin-arm64), const ONOEOT ideal-int +pkg syscall (darwin-arm64), const OPOST = 1 +pkg syscall (darwin-arm64), const OPOST ideal-int +pkg syscall (darwin-arm64), const O_ACCMODE = 3 +pkg syscall (darwin-arm64), const O_ACCMODE ideal-int +pkg syscall (darwin-arm64), const O_ALERT = 536870912 +pkg syscall (darwin-arm64), const O_ALERT ideal-int +pkg syscall (darwin-arm64), const O_APPEND = 8 +pkg syscall (darwin-arm64), const O_ASYNC = 64 +pkg syscall (darwin-arm64), const O_CLOEXEC = 16777216 +pkg syscall (darwin-arm64), const O_CREAT = 512 +pkg syscall (darwin-arm64), const O_DIRECTORY = 1048576 +pkg syscall (darwin-arm64), const O_DIRECTORY ideal-int +pkg syscall (darwin-arm64), const O_DP_GETRAWENCRYPTED = 1 +pkg syscall (darwin-arm64), const O_DP_GETRAWENCRYPTED ideal-int +pkg syscall (darwin-arm64), const O_DSYNC = 4194304 +pkg syscall (darwin-arm64), const O_DSYNC ideal-int +pkg syscall (darwin-arm64), const O_EVTONLY = 32768 +pkg syscall (darwin-arm64), const O_EVTONLY ideal-int +pkg syscall (darwin-arm64), const O_EXCL = 2048 +pkg syscall (darwin-arm64), const O_EXLOCK = 32 +pkg syscall (darwin-arm64), const O_EXLOCK ideal-int +pkg syscall (darwin-arm64), const O_FSYNC = 128 +pkg syscall (darwin-arm64), const O_FSYNC ideal-int +pkg syscall (darwin-arm64), const O_NDELAY = 4 +pkg syscall (darwin-arm64), const O_NDELAY ideal-int +pkg syscall (darwin-arm64), const O_NOCTTY = 131072 +pkg syscall (darwin-arm64), const O_NOFOLLOW = 256 +pkg syscall (darwin-arm64), const O_NOFOLLOW ideal-int +pkg syscall (darwin-arm64), const O_NONBLOCK = 4 +pkg syscall (darwin-arm64), const O_POPUP = 2147483648 +pkg syscall (darwin-arm64), const O_POPUP ideal-int +pkg syscall (darwin-arm64), const O_SHLOCK = 16 +pkg syscall (darwin-arm64), const O_SHLOCK ideal-int +pkg syscall (darwin-arm64), const O_SYMLINK = 2097152 +pkg syscall (darwin-arm64), const O_SYMLINK ideal-int +pkg syscall (darwin-arm64), const O_SYNC = 128 +pkg syscall (darwin-arm64), const O_TRUNC = 1024 +pkg syscall (darwin-arm64), const PARENB = 4096 +pkg syscall (darwin-arm64), const PARENB ideal-int +pkg syscall (darwin-arm64), const PARMRK = 8 +pkg syscall (darwin-arm64), const PARMRK ideal-int +pkg syscall (darwin-arm64), const PARODD = 8192 +pkg syscall (darwin-arm64), const PARODD ideal-int +pkg syscall (darwin-arm64), const PENDIN = 536870912 +pkg syscall (darwin-arm64), const PENDIN ideal-int +pkg syscall (darwin-arm64), const PRIO_PGRP = 1 +pkg syscall (darwin-arm64), const PRIO_PGRP ideal-int +pkg syscall (darwin-arm64), const PRIO_PROCESS = 0 +pkg syscall (darwin-arm64), const PRIO_PROCESS ideal-int +pkg syscall (darwin-arm64), const PRIO_USER = 2 +pkg syscall (darwin-arm64), const PRIO_USER ideal-int +pkg syscall (darwin-arm64), const PROT_EXEC = 4 +pkg syscall (darwin-arm64), const PROT_EXEC ideal-int +pkg syscall (darwin-arm64), const PROT_NONE = 0 +pkg syscall (darwin-arm64), const PROT_NONE ideal-int +pkg syscall (darwin-arm64), const PROT_READ = 1 +pkg syscall (darwin-arm64), const PROT_READ ideal-int +pkg syscall (darwin-arm64), const PROT_WRITE = 2 +pkg syscall (darwin-arm64), const PROT_WRITE ideal-int +pkg syscall (darwin-arm64), const PTRACE_CONT = 7 +pkg syscall (darwin-arm64), const PTRACE_CONT ideal-int +pkg syscall (darwin-arm64), const PTRACE_KILL = 8 +pkg syscall (darwin-arm64), const PTRACE_KILL ideal-int +pkg syscall (darwin-arm64), const PTRACE_TRACEME = 0 +pkg syscall (darwin-arm64), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-arm64), const PT_ATTACH = 10 +pkg syscall (darwin-arm64), const PT_ATTACH ideal-int +pkg syscall (darwin-arm64), const PT_ATTACHEXC = 14 +pkg syscall (darwin-arm64), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-arm64), const PT_CONTINUE = 7 +pkg syscall (darwin-arm64), const PT_CONTINUE ideal-int +pkg syscall (darwin-arm64), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-arm64), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-arm64), const PT_DETACH = 11 +pkg syscall (darwin-arm64), const PT_DETACH ideal-int +pkg syscall (darwin-arm64), const PT_FIRSTMACH = 32 +pkg syscall (darwin-arm64), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-arm64), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-arm64), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-arm64), const PT_KILL = 8 +pkg syscall (darwin-arm64), const PT_KILL ideal-int +pkg syscall (darwin-arm64), const PT_READ_D = 2 +pkg syscall (darwin-arm64), const PT_READ_D ideal-int +pkg syscall (darwin-arm64), const PT_READ_I = 1 +pkg syscall (darwin-arm64), const PT_READ_I ideal-int +pkg syscall (darwin-arm64), const PT_READ_U = 3 +pkg syscall (darwin-arm64), const PT_READ_U ideal-int +pkg syscall (darwin-arm64), const PT_SIGEXC = 12 +pkg syscall (darwin-arm64), const PT_SIGEXC ideal-int +pkg syscall (darwin-arm64), const PT_STEP = 9 +pkg syscall (darwin-arm64), const PT_STEP ideal-int +pkg syscall (darwin-arm64), const PT_THUPDATE = 13 +pkg syscall (darwin-arm64), const PT_THUPDATE ideal-int +pkg syscall (darwin-arm64), const PT_TRACE_ME = 0 +pkg syscall (darwin-arm64), const PT_TRACE_ME ideal-int +pkg syscall (darwin-arm64), const PT_WRITE_D = 5 +pkg syscall (darwin-arm64), const PT_WRITE_D ideal-int +pkg syscall (darwin-arm64), const PT_WRITE_I = 4 +pkg syscall (darwin-arm64), const PT_WRITE_I ideal-int +pkg syscall (darwin-arm64), const PT_WRITE_U = 6 +pkg syscall (darwin-arm64), const PT_WRITE_U ideal-int +pkg syscall (darwin-arm64), const RLIMIT_AS = 5 +pkg syscall (darwin-arm64), const RLIMIT_AS ideal-int +pkg syscall (darwin-arm64), const RLIMIT_CORE = 4 +pkg syscall (darwin-arm64), const RLIMIT_CORE ideal-int +pkg syscall (darwin-arm64), const RLIMIT_CPU = 0 +pkg syscall (darwin-arm64), const RLIMIT_CPU ideal-int +pkg syscall (darwin-arm64), const RLIMIT_CPU_USAGE_MONITOR = 2 +pkg syscall (darwin-arm64), const RLIMIT_CPU_USAGE_MONITOR ideal-int +pkg syscall (darwin-arm64), const RLIMIT_DATA = 2 +pkg syscall (darwin-arm64), const RLIMIT_DATA ideal-int +pkg syscall (darwin-arm64), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-arm64), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-arm64), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-arm64), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-arm64), const RLIMIT_STACK = 3 +pkg syscall (darwin-arm64), const RLIMIT_STACK ideal-int +pkg syscall (darwin-arm64), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-arm64), const RLIM_INFINITY ideal-int +pkg syscall (darwin-arm64), const RTAX_AUTHOR = 6 +pkg syscall (darwin-arm64), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-arm64), const RTAX_BRD = 7 +pkg syscall (darwin-arm64), const RTAX_BRD ideal-int +pkg syscall (darwin-arm64), const RTAX_DST = 0 +pkg syscall (darwin-arm64), const RTAX_DST ideal-int +pkg syscall (darwin-arm64), const RTAX_GATEWAY = 1 +pkg syscall (darwin-arm64), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-arm64), const RTAX_GENMASK = 3 +pkg syscall (darwin-arm64), const RTAX_GENMASK ideal-int +pkg syscall (darwin-arm64), const RTAX_IFA = 5 +pkg syscall (darwin-arm64), const RTAX_IFA ideal-int +pkg syscall (darwin-arm64), const RTAX_IFP = 4 +pkg syscall (darwin-arm64), const RTAX_IFP ideal-int +pkg syscall (darwin-arm64), const RTAX_MAX = 8 +pkg syscall (darwin-arm64), const RTAX_MAX ideal-int +pkg syscall (darwin-arm64), const RTAX_NETMASK = 2 +pkg syscall (darwin-arm64), const RTAX_NETMASK ideal-int +pkg syscall (darwin-arm64), const RTA_AUTHOR = 64 +pkg syscall (darwin-arm64), const RTA_AUTHOR ideal-int +pkg syscall (darwin-arm64), const RTA_BRD = 128 +pkg syscall (darwin-arm64), const RTA_BRD ideal-int +pkg syscall (darwin-arm64), const RTA_DST = 1 +pkg syscall (darwin-arm64), const RTA_DST ideal-int +pkg syscall (darwin-arm64), const RTA_GATEWAY = 2 +pkg syscall (darwin-arm64), const RTA_GATEWAY ideal-int +pkg syscall (darwin-arm64), const RTA_GENMASK = 8 +pkg syscall (darwin-arm64), const RTA_GENMASK ideal-int +pkg syscall (darwin-arm64), const RTA_IFA = 32 +pkg syscall (darwin-arm64), const RTA_IFA ideal-int +pkg syscall (darwin-arm64), const RTA_IFP = 16 +pkg syscall (darwin-arm64), const RTA_IFP ideal-int +pkg syscall (darwin-arm64), const RTA_NETMASK = 4 +pkg syscall (darwin-arm64), const RTA_NETMASK ideal-int +pkg syscall (darwin-arm64), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-arm64), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-arm64), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-arm64), const RTF_BROADCAST ideal-int +pkg syscall (darwin-arm64), const RTF_CLONING = 256 +pkg syscall (darwin-arm64), const RTF_CLONING ideal-int +pkg syscall (darwin-arm64), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-arm64), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-arm64), const RTF_DELCLONE = 128 +pkg syscall (darwin-arm64), const RTF_DELCLONE ideal-int +pkg syscall (darwin-arm64), const RTF_DONE = 64 +pkg syscall (darwin-arm64), const RTF_DONE ideal-int +pkg syscall (darwin-arm64), const RTF_DYNAMIC = 16 +pkg syscall (darwin-arm64), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-arm64), const RTF_GATEWAY = 2 +pkg syscall (darwin-arm64), const RTF_GATEWAY ideal-int +pkg syscall (darwin-arm64), const RTF_HOST = 4 +pkg syscall (darwin-arm64), const RTF_HOST ideal-int +pkg syscall (darwin-arm64), const RTF_IFREF = 67108864 +pkg syscall (darwin-arm64), const RTF_IFREF ideal-int +pkg syscall (darwin-arm64), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-arm64), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-arm64), const RTF_LLINFO = 1024 +pkg syscall (darwin-arm64), const RTF_LLINFO ideal-int +pkg syscall (darwin-arm64), const RTF_LOCAL = 2097152 +pkg syscall (darwin-arm64), const RTF_LOCAL ideal-int +pkg syscall (darwin-arm64), const RTF_MODIFIED = 32 +pkg syscall (darwin-arm64), const RTF_MODIFIED ideal-int +pkg syscall (darwin-arm64), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-arm64), const RTF_MULTICAST ideal-int +pkg syscall (darwin-arm64), const RTF_PINNED = 1048576 +pkg syscall (darwin-arm64), const RTF_PINNED ideal-int +pkg syscall (darwin-arm64), const RTF_PRCLONING = 65536 +pkg syscall (darwin-arm64), const RTF_PRCLONING ideal-int +pkg syscall (darwin-arm64), const RTF_PROTO1 = 32768 +pkg syscall (darwin-arm64), const RTF_PROTO1 ideal-int +pkg syscall (darwin-arm64), const RTF_PROTO2 = 16384 +pkg syscall (darwin-arm64), const RTF_PROTO2 ideal-int +pkg syscall (darwin-arm64), const RTF_PROTO3 = 262144 +pkg syscall (darwin-arm64), const RTF_PROTO3 ideal-int +pkg syscall (darwin-arm64), const RTF_PROXY = 134217728 +pkg syscall (darwin-arm64), const RTF_PROXY ideal-int +pkg syscall (darwin-arm64), const RTF_REJECT = 8 +pkg syscall (darwin-arm64), const RTF_REJECT ideal-int +pkg syscall (darwin-arm64), const RTF_ROUTER = 268435456 +pkg syscall (darwin-arm64), const RTF_ROUTER ideal-int +pkg syscall (darwin-arm64), const RTF_STATIC = 2048 +pkg syscall (darwin-arm64), const RTF_STATIC ideal-int +pkg syscall (darwin-arm64), const RTF_UP = 1 +pkg syscall (darwin-arm64), const RTF_UP ideal-int +pkg syscall (darwin-arm64), const RTF_WASCLONED = 131072 +pkg syscall (darwin-arm64), const RTF_WASCLONED ideal-int +pkg syscall (darwin-arm64), const RTF_XRESOLVE = 512 +pkg syscall (darwin-arm64), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-arm64), const RTM_ADD = 1 +pkg syscall (darwin-arm64), const RTM_ADD ideal-int +pkg syscall (darwin-arm64), const RTM_CHANGE = 3 +pkg syscall (darwin-arm64), const RTM_CHANGE ideal-int +pkg syscall (darwin-arm64), const RTM_DELADDR = 13 +pkg syscall (darwin-arm64), const RTM_DELADDR ideal-int +pkg syscall (darwin-arm64), const RTM_DELETE = 2 +pkg syscall (darwin-arm64), const RTM_DELETE ideal-int +pkg syscall (darwin-arm64), const RTM_DELMADDR = 16 +pkg syscall (darwin-arm64), const RTM_DELMADDR ideal-int +pkg syscall (darwin-arm64), const RTM_GET = 4 +pkg syscall (darwin-arm64), const RTM_GET ideal-int +pkg syscall (darwin-arm64), const RTM_GET2 = 20 +pkg syscall (darwin-arm64), const RTM_GET2 ideal-int +pkg syscall (darwin-arm64), const RTM_IFINFO = 14 +pkg syscall (darwin-arm64), const RTM_IFINFO ideal-int +pkg syscall (darwin-arm64), const RTM_IFINFO2 = 18 +pkg syscall (darwin-arm64), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-arm64), const RTM_LOCK = 8 +pkg syscall (darwin-arm64), const RTM_LOCK ideal-int +pkg syscall (darwin-arm64), const RTM_LOSING = 5 +pkg syscall (darwin-arm64), const RTM_LOSING ideal-int +pkg syscall (darwin-arm64), const RTM_MISS = 7 +pkg syscall (darwin-arm64), const RTM_MISS ideal-int +pkg syscall (darwin-arm64), const RTM_NEWADDR = 12 +pkg syscall (darwin-arm64), const RTM_NEWADDR ideal-int +pkg syscall (darwin-arm64), const RTM_NEWMADDR = 15 +pkg syscall (darwin-arm64), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-arm64), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-arm64), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-arm64), const RTM_OLDADD = 9 +pkg syscall (darwin-arm64), const RTM_OLDADD ideal-int +pkg syscall (darwin-arm64), const RTM_OLDDEL = 10 +pkg syscall (darwin-arm64), const RTM_OLDDEL ideal-int +pkg syscall (darwin-arm64), const RTM_REDIRECT = 6 +pkg syscall (darwin-arm64), const RTM_REDIRECT ideal-int +pkg syscall (darwin-arm64), const RTM_RESOLVE = 11 +pkg syscall (darwin-arm64), const RTM_RESOLVE ideal-int +pkg syscall (darwin-arm64), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-arm64), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-arm64), const RTM_VERSION = 5 +pkg syscall (darwin-arm64), const RTM_VERSION ideal-int +pkg syscall (darwin-arm64), const RTV_EXPIRE = 4 +pkg syscall (darwin-arm64), const RTV_EXPIRE ideal-int +pkg syscall (darwin-arm64), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-arm64), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-arm64), const RTV_MTU = 1 +pkg syscall (darwin-arm64), const RTV_MTU ideal-int +pkg syscall (darwin-arm64), const RTV_RPIPE = 8 +pkg syscall (darwin-arm64), const RTV_RPIPE ideal-int +pkg syscall (darwin-arm64), const RTV_RTT = 64 +pkg syscall (darwin-arm64), const RTV_RTT ideal-int +pkg syscall (darwin-arm64), const RTV_RTTVAR = 128 +pkg syscall (darwin-arm64), const RTV_RTTVAR ideal-int +pkg syscall (darwin-arm64), const RTV_SPIPE = 16 +pkg syscall (darwin-arm64), const RTV_SPIPE ideal-int +pkg syscall (darwin-arm64), const RTV_SSTHRESH = 32 +pkg syscall (darwin-arm64), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-arm64), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-arm64), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-arm64), const RUSAGE_SELF = 0 +pkg syscall (darwin-arm64), const RUSAGE_SELF ideal-int +pkg syscall (darwin-arm64), const SCM_CREDS = 3 +pkg syscall (darwin-arm64), const SCM_CREDS ideal-int +pkg syscall (darwin-arm64), const SCM_RIGHTS = 1 +pkg syscall (darwin-arm64), const SCM_RIGHTS ideal-int +pkg syscall (darwin-arm64), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-arm64), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-arm64), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-arm64), const SIGBUS = 10 +pkg syscall (darwin-arm64), const SIGCHLD = 20 +pkg syscall (darwin-arm64), const SIGCHLD Signal +pkg syscall (darwin-arm64), const SIGCONT = 19 +pkg syscall (darwin-arm64), const SIGCONT Signal +pkg syscall (darwin-arm64), const SIGEMT = 7 +pkg syscall (darwin-arm64), const SIGEMT Signal +pkg syscall (darwin-arm64), const SIGINFO = 29 +pkg syscall (darwin-arm64), const SIGINFO Signal +pkg syscall (darwin-arm64), const SIGIO = 23 +pkg syscall (darwin-arm64), const SIGIO Signal +pkg syscall (darwin-arm64), const SIGIOT = 6 +pkg syscall (darwin-arm64), const SIGIOT Signal +pkg syscall (darwin-arm64), const SIGPROF = 27 +pkg syscall (darwin-arm64), const SIGPROF Signal +pkg syscall (darwin-arm64), const SIGSTOP = 17 +pkg syscall (darwin-arm64), const SIGSTOP Signal +pkg syscall (darwin-arm64), const SIGSYS = 12 +pkg syscall (darwin-arm64), const SIGSYS Signal +pkg syscall (darwin-arm64), const SIGTSTP = 18 +pkg syscall (darwin-arm64), const SIGTSTP Signal +pkg syscall (darwin-arm64), const SIGTTIN = 21 +pkg syscall (darwin-arm64), const SIGTTIN Signal +pkg syscall (darwin-arm64), const SIGTTOU = 22 +pkg syscall (darwin-arm64), const SIGTTOU Signal +pkg syscall (darwin-arm64), const SIGURG = 16 +pkg syscall (darwin-arm64), const SIGURG Signal +pkg syscall (darwin-arm64), const SIGUSR1 = 30 +pkg syscall (darwin-arm64), const SIGUSR1 Signal +pkg syscall (darwin-arm64), const SIGUSR2 = 31 +pkg syscall (darwin-arm64), const SIGUSR2 Signal +pkg syscall (darwin-arm64), const SIGVTALRM = 26 +pkg syscall (darwin-arm64), const SIGVTALRM Signal +pkg syscall (darwin-arm64), const SIGWINCH = 28 +pkg syscall (darwin-arm64), const SIGWINCH Signal +pkg syscall (darwin-arm64), const SIGXCPU = 24 +pkg syscall (darwin-arm64), const SIGXCPU Signal +pkg syscall (darwin-arm64), const SIGXFSZ = 25 +pkg syscall (darwin-arm64), const SIGXFSZ Signal +pkg syscall (darwin-arm64), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-arm64), const SIOCADDMULTI ideal-int +pkg syscall (darwin-arm64), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-arm64), const SIOCAIFADDR ideal-int +pkg syscall (darwin-arm64), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-arm64), const SIOCARPIPLL ideal-int +pkg syscall (darwin-arm64), const SIOCATMARK = 1074033415 +pkg syscall (darwin-arm64), const SIOCATMARK ideal-int +pkg syscall (darwin-arm64), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-arm64), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-arm64), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-arm64), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-arm64), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-arm64), const SIOCDELMULTI ideal-int +pkg syscall (darwin-arm64), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-arm64), const SIOCDIFADDR ideal-int +pkg syscall (darwin-arm64), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-arm64), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGDRVSPEC = 3223873915 +pkg syscall (darwin-arm64), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-arm64), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-arm64), const SIOCGETVLAN ideal-int +pkg syscall (darwin-arm64), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-arm64), const SIOCGHIWAT ideal-int +pkg syscall (darwin-arm64), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-arm64), const SIOCGIFADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-arm64), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-arm64), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-arm64), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-arm64), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-arm64), const SIOCGIFBOND ideal-int +pkg syscall (darwin-arm64), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-arm64), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-arm64), const SIOCGIFCAP ideal-int +pkg syscall (darwin-arm64), const SIOCGIFCONF = 3222038820 +pkg syscall (darwin-arm64), const SIOCGIFCONF ideal-int +pkg syscall (darwin-arm64), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-arm64), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-arm64), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-arm64), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-arm64), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-arm64), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-arm64), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-arm64), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-arm64), const SIOCGIFKPI ideal-int +pkg syscall (darwin-arm64), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-arm64), const SIOCGIFMAC ideal-int +pkg syscall (darwin-arm64), const SIOCGIFMEDIA = 3224135992 +pkg syscall (darwin-arm64), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-arm64), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-arm64), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-arm64), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-arm64), const SIOCGIFMTU ideal-int +pkg syscall (darwin-arm64), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-arm64), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-arm64), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-arm64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-arm64), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-arm64), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-arm64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-arm64), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-arm64), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-arm64), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-arm64), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-arm64), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-arm64), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-arm64), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-arm64), const SIOCGLOWAT ideal-int +pkg syscall (darwin-arm64), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-arm64), const SIOCGPGRP ideal-int +pkg syscall (darwin-arm64), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-arm64), const SIOCIFCREATE ideal-int +pkg syscall (darwin-arm64), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-arm64), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-arm64), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-arm64), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-arm64), const SIOCIFGCLONERS = 3222301057 +pkg syscall (darwin-arm64), const SIOCIFGCLONERS ideal-int +pkg syscall (darwin-arm64), const SIOCRSLVMULTI = 3222300987 +pkg syscall (darwin-arm64), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-arm64), const SIOCSDRVSPEC = 2150132091 +pkg syscall (darwin-arm64), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-arm64), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-arm64), const SIOCSETVLAN ideal-int +pkg syscall (darwin-arm64), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-arm64), const SIOCSHIWAT ideal-int +pkg syscall (darwin-arm64), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-arm64), const SIOCSIFADDR ideal-int +pkg syscall (darwin-arm64), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-arm64), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-arm64), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-arm64), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-arm64), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-arm64), const SIOCSIFBOND ideal-int +pkg syscall (darwin-arm64), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-arm64), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-arm64), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-arm64), const SIOCSIFCAP ideal-int +pkg syscall (darwin-arm64), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-arm64), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-arm64), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-arm64), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-arm64), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-arm64), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-arm64), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-arm64), const SIOCSIFKPI ideal-int +pkg syscall (darwin-arm64), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-arm64), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-arm64), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-arm64), const SIOCSIFMAC ideal-int +pkg syscall (darwin-arm64), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-arm64), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-arm64), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-arm64), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-arm64), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-arm64), const SIOCSIFMTU ideal-int +pkg syscall (darwin-arm64), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-arm64), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-arm64), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-arm64), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-arm64), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-arm64), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-arm64), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-arm64), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-arm64), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-arm64), const SIOCSLOWAT ideal-int +pkg syscall (darwin-arm64), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-arm64), const SIOCSPGRP ideal-int +pkg syscall (darwin-arm64), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-arm64), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-arm64), const SOCK_RDM = 4 +pkg syscall (darwin-arm64), const SOCK_RDM ideal-int +pkg syscall (darwin-arm64), const SOL_SOCKET = 65535 +pkg syscall (darwin-arm64), const SOMAXCONN = 128 +pkg syscall (darwin-arm64), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-arm64), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-arm64), const SO_BROADCAST = 32 +pkg syscall (darwin-arm64), const SO_DEBUG = 1 +pkg syscall (darwin-arm64), const SO_DEBUG ideal-int +pkg syscall (darwin-arm64), const SO_DONTROUTE = 16 +pkg syscall (darwin-arm64), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-arm64), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-arm64), const SO_ERROR = 4103 +pkg syscall (darwin-arm64), const SO_ERROR ideal-int +pkg syscall (darwin-arm64), const SO_KEEPALIVE = 8 +pkg syscall (darwin-arm64), const SO_LABEL = 4112 +pkg syscall (darwin-arm64), const SO_LABEL ideal-int +pkg syscall (darwin-arm64), const SO_LINGER = 128 +pkg syscall (darwin-arm64), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-arm64), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-arm64), const SO_NKE = 4129 +pkg syscall (darwin-arm64), const SO_NKE ideal-int +pkg syscall (darwin-arm64), const SO_NOADDRERR = 4131 +pkg syscall (darwin-arm64), const SO_NOADDRERR ideal-int +pkg syscall (darwin-arm64), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-arm64), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-arm64), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-arm64), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-arm64), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-arm64), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-arm64), const SO_NREAD = 4128 +pkg syscall (darwin-arm64), const SO_NREAD ideal-int +pkg syscall (darwin-arm64), const SO_NUMRCVPKT = 4370 +pkg syscall (darwin-arm64), const SO_NUMRCVPKT ideal-int +pkg syscall (darwin-arm64), const SO_NWRITE = 4132 +pkg syscall (darwin-arm64), const SO_NWRITE ideal-int +pkg syscall (darwin-arm64), const SO_OOBINLINE = 256 +pkg syscall (darwin-arm64), const SO_OOBINLINE ideal-int +pkg syscall (darwin-arm64), const SO_PEERLABEL = 4113 +pkg syscall (darwin-arm64), const SO_PEERLABEL ideal-int +pkg syscall (darwin-arm64), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-arm64), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-arm64), const SO_RCVBUF = 4098 +pkg syscall (darwin-arm64), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-arm64), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-arm64), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-arm64), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-arm64), const SO_REUSEADDR = 4 +pkg syscall (darwin-arm64), const SO_REUSEPORT = 512 +pkg syscall (darwin-arm64), const SO_REUSEPORT ideal-int +pkg syscall (darwin-arm64), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-arm64), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-arm64), const SO_SNDBUF = 4097 +pkg syscall (darwin-arm64), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-arm64), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-arm64), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-arm64), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-arm64), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-arm64), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-arm64), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-arm64), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-arm64), const SO_TYPE = 4104 +pkg syscall (darwin-arm64), const SO_TYPE ideal-int +pkg syscall (darwin-arm64), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-arm64), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-arm64), const SO_USELOOPBACK = 64 +pkg syscall (darwin-arm64), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-arm64), const SO_WANTMORE = 16384 +pkg syscall (darwin-arm64), const SO_WANTMORE ideal-int +pkg syscall (darwin-arm64), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-arm64), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-arm64), const SYS_ACCEPT = 30 +pkg syscall (darwin-arm64), const SYS_ACCEPT ideal-int +pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_ACCESS = 33 +pkg syscall (darwin-arm64), const SYS_ACCESS ideal-int +pkg syscall (darwin-arm64), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-arm64), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_ACCT = 51 +pkg syscall (darwin-arm64), const SYS_ACCT ideal-int +pkg syscall (darwin-arm64), const SYS_ADJTIME = 140 +pkg syscall (darwin-arm64), const SYS_ADJTIME ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-arm64), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-arm64), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-arm64), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_READ = 318 +pkg syscall (darwin-arm64), const SYS_AIO_READ ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-arm64), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-arm64), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-arm64), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-arm64), const SYS_ATGETMSG = 207 +pkg syscall (darwin-arm64), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-arm64), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-arm64), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-arm64), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-arm64), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-arm64), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-arm64), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-arm64), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-arm64), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-arm64), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-arm64), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-arm64), const SYS_ATSOCKET = 206 +pkg syscall (darwin-arm64), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-arm64), const SYS_AUDIT = 350 +pkg syscall (darwin-arm64), const SYS_AUDIT ideal-int +pkg syscall (darwin-arm64), const SYS_AUDITCTL = 359 +pkg syscall (darwin-arm64), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-arm64), const SYS_AUDITON = 351 +pkg syscall (darwin-arm64), const SYS_AUDITON ideal-int +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-arm64), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-arm64), const SYS_BIND = 104 +pkg syscall (darwin-arm64), const SYS_BIND ideal-int +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-arm64), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-arm64), const SYS_CHDIR = 12 +pkg syscall (darwin-arm64), const SYS_CHDIR ideal-int +pkg syscall (darwin-arm64), const SYS_CHFLAGS = 34 +pkg syscall (darwin-arm64), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-arm64), const SYS_CHMOD = 15 +pkg syscall (darwin-arm64), const SYS_CHMOD ideal-int +pkg syscall (darwin-arm64), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-arm64), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_CHOWN = 16 +pkg syscall (darwin-arm64), const SYS_CHOWN ideal-int +pkg syscall (darwin-arm64), const SYS_CHROOT = 61 +pkg syscall (darwin-arm64), const SYS_CHROOT ideal-int +pkg syscall (darwin-arm64), const SYS_CHUD = 185 +pkg syscall (darwin-arm64), const SYS_CHUD ideal-int +pkg syscall (darwin-arm64), const SYS_CLOSE = 6 +pkg syscall (darwin-arm64), const SYS_CLOSE ideal-int +pkg syscall (darwin-arm64), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-arm64), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_CONNECT = 98 +pkg syscall (darwin-arm64), const SYS_CONNECT ideal-int +pkg syscall (darwin-arm64), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-arm64), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_COPYFILE = 227 +pkg syscall (darwin-arm64), const SYS_COPYFILE ideal-int +pkg syscall (darwin-arm64), const SYS_CSOPS = 169 +pkg syscall (darwin-arm64), const SYS_CSOPS ideal-int +pkg syscall (darwin-arm64), const SYS_CSOPS_AUDITTOKEN = 170 +pkg syscall (darwin-arm64), const SYS_CSOPS_AUDITTOKEN ideal-int +pkg syscall (darwin-arm64), const SYS_DELETE = 226 +pkg syscall (darwin-arm64), const SYS_DELETE ideal-int +pkg syscall (darwin-arm64), const SYS_DUP = 41 +pkg syscall (darwin-arm64), const SYS_DUP ideal-int +pkg syscall (darwin-arm64), const SYS_DUP2 = 90 +pkg syscall (darwin-arm64), const SYS_DUP2 ideal-int +pkg syscall (darwin-arm64), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-arm64), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-arm64), const SYS_EXECVE = 59 +pkg syscall (darwin-arm64), const SYS_EXECVE ideal-int +pkg syscall (darwin-arm64), const SYS_EXIT = 1 +pkg syscall (darwin-arm64), const SYS_EXIT ideal-int +pkg syscall (darwin-arm64), const SYS_FCHDIR = 13 +pkg syscall (darwin-arm64), const SYS_FCHDIR ideal-int +pkg syscall (darwin-arm64), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-arm64), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-arm64), const SYS_FCHMOD = 124 +pkg syscall (darwin-arm64), const SYS_FCHMOD ideal-int +pkg syscall (darwin-arm64), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-arm64), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_FCHOWN = 123 +pkg syscall (darwin-arm64), const SYS_FCHOWN ideal-int +pkg syscall (darwin-arm64), const SYS_FCNTL = 92 +pkg syscall (darwin-arm64), const SYS_FCNTL ideal-int +pkg syscall (darwin-arm64), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-arm64), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_FDATASYNC = 187 +pkg syscall (darwin-arm64), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-arm64), const SYS_FFSCTL = 245 +pkg syscall (darwin-arm64), const SYS_FFSCTL ideal-int +pkg syscall (darwin-arm64), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-arm64), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-arm64), const SYS_FGETXATTR = 235 +pkg syscall (darwin-arm64), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_FHOPEN = 248 +pkg syscall (darwin-arm64), const SYS_FHOPEN ideal-int +pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-arm64), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-arm64), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-arm64), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_FLOCK = 131 +pkg syscall (darwin-arm64), const SYS_FLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_FORK = 2 +pkg syscall (darwin-arm64), const SYS_FORK ideal-int +pkg syscall (darwin-arm64), const SYS_FPATHCONF = 192 +pkg syscall (darwin-arm64), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-arm64), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-arm64), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_FSCTL = 242 +pkg syscall (darwin-arm64), const SYS_FSCTL ideal-int +pkg syscall (darwin-arm64), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-arm64), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-arm64), const SYS_FSETXATTR = 237 +pkg syscall (darwin-arm64), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_FSGETPATH = 427 +pkg syscall (darwin-arm64), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-arm64), const SYS_FSTAT = 189 +pkg syscall (darwin-arm64), const SYS_FSTAT ideal-int +pkg syscall (darwin-arm64), const SYS_FSTAT64 = 339 +pkg syscall (darwin-arm64), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-arm64), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-arm64), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_FSTATFS = 158 +pkg syscall (darwin-arm64), const SYS_FSTATFS ideal-int +pkg syscall (darwin-arm64), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-arm64), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-arm64), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-arm64), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_FSYNC = 95 +pkg syscall (darwin-arm64), const SYS_FSYNC ideal-int +pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-arm64), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-arm64), const SYS_FUTIMES = 139 +pkg syscall (darwin-arm64), const SYS_FUTIMES ideal-int +pkg syscall (darwin-arm64), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-arm64), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-arm64), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-arm64), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-arm64), const SYS_GETAUID = 353 +pkg syscall (darwin-arm64), const SYS_GETAUID ideal-int +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-arm64), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-arm64), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-arm64), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-arm64), const SYS_GETEGID = 43 +pkg syscall (darwin-arm64), const SYS_GETEGID ideal-int +pkg syscall (darwin-arm64), const SYS_GETEUID = 25 +pkg syscall (darwin-arm64), const SYS_GETEUID ideal-int +pkg syscall (darwin-arm64), const SYS_GETFH = 161 +pkg syscall (darwin-arm64), const SYS_GETFH ideal-int +pkg syscall (darwin-arm64), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-arm64), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-arm64), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-arm64), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-arm64), const SYS_GETGID = 47 +pkg syscall (darwin-arm64), const SYS_GETGID ideal-int +pkg syscall (darwin-arm64), const SYS_GETGROUPS = 79 +pkg syscall (darwin-arm64), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-arm64), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-arm64), const SYS_GETITIMER = 86 +pkg syscall (darwin-arm64), const SYS_GETITIMER ideal-int +pkg syscall (darwin-arm64), const SYS_GETLCID = 395 +pkg syscall (darwin-arm64), const SYS_GETLCID ideal-int +pkg syscall (darwin-arm64), const SYS_GETLOGIN = 49 +pkg syscall (darwin-arm64), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-arm64), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-arm64), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-arm64), const SYS_GETPGID = 151 +pkg syscall (darwin-arm64), const SYS_GETPGID ideal-int +pkg syscall (darwin-arm64), const SYS_GETPGRP = 81 +pkg syscall (darwin-arm64), const SYS_GETPGRP ideal-int +pkg syscall (darwin-arm64), const SYS_GETPID = 20 +pkg syscall (darwin-arm64), const SYS_GETPID ideal-int +pkg syscall (darwin-arm64), const SYS_GETPPID = 39 +pkg syscall (darwin-arm64), const SYS_GETPPID ideal-int +pkg syscall (darwin-arm64), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-arm64), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-arm64), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-arm64), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-arm64), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-arm64), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-arm64), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-arm64), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_GETSID = 310 +pkg syscall (darwin-arm64), const SYS_GETSID ideal-int +pkg syscall (darwin-arm64), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-arm64), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-arm64), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-arm64), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-arm64), const SYS_GETTID = 286 +pkg syscall (darwin-arm64), const SYS_GETTID ideal-int +pkg syscall (darwin-arm64), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-arm64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-arm64), const SYS_GETUID = 24 +pkg syscall (darwin-arm64), const SYS_GETUID ideal-int +pkg syscall (darwin-arm64), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-arm64), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_GETXATTR = 234 +pkg syscall (darwin-arm64), const SYS_GETXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-arm64), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-arm64), const SYS_INITGROUPS = 243 +pkg syscall (darwin-arm64), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_IOCTL = 54 +pkg syscall (darwin-arm64), const SYS_IOCTL ideal-int +pkg syscall (darwin-arm64), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-arm64), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-arm64), const SYS_ISSETUGID = 327 +pkg syscall (darwin-arm64), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-arm64), const SYS_KAS_INFO = 439 +pkg syscall (darwin-arm64), const SYS_KAS_INFO ideal-int +pkg syscall (darwin-arm64), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-arm64), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-arm64), const SYS_KEVENT = 363 +pkg syscall (darwin-arm64), const SYS_KEVENT ideal-int +pkg syscall (darwin-arm64), const SYS_KEVENT64 = 369 +pkg syscall (darwin-arm64), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-arm64), const SYS_KILL = 37 +pkg syscall (darwin-arm64), const SYS_KILL ideal-int +pkg syscall (darwin-arm64), const SYS_KQUEUE = 362 +pkg syscall (darwin-arm64), const SYS_KQUEUE ideal-int +pkg syscall (darwin-arm64), const SYS_LCHOWN = 364 +pkg syscall (darwin-arm64), const SYS_LCHOWN ideal-int +pkg syscall (darwin-arm64), const SYS_LEDGER = 373 +pkg syscall (darwin-arm64), const SYS_LEDGER ideal-int +pkg syscall (darwin-arm64), const SYS_LINK = 9 +pkg syscall (darwin-arm64), const SYS_LINK ideal-int +pkg syscall (darwin-arm64), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-arm64), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-arm64), const SYS_LISTEN = 106 +pkg syscall (darwin-arm64), const SYS_LISTEN ideal-int +pkg syscall (darwin-arm64), const SYS_LISTXATTR = 240 +pkg syscall (darwin-arm64), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_LSEEK = 199 +pkg syscall (darwin-arm64), const SYS_LSEEK ideal-int +pkg syscall (darwin-arm64), const SYS_LSTAT = 190 +pkg syscall (darwin-arm64), const SYS_LSTAT ideal-int +pkg syscall (darwin-arm64), const SYS_LSTAT64 = 340 +pkg syscall (darwin-arm64), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-arm64), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-arm64), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-arm64), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_MADVISE = 75 +pkg syscall (darwin-arm64), const SYS_MADVISE ideal-int +pkg syscall (darwin-arm64), const SYS_MAXSYSCALL = 440 +pkg syscall (darwin-arm64), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-arm64), const SYS_MINCORE = 78 +pkg syscall (darwin-arm64), const SYS_MINCORE ideal-int +pkg syscall (darwin-arm64), const SYS_MINHERIT = 250 +pkg syscall (darwin-arm64), const SYS_MINHERIT ideal-int +pkg syscall (darwin-arm64), const SYS_MKDIR = 136 +pkg syscall (darwin-arm64), const SYS_MKDIR ideal-int +pkg syscall (darwin-arm64), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-arm64), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_MKFIFO = 132 +pkg syscall (darwin-arm64), const SYS_MKFIFO ideal-int +pkg syscall (darwin-arm64), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-arm64), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_MKNOD = 14 +pkg syscall (darwin-arm64), const SYS_MKNOD ideal-int +pkg syscall (darwin-arm64), const SYS_MLOCK = 203 +pkg syscall (darwin-arm64), const SYS_MLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_MLOCKALL = 324 +pkg syscall (darwin-arm64), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-arm64), const SYS_MMAP = 197 +pkg syscall (darwin-arm64), const SYS_MMAP ideal-int +pkg syscall (darwin-arm64), const SYS_MODWATCH = 233 +pkg syscall (darwin-arm64), const SYS_MODWATCH ideal-int +pkg syscall (darwin-arm64), const SYS_MOUNT = 167 +pkg syscall (darwin-arm64), const SYS_MOUNT ideal-int +pkg syscall (darwin-arm64), const SYS_MPROTECT = 74 +pkg syscall (darwin-arm64), const SYS_MPROTECT ideal-int +pkg syscall (darwin-arm64), const SYS_MSGCTL = 258 +pkg syscall (darwin-arm64), const SYS_MSGCTL ideal-int +pkg syscall (darwin-arm64), const SYS_MSGGET = 259 +pkg syscall (darwin-arm64), const SYS_MSGGET ideal-int +pkg syscall (darwin-arm64), const SYS_MSGRCV = 261 +pkg syscall (darwin-arm64), const SYS_MSGRCV ideal-int +pkg syscall (darwin-arm64), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-arm64), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_MSGSND = 260 +pkg syscall (darwin-arm64), const SYS_MSGSND ideal-int +pkg syscall (darwin-arm64), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-arm64), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_MSGSYS = 252 +pkg syscall (darwin-arm64), const SYS_MSGSYS ideal-int +pkg syscall (darwin-arm64), const SYS_MSYNC = 65 +pkg syscall (darwin-arm64), const SYS_MSYNC ideal-int +pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_MUNLOCK = 204 +pkg syscall (darwin-arm64), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-arm64), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-arm64), const SYS_MUNMAP = 73 +pkg syscall (darwin-arm64), const SYS_MUNMAP ideal-int +pkg syscall (darwin-arm64), const SYS_NFSCLNT = 247 +pkg syscall (darwin-arm64), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-arm64), const SYS_NFSSVC = 155 +pkg syscall (darwin-arm64), const SYS_NFSSVC ideal-int +pkg syscall (darwin-arm64), const SYS_OPEN = 5 +pkg syscall (darwin-arm64), const SYS_OPEN ideal-int +pkg syscall (darwin-arm64), const SYS_OPEN_DPROTECTED_NP = 216 +pkg syscall (darwin-arm64), const SYS_OPEN_DPROTECTED_NP ideal-int +pkg syscall (darwin-arm64), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-arm64), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-arm64), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_PATHCONF = 191 +pkg syscall (darwin-arm64), const SYS_PATHCONF ideal-int +pkg syscall (darwin-arm64), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-arm64), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-arm64), const SYS_PID_RESUME = 434 +pkg syscall (darwin-arm64), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-arm64), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-arm64), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-arm64), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-arm64), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-arm64), const SYS_PIPE = 42 +pkg syscall (darwin-arm64), const SYS_PIPE ideal-int +pkg syscall (darwin-arm64), const SYS_POLL = 230 +pkg syscall (darwin-arm64), const SYS_POLL ideal-int +pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-arm64), const SYS_PREAD = 153 +pkg syscall (darwin-arm64), const SYS_PREAD ideal-int +pkg syscall (darwin-arm64), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-arm64), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-arm64), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-arm64), const SYS_PROC_INFO = 336 +pkg syscall (darwin-arm64), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-arm64), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-arm64), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-arm64), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-arm64), const SYS_PTRACE = 26 +pkg syscall (darwin-arm64), const SYS_PTRACE ideal-int +pkg syscall (darwin-arm64), const SYS_PWRITE = 154 +pkg syscall (darwin-arm64), const SYS_PWRITE ideal-int +pkg syscall (darwin-arm64), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-arm64), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_QUOTACTL = 165 +pkg syscall (darwin-arm64), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-arm64), const SYS_READ = 3 +pkg syscall (darwin-arm64), const SYS_READ ideal-int +pkg syscall (darwin-arm64), const SYS_READLINK = 58 +pkg syscall (darwin-arm64), const SYS_READLINK ideal-int +pkg syscall (darwin-arm64), const SYS_READV = 120 +pkg syscall (darwin-arm64), const SYS_READV ideal-int +pkg syscall (darwin-arm64), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-arm64), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-arm64), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_REBOOT = 55 +pkg syscall (darwin-arm64), const SYS_REBOOT ideal-int +pkg syscall (darwin-arm64), const SYS_RECVFROM = 29 +pkg syscall (darwin-arm64), const SYS_RECVFROM ideal-int +pkg syscall (darwin-arm64), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-arm64), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_RECVMSG = 27 +pkg syscall (darwin-arm64), const SYS_RECVMSG ideal-int +pkg syscall (darwin-arm64), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-arm64), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-arm64), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_RENAME = 128 +pkg syscall (darwin-arm64), const SYS_RENAME ideal-int +pkg syscall (darwin-arm64), const SYS_REVOKE = 56 +pkg syscall (darwin-arm64), const SYS_REVOKE ideal-int +pkg syscall (darwin-arm64), const SYS_RMDIR = 137 +pkg syscall (darwin-arm64), const SYS_RMDIR ideal-int +pkg syscall (darwin-arm64), const SYS_SEARCHFS = 225 +pkg syscall (darwin-arm64), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-arm64), const SYS_SELECT = 93 +pkg syscall (darwin-arm64), const SYS_SELECT ideal-int +pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_SEMCTL = 254 +pkg syscall (darwin-arm64), const SYS_SEMCTL ideal-int +pkg syscall (darwin-arm64), const SYS_SEMGET = 255 +pkg syscall (darwin-arm64), const SYS_SEMGET ideal-int +pkg syscall (darwin-arm64), const SYS_SEMOP = 256 +pkg syscall (darwin-arm64), const SYS_SEMOP ideal-int +pkg syscall (darwin-arm64), const SYS_SEMSYS = 251 +pkg syscall (darwin-arm64), const SYS_SEMSYS ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-arm64), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-arm64), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-arm64), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_INIT = 275 +pkg syscall (darwin-arm64), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-arm64), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_POST = 273 +pkg syscall (darwin-arm64), const SYS_SEM_POST ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-arm64), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-arm64), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-arm64), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_SENDFILE = 337 +pkg syscall (darwin-arm64), const SYS_SENDFILE ideal-int +pkg syscall (darwin-arm64), const SYS_SENDMSG = 28 +pkg syscall (darwin-arm64), const SYS_SENDMSG ideal-int +pkg syscall (darwin-arm64), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-arm64), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_SENDTO = 133 +pkg syscall (darwin-arm64), const SYS_SENDTO ideal-int +pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-arm64), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-arm64), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-arm64), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-arm64), const SYS_SETAUID = 354 +pkg syscall (darwin-arm64), const SYS_SETAUID ideal-int +pkg syscall (darwin-arm64), const SYS_SETEGID = 182 +pkg syscall (darwin-arm64), const SYS_SETEGID ideal-int +pkg syscall (darwin-arm64), const SYS_SETEUID = 183 +pkg syscall (darwin-arm64), const SYS_SETEUID ideal-int +pkg syscall (darwin-arm64), const SYS_SETGID = 181 +pkg syscall (darwin-arm64), const SYS_SETGID ideal-int +pkg syscall (darwin-arm64), const SYS_SETGROUPS = 80 +pkg syscall (darwin-arm64), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_SETITIMER = 83 +pkg syscall (darwin-arm64), const SYS_SETITIMER ideal-int +pkg syscall (darwin-arm64), const SYS_SETLCID = 394 +pkg syscall (darwin-arm64), const SYS_SETLCID ideal-int +pkg syscall (darwin-arm64), const SYS_SETLOGIN = 50 +pkg syscall (darwin-arm64), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-arm64), const SYS_SETPGID = 82 +pkg syscall (darwin-arm64), const SYS_SETPGID ideal-int +pkg syscall (darwin-arm64), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-arm64), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-arm64), const SYS_SETREGID = 127 +pkg syscall (darwin-arm64), const SYS_SETREGID ideal-int +pkg syscall (darwin-arm64), const SYS_SETREUID = 126 +pkg syscall (darwin-arm64), const SYS_SETREUID ideal-int +pkg syscall (darwin-arm64), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-arm64), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-arm64), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-arm64), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_SETSID = 147 +pkg syscall (darwin-arm64), const SYS_SETSID ideal-int +pkg syscall (darwin-arm64), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-arm64), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-arm64), const SYS_SETTID = 285 +pkg syscall (darwin-arm64), const SYS_SETTID ideal-int +pkg syscall (darwin-arm64), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-arm64), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-arm64), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-arm64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-arm64), const SYS_SETUID = 23 +pkg syscall (darwin-arm64), const SYS_SETUID ideal-int +pkg syscall (darwin-arm64), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-arm64), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-arm64), const SYS_SETXATTR = 236 +pkg syscall (darwin-arm64), const SYS_SETXATTR ideal-int +pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-arm64), const SYS_SHMAT = 262 +pkg syscall (darwin-arm64), const SYS_SHMAT ideal-int +pkg syscall (darwin-arm64), const SYS_SHMCTL = 263 +pkg syscall (darwin-arm64), const SYS_SHMCTL ideal-int +pkg syscall (darwin-arm64), const SYS_SHMDT = 264 +pkg syscall (darwin-arm64), const SYS_SHMDT ideal-int +pkg syscall (darwin-arm64), const SYS_SHMGET = 265 +pkg syscall (darwin-arm64), const SYS_SHMGET ideal-int +pkg syscall (darwin-arm64), const SYS_SHMSYS = 253 +pkg syscall (darwin-arm64), const SYS_SHMSYS ideal-int +pkg syscall (darwin-arm64), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-arm64), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-arm64), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-arm64), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-arm64), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-arm64), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-arm64), const SYS_SIGACTION = 46 +pkg syscall (darwin-arm64), const SYS_SIGACTION ideal-int +pkg syscall (darwin-arm64), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-arm64), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-arm64), const SYS_SIGPENDING = 52 +pkg syscall (darwin-arm64), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-arm64), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-arm64), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-arm64), const SYS_SIGRETURN = 184 +pkg syscall (darwin-arm64), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-arm64), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-arm64), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-arm64), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-arm64), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_SOCKET = 97 +pkg syscall (darwin-arm64), const SYS_SOCKET ideal-int +pkg syscall (darwin-arm64), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-arm64), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-arm64), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-arm64), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-arm64), const SYS_STAT = 188 +pkg syscall (darwin-arm64), const SYS_STAT ideal-int +pkg syscall (darwin-arm64), const SYS_STAT64 = 338 +pkg syscall (darwin-arm64), const SYS_STAT64 ideal-int +pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_STATFS = 157 +pkg syscall (darwin-arm64), const SYS_STATFS ideal-int +pkg syscall (darwin-arm64), const SYS_STATFS64 = 345 +pkg syscall (darwin-arm64), const SYS_STATFS64 ideal-int +pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_SWAPON = 85 +pkg syscall (darwin-arm64), const SYS_SWAPON ideal-int +pkg syscall (darwin-arm64), const SYS_SYMLINK = 57 +pkg syscall (darwin-arm64), const SYS_SYMLINK ideal-int +pkg syscall (darwin-arm64), const SYS_SYNC = 36 +pkg syscall (darwin-arm64), const SYS_SYNC ideal-int +pkg syscall (darwin-arm64), const SYS_SYSCALL = 0 +pkg syscall (darwin-arm64), const SYS_SYSCALL ideal-int +pkg syscall (darwin-arm64), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-arm64), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-arm64), const SYS_TRUNCATE = 200 +pkg syscall (darwin-arm64), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-arm64), const SYS_UMASK = 60 +pkg syscall (darwin-arm64), const SYS_UMASK ideal-int +pkg syscall (darwin-arm64), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-arm64), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-arm64), const SYS_UNDELETE = 205 +pkg syscall (darwin-arm64), const SYS_UNDELETE ideal-int +pkg syscall (darwin-arm64), const SYS_UNLINK = 10 +pkg syscall (darwin-arm64), const SYS_UNLINK ideal-int +pkg syscall (darwin-arm64), const SYS_UNMOUNT = 159 +pkg syscall (darwin-arm64), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-arm64), const SYS_UTIMES = 138 +pkg syscall (darwin-arm64), const SYS_UTIMES ideal-int +pkg syscall (darwin-arm64), const SYS_VFORK = 66 +pkg syscall (darwin-arm64), const SYS_VFORK ideal-int +pkg syscall (darwin-arm64), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-arm64), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-arm64), const SYS_WAIT4 = 7 +pkg syscall (darwin-arm64), const SYS_WAIT4 ideal-int +pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_WAITEVENT = 232 +pkg syscall (darwin-arm64), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-arm64), const SYS_WAITID = 173 +pkg syscall (darwin-arm64), const SYS_WAITID ideal-int +pkg syscall (darwin-arm64), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-arm64), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-arm64), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-arm64), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-arm64), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-arm64), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-arm64), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-arm64), const SYS_WRITE = 4 +pkg syscall (darwin-arm64), const SYS_WRITE ideal-int +pkg syscall (darwin-arm64), const SYS_WRITEV = 121 +pkg syscall (darwin-arm64), const SYS_WRITEV ideal-int +pkg syscall (darwin-arm64), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-arm64), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-arm64), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-arm64), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-arm64), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-arm64), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-arm64), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-arm64), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-arm64), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-arm64), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-arm64), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-arm64), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-arm64), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-arm64), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-arm64), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-arm64), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-arm64), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-arm64), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-arm64), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-arm64), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-arm64), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-arm64), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-arm64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-arm64), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-arm64), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-arm64), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-arm64), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-arm64), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-arm64), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-arm64), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS___SIGWAIT = 330 +pkg syscall (darwin-arm64), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-arm64), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-arm64), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-arm64), const SYS___SYSCTL = 202 +pkg syscall (darwin-arm64), const SYS___SYSCTL ideal-int +pkg syscall (darwin-arm64), const S_IEXEC = 64 +pkg syscall (darwin-arm64), const S_IEXEC ideal-int +pkg syscall (darwin-arm64), const S_IFMT = 61440 +pkg syscall (darwin-arm64), const S_IFWHT = 57344 +pkg syscall (darwin-arm64), const S_IFWHT ideal-int +pkg syscall (darwin-arm64), const S_IREAD = 256 +pkg syscall (darwin-arm64), const S_IREAD ideal-int +pkg syscall (darwin-arm64), const S_IRGRP = 32 +pkg syscall (darwin-arm64), const S_IRGRP ideal-int +pkg syscall (darwin-arm64), const S_IROTH = 4 +pkg syscall (darwin-arm64), const S_IROTH ideal-int +pkg syscall (darwin-arm64), const S_IRWXG = 56 +pkg syscall (darwin-arm64), const S_IRWXG ideal-int +pkg syscall (darwin-arm64), const S_IRWXO = 7 +pkg syscall (darwin-arm64), const S_IRWXO ideal-int +pkg syscall (darwin-arm64), const S_IRWXU = 448 +pkg syscall (darwin-arm64), const S_IRWXU ideal-int +pkg syscall (darwin-arm64), const S_ISTXT = 512 +pkg syscall (darwin-arm64), const S_ISTXT ideal-int +pkg syscall (darwin-arm64), const S_IWGRP = 16 +pkg syscall (darwin-arm64), const S_IWGRP ideal-int +pkg syscall (darwin-arm64), const S_IWOTH = 2 +pkg syscall (darwin-arm64), const S_IWOTH ideal-int +pkg syscall (darwin-arm64), const S_IWRITE = 128 +pkg syscall (darwin-arm64), const S_IWRITE ideal-int +pkg syscall (darwin-arm64), const S_IXGRP = 8 +pkg syscall (darwin-arm64), const S_IXGRP ideal-int +pkg syscall (darwin-arm64), const S_IXOTH = 1 +pkg syscall (darwin-arm64), const S_IXOTH ideal-int +pkg syscall (darwin-arm64), const SizeofBpfHdr = 20 +pkg syscall (darwin-arm64), const SizeofBpfHdr ideal-int +pkg syscall (darwin-arm64), const SizeofBpfInsn = 8 +pkg syscall (darwin-arm64), const SizeofBpfInsn ideal-int +pkg syscall (darwin-arm64), const SizeofBpfProgram = 16 +pkg syscall (darwin-arm64), const SizeofBpfProgram ideal-int +pkg syscall (darwin-arm64), const SizeofBpfStat = 8 +pkg syscall (darwin-arm64), const SizeofBpfStat ideal-int +pkg syscall (darwin-arm64), const SizeofBpfVersion = 4 +pkg syscall (darwin-arm64), const SizeofBpfVersion ideal-int +pkg syscall (darwin-arm64), const SizeofCmsghdr = 12 +pkg syscall (darwin-arm64), const SizeofCmsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-arm64), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-arm64), const SizeofIPMreq = 8 +pkg syscall (darwin-arm64), const SizeofIPMreq ideal-int +pkg syscall (darwin-arm64), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-arm64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-arm64), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-arm64), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-arm64), const SizeofIfData = 96 +pkg syscall (darwin-arm64), const SizeofIfData ideal-int +pkg syscall (darwin-arm64), const SizeofIfMsghdr = 112 +pkg syscall (darwin-arm64), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-arm64), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-arm64), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-arm64), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-arm64), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-arm64), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-arm64), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-arm64), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-arm64), const SizeofLinger = 8 +pkg syscall (darwin-arm64), const SizeofLinger ideal-int +pkg syscall (darwin-arm64), const SizeofMsghdr = 48 +pkg syscall (darwin-arm64), const SizeofMsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofRtMetrics = 56 +pkg syscall (darwin-arm64), const SizeofRtMetrics ideal-int +pkg syscall (darwin-arm64), const SizeofRtMsghdr = 92 +pkg syscall (darwin-arm64), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-arm64), const SizeofSockaddrAny = 108 +pkg syscall (darwin-arm64), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-arm64), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-arm64), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-arm64), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-arm64), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-arm64), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-arm64), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-arm64), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-arm64), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-arm64), const TCIFLUSH = 1 +pkg syscall (darwin-arm64), const TCIFLUSH ideal-int +pkg syscall (darwin-arm64), const TCIOFLUSH = 3 +pkg syscall (darwin-arm64), const TCIOFLUSH ideal-int +pkg syscall (darwin-arm64), const TCOFLUSH = 2 +pkg syscall (darwin-arm64), const TCOFLUSH ideal-int +pkg syscall (darwin-arm64), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-arm64), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-arm64), const TCP_ENABLE_ECN = 260 +pkg syscall (darwin-arm64), const TCP_ENABLE_ECN ideal-int +pkg syscall (darwin-arm64), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-arm64), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-arm64), const TCP_KEEPCNT = 258 +pkg syscall (darwin-arm64), const TCP_KEEPCNT ideal-int +pkg syscall (darwin-arm64), const TCP_KEEPINTVL = 257 +pkg syscall (darwin-arm64), const TCP_KEEPINTVL ideal-int +pkg syscall (darwin-arm64), const TCP_MAXHLEN = 60 +pkg syscall (darwin-arm64), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-arm64), const TCP_MAXOLEN = 40 +pkg syscall (darwin-arm64), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-arm64), const TCP_MAXSEG = 2 +pkg syscall (darwin-arm64), const TCP_MAXSEG ideal-int +pkg syscall (darwin-arm64), const TCP_MAXWIN = 65535 +pkg syscall (darwin-arm64), const TCP_MAXWIN ideal-int +pkg syscall (darwin-arm64), const TCP_MAX_SACK = 4 +pkg syscall (darwin-arm64), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-arm64), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-arm64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-arm64), const TCP_MINMSS = 216 +pkg syscall (darwin-arm64), const TCP_MINMSS ideal-int +pkg syscall (darwin-arm64), const TCP_MSS = 512 +pkg syscall (darwin-arm64), const TCP_MSS ideal-int +pkg syscall (darwin-arm64), const TCP_NOOPT = 8 +pkg syscall (darwin-arm64), const TCP_NOOPT ideal-int +pkg syscall (darwin-arm64), const TCP_NOPUSH = 4 +pkg syscall (darwin-arm64), const TCP_NOPUSH ideal-int +pkg syscall (darwin-arm64), const TCP_NOTSENT_LOWAT = 513 +pkg syscall (darwin-arm64), const TCP_NOTSENT_LOWAT ideal-int +pkg syscall (darwin-arm64), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-arm64), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-arm64), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-arm64), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-arm64), const TCP_SENDMOREACKS = 259 +pkg syscall (darwin-arm64), const TCP_SENDMOREACKS ideal-int +pkg syscall (darwin-arm64), const TCSAFLUSH = 2 +pkg syscall (darwin-arm64), const TCSAFLUSH ideal-int +pkg syscall (darwin-arm64), const TIOCCBRK = 536900730 +pkg syscall (darwin-arm64), const TIOCCBRK ideal-int +pkg syscall (darwin-arm64), const TIOCCDTR = 536900728 +pkg syscall (darwin-arm64), const TIOCCDTR ideal-int +pkg syscall (darwin-arm64), const TIOCCONS = 2147775586 +pkg syscall (darwin-arm64), const TIOCCONS ideal-int +pkg syscall (darwin-arm64), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (darwin-arm64), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-arm64), const TIOCDRAIN = 536900702 +pkg syscall (darwin-arm64), const TIOCDRAIN ideal-int +pkg syscall (darwin-arm64), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-arm64), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-arm64), const TIOCEXCL = 536900621 +pkg syscall (darwin-arm64), const TIOCEXCL ideal-int +pkg syscall (darwin-arm64), const TIOCEXT = 2147775584 +pkg syscall (darwin-arm64), const TIOCEXT ideal-int +pkg syscall (darwin-arm64), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-arm64), const TIOCFLUSH ideal-int +pkg syscall (darwin-arm64), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-arm64), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-arm64), const TIOCGETA = 1078490131 +pkg syscall (darwin-arm64), const TIOCGETA ideal-int +pkg syscall (darwin-arm64), const TIOCGETD = 1074033690 +pkg syscall (darwin-arm64), const TIOCGETD ideal-int +pkg syscall (darwin-arm64), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-arm64), const TIOCGPGRP ideal-int +pkg syscall (darwin-arm64), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-arm64), const TIOCGWINSZ ideal-int +pkg syscall (darwin-arm64), const TIOCIXOFF = 536900736 +pkg syscall (darwin-arm64), const TIOCIXOFF ideal-int +pkg syscall (darwin-arm64), const TIOCIXON = 536900737 +pkg syscall (darwin-arm64), const TIOCIXON ideal-int +pkg syscall (darwin-arm64), const TIOCMBIC = 2147775595 +pkg syscall (darwin-arm64), const TIOCMBIC ideal-int +pkg syscall (darwin-arm64), const TIOCMBIS = 2147775596 +pkg syscall (darwin-arm64), const TIOCMBIS ideal-int +pkg syscall (darwin-arm64), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-arm64), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-arm64), const TIOCMGET = 1074033770 +pkg syscall (darwin-arm64), const TIOCMGET ideal-int +pkg syscall (darwin-arm64), const TIOCMODG = 1074033667 +pkg syscall (darwin-arm64), const TIOCMODG ideal-int +pkg syscall (darwin-arm64), const TIOCMODS = 2147775492 +pkg syscall (darwin-arm64), const TIOCMODS ideal-int +pkg syscall (darwin-arm64), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-arm64), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-arm64), const TIOCMSET = 2147775597 +pkg syscall (darwin-arm64), const TIOCMSET ideal-int +pkg syscall (darwin-arm64), const TIOCM_CAR = 64 +pkg syscall (darwin-arm64), const TIOCM_CAR ideal-int +pkg syscall (darwin-arm64), const TIOCM_CD = 64 +pkg syscall (darwin-arm64), const TIOCM_CD ideal-int +pkg syscall (darwin-arm64), const TIOCM_CTS = 32 +pkg syscall (darwin-arm64), const TIOCM_CTS ideal-int +pkg syscall (darwin-arm64), const TIOCM_DSR = 256 +pkg syscall (darwin-arm64), const TIOCM_DSR ideal-int +pkg syscall (darwin-arm64), const TIOCM_DTR = 2 +pkg syscall (darwin-arm64), const TIOCM_DTR ideal-int +pkg syscall (darwin-arm64), const TIOCM_LE = 1 +pkg syscall (darwin-arm64), const TIOCM_LE ideal-int +pkg syscall (darwin-arm64), const TIOCM_RI = 128 +pkg syscall (darwin-arm64), const TIOCM_RI ideal-int +pkg syscall (darwin-arm64), const TIOCM_RNG = 128 +pkg syscall (darwin-arm64), const TIOCM_RNG ideal-int +pkg syscall (darwin-arm64), const TIOCM_RTS = 4 +pkg syscall (darwin-arm64), const TIOCM_RTS ideal-int +pkg syscall (darwin-arm64), const TIOCM_SR = 16 +pkg syscall (darwin-arm64), const TIOCM_SR ideal-int +pkg syscall (darwin-arm64), const TIOCM_ST = 8 +pkg syscall (darwin-arm64), const TIOCM_ST ideal-int +pkg syscall (darwin-arm64), const TIOCNOTTY = 536900721 +pkg syscall (darwin-arm64), const TIOCNOTTY ideal-int +pkg syscall (darwin-arm64), const TIOCNXCL = 536900622 +pkg syscall (darwin-arm64), const TIOCNXCL ideal-int +pkg syscall (darwin-arm64), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-arm64), const TIOCOUTQ ideal-int +pkg syscall (darwin-arm64), const TIOCPKT = 2147775600 +pkg syscall (darwin-arm64), const TIOCPKT ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_DATA = 0 +pkg syscall (darwin-arm64), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-arm64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-arm64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-arm64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-arm64), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-arm64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_START = 8 +pkg syscall (darwin-arm64), const TIOCPKT_START ideal-int +pkg syscall (darwin-arm64), const TIOCPKT_STOP = 4 +pkg syscall (darwin-arm64), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-arm64), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-arm64), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-arm64), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-arm64), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-arm64), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-arm64), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-arm64), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-arm64), const TIOCREMOTE ideal-int +pkg syscall (darwin-arm64), const TIOCSBRK = 536900731 +pkg syscall (darwin-arm64), const TIOCSBRK ideal-int +pkg syscall (darwin-arm64), const TIOCSCONS = 536900707 +pkg syscall (darwin-arm64), const TIOCSCONS ideal-int +pkg syscall (darwin-arm64), const TIOCSCTTY = 536900705 +pkg syscall (darwin-arm64), const TIOCSCTTY ideal-int +pkg syscall (darwin-arm64), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-arm64), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-arm64), const TIOCSDTR = 536900729 +pkg syscall (darwin-arm64), const TIOCSDTR ideal-int +pkg syscall (darwin-arm64), const TIOCSETA = 2152231956 +pkg syscall (darwin-arm64), const TIOCSETA ideal-int +pkg syscall (darwin-arm64), const TIOCSETAF = 2152231958 +pkg syscall (darwin-arm64), const TIOCSETAF ideal-int +pkg syscall (darwin-arm64), const TIOCSETAW = 2152231957 +pkg syscall (darwin-arm64), const TIOCSETAW ideal-int +pkg syscall (darwin-arm64), const TIOCSETD = 2147775515 +pkg syscall (darwin-arm64), const TIOCSETD ideal-int +pkg syscall (darwin-arm64), const TIOCSIG = 536900703 +pkg syscall (darwin-arm64), const TIOCSIG ideal-int +pkg syscall (darwin-arm64), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-arm64), const TIOCSPGRP ideal-int +pkg syscall (darwin-arm64), const TIOCSTART = 536900718 +pkg syscall (darwin-arm64), const TIOCSTART ideal-int +pkg syscall (darwin-arm64), const TIOCSTAT = 536900709 +pkg syscall (darwin-arm64), const TIOCSTAT ideal-int +pkg syscall (darwin-arm64), const TIOCSTI = 2147578994 +pkg syscall (darwin-arm64), const TIOCSTI ideal-int +pkg syscall (darwin-arm64), const TIOCSTOP = 536900719 +pkg syscall (darwin-arm64), const TIOCSTOP ideal-int +pkg syscall (darwin-arm64), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-arm64), const TIOCSWINSZ ideal-int +pkg syscall (darwin-arm64), const TIOCTIMESTAMP = 1074820185 +pkg syscall (darwin-arm64), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-arm64), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-arm64), const TIOCUCNTL ideal-int +pkg syscall (darwin-arm64), const TOSTOP = 4194304 +pkg syscall (darwin-arm64), const TOSTOP ideal-int +pkg syscall (darwin-arm64), const VDISCARD = 15 +pkg syscall (darwin-arm64), const VDISCARD ideal-int +pkg syscall (darwin-arm64), const VDSUSP = 11 +pkg syscall (darwin-arm64), const VDSUSP ideal-int +pkg syscall (darwin-arm64), const VEOF = 0 +pkg syscall (darwin-arm64), const VEOF ideal-int +pkg syscall (darwin-arm64), const VEOL = 1 +pkg syscall (darwin-arm64), const VEOL ideal-int +pkg syscall (darwin-arm64), const VEOL2 = 2 +pkg syscall (darwin-arm64), const VEOL2 ideal-int +pkg syscall (darwin-arm64), const VERASE = 3 +pkg syscall (darwin-arm64), const VERASE ideal-int +pkg syscall (darwin-arm64), const VINTR = 8 +pkg syscall (darwin-arm64), const VINTR ideal-int +pkg syscall (darwin-arm64), const VKILL = 5 +pkg syscall (darwin-arm64), const VKILL ideal-int +pkg syscall (darwin-arm64), const VLNEXT = 14 +pkg syscall (darwin-arm64), const VLNEXT ideal-int +pkg syscall (darwin-arm64), const VMIN = 16 +pkg syscall (darwin-arm64), const VMIN ideal-int +pkg syscall (darwin-arm64), const VQUIT = 9 +pkg syscall (darwin-arm64), const VQUIT ideal-int +pkg syscall (darwin-arm64), const VREPRINT = 6 +pkg syscall (darwin-arm64), const VREPRINT ideal-int +pkg syscall (darwin-arm64), const VSTART = 12 +pkg syscall (darwin-arm64), const VSTART ideal-int +pkg syscall (darwin-arm64), const VSTATUS = 18 +pkg syscall (darwin-arm64), const VSTATUS ideal-int +pkg syscall (darwin-arm64), const VSTOP = 13 +pkg syscall (darwin-arm64), const VSTOP ideal-int +pkg syscall (darwin-arm64), const VSUSP = 10 +pkg syscall (darwin-arm64), const VSUSP ideal-int +pkg syscall (darwin-arm64), const VT0 = 0 +pkg syscall (darwin-arm64), const VT0 ideal-int +pkg syscall (darwin-arm64), const VT1 = 65536 +pkg syscall (darwin-arm64), const VT1 ideal-int +pkg syscall (darwin-arm64), const VTDLY = 65536 +pkg syscall (darwin-arm64), const VTDLY ideal-int +pkg syscall (darwin-arm64), const VTIME = 17 +pkg syscall (darwin-arm64), const VTIME ideal-int +pkg syscall (darwin-arm64), const VWERASE = 4 +pkg syscall (darwin-arm64), const VWERASE ideal-int +pkg syscall (darwin-arm64), const WCONTINUED = 16 +pkg syscall (darwin-arm64), const WCONTINUED ideal-int +pkg syscall (darwin-arm64), const WCOREFLAG = 128 +pkg syscall (darwin-arm64), const WCOREFLAG ideal-int +pkg syscall (darwin-arm64), const WEXITED = 4 +pkg syscall (darwin-arm64), const WEXITED ideal-int +pkg syscall (darwin-arm64), const WNOHANG = 1 +pkg syscall (darwin-arm64), const WNOHANG ideal-int +pkg syscall (darwin-arm64), const WNOWAIT = 32 +pkg syscall (darwin-arm64), const WNOWAIT ideal-int +pkg syscall (darwin-arm64), const WORDSIZE = 64 +pkg syscall (darwin-arm64), const WORDSIZE ideal-int +pkg syscall (darwin-arm64), const WSTOPPED = 8 +pkg syscall (darwin-arm64), const WSTOPPED ideal-int +pkg syscall (darwin-arm64), const WUNTRACED = 2 +pkg syscall (darwin-arm64), const WUNTRACED ideal-int +pkg syscall (darwin-arm64), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-arm64), func Access(string, uint32) error +pkg syscall (darwin-arm64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-arm64), func Bind(int, Sockaddr) error +pkg syscall (darwin-arm64), func BpfBuflen //deprecated +pkg syscall (darwin-arm64), func BpfBuflen(int) (int, error) +pkg syscall (darwin-arm64), func BpfDatalink //deprecated +pkg syscall (darwin-arm64), func BpfDatalink(int) (int, error) +pkg syscall (darwin-arm64), func BpfHeadercmpl //deprecated +pkg syscall (darwin-arm64), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-arm64), func BpfInterface //deprecated +pkg syscall (darwin-arm64), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-arm64), func BpfJump //deprecated +pkg syscall (darwin-arm64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-arm64), func BpfStats //deprecated +pkg syscall (darwin-arm64), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-arm64), func BpfStmt //deprecated +pkg syscall (darwin-arm64), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-arm64), func BpfTimeout //deprecated +pkg syscall (darwin-arm64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-arm64), func CheckBpfVersion //deprecated +pkg syscall (darwin-arm64), func CheckBpfVersion(int) error +pkg syscall (darwin-arm64), func Chflags(string, int) error +pkg syscall (darwin-arm64), func Chroot(string) error +pkg syscall (darwin-arm64), func Close(int) error +pkg syscall (darwin-arm64), func CloseOnExec(int) +pkg syscall (darwin-arm64), func CmsgLen(int) int +pkg syscall (darwin-arm64), func CmsgSpace(int) int +pkg syscall (darwin-arm64), func Connect(int, Sockaddr) error +pkg syscall (darwin-arm64), func Dup(int) (int, error) +pkg syscall (darwin-arm64), func Dup2(int, int) error +pkg syscall (darwin-arm64), func Exchangedata(string, string, int) error +pkg syscall (darwin-arm64), func Fchdir(int) error +pkg syscall (darwin-arm64), func Fchflags(int, int) error +pkg syscall (darwin-arm64), func Fchmod(int, uint32) error +pkg syscall (darwin-arm64), func Fchown(int, int, int) error +pkg syscall (darwin-arm64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-arm64), func Flock(int, int) error +pkg syscall (darwin-arm64), func FlushBpf //deprecated +pkg syscall (darwin-arm64), func FlushBpf(int) error +pkg syscall (darwin-arm64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-arm64), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-arm64), func Fstat(int, *Stat_t) error +pkg syscall (darwin-arm64), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-arm64), func Fsync(int) error +pkg syscall (darwin-arm64), func Ftruncate(int, int64) error +pkg syscall (darwin-arm64), func Futimes(int, []Timeval) error +pkg syscall (darwin-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-arm64), func Getdtablesize() int +pkg syscall (darwin-arm64), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-arm64), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-arm64), func Getpgid(int) (int, error) +pkg syscall (darwin-arm64), func Getpgrp() int +pkg syscall (darwin-arm64), func Getpriority(int, int) (int, error) +pkg syscall (darwin-arm64), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-arm64), func Getrusage(int, *Rusage) error +pkg syscall (darwin-arm64), func Getsid(int) (int, error) +pkg syscall (darwin-arm64), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-arm64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-arm64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-arm64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-arm64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-arm64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-arm64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-arm64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-arm64), func Issetugid() bool +pkg syscall (darwin-arm64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-arm64), func Kill(int, Signal) error +pkg syscall (darwin-arm64), func Kqueue() (int, error) +pkg syscall (darwin-arm64), func Listen(int, int) error +pkg syscall (darwin-arm64), func Lstat(string, *Stat_t) error +pkg syscall (darwin-arm64), func Mkfifo(string, uint32) error +pkg syscall (darwin-arm64), func Mknod(string, uint32, int) error +pkg syscall (darwin-arm64), func Mlock([]uint8) error +pkg syscall (darwin-arm64), func Mlockall(int) error +pkg syscall (darwin-arm64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-arm64), func Mprotect([]uint8, int) error +pkg syscall (darwin-arm64), func Munlock([]uint8) error +pkg syscall (darwin-arm64), func Munlockall() error +pkg syscall (darwin-arm64), func Munmap([]uint8) error +pkg syscall (darwin-arm64), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-arm64), func ParseRoutingMessage //deprecated +pkg syscall (darwin-arm64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-arm64), func ParseRoutingSockaddr //deprecated +pkg syscall (darwin-arm64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-arm64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-arm64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-arm64), func Pathconf(string, int) (int, error) +pkg syscall (darwin-arm64), func Pipe([]int) error +pkg syscall (darwin-arm64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-arm64), func PtraceAttach(int) error +pkg syscall (darwin-arm64), func PtraceDetach(int) error +pkg syscall (darwin-arm64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-arm64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64), func Read(int, []uint8) (int, error) +pkg syscall (darwin-arm64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-arm64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-arm64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-arm64), func Revoke(string) error +pkg syscall (darwin-arm64), func RouteRIB //deprecated +pkg syscall (darwin-arm64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-arm64), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-arm64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-arm64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (darwin-arm64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-arm64), func SetBpf //deprecated +pkg syscall (darwin-arm64), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-arm64), func SetBpfBuflen //deprecated +pkg syscall (darwin-arm64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-arm64), func SetBpfDatalink //deprecated +pkg syscall (darwin-arm64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-arm64), func SetBpfHeadercmpl //deprecated +pkg syscall (darwin-arm64), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-arm64), func SetBpfImmediate //deprecated +pkg syscall (darwin-arm64), func SetBpfImmediate(int, int) error +pkg syscall (darwin-arm64), func SetBpfInterface //deprecated +pkg syscall (darwin-arm64), func SetBpfInterface(int, string) error +pkg syscall (darwin-arm64), func SetBpfPromisc //deprecated +pkg syscall (darwin-arm64), func SetBpfPromisc(int, int) error +pkg syscall (darwin-arm64), func SetBpfTimeout //deprecated +pkg syscall (darwin-arm64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-arm64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-arm64), func SetNonblock(int, bool) error +pkg syscall (darwin-arm64), func Setegid(int) error +pkg syscall (darwin-arm64), func Seteuid(int) error +pkg syscall (darwin-arm64), func Setgid(int) error +pkg syscall (darwin-arm64), func Setgroups([]int) error +pkg syscall (darwin-arm64), func Setlogin(string) error +pkg syscall (darwin-arm64), func Setpgid(int, int) error +pkg syscall (darwin-arm64), func Setpriority(int, int, int) error +pkg syscall (darwin-arm64), func Setprivexec(int) error +pkg syscall (darwin-arm64), func Setregid(int, int) error +pkg syscall (darwin-arm64), func Setreuid(int, int) error +pkg syscall (darwin-arm64), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-arm64), func Setsid() (int, error) +pkg syscall (darwin-arm64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-arm64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-arm64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-arm64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-arm64), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-arm64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-arm64), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-arm64), func Settimeofday(*Timeval) error +pkg syscall (darwin-arm64), func Setuid(int) error +pkg syscall (darwin-arm64), func Shutdown(int, int) error +pkg syscall (darwin-arm64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-arm64), func Socket(int, int, int) (int, error) +pkg syscall (darwin-arm64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-arm64), func Stat(string, *Stat_t) error +pkg syscall (darwin-arm64), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-arm64), func StringSlicePtr //deprecated +pkg syscall (darwin-arm64), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-arm64), func Sync() error +pkg syscall (darwin-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64), func Sysctl(string) (string, error) +pkg syscall (darwin-arm64), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-arm64), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-arm64), func Truncate(string, int64) error +pkg syscall (darwin-arm64), func Umask(int) int +pkg syscall (darwin-arm64), func Undelete(string) error +pkg syscall (darwin-arm64), func UnixRights(...int) []uint8 +pkg syscall (darwin-arm64), func Unmount(string, int) error +pkg syscall (darwin-arm64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-arm64), func Write(int, []uint8) (int, error) +pkg syscall (darwin-arm64), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-arm64), method (*Iovec) SetLen(int) +pkg syscall (darwin-arm64), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-arm64), type BpfHdr struct +pkg syscall (darwin-arm64), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-arm64), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-arm64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-arm64), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type BpfHdr struct, Tstamp Timeval32 +pkg syscall (darwin-arm64), type BpfInsn struct +pkg syscall (darwin-arm64), type BpfInsn struct, Code uint16 +pkg syscall (darwin-arm64), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-arm64), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-arm64), type BpfInsn struct, K uint32 +pkg syscall (darwin-arm64), type BpfProgram struct +pkg syscall (darwin-arm64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-arm64), type BpfProgram struct, Len uint32 +pkg syscall (darwin-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type BpfStat struct +pkg syscall (darwin-arm64), type BpfStat struct, Drop uint32 +pkg syscall (darwin-arm64), type BpfStat struct, Recv uint32 +pkg syscall (darwin-arm64), type BpfVersion struct +pkg syscall (darwin-arm64), type BpfVersion struct, Major uint16 +pkg syscall (darwin-arm64), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-arm64), type Cmsghdr struct +pkg syscall (darwin-arm64), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-arm64), type Cmsghdr struct, Level int32 +pkg syscall (darwin-arm64), type Cmsghdr struct, Type int32 +pkg syscall (darwin-arm64), type Credential struct +pkg syscall (darwin-arm64), type Credential struct, Gid uint32 +pkg syscall (darwin-arm64), type Credential struct, Groups []uint32 +pkg syscall (darwin-arm64), type Credential struct, NoSetGroups bool +pkg syscall (darwin-arm64), type Credential struct, Uid uint32 +pkg syscall (darwin-arm64), type Dirent struct +pkg syscall (darwin-arm64), type Dirent struct, Ino uint64 +pkg syscall (darwin-arm64), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-arm64), type Dirent struct, Namlen uint16 +pkg syscall (darwin-arm64), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-arm64), type Dirent struct, Reclen uint16 +pkg syscall (darwin-arm64), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-arm64), type Dirent struct, Type uint8 +pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct +pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Length uint64 +pkg syscall (darwin-arm64), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-arm64), type FdSet struct +pkg syscall (darwin-arm64), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-arm64), type Flock_t struct +pkg syscall (darwin-arm64), type Flock_t struct, Len int64 +pkg syscall (darwin-arm64), type Flock_t struct, Pid int32 +pkg syscall (darwin-arm64), type Flock_t struct, Start int64 +pkg syscall (darwin-arm64), type Flock_t struct, Type int16 +pkg syscall (darwin-arm64), type Flock_t struct, Whence int16 +pkg syscall (darwin-arm64), type Fsid struct +pkg syscall (darwin-arm64), type Fsid struct, Val [2]int32 +pkg syscall (darwin-arm64), type Fstore_t struct +pkg syscall (darwin-arm64), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-arm64), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-arm64), type Fstore_t struct, Length int64 +pkg syscall (darwin-arm64), type Fstore_t struct, Offset int64 +pkg syscall (darwin-arm64), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-arm64), type ICMPv6Filter struct +pkg syscall (darwin-arm64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-arm64), type IPv6MTUInfo struct +pkg syscall (darwin-arm64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-arm64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (darwin-arm64), type IfData struct +pkg syscall (darwin-arm64), type IfData struct, Addrlen uint8 +pkg syscall (darwin-arm64), type IfData struct, Baudrate uint32 +pkg syscall (darwin-arm64), type IfData struct, Collisions uint32 +pkg syscall (darwin-arm64), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-arm64), type IfData struct, Hwassist uint32 +pkg syscall (darwin-arm64), type IfData struct, Ibytes uint32 +pkg syscall (darwin-arm64), type IfData struct, Ierrors uint32 +pkg syscall (darwin-arm64), type IfData struct, Imcasts uint32 +pkg syscall (darwin-arm64), type IfData struct, Ipackets uint32 +pkg syscall (darwin-arm64), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-arm64), type IfData struct, Lastchange Timeval32 +pkg syscall (darwin-arm64), type IfData struct, Metric uint32 +pkg syscall (darwin-arm64), type IfData struct, Mtu uint32 +pkg syscall (darwin-arm64), type IfData struct, Noproto uint32 +pkg syscall (darwin-arm64), type IfData struct, Obytes uint32 +pkg syscall (darwin-arm64), type IfData struct, Oerrors uint32 +pkg syscall (darwin-arm64), type IfData struct, Omcasts uint32 +pkg syscall (darwin-arm64), type IfData struct, Opackets uint32 +pkg syscall (darwin-arm64), type IfData struct, Physical uint8 +pkg syscall (darwin-arm64), type IfData struct, Recvquota uint8 +pkg syscall (darwin-arm64), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-arm64), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-arm64), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-arm64), type IfData struct, Type uint8 +pkg syscall (darwin-arm64), type IfData struct, Typelen uint8 +pkg syscall (darwin-arm64), type IfData struct, Unused1 uint8 +pkg syscall (darwin-arm64), type IfData struct, Unused2 uint32 +pkg syscall (darwin-arm64), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-arm64), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-arm64), type IfMsghdr struct +pkg syscall (darwin-arm64), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64), type IfMsghdr struct, Data IfData +pkg syscall (darwin-arm64), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-arm64), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-arm64), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-arm64), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-arm64), type IfaMsghdr struct +pkg syscall (darwin-arm64), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-arm64), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr struct +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-arm64), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-arm64), type Inet4Pktinfo struct +pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-arm64), type Inet6Pktinfo struct +pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-arm64), type InterfaceAddrMessage //deprecated +pkg syscall (darwin-arm64), type InterfaceAddrMessage struct +pkg syscall (darwin-arm64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-arm64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-arm64), type InterfaceMessage //deprecated +pkg syscall (darwin-arm64), type InterfaceMessage struct +pkg syscall (darwin-arm64), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-arm64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-arm64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-arm64), type Iovec struct +pkg syscall (darwin-arm64), type Iovec struct, Base *uint8 +pkg syscall (darwin-arm64), type Iovec struct, Len uint64 +pkg syscall (darwin-arm64), type Kevent_t struct +pkg syscall (darwin-arm64), type Kevent_t struct, Data int64 +pkg syscall (darwin-arm64), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-arm64), type Kevent_t struct, Filter int16 +pkg syscall (darwin-arm64), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-arm64), type Kevent_t struct, Ident uint64 +pkg syscall (darwin-arm64), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-arm64), type Log2phys_t struct +pkg syscall (darwin-arm64), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-arm64), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-arm64), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-arm64), type Msghdr struct +pkg syscall (darwin-arm64), type Msghdr struct, Control *uint8 +pkg syscall (darwin-arm64), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-arm64), type Msghdr struct, Flags int32 +pkg syscall (darwin-arm64), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-arm64), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-arm64), type Msghdr struct, Name *uint8 +pkg syscall (darwin-arm64), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-arm64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (darwin-arm64), type Radvisory_t struct +pkg syscall (darwin-arm64), type Radvisory_t struct, Count int32 +pkg syscall (darwin-arm64), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-arm64), type Radvisory_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-arm64), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-arm64), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-arm64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-arm64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-arm64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-arm64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-arm64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-arm64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-arm64), type Rlimit struct +pkg syscall (darwin-arm64), type Rlimit struct, Cur uint64 +pkg syscall (darwin-arm64), type Rlimit struct, Max uint64 +pkg syscall (darwin-arm64), type RouteMessage //deprecated +pkg syscall (darwin-arm64), type RouteMessage struct +pkg syscall (darwin-arm64), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-arm64), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-arm64), type RoutingMessage //deprecated +pkg syscall (darwin-arm64), type RoutingMessage interface, unexported methods +pkg syscall (darwin-arm64), type RtMetrics struct +pkg syscall (darwin-arm64), type RtMetrics struct, Expire int32 +pkg syscall (darwin-arm64), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-arm64), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-arm64), type RtMsghdr struct +pkg syscall (darwin-arm64), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-arm64), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-arm64), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-arm64), type RtMsghdr struct, Use int32 +pkg syscall (darwin-arm64), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-arm64), type Rusage struct, Idrss int64 +pkg syscall (darwin-arm64), type Rusage struct, Inblock int64 +pkg syscall (darwin-arm64), type Rusage struct, Isrss int64 +pkg syscall (darwin-arm64), type Rusage struct, Ixrss int64 +pkg syscall (darwin-arm64), type Rusage struct, Majflt int64 +pkg syscall (darwin-arm64), type Rusage struct, Maxrss int64 +pkg syscall (darwin-arm64), type Rusage struct, Minflt int64 +pkg syscall (darwin-arm64), type Rusage struct, Msgrcv int64 +pkg syscall (darwin-arm64), type Rusage struct, Msgsnd int64 +pkg syscall (darwin-arm64), type Rusage struct, Nivcsw int64 +pkg syscall (darwin-arm64), type Rusage struct, Nsignals int64 +pkg syscall (darwin-arm64), type Rusage struct, Nswap int64 +pkg syscall (darwin-arm64), type Rusage struct, Nvcsw int64 +pkg syscall (darwin-arm64), type Rusage struct, Oublock int64 +pkg syscall (darwin-arm64), type Rusage struct, Stime Timeval +pkg syscall (darwin-arm64), type Rusage struct, Utime Timeval +pkg syscall (darwin-arm64), type SockaddrDatalink struct +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-arm64), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-arm64), type SocketControlMessage struct +pkg syscall (darwin-arm64), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-arm64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-arm64), type Stat_t struct +pkg syscall (darwin-arm64), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-arm64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-arm64), type Stat_t struct, Blksize int32 +pkg syscall (darwin-arm64), type Stat_t struct, Blocks int64 +pkg syscall (darwin-arm64), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-arm64), type Stat_t struct, Dev int32 +pkg syscall (darwin-arm64), type Stat_t struct, Flags uint32 +pkg syscall (darwin-arm64), type Stat_t struct, Gen uint32 +pkg syscall (darwin-arm64), type Stat_t struct, Gid uint32 +pkg syscall (darwin-arm64), type Stat_t struct, Ino uint64 +pkg syscall (darwin-arm64), type Stat_t struct, Lspare int32 +pkg syscall (darwin-arm64), type Stat_t struct, Mode uint16 +pkg syscall (darwin-arm64), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-arm64), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-arm64), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-arm64), type Stat_t struct, Rdev int32 +pkg syscall (darwin-arm64), type Stat_t struct, Size int64 +pkg syscall (darwin-arm64), type Stat_t struct, Uid uint32 +pkg syscall (darwin-arm64), type Statfs_t struct +pkg syscall (darwin-arm64), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-arm64), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-arm64), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-arm64), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-arm64), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-arm64), type Statfs_t struct, Files uint64 +pkg syscall (darwin-arm64), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-arm64), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-arm64), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-arm64), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-arm64), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-arm64), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-arm64), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-arm64), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-arm64), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-arm64), type Statfs_t struct, Type uint32 +pkg syscall (darwin-arm64), type SysProcAttr struct, Chroot string +pkg syscall (darwin-arm64), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-arm64), type SysProcAttr struct, Ctty int +pkg syscall (darwin-arm64), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-arm64), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-arm64), type SysProcAttr struct, Pgid int +pkg syscall (darwin-arm64), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-arm64), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-arm64), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-arm64), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-arm64), type Termios struct +pkg syscall (darwin-arm64), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-arm64), type Termios struct, Cflag uint64 +pkg syscall (darwin-arm64), type Termios struct, Iflag uint64 +pkg syscall (darwin-arm64), type Termios struct, Ispeed uint64 +pkg syscall (darwin-arm64), type Termios struct, Lflag uint64 +pkg syscall (darwin-arm64), type Termios struct, Oflag uint64 +pkg syscall (darwin-arm64), type Termios struct, Ospeed uint64 +pkg syscall (darwin-arm64), type Termios struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type Timespec struct, Nsec int64 +pkg syscall (darwin-arm64), type Timespec struct, Sec int64 +pkg syscall (darwin-arm64), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64), type Timeval struct, Sec int64 +pkg syscall (darwin-arm64), type Timeval struct, Usec int32 +pkg syscall (darwin-arm64), type Timeval32 struct +pkg syscall (darwin-arm64), type Timeval32 struct, Sec int32 +pkg syscall (darwin-arm64), type Timeval32 struct, Usec int32 +pkg syscall (darwin-arm64), type WaitStatus uint32 +pkg syscall (darwin-arm64), var Stderr int +pkg syscall (darwin-arm64), var Stdin int +pkg syscall (darwin-arm64), var Stdout int +pkg syscall (darwin-arm64-cgo), const AF_APPLETALK = 16 +pkg syscall (darwin-arm64-cgo), const AF_APPLETALK ideal-int +pkg syscall (darwin-arm64-cgo), const AF_CCITT = 10 +pkg syscall (darwin-arm64-cgo), const AF_CCITT ideal-int +pkg syscall (darwin-arm64-cgo), const AF_CHAOS = 5 +pkg syscall (darwin-arm64-cgo), const AF_CHAOS ideal-int +pkg syscall (darwin-arm64-cgo), const AF_CNT = 21 +pkg syscall (darwin-arm64-cgo), const AF_CNT ideal-int +pkg syscall (darwin-arm64-cgo), const AF_COIP = 20 +pkg syscall (darwin-arm64-cgo), const AF_COIP ideal-int +pkg syscall (darwin-arm64-cgo), const AF_DATAKIT = 9 +pkg syscall (darwin-arm64-cgo), const AF_DATAKIT ideal-int +pkg syscall (darwin-arm64-cgo), const AF_DECnet = 12 +pkg syscall (darwin-arm64-cgo), const AF_DECnet ideal-int +pkg syscall (darwin-arm64-cgo), const AF_DLI = 13 +pkg syscall (darwin-arm64-cgo), const AF_DLI ideal-int +pkg syscall (darwin-arm64-cgo), const AF_E164 = 28 +pkg syscall (darwin-arm64-cgo), const AF_E164 ideal-int +pkg syscall (darwin-arm64-cgo), const AF_ECMA = 8 +pkg syscall (darwin-arm64-cgo), const AF_ECMA ideal-int +pkg syscall (darwin-arm64-cgo), const AF_HYLINK = 15 +pkg syscall (darwin-arm64-cgo), const AF_HYLINK ideal-int +pkg syscall (darwin-arm64-cgo), const AF_IEEE80211 = 37 +pkg syscall (darwin-arm64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (darwin-arm64-cgo), const AF_IMPLINK = 3 +pkg syscall (darwin-arm64-cgo), const AF_IMPLINK ideal-int +pkg syscall (darwin-arm64-cgo), const AF_INET6 = 30 +pkg syscall (darwin-arm64-cgo), const AF_IPX = 23 +pkg syscall (darwin-arm64-cgo), const AF_IPX ideal-int +pkg syscall (darwin-arm64-cgo), const AF_ISDN = 28 +pkg syscall (darwin-arm64-cgo), const AF_ISDN ideal-int +pkg syscall (darwin-arm64-cgo), const AF_ISO = 7 +pkg syscall (darwin-arm64-cgo), const AF_ISO ideal-int +pkg syscall (darwin-arm64-cgo), const AF_LAT = 14 +pkg syscall (darwin-arm64-cgo), const AF_LAT ideal-int +pkg syscall (darwin-arm64-cgo), const AF_LINK = 18 +pkg syscall (darwin-arm64-cgo), const AF_LINK ideal-int +pkg syscall (darwin-arm64-cgo), const AF_LOCAL = 1 +pkg syscall (darwin-arm64-cgo), const AF_LOCAL ideal-int +pkg syscall (darwin-arm64-cgo), const AF_MAX = 40 +pkg syscall (darwin-arm64-cgo), const AF_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const AF_NATM = 31 +pkg syscall (darwin-arm64-cgo), const AF_NATM ideal-int +pkg syscall (darwin-arm64-cgo), const AF_NDRV = 27 +pkg syscall (darwin-arm64-cgo), const AF_NDRV ideal-int +pkg syscall (darwin-arm64-cgo), const AF_NETBIOS = 33 +pkg syscall (darwin-arm64-cgo), const AF_NETBIOS ideal-int +pkg syscall (darwin-arm64-cgo), const AF_NS = 6 +pkg syscall (darwin-arm64-cgo), const AF_NS ideal-int +pkg syscall (darwin-arm64-cgo), const AF_OSI = 7 +pkg syscall (darwin-arm64-cgo), const AF_OSI ideal-int +pkg syscall (darwin-arm64-cgo), const AF_PPP = 34 +pkg syscall (darwin-arm64-cgo), const AF_PPP ideal-int +pkg syscall (darwin-arm64-cgo), const AF_PUP = 4 +pkg syscall (darwin-arm64-cgo), const AF_PUP ideal-int +pkg syscall (darwin-arm64-cgo), const AF_RESERVED_36 = 36 +pkg syscall (darwin-arm64-cgo), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-arm64-cgo), const AF_ROUTE = 17 +pkg syscall (darwin-arm64-cgo), const AF_ROUTE ideal-int +pkg syscall (darwin-arm64-cgo), const AF_SIP = 24 +pkg syscall (darwin-arm64-cgo), const AF_SIP ideal-int +pkg syscall (darwin-arm64-cgo), const AF_SNA = 11 +pkg syscall (darwin-arm64-cgo), const AF_SNA ideal-int +pkg syscall (darwin-arm64-cgo), const AF_SYSTEM = 32 +pkg syscall (darwin-arm64-cgo), const AF_SYSTEM ideal-int +pkg syscall (darwin-arm64-cgo), const AF_UTUN = 38 +pkg syscall (darwin-arm64-cgo), const AF_UTUN ideal-int +pkg syscall (darwin-arm64-cgo), const B0 = 0 +pkg syscall (darwin-arm64-cgo), const B0 ideal-int +pkg syscall (darwin-arm64-cgo), const B110 = 110 +pkg syscall (darwin-arm64-cgo), const B110 ideal-int +pkg syscall (darwin-arm64-cgo), const B115200 = 115200 +pkg syscall (darwin-arm64-cgo), const B115200 ideal-int +pkg syscall (darwin-arm64-cgo), const B1200 = 1200 +pkg syscall (darwin-arm64-cgo), const B1200 ideal-int +pkg syscall (darwin-arm64-cgo), const B134 = 134 +pkg syscall (darwin-arm64-cgo), const B134 ideal-int +pkg syscall (darwin-arm64-cgo), const B14400 = 14400 +pkg syscall (darwin-arm64-cgo), const B14400 ideal-int +pkg syscall (darwin-arm64-cgo), const B150 = 150 +pkg syscall (darwin-arm64-cgo), const B150 ideal-int +pkg syscall (darwin-arm64-cgo), const B1800 = 1800 +pkg syscall (darwin-arm64-cgo), const B1800 ideal-int +pkg syscall (darwin-arm64-cgo), const B19200 = 19200 +pkg syscall (darwin-arm64-cgo), const B19200 ideal-int +pkg syscall (darwin-arm64-cgo), const B200 = 200 +pkg syscall (darwin-arm64-cgo), const B200 ideal-int +pkg syscall (darwin-arm64-cgo), const B230400 = 230400 +pkg syscall (darwin-arm64-cgo), const B230400 ideal-int +pkg syscall (darwin-arm64-cgo), const B2400 = 2400 +pkg syscall (darwin-arm64-cgo), const B2400 ideal-int +pkg syscall (darwin-arm64-cgo), const B28800 = 28800 +pkg syscall (darwin-arm64-cgo), const B28800 ideal-int +pkg syscall (darwin-arm64-cgo), const B300 = 300 +pkg syscall (darwin-arm64-cgo), const B300 ideal-int +pkg syscall (darwin-arm64-cgo), const B38400 = 38400 +pkg syscall (darwin-arm64-cgo), const B38400 ideal-int +pkg syscall (darwin-arm64-cgo), const B4800 = 4800 +pkg syscall (darwin-arm64-cgo), const B4800 ideal-int +pkg syscall (darwin-arm64-cgo), const B50 = 50 +pkg syscall (darwin-arm64-cgo), const B50 ideal-int +pkg syscall (darwin-arm64-cgo), const B57600 = 57600 +pkg syscall (darwin-arm64-cgo), const B57600 ideal-int +pkg syscall (darwin-arm64-cgo), const B600 = 600 +pkg syscall (darwin-arm64-cgo), const B600 ideal-int +pkg syscall (darwin-arm64-cgo), const B7200 = 7200 +pkg syscall (darwin-arm64-cgo), const B7200 ideal-int +pkg syscall (darwin-arm64-cgo), const B75 = 75 +pkg syscall (darwin-arm64-cgo), const B75 ideal-int +pkg syscall (darwin-arm64-cgo), const B76800 = 76800 +pkg syscall (darwin-arm64-cgo), const B76800 ideal-int +pkg syscall (darwin-arm64-cgo), const B9600 = 9600 +pkg syscall (darwin-arm64-cgo), const B9600 ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCFLUSH = 536887912 +pkg syscall (darwin-arm64-cgo), const BIOCFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGBLEN = 1074020966 +pkg syscall (darwin-arm64-cgo), const BIOCGBLEN ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGDLT = 1074020970 +pkg syscall (darwin-arm64-cgo), const BIOCGDLT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGDLTLIST = 3222028921 +pkg syscall (darwin-arm64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGETIF = 1075855979 +pkg syscall (darwin-arm64-cgo), const BIOCGETIF ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGHDRCMPLT = 1074020980 +pkg syscall (darwin-arm64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGRSIG = 1074020978 +pkg syscall (darwin-arm64-cgo), const BIOCGRSIG ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (darwin-arm64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGSEESENT = 1074020982 +pkg syscall (darwin-arm64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCGSTATS = 1074283119 +pkg syscall (darwin-arm64-cgo), const BIOCGSTATS ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCIMMEDIATE = 2147762800 +pkg syscall (darwin-arm64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCPROMISC = 536887913 +pkg syscall (darwin-arm64-cgo), const BIOCPROMISC ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSBLEN = 3221504614 +pkg syscall (darwin-arm64-cgo), const BIOCSBLEN ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSDLT = 2147762808 +pkg syscall (darwin-arm64-cgo), const BIOCSDLT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSETF = 2148549223 +pkg syscall (darwin-arm64-cgo), const BIOCSETF ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSETIF = 2149597804 +pkg syscall (darwin-arm64-cgo), const BIOCSETIF ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSHDRCMPLT = 2147762805 +pkg syscall (darwin-arm64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSRSIG = 2147762803 +pkg syscall (darwin-arm64-cgo), const BIOCSRSIG ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (darwin-arm64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCSSEESENT = 2147762807 +pkg syscall (darwin-arm64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (darwin-arm64-cgo), const BIOCVERSION = 1074020977 +pkg syscall (darwin-arm64-cgo), const BIOCVERSION ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_A = 16 +pkg syscall (darwin-arm64-cgo), const BPF_A ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_ABS = 32 +pkg syscall (darwin-arm64-cgo), const BPF_ABS ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_ADD = 0 +pkg syscall (darwin-arm64-cgo), const BPF_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_ALIGNMENT = 4 +pkg syscall (darwin-arm64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_ALU = 4 +pkg syscall (darwin-arm64-cgo), const BPF_ALU ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_AND = 80 +pkg syscall (darwin-arm64-cgo), const BPF_AND ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_B = 16 +pkg syscall (darwin-arm64-cgo), const BPF_B ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_DIV = 48 +pkg syscall (darwin-arm64-cgo), const BPF_DIV ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_H = 8 +pkg syscall (darwin-arm64-cgo), const BPF_H ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_IMM = 0 +pkg syscall (darwin-arm64-cgo), const BPF_IMM ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_IND = 64 +pkg syscall (darwin-arm64-cgo), const BPF_IND ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JA = 0 +pkg syscall (darwin-arm64-cgo), const BPF_JA ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JEQ = 16 +pkg syscall (darwin-arm64-cgo), const BPF_JEQ ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JGE = 48 +pkg syscall (darwin-arm64-cgo), const BPF_JGE ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JGT = 32 +pkg syscall (darwin-arm64-cgo), const BPF_JGT ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JMP = 5 +pkg syscall (darwin-arm64-cgo), const BPF_JMP ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_JSET = 64 +pkg syscall (darwin-arm64-cgo), const BPF_JSET ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_K = 0 +pkg syscall (darwin-arm64-cgo), const BPF_K ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_LD = 0 +pkg syscall (darwin-arm64-cgo), const BPF_LD ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_LDX = 1 +pkg syscall (darwin-arm64-cgo), const BPF_LDX ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_LEN = 128 +pkg syscall (darwin-arm64-cgo), const BPF_LEN ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_LSH = 96 +pkg syscall (darwin-arm64-cgo), const BPF_LSH ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MAJOR_VERSION = 1 +pkg syscall (darwin-arm64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MAXBUFSIZE = 524288 +pkg syscall (darwin-arm64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MAXINSNS = 512 +pkg syscall (darwin-arm64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MEM = 96 +pkg syscall (darwin-arm64-cgo), const BPF_MEM ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MEMWORDS = 16 +pkg syscall (darwin-arm64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MINBUFSIZE = 32 +pkg syscall (darwin-arm64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MINOR_VERSION = 1 +pkg syscall (darwin-arm64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MISC = 7 +pkg syscall (darwin-arm64-cgo), const BPF_MISC ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MSH = 160 +pkg syscall (darwin-arm64-cgo), const BPF_MSH ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_MUL = 32 +pkg syscall (darwin-arm64-cgo), const BPF_MUL ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_NEG = 128 +pkg syscall (darwin-arm64-cgo), const BPF_NEG ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_OR = 64 +pkg syscall (darwin-arm64-cgo), const BPF_OR ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_RELEASE = 199606 +pkg syscall (darwin-arm64-cgo), const BPF_RELEASE ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_RET = 6 +pkg syscall (darwin-arm64-cgo), const BPF_RET ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_RSH = 112 +pkg syscall (darwin-arm64-cgo), const BPF_RSH ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_ST = 2 +pkg syscall (darwin-arm64-cgo), const BPF_ST ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_STX = 3 +pkg syscall (darwin-arm64-cgo), const BPF_STX ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_SUB = 16 +pkg syscall (darwin-arm64-cgo), const BPF_SUB ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_TAX = 0 +pkg syscall (darwin-arm64-cgo), const BPF_TAX ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_TXA = 128 +pkg syscall (darwin-arm64-cgo), const BPF_TXA ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_W = 0 +pkg syscall (darwin-arm64-cgo), const BPF_W ideal-int +pkg syscall (darwin-arm64-cgo), const BPF_X = 8 +pkg syscall (darwin-arm64-cgo), const BPF_X ideal-int +pkg syscall (darwin-arm64-cgo), const BRKINT = 2 +pkg syscall (darwin-arm64-cgo), const BRKINT ideal-int +pkg syscall (darwin-arm64-cgo), const CFLUSH = 15 +pkg syscall (darwin-arm64-cgo), const CFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const CLOCAL = 32768 +pkg syscall (darwin-arm64-cgo), const CLOCAL ideal-int +pkg syscall (darwin-arm64-cgo), const CREAD = 2048 +pkg syscall (darwin-arm64-cgo), const CREAD ideal-int +pkg syscall (darwin-arm64-cgo), const CS5 = 0 +pkg syscall (darwin-arm64-cgo), const CS5 ideal-int +pkg syscall (darwin-arm64-cgo), const CS6 = 256 +pkg syscall (darwin-arm64-cgo), const CS6 ideal-int +pkg syscall (darwin-arm64-cgo), const CS7 = 512 +pkg syscall (darwin-arm64-cgo), const CS7 ideal-int +pkg syscall (darwin-arm64-cgo), const CS8 = 768 +pkg syscall (darwin-arm64-cgo), const CS8 ideal-int +pkg syscall (darwin-arm64-cgo), const CSIZE = 768 +pkg syscall (darwin-arm64-cgo), const CSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const CSTART = 17 +pkg syscall (darwin-arm64-cgo), const CSTART ideal-int +pkg syscall (darwin-arm64-cgo), const CSTATUS = 20 +pkg syscall (darwin-arm64-cgo), const CSTATUS ideal-int +pkg syscall (darwin-arm64-cgo), const CSTOP = 19 +pkg syscall (darwin-arm64-cgo), const CSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const CSTOPB = 1024 +pkg syscall (darwin-arm64-cgo), const CSTOPB ideal-int +pkg syscall (darwin-arm64-cgo), const CSUSP = 26 +pkg syscall (darwin-arm64-cgo), const CSUSP ideal-int +pkg syscall (darwin-arm64-cgo), const CTL_MAXNAME = 12 +pkg syscall (darwin-arm64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (darwin-arm64-cgo), const CTL_NET = 4 +pkg syscall (darwin-arm64-cgo), const CTL_NET ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 +pkg syscall (darwin-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_ARCNET = 7 +pkg syscall (darwin-arm64-cgo), const DLT_ARCNET ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_ATM_CLIP = 19 +pkg syscall (darwin-arm64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_ATM_RFC1483 = 11 +pkg syscall (darwin-arm64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_AX25 = 3 +pkg syscall (darwin-arm64-cgo), const DLT_AX25 ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_CHAOS = 5 +pkg syscall (darwin-arm64-cgo), const DLT_CHAOS ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_CHDLC = 104 +pkg syscall (darwin-arm64-cgo), const DLT_CHDLC ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_C_HDLC = 104 +pkg syscall (darwin-arm64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_EN10MB = 1 +pkg syscall (darwin-arm64-cgo), const DLT_EN10MB ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_EN3MB = 2 +pkg syscall (darwin-arm64-cgo), const DLT_EN3MB ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_FDDI = 10 +pkg syscall (darwin-arm64-cgo), const DLT_FDDI ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802 = 6 +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11 = 105 +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO = 127 +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 +pkg syscall (darwin-arm64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_LINUX_SLL = 113 +pkg syscall (darwin-arm64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_LOOP = 108 +pkg syscall (darwin-arm64-cgo), const DLT_LOOP ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_NULL = 0 +pkg syscall (darwin-arm64-cgo), const DLT_NULL ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PFLOG = 117 +pkg syscall (darwin-arm64-cgo), const DLT_PFLOG ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PFSYNC = 18 +pkg syscall (darwin-arm64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PPP = 9 +pkg syscall (darwin-arm64-cgo), const DLT_PPP ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PPP_BSDOS = 16 +pkg syscall (darwin-arm64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PPP_SERIAL = 50 +pkg syscall (darwin-arm64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_PRONET = 4 +pkg syscall (darwin-arm64-cgo), const DLT_PRONET ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_RAW = 12 +pkg syscall (darwin-arm64-cgo), const DLT_RAW ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_SLIP = 8 +pkg syscall (darwin-arm64-cgo), const DLT_SLIP ideal-int +pkg syscall (darwin-arm64-cgo), const DLT_SLIP_BSDOS = 15 +pkg syscall (darwin-arm64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-arm64-cgo), const DT_BLK = 6 +pkg syscall (darwin-arm64-cgo), const DT_BLK ideal-int +pkg syscall (darwin-arm64-cgo), const DT_CHR = 2 +pkg syscall (darwin-arm64-cgo), const DT_CHR ideal-int +pkg syscall (darwin-arm64-cgo), const DT_DIR = 4 +pkg syscall (darwin-arm64-cgo), const DT_DIR ideal-int +pkg syscall (darwin-arm64-cgo), const DT_FIFO = 1 +pkg syscall (darwin-arm64-cgo), const DT_FIFO ideal-int +pkg syscall (darwin-arm64-cgo), const DT_LNK = 10 +pkg syscall (darwin-arm64-cgo), const DT_LNK ideal-int +pkg syscall (darwin-arm64-cgo), const DT_REG = 8 +pkg syscall (darwin-arm64-cgo), const DT_REG ideal-int +pkg syscall (darwin-arm64-cgo), const DT_SOCK = 12 +pkg syscall (darwin-arm64-cgo), const DT_SOCK ideal-int +pkg syscall (darwin-arm64-cgo), const DT_UNKNOWN = 0 +pkg syscall (darwin-arm64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (darwin-arm64-cgo), const DT_WHT = 14 +pkg syscall (darwin-arm64-cgo), const DT_WHT ideal-int +pkg syscall (darwin-arm64-cgo), const E2BIG = 7 +pkg syscall (darwin-arm64-cgo), const EACCES = 13 +pkg syscall (darwin-arm64-cgo), const EADDRINUSE = 48 +pkg syscall (darwin-arm64-cgo), const EADDRNOTAVAIL = 49 +pkg syscall (darwin-arm64-cgo), const EAFNOSUPPORT = 47 +pkg syscall (darwin-arm64-cgo), const EAGAIN = 35 +pkg syscall (darwin-arm64-cgo), const EALREADY = 37 +pkg syscall (darwin-arm64-cgo), const EAUTH = 80 +pkg syscall (darwin-arm64-cgo), const EAUTH Errno +pkg syscall (darwin-arm64-cgo), const EBADARCH = 86 +pkg syscall (darwin-arm64-cgo), const EBADARCH Errno +pkg syscall (darwin-arm64-cgo), const EBADEXEC = 85 +pkg syscall (darwin-arm64-cgo), const EBADEXEC Errno +pkg syscall (darwin-arm64-cgo), const EBADF = 9 +pkg syscall (darwin-arm64-cgo), const EBADMACHO = 88 +pkg syscall (darwin-arm64-cgo), const EBADMACHO Errno +pkg syscall (darwin-arm64-cgo), const EBADMSG = 94 +pkg syscall (darwin-arm64-cgo), const EBADMSG Errno +pkg syscall (darwin-arm64-cgo), const EBADRPC = 72 +pkg syscall (darwin-arm64-cgo), const EBADRPC Errno +pkg syscall (darwin-arm64-cgo), const EBUSY = 16 +pkg syscall (darwin-arm64-cgo), const ECANCELED = 89 +pkg syscall (darwin-arm64-cgo), const ECHILD = 10 +pkg syscall (darwin-arm64-cgo), const ECHO = 8 +pkg syscall (darwin-arm64-cgo), const ECHO ideal-int +pkg syscall (darwin-arm64-cgo), const ECHOCTL = 64 +pkg syscall (darwin-arm64-cgo), const ECHOCTL ideal-int +pkg syscall (darwin-arm64-cgo), const ECHOE = 2 +pkg syscall (darwin-arm64-cgo), const ECHOE ideal-int +pkg syscall (darwin-arm64-cgo), const ECHOK = 4 +pkg syscall (darwin-arm64-cgo), const ECHOK ideal-int +pkg syscall (darwin-arm64-cgo), const ECHOKE = 1 +pkg syscall (darwin-arm64-cgo), const ECHOKE ideal-int +pkg syscall (darwin-arm64-cgo), const ECHONL = 16 +pkg syscall (darwin-arm64-cgo), const ECHONL ideal-int +pkg syscall (darwin-arm64-cgo), const ECHOPRT = 32 +pkg syscall (darwin-arm64-cgo), const ECHOPRT ideal-int +pkg syscall (darwin-arm64-cgo), const ECONNABORTED = 53 +pkg syscall (darwin-arm64-cgo), const ECONNREFUSED = 61 +pkg syscall (darwin-arm64-cgo), const ECONNRESET = 54 +pkg syscall (darwin-arm64-cgo), const EDEADLK = 11 +pkg syscall (darwin-arm64-cgo), const EDESTADDRREQ = 39 +pkg syscall (darwin-arm64-cgo), const EDEVERR = 83 +pkg syscall (darwin-arm64-cgo), const EDEVERR Errno +pkg syscall (darwin-arm64-cgo), const EDOM = 33 +pkg syscall (darwin-arm64-cgo), const EDQUOT = 69 +pkg syscall (darwin-arm64-cgo), const EEXIST = 17 +pkg syscall (darwin-arm64-cgo), const EFAULT = 14 +pkg syscall (darwin-arm64-cgo), const EFBIG = 27 +pkg syscall (darwin-arm64-cgo), const EFTYPE = 79 +pkg syscall (darwin-arm64-cgo), const EFTYPE Errno +pkg syscall (darwin-arm64-cgo), const EHOSTDOWN = 64 +pkg syscall (darwin-arm64-cgo), const EHOSTUNREACH = 65 +pkg syscall (darwin-arm64-cgo), const EIDRM = 90 +pkg syscall (darwin-arm64-cgo), const EILSEQ = 92 +pkg syscall (darwin-arm64-cgo), const EINPROGRESS = 36 +pkg syscall (darwin-arm64-cgo), const EINTR = 4 +pkg syscall (darwin-arm64-cgo), const EINVAL = 22 +pkg syscall (darwin-arm64-cgo), const EIO = 5 +pkg syscall (darwin-arm64-cgo), const EISCONN = 56 +pkg syscall (darwin-arm64-cgo), const EISDIR = 21 +pkg syscall (darwin-arm64-cgo), const ELAST = 106 +pkg syscall (darwin-arm64-cgo), const ELAST Errno +pkg syscall (darwin-arm64-cgo), const ELOOP = 62 +pkg syscall (darwin-arm64-cgo), const EMFILE = 24 +pkg syscall (darwin-arm64-cgo), const EMLINK = 31 +pkg syscall (darwin-arm64-cgo), const EMSGSIZE = 40 +pkg syscall (darwin-arm64-cgo), const EMULTIHOP = 95 +pkg syscall (darwin-arm64-cgo), const EMULTIHOP Errno +pkg syscall (darwin-arm64-cgo), const ENAMETOOLONG = 63 +pkg syscall (darwin-arm64-cgo), const ENEEDAUTH = 81 +pkg syscall (darwin-arm64-cgo), const ENEEDAUTH Errno +pkg syscall (darwin-arm64-cgo), const ENETDOWN = 50 +pkg syscall (darwin-arm64-cgo), const ENETRESET = 52 +pkg syscall (darwin-arm64-cgo), const ENETUNREACH = 51 +pkg syscall (darwin-arm64-cgo), const ENFILE = 23 +pkg syscall (darwin-arm64-cgo), const ENOATTR = 93 +pkg syscall (darwin-arm64-cgo), const ENOATTR Errno +pkg syscall (darwin-arm64-cgo), const ENOBUFS = 55 +pkg syscall (darwin-arm64-cgo), const ENODATA = 96 +pkg syscall (darwin-arm64-cgo), const ENODATA Errno +pkg syscall (darwin-arm64-cgo), const ENODEV = 19 +pkg syscall (darwin-arm64-cgo), const ENOEXEC = 8 +pkg syscall (darwin-arm64-cgo), const ENOLCK = 77 +pkg syscall (darwin-arm64-cgo), const ENOLINK = 97 +pkg syscall (darwin-arm64-cgo), const ENOLINK Errno +pkg syscall (darwin-arm64-cgo), const ENOMEM = 12 +pkg syscall (darwin-arm64-cgo), const ENOMSG = 91 +pkg syscall (darwin-arm64-cgo), const ENOPOLICY = 103 +pkg syscall (darwin-arm64-cgo), const ENOPOLICY Errno +pkg syscall (darwin-arm64-cgo), const ENOPROTOOPT = 42 +pkg syscall (darwin-arm64-cgo), const ENOSPC = 28 +pkg syscall (darwin-arm64-cgo), const ENOSR = 98 +pkg syscall (darwin-arm64-cgo), const ENOSR Errno +pkg syscall (darwin-arm64-cgo), const ENOSTR = 99 +pkg syscall (darwin-arm64-cgo), const ENOSTR Errno +pkg syscall (darwin-arm64-cgo), const ENOSYS = 78 +pkg syscall (darwin-arm64-cgo), const ENOTBLK = 15 +pkg syscall (darwin-arm64-cgo), const ENOTCONN = 57 +pkg syscall (darwin-arm64-cgo), const ENOTDIR = 20 +pkg syscall (darwin-arm64-cgo), const ENOTEMPTY = 66 +pkg syscall (darwin-arm64-cgo), const ENOTRECOVERABLE = 104 +pkg syscall (darwin-arm64-cgo), const ENOTRECOVERABLE Errno +pkg syscall (darwin-arm64-cgo), const ENOTSOCK = 38 +pkg syscall (darwin-arm64-cgo), const ENOTSUP = 45 +pkg syscall (darwin-arm64-cgo), const ENOTTY = 25 +pkg syscall (darwin-arm64-cgo), const ENXIO = 6 +pkg syscall (darwin-arm64-cgo), const EOPNOTSUPP = 102 +pkg syscall (darwin-arm64-cgo), const EOVERFLOW = 84 +pkg syscall (darwin-arm64-cgo), const EOWNERDEAD = 105 +pkg syscall (darwin-arm64-cgo), const EOWNERDEAD Errno +pkg syscall (darwin-arm64-cgo), const EPERM = 1 +pkg syscall (darwin-arm64-cgo), const EPFNOSUPPORT = 46 +pkg syscall (darwin-arm64-cgo), const EPIPE = 32 +pkg syscall (darwin-arm64-cgo), const EPROCLIM = 67 +pkg syscall (darwin-arm64-cgo), const EPROCLIM Errno +pkg syscall (darwin-arm64-cgo), const EPROCUNAVAIL = 76 +pkg syscall (darwin-arm64-cgo), const EPROCUNAVAIL Errno +pkg syscall (darwin-arm64-cgo), const EPROGMISMATCH = 75 +pkg syscall (darwin-arm64-cgo), const EPROGMISMATCH Errno +pkg syscall (darwin-arm64-cgo), const EPROGUNAVAIL = 74 +pkg syscall (darwin-arm64-cgo), const EPROGUNAVAIL Errno +pkg syscall (darwin-arm64-cgo), const EPROTO = 100 +pkg syscall (darwin-arm64-cgo), const EPROTO Errno +pkg syscall (darwin-arm64-cgo), const EPROTONOSUPPORT = 43 +pkg syscall (darwin-arm64-cgo), const EPROTOTYPE = 41 +pkg syscall (darwin-arm64-cgo), const EPWROFF = 82 +pkg syscall (darwin-arm64-cgo), const EPWROFF Errno +pkg syscall (darwin-arm64-cgo), const EQFULL = 106 +pkg syscall (darwin-arm64-cgo), const EQFULL Errno +pkg syscall (darwin-arm64-cgo), const ERANGE = 34 +pkg syscall (darwin-arm64-cgo), const EREMOTE = 71 +pkg syscall (darwin-arm64-cgo), const EROFS = 30 +pkg syscall (darwin-arm64-cgo), const ERPCMISMATCH = 73 +pkg syscall (darwin-arm64-cgo), const ERPCMISMATCH Errno +pkg syscall (darwin-arm64-cgo), const ESHLIBVERS = 87 +pkg syscall (darwin-arm64-cgo), const ESHLIBVERS Errno +pkg syscall (darwin-arm64-cgo), const ESHUTDOWN = 58 +pkg syscall (darwin-arm64-cgo), const ESOCKTNOSUPPORT = 44 +pkg syscall (darwin-arm64-cgo), const ESPIPE = 29 +pkg syscall (darwin-arm64-cgo), const ESRCH = 3 +pkg syscall (darwin-arm64-cgo), const ESTALE = 70 +pkg syscall (darwin-arm64-cgo), const ETIME = 101 +pkg syscall (darwin-arm64-cgo), const ETIME Errno +pkg syscall (darwin-arm64-cgo), const ETIMEDOUT = 60 +pkg syscall (darwin-arm64-cgo), const ETOOMANYREFS = 59 +pkg syscall (darwin-arm64-cgo), const ETXTBSY = 26 +pkg syscall (darwin-arm64-cgo), const EUSERS = 68 +pkg syscall (darwin-arm64-cgo), const EVFILT_AIO = -3 +pkg syscall (darwin-arm64-cgo), const EVFILT_AIO ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_FS = -9 +pkg syscall (darwin-arm64-cgo), const EVFILT_FS ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_MACHPORT = -8 +pkg syscall (darwin-arm64-cgo), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_PROC = -5 +pkg syscall (darwin-arm64-cgo), const EVFILT_PROC ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_READ = -1 +pkg syscall (darwin-arm64-cgo), const EVFILT_READ ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_SIGNAL = -6 +pkg syscall (darwin-arm64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_SYSCOUNT = 14 +pkg syscall (darwin-arm64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_THREADMARKER = 14 +pkg syscall (darwin-arm64-cgo), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_TIMER = -7 +pkg syscall (darwin-arm64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_USER = -10 +pkg syscall (darwin-arm64-cgo), const EVFILT_USER ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_VM = -12 +pkg syscall (darwin-arm64-cgo), const EVFILT_VM ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_VNODE = -4 +pkg syscall (darwin-arm64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (darwin-arm64-cgo), const EVFILT_WRITE = -2 +pkg syscall (darwin-arm64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (darwin-arm64-cgo), const EV_ADD = 1 +pkg syscall (darwin-arm64-cgo), const EV_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const EV_CLEAR = 32 +pkg syscall (darwin-arm64-cgo), const EV_CLEAR ideal-int +pkg syscall (darwin-arm64-cgo), const EV_DELETE = 2 +pkg syscall (darwin-arm64-cgo), const EV_DELETE ideal-int +pkg syscall (darwin-arm64-cgo), const EV_DISABLE = 8 +pkg syscall (darwin-arm64-cgo), const EV_DISABLE ideal-int +pkg syscall (darwin-arm64-cgo), const EV_DISPATCH = 128 +pkg syscall (darwin-arm64-cgo), const EV_DISPATCH ideal-int +pkg syscall (darwin-arm64-cgo), const EV_ENABLE = 4 +pkg syscall (darwin-arm64-cgo), const EV_ENABLE ideal-int +pkg syscall (darwin-arm64-cgo), const EV_EOF = 32768 +pkg syscall (darwin-arm64-cgo), const EV_EOF ideal-int +pkg syscall (darwin-arm64-cgo), const EV_ERROR = 16384 +pkg syscall (darwin-arm64-cgo), const EV_ERROR ideal-int +pkg syscall (darwin-arm64-cgo), const EV_FLAG0 = 4096 +pkg syscall (darwin-arm64-cgo), const EV_FLAG0 ideal-int +pkg syscall (darwin-arm64-cgo), const EV_FLAG1 = 8192 +pkg syscall (darwin-arm64-cgo), const EV_FLAG1 ideal-int +pkg syscall (darwin-arm64-cgo), const EV_ONESHOT = 16 +pkg syscall (darwin-arm64-cgo), const EV_ONESHOT ideal-int +pkg syscall (darwin-arm64-cgo), const EV_OOBAND = 8192 +pkg syscall (darwin-arm64-cgo), const EV_OOBAND ideal-int +pkg syscall (darwin-arm64-cgo), const EV_POLL = 4096 +pkg syscall (darwin-arm64-cgo), const EV_POLL ideal-int +pkg syscall (darwin-arm64-cgo), const EV_RECEIPT = 64 +pkg syscall (darwin-arm64-cgo), const EV_RECEIPT ideal-int +pkg syscall (darwin-arm64-cgo), const EV_SYSFLAGS = 61440 +pkg syscall (darwin-arm64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const EWOULDBLOCK = 35 +pkg syscall (darwin-arm64-cgo), const EXDEV = 18 +pkg syscall (darwin-arm64-cgo), const EXTA = 19200 +pkg syscall (darwin-arm64-cgo), const EXTA ideal-int +pkg syscall (darwin-arm64-cgo), const EXTB = 38400 +pkg syscall (darwin-arm64-cgo), const EXTB ideal-int +pkg syscall (darwin-arm64-cgo), const EXTPROC = 2048 +pkg syscall (darwin-arm64-cgo), const EXTPROC ideal-int +pkg syscall (darwin-arm64-cgo), const FD_CLOEXEC = 1 +pkg syscall (darwin-arm64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (darwin-arm64-cgo), const FD_SETSIZE = 1024 +pkg syscall (darwin-arm64-cgo), const FD_SETSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const FLUSHO = 8388608 +pkg syscall (darwin-arm64-cgo), const FLUSHO ideal-int +pkg syscall (darwin-arm64-cgo), const F_ADDFILESIGS = 61 +pkg syscall (darwin-arm64-cgo), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-arm64-cgo), const F_ADDSIGS = 59 +pkg syscall (darwin-arm64-cgo), const F_ADDSIGS ideal-int +pkg syscall (darwin-arm64-cgo), const F_ALLOCATEALL = 4 +pkg syscall (darwin-arm64-cgo), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-arm64-cgo), const F_ALLOCATECONTIG = 2 +pkg syscall (darwin-arm64-cgo), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-arm64-cgo), const F_CHKCLEAN = 41 +pkg syscall (darwin-arm64-cgo), const F_CHKCLEAN ideal-int +pkg syscall (darwin-arm64-cgo), const F_DUPFD = 0 +pkg syscall (darwin-arm64-cgo), const F_DUPFD ideal-int +pkg syscall (darwin-arm64-cgo), const F_DUPFD_CLOEXEC = 67 +pkg syscall (darwin-arm64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-arm64-cgo), const F_FINDSIGS = 78 +pkg syscall (darwin-arm64-cgo), const F_FINDSIGS ideal-int +pkg syscall (darwin-arm64-cgo), const F_FLUSH_DATA = 40 +pkg syscall (darwin-arm64-cgo), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-arm64-cgo), const F_FREEZE_FS = 53 +pkg syscall (darwin-arm64-cgo), const F_FREEZE_FS ideal-int +pkg syscall (darwin-arm64-cgo), const F_FULLFSYNC = 51 +pkg syscall (darwin-arm64-cgo), const F_FULLFSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETCODEDIR = 72 +pkg syscall (darwin-arm64-cgo), const F_GETCODEDIR ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETFD = 1 +pkg syscall (darwin-arm64-cgo), const F_GETFD ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETFL = 3 +pkg syscall (darwin-arm64-cgo), const F_GETFL ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETLK = 7 +pkg syscall (darwin-arm64-cgo), const F_GETLK ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETLKPID = 66 +pkg syscall (darwin-arm64-cgo), const F_GETLKPID ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETNOSIGPIPE = 74 +pkg syscall (darwin-arm64-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETOWN = 5 +pkg syscall (darwin-arm64-cgo), const F_GETOWN ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETPATH = 50 +pkg syscall (darwin-arm64-cgo), const F_GETPATH ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETPATH_MTMINFO = 71 +pkg syscall (darwin-arm64-cgo), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONCLASS = 63 +pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONLEVEL = 77 +pkg syscall (darwin-arm64-cgo), const F_GETPROTECTIONLEVEL ideal-int +pkg syscall (darwin-arm64-cgo), const F_GLOBAL_NOCACHE = 55 +pkg syscall (darwin-arm64-cgo), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS = 49 +pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS ideal-int +pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS_EXT = 65 +pkg syscall (darwin-arm64-cgo), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-arm64-cgo), const F_NOCACHE = 48 +pkg syscall (darwin-arm64-cgo), const F_NOCACHE ideal-int +pkg syscall (darwin-arm64-cgo), const F_NODIRECT = 62 +pkg syscall (darwin-arm64-cgo), const F_NODIRECT ideal-int +pkg syscall (darwin-arm64-cgo), const F_OK = 0 +pkg syscall (darwin-arm64-cgo), const F_OK ideal-int +pkg syscall (darwin-arm64-cgo), const F_PATHPKG_CHECK = 52 +pkg syscall (darwin-arm64-cgo), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-arm64-cgo), const F_PEOFPOSMODE = 3 +pkg syscall (darwin-arm64-cgo), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-arm64-cgo), const F_PREALLOCATE = 42 +pkg syscall (darwin-arm64-cgo), const F_PREALLOCATE ideal-int +pkg syscall (darwin-arm64-cgo), const F_RDADVISE = 44 +pkg syscall (darwin-arm64-cgo), const F_RDADVISE ideal-int +pkg syscall (darwin-arm64-cgo), const F_RDAHEAD = 45 +pkg syscall (darwin-arm64-cgo), const F_RDAHEAD ideal-int +pkg syscall (darwin-arm64-cgo), const F_RDLCK = 1 +pkg syscall (darwin-arm64-cgo), const F_RDLCK ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETBACKINGSTORE = 70 +pkg syscall (darwin-arm64-cgo), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETFD = 2 +pkg syscall (darwin-arm64-cgo), const F_SETFD ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETFL = 4 +pkg syscall (darwin-arm64-cgo), const F_SETFL ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETLK = 8 +pkg syscall (darwin-arm64-cgo), const F_SETLK ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETLKW = 9 +pkg syscall (darwin-arm64-cgo), const F_SETLKW ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETLKWTIMEOUT = 10 +pkg syscall (darwin-arm64-cgo), const F_SETLKWTIMEOUT ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETNOSIGPIPE = 73 +pkg syscall (darwin-arm64-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETOWN = 6 +pkg syscall (darwin-arm64-cgo), const F_SETOWN ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETPROTECTIONCLASS = 64 +pkg syscall (darwin-arm64-cgo), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-arm64-cgo), const F_SETSIZE = 43 +pkg syscall (darwin-arm64-cgo), const F_SETSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const F_SINGLE_WRITER = 76 +pkg syscall (darwin-arm64-cgo), const F_SINGLE_WRITER ideal-int +pkg syscall (darwin-arm64-cgo), const F_THAW_FS = 54 +pkg syscall (darwin-arm64-cgo), const F_THAW_FS ideal-int +pkg syscall (darwin-arm64-cgo), const F_TRANSCODEKEY = 75 +pkg syscall (darwin-arm64-cgo), const F_TRANSCODEKEY ideal-int +pkg syscall (darwin-arm64-cgo), const F_UNLCK = 2 +pkg syscall (darwin-arm64-cgo), const F_UNLCK ideal-int +pkg syscall (darwin-arm64-cgo), const F_VOLPOSMODE = 4 +pkg syscall (darwin-arm64-cgo), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-arm64-cgo), const F_WRLCK = 3 +pkg syscall (darwin-arm64-cgo), const F_WRLCK ideal-int +pkg syscall (darwin-arm64-cgo), const HUPCL = 16384 +pkg syscall (darwin-arm64-cgo), const HUPCL ideal-int +pkg syscall (darwin-arm64-cgo), const ICANON = 256 +pkg syscall (darwin-arm64-cgo), const ICANON ideal-int +pkg syscall (darwin-arm64-cgo), const ICMP6_FILTER = 18 +pkg syscall (darwin-arm64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const ICRNL = 256 +pkg syscall (darwin-arm64-cgo), const ICRNL ideal-int +pkg syscall (darwin-arm64-cgo), const IEXTEN = 1024 +pkg syscall (darwin-arm64-cgo), const IEXTEN ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_ALLMULTI = 512 +pkg syscall (darwin-arm64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_ALTPHYS = 16384 +pkg syscall (darwin-arm64-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_DEBUG = 4 +pkg syscall (darwin-arm64-cgo), const IFF_DEBUG ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_LINK0 = 4096 +pkg syscall (darwin-arm64-cgo), const IFF_LINK0 ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_LINK1 = 8192 +pkg syscall (darwin-arm64-cgo), const IFF_LINK1 ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_LINK2 = 16384 +pkg syscall (darwin-arm64-cgo), const IFF_LINK2 ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_LOOPBACK = 8 +pkg syscall (darwin-arm64-cgo), const IFF_MULTICAST = 32768 +pkg syscall (darwin-arm64-cgo), const IFF_NOARP = 128 +pkg syscall (darwin-arm64-cgo), const IFF_NOARP ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_NOTRAILERS = 32 +pkg syscall (darwin-arm64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_OACTIVE = 1024 +pkg syscall (darwin-arm64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_POINTOPOINT = 16 +pkg syscall (darwin-arm64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_PROMISC = 256 +pkg syscall (darwin-arm64-cgo), const IFF_PROMISC ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_RUNNING = 64 +pkg syscall (darwin-arm64-cgo), const IFF_RUNNING ideal-int +pkg syscall (darwin-arm64-cgo), const IFF_SIMPLEX = 2048 +pkg syscall (darwin-arm64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-arm64-cgo), const IFNAMSIZ = 16 +pkg syscall (darwin-arm64-cgo), const IFNAMSIZ ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_1822 = 2 +pkg syscall (darwin-arm64-cgo), const IFT_1822 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_AAL5 = 49 +pkg syscall (darwin-arm64-cgo), const IFT_AAL5 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ARCNET = 35 +pkg syscall (darwin-arm64-cgo), const IFT_ARCNET ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ARCNETPLUS = 36 +pkg syscall (darwin-arm64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ATM = 37 +pkg syscall (darwin-arm64-cgo), const IFT_ATM ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_BRIDGE = 209 +pkg syscall (darwin-arm64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_CARP = 248 +pkg syscall (darwin-arm64-cgo), const IFT_CARP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_CELLULAR = 255 +pkg syscall (darwin-arm64-cgo), const IFT_CELLULAR ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_CEPT = 19 +pkg syscall (darwin-arm64-cgo), const IFT_CEPT ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_DS3 = 30 +pkg syscall (darwin-arm64-cgo), const IFT_DS3 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ENC = 244 +pkg syscall (darwin-arm64-cgo), const IFT_ENC ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_EON = 25 +pkg syscall (darwin-arm64-cgo), const IFT_EON ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ETHER = 6 +pkg syscall (darwin-arm64-cgo), const IFT_ETHER ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_FAITH = 56 +pkg syscall (darwin-arm64-cgo), const IFT_FAITH ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_FDDI = 15 +pkg syscall (darwin-arm64-cgo), const IFT_FDDI ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_FRELAY = 32 +pkg syscall (darwin-arm64-cgo), const IFT_FRELAY ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_FRELAYDCE = 44 +pkg syscall (darwin-arm64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_GIF = 55 +pkg syscall (darwin-arm64-cgo), const IFT_GIF ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_HDH1822 = 3 +pkg syscall (darwin-arm64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_HIPPI = 47 +pkg syscall (darwin-arm64-cgo), const IFT_HIPPI ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_HSSI = 46 +pkg syscall (darwin-arm64-cgo), const IFT_HSSI ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_HY = 14 +pkg syscall (darwin-arm64-cgo), const IFT_HY ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_IEEE1394 = 144 +pkg syscall (darwin-arm64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_IEEE8023ADLAG = 136 +pkg syscall (darwin-arm64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISDNBASIC = 20 +pkg syscall (darwin-arm64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISDNPRIMARY = 21 +pkg syscall (darwin-arm64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISO88022LLC = 41 +pkg syscall (darwin-arm64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISO88023 = 7 +pkg syscall (darwin-arm64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISO88024 = 8 +pkg syscall (darwin-arm64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISO88025 = 9 +pkg syscall (darwin-arm64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ISO88026 = 10 +pkg syscall (darwin-arm64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_L2VLAN = 135 +pkg syscall (darwin-arm64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_LAPB = 16 +pkg syscall (darwin-arm64-cgo), const IFT_LAPB ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_LOCALTALK = 42 +pkg syscall (darwin-arm64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_LOOP = 24 +pkg syscall (darwin-arm64-cgo), const IFT_LOOP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_MIOX25 = 38 +pkg syscall (darwin-arm64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_MODEM = 48 +pkg syscall (darwin-arm64-cgo), const IFT_MODEM ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_NSIP = 27 +pkg syscall (darwin-arm64-cgo), const IFT_NSIP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_OTHER = 1 +pkg syscall (darwin-arm64-cgo), const IFT_OTHER ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_P10 = 12 +pkg syscall (darwin-arm64-cgo), const IFT_P10 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_P80 = 13 +pkg syscall (darwin-arm64-cgo), const IFT_P80 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PARA = 34 +pkg syscall (darwin-arm64-cgo), const IFT_PARA ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PDP = 255 +pkg syscall (darwin-arm64-cgo), const IFT_PDP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PFLOG = 245 +pkg syscall (darwin-arm64-cgo), const IFT_PFLOG ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PFSYNC = 246 +pkg syscall (darwin-arm64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PPP = 23 +pkg syscall (darwin-arm64-cgo), const IFT_PPP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PROPMUX = 54 +pkg syscall (darwin-arm64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PROPVIRTUAL = 53 +pkg syscall (darwin-arm64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_PTPSERIAL = 22 +pkg syscall (darwin-arm64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_RS232 = 33 +pkg syscall (darwin-arm64-cgo), const IFT_RS232 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SDLC = 17 +pkg syscall (darwin-arm64-cgo), const IFT_SDLC ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SIP = 31 +pkg syscall (darwin-arm64-cgo), const IFT_SIP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SLIP = 28 +pkg syscall (darwin-arm64-cgo), const IFT_SLIP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SMDSDXI = 43 +pkg syscall (darwin-arm64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SMDSICIP = 52 +pkg syscall (darwin-arm64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SONET = 39 +pkg syscall (darwin-arm64-cgo), const IFT_SONET ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SONETPATH = 50 +pkg syscall (darwin-arm64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_SONETVT = 51 +pkg syscall (darwin-arm64-cgo), const IFT_SONETVT ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_STARLAN = 11 +pkg syscall (darwin-arm64-cgo), const IFT_STARLAN ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_STF = 57 +pkg syscall (darwin-arm64-cgo), const IFT_STF ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_T1 = 18 +pkg syscall (darwin-arm64-cgo), const IFT_T1 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_ULTRA = 29 +pkg syscall (darwin-arm64-cgo), const IFT_ULTRA ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_V35 = 45 +pkg syscall (darwin-arm64-cgo), const IFT_V35 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_X25 = 5 +pkg syscall (darwin-arm64-cgo), const IFT_X25 ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_X25DDN = 4 +pkg syscall (darwin-arm64-cgo), const IFT_X25DDN ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_X25PLE = 40 +pkg syscall (darwin-arm64-cgo), const IFT_X25PLE ideal-int +pkg syscall (darwin-arm64-cgo), const IFT_XETHER = 26 +pkg syscall (darwin-arm64-cgo), const IFT_XETHER ideal-int +pkg syscall (darwin-arm64-cgo), const IGNBRK = 1 +pkg syscall (darwin-arm64-cgo), const IGNBRK ideal-int +pkg syscall (darwin-arm64-cgo), const IGNCR = 128 +pkg syscall (darwin-arm64-cgo), const IGNCR ideal-int +pkg syscall (darwin-arm64-cgo), const IGNPAR = 4 +pkg syscall (darwin-arm64-cgo), const IGNPAR ideal-int +pkg syscall (darwin-arm64-cgo), const IMAXBEL = 8192 +pkg syscall (darwin-arm64-cgo), const IMAXBEL ideal-int +pkg syscall (darwin-arm64-cgo), const INLCR = 64 +pkg syscall (darwin-arm64-cgo), const INLCR ideal-int +pkg syscall (darwin-arm64-cgo), const INPCK = 16 +pkg syscall (darwin-arm64-cgo), const INPCK ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_HOST = 16777215 +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_MAX = 128 +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NET = 4278190080 +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NSHIFT = 24 +pkg syscall (darwin-arm64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_HOST = 65535 +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_MAX = 65536 +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NET = 4294901760 +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NSHIFT = 16 +pkg syscall (darwin-arm64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_HOST = 255 +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NET = 4294967040 +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NSHIFT = 8 +pkg syscall (darwin-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_HOST = 268435455 +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NET = 4026531840 +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NSHIFT = 28 +pkg syscall (darwin-arm64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-arm64-cgo), const IN_LINKLOCALNETNUM = 2851995648 +pkg syscall (darwin-arm64-cgo), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-arm64-cgo), const IN_LOOPBACKNET = 127 +pkg syscall (darwin-arm64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_3PC = 34 +pkg syscall (darwin-arm64-cgo), const IPPROTO_3PC ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ADFS = 68 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_AH = 51 +pkg syscall (darwin-arm64-cgo), const IPPROTO_AH ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_AHIP = 61 +pkg syscall (darwin-arm64-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_APES = 99 +pkg syscall (darwin-arm64-cgo), const IPPROTO_APES ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ARGUS = 13 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_AX25 = 93 +pkg syscall (darwin-arm64-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_BHA = 49 +pkg syscall (darwin-arm64-cgo), const IPPROTO_BHA ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_BLT = 30 +pkg syscall (darwin-arm64-cgo), const IPPROTO_BLT ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_BRSATMON = 76 +pkg syscall (darwin-arm64-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_CFTP = 62 +pkg syscall (darwin-arm64-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_CHAOS = 16 +pkg syscall (darwin-arm64-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_CMTP = 38 +pkg syscall (darwin-arm64-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_CPHB = 73 +pkg syscall (darwin-arm64-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_CPNX = 72 +pkg syscall (darwin-arm64-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_DDP = 37 +pkg syscall (darwin-arm64-cgo), const IPPROTO_DDP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_DGP = 86 +pkg syscall (darwin-arm64-cgo), const IPPROTO_DGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_DIVERT = 254 +pkg syscall (darwin-arm64-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_DONE = 257 +pkg syscall (darwin-arm64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_DSTOPTS = 60 +pkg syscall (darwin-arm64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_EGP = 8 +pkg syscall (darwin-arm64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_EMCON = 14 +pkg syscall (darwin-arm64-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ENCAP = 98 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_EON = 80 +pkg syscall (darwin-arm64-cgo), const IPPROTO_EON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ESP = 50 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ETHERIP = 97 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_FRAGMENT = 44 +pkg syscall (darwin-arm64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_GGP = 3 +pkg syscall (darwin-arm64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_GMTP = 100 +pkg syscall (darwin-arm64-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_GRE = 47 +pkg syscall (darwin-arm64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_HELLO = 63 +pkg syscall (darwin-arm64-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_HMP = 20 +pkg syscall (darwin-arm64-cgo), const IPPROTO_HMP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_HOPOPTS = 0 +pkg syscall (darwin-arm64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMP = 1 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMPV6 = 58 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDP = 22 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDPR = 35 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDRP = 45 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGMP = 2 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGP = 85 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGRP = 88 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IL = 40 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IL ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_INLSP = 52 +pkg syscall (darwin-arm64-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_INP = 32 +pkg syscall (darwin-arm64-cgo), const IPPROTO_INP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCOMP = 108 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCV = 71 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPEIP = 94 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPIP = 4 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPPC = 67 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPV4 = 4 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_IRTP = 28 +pkg syscall (darwin-arm64-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_KRYPTOLAN = 65 +pkg syscall (darwin-arm64-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_LARP = 91 +pkg syscall (darwin-arm64-cgo), const IPPROTO_LARP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF1 = 25 +pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF2 = 26 +pkg syscall (darwin-arm64-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MAX = 256 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MAXID = 52 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MEAS = 19 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MHRP = 48 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MICP = 95 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MICP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MTP = 92 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_MUX = 18 +pkg syscall (darwin-arm64-cgo), const IPPROTO_MUX ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ND = 77 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ND ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_NHRP = 54 +pkg syscall (darwin-arm64-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_NONE = 59 +pkg syscall (darwin-arm64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_NSP = 31 +pkg syscall (darwin-arm64-cgo), const IPPROTO_NSP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_NVPII = 11 +pkg syscall (darwin-arm64-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_OSPFIGP = 89 +pkg syscall (darwin-arm64-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PGM = 113 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PGM ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PIGP = 9 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PIM = 103 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PRM = 21 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PRM ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PUP = 12 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_PVP = 75 +pkg syscall (darwin-arm64-cgo), const IPPROTO_PVP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_RAW = 255 +pkg syscall (darwin-arm64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_RCCMON = 10 +pkg syscall (darwin-arm64-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_RDP = 27 +pkg syscall (darwin-arm64-cgo), const IPPROTO_RDP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ROUTING = 43 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_RSVP = 46 +pkg syscall (darwin-arm64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_RVD = 66 +pkg syscall (darwin-arm64-cgo), const IPPROTO_RVD ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SATEXPAK = 64 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SATMON = 69 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SCCSP = 96 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SCTP = 132 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SDRP = 42 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SEP = 33 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SEP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SRPC = 90 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_ST = 7 +pkg syscall (darwin-arm64-cgo), const IPPROTO_ST ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SVMTP = 82 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_SWIPE = 53 +pkg syscall (darwin-arm64-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TCF = 87 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TCF ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TP = 29 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TPXX = 39 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK1 = 23 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK2 = 24 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_TTP = 84 +pkg syscall (darwin-arm64-cgo), const IPPROTO_TTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_VINES = 83 +pkg syscall (darwin-arm64-cgo), const IPPROTO_VINES ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_VISA = 70 +pkg syscall (darwin-arm64-cgo), const IPPROTO_VISA ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_VMTP = 81 +pkg syscall (darwin-arm64-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_WBEXPAK = 79 +pkg syscall (darwin-arm64-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_WBMON = 78 +pkg syscall (darwin-arm64-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_WSN = 74 +pkg syscall (darwin-arm64-cgo), const IPPROTO_WSN ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_XNET = 15 +pkg syscall (darwin-arm64-cgo), const IPPROTO_XNET ideal-int +pkg syscall (darwin-arm64-cgo), const IPPROTO_XTP = 36 +pkg syscall (darwin-arm64-cgo), const IPPROTO_XTP ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292DSTOPTS = 23 +pkg syscall (darwin-arm64-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPLIMIT = 20 +pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPOPTS = 22 +pkg syscall (darwin-arm64-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292NEXTHOP = 21 +pkg syscall (darwin-arm64-cgo), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTINFO = 19 +pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTOPTIONS = 25 +pkg syscall (darwin-arm64-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_2292RTHDR = 24 +pkg syscall (darwin-arm64-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_BINDV6ONLY = 27 +pkg syscall (darwin-arm64-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_BOUND_IF = 125 +pkg syscall (darwin-arm64-cgo), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_CHECKSUM = 26 +pkg syscall (darwin-arm64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 +pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-arm64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_DEFHLIM = 64 +pkg syscall (darwin-arm64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FAITH = 29 +pkg syscall (darwin-arm64-cgo), const IPV6_FAITH ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 +pkg syscall (darwin-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 +pkg syscall (darwin-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FRAGTTL = 120 +pkg syscall (darwin-arm64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FW_ADD = 30 +pkg syscall (darwin-arm64-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FW_DEL = 31 +pkg syscall (darwin-arm64-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FW_FLUSH = 32 +pkg syscall (darwin-arm64-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FW_GET = 34 +pkg syscall (darwin-arm64-cgo), const IPV6_FW_GET ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_FW_ZERO = 33 +pkg syscall (darwin-arm64-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_HLIMDEC = 1 +pkg syscall (darwin-arm64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_IPSEC_POLICY = 28 +pkg syscall (darwin-arm64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_JOIN_GROUP = 12 +pkg syscall (darwin-arm64-cgo), const IPV6_LEAVE_GROUP = 13 +pkg syscall (darwin-arm64-cgo), const IPV6_MAXHLIM = 255 +pkg syscall (darwin-arm64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MAXOPTHDR = 2048 +pkg syscall (darwin-arm64-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MAXPACKET = 65535 +pkg syscall (darwin-arm64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-arm64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-arm64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MMTU = 1280 +pkg syscall (darwin-arm64-cgo), const IPV6_MMTU ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_HOPS = 10 +pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_IF = 9 +pkg syscall (darwin-arm64-cgo), const IPV6_MULTICAST_LOOP = 11 +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE = 14 +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_HIGH = 1 +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_LOW = 2 +pkg syscall (darwin-arm64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_RECVTCLASS = 35 +pkg syscall (darwin-arm64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_LOOSE = 0 +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_STRICT = 1 +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_TYPE_0 = 0 +pkg syscall (darwin-arm64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 +pkg syscall (darwin-arm64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_TCLASS = 36 +pkg syscall (darwin-arm64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_UNICAST_HOPS = 4 +pkg syscall (darwin-arm64-cgo), const IPV6_V6ONLY = 27 +pkg syscall (darwin-arm64-cgo), const IPV6_VERSION = 96 +pkg syscall (darwin-arm64-cgo), const IPV6_VERSION ideal-int +pkg syscall (darwin-arm64-cgo), const IPV6_VERSION_MASK = 240 +pkg syscall (darwin-arm64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-arm64-cgo), const IP_ADD_MEMBERSHIP = 12 +pkg syscall (darwin-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 +pkg syscall (darwin-arm64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-arm64-cgo), const IP_BLOCK_SOURCE = 72 +pkg syscall (darwin-arm64-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-arm64-cgo), const IP_BOUND_IF = 25 +pkg syscall (darwin-arm64-cgo), const IP_BOUND_IF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 +pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 +pkg syscall (darwin-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DF = 16384 +pkg syscall (darwin-arm64-cgo), const IP_DF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DROP_MEMBERSHIP = 13 +pkg syscall (darwin-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 +pkg syscall (darwin-arm64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_CONFIGURE = 60 +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_DEL = 61 +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_FLUSH = 62 +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_GET = 64 +pkg syscall (darwin-arm64-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FAITH = 22 +pkg syscall (darwin-arm64-cgo), const IP_FAITH ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_ADD = 40 +pkg syscall (darwin-arm64-cgo), const IP_FW_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_DEL = 41 +pkg syscall (darwin-arm64-cgo), const IP_FW_DEL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_FLUSH = 42 +pkg syscall (darwin-arm64-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_GET = 44 +pkg syscall (darwin-arm64-cgo), const IP_FW_GET ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_RESETLOG = 45 +pkg syscall (darwin-arm64-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-arm64-cgo), const IP_FW_ZERO = 43 +pkg syscall (darwin-arm64-cgo), const IP_FW_ZERO ideal-int +pkg syscall (darwin-arm64-cgo), const IP_HDRINCL = 2 +pkg syscall (darwin-arm64-cgo), const IP_HDRINCL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_IPSEC_POLICY = 21 +pkg syscall (darwin-arm64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MAXPACKET = 65535 +pkg syscall (darwin-arm64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 +pkg syscall (darwin-arm64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MAX_MEMBERSHIPS = 4095 +pkg syscall (darwin-arm64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 +pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 +pkg syscall (darwin-arm64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MF = 8192 +pkg syscall (darwin-arm64-cgo), const IP_MF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MIN_MEMBERSHIPS = 31 +pkg syscall (darwin-arm64-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MSFILTER = 74 +pkg syscall (darwin-arm64-cgo), const IP_MSFILTER ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MSS = 576 +pkg syscall (darwin-arm64-cgo), const IP_MSS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IF = 9 +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IFINDEX = 66 +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_LOOP = 11 +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_TTL = 10 +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_VIF = 14 +pkg syscall (darwin-arm64-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_NAT__XXX = 55 +pkg syscall (darwin-arm64-cgo), const IP_NAT__XXX ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OFFMASK = 8191 +pkg syscall (darwin-arm64-cgo), const IP_OFFMASK ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ADD = 50 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_DEL = 51 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_FLUSH = 52 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_GET = 54 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_RESETLOG = 56 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ZERO = 53 +pkg syscall (darwin-arm64-cgo), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-arm64-cgo), const IP_OPTIONS = 1 +pkg syscall (darwin-arm64-cgo), const IP_OPTIONS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_PKTINFO = 26 +pkg syscall (darwin-arm64-cgo), const IP_PKTINFO ideal-int +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE = 19 +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_DEFAULT = 0 +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_HIGH = 1 +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_LOW = 2 +pkg syscall (darwin-arm64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVDSTADDR = 7 +pkg syscall (darwin-arm64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVIF = 20 +pkg syscall (darwin-arm64-cgo), const IP_RECVIF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVOPTS = 5 +pkg syscall (darwin-arm64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVPKTINFO = 26 +pkg syscall (darwin-arm64-cgo), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVRETOPTS = 6 +pkg syscall (darwin-arm64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RECVTTL = 24 +pkg syscall (darwin-arm64-cgo), const IP_RECVTTL ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RETOPTS = 8 +pkg syscall (darwin-arm64-cgo), const IP_RETOPTS ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RF = 32768 +pkg syscall (darwin-arm64-cgo), const IP_RF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RSVP_OFF = 16 +pkg syscall (darwin-arm64-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RSVP_ON = 15 +pkg syscall (darwin-arm64-cgo), const IP_RSVP_ON ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_OFF = 18 +pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_ON = 17 +pkg syscall (darwin-arm64-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-arm64-cgo), const IP_STRIPHDR = 23 +pkg syscall (darwin-arm64-cgo), const IP_STRIPHDR ideal-int +pkg syscall (darwin-arm64-cgo), const IP_TOS = 3 +pkg syscall (darwin-arm64-cgo), const IP_TRAFFIC_MGT_BACKGROUND = 65 +pkg syscall (darwin-arm64-cgo), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-arm64-cgo), const IP_TTL = 4 +pkg syscall (darwin-arm64-cgo), const IP_UNBLOCK_SOURCE = 73 +pkg syscall (darwin-arm64-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-arm64-cgo), const ISIG = 128 +pkg syscall (darwin-arm64-cgo), const ISIG ideal-int +pkg syscall (darwin-arm64-cgo), const ISTRIP = 32 +pkg syscall (darwin-arm64-cgo), const ISTRIP ideal-int +pkg syscall (darwin-arm64-cgo), const IUTF8 = 16384 +pkg syscall (darwin-arm64-cgo), const IUTF8 ideal-int +pkg syscall (darwin-arm64-cgo), const IXANY = 2048 +pkg syscall (darwin-arm64-cgo), const IXANY ideal-int +pkg syscall (darwin-arm64-cgo), const IXOFF = 1024 +pkg syscall (darwin-arm64-cgo), const IXOFF ideal-int +pkg syscall (darwin-arm64-cgo), const IXON = 512 +pkg syscall (darwin-arm64-cgo), const IXON ideal-int +pkg syscall (darwin-arm64-cgo), const LOCK_EX = 2 +pkg syscall (darwin-arm64-cgo), const LOCK_EX ideal-int +pkg syscall (darwin-arm64-cgo), const LOCK_NB = 4 +pkg syscall (darwin-arm64-cgo), const LOCK_NB ideal-int +pkg syscall (darwin-arm64-cgo), const LOCK_SH = 1 +pkg syscall (darwin-arm64-cgo), const LOCK_SH ideal-int +pkg syscall (darwin-arm64-cgo), const LOCK_UN = 8 +pkg syscall (darwin-arm64-cgo), const LOCK_UN ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_CAN_REUSE = 9 +pkg syscall (darwin-arm64-cgo), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_DONTNEED = 4 +pkg syscall (darwin-arm64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_FREE = 5 +pkg syscall (darwin-arm64-cgo), const MADV_FREE ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSABLE = 7 +pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSE = 8 +pkg syscall (darwin-arm64-cgo), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_NORMAL = 0 +pkg syscall (darwin-arm64-cgo), const MADV_NORMAL ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_RANDOM = 1 +pkg syscall (darwin-arm64-cgo), const MADV_RANDOM ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (darwin-arm64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_WILLNEED = 3 +pkg syscall (darwin-arm64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (darwin-arm64-cgo), const MADV_ZERO_WIRED_PAGES = 6 +pkg syscall (darwin-arm64-cgo), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_ANON = 4096 +pkg syscall (darwin-arm64-cgo), const MAP_ANON ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_COPY = 2 +pkg syscall (darwin-arm64-cgo), const MAP_COPY ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_FILE = 0 +pkg syscall (darwin-arm64-cgo), const MAP_FILE ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_FIXED = 16 +pkg syscall (darwin-arm64-cgo), const MAP_FIXED ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (darwin-arm64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_JIT = 2048 +pkg syscall (darwin-arm64-cgo), const MAP_JIT ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_NOCACHE = 1024 +pkg syscall (darwin-arm64-cgo), const MAP_NOCACHE ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_NOEXTEND = 256 +pkg syscall (darwin-arm64-cgo), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_NORESERVE = 64 +pkg syscall (darwin-arm64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_PRIVATE = 2 +pkg syscall (darwin-arm64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_RENAME = 32 +pkg syscall (darwin-arm64-cgo), const MAP_RENAME ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_RESERVED0080 = 128 +pkg syscall (darwin-arm64-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-arm64-cgo), const MAP_SHARED = 1 +pkg syscall (darwin-arm64-cgo), const MAP_SHARED ideal-int +pkg syscall (darwin-arm64-cgo), const MCL_CURRENT = 1 +pkg syscall (darwin-arm64-cgo), const MCL_CURRENT ideal-int +pkg syscall (darwin-arm64-cgo), const MCL_FUTURE = 2 +pkg syscall (darwin-arm64-cgo), const MCL_FUTURE ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_CTRUNC = 32 +pkg syscall (darwin-arm64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_DONTROUTE = 4 +pkg syscall (darwin-arm64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_DONTWAIT = 128 +pkg syscall (darwin-arm64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_EOF = 256 +pkg syscall (darwin-arm64-cgo), const MSG_EOF ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_EOR = 8 +pkg syscall (darwin-arm64-cgo), const MSG_EOR ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_FLUSH = 1024 +pkg syscall (darwin-arm64-cgo), const MSG_FLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_HAVEMORE = 8192 +pkg syscall (darwin-arm64-cgo), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_HOLD = 2048 +pkg syscall (darwin-arm64-cgo), const MSG_HOLD ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_NEEDSA = 65536 +pkg syscall (darwin-arm64-cgo), const MSG_NEEDSA ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_OOB = 1 +pkg syscall (darwin-arm64-cgo), const MSG_OOB ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_PEEK = 2 +pkg syscall (darwin-arm64-cgo), const MSG_PEEK ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_RCVMORE = 16384 +pkg syscall (darwin-arm64-cgo), const MSG_RCVMORE ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_SEND = 4096 +pkg syscall (darwin-arm64-cgo), const MSG_SEND ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_TRUNC = 16 +pkg syscall (darwin-arm64-cgo), const MSG_TRUNC ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_WAITALL = 64 +pkg syscall (darwin-arm64-cgo), const MSG_WAITALL ideal-int +pkg syscall (darwin-arm64-cgo), const MSG_WAITSTREAM = 512 +pkg syscall (darwin-arm64-cgo), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-arm64-cgo), const MS_ASYNC = 1 +pkg syscall (darwin-arm64-cgo), const MS_ASYNC ideal-int +pkg syscall (darwin-arm64-cgo), const MS_DEACTIVATE = 8 +pkg syscall (darwin-arm64-cgo), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-arm64-cgo), const MS_INVALIDATE = 2 +pkg syscall (darwin-arm64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (darwin-arm64-cgo), const MS_KILLPAGES = 4 +pkg syscall (darwin-arm64-cgo), const MS_KILLPAGES ideal-int +pkg syscall (darwin-arm64-cgo), const MS_SYNC = 16 +pkg syscall (darwin-arm64-cgo), const MS_SYNC ideal-int +pkg syscall (darwin-arm64-cgo), const NAME_MAX = 255 +pkg syscall (darwin-arm64-cgo), const NAME_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP = 1 +pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP2 = 7 +pkg syscall (darwin-arm64-cgo), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_FLAGS = 2 +pkg syscall (darwin-arm64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST = 3 +pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST2 = 6 +pkg syscall (darwin-arm64-cgo), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_MAXID = 10 +pkg syscall (darwin-arm64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_STAT = 4 +pkg syscall (darwin-arm64-cgo), const NET_RT_STAT ideal-int +pkg syscall (darwin-arm64-cgo), const NET_RT_TRASH = 5 +pkg syscall (darwin-arm64-cgo), const NET_RT_TRASH ideal-int +pkg syscall (darwin-arm64-cgo), const NOFLSH = 2147483648 +pkg syscall (darwin-arm64-cgo), const NOFLSH ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_ABSOLUTE = 8 +pkg syscall (darwin-arm64-cgo), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_ATTRIB = 8 +pkg syscall (darwin-arm64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_BACKGROUND = 64 +pkg syscall (darwin-arm64-cgo), const NOTE_BACKGROUND ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_CHILD = 4 +pkg syscall (darwin-arm64-cgo), const NOTE_CHILD ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_CRITICAL = 32 +pkg syscall (darwin-arm64-cgo), const NOTE_CRITICAL ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_DELETE = 1 +pkg syscall (darwin-arm64-cgo), const NOTE_DELETE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXEC = 536870912 +pkg syscall (darwin-arm64-cgo), const NOTE_EXEC ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT = 2147483648 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXITSTATUS = 67108864 +pkg syscall (darwin-arm64-cgo), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_CSERROR = 262144 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_CSERROR ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DECRYPTFAIL = 65536 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DECRYPTFAIL ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL = 33554432 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL_MASK = 458752 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_DETAIL_MASK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_MEMORY = 131072 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_MEMORY ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_REPARENTED = 524288 +pkg syscall (darwin-arm64-cgo), const NOTE_EXIT_REPARENTED ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_EXTEND = 4 +pkg syscall (darwin-arm64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFAND = 1073741824 +pkg syscall (darwin-arm64-cgo), const NOTE_FFAND ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFCOPY = 3221225472 +pkg syscall (darwin-arm64-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFCTRLMASK = 3221225472 +pkg syscall (darwin-arm64-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFLAGSMASK = 16777215 +pkg syscall (darwin-arm64-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFNOP = 0 +pkg syscall (darwin-arm64-cgo), const NOTE_FFNOP ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FFOR = 2147483648 +pkg syscall (darwin-arm64-cgo), const NOTE_FFOR ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_FORK = 1073741824 +pkg syscall (darwin-arm64-cgo), const NOTE_FORK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_LEEWAY = 16 +pkg syscall (darwin-arm64-cgo), const NOTE_LEEWAY ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_LINK = 16 +pkg syscall (darwin-arm64-cgo), const NOTE_LINK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_LOWAT = 1 +pkg syscall (darwin-arm64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_NONE = 128 +pkg syscall (darwin-arm64-cgo), const NOTE_NONE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_NSECONDS = 4 +pkg syscall (darwin-arm64-cgo), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_PCTRLMASK = -1048576 +pkg syscall (darwin-arm64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_PDATAMASK = 1048575 +pkg syscall (darwin-arm64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_REAP = 268435456 +pkg syscall (darwin-arm64-cgo), const NOTE_REAP ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_RENAME = 32 +pkg syscall (darwin-arm64-cgo), const NOTE_RENAME ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_REVOKE = 64 +pkg syscall (darwin-arm64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_SECONDS = 1 +pkg syscall (darwin-arm64-cgo), const NOTE_SECONDS ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_SIGNAL = 134217728 +pkg syscall (darwin-arm64-cgo), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_TRACK = 1 +pkg syscall (darwin-arm64-cgo), const NOTE_TRACK ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_TRACKERR = 2 +pkg syscall (darwin-arm64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_TRIGGER = 16777216 +pkg syscall (darwin-arm64-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_USECONDS = 2 +pkg syscall (darwin-arm64-cgo), const NOTE_USECONDS ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_VM_ERROR = 268435456 +pkg syscall (darwin-arm64-cgo), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE = 2147483648 +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_TERMINATE = 1073741824 +pkg syscall (darwin-arm64-cgo), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-arm64-cgo), const NOTE_WRITE = 2 +pkg syscall (darwin-arm64-cgo), const NOTE_WRITE ideal-int +pkg syscall (darwin-arm64-cgo), const OCRNL = 16 +pkg syscall (darwin-arm64-cgo), const OCRNL ideal-int +pkg syscall (darwin-arm64-cgo), const OFDEL = 131072 +pkg syscall (darwin-arm64-cgo), const OFDEL ideal-int +pkg syscall (darwin-arm64-cgo), const OFILL = 128 +pkg syscall (darwin-arm64-cgo), const OFILL ideal-int +pkg syscall (darwin-arm64-cgo), const ONLCR = 2 +pkg syscall (darwin-arm64-cgo), const ONLCR ideal-int +pkg syscall (darwin-arm64-cgo), const ONLRET = 64 +pkg syscall (darwin-arm64-cgo), const ONLRET ideal-int +pkg syscall (darwin-arm64-cgo), const ONOCR = 32 +pkg syscall (darwin-arm64-cgo), const ONOCR ideal-int +pkg syscall (darwin-arm64-cgo), const ONOEOT = 8 +pkg syscall (darwin-arm64-cgo), const ONOEOT ideal-int +pkg syscall (darwin-arm64-cgo), const OPOST = 1 +pkg syscall (darwin-arm64-cgo), const OPOST ideal-int +pkg syscall (darwin-arm64-cgo), const O_ACCMODE = 3 +pkg syscall (darwin-arm64-cgo), const O_ACCMODE ideal-int +pkg syscall (darwin-arm64-cgo), const O_ALERT = 536870912 +pkg syscall (darwin-arm64-cgo), const O_ALERT ideal-int +pkg syscall (darwin-arm64-cgo), const O_APPEND = 8 +pkg syscall (darwin-arm64-cgo), const O_ASYNC = 64 +pkg syscall (darwin-arm64-cgo), const O_CLOEXEC = 16777216 +pkg syscall (darwin-arm64-cgo), const O_CREAT = 512 +pkg syscall (darwin-arm64-cgo), const O_DIRECTORY = 1048576 +pkg syscall (darwin-arm64-cgo), const O_DIRECTORY ideal-int +pkg syscall (darwin-arm64-cgo), const O_DP_GETRAWENCRYPTED = 1 +pkg syscall (darwin-arm64-cgo), const O_DP_GETRAWENCRYPTED ideal-int +pkg syscall (darwin-arm64-cgo), const O_DSYNC = 4194304 +pkg syscall (darwin-arm64-cgo), const O_DSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const O_EVTONLY = 32768 +pkg syscall (darwin-arm64-cgo), const O_EVTONLY ideal-int +pkg syscall (darwin-arm64-cgo), const O_EXCL = 2048 +pkg syscall (darwin-arm64-cgo), const O_EXLOCK = 32 +pkg syscall (darwin-arm64-cgo), const O_EXLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const O_FSYNC = 128 +pkg syscall (darwin-arm64-cgo), const O_FSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const O_NDELAY = 4 +pkg syscall (darwin-arm64-cgo), const O_NDELAY ideal-int +pkg syscall (darwin-arm64-cgo), const O_NOCTTY = 131072 +pkg syscall (darwin-arm64-cgo), const O_NOFOLLOW = 256 +pkg syscall (darwin-arm64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (darwin-arm64-cgo), const O_NONBLOCK = 4 +pkg syscall (darwin-arm64-cgo), const O_POPUP = 2147483648 +pkg syscall (darwin-arm64-cgo), const O_POPUP ideal-int +pkg syscall (darwin-arm64-cgo), const O_SHLOCK = 16 +pkg syscall (darwin-arm64-cgo), const O_SHLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const O_SYMLINK = 2097152 +pkg syscall (darwin-arm64-cgo), const O_SYMLINK ideal-int +pkg syscall (darwin-arm64-cgo), const O_SYNC = 128 +pkg syscall (darwin-arm64-cgo), const O_TRUNC = 1024 +pkg syscall (darwin-arm64-cgo), const PARENB = 4096 +pkg syscall (darwin-arm64-cgo), const PARENB ideal-int +pkg syscall (darwin-arm64-cgo), const PARMRK = 8 +pkg syscall (darwin-arm64-cgo), const PARMRK ideal-int +pkg syscall (darwin-arm64-cgo), const PARODD = 8192 +pkg syscall (darwin-arm64-cgo), const PARODD ideal-int +pkg syscall (darwin-arm64-cgo), const PENDIN = 536870912 +pkg syscall (darwin-arm64-cgo), const PENDIN ideal-int +pkg syscall (darwin-arm64-cgo), const PRIO_PGRP = 1 +pkg syscall (darwin-arm64-cgo), const PRIO_PGRP ideal-int +pkg syscall (darwin-arm64-cgo), const PRIO_PROCESS = 0 +pkg syscall (darwin-arm64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (darwin-arm64-cgo), const PRIO_USER = 2 +pkg syscall (darwin-arm64-cgo), const PRIO_USER ideal-int +pkg syscall (darwin-arm64-cgo), const PROT_EXEC = 4 +pkg syscall (darwin-arm64-cgo), const PROT_EXEC ideal-int +pkg syscall (darwin-arm64-cgo), const PROT_NONE = 0 +pkg syscall (darwin-arm64-cgo), const PROT_NONE ideal-int +pkg syscall (darwin-arm64-cgo), const PROT_READ = 1 +pkg syscall (darwin-arm64-cgo), const PROT_READ ideal-int +pkg syscall (darwin-arm64-cgo), const PROT_WRITE = 2 +pkg syscall (darwin-arm64-cgo), const PROT_WRITE ideal-int +pkg syscall (darwin-arm64-cgo), const PTRACE_CONT = 7 +pkg syscall (darwin-arm64-cgo), const PTRACE_CONT ideal-int +pkg syscall (darwin-arm64-cgo), const PTRACE_KILL = 8 +pkg syscall (darwin-arm64-cgo), const PTRACE_KILL ideal-int +pkg syscall (darwin-arm64-cgo), const PTRACE_TRACEME = 0 +pkg syscall (darwin-arm64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-arm64-cgo), const PT_ATTACH = 10 +pkg syscall (darwin-arm64-cgo), const PT_ATTACH ideal-int +pkg syscall (darwin-arm64-cgo), const PT_ATTACHEXC = 14 +pkg syscall (darwin-arm64-cgo), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-arm64-cgo), const PT_CONTINUE = 7 +pkg syscall (darwin-arm64-cgo), const PT_CONTINUE ideal-int +pkg syscall (darwin-arm64-cgo), const PT_DENY_ATTACH = 31 +pkg syscall (darwin-arm64-cgo), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-arm64-cgo), const PT_DETACH = 11 +pkg syscall (darwin-arm64-cgo), const PT_DETACH ideal-int +pkg syscall (darwin-arm64-cgo), const PT_FIRSTMACH = 32 +pkg syscall (darwin-arm64-cgo), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-arm64-cgo), const PT_FORCEQUOTA = 30 +pkg syscall (darwin-arm64-cgo), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-arm64-cgo), const PT_KILL = 8 +pkg syscall (darwin-arm64-cgo), const PT_KILL ideal-int +pkg syscall (darwin-arm64-cgo), const PT_READ_D = 2 +pkg syscall (darwin-arm64-cgo), const PT_READ_D ideal-int +pkg syscall (darwin-arm64-cgo), const PT_READ_I = 1 +pkg syscall (darwin-arm64-cgo), const PT_READ_I ideal-int +pkg syscall (darwin-arm64-cgo), const PT_READ_U = 3 +pkg syscall (darwin-arm64-cgo), const PT_READ_U ideal-int +pkg syscall (darwin-arm64-cgo), const PT_SIGEXC = 12 +pkg syscall (darwin-arm64-cgo), const PT_SIGEXC ideal-int +pkg syscall (darwin-arm64-cgo), const PT_STEP = 9 +pkg syscall (darwin-arm64-cgo), const PT_STEP ideal-int +pkg syscall (darwin-arm64-cgo), const PT_THUPDATE = 13 +pkg syscall (darwin-arm64-cgo), const PT_THUPDATE ideal-int +pkg syscall (darwin-arm64-cgo), const PT_TRACE_ME = 0 +pkg syscall (darwin-arm64-cgo), const PT_TRACE_ME ideal-int +pkg syscall (darwin-arm64-cgo), const PT_WRITE_D = 5 +pkg syscall (darwin-arm64-cgo), const PT_WRITE_D ideal-int +pkg syscall (darwin-arm64-cgo), const PT_WRITE_I = 4 +pkg syscall (darwin-arm64-cgo), const PT_WRITE_I ideal-int +pkg syscall (darwin-arm64-cgo), const PT_WRITE_U = 6 +pkg syscall (darwin-arm64-cgo), const PT_WRITE_U ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_AS = 5 +pkg syscall (darwin-arm64-cgo), const RLIMIT_AS ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_CORE = 4 +pkg syscall (darwin-arm64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU = 0 +pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU_USAGE_MONITOR = 2 +pkg syscall (darwin-arm64-cgo), const RLIMIT_CPU_USAGE_MONITOR ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_DATA = 2 +pkg syscall (darwin-arm64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_FSIZE = 1 +pkg syscall (darwin-arm64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_NOFILE = 8 +pkg syscall (darwin-arm64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-arm64-cgo), const RLIMIT_STACK = 3 +pkg syscall (darwin-arm64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (darwin-arm64-cgo), const RLIM_INFINITY = 9223372036854775807 +pkg syscall (darwin-arm64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_AUTHOR = 6 +pkg syscall (darwin-arm64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_BRD = 7 +pkg syscall (darwin-arm64-cgo), const RTAX_BRD ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_DST = 0 +pkg syscall (darwin-arm64-cgo), const RTAX_DST ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_GATEWAY = 1 +pkg syscall (darwin-arm64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_GENMASK = 3 +pkg syscall (darwin-arm64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_IFA = 5 +pkg syscall (darwin-arm64-cgo), const RTAX_IFA ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_IFP = 4 +pkg syscall (darwin-arm64-cgo), const RTAX_IFP ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_MAX = 8 +pkg syscall (darwin-arm64-cgo), const RTAX_MAX ideal-int +pkg syscall (darwin-arm64-cgo), const RTAX_NETMASK = 2 +pkg syscall (darwin-arm64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_AUTHOR = 64 +pkg syscall (darwin-arm64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_BRD = 128 +pkg syscall (darwin-arm64-cgo), const RTA_BRD ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_DST = 1 +pkg syscall (darwin-arm64-cgo), const RTA_DST ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_GATEWAY = 2 +pkg syscall (darwin-arm64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_GENMASK = 8 +pkg syscall (darwin-arm64-cgo), const RTA_GENMASK ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_IFA = 32 +pkg syscall (darwin-arm64-cgo), const RTA_IFA ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_IFP = 16 +pkg syscall (darwin-arm64-cgo), const RTA_IFP ideal-int +pkg syscall (darwin-arm64-cgo), const RTA_NETMASK = 4 +pkg syscall (darwin-arm64-cgo), const RTA_NETMASK ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_BLACKHOLE = 4096 +pkg syscall (darwin-arm64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_BROADCAST = 4194304 +pkg syscall (darwin-arm64-cgo), const RTF_BROADCAST ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_CLONING = 256 +pkg syscall (darwin-arm64-cgo), const RTF_CLONING ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_CONDEMNED = 33554432 +pkg syscall (darwin-arm64-cgo), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_DELCLONE = 128 +pkg syscall (darwin-arm64-cgo), const RTF_DELCLONE ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_DONE = 64 +pkg syscall (darwin-arm64-cgo), const RTF_DONE ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_DYNAMIC = 16 +pkg syscall (darwin-arm64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_GATEWAY = 2 +pkg syscall (darwin-arm64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_HOST = 4 +pkg syscall (darwin-arm64-cgo), const RTF_HOST ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_IFREF = 67108864 +pkg syscall (darwin-arm64-cgo), const RTF_IFREF ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_IFSCOPE = 16777216 +pkg syscall (darwin-arm64-cgo), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_LLINFO = 1024 +pkg syscall (darwin-arm64-cgo), const RTF_LLINFO ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_LOCAL = 2097152 +pkg syscall (darwin-arm64-cgo), const RTF_LOCAL ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_MODIFIED = 32 +pkg syscall (darwin-arm64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_MULTICAST = 8388608 +pkg syscall (darwin-arm64-cgo), const RTF_MULTICAST ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PINNED = 1048576 +pkg syscall (darwin-arm64-cgo), const RTF_PINNED ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PRCLONING = 65536 +pkg syscall (darwin-arm64-cgo), const RTF_PRCLONING ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PROTO1 = 32768 +pkg syscall (darwin-arm64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PROTO2 = 16384 +pkg syscall (darwin-arm64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PROTO3 = 262144 +pkg syscall (darwin-arm64-cgo), const RTF_PROTO3 ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_PROXY = 134217728 +pkg syscall (darwin-arm64-cgo), const RTF_PROXY ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_REJECT = 8 +pkg syscall (darwin-arm64-cgo), const RTF_REJECT ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_ROUTER = 268435456 +pkg syscall (darwin-arm64-cgo), const RTF_ROUTER ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_STATIC = 2048 +pkg syscall (darwin-arm64-cgo), const RTF_STATIC ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_UP = 1 +pkg syscall (darwin-arm64-cgo), const RTF_UP ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_WASCLONED = 131072 +pkg syscall (darwin-arm64-cgo), const RTF_WASCLONED ideal-int +pkg syscall (darwin-arm64-cgo), const RTF_XRESOLVE = 512 +pkg syscall (darwin-arm64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_ADD = 1 +pkg syscall (darwin-arm64-cgo), const RTM_ADD ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_CHANGE = 3 +pkg syscall (darwin-arm64-cgo), const RTM_CHANGE ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_DELADDR = 13 +pkg syscall (darwin-arm64-cgo), const RTM_DELADDR ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_DELETE = 2 +pkg syscall (darwin-arm64-cgo), const RTM_DELETE ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_DELMADDR = 16 +pkg syscall (darwin-arm64-cgo), const RTM_DELMADDR ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_GET = 4 +pkg syscall (darwin-arm64-cgo), const RTM_GET ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_GET2 = 20 +pkg syscall (darwin-arm64-cgo), const RTM_GET2 ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_IFINFO = 14 +pkg syscall (darwin-arm64-cgo), const RTM_IFINFO ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_IFINFO2 = 18 +pkg syscall (darwin-arm64-cgo), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_LOCK = 8 +pkg syscall (darwin-arm64-cgo), const RTM_LOCK ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_LOSING = 5 +pkg syscall (darwin-arm64-cgo), const RTM_LOSING ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_MISS = 7 +pkg syscall (darwin-arm64-cgo), const RTM_MISS ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_NEWADDR = 12 +pkg syscall (darwin-arm64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR = 15 +pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR2 = 19 +pkg syscall (darwin-arm64-cgo), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_OLDADD = 9 +pkg syscall (darwin-arm64-cgo), const RTM_OLDADD ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_OLDDEL = 10 +pkg syscall (darwin-arm64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_REDIRECT = 6 +pkg syscall (darwin-arm64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_RESOLVE = 11 +pkg syscall (darwin-arm64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_RTTUNIT = 1000000 +pkg syscall (darwin-arm64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-arm64-cgo), const RTM_VERSION = 5 +pkg syscall (darwin-arm64-cgo), const RTM_VERSION ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_EXPIRE = 4 +pkg syscall (darwin-arm64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_HOPCOUNT = 2 +pkg syscall (darwin-arm64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_MTU = 1 +pkg syscall (darwin-arm64-cgo), const RTV_MTU ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_RPIPE = 8 +pkg syscall (darwin-arm64-cgo), const RTV_RPIPE ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_RTT = 64 +pkg syscall (darwin-arm64-cgo), const RTV_RTT ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_RTTVAR = 128 +pkg syscall (darwin-arm64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_SPIPE = 16 +pkg syscall (darwin-arm64-cgo), const RTV_SPIPE ideal-int +pkg syscall (darwin-arm64-cgo), const RTV_SSTHRESH = 32 +pkg syscall (darwin-arm64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-arm64-cgo), const RUSAGE_CHILDREN = -1 +pkg syscall (darwin-arm64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-arm64-cgo), const RUSAGE_SELF = 0 +pkg syscall (darwin-arm64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (darwin-arm64-cgo), const SCM_CREDS = 3 +pkg syscall (darwin-arm64-cgo), const SCM_CREDS ideal-int +pkg syscall (darwin-arm64-cgo), const SCM_RIGHTS = 1 +pkg syscall (darwin-arm64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP = 2 +pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP_MONOTONIC = 4 +pkg syscall (darwin-arm64-cgo), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-arm64-cgo), const SIGBUS = 10 +pkg syscall (darwin-arm64-cgo), const SIGCHLD = 20 +pkg syscall (darwin-arm64-cgo), const SIGCHLD Signal +pkg syscall (darwin-arm64-cgo), const SIGCONT = 19 +pkg syscall (darwin-arm64-cgo), const SIGCONT Signal +pkg syscall (darwin-arm64-cgo), const SIGEMT = 7 +pkg syscall (darwin-arm64-cgo), const SIGEMT Signal +pkg syscall (darwin-arm64-cgo), const SIGINFO = 29 +pkg syscall (darwin-arm64-cgo), const SIGINFO Signal +pkg syscall (darwin-arm64-cgo), const SIGIO = 23 +pkg syscall (darwin-arm64-cgo), const SIGIO Signal +pkg syscall (darwin-arm64-cgo), const SIGIOT = 6 +pkg syscall (darwin-arm64-cgo), const SIGIOT Signal +pkg syscall (darwin-arm64-cgo), const SIGPROF = 27 +pkg syscall (darwin-arm64-cgo), const SIGPROF Signal +pkg syscall (darwin-arm64-cgo), const SIGSTOP = 17 +pkg syscall (darwin-arm64-cgo), const SIGSTOP Signal +pkg syscall (darwin-arm64-cgo), const SIGSYS = 12 +pkg syscall (darwin-arm64-cgo), const SIGSYS Signal +pkg syscall (darwin-arm64-cgo), const SIGTSTP = 18 +pkg syscall (darwin-arm64-cgo), const SIGTSTP Signal +pkg syscall (darwin-arm64-cgo), const SIGTTIN = 21 +pkg syscall (darwin-arm64-cgo), const SIGTTIN Signal +pkg syscall (darwin-arm64-cgo), const SIGTTOU = 22 +pkg syscall (darwin-arm64-cgo), const SIGTTOU Signal +pkg syscall (darwin-arm64-cgo), const SIGURG = 16 +pkg syscall (darwin-arm64-cgo), const SIGURG Signal +pkg syscall (darwin-arm64-cgo), const SIGUSR1 = 30 +pkg syscall (darwin-arm64-cgo), const SIGUSR1 Signal +pkg syscall (darwin-arm64-cgo), const SIGUSR2 = 31 +pkg syscall (darwin-arm64-cgo), const SIGUSR2 Signal +pkg syscall (darwin-arm64-cgo), const SIGVTALRM = 26 +pkg syscall (darwin-arm64-cgo), const SIGVTALRM Signal +pkg syscall (darwin-arm64-cgo), const SIGWINCH = 28 +pkg syscall (darwin-arm64-cgo), const SIGWINCH Signal +pkg syscall (darwin-arm64-cgo), const SIGXCPU = 24 +pkg syscall (darwin-arm64-cgo), const SIGXCPU Signal +pkg syscall (darwin-arm64-cgo), const SIGXFSZ = 25 +pkg syscall (darwin-arm64-cgo), const SIGXFSZ Signal +pkg syscall (darwin-arm64-cgo), const SIOCADDMULTI = 2149607729 +pkg syscall (darwin-arm64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (darwin-arm64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCARPIPLL = 3223349544 +pkg syscall (darwin-arm64-cgo), const SIOCARPIPLL ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCATMARK = 1074033415 +pkg syscall (darwin-arm64-cgo), const SIOCATMARK ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCAUTOADDR = 3223349542 +pkg syscall (darwin-arm64-cgo), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCAUTONETMASK = 2149607719 +pkg syscall (darwin-arm64-cgo), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCDELMULTI = 2149607730 +pkg syscall (darwin-arm64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCDIFADDR = 2149607705 +pkg syscall (darwin-arm64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCDIFPHYADDR = 2149607745 +pkg syscall (darwin-arm64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGDRVSPEC = 3223873915 +pkg syscall (darwin-arm64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGETVLAN = 3223349631 +pkg syscall (darwin-arm64-cgo), const SIOCGETVLAN ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGHIWAT = 1074033409 +pkg syscall (darwin-arm64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFADDR = 3223349537 +pkg syscall (darwin-arm64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFALTMTU = 3223349576 +pkg syscall (darwin-arm64-cgo), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFASYNCMAP = 3223349628 +pkg syscall (darwin-arm64-cgo), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFBOND = 3223349575 +pkg syscall (darwin-arm64-cgo), const SIOCGIFBOND ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFBRDADDR = 3223349539 +pkg syscall (darwin-arm64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFCAP = 3223349595 +pkg syscall (darwin-arm64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFCONF = 3222038820 +pkg syscall (darwin-arm64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFDEVMTU = 3223349572 +pkg syscall (darwin-arm64-cgo), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFDSTADDR = 3223349538 +pkg syscall (darwin-arm64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFFLAGS = 3223349521 +pkg syscall (darwin-arm64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFGENERIC = 3223349562 +pkg syscall (darwin-arm64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFKPI = 3223349639 +pkg syscall (darwin-arm64-cgo), const SIOCGIFKPI ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFMAC = 3223349634 +pkg syscall (darwin-arm64-cgo), const SIOCGIFMAC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFMEDIA = 3224135992 +pkg syscall (darwin-arm64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFMETRIC = 3223349527 +pkg syscall (darwin-arm64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFMTU = 3223349555 +pkg syscall (darwin-arm64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFNETMASK = 3223349541 +pkg syscall (darwin-arm64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFPDSTADDR = 3223349568 +pkg syscall (darwin-arm64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFPHYS = 3223349557 +pkg syscall (darwin-arm64-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFPSRCADDR = 3223349567 +pkg syscall (darwin-arm64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFSTATUS = 3274795325 +pkg syscall (darwin-arm64-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFVLAN = 3223349631 +pkg syscall (darwin-arm64-cgo), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGIFWAKEFLAGS = 3223349640 +pkg syscall (darwin-arm64-cgo), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGLOWAT = 1074033411 +pkg syscall (darwin-arm64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCGPGRP = 1074033417 +pkg syscall (darwin-arm64-cgo), const SIOCGPGRP ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE = 3223349624 +pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE2 = 3223349626 +pkg syscall (darwin-arm64-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCIFDESTROY = 2149607801 +pkg syscall (darwin-arm64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCIFGCLONERS = 3222301057 +pkg syscall (darwin-arm64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCRSLVMULTI = 3222300987 +pkg syscall (darwin-arm64-cgo), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSDRVSPEC = 2150132091 +pkg syscall (darwin-arm64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSETVLAN = 2149607806 +pkg syscall (darwin-arm64-cgo), const SIOCSETVLAN ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSHIWAT = 2147775232 +pkg syscall (darwin-arm64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFADDR = 2149607692 +pkg syscall (darwin-arm64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFALTMTU = 2149607749 +pkg syscall (darwin-arm64-cgo), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFASYNCMAP = 2149607805 +pkg syscall (darwin-arm64-cgo), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFBOND = 2149607750 +pkg syscall (darwin-arm64-cgo), const SIOCSIFBOND ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFBRDADDR = 2149607699 +pkg syscall (darwin-arm64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFCAP = 2149607770 +pkg syscall (darwin-arm64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFDSTADDR = 2149607694 +pkg syscall (darwin-arm64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFFLAGS = 2149607696 +pkg syscall (darwin-arm64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFGENERIC = 2149607737 +pkg syscall (darwin-arm64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFKPI = 2149607814 +pkg syscall (darwin-arm64-cgo), const SIOCSIFKPI ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFLLADDR = 2149607740 +pkg syscall (darwin-arm64-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFMAC = 2149607811 +pkg syscall (darwin-arm64-cgo), const SIOCSIFMAC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFMEDIA = 3223349559 +pkg syscall (darwin-arm64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFMETRIC = 2149607704 +pkg syscall (darwin-arm64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFMTU = 2149607732 +pkg syscall (darwin-arm64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFNETMASK = 2149607702 +pkg syscall (darwin-arm64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYADDR = 2151704894 +pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYS = 2149607734 +pkg syscall (darwin-arm64-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSIFVLAN = 2149607806 +pkg syscall (darwin-arm64-cgo), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSLOWAT = 2147775234 +pkg syscall (darwin-arm64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SIOCSPGRP = 2147775240 +pkg syscall (darwin-arm64-cgo), const SIOCSPGRP ideal-int +pkg syscall (darwin-arm64-cgo), const SOCK_MAXADDRLEN = 255 +pkg syscall (darwin-arm64-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-arm64-cgo), const SOCK_RDM = 4 +pkg syscall (darwin-arm64-cgo), const SOCK_RDM ideal-int +pkg syscall (darwin-arm64-cgo), const SOL_SOCKET = 65535 +pkg syscall (darwin-arm64-cgo), const SOMAXCONN = 128 +pkg syscall (darwin-arm64-cgo), const SO_ACCEPTCONN = 2 +pkg syscall (darwin-arm64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-arm64-cgo), const SO_BROADCAST = 32 +pkg syscall (darwin-arm64-cgo), const SO_DEBUG = 1 +pkg syscall (darwin-arm64-cgo), const SO_DEBUG ideal-int +pkg syscall (darwin-arm64-cgo), const SO_DONTROUTE = 16 +pkg syscall (darwin-arm64-cgo), const SO_DONTTRUNC = 8192 +pkg syscall (darwin-arm64-cgo), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-arm64-cgo), const SO_ERROR = 4103 +pkg syscall (darwin-arm64-cgo), const SO_ERROR ideal-int +pkg syscall (darwin-arm64-cgo), const SO_KEEPALIVE = 8 +pkg syscall (darwin-arm64-cgo), const SO_LABEL = 4112 +pkg syscall (darwin-arm64-cgo), const SO_LABEL ideal-int +pkg syscall (darwin-arm64-cgo), const SO_LINGER = 128 +pkg syscall (darwin-arm64-cgo), const SO_LINGER_SEC = 4224 +pkg syscall (darwin-arm64-cgo), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NKE = 4129 +pkg syscall (darwin-arm64-cgo), const SO_NKE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NOADDRERR = 4131 +pkg syscall (darwin-arm64-cgo), const SO_NOADDRERR ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NOSIGPIPE = 4130 +pkg syscall (darwin-arm64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NOTIFYCONFLICT = 4134 +pkg syscall (darwin-arm64-cgo), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NP_EXTENSIONS = 4227 +pkg syscall (darwin-arm64-cgo), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NREAD = 4128 +pkg syscall (darwin-arm64-cgo), const SO_NREAD ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NUMRCVPKT = 4370 +pkg syscall (darwin-arm64-cgo), const SO_NUMRCVPKT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_NWRITE = 4132 +pkg syscall (darwin-arm64-cgo), const SO_NWRITE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_OOBINLINE = 256 +pkg syscall (darwin-arm64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_PEERLABEL = 4113 +pkg syscall (darwin-arm64-cgo), const SO_PEERLABEL ideal-int +pkg syscall (darwin-arm64-cgo), const SO_RANDOMPORT = 4226 +pkg syscall (darwin-arm64-cgo), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_RCVBUF = 4098 +pkg syscall (darwin-arm64-cgo), const SO_RCVLOWAT = 4100 +pkg syscall (darwin-arm64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_RCVTIMEO = 4102 +pkg syscall (darwin-arm64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-arm64-cgo), const SO_REUSEADDR = 4 +pkg syscall (darwin-arm64-cgo), const SO_REUSEPORT = 512 +pkg syscall (darwin-arm64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_REUSESHAREUID = 4133 +pkg syscall (darwin-arm64-cgo), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-arm64-cgo), const SO_SNDBUF = 4097 +pkg syscall (darwin-arm64-cgo), const SO_SNDLOWAT = 4099 +pkg syscall (darwin-arm64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_SNDTIMEO = 4101 +pkg syscall (darwin-arm64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP = 1024 +pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP_MONOTONIC = 2048 +pkg syscall (darwin-arm64-cgo), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-arm64-cgo), const SO_TYPE = 4104 +pkg syscall (darwin-arm64-cgo), const SO_TYPE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_UPCALLCLOSEWAIT = 4135 +pkg syscall (darwin-arm64-cgo), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SO_USELOOPBACK = 64 +pkg syscall (darwin-arm64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-arm64-cgo), const SO_WANTMORE = 16384 +pkg syscall (darwin-arm64-cgo), const SO_WANTMORE ideal-int +pkg syscall (darwin-arm64-cgo), const SO_WANTOOBFLAG = 32768 +pkg syscall (darwin-arm64-cgo), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT = 30 +pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT_NOCANCEL = 404 +pkg syscall (darwin-arm64-cgo), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ACCESS = 33 +pkg syscall (darwin-arm64-cgo), const SYS_ACCESS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ACCESS_EXTENDED = 284 +pkg syscall (darwin-arm64-cgo), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ACCT = 51 +pkg syscall (darwin-arm64-cgo), const SYS_ACCT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ADJTIME = 140 +pkg syscall (darwin-arm64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_CANCEL = 316 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_ERROR = 317 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_FSYNC = 313 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_READ = 318 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_READ ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_RETURN = 314 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND = 315 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND_NOCANCEL = 421 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AIO_WRITE = 319 +pkg syscall (darwin-arm64-cgo), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATGETMSG = 207 +pkg syscall (darwin-arm64-cgo), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATPGETREQ = 211 +pkg syscall (darwin-arm64-cgo), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATPGETRSP = 212 +pkg syscall (darwin-arm64-cgo), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDREQ = 209 +pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDRSP = 210 +pkg syscall (darwin-arm64-cgo), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATPUTMSG = 208 +pkg syscall (darwin-arm64-cgo), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ATSOCKET = 206 +pkg syscall (darwin-arm64-cgo), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT = 350 +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDITCTL = 359 +pkg syscall (darwin-arm64-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDITON = 351 +pkg syscall (darwin-arm64-cgo), const SYS_AUDITON ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_JOIN = 429 +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_PORT = 432 +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_SELF = 428 +pkg syscall (darwin-arm64-cgo), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_BIND = 104 +pkg syscall (darwin-arm64-cgo), const SYS_BIND ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_CREATE = 360 +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_REGISTER = 366 +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_TERMINATE = 361 +pkg syscall (darwin-arm64-cgo), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHDIR = 12 +pkg syscall (darwin-arm64-cgo), const SYS_CHDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHFLAGS = 34 +pkg syscall (darwin-arm64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHMOD = 15 +pkg syscall (darwin-arm64-cgo), const SYS_CHMOD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHMOD_EXTENDED = 282 +pkg syscall (darwin-arm64-cgo), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHOWN = 16 +pkg syscall (darwin-arm64-cgo), const SYS_CHOWN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHROOT = 61 +pkg syscall (darwin-arm64-cgo), const SYS_CHROOT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CHUD = 185 +pkg syscall (darwin-arm64-cgo), const SYS_CHUD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CLOSE = 6 +pkg syscall (darwin-arm64-cgo), const SYS_CLOSE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CLOSE_NOCANCEL = 399 +pkg syscall (darwin-arm64-cgo), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CONNECT = 98 +pkg syscall (darwin-arm64-cgo), const SYS_CONNECT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CONNECT_NOCANCEL = 409 +pkg syscall (darwin-arm64-cgo), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_COPYFILE = 227 +pkg syscall (darwin-arm64-cgo), const SYS_COPYFILE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CSOPS = 169 +pkg syscall (darwin-arm64-cgo), const SYS_CSOPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_CSOPS_AUDITTOKEN = 170 +pkg syscall (darwin-arm64-cgo), const SYS_CSOPS_AUDITTOKEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_DELETE = 226 +pkg syscall (darwin-arm64-cgo), const SYS_DELETE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_DUP = 41 +pkg syscall (darwin-arm64-cgo), const SYS_DUP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_DUP2 = 90 +pkg syscall (darwin-arm64-cgo), const SYS_DUP2 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_EXCHANGEDATA = 223 +pkg syscall (darwin-arm64-cgo), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_EXECVE = 59 +pkg syscall (darwin-arm64-cgo), const SYS_EXECVE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_EXIT = 1 +pkg syscall (darwin-arm64-cgo), const SYS_EXIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCHDIR = 13 +pkg syscall (darwin-arm64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCHFLAGS = 35 +pkg syscall (darwin-arm64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD = 124 +pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD_EXTENDED = 283 +pkg syscall (darwin-arm64-cgo), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCHOWN = 123 +pkg syscall (darwin-arm64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCNTL = 92 +pkg syscall (darwin-arm64-cgo), const SYS_FCNTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FCNTL_NOCANCEL = 406 +pkg syscall (darwin-arm64-cgo), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FDATASYNC = 187 +pkg syscall (darwin-arm64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FFSCTL = 245 +pkg syscall (darwin-arm64-cgo), const SYS_FFSCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FGETATTRLIST = 228 +pkg syscall (darwin-arm64-cgo), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FGETXATTR = 235 +pkg syscall (darwin-arm64-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FHOPEN = 248 +pkg syscall (darwin-arm64-cgo), const SYS_FHOPEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEFD = 431 +pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEPORT = 430 +pkg syscall (darwin-arm64-cgo), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FLISTXATTR = 241 +pkg syscall (darwin-arm64-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FLOCK = 131 +pkg syscall (darwin-arm64-cgo), const SYS_FLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FORK = 2 +pkg syscall (darwin-arm64-cgo), const SYS_FORK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FPATHCONF = 192 +pkg syscall (darwin-arm64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FREMOVEXATTR = 239 +pkg syscall (darwin-arm64-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSCTL = 242 +pkg syscall (darwin-arm64-cgo), const SYS_FSCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSETATTRLIST = 229 +pkg syscall (darwin-arm64-cgo), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSETXATTR = 237 +pkg syscall (darwin-arm64-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSGETPATH = 427 +pkg syscall (darwin-arm64-cgo), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT = 189 +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64 = 339 +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64_EXTENDED = 343 +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS = 158 +pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS64 = 346 +pkg syscall (darwin-arm64-cgo), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT_EXTENDED = 281 +pkg syscall (darwin-arm64-cgo), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSYNC = 95 +pkg syscall (darwin-arm64-cgo), const SYS_FSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FSYNC_NOCANCEL = 408 +pkg syscall (darwin-arm64-cgo), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FTRUNCATE = 201 +pkg syscall (darwin-arm64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_FUTIMES = 139 +pkg syscall (darwin-arm64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETATTRLIST = 220 +pkg syscall (darwin-arm64-cgo), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETAUDIT_ADDR = 357 +pkg syscall (darwin-arm64-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETAUID = 353 +pkg syscall (darwin-arm64-cgo), const SYS_GETAUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES = 196 +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES64 = 344 +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIESATTR = 222 +pkg syscall (darwin-arm64-cgo), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETDTABLESIZE = 89 +pkg syscall (darwin-arm64-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETEGID = 43 +pkg syscall (darwin-arm64-cgo), const SYS_GETEGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETEUID = 25 +pkg syscall (darwin-arm64-cgo), const SYS_GETEUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETFH = 161 +pkg syscall (darwin-arm64-cgo), const SYS_GETFH ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT = 18 +pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT64 = 347 +pkg syscall (darwin-arm64-cgo), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETGID = 47 +pkg syscall (darwin-arm64-cgo), const SYS_GETGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETGROUPS = 79 +pkg syscall (darwin-arm64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETHOSTUUID = 142 +pkg syscall (darwin-arm64-cgo), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETITIMER = 86 +pkg syscall (darwin-arm64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETLCID = 395 +pkg syscall (darwin-arm64-cgo), const SYS_GETLCID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETLOGIN = 49 +pkg syscall (darwin-arm64-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPEERNAME = 31 +pkg syscall (darwin-arm64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPGID = 151 +pkg syscall (darwin-arm64-cgo), const SYS_GETPGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPGRP = 81 +pkg syscall (darwin-arm64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPID = 20 +pkg syscall (darwin-arm64-cgo), const SYS_GETPID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPPID = 39 +pkg syscall (darwin-arm64-cgo), const SYS_GETPPID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETPRIORITY = 100 +pkg syscall (darwin-arm64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETRLIMIT = 194 +pkg syscall (darwin-arm64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETRUSAGE = 117 +pkg syscall (darwin-arm64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETSGROUPS = 288 +pkg syscall (darwin-arm64-cgo), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETSID = 310 +pkg syscall (darwin-arm64-cgo), const SYS_GETSID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKNAME = 32 +pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKOPT = 118 +pkg syscall (darwin-arm64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETTID = 286 +pkg syscall (darwin-arm64-cgo), const SYS_GETTID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY = 116 +pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETUID = 24 +pkg syscall (darwin-arm64-cgo), const SYS_GETUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETWGROUPS = 290 +pkg syscall (darwin-arm64-cgo), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_GETXATTR = 234 +pkg syscall (darwin-arm64-cgo), const SYS_GETXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_IDENTITYSVC = 293 +pkg syscall (darwin-arm64-cgo), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_INITGROUPS = 243 +pkg syscall (darwin-arm64-cgo), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_IOCTL = 54 +pkg syscall (darwin-arm64-cgo), const SYS_IOCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_IOPOLICYSYS = 322 +pkg syscall (darwin-arm64-cgo), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_ISSETUGID = 327 +pkg syscall (darwin-arm64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KAS_INFO = 439 +pkg syscall (darwin-arm64-cgo), const SYS_KAS_INFO ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KDEBUG_TRACE = 180 +pkg syscall (darwin-arm64-cgo), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KEVENT = 363 +pkg syscall (darwin-arm64-cgo), const SYS_KEVENT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KEVENT64 = 369 +pkg syscall (darwin-arm64-cgo), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KILL = 37 +pkg syscall (darwin-arm64-cgo), const SYS_KILL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_KQUEUE = 362 +pkg syscall (darwin-arm64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LCHOWN = 364 +pkg syscall (darwin-arm64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LEDGER = 373 +pkg syscall (darwin-arm64-cgo), const SYS_LEDGER ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LINK = 9 +pkg syscall (darwin-arm64-cgo), const SYS_LINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LIO_LISTIO = 320 +pkg syscall (darwin-arm64-cgo), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LISTEN = 106 +pkg syscall (darwin-arm64-cgo), const SYS_LISTEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LISTXATTR = 240 +pkg syscall (darwin-arm64-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LSEEK = 199 +pkg syscall (darwin-arm64-cgo), const SYS_LSEEK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT = 190 +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64 = 340 +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64_EXTENDED = 342 +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT_EXTENDED = 280 +pkg syscall (darwin-arm64-cgo), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MADVISE = 75 +pkg syscall (darwin-arm64-cgo), const SYS_MADVISE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MAXSYSCALL = 440 +pkg syscall (darwin-arm64-cgo), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MINCORE = 78 +pkg syscall (darwin-arm64-cgo), const SYS_MINCORE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MINHERIT = 250 +pkg syscall (darwin-arm64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MKDIR = 136 +pkg syscall (darwin-arm64-cgo), const SYS_MKDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MKDIR_EXTENDED = 292 +pkg syscall (darwin-arm64-cgo), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO = 132 +pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO_EXTENDED = 291 +pkg syscall (darwin-arm64-cgo), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MKNOD = 14 +pkg syscall (darwin-arm64-cgo), const SYS_MKNOD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MLOCK = 203 +pkg syscall (darwin-arm64-cgo), const SYS_MLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MLOCKALL = 324 +pkg syscall (darwin-arm64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MMAP = 197 +pkg syscall (darwin-arm64-cgo), const SYS_MMAP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MODWATCH = 233 +pkg syscall (darwin-arm64-cgo), const SYS_MODWATCH ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MOUNT = 167 +pkg syscall (darwin-arm64-cgo), const SYS_MOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MPROTECT = 74 +pkg syscall (darwin-arm64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGCTL = 258 +pkg syscall (darwin-arm64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGGET = 259 +pkg syscall (darwin-arm64-cgo), const SYS_MSGGET ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV = 261 +pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV_NOCANCEL = 419 +pkg syscall (darwin-arm64-cgo), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGSND = 260 +pkg syscall (darwin-arm64-cgo), const SYS_MSGSND ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGSND_NOCANCEL = 418 +pkg syscall (darwin-arm64-cgo), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSGSYS = 252 +pkg syscall (darwin-arm64-cgo), const SYS_MSGSYS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSYNC = 65 +pkg syscall (darwin-arm64-cgo), const SYS_MSYNC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MSYNC_NOCANCEL = 405 +pkg syscall (darwin-arm64-cgo), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCK = 204 +pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCKALL = 325 +pkg syscall (darwin-arm64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_MUNMAP = 73 +pkg syscall (darwin-arm64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_NFSCLNT = 247 +pkg syscall (darwin-arm64-cgo), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_NFSSVC = 155 +pkg syscall (darwin-arm64-cgo), const SYS_NFSSVC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_OPEN = 5 +pkg syscall (darwin-arm64-cgo), const SYS_OPEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_DPROTECTED_NP = 216 +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_DPROTECTED_NP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_EXTENDED = 277 +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_NOCANCEL = 398 +pkg syscall (darwin-arm64-cgo), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PATHCONF = 191 +pkg syscall (darwin-arm64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PID_HIBERNATE = 435 +pkg syscall (darwin-arm64-cgo), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PID_RESUME = 434 +pkg syscall (darwin-arm64-cgo), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PID_SHUTDOWN_SOCKETS = 436 +pkg syscall (darwin-arm64-cgo), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PID_SUSPEND = 433 +pkg syscall (darwin-arm64-cgo), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PIPE = 42 +pkg syscall (darwin-arm64-cgo), const SYS_PIPE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_POLL = 230 +pkg syscall (darwin-arm64-cgo), const SYS_POLL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_POLL_NOCANCEL = 417 +pkg syscall (darwin-arm64-cgo), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_POSIX_SPAWN = 244 +pkg syscall (darwin-arm64-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PREAD = 153 +pkg syscall (darwin-arm64-cgo), const SYS_PREAD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PREAD_NOCANCEL = 414 +pkg syscall (darwin-arm64-cgo), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PROCESS_POLICY = 323 +pkg syscall (darwin-arm64-cgo), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PROC_INFO = 336 +pkg syscall (darwin-arm64-cgo), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVBROAD = 303 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVCLRPREPOST = 312 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVSIGNAL = 304 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVWAIT = 305 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXDROP = 302 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXWAIT = 301 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_DOWNGRADE = 299 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK = 297 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_RDLOCK = 306 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK = 308 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK2 = 309 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UPGRADE = 300 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_WRLOCK = 307 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK = 298 +pkg syscall (darwin-arm64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PTRACE = 26 +pkg syscall (darwin-arm64-cgo), const SYS_PTRACE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PWRITE = 154 +pkg syscall (darwin-arm64-cgo), const SYS_PWRITE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_PWRITE_NOCANCEL = 415 +pkg syscall (darwin-arm64-cgo), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_QUOTACTL = 165 +pkg syscall (darwin-arm64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_READ = 3 +pkg syscall (darwin-arm64-cgo), const SYS_READ ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_READLINK = 58 +pkg syscall (darwin-arm64-cgo), const SYS_READLINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_READV = 120 +pkg syscall (darwin-arm64-cgo), const SYS_READV ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_READV_NOCANCEL = 411 +pkg syscall (darwin-arm64-cgo), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_READ_NOCANCEL = 396 +pkg syscall (darwin-arm64-cgo), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_REBOOT = 55 +pkg syscall (darwin-arm64-cgo), const SYS_REBOOT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM = 29 +pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM_NOCANCEL = 403 +pkg syscall (darwin-arm64-cgo), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG = 27 +pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG_NOCANCEL = 401 +pkg syscall (darwin-arm64-cgo), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_REMOVEXATTR = 238 +pkg syscall (darwin-arm64-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RENAME = 128 +pkg syscall (darwin-arm64-cgo), const SYS_RENAME ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_REVOKE = 56 +pkg syscall (darwin-arm64-cgo), const SYS_REVOKE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_RMDIR = 137 +pkg syscall (darwin-arm64-cgo), const SYS_RMDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEARCHFS = 225 +pkg syscall (darwin-arm64-cgo), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SELECT = 93 +pkg syscall (darwin-arm64-cgo), const SYS_SELECT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SELECT_NOCANCEL = 407 +pkg syscall (darwin-arm64-cgo), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEMCTL = 254 +pkg syscall (darwin-arm64-cgo), const SYS_SEMCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEMGET = 255 +pkg syscall (darwin-arm64-cgo), const SYS_SEMGET ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEMOP = 256 +pkg syscall (darwin-arm64-cgo), const SYS_SEMOP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEMSYS = 251 +pkg syscall (darwin-arm64-cgo), const SYS_SEMSYS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_CLOSE = 269 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_DESTROY = 276 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_GETVALUE = 274 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_INIT = 275 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_OPEN = 268 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_POST = 273 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_POST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_TRYWAIT = 272 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_UNLINK = 270 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT = 271 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT_NOCANCEL = 420 +pkg syscall (darwin-arm64-cgo), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SENDFILE = 337 +pkg syscall (darwin-arm64-cgo), const SYS_SENDFILE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG = 28 +pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG_NOCANCEL = 402 +pkg syscall (darwin-arm64-cgo), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SENDTO = 133 +pkg syscall (darwin-arm64-cgo), const SYS_SENDTO ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SENDTO_NOCANCEL = 413 +pkg syscall (darwin-arm64-cgo), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETATTRLIST = 221 +pkg syscall (darwin-arm64-cgo), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETAUDIT_ADDR = 358 +pkg syscall (darwin-arm64-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETAUID = 354 +pkg syscall (darwin-arm64-cgo), const SYS_SETAUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETEGID = 182 +pkg syscall (darwin-arm64-cgo), const SYS_SETEGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETEUID = 183 +pkg syscall (darwin-arm64-cgo), const SYS_SETEUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETGID = 181 +pkg syscall (darwin-arm64-cgo), const SYS_SETGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETGROUPS = 80 +pkg syscall (darwin-arm64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETITIMER = 83 +pkg syscall (darwin-arm64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETLCID = 394 +pkg syscall (darwin-arm64-cgo), const SYS_SETLCID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETLOGIN = 50 +pkg syscall (darwin-arm64-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETPGID = 82 +pkg syscall (darwin-arm64-cgo), const SYS_SETPGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETPRIORITY = 96 +pkg syscall (darwin-arm64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETPRIVEXEC = 152 +pkg syscall (darwin-arm64-cgo), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETREGID = 127 +pkg syscall (darwin-arm64-cgo), const SYS_SETREGID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETREUID = 126 +pkg syscall (darwin-arm64-cgo), const SYS_SETREUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETRLIMIT = 195 +pkg syscall (darwin-arm64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETSGROUPS = 287 +pkg syscall (darwin-arm64-cgo), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETSID = 147 +pkg syscall (darwin-arm64-cgo), const SYS_SETSID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETSOCKOPT = 105 +pkg syscall (darwin-arm64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETTID = 285 +pkg syscall (darwin-arm64-cgo), const SYS_SETTID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETTID_WITH_PID = 311 +pkg syscall (darwin-arm64-cgo), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETTIMEOFDAY = 122 +pkg syscall (darwin-arm64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETUID = 23 +pkg syscall (darwin-arm64-cgo), const SYS_SETUID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETWGROUPS = 289 +pkg syscall (darwin-arm64-cgo), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SETXATTR = 236 +pkg syscall (darwin-arm64-cgo), const SYS_SETXATTR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_CHECK_NP = 294 +pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 +pkg syscall (darwin-arm64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHMAT = 262 +pkg syscall (darwin-arm64-cgo), const SYS_SHMAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHMCTL = 263 +pkg syscall (darwin-arm64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHMDT = 264 +pkg syscall (darwin-arm64-cgo), const SYS_SHMDT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHMGET = 265 +pkg syscall (darwin-arm64-cgo), const SYS_SHMGET ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHMSYS = 253 +pkg syscall (darwin-arm64-cgo), const SYS_SHMSYS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHM_OPEN = 266 +pkg syscall (darwin-arm64-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHM_UNLINK = 267 +pkg syscall (darwin-arm64-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SHUTDOWN = 134 +pkg syscall (darwin-arm64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGACTION = 46 +pkg syscall (darwin-arm64-cgo), const SYS_SIGACTION ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGALTSTACK = 53 +pkg syscall (darwin-arm64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGPENDING = 52 +pkg syscall (darwin-arm64-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGPROCMASK = 48 +pkg syscall (darwin-arm64-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGRETURN = 184 +pkg syscall (darwin-arm64-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND = 111 +pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND_NOCANCEL = 410 +pkg syscall (darwin-arm64-cgo), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SOCKET = 97 +pkg syscall (darwin-arm64-cgo), const SYS_SOCKET ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SOCKETPAIR = 135 +pkg syscall (darwin-arm64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STACK_SNAPSHOT = 365 +pkg syscall (darwin-arm64-cgo), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STAT = 188 +pkg syscall (darwin-arm64-cgo), const SYS_STAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STAT64 = 338 +pkg syscall (darwin-arm64-cgo), const SYS_STAT64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STAT64_EXTENDED = 341 +pkg syscall (darwin-arm64-cgo), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STATFS = 157 +pkg syscall (darwin-arm64-cgo), const SYS_STATFS ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STATFS64 = 345 +pkg syscall (darwin-arm64-cgo), const SYS_STATFS64 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_STAT_EXTENDED = 279 +pkg syscall (darwin-arm64-cgo), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SWAPON = 85 +pkg syscall (darwin-arm64-cgo), const SYS_SWAPON ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SYMLINK = 57 +pkg syscall (darwin-arm64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SYNC = 36 +pkg syscall (darwin-arm64-cgo), const SYS_SYNC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_SYSCALL = 0 +pkg syscall (darwin-arm64-cgo), const SYS_SYSCALL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_THREAD_SELFID = 372 +pkg syscall (darwin-arm64-cgo), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_TRUNCATE = 200 +pkg syscall (darwin-arm64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UMASK = 60 +pkg syscall (darwin-arm64-cgo), const SYS_UMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UMASK_EXTENDED = 278 +pkg syscall (darwin-arm64-cgo), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UNDELETE = 205 +pkg syscall (darwin-arm64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UNLINK = 10 +pkg syscall (darwin-arm64-cgo), const SYS_UNLINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UNMOUNT = 159 +pkg syscall (darwin-arm64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_UTIMES = 138 +pkg syscall (darwin-arm64-cgo), const SYS_UTIMES ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_VFORK = 66 +pkg syscall (darwin-arm64-cgo), const SYS_VFORK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_VM_PRESSURE_MONITOR = 296 +pkg syscall (darwin-arm64-cgo), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WAIT4 = 7 +pkg syscall (darwin-arm64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WAIT4_NOCANCEL = 400 +pkg syscall (darwin-arm64-cgo), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WAITEVENT = 232 +pkg syscall (darwin-arm64-cgo), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WAITID = 173 +pkg syscall (darwin-arm64-cgo), const SYS_WAITID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WAITID_NOCANCEL = 416 +pkg syscall (darwin-arm64-cgo), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WATCHEVENT = 231 +pkg syscall (darwin-arm64-cgo), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_KERNRETURN = 368 +pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_OPEN = 367 +pkg syscall (darwin-arm64-cgo), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WRITE = 4 +pkg syscall (darwin-arm64-cgo), const SYS_WRITE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WRITEV = 121 +pkg syscall (darwin-arm64-cgo), const SYS_WRITEV ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WRITEV_NOCANCEL = 412 +pkg syscall (darwin-arm64-cgo), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS_WRITE_NOCANCEL = 397 +pkg syscall (darwin-arm64-cgo), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___DISABLE_THREADSIGNAL = 331 +pkg syscall (darwin-arm64-cgo), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_EXECVE = 380 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GETFSSTAT = 426 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FD = 388 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FILE = 382 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCID = 391 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCTX = 392 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LINK = 384 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_MOUNT = 425 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PID = 390 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PROC = 386 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_MOUNT = 424 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FD = 389 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FILE = 383 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LCTX = 393 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LINK = 385 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_PROC = 387 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SYSCALL = 381 +pkg syscall (darwin-arm64-cgo), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL = 370 +pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 +pkg syscall (darwin-arm64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CANCELED = 333 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CHDIR = 348 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_FCHDIR = 349 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_KILL = 328 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_MARKCANCEL = 332 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_SIGMASK = 329 +pkg syscall (darwin-arm64-cgo), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL = 334 +pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 +pkg syscall (darwin-arm64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT = 330 +pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT_NOCANCEL = 422 +pkg syscall (darwin-arm64-cgo), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-arm64-cgo), const SYS___SYSCTL = 202 +pkg syscall (darwin-arm64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (darwin-arm64-cgo), const S_IEXEC = 64 +pkg syscall (darwin-arm64-cgo), const S_IEXEC ideal-int +pkg syscall (darwin-arm64-cgo), const S_IFMT = 61440 +pkg syscall (darwin-arm64-cgo), const S_IFWHT = 57344 +pkg syscall (darwin-arm64-cgo), const S_IFWHT ideal-int +pkg syscall (darwin-arm64-cgo), const S_IREAD = 256 +pkg syscall (darwin-arm64-cgo), const S_IREAD ideal-int +pkg syscall (darwin-arm64-cgo), const S_IRGRP = 32 +pkg syscall (darwin-arm64-cgo), const S_IRGRP ideal-int +pkg syscall (darwin-arm64-cgo), const S_IROTH = 4 +pkg syscall (darwin-arm64-cgo), const S_IROTH ideal-int +pkg syscall (darwin-arm64-cgo), const S_IRWXG = 56 +pkg syscall (darwin-arm64-cgo), const S_IRWXG ideal-int +pkg syscall (darwin-arm64-cgo), const S_IRWXO = 7 +pkg syscall (darwin-arm64-cgo), const S_IRWXO ideal-int +pkg syscall (darwin-arm64-cgo), const S_IRWXU = 448 +pkg syscall (darwin-arm64-cgo), const S_IRWXU ideal-int +pkg syscall (darwin-arm64-cgo), const S_ISTXT = 512 +pkg syscall (darwin-arm64-cgo), const S_ISTXT ideal-int +pkg syscall (darwin-arm64-cgo), const S_IWGRP = 16 +pkg syscall (darwin-arm64-cgo), const S_IWGRP ideal-int +pkg syscall (darwin-arm64-cgo), const S_IWOTH = 2 +pkg syscall (darwin-arm64-cgo), const S_IWOTH ideal-int +pkg syscall (darwin-arm64-cgo), const S_IWRITE = 128 +pkg syscall (darwin-arm64-cgo), const S_IWRITE ideal-int +pkg syscall (darwin-arm64-cgo), const S_IXGRP = 8 +pkg syscall (darwin-arm64-cgo), const S_IXGRP ideal-int +pkg syscall (darwin-arm64-cgo), const S_IXOTH = 1 +pkg syscall (darwin-arm64-cgo), const S_IXOTH ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofBpfHdr = 20 +pkg syscall (darwin-arm64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofBpfInsn = 8 +pkg syscall (darwin-arm64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofBpfProgram = 16 +pkg syscall (darwin-arm64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofBpfStat = 8 +pkg syscall (darwin-arm64-cgo), const SizeofBpfStat ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofBpfVersion = 4 +pkg syscall (darwin-arm64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofCmsghdr = 12 +pkg syscall (darwin-arm64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-arm64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIPMreq = 8 +pkg syscall (darwin-arm64-cgo), const SizeofIPMreq ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-arm64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIPv6Mreq = 20 +pkg syscall (darwin-arm64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIfData = 96 +pkg syscall (darwin-arm64-cgo), const SizeofIfData ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIfMsghdr = 112 +pkg syscall (darwin-arm64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIfaMsghdr = 20 +pkg syscall (darwin-arm64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr = 16 +pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr2 = 20 +pkg syscall (darwin-arm64-cgo), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofInet4Pktinfo = 12 +pkg syscall (darwin-arm64-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofInet6Pktinfo = 20 +pkg syscall (darwin-arm64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofLinger = 8 +pkg syscall (darwin-arm64-cgo), const SizeofLinger ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofMsghdr = 48 +pkg syscall (darwin-arm64-cgo), const SizeofMsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofRtMetrics = 56 +pkg syscall (darwin-arm64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofRtMsghdr = 92 +pkg syscall (darwin-arm64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrAny = 108 +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrDatalink = 20 +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet4 = 16 +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet6 = 28 +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (darwin-arm64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-arm64-cgo), const TCIFLUSH = 1 +pkg syscall (darwin-arm64-cgo), const TCIFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TCIOFLUSH = 3 +pkg syscall (darwin-arm64-cgo), const TCIOFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TCOFLUSH = 2 +pkg syscall (darwin-arm64-cgo), const TCOFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_CONNECTIONTIMEOUT = 32 +pkg syscall (darwin-arm64-cgo), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_ENABLE_ECN = 260 +pkg syscall (darwin-arm64-cgo), const TCP_ENABLE_ECN ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_KEEPALIVE = 16 +pkg syscall (darwin-arm64-cgo), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_KEEPCNT = 258 +pkg syscall (darwin-arm64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_KEEPINTVL = 257 +pkg syscall (darwin-arm64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAXHLEN = 60 +pkg syscall (darwin-arm64-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAXOLEN = 40 +pkg syscall (darwin-arm64-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAXSEG = 2 +pkg syscall (darwin-arm64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAXWIN = 65535 +pkg syscall (darwin-arm64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAX_SACK = 4 +pkg syscall (darwin-arm64-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MAX_WINSHIFT = 14 +pkg syscall (darwin-arm64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MINMSS = 216 +pkg syscall (darwin-arm64-cgo), const TCP_MINMSS ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_MSS = 512 +pkg syscall (darwin-arm64-cgo), const TCP_MSS ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_NOOPT = 8 +pkg syscall (darwin-arm64-cgo), const TCP_NOOPT ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_NOPUSH = 4 +pkg syscall (darwin-arm64-cgo), const TCP_NOPUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_NOTSENT_LOWAT = 513 +pkg syscall (darwin-arm64-cgo), const TCP_NOTSENT_LOWAT ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_RXT_CONNDROPTIME = 128 +pkg syscall (darwin-arm64-cgo), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_RXT_FINDROP = 256 +pkg syscall (darwin-arm64-cgo), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-arm64-cgo), const TCP_SENDMOREACKS = 259 +pkg syscall (darwin-arm64-cgo), const TCP_SENDMOREACKS ideal-int +pkg syscall (darwin-arm64-cgo), const TCSAFLUSH = 2 +pkg syscall (darwin-arm64-cgo), const TCSAFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCCBRK = 536900730 +pkg syscall (darwin-arm64-cgo), const TIOCCBRK ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCCDTR = 536900728 +pkg syscall (darwin-arm64-cgo), const TIOCCDTR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCCONS = 2147775586 +pkg syscall (darwin-arm64-cgo), const TIOCCONS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCDCDTIMESTAMP = 1074820184 +pkg syscall (darwin-arm64-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCDRAIN = 536900702 +pkg syscall (darwin-arm64-cgo), const TIOCDRAIN ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCDSIMICROCODE = 536900693 +pkg syscall (darwin-arm64-cgo), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCEXCL = 536900621 +pkg syscall (darwin-arm64-cgo), const TIOCEXCL ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCEXT = 2147775584 +pkg syscall (darwin-arm64-cgo), const TIOCEXT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCFLUSH = 2147775504 +pkg syscall (darwin-arm64-cgo), const TIOCFLUSH ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCGDRAINWAIT = 1074033750 +pkg syscall (darwin-arm64-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCGETA = 1078490131 +pkg syscall (darwin-arm64-cgo), const TIOCGETA ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCGETD = 1074033690 +pkg syscall (darwin-arm64-cgo), const TIOCGETD ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCGPGRP = 1074033783 +pkg syscall (darwin-arm64-cgo), const TIOCGPGRP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCGWINSZ = 1074295912 +pkg syscall (darwin-arm64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCIXOFF = 536900736 +pkg syscall (darwin-arm64-cgo), const TIOCIXOFF ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCIXON = 536900737 +pkg syscall (darwin-arm64-cgo), const TIOCIXON ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMBIC = 2147775595 +pkg syscall (darwin-arm64-cgo), const TIOCMBIC ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMBIS = 2147775596 +pkg syscall (darwin-arm64-cgo), const TIOCMBIS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMGDTRWAIT = 1074033754 +pkg syscall (darwin-arm64-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMGET = 1074033770 +pkg syscall (darwin-arm64-cgo), const TIOCMGET ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMODG = 1074033667 +pkg syscall (darwin-arm64-cgo), const TIOCMODG ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMODS = 2147775492 +pkg syscall (darwin-arm64-cgo), const TIOCMODS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMSDTRWAIT = 2147775579 +pkg syscall (darwin-arm64-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCMSET = 2147775597 +pkg syscall (darwin-arm64-cgo), const TIOCMSET ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_CAR = 64 +pkg syscall (darwin-arm64-cgo), const TIOCM_CAR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_CD = 64 +pkg syscall (darwin-arm64-cgo), const TIOCM_CD ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_CTS = 32 +pkg syscall (darwin-arm64-cgo), const TIOCM_CTS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_DSR = 256 +pkg syscall (darwin-arm64-cgo), const TIOCM_DSR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_DTR = 2 +pkg syscall (darwin-arm64-cgo), const TIOCM_DTR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_LE = 1 +pkg syscall (darwin-arm64-cgo), const TIOCM_LE ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_RI = 128 +pkg syscall (darwin-arm64-cgo), const TIOCM_RI ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_RNG = 128 +pkg syscall (darwin-arm64-cgo), const TIOCM_RNG ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_RTS = 4 +pkg syscall (darwin-arm64-cgo), const TIOCM_RTS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_SR = 16 +pkg syscall (darwin-arm64-cgo), const TIOCM_SR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCM_ST = 8 +pkg syscall (darwin-arm64-cgo), const TIOCM_ST ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCNOTTY = 536900721 +pkg syscall (darwin-arm64-cgo), const TIOCNOTTY ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCNXCL = 536900622 +pkg syscall (darwin-arm64-cgo), const TIOCNXCL ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCOUTQ = 1074033779 +pkg syscall (darwin-arm64-cgo), const TIOCOUTQ ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT = 2147775600 +pkg syscall (darwin-arm64-cgo), const TIOCPKT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_DATA = 0 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_DOSTOP = 32 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHREAD = 1 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHWRITE = 2 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_IOCTL = 64 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_NOSTOP = 16 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_START = 8 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_START ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPKT_STOP = 4 +pkg syscall (darwin-arm64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPTYGNAME = 1082160211 +pkg syscall (darwin-arm64-cgo), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPTYGRANT = 536900692 +pkg syscall (darwin-arm64-cgo), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCPTYUNLK = 536900690 +pkg syscall (darwin-arm64-cgo), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCREMOTE = 2147775593 +pkg syscall (darwin-arm64-cgo), const TIOCREMOTE ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSBRK = 536900731 +pkg syscall (darwin-arm64-cgo), const TIOCSBRK ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSCONS = 536900707 +pkg syscall (darwin-arm64-cgo), const TIOCSCONS ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSCTTY = 536900705 +pkg syscall (darwin-arm64-cgo), const TIOCSCTTY ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSDRAINWAIT = 2147775575 +pkg syscall (darwin-arm64-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSDTR = 536900729 +pkg syscall (darwin-arm64-cgo), const TIOCSDTR ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSETA = 2152231956 +pkg syscall (darwin-arm64-cgo), const TIOCSETA ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSETAF = 2152231958 +pkg syscall (darwin-arm64-cgo), const TIOCSETAF ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSETAW = 2152231957 +pkg syscall (darwin-arm64-cgo), const TIOCSETAW ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSETD = 2147775515 +pkg syscall (darwin-arm64-cgo), const TIOCSETD ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSIG = 536900703 +pkg syscall (darwin-arm64-cgo), const TIOCSIG ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSPGRP = 2147775606 +pkg syscall (darwin-arm64-cgo), const TIOCSPGRP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSTART = 536900718 +pkg syscall (darwin-arm64-cgo), const TIOCSTART ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSTAT = 536900709 +pkg syscall (darwin-arm64-cgo), const TIOCSTAT ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSTI = 2147578994 +pkg syscall (darwin-arm64-cgo), const TIOCSTI ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSTOP = 536900719 +pkg syscall (darwin-arm64-cgo), const TIOCSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCSWINSZ = 2148037735 +pkg syscall (darwin-arm64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCTIMESTAMP = 1074820185 +pkg syscall (darwin-arm64-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-arm64-cgo), const TIOCUCNTL = 2147775590 +pkg syscall (darwin-arm64-cgo), const TIOCUCNTL ideal-int +pkg syscall (darwin-arm64-cgo), const TOSTOP = 4194304 +pkg syscall (darwin-arm64-cgo), const TOSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const VDISCARD = 15 +pkg syscall (darwin-arm64-cgo), const VDISCARD ideal-int +pkg syscall (darwin-arm64-cgo), const VDSUSP = 11 +pkg syscall (darwin-arm64-cgo), const VDSUSP ideal-int +pkg syscall (darwin-arm64-cgo), const VEOF = 0 +pkg syscall (darwin-arm64-cgo), const VEOF ideal-int +pkg syscall (darwin-arm64-cgo), const VEOL = 1 +pkg syscall (darwin-arm64-cgo), const VEOL ideal-int +pkg syscall (darwin-arm64-cgo), const VEOL2 = 2 +pkg syscall (darwin-arm64-cgo), const VEOL2 ideal-int +pkg syscall (darwin-arm64-cgo), const VERASE = 3 +pkg syscall (darwin-arm64-cgo), const VERASE ideal-int +pkg syscall (darwin-arm64-cgo), const VINTR = 8 +pkg syscall (darwin-arm64-cgo), const VINTR ideal-int +pkg syscall (darwin-arm64-cgo), const VKILL = 5 +pkg syscall (darwin-arm64-cgo), const VKILL ideal-int +pkg syscall (darwin-arm64-cgo), const VLNEXT = 14 +pkg syscall (darwin-arm64-cgo), const VLNEXT ideal-int +pkg syscall (darwin-arm64-cgo), const VMIN = 16 +pkg syscall (darwin-arm64-cgo), const VMIN ideal-int +pkg syscall (darwin-arm64-cgo), const VQUIT = 9 +pkg syscall (darwin-arm64-cgo), const VQUIT ideal-int +pkg syscall (darwin-arm64-cgo), const VREPRINT = 6 +pkg syscall (darwin-arm64-cgo), const VREPRINT ideal-int +pkg syscall (darwin-arm64-cgo), const VSTART = 12 +pkg syscall (darwin-arm64-cgo), const VSTART ideal-int +pkg syscall (darwin-arm64-cgo), const VSTATUS = 18 +pkg syscall (darwin-arm64-cgo), const VSTATUS ideal-int +pkg syscall (darwin-arm64-cgo), const VSTOP = 13 +pkg syscall (darwin-arm64-cgo), const VSTOP ideal-int +pkg syscall (darwin-arm64-cgo), const VSUSP = 10 +pkg syscall (darwin-arm64-cgo), const VSUSP ideal-int +pkg syscall (darwin-arm64-cgo), const VT0 = 0 +pkg syscall (darwin-arm64-cgo), const VT0 ideal-int +pkg syscall (darwin-arm64-cgo), const VT1 = 65536 +pkg syscall (darwin-arm64-cgo), const VT1 ideal-int +pkg syscall (darwin-arm64-cgo), const VTDLY = 65536 +pkg syscall (darwin-arm64-cgo), const VTDLY ideal-int +pkg syscall (darwin-arm64-cgo), const VTIME = 17 +pkg syscall (darwin-arm64-cgo), const VTIME ideal-int +pkg syscall (darwin-arm64-cgo), const VWERASE = 4 +pkg syscall (darwin-arm64-cgo), const VWERASE ideal-int +pkg syscall (darwin-arm64-cgo), const WCONTINUED = 16 +pkg syscall (darwin-arm64-cgo), const WCONTINUED ideal-int +pkg syscall (darwin-arm64-cgo), const WCOREFLAG = 128 +pkg syscall (darwin-arm64-cgo), const WCOREFLAG ideal-int +pkg syscall (darwin-arm64-cgo), const WEXITED = 4 +pkg syscall (darwin-arm64-cgo), const WEXITED ideal-int +pkg syscall (darwin-arm64-cgo), const WNOHANG = 1 +pkg syscall (darwin-arm64-cgo), const WNOHANG ideal-int +pkg syscall (darwin-arm64-cgo), const WNOWAIT = 32 +pkg syscall (darwin-arm64-cgo), const WNOWAIT ideal-int +pkg syscall (darwin-arm64-cgo), const WORDSIZE = 64 +pkg syscall (darwin-arm64-cgo), const WORDSIZE ideal-int +pkg syscall (darwin-arm64-cgo), const WSTOPPED = 8 +pkg syscall (darwin-arm64-cgo), const WSTOPPED ideal-int +pkg syscall (darwin-arm64-cgo), const WUNTRACED = 2 +pkg syscall (darwin-arm64-cgo), const WUNTRACED ideal-int +pkg syscall (darwin-arm64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func Access(string, uint32) error +pkg syscall (darwin-arm64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-arm64-cgo), func Bind(int, Sockaddr) error +pkg syscall (darwin-arm64-cgo), func BpfBuflen //deprecated +pkg syscall (darwin-arm64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (darwin-arm64-cgo), func BpfDatalink //deprecated +pkg syscall (darwin-arm64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (darwin-arm64-cgo), func BpfHeadercmpl //deprecated +pkg syscall (darwin-arm64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-arm64-cgo), func BpfInterface //deprecated +pkg syscall (darwin-arm64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-arm64-cgo), func BpfJump //deprecated +pkg syscall (darwin-arm64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-arm64-cgo), func BpfStats //deprecated +pkg syscall (darwin-arm64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-arm64-cgo), func BpfStmt //deprecated +pkg syscall (darwin-arm64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-arm64-cgo), func BpfTimeout //deprecated +pkg syscall (darwin-arm64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-arm64-cgo), func CheckBpfVersion //deprecated +pkg syscall (darwin-arm64-cgo), func CheckBpfVersion(int) error +pkg syscall (darwin-arm64-cgo), func Chflags(string, int) error +pkg syscall (darwin-arm64-cgo), func Chroot(string) error +pkg syscall (darwin-arm64-cgo), func Close(int) error +pkg syscall (darwin-arm64-cgo), func CloseOnExec(int) +pkg syscall (darwin-arm64-cgo), func CmsgLen(int) int +pkg syscall (darwin-arm64-cgo), func CmsgSpace(int) int +pkg syscall (darwin-arm64-cgo), func Connect(int, Sockaddr) error +pkg syscall (darwin-arm64-cgo), func Dup(int) (int, error) +pkg syscall (darwin-arm64-cgo), func Dup2(int, int) error +pkg syscall (darwin-arm64-cgo), func Exchangedata(string, string, int) error +pkg syscall (darwin-arm64-cgo), func Fchdir(int) error +pkg syscall (darwin-arm64-cgo), func Fchflags(int, int) error +pkg syscall (darwin-arm64-cgo), func Fchmod(int, uint32) error +pkg syscall (darwin-arm64-cgo), func Fchown(int, int, int) error +pkg syscall (darwin-arm64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-arm64-cgo), func Flock(int, int) error +pkg syscall (darwin-arm64-cgo), func FlushBpf //deprecated +pkg syscall (darwin-arm64-cgo), func FlushBpf(int) error +pkg syscall (darwin-arm64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-arm64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (darwin-arm64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-arm64-cgo), func Fsync(int) error +pkg syscall (darwin-arm64-cgo), func Ftruncate(int, int64) error +pkg syscall (darwin-arm64-cgo), func Futimes(int, []Timeval) error +pkg syscall (darwin-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-arm64-cgo), func Getdtablesize() int +pkg syscall (darwin-arm64-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func Getpgid(int) (int, error) +pkg syscall (darwin-arm64-cgo), func Getpgrp() int +pkg syscall (darwin-arm64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-arm64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (darwin-arm64-cgo), func Getsid(int) (int, error) +pkg syscall (darwin-arm64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-arm64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Issetugid() bool +pkg syscall (darwin-arm64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-arm64-cgo), func Kill(int, Signal) error +pkg syscall (darwin-arm64-cgo), func Kqueue() (int, error) +pkg syscall (darwin-arm64-cgo), func Listen(int, int) error +pkg syscall (darwin-arm64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (darwin-arm64-cgo), func Mkfifo(string, uint32) error +pkg syscall (darwin-arm64-cgo), func Mknod(string, uint32, int) error +pkg syscall (darwin-arm64-cgo), func Mlock([]uint8) error +pkg syscall (darwin-arm64-cgo), func Mlockall(int) error +pkg syscall (darwin-arm64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-arm64-cgo), func Mprotect([]uint8, int) error +pkg syscall (darwin-arm64-cgo), func Munlock([]uint8) error +pkg syscall (darwin-arm64-cgo), func Munlockall() error +pkg syscall (darwin-arm64-cgo), func Munmap([]uint8) error +pkg syscall (darwin-arm64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-arm64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-arm64-cgo), func ParseRoutingMessage //deprecated +pkg syscall (darwin-arm64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-arm64-cgo), func ParseRoutingSockaddr //deprecated +pkg syscall (darwin-arm64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-arm64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-arm64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Pipe([]int) error +pkg syscall (darwin-arm64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-arm64-cgo), func PtraceAttach(int) error +pkg syscall (darwin-arm64-cgo), func PtraceDetach(int) error +pkg syscall (darwin-arm64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-arm64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (darwin-arm64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-arm64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-arm64-cgo), func Revoke(string) error +pkg syscall (darwin-arm64-cgo), func RouteRIB //deprecated +pkg syscall (darwin-arm64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-arm64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-arm64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-arm64-cgo), func SetBpf //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-arm64-cgo), func SetBpfBuflen //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func SetBpfDatalink //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func SetBpfHeadercmpl //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-arm64-cgo), func SetBpfImmediate //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (darwin-arm64-cgo), func SetBpfInterface //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfInterface(int, string) error +pkg syscall (darwin-arm64-cgo), func SetBpfPromisc //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (darwin-arm64-cgo), func SetBpfTimeout //deprecated +pkg syscall (darwin-arm64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-arm64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-arm64-cgo), func SetNonblock(int, bool) error +pkg syscall (darwin-arm64-cgo), func Setegid(int) error +pkg syscall (darwin-arm64-cgo), func Seteuid(int) error +pkg syscall (darwin-arm64-cgo), func Setgid(int) error +pkg syscall (darwin-arm64-cgo), func Setgroups([]int) error +pkg syscall (darwin-arm64-cgo), func Setlogin(string) error +pkg syscall (darwin-arm64-cgo), func Setpgid(int, int) error +pkg syscall (darwin-arm64-cgo), func Setpriority(int, int, int) error +pkg syscall (darwin-arm64-cgo), func Setprivexec(int) error +pkg syscall (darwin-arm64-cgo), func Setregid(int, int) error +pkg syscall (darwin-arm64-cgo), func Setreuid(int, int) error +pkg syscall (darwin-arm64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-arm64-cgo), func Setsid() (int, error) +pkg syscall (darwin-arm64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-arm64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-arm64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-arm64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-arm64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-arm64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-arm64-cgo), func Settimeofday(*Timeval) error +pkg syscall (darwin-arm64-cgo), func Setuid(int) error +pkg syscall (darwin-arm64-cgo), func Shutdown(int, int) error +pkg syscall (darwin-arm64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (darwin-arm64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (darwin-arm64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-arm64-cgo), func Stat(string, *Stat_t) error +pkg syscall (darwin-arm64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-arm64-cgo), func StringSlicePtr //deprecated +pkg syscall (darwin-arm64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-arm64-cgo), func Sync() error +pkg syscall (darwin-arm64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-arm64-cgo), func Sysctl(string) (string, error) +pkg syscall (darwin-arm64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-arm64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-arm64-cgo), func Truncate(string, int64) error +pkg syscall (darwin-arm64-cgo), func Umask(int) int +pkg syscall (darwin-arm64-cgo), func Undelete(string) error +pkg syscall (darwin-arm64-cgo), func UnixRights(...int) []uint8 +pkg syscall (darwin-arm64-cgo), func Unmount(string, int) error +pkg syscall (darwin-arm64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-arm64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (darwin-arm64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-arm64-cgo), method (*Iovec) SetLen(int) +pkg syscall (darwin-arm64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-arm64-cgo), type BpfHdr struct +pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type BpfHdr struct, Tstamp Timeval32 +pkg syscall (darwin-arm64-cgo), type BpfInsn struct +pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-arm64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-arm64-cgo), type BpfInsn struct, K uint32 +pkg syscall (darwin-arm64-cgo), type BpfProgram struct +pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (darwin-arm64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type BpfStat struct +pkg syscall (darwin-arm64-cgo), type BpfStat struct, Drop uint32 +pkg syscall (darwin-arm64-cgo), type BpfStat struct, Recv uint32 +pkg syscall (darwin-arm64-cgo), type BpfVersion struct +pkg syscall (darwin-arm64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (darwin-arm64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-arm64-cgo), type Cmsghdr struct +pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (darwin-arm64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (darwin-arm64-cgo), type Credential struct +pkg syscall (darwin-arm64-cgo), type Credential struct, Gid uint32 +pkg syscall (darwin-arm64-cgo), type Credential struct, Groups []uint32 +pkg syscall (darwin-arm64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (darwin-arm64-cgo), type Credential struct, Uid uint32 +pkg syscall (darwin-arm64-cgo), type Dirent struct +pkg syscall (darwin-arm64-cgo), type Dirent struct, Ino uint64 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-arm64-cgo), type Dirent struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct +pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Length uint64 +pkg syscall (darwin-arm64-cgo), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-arm64-cgo), type FdSet struct +pkg syscall (darwin-arm64-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-arm64-cgo), type Flock_t struct +pkg syscall (darwin-arm64-cgo), type Flock_t struct, Len int64 +pkg syscall (darwin-arm64-cgo), type Flock_t struct, Pid int32 +pkg syscall (darwin-arm64-cgo), type Flock_t struct, Start int64 +pkg syscall (darwin-arm64-cgo), type Flock_t struct, Type int16 +pkg syscall (darwin-arm64-cgo), type Flock_t struct, Whence int16 +pkg syscall (darwin-arm64-cgo), type Fsid struct +pkg syscall (darwin-arm64-cgo), type Fsid struct, Val [2]int32 +pkg syscall (darwin-arm64-cgo), type Fstore_t struct +pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Length int64 +pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Offset int64 +pkg syscall (darwin-arm64-cgo), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-arm64-cgo), type ICMPv6Filter struct +pkg syscall (darwin-arm64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct +pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct +pkg syscall (darwin-arm64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Baudrate uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Collisions uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Hwassist uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Ibytes uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Ierrors uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Imcasts uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Ipackets uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Lastchange Timeval32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Metric uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Mtu uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Noproto uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Obytes uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Oerrors uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Omcasts uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Opackets uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Physical uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Recvquota uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Typelen uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Unused1 uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Unused2 uint32 +pkg syscall (darwin-arm64-cgo), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-arm64-cgo), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct +pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-arm64-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct +pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage //deprecated +pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct +pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-arm64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-arm64-cgo), type InterfaceMessage //deprecated +pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct +pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-arm64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage //deprecated +pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-arm64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-arm64-cgo), type Iovec struct +pkg syscall (darwin-arm64-cgo), type Iovec struct, Base *uint8 +pkg syscall (darwin-arm64-cgo), type Iovec struct, Len uint64 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Data int64 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Filter int16 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (darwin-arm64-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-arm64-cgo), type Log2phys_t struct +pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-arm64-cgo), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-arm64-cgo), type Msghdr struct +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (darwin-arm64-cgo), type Radvisory_t struct +pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Count int32 +pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-arm64-cgo), type Radvisory_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-arm64-cgo), type Rlimit struct +pkg syscall (darwin-arm64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (darwin-arm64-cgo), type Rlimit struct, Max uint64 +pkg syscall (darwin-arm64-cgo), type RouteMessage //deprecated +pkg syscall (darwin-arm64-cgo), type RouteMessage struct +pkg syscall (darwin-arm64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-arm64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-arm64-cgo), type RoutingMessage //deprecated +pkg syscall (darwin-arm64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (darwin-arm64-cgo), type RtMetrics struct +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Expire int32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-arm64-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Use int32 +pkg syscall (darwin-arm64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Idrss int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Inblock int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Isrss int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Majflt int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Minflt int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Nswap int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Oublock int64 +pkg syscall (darwin-arm64-cgo), type Rusage struct, Stime Timeval +pkg syscall (darwin-arm64-cgo), type Rusage struct, Utime Timeval +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-arm64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct +pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-arm64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-arm64-cgo), type Stat_t struct +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Blksize int32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Dev int32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Lspare int32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Mode uint16 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Rdev int32 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Size int64 +pkg syscall (darwin-arm64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Files uint64 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-arm64-cgo), type Statfs_t struct, Type uint32 +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-arm64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-arm64-cgo), type Termios struct +pkg syscall (darwin-arm64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (darwin-arm64-cgo), type Termios struct, Cflag uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Iflag uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Ispeed uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Lflag uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Oflag uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Ospeed uint64 +pkg syscall (darwin-arm64-cgo), type Termios struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type Timespec struct, Nsec int64 +pkg syscall (darwin-arm64-cgo), type Timespec struct, Sec int64 +pkg syscall (darwin-arm64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-arm64-cgo), type Timeval struct, Sec int64 +pkg syscall (darwin-arm64-cgo), type Timeval struct, Usec int32 +pkg syscall (darwin-arm64-cgo), type Timeval32 struct +pkg syscall (darwin-arm64-cgo), type Timeval32 struct, Sec int32 +pkg syscall (darwin-arm64-cgo), type Timeval32 struct, Usec int32 +pkg syscall (darwin-arm64-cgo), type WaitStatus uint32 +pkg syscall (darwin-arm64-cgo), var Stderr int +pkg syscall (darwin-arm64-cgo), var Stdin int +pkg syscall (darwin-arm64-cgo), var Stdout int diff --git a/platform/dbops/binaries/go/go/api/go1.17.txt b/platform/dbops/binaries/go/go/api/go1.17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a31cec926fa8fd043e4b6c9e61a143fd2ae76c54 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.17.txt @@ -0,0 +1,303 @@ +pkg archive/zip, method (*File) OpenRaw() (io.Reader, error) +pkg archive/zip, method (*Writer) Copy(*File) error +pkg archive/zip, method (*Writer) CreateRaw(*FileHeader) (io.Writer, error) +pkg compress/lzw, method (*Reader) Close() error +pkg compress/lzw, method (*Reader) Read([]uint8) (int, error) +pkg compress/lzw, method (*Reader) Reset(io.Reader, Order, int) +pkg compress/lzw, method (*Writer) Close() error +pkg compress/lzw, method (*Writer) Reset(io.Writer, Order, int) +pkg compress/lzw, method (*Writer) Write([]uint8) (int, error) +pkg compress/lzw, type Reader struct +pkg compress/lzw, type Writer struct +pkg crypto/tls, method (*CertificateRequestInfo) Context() context.Context +pkg crypto/tls, method (*ClientHelloInfo) Context() context.Context +pkg crypto/tls, method (*Conn) HandshakeContext(context.Context) error +pkg database/sql, method (*NullByte) Scan(interface{}) error +pkg database/sql, method (*NullInt16) Scan(interface{}) error +pkg database/sql, method (NullByte) Value() (driver.Value, error) +pkg database/sql, method (NullInt16) Value() (driver.Value, error) +pkg database/sql, type NullByte struct +pkg database/sql, type NullByte struct, Byte uint8 +pkg database/sql, type NullByte struct, Valid bool +pkg database/sql, type NullInt16 struct +pkg database/sql, type NullInt16 struct, Int16 int16 +pkg database/sql, type NullInt16 struct, Valid bool +pkg debug/elf, const SHT_MIPS_ABIFLAGS = 1879048234 +pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType +pkg encoding/csv, method (*Reader) FieldPos(int) (int, int) +pkg go/build, type Context struct, ToolTags []string +pkg go/parser, const SkipObjectResolution = 64 +pkg go/parser, const SkipObjectResolution Mode +pkg image, method (*Alpha) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Alpha) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*Alpha16) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Alpha16) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*CMYK) RGBA64At(int, int) color.RGBA64 +pkg image, method (*CMYK) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*Gray) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Gray) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*Gray16) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Gray16) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*NRGBA) RGBA64At(int, int) color.RGBA64 +pkg image, method (*NRGBA) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*NRGBA64) RGBA64At(int, int) color.RGBA64 +pkg image, method (*NRGBA64) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*NYCbCrA) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Paletted) RGBA64At(int, int) color.RGBA64 +pkg image, method (*Paletted) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*RGBA) RGBA64At(int, int) color.RGBA64 +pkg image, method (*RGBA) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*Uniform) RGBA64At(int, int) color.RGBA64 +pkg image, method (*YCbCr) RGBA64At(int, int) color.RGBA64 +pkg image, method (Rectangle) RGBA64At(int, int) color.RGBA64 +pkg image, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At } +pkg image, type RGBA64Image interface, At(int, int) color.Color +pkg image, type RGBA64Image interface, Bounds() Rectangle +pkg image, type RGBA64Image interface, ColorModel() color.Model +pkg image, type RGBA64Image interface, RGBA64At(int, int) color.RGBA64 +pkg image/draw, type RGBA64Image interface { At, Bounds, ColorModel, RGBA64At, Set, SetRGBA64 } +pkg image/draw, type RGBA64Image interface, At(int, int) color.Color +pkg image/draw, type RGBA64Image interface, Bounds() image.Rectangle +pkg image/draw, type RGBA64Image interface, ColorModel() color.Model +pkg image/draw, type RGBA64Image interface, RGBA64At(int, int) color.RGBA64 +pkg image/draw, type RGBA64Image interface, Set(int, int, color.Color) +pkg image/draw, type RGBA64Image interface, SetRGBA64(int, int, color.RGBA64) +pkg io/fs, func FileInfoToDirEntry(FileInfo) DirEntry +pkg math (darwin-amd64), const MaxInt = 9223372036854775807 +pkg math (darwin-amd64), const MaxUint = 18446744073709551615 +pkg math (darwin-amd64), const MinInt = -9223372036854775808 +pkg math (darwin-amd64-cgo), const MaxInt = 9223372036854775807 +pkg math (darwin-amd64-cgo), const MaxUint = 18446744073709551615 +pkg math (darwin-amd64-cgo), const MinInt = -9223372036854775808 +pkg math (darwin-arm64), const MaxInt = 9223372036854775807 +pkg math (darwin-arm64), const MaxUint = 18446744073709551615 +pkg math (darwin-arm64), const MinInt = -9223372036854775808 +pkg math (darwin-arm64-cgo), const MaxInt = 9223372036854775807 +pkg math (darwin-arm64-cgo), const MaxUint = 18446744073709551615 +pkg math (darwin-arm64-cgo), const MinInt = -9223372036854775808 +pkg math (freebsd-386), const MaxInt = 2147483647 +pkg math (freebsd-386), const MaxUint = 4294967295 +pkg math (freebsd-386), const MinInt = -2147483648 +pkg math (freebsd-386-cgo), const MaxInt = 2147483647 +pkg math (freebsd-386-cgo), const MaxUint = 4294967295 +pkg math (freebsd-386-cgo), const MinInt = -2147483648 +pkg math (freebsd-amd64), const MaxInt = 9223372036854775807 +pkg math (freebsd-amd64), const MaxUint = 18446744073709551615 +pkg math (freebsd-amd64), const MinInt = -9223372036854775808 +pkg math (freebsd-amd64-cgo), const MaxInt = 9223372036854775807 +pkg math (freebsd-amd64-cgo), const MaxUint = 18446744073709551615 +pkg math (freebsd-amd64-cgo), const MinInt = -9223372036854775808 +pkg math (freebsd-arm), const MaxInt = 2147483647 +pkg math (freebsd-arm), const MaxUint = 4294967295 +pkg math (freebsd-arm), const MinInt = -2147483648 +pkg math (freebsd-arm-cgo), const MaxInt = 2147483647 +pkg math (freebsd-arm-cgo), const MaxUint = 4294967295 +pkg math (freebsd-arm-cgo), const MinInt = -2147483648 +pkg math (freebsd-arm64), const MaxInt = 9223372036854775807 +pkg math (freebsd-arm64), const MaxUint = 18446744073709551615 +pkg math (freebsd-arm64), const MinInt = -9223372036854775808 +pkg math (freebsd-arm64-cgo), const MaxInt = 9223372036854775807 +pkg math (freebsd-arm64-cgo), const MaxUint = 18446744073709551615 +pkg math (freebsd-arm64-cgo), const MinInt = -9223372036854775808 +pkg math (linux-386), const MaxInt = 2147483647 +pkg math (linux-386), const MaxUint = 4294967295 +pkg math (linux-386), const MinInt = -2147483648 +pkg math (linux-386-cgo), const MaxInt = 2147483647 +pkg math (linux-386-cgo), const MaxUint = 4294967295 +pkg math (linux-386-cgo), const MinInt = -2147483648 +pkg math (linux-amd64), const MaxInt = 9223372036854775807 +pkg math (linux-amd64), const MaxUint = 18446744073709551615 +pkg math (linux-amd64), const MinInt = -9223372036854775808 +pkg math (linux-amd64-cgo), const MaxInt = 9223372036854775807 +pkg math (linux-amd64-cgo), const MaxUint = 18446744073709551615 +pkg math (linux-amd64-cgo), const MinInt = -9223372036854775808 +pkg math (linux-arm), const MaxInt = 2147483647 +pkg math (linux-arm), const MaxUint = 4294967295 +pkg math (linux-arm), const MinInt = -2147483648 +pkg math (linux-arm-cgo), const MaxInt = 2147483647 +pkg math (linux-arm-cgo), const MaxUint = 4294967295 +pkg math (linux-arm-cgo), const MinInt = -2147483648 +pkg math (netbsd-386), const MaxInt = 2147483647 +pkg math (netbsd-386), const MaxUint = 4294967295 +pkg math (netbsd-386), const MinInt = -2147483648 +pkg math (netbsd-386-cgo), const MaxInt = 2147483647 +pkg math (netbsd-386-cgo), const MaxUint = 4294967295 +pkg math (netbsd-386-cgo), const MinInt = -2147483648 +pkg math (netbsd-amd64), const MaxInt = 9223372036854775807 +pkg math (netbsd-amd64), const MaxUint = 18446744073709551615 +pkg math (netbsd-amd64), const MinInt = -9223372036854775808 +pkg math (netbsd-amd64-cgo), const MaxInt = 9223372036854775807 +pkg math (netbsd-amd64-cgo), const MaxUint = 18446744073709551615 +pkg math (netbsd-amd64-cgo), const MinInt = -9223372036854775808 +pkg math (netbsd-arm), const MaxInt = 2147483647 +pkg math (netbsd-arm), const MaxUint = 4294967295 +pkg math (netbsd-arm), const MinInt = -2147483648 +pkg math (netbsd-arm-cgo), const MaxInt = 2147483647 +pkg math (netbsd-arm-cgo), const MaxUint = 4294967295 +pkg math (netbsd-arm-cgo), const MinInt = -2147483648 +pkg math (netbsd-arm64), const MaxInt = 9223372036854775807 +pkg math (netbsd-arm64), const MaxUint = 18446744073709551615 +pkg math (netbsd-arm64), const MinInt = -9223372036854775808 +pkg math (netbsd-arm64-cgo), const MaxInt = 9223372036854775807 +pkg math (netbsd-arm64-cgo), const MaxUint = 18446744073709551615 +pkg math (netbsd-arm64-cgo), const MinInt = -9223372036854775808 +pkg math (openbsd-386), const MaxInt = 2147483647 +pkg math (openbsd-386), const MaxUint = 4294967295 +pkg math (openbsd-386), const MinInt = -2147483648 +pkg math (openbsd-386-cgo), const MaxInt = 2147483647 +pkg math (openbsd-386-cgo), const MaxUint = 4294967295 +pkg math (openbsd-386-cgo), const MinInt = -2147483648 +pkg math (openbsd-amd64), const MaxInt = 9223372036854775807 +pkg math (openbsd-amd64), const MaxUint = 18446744073709551615 +pkg math (openbsd-amd64), const MinInt = -9223372036854775808 +pkg math (openbsd-amd64-cgo), const MaxInt = 9223372036854775807 +pkg math (openbsd-amd64-cgo), const MaxUint = 18446744073709551615 +pkg math (openbsd-amd64-cgo), const MinInt = -9223372036854775808 +pkg math (windows-386), const MaxInt = 2147483647 +pkg math (windows-386), const MaxUint = 4294967295 +pkg math (windows-386), const MinInt = -2147483648 +pkg math (windows-amd64), const MaxInt = 9223372036854775807 +pkg math (windows-amd64), const MaxUint = 18446744073709551615 +pkg math (windows-amd64), const MinInt = -9223372036854775808 +pkg math, const MaxFloat64 = 1.79769e+308 // 179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368 +pkg math, const MaxInt ideal-int +pkg math, const MaxUint ideal-int +pkg math, const MinInt ideal-int +pkg math, const SmallestNonzeroFloat32 = 1.4013e-45 // 1/713623846352979940529142984724747568191373312 +pkg math, const SmallestNonzeroFloat64 = 4.94066e-324 // 1/202402253307310618352495346718917307049556649764142118356901358027430339567995346891960383701437124495187077864316811911389808737385793476867013399940738509921517424276566361364466907742093216341239767678472745068562007483424692698618103355649159556340810056512358769552333414615230502532186327508646006263307707741093494784 +pkg net, method (*ParseError) Temporary() bool +pkg net, method (*ParseError) Timeout() bool +pkg net, method (IP) IsPrivate() bool +pkg net/http, func AllowQuerySemicolons(Handler) Handler +pkg net/url, method (Values) Has(string) bool +pkg reflect, func VisibleFields(Type) []StructField +pkg reflect, method (Method) IsExported() bool +pkg reflect, method (StructField) IsExported() bool +pkg reflect, method (Value) CanConvert(Type) bool +pkg reflect, method (Value) InterfaceData //deprecated +pkg runtime/cgo (darwin-amd64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Delete() +pkg runtime/cgo (darwin-amd64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (darwin-amd64-cgo), type Handle uintptr +pkg runtime/cgo (darwin-arm64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Delete() +pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (darwin-arm64-cgo), type Handle uintptr +pkg runtime/cgo (freebsd-386-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (freebsd-386-cgo), method (Handle) Delete() +pkg runtime/cgo (freebsd-386-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (freebsd-386-cgo), type Handle uintptr +pkg runtime/cgo (freebsd-amd64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Delete() +pkg runtime/cgo (freebsd-amd64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (freebsd-amd64-cgo), type Handle uintptr +pkg runtime/cgo (freebsd-arm-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Delete() +pkg runtime/cgo (freebsd-arm-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (freebsd-arm-cgo), type Handle uintptr +pkg runtime/cgo (freebsd-arm64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Delete() +pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (freebsd-arm64-cgo), type Handle uintptr +pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (linux-386-cgo), method (Handle) Delete() +pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (linux-386-cgo), type Handle uintptr +pkg runtime/cgo (linux-amd64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (linux-amd64-cgo), method (Handle) Delete() +pkg runtime/cgo (linux-amd64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (linux-amd64-cgo), type Handle uintptr +pkg runtime/cgo (linux-arm-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (linux-arm-cgo), method (Handle) Delete() +pkg runtime/cgo (linux-arm-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (linux-arm-cgo), type Handle uintptr +pkg runtime/cgo (netbsd-386-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (netbsd-386-cgo), method (Handle) Delete() +pkg runtime/cgo (netbsd-386-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (netbsd-386-cgo), type Handle uintptr +pkg runtime/cgo (netbsd-amd64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Delete() +pkg runtime/cgo (netbsd-amd64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (netbsd-amd64-cgo), type Handle uintptr +pkg runtime/cgo (netbsd-arm-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Delete() +pkg runtime/cgo (netbsd-arm-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (netbsd-arm-cgo), type Handle uintptr +pkg runtime/cgo (netbsd-arm64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Delete() +pkg runtime/cgo (netbsd-arm64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (netbsd-arm64-cgo), type Handle uintptr +pkg runtime/cgo (openbsd-386-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (openbsd-386-cgo), method (Handle) Delete() +pkg runtime/cgo (openbsd-386-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (openbsd-386-cgo), type Handle uintptr +pkg runtime/cgo (openbsd-amd64-cgo), func NewHandle(interface{}) Handle +pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Delete() +pkg runtime/cgo (openbsd-amd64-cgo), method (Handle) Value() interface{} +pkg runtime/cgo (openbsd-amd64-cgo), type Handle uintptr +pkg strconv, func QuotedPrefix(string) (string, error) +pkg sync/atomic, method (*Value) CompareAndSwap(interface{}, interface{}) bool +pkg sync/atomic, method (*Value) Swap(interface{}) interface{} +pkg syscall (netbsd-386), const SYS_WAIT6 = 481 +pkg syscall (netbsd-386), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-386), const WEXITED = 32 +pkg syscall (netbsd-386), const WEXITED ideal-int +pkg syscall (netbsd-386-cgo), const SYS_WAIT6 = 481 +pkg syscall (netbsd-386-cgo), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-386-cgo), const WEXITED = 32 +pkg syscall (netbsd-386-cgo), const WEXITED ideal-int +pkg syscall (netbsd-amd64), const SYS_WAIT6 = 481 +pkg syscall (netbsd-amd64), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-amd64), const WEXITED = 32 +pkg syscall (netbsd-amd64), const WEXITED ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_WAIT6 = 481 +pkg syscall (netbsd-amd64-cgo), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-amd64-cgo), const WEXITED = 32 +pkg syscall (netbsd-amd64-cgo), const WEXITED ideal-int +pkg syscall (netbsd-arm), const SYS_WAIT6 = 481 +pkg syscall (netbsd-arm), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-arm), const WEXITED = 32 +pkg syscall (netbsd-arm), const WEXITED ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 = 481 +pkg syscall (netbsd-arm-cgo), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-arm-cgo), const WEXITED = 32 +pkg syscall (netbsd-arm-cgo), const WEXITED ideal-int +pkg syscall (netbsd-arm64), const SYS_WAIT6 = 481 +pkg syscall (netbsd-arm64), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-arm64), const WEXITED = 32 +pkg syscall (netbsd-arm64), const WEXITED ideal-int +pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 = 481 +pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 ideal-int +pkg syscall (netbsd-arm64-cgo), const WEXITED = 32 +pkg syscall (netbsd-arm64-cgo), const WEXITED ideal-int +pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (openbsd-386), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (openbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (openbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC = 2048 +pkg syscall (openbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (windows-386), func CreateIoCompletionPort //deprecated +pkg syscall (windows-386), func GetQueuedCompletionStatus //deprecated +pkg syscall (windows-386), func PostQueuedCompletionStatus //deprecated +pkg syscall (windows-386), type SysProcAttr struct, AdditionalInheritedHandles []Handle +pkg syscall (windows-386), type SysProcAttr struct, ParentProcess Handle +pkg syscall (windows-amd64), func CreateIoCompletionPort //deprecated +pkg syscall (windows-amd64), func GetQueuedCompletionStatus //deprecated +pkg syscall (windows-amd64), func PostQueuedCompletionStatus //deprecated +pkg syscall (windows-amd64), type SysProcAttr struct, AdditionalInheritedHandles []Handle +pkg syscall (windows-amd64), type SysProcAttr struct, ParentProcess Handle +pkg testing, method (*B) Setenv(string, string) +pkg testing, method (*T) Setenv(string, string) +pkg testing, type TB interface, Setenv(string, string) +pkg text/template/parse, const SkipFuncCheck = 2 +pkg text/template/parse, const SkipFuncCheck Mode +pkg time, const Layout = "01/02 03:04:05PM '06 -0700" +pkg time, const Layout ideal-string +pkg time, func UnixMicro(int64) Time +pkg time, func UnixMilli(int64) Time +pkg time, method (Time) GoString() string +pkg time, method (Time) IsDST() bool +pkg time, method (Time) UnixMicro() int64 +pkg time, method (Time) UnixMilli() int64 diff --git a/platform/dbops/binaries/go/go/api/go1.18.txt b/platform/dbops/binaries/go/go/api/go1.18.txt new file mode 100644 index 0000000000000000000000000000000000000000..5040c95de3b18c4ea6985d44b33d9216b05ab3bb --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.18.txt @@ -0,0 +1,253 @@ +pkg bufio, method (*Writer) AvailableBuffer() []uint8 +pkg bufio, method (ReadWriter) AvailableBuffer() []uint8 +pkg bytes, func Cut([]uint8, []uint8) ([]uint8, []uint8, bool) +pkg bytes, func Title //deprecated +pkg crypto/tls, method (*Conn) NetConn() net.Conn +pkg crypto/tls, type Config struct, PreferServerCipherSuites //deprecated +pkg crypto/x509, method (*CertPool) Subjects //deprecated +pkg debug/buildinfo, func Read(io.ReaderAt) (*debug.BuildInfo, error) +pkg debug/buildinfo, func ReadFile(string) (*debug.BuildInfo, error) +pkg debug/buildinfo, type BuildInfo = debug.BuildInfo +pkg debug/dwarf, type BasicType struct, DataBitOffset int64 +pkg debug/dwarf, type StructField struct, DataBitOffset int64 +pkg debug/elf, const R_PPC64_RELATIVE = 22 +pkg debug/elf, const R_PPC64_RELATIVE R_PPC64 +pkg debug/plan9obj, var ErrNoSymbols error +pkg go/ast, method (*IndexListExpr) End() token.Pos +pkg go/ast, method (*IndexListExpr) Pos() token.Pos +pkg go/ast, type FuncType struct, TypeParams *FieldList +pkg go/ast, type IndexListExpr struct +pkg go/ast, type IndexListExpr struct, Indices []Expr +pkg go/ast, type IndexListExpr struct, Lbrack token.Pos +pkg go/ast, type IndexListExpr struct, Rbrack token.Pos +pkg go/ast, type IndexListExpr struct, X Expr +pkg go/ast, type TypeSpec struct, TypeParams *FieldList +pkg go/constant, method (Kind) String() string +pkg go/token, const TILDE = 88 +pkg go/token, const TILDE Token +pkg go/types, func Instantiate(*Context, Type, []Type, bool) (Type, error) +pkg go/types, func NewContext() *Context +pkg go/types, func NewSignature //deprecated +pkg go/types, func NewSignatureType(*Var, []*TypeParam, []*TypeParam, *Tuple, *Tuple, bool) *Signature +pkg go/types, func NewTerm(bool, Type) *Term +pkg go/types, func NewTypeParam(*TypeName, Type) *TypeParam +pkg go/types, func NewUnion([]*Term) *Union +pkg go/types, method (*ArgumentError) Error() string +pkg go/types, method (*ArgumentError) Unwrap() error +pkg go/types, method (*Interface) IsComparable() bool +pkg go/types, method (*Interface) IsImplicit() bool +pkg go/types, method (*Interface) IsMethodSet() bool +pkg go/types, method (*Interface) MarkImplicit() +pkg go/types, method (*Named) Origin() *Named +pkg go/types, method (*Named) SetTypeParams([]*TypeParam) +pkg go/types, method (*Named) TypeArgs() *TypeList +pkg go/types, method (*Named) TypeParams() *TypeParamList +pkg go/types, method (*Signature) RecvTypeParams() *TypeParamList +pkg go/types, method (*Signature) TypeParams() *TypeParamList +pkg go/types, method (*Term) String() string +pkg go/types, method (*Term) Tilde() bool +pkg go/types, method (*Term) Type() Type +pkg go/types, method (*TypeList) At(int) Type +pkg go/types, method (*TypeList) Len() int +pkg go/types, method (*TypeParam) Constraint() Type +pkg go/types, method (*TypeParam) Index() int +pkg go/types, method (*TypeParam) Obj() *TypeName +pkg go/types, method (*TypeParam) SetConstraint(Type) +pkg go/types, method (*TypeParam) String() string +pkg go/types, method (*TypeParam) Underlying() Type +pkg go/types, method (*TypeParamList) At(int) *TypeParam +pkg go/types, method (*TypeParamList) Len() int +pkg go/types, method (*Union) Len() int +pkg go/types, method (*Union) String() string +pkg go/types, method (*Union) Term(int) *Term +pkg go/types, method (*Union) Underlying() Type +pkg go/types, type ArgumentError struct +pkg go/types, type ArgumentError struct, Err error +pkg go/types, type ArgumentError struct, Index int +pkg go/types, type Config struct, Context *Context +pkg go/types, type Config struct, GoVersion string +pkg go/types, type Context struct +pkg go/types, type Info struct, Instances map[*ast.Ident]Instance +pkg go/types, type Instance struct +pkg go/types, type Instance struct, Type Type +pkg go/types, type Instance struct, TypeArgs *TypeList +pkg go/types, type Term struct +pkg go/types, type TypeList struct +pkg go/types, type TypeParam struct +pkg go/types, type TypeParamList struct +pkg go/types, type Union struct +pkg net, func TCPAddrFromAddrPort(netip.AddrPort) *TCPAddr +pkg net, func UDPAddrFromAddrPort(netip.AddrPort) *UDPAddr +pkg net, method (*Resolver) LookupNetIP(context.Context, string, string) ([]netip.Addr, error) +pkg net, method (*TCPAddr) AddrPort() netip.AddrPort +pkg net, method (*UDPAddr) AddrPort() netip.AddrPort +pkg net, method (*UDPConn) ReadFromUDPAddrPort([]uint8) (int, netip.AddrPort, error) +pkg net, method (*UDPConn) ReadMsgUDPAddrPort([]uint8, []uint8) (int, int, int, netip.AddrPort, error) +pkg net, method (*UDPConn) WriteMsgUDPAddrPort([]uint8, []uint8, netip.AddrPort) (int, int, error) +pkg net, method (*UDPConn) WriteToUDPAddrPort([]uint8, netip.AddrPort) (int, error) +pkg net, type Error interface, Temporary //deprecated +pkg net/http, func MaxBytesHandler(Handler, int64) Handler +pkg net/http, method (*Cookie) Valid() error +pkg net/netip, func AddrFrom16([16]uint8) Addr +pkg net/netip, func AddrFrom4([4]uint8) Addr +pkg net/netip, func AddrFromSlice([]uint8) (Addr, bool) +pkg net/netip, func AddrPortFrom(Addr, uint16) AddrPort +pkg net/netip, func IPv4Unspecified() Addr +pkg net/netip, func IPv6LinkLocalAllNodes() Addr +pkg net/netip, func IPv6Unspecified() Addr +pkg net/netip, func MustParseAddr(string) Addr +pkg net/netip, func MustParseAddrPort(string) AddrPort +pkg net/netip, func MustParsePrefix(string) Prefix +pkg net/netip, func ParseAddr(string) (Addr, error) +pkg net/netip, func ParseAddrPort(string) (AddrPort, error) +pkg net/netip, func ParsePrefix(string) (Prefix, error) +pkg net/netip, func PrefixFrom(Addr, int) Prefix +pkg net/netip, method (*Addr) UnmarshalBinary([]uint8) error +pkg net/netip, method (*Addr) UnmarshalText([]uint8) error +pkg net/netip, method (*AddrPort) UnmarshalBinary([]uint8) error +pkg net/netip, method (*AddrPort) UnmarshalText([]uint8) error +pkg net/netip, method (*Prefix) UnmarshalBinary([]uint8) error +pkg net/netip, method (*Prefix) UnmarshalText([]uint8) error +pkg net/netip, method (Addr) AppendTo([]uint8) []uint8 +pkg net/netip, method (Addr) As16() [16]uint8 +pkg net/netip, method (Addr) As4() [4]uint8 +pkg net/netip, method (Addr) AsSlice() []uint8 +pkg net/netip, method (Addr) BitLen() int +pkg net/netip, method (Addr) Compare(Addr) int +pkg net/netip, method (Addr) Is4() bool +pkg net/netip, method (Addr) Is4In6() bool +pkg net/netip, method (Addr) Is6() bool +pkg net/netip, method (Addr) IsGlobalUnicast() bool +pkg net/netip, method (Addr) IsInterfaceLocalMulticast() bool +pkg net/netip, method (Addr) IsLinkLocalMulticast() bool +pkg net/netip, method (Addr) IsLinkLocalUnicast() bool +pkg net/netip, method (Addr) IsLoopback() bool +pkg net/netip, method (Addr) IsMulticast() bool +pkg net/netip, method (Addr) IsPrivate() bool +pkg net/netip, method (Addr) IsUnspecified() bool +pkg net/netip, method (Addr) IsValid() bool +pkg net/netip, method (Addr) Less(Addr) bool +pkg net/netip, method (Addr) MarshalBinary() ([]uint8, error) +pkg net/netip, method (Addr) MarshalText() ([]uint8, error) +pkg net/netip, method (Addr) Next() Addr +pkg net/netip, method (Addr) Prefix(int) (Prefix, error) +pkg net/netip, method (Addr) Prev() Addr +pkg net/netip, method (Addr) String() string +pkg net/netip, method (Addr) StringExpanded() string +pkg net/netip, method (Addr) Unmap() Addr +pkg net/netip, method (Addr) WithZone(string) Addr +pkg net/netip, method (Addr) Zone() string +pkg net/netip, method (AddrPort) Addr() Addr +pkg net/netip, method (AddrPort) AppendTo([]uint8) []uint8 +pkg net/netip, method (AddrPort) IsValid() bool +pkg net/netip, method (AddrPort) MarshalBinary() ([]uint8, error) +pkg net/netip, method (AddrPort) MarshalText() ([]uint8, error) +pkg net/netip, method (AddrPort) Port() uint16 +pkg net/netip, method (AddrPort) String() string +pkg net/netip, method (Prefix) Addr() Addr +pkg net/netip, method (Prefix) AppendTo([]uint8) []uint8 +pkg net/netip, method (Prefix) Bits() int +pkg net/netip, method (Prefix) Contains(Addr) bool +pkg net/netip, method (Prefix) IsSingleIP() bool +pkg net/netip, method (Prefix) IsValid() bool +pkg net/netip, method (Prefix) MarshalBinary() ([]uint8, error) +pkg net/netip, method (Prefix) MarshalText() ([]uint8, error) +pkg net/netip, method (Prefix) Masked() Prefix +pkg net/netip, method (Prefix) Overlaps(Prefix) bool +pkg net/netip, method (Prefix) String() string +pkg net/netip, type Addr struct +pkg net/netip, type AddrPort struct +pkg net/netip, type Prefix struct +pkg reflect, const Pointer = 22 +pkg reflect, const Pointer Kind +pkg reflect, func PointerTo(Type) Type +pkg reflect, method (*MapIter) Reset(Value) +pkg reflect, method (Value) CanComplex() bool +pkg reflect, method (Value) CanFloat() bool +pkg reflect, method (Value) CanInt() bool +pkg reflect, method (Value) CanUint() bool +pkg reflect, method (Value) FieldByIndexErr([]int) (Value, error) +pkg reflect, method (Value) SetIterKey(*MapIter) +pkg reflect, method (Value) SetIterValue(*MapIter) +pkg reflect, method (Value) UnsafePointer() unsafe.Pointer +pkg runtime/debug, func ParseBuildInfo(string) (*BuildInfo, error) +pkg runtime/debug, method (*BuildInfo) String() string +pkg runtime/debug, type BuildInfo struct, GoVersion string +pkg runtime/debug, type BuildInfo struct, Settings []BuildSetting +pkg runtime/debug, type BuildSetting struct +pkg runtime/debug, type BuildSetting struct, Key string +pkg runtime/debug, type BuildSetting struct, Value string +pkg strings, func Clone(string) string +pkg strings, func Cut(string, string) (string, string, bool) +pkg strings, func Title //deprecated +pkg sync, method (*Mutex) TryLock() bool +pkg sync, method (*RWMutex) TryLock() bool +pkg sync, method (*RWMutex) TryRLock() bool +pkg syscall (freebsd-386), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-amd64), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-arm), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-arm64), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (windows-386), func Syscall //deprecated +pkg syscall (windows-386), func Syscall12 //deprecated +pkg syscall (windows-386), func Syscall15 //deprecated +pkg syscall (windows-386), func Syscall18 //deprecated +pkg syscall (windows-386), func Syscall6 //deprecated +pkg syscall (windows-386), func Syscall9 //deprecated +pkg syscall (windows-386), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func Syscall //deprecated +pkg syscall (windows-amd64), func Syscall12 //deprecated +pkg syscall (windows-amd64), func Syscall15 //deprecated +pkg syscall (windows-amd64), func Syscall18 //deprecated +pkg syscall (windows-amd64), func Syscall6 //deprecated +pkg syscall (windows-amd64), func Syscall9 //deprecated +pkg syscall (windows-amd64), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno) +pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalFuzzTarget, []InternalExample) *M +pkg testing, method (*F) Add(...interface{}) +pkg testing, method (*F) Cleanup(func()) +pkg testing, method (*F) Error(...interface{}) +pkg testing, method (*F) Errorf(string, ...interface{}) +pkg testing, method (*F) Fail() +pkg testing, method (*F) FailNow() +pkg testing, method (*F) Failed() bool +pkg testing, method (*F) Fatal(...interface{}) +pkg testing, method (*F) Fatalf(string, ...interface{}) +pkg testing, method (*F) Fuzz(interface{}) +pkg testing, method (*F) Helper() +pkg testing, method (*F) Log(...interface{}) +pkg testing, method (*F) Logf(string, ...interface{}) +pkg testing, method (*F) Name() string +pkg testing, method (*F) Setenv(string, string) +pkg testing, method (*F) Skip(...interface{}) +pkg testing, method (*F) SkipNow() +pkg testing, method (*F) Skipf(string, ...interface{}) +pkg testing, method (*F) Skipped() bool +pkg testing, method (*F) TempDir() string +pkg testing, type F struct +pkg testing, type InternalFuzzTarget struct +pkg testing, type InternalFuzzTarget struct, Fn func(*F) +pkg testing, type InternalFuzzTarget struct, Name string +pkg text/template/parse, const NodeBreak = 21 +pkg text/template/parse, const NodeBreak NodeType +pkg text/template/parse, const NodeContinue = 22 +pkg text/template/parse, const NodeContinue NodeType +pkg text/template/parse, method (*BreakNode) Copy() Node +pkg text/template/parse, method (*BreakNode) String() string +pkg text/template/parse, method (*ContinueNode) Copy() Node +pkg text/template/parse, method (*ContinueNode) String() string +pkg text/template/parse, method (BreakNode) Position() Pos +pkg text/template/parse, method (BreakNode) Type() NodeType +pkg text/template/parse, method (ContinueNode) Position() Pos +pkg text/template/parse, method (ContinueNode) Type() NodeType +pkg text/template/parse, type BreakNode struct +pkg text/template/parse, type BreakNode struct, Line int +pkg text/template/parse, type BreakNode struct, embedded NodeType +pkg text/template/parse, type BreakNode struct, embedded Pos +pkg text/template/parse, type ContinueNode struct +pkg text/template/parse, type ContinueNode struct, Line int +pkg text/template/parse, type ContinueNode struct, embedded NodeType +pkg text/template/parse, type ContinueNode struct, embedded Pos +pkg unicode/utf8, func AppendRune([]uint8, int32) []uint8 diff --git a/platform/dbops/binaries/go/go/api/go1.19.txt b/platform/dbops/binaries/go/go/api/go1.19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f31d633af94fe71737572b9fdacee2e8229db433 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.19.txt @@ -0,0 +1,309 @@ +pkg crypto/x509, func ParseRevocationList([]uint8) (*RevocationList, error) #50674 +pkg crypto/x509, method (*CertPool) Clone() *CertPool #35044 +pkg crypto/x509, method (*CertPool) Equal(*CertPool) bool #46057 +pkg crypto/x509, method (*RevocationList) CheckSignatureFrom(*Certificate) error #50674 +pkg crypto/x509, type RevocationList struct, AuthorityKeyId []uint8 #50674 +pkg crypto/x509, type RevocationList struct, Extensions []pkix.Extension #50674 +pkg crypto/x509, type RevocationList struct, Issuer pkix.Name #50674 +pkg crypto/x509, type RevocationList struct, Raw []uint8 #50674 +pkg crypto/x509, type RevocationList struct, RawIssuer []uint8 #50674 +pkg crypto/x509, type RevocationList struct, RawTBSRevocationList []uint8 #50674 +pkg crypto/x509, type RevocationList struct, Signature []uint8 #50674 +pkg debug/elf, const EM_LOONGARCH = 258 #46229 +pkg debug/elf, const EM_LOONGARCH Machine #46229 +pkg debug/elf, const R_LARCH_32 = 1 #46229 +pkg debug/elf, const R_LARCH_32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_64 = 2 #46229 +pkg debug/elf, const R_LARCH_64 R_LARCH #46229 +pkg debug/elf, const R_LARCH_ADD16 = 48 #46229 +pkg debug/elf, const R_LARCH_ADD16 R_LARCH #46229 +pkg debug/elf, const R_LARCH_ADD24 = 49 #46229 +pkg debug/elf, const R_LARCH_ADD24 R_LARCH #46229 +pkg debug/elf, const R_LARCH_ADD32 = 50 #46229 +pkg debug/elf, const R_LARCH_ADD32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_ADD64 = 51 #46229 +pkg debug/elf, const R_LARCH_ADD64 R_LARCH #46229 +pkg debug/elf, const R_LARCH_ADD8 = 47 #46229 +pkg debug/elf, const R_LARCH_ADD8 R_LARCH #46229 +pkg debug/elf, const R_LARCH_COPY = 4 #46229 +pkg debug/elf, const R_LARCH_COPY R_LARCH #46229 +pkg debug/elf, const R_LARCH_IRELATIVE = 12 #46229 +pkg debug/elf, const R_LARCH_IRELATIVE R_LARCH #46229 +pkg debug/elf, const R_LARCH_JUMP_SLOT = 5 #46229 +pkg debug/elf, const R_LARCH_JUMP_SLOT R_LARCH #46229 +pkg debug/elf, const R_LARCH_MARK_LA = 20 #46229 +pkg debug/elf, const R_LARCH_MARK_LA R_LARCH #46229 +pkg debug/elf, const R_LARCH_MARK_PCREL = 21 #46229 +pkg debug/elf, const R_LARCH_MARK_PCREL R_LARCH #46229 +pkg debug/elf, const R_LARCH_NONE = 0 #46229 +pkg debug/elf, const R_LARCH_NONE R_LARCH #46229 +pkg debug/elf, const R_LARCH_RELATIVE = 3 #46229 +pkg debug/elf, const R_LARCH_RELATIVE R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_ADD = 35 #46229 +pkg debug/elf, const R_LARCH_SOP_ADD R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_AND = 36 #46229 +pkg debug/elf, const R_LARCH_SOP_AND R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_ASSERT = 30 #46229 +pkg debug/elf, const R_LARCH_SOP_ASSERT R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_IF_ELSE = 37 #46229 +pkg debug/elf, const R_LARCH_SOP_IF_ELSE R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_NOT = 31 #46229 +pkg debug/elf, const R_LARCH_SOP_NOT R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_10_10_16_S2 = 45 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_10_10_16_S2 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_5_10_16_S2 = 44 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_0_5_10_16_S2 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_12 = 40 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_12 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16 = 41 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 = 42 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 = 38 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 = 43 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_U = 46 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_U R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_U_10_12 = 39 #46229 +pkg debug/elf, const R_LARCH_SOP_POP_32_U_10_12 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_ABSOLUTE = 23 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_ABSOLUTE R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_DUP = 24 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_DUP R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_GPREL = 25 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_GPREL R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_PCREL = 22 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_PCREL R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_PLT_PCREL = 29 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_PLT_PCREL R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GD = 28 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GD R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GOT = 27 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_GOT R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_TPREL = 26 #46229 +pkg debug/elf, const R_LARCH_SOP_PUSH_TLS_TPREL R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_SL = 33 #46229 +pkg debug/elf, const R_LARCH_SOP_SL R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_SR = 34 #46229 +pkg debug/elf, const R_LARCH_SOP_SR R_LARCH #46229 +pkg debug/elf, const R_LARCH_SOP_SUB = 32 #46229 +pkg debug/elf, const R_LARCH_SOP_SUB R_LARCH #46229 +pkg debug/elf, const R_LARCH_SUB16 = 53 #46229 +pkg debug/elf, const R_LARCH_SUB16 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SUB24 = 54 #46229 +pkg debug/elf, const R_LARCH_SUB24 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SUB32 = 55 #46229 +pkg debug/elf, const R_LARCH_SUB32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SUB64 = 56 #46229 +pkg debug/elf, const R_LARCH_SUB64 R_LARCH #46229 +pkg debug/elf, const R_LARCH_SUB8 = 52 #46229 +pkg debug/elf, const R_LARCH_SUB8 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_DTPMOD32 = 6 #46229 +pkg debug/elf, const R_LARCH_TLS_DTPMOD32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_DTPMOD64 = 7 #46229 +pkg debug/elf, const R_LARCH_TLS_DTPMOD64 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_DTPREL32 = 8 #46229 +pkg debug/elf, const R_LARCH_TLS_DTPREL32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_DTPREL64 = 9 #46229 +pkg debug/elf, const R_LARCH_TLS_DTPREL64 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_TPREL32 = 10 #46229 +pkg debug/elf, const R_LARCH_TLS_TPREL32 R_LARCH #46229 +pkg debug/elf, const R_LARCH_TLS_TPREL64 = 11 #46229 +pkg debug/elf, const R_LARCH_TLS_TPREL64 R_LARCH #46229 +pkg debug/elf, method (R_LARCH) GoString() string #46229 +pkg debug/elf, method (R_LARCH) String() string #46229 +pkg debug/elf, type R_LARCH int #46229 +pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY = 2 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY ideal-int #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE = 5 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE ideal-int #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH = 4 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH ideal-int #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_LARGEST = 6 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_LARGEST ideal-int #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES = 1 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES ideal-int #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE = 3 #51868 +pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE ideal-int #51868 +pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 = 25138 #46229 +pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 ideal-int #46229 +pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 = 25188 #46229 +pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 ideal-int #46229 +pkg debug/pe, const IMAGE_SCN_CNT_CODE = 32 #51868 +pkg debug/pe, const IMAGE_SCN_CNT_CODE ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA = 64 #51868 +pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA = 128 #51868 +pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_LNK_COMDAT = 4096 #51868 +pkg debug/pe, const IMAGE_SCN_LNK_COMDAT ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_MEM_DISCARDABLE = 33554432 #51868 +pkg debug/pe, const IMAGE_SCN_MEM_DISCARDABLE ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_MEM_EXECUTE = 536870912 #51868 +pkg debug/pe, const IMAGE_SCN_MEM_EXECUTE ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_MEM_READ = 1073741824 #51868 +pkg debug/pe, const IMAGE_SCN_MEM_READ ideal-int #51868 +pkg debug/pe, const IMAGE_SCN_MEM_WRITE = 2147483648 #51868 +pkg debug/pe, const IMAGE_SCN_MEM_WRITE ideal-int #51868 +pkg debug/pe, method (*File) COFFSymbolReadSectionDefAux(int) (*COFFSymbolAuxFormat5, error) #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, Checksum uint32 #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumLineNumbers uint16 #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumRelocs uint16 #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, SecNum uint16 #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, Selection uint8 #51868 +pkg debug/pe, type COFFSymbolAuxFormat5 struct, Size uint32 #51868 +pkg encoding/binary, func AppendUvarint([]uint8, uint64) []uint8 #51644 +pkg encoding/binary, func AppendVarint([]uint8, int64) []uint8 #51644 +pkg encoding/binary, type AppendByteOrder interface { AppendUint16, AppendUint32, AppendUint64, String } #50601 +pkg encoding/binary, type AppendByteOrder interface, AppendUint16([]uint8, uint16) []uint8 #50601 +pkg encoding/binary, type AppendByteOrder interface, AppendUint32([]uint8, uint32) []uint8 #50601 +pkg encoding/binary, type AppendByteOrder interface, AppendUint64([]uint8, uint64) []uint8 #50601 +pkg encoding/binary, type AppendByteOrder interface, String() string #50601 +pkg encoding/csv, method (*Reader) InputOffset() int64 #43401 +pkg encoding/xml, method (*Decoder) InputPos() (int, int) #45628 +pkg flag, func TextVar(encoding.TextUnmarshaler, string, encoding.TextMarshaler, string) #45754 +pkg flag, method (*FlagSet) TextVar(encoding.TextUnmarshaler, string, encoding.TextMarshaler, string) #45754 +pkg fmt, func Append([]uint8, ...interface{}) []uint8 #47579 +pkg fmt, func Appendf([]uint8, string, ...interface{}) []uint8 #47579 +pkg fmt, func Appendln([]uint8, ...interface{}) []uint8 #47579 +pkg go/doc, method (*Package) HTML(string) []uint8 #51082 +pkg go/doc, method (*Package) Markdown(string) []uint8 #51082 +pkg go/doc, method (*Package) Parser() *comment.Parser #51082 +pkg go/doc, method (*Package) Printer() *comment.Printer #51082 +pkg go/doc, method (*Package) Synopsis(string) string #51082 +pkg go/doc, method (*Package) Text(string) []uint8 #51082 +pkg go/doc/comment, func DefaultLookupPackage(string) (string, bool) #51082 +pkg go/doc/comment, method (*DocLink) DefaultURL(string) string #51082 +pkg go/doc/comment, method (*Heading) DefaultID() string #51082 +pkg go/doc/comment, method (*List) BlankBefore() bool #51082 +pkg go/doc/comment, method (*List) BlankBetween() bool #51082 +pkg go/doc/comment, method (*Parser) Parse(string) *Doc #51082 +pkg go/doc/comment, method (*Printer) Comment(*Doc) []uint8 #51082 +pkg go/doc/comment, method (*Printer) HTML(*Doc) []uint8 #51082 +pkg go/doc/comment, method (*Printer) Markdown(*Doc) []uint8 #51082 +pkg go/doc/comment, method (*Printer) Text(*Doc) []uint8 #51082 +pkg go/doc/comment, type Block interface, unexported methods #51082 +pkg go/doc/comment, type Code struct #51082 +pkg go/doc/comment, type Code struct, Text string #51082 +pkg go/doc/comment, type Doc struct #51082 +pkg go/doc/comment, type Doc struct, Content []Block #51082 +pkg go/doc/comment, type Doc struct, Links []*LinkDef #51082 +pkg go/doc/comment, type DocLink struct #51082 +pkg go/doc/comment, type DocLink struct, ImportPath string #51082 +pkg go/doc/comment, type DocLink struct, Name string #51082 +pkg go/doc/comment, type DocLink struct, Recv string #51082 +pkg go/doc/comment, type DocLink struct, Text []Text #51082 +pkg go/doc/comment, type Heading struct #51082 +pkg go/doc/comment, type Heading struct, Text []Text #51082 +pkg go/doc/comment, type Italic string #51082 +pkg go/doc/comment, type Link struct #51082 +pkg go/doc/comment, type Link struct, Auto bool #51082 +pkg go/doc/comment, type Link struct, Text []Text #51082 +pkg go/doc/comment, type Link struct, URL string #51082 +pkg go/doc/comment, type LinkDef struct #51082 +pkg go/doc/comment, type LinkDef struct, Text string #51082 +pkg go/doc/comment, type LinkDef struct, URL string #51082 +pkg go/doc/comment, type LinkDef struct, Used bool #51082 +pkg go/doc/comment, type List struct #51082 +pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082 +pkg go/doc/comment, type List struct, ForceBlankBetween bool #51082 +pkg go/doc/comment, type List struct, Items []*ListItem #51082 +pkg go/doc/comment, type ListItem struct #51082 +pkg go/doc/comment, type ListItem struct, Content []Block #51082 +pkg go/doc/comment, type ListItem struct, Number string #51082 +pkg go/doc/comment, type Paragraph struct #51082 +pkg go/doc/comment, type Paragraph struct, Text []Text #51082 +pkg go/doc/comment, type Parser struct #51082 +pkg go/doc/comment, type Parser struct, LookupPackage func(string) (string, bool) #51082 +pkg go/doc/comment, type Parser struct, LookupSym func(string, string) bool #51082 +pkg go/doc/comment, type Parser struct, Words map[string]string #51082 +pkg go/doc/comment, type Plain string #51082 +pkg go/doc/comment, type Printer struct #51082 +pkg go/doc/comment, type Printer struct, DocLinkBaseURL string #51082 +pkg go/doc/comment, type Printer struct, DocLinkURL func(*DocLink) string #51082 +pkg go/doc/comment, type Printer struct, HeadingID func(*Heading) string #51082 +pkg go/doc/comment, type Printer struct, HeadingLevel int #51082 +pkg go/doc/comment, type Printer struct, TextCodePrefix string #51082 +pkg go/doc/comment, type Printer struct, TextPrefix string #51082 +pkg go/doc/comment, type Printer struct, TextWidth int #51082 +pkg go/doc/comment, type Text interface, unexported methods #51082 +pkg go/types, method (*Func) Origin() *Func #51682 +pkg go/types, method (*Var) Origin() *Var #51682 +pkg hash/maphash, func Bytes(Seed, []uint8) uint64 #42710 +pkg hash/maphash, func String(Seed, string) uint64 #42710 +pkg html/template, method (*Template) Funcs(template.FuncMap) *Template #46121 +pkg html/template, type FuncMap = template.FuncMap #46121 +pkg net/http, method (*MaxBytesError) Error() string #30715 +pkg net/http, type MaxBytesError struct #30715 +pkg net/http, type MaxBytesError struct, Limit int64 #30715 +pkg net/url, func JoinPath(string, ...string) (string, error) #47005 +pkg net/url, method (*URL) JoinPath(...string) *URL #47005 +pkg net/url, type URL struct, OmitHost bool #46059 +pkg os/exec, method (*Cmd) Environ() []string #50599 +pkg os/exec, type Cmd struct, Err error #43724 +pkg os/exec, var ErrDot error #43724 +pkg regexp/syntax, const ErrNestingDepth = "expression nests too deeply" #51684 +pkg regexp/syntax, const ErrNestingDepth ErrorCode #51684 +pkg runtime/debug, func SetMemoryLimit(int64) int64 #48409 +pkg sort, func Find(int, func(int) int) (int, bool) #50340 +pkg sync/atomic, method (*Bool) CompareAndSwap(bool, bool) bool #50860 +pkg sync/atomic, method (*Bool) Load() bool #50860 +pkg sync/atomic, method (*Bool) Store(bool) #50860 +pkg sync/atomic, method (*Bool) Swap(bool) bool #50860 +pkg sync/atomic, method (*Int32) Add(int32) int32 #50860 +pkg sync/atomic, method (*Int32) CompareAndSwap(int32, int32) bool #50860 +pkg sync/atomic, method (*Int32) Load() int32 #50860 +pkg sync/atomic, method (*Int32) Store(int32) #50860 +pkg sync/atomic, method (*Int32) Swap(int32) int32 #50860 +pkg sync/atomic, method (*Int64) Add(int64) int64 #50860 +pkg sync/atomic, method (*Int64) CompareAndSwap(int64, int64) bool #50860 +pkg sync/atomic, method (*Int64) Load() int64 #50860 +pkg sync/atomic, method (*Int64) Store(int64) #50860 +pkg sync/atomic, method (*Int64) Swap(int64) int64 #50860 +pkg sync/atomic, method (*Pointer[$0]) CompareAndSwap(*$0, *$0) bool #50860 +pkg sync/atomic, method (*Pointer[$0]) Load() *$0 #50860 +pkg sync/atomic, method (*Pointer[$0]) Store(*$0) #50860 +pkg sync/atomic, method (*Pointer[$0]) Swap(*$0) *$0 #50860 +pkg sync/atomic, method (*Uint32) Add(uint32) uint32 #50860 +pkg sync/atomic, method (*Uint32) CompareAndSwap(uint32, uint32) bool #50860 +pkg sync/atomic, method (*Uint32) Load() uint32 #50860 +pkg sync/atomic, method (*Uint32) Store(uint32) #50860 +pkg sync/atomic, method (*Uint32) Swap(uint32) uint32 #50860 +pkg sync/atomic, method (*Uint64) Add(uint64) uint64 #50860 +pkg sync/atomic, method (*Uint64) CompareAndSwap(uint64, uint64) bool #50860 +pkg sync/atomic, method (*Uint64) Load() uint64 #50860 +pkg sync/atomic, method (*Uint64) Store(uint64) #50860 +pkg sync/atomic, method (*Uint64) Swap(uint64) uint64 #50860 +pkg sync/atomic, method (*Uintptr) Add(uintptr) uintptr #50860 +pkg sync/atomic, method (*Uintptr) CompareAndSwap(uintptr, uintptr) bool #50860 +pkg sync/atomic, method (*Uintptr) Load() uintptr #50860 +pkg sync/atomic, method (*Uintptr) Store(uintptr) #50860 +pkg sync/atomic, method (*Uintptr) Swap(uintptr) uintptr #50860 +pkg sync/atomic, type Bool struct #50860 +pkg sync/atomic, type Int32 struct #50860 +pkg sync/atomic, type Int64 struct #50860 +pkg sync/atomic, type Pointer[$0 interface{}] struct #50860 +pkg sync/atomic, type Uint32 struct #50860 +pkg sync/atomic, type Uint64 struct #50860 +pkg sync/atomic, type Uintptr struct #50860 +pkg time, method (Duration) Abs() Duration #51414 +pkg time, method (Time) ZoneBounds() (Time, Time) #50062 +pkg crypto/x509, func ParseCRL //deprecated #50674 +pkg crypto/x509, func ParseDERCRL //deprecated #50674 +pkg crypto/x509, method (*Certificate) CheckCRLSignature //deprecated #50674 +pkg crypto/x509, method (*Certificate) CreateCRL //deprecated #50674 +pkg crypto/x509/pkix, type CertificateList //deprecated #50674 +pkg crypto/x509/pkix, type TBSCertificateList //deprecated #50674 +pkg go/doc, func Synopsis //deprecated #51082 +pkg go/doc, func ToHTML //deprecated #51082 +pkg go/doc, func ToText //deprecated #51082 +pkg io/ioutil, func NopCloser //deprecated #42026 +pkg io/ioutil, func ReadAll //deprecated #42026 +pkg io/ioutil, func ReadDir //deprecated #42026 +pkg io/ioutil, func ReadFile //deprecated #42026 +pkg io/ioutil, func TempDir //deprecated #42026 +pkg io/ioutil, func TempFile //deprecated #42026 +pkg io/ioutil, func WriteFile //deprecated #42026 +pkg io/ioutil, var Discard //deprecated #42026 diff --git a/platform/dbops/binaries/go/go/api/go1.2.txt b/platform/dbops/binaries/go/go/api/go1.2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6835e608b141c47aeb38fcbafa43d2a8d2985e4 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.2.txt @@ -0,0 +1,32484 @@ +pkg archive/zip, func RegisterCompressor(uint16, Compressor) +pkg archive/zip, func RegisterDecompressor(uint16, Decompressor) +pkg archive/zip, method (*File) DataOffset() (int64, error) +pkg archive/zip, type Compressor func(io.Writer) (io.WriteCloser, error) +pkg archive/zip, type Decompressor func(io.Reader) io.ReadCloser +pkg bufio, method (*Reader) Reset(io.Reader) +pkg bufio, method (*Writer) Reset(io.Writer) +pkg compress/flate, method (*Writer) Reset(io.Writer) +pkg compress/gzip, method (*Writer) Reset(io.Writer) +pkg compress/zlib, method (*Writer) Reset(io.Writer) +pkg container/heap, func Fix(Interface, int) +pkg container/list, method (*List) MoveAfter(*Element, *Element) +pkg container/list, method (*List) MoveBefore(*Element, *Element) +pkg crypto, type PublicKey interface {} +pkg crypto/cipher, func NewGCM(Block) (AEAD, error) +pkg crypto/cipher, type AEAD interface { NonceSize, Open, Overhead, Seal } +pkg crypto/cipher, type AEAD interface, NonceSize() int +pkg crypto/cipher, type AEAD interface, Open([]uint8, []uint8, []uint8, []uint8) ([]uint8, error) +pkg crypto/cipher, type AEAD interface, Overhead() int +pkg crypto/cipher, type AEAD interface, Seal([]uint8, []uint8, []uint8, []uint8) []uint8 +pkg crypto/md5, func Sum([]uint8) [16]uint8 +pkg crypto/rsa, const PSSSaltLengthAuto = 0 +pkg crypto/rsa, const PSSSaltLengthAuto ideal-int +pkg crypto/rsa, const PSSSaltLengthEqualsHash = -1 +pkg crypto/rsa, const PSSSaltLengthEqualsHash ideal-int +pkg crypto/rsa, func SignPSS(io.Reader, *PrivateKey, crypto.Hash, []uint8, *PSSOptions) ([]uint8, error) +pkg crypto/rsa, func VerifyPSS(*PublicKey, crypto.Hash, []uint8, []uint8, *PSSOptions) error +pkg crypto/rsa, type PSSOptions struct +pkg crypto/rsa, type PSSOptions struct, SaltLength int +pkg crypto/sha1, func Sum([]uint8) [20]uint8 +pkg crypto/sha256, func Sum224([]uint8) [28]uint8 +pkg crypto/sha256, func Sum256([]uint8) [32]uint8 +pkg crypto/sha512, func Sum384([]uint8) [48]uint8 +pkg crypto/sha512, func Sum512([]uint8) [64]uint8 +pkg crypto/subtle, func ConstantTimeLessOrEq(int, int) int +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 49161 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 49195 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 49162 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA = 49159 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 49199 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16 +pkg crypto/tls, const VersionSSL30 = 768 +pkg crypto/tls, const VersionSSL30 ideal-int +pkg crypto/tls, const VersionTLS10 = 769 +pkg crypto/tls, const VersionTLS10 ideal-int +pkg crypto/tls, const VersionTLS11 = 770 +pkg crypto/tls, const VersionTLS11 ideal-int +pkg crypto/tls, const VersionTLS12 = 771 +pkg crypto/tls, const VersionTLS12 ideal-int +pkg crypto/tls, type Config struct, MaxVersion uint16 +pkg crypto/tls, type Config struct, MinVersion uint16 +pkg crypto/x509, func MarshalECPrivateKey(*ecdsa.PrivateKey) ([]uint8, error) +pkg crypto/x509, type Certificate struct, CRLDistributionPoints []string +pkg crypto/x509, type Certificate struct, Extensions []pkix.Extension +pkg crypto/x509, type Certificate struct, ExtraExtensions []pkix.Extension +pkg crypto/x509, type Certificate struct, IssuingCertificateURL []string +pkg crypto/x509, type Certificate struct, OCSPServer []string +pkg database/sql, method (*DB) SetMaxOpenConns(int) +pkg encoding, type BinaryMarshaler interface { MarshalBinary } +pkg encoding, type BinaryMarshaler interface, MarshalBinary() ([]uint8, error) +pkg encoding, type BinaryUnmarshaler interface { UnmarshalBinary } +pkg encoding, type BinaryUnmarshaler interface, UnmarshalBinary([]uint8) error +pkg encoding, type TextMarshaler interface { MarshalText } +pkg encoding, type TextMarshaler interface, MarshalText() ([]uint8, error) +pkg encoding, type TextUnmarshaler interface { UnmarshalText } +pkg encoding, type TextUnmarshaler interface, UnmarshalText([]uint8) error +pkg encoding/xml, method (*Encoder) EncodeElement(interface{}, StartElement) error +pkg encoding/xml, method (*Encoder) EncodeToken(Token) error +pkg encoding/xml, method (*Encoder) Flush() error +pkg encoding/xml, method (StartElement) End() EndElement +pkg encoding/xml, type Marshaler interface { MarshalXML } +pkg encoding/xml, type Marshaler interface, MarshalXML(*Encoder, StartElement) error +pkg encoding/xml, type MarshalerAttr interface { MarshalXMLAttr } +pkg encoding/xml, type MarshalerAttr interface, MarshalXMLAttr(Name) (Attr, error) +pkg encoding/xml, type Unmarshaler interface { UnmarshalXML } +pkg encoding/xml, type Unmarshaler interface, UnmarshalXML(*Decoder, StartElement) error +pkg encoding/xml, type UnmarshalerAttr interface { UnmarshalXMLAttr } +pkg encoding/xml, type UnmarshalerAttr interface, UnmarshalXMLAttr(Attr) error +pkg flag, type Getter interface { Get, Set, String } +pkg flag, type Getter interface, Get() interface{} +pkg flag, type Getter interface, Set(string) error +pkg flag, type Getter interface, String() string +pkg flag, var CommandLine *FlagSet +pkg go/ast, type SliceExpr struct, Max Expr +pkg go/ast, type SliceExpr struct, Slice3 bool +pkg go/ast, type TypeAssertExpr struct, Lparen token.Pos +pkg go/ast, type TypeAssertExpr struct, Rparen token.Pos +pkg go/build, method (*Context) MatchFile(string, string) (bool, error) +pkg go/build, type Package struct, AllTags []string +pkg go/build, type Package struct, CXXFiles []string +pkg go/build, type Package struct, CgoCPPFLAGS []string +pkg go/build, type Package struct, CgoCXXFLAGS []string +pkg go/build, type Package struct, ConflictDir string +pkg go/token, method (*File) MergeLine(int) +pkg html/template, type Template struct, Tree *parse.Tree +pkg image/color/palette, var Plan9 []color.Color +pkg image/color/palette, var WebSafe []color.Color +pkg image/draw, method (Op) Draw(Image, image.Rectangle, image.Image, image.Point) +pkg image/draw, type Drawer interface { Draw } +pkg image/draw, type Drawer interface, Draw(Image, image.Rectangle, image.Image, image.Point) +pkg image/draw, type Quantizer interface { Quantize } +pkg image/draw, type Quantizer interface, Quantize(color.Palette, image.Image) color.Palette +pkg image/draw, var FloydSteinberg Drawer +pkg image/gif, func Encode(io.Writer, image.Image, *Options) error +pkg image/gif, func EncodeAll(io.Writer, *GIF) error +pkg image/gif, type Options struct +pkg image/gif, type Options struct, Drawer draw.Drawer +pkg image/gif, type Options struct, NumColors int +pkg image/gif, type Options struct, Quantizer draw.Quantizer +pkg log/syslog (freebsd-386-cgo), const LOG_ALERT Priority +pkg log/syslog (freebsd-386-cgo), const LOG_AUTH Priority +pkg log/syslog (freebsd-386-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-386-cgo), const LOG_CRIT Priority +pkg log/syslog (freebsd-386-cgo), const LOG_CRON Priority +pkg log/syslog (freebsd-386-cgo), const LOG_DAEMON Priority +pkg log/syslog (freebsd-386-cgo), const LOG_DEBUG Priority +pkg log/syslog (freebsd-386-cgo), const LOG_EMERG Priority +pkg log/syslog (freebsd-386-cgo), const LOG_ERR Priority +pkg log/syslog (freebsd-386-cgo), const LOG_FTP Priority +pkg log/syslog (freebsd-386-cgo), const LOG_INFO Priority +pkg log/syslog (freebsd-386-cgo), const LOG_KERN Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-386-cgo), const LOG_LPR Priority +pkg log/syslog (freebsd-386-cgo), const LOG_MAIL Priority +pkg log/syslog (freebsd-386-cgo), const LOG_NEWS Priority +pkg log/syslog (freebsd-386-cgo), const LOG_NOTICE Priority +pkg log/syslog (freebsd-386-cgo), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-386-cgo), const LOG_USER Priority +pkg log/syslog (freebsd-386-cgo), const LOG_UUCP Priority +pkg log/syslog (freebsd-386-cgo), const LOG_WARNING Priority +pkg log/syslog (freebsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-386-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-386-cgo), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Close() error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Err(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Info(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-386-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-386-cgo), type Priority int +pkg log/syslog (freebsd-386-cgo), type Writer struct +pkg log/syslog (freebsd-amd64-cgo), const LOG_ALERT Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTH Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_CRIT Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_CRON Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_DAEMON Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_DEBUG Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_EMERG Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_ERR Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_FTP Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_INFO Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_KERN Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_LPR Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_MAIL Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_NEWS Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_NOTICE Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_USER Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_UUCP Priority +pkg log/syslog (freebsd-amd64-cgo), const LOG_WARNING Priority +pkg log/syslog (freebsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-amd64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Close() error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Err(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Info(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-amd64-cgo), type Priority int +pkg log/syslog (freebsd-amd64-cgo), type Writer struct +pkg log/syslog (freebsd-arm), const LOG_ALERT Priority +pkg log/syslog (freebsd-arm), const LOG_AUTH Priority +pkg log/syslog (freebsd-arm), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-arm), const LOG_CRIT Priority +pkg log/syslog (freebsd-arm), const LOG_CRON Priority +pkg log/syslog (freebsd-arm), const LOG_DAEMON Priority +pkg log/syslog (freebsd-arm), const LOG_DEBUG Priority +pkg log/syslog (freebsd-arm), const LOG_EMERG Priority +pkg log/syslog (freebsd-arm), const LOG_ERR Priority +pkg log/syslog (freebsd-arm), const LOG_FTP Priority +pkg log/syslog (freebsd-arm), const LOG_INFO Priority +pkg log/syslog (freebsd-arm), const LOG_KERN Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-arm), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-arm), const LOG_LPR Priority +pkg log/syslog (freebsd-arm), const LOG_MAIL Priority +pkg log/syslog (freebsd-arm), const LOG_NEWS Priority +pkg log/syslog (freebsd-arm), const LOG_NOTICE Priority +pkg log/syslog (freebsd-arm), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-arm), const LOG_USER Priority +pkg log/syslog (freebsd-arm), const LOG_UUCP Priority +pkg log/syslog (freebsd-arm), const LOG_WARNING Priority +pkg log/syslog (freebsd-arm), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-arm), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Close() error +pkg log/syslog (freebsd-arm), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Err(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Info(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-arm), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-arm), type Priority int +pkg log/syslog (freebsd-arm), type Writer struct +pkg log/syslog (freebsd-arm-cgo), const LOG_ALERT Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_AUTH Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_CRIT Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_CRON Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_DAEMON Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_DEBUG Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_EMERG Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_ERR Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_FTP Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_INFO Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_KERN Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_LPR Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_MAIL Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_NEWS Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_NOTICE Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_SYSLOG Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_USER Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_UUCP Priority +pkg log/syslog (freebsd-arm-cgo), const LOG_WARNING Priority +pkg log/syslog (freebsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Close() error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Err(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Info(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-arm-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-arm-cgo), type Priority int +pkg log/syslog (freebsd-arm-cgo), type Writer struct +pkg log/syslog (linux-arm-cgo), const LOG_ALERT Priority +pkg log/syslog (linux-arm-cgo), const LOG_AUTH Priority +pkg log/syslog (linux-arm-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (linux-arm-cgo), const LOG_CRIT Priority +pkg log/syslog (linux-arm-cgo), const LOG_CRON Priority +pkg log/syslog (linux-arm-cgo), const LOG_DAEMON Priority +pkg log/syslog (linux-arm-cgo), const LOG_DEBUG Priority +pkg log/syslog (linux-arm-cgo), const LOG_EMERG Priority +pkg log/syslog (linux-arm-cgo), const LOG_ERR Priority +pkg log/syslog (linux-arm-cgo), const LOG_FTP Priority +pkg log/syslog (linux-arm-cgo), const LOG_INFO Priority +pkg log/syslog (linux-arm-cgo), const LOG_KERN Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (linux-arm-cgo), const LOG_LPR Priority +pkg log/syslog (linux-arm-cgo), const LOG_MAIL Priority +pkg log/syslog (linux-arm-cgo), const LOG_NEWS Priority +pkg log/syslog (linux-arm-cgo), const LOG_NOTICE Priority +pkg log/syslog (linux-arm-cgo), const LOG_SYSLOG Priority +pkg log/syslog (linux-arm-cgo), const LOG_USER Priority +pkg log/syslog (linux-arm-cgo), const LOG_UUCP Priority +pkg log/syslog (linux-arm-cgo), const LOG_WARNING Priority +pkg log/syslog (linux-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-arm-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-arm-cgo), method (*Writer) Alert(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Close() error +pkg log/syslog (linux-arm-cgo), method (*Writer) Crit(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Debug(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Err(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Info(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Notice(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Warning(string) error +pkg log/syslog (linux-arm-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-arm-cgo), type Priority int +pkg log/syslog (linux-arm-cgo), type Writer struct +pkg log/syslog (netbsd-386), const LOG_ALERT Priority +pkg log/syslog (netbsd-386), const LOG_AUTH Priority +pkg log/syslog (netbsd-386), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-386), const LOG_CRIT Priority +pkg log/syslog (netbsd-386), const LOG_CRON Priority +pkg log/syslog (netbsd-386), const LOG_DAEMON Priority +pkg log/syslog (netbsd-386), const LOG_DEBUG Priority +pkg log/syslog (netbsd-386), const LOG_EMERG Priority +pkg log/syslog (netbsd-386), const LOG_ERR Priority +pkg log/syslog (netbsd-386), const LOG_FTP Priority +pkg log/syslog (netbsd-386), const LOG_INFO Priority +pkg log/syslog (netbsd-386), const LOG_KERN Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-386), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-386), const LOG_LPR Priority +pkg log/syslog (netbsd-386), const LOG_MAIL Priority +pkg log/syslog (netbsd-386), const LOG_NEWS Priority +pkg log/syslog (netbsd-386), const LOG_NOTICE Priority +pkg log/syslog (netbsd-386), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-386), const LOG_USER Priority +pkg log/syslog (netbsd-386), const LOG_UUCP Priority +pkg log/syslog (netbsd-386), const LOG_WARNING Priority +pkg log/syslog (netbsd-386), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-386), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-386), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-386), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-386), method (*Writer) Close() error +pkg log/syslog (netbsd-386), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-386), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-386), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-386), method (*Writer) Err(string) error +pkg log/syslog (netbsd-386), method (*Writer) Info(string) error +pkg log/syslog (netbsd-386), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-386), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-386), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-386), type Priority int +pkg log/syslog (netbsd-386), type Writer struct +pkg log/syslog (netbsd-386-cgo), const LOG_ALERT Priority +pkg log/syslog (netbsd-386-cgo), const LOG_AUTH Priority +pkg log/syslog (netbsd-386-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-386-cgo), const LOG_CRIT Priority +pkg log/syslog (netbsd-386-cgo), const LOG_CRON Priority +pkg log/syslog (netbsd-386-cgo), const LOG_DAEMON Priority +pkg log/syslog (netbsd-386-cgo), const LOG_DEBUG Priority +pkg log/syslog (netbsd-386-cgo), const LOG_EMERG Priority +pkg log/syslog (netbsd-386-cgo), const LOG_ERR Priority +pkg log/syslog (netbsd-386-cgo), const LOG_FTP Priority +pkg log/syslog (netbsd-386-cgo), const LOG_INFO Priority +pkg log/syslog (netbsd-386-cgo), const LOG_KERN Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-386-cgo), const LOG_LPR Priority +pkg log/syslog (netbsd-386-cgo), const LOG_MAIL Priority +pkg log/syslog (netbsd-386-cgo), const LOG_NEWS Priority +pkg log/syslog (netbsd-386-cgo), const LOG_NOTICE Priority +pkg log/syslog (netbsd-386-cgo), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-386-cgo), const LOG_USER Priority +pkg log/syslog (netbsd-386-cgo), const LOG_UUCP Priority +pkg log/syslog (netbsd-386-cgo), const LOG_WARNING Priority +pkg log/syslog (netbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-386-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-386-cgo), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Close() error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Err(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Info(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-386-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-386-cgo), type Priority int +pkg log/syslog (netbsd-386-cgo), type Writer struct +pkg log/syslog (netbsd-amd64), const LOG_ALERT Priority +pkg log/syslog (netbsd-amd64), const LOG_AUTH Priority +pkg log/syslog (netbsd-amd64), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-amd64), const LOG_CRIT Priority +pkg log/syslog (netbsd-amd64), const LOG_CRON Priority +pkg log/syslog (netbsd-amd64), const LOG_DAEMON Priority +pkg log/syslog (netbsd-amd64), const LOG_DEBUG Priority +pkg log/syslog (netbsd-amd64), const LOG_EMERG Priority +pkg log/syslog (netbsd-amd64), const LOG_ERR Priority +pkg log/syslog (netbsd-amd64), const LOG_FTP Priority +pkg log/syslog (netbsd-amd64), const LOG_INFO Priority +pkg log/syslog (netbsd-amd64), const LOG_KERN Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-amd64), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-amd64), const LOG_LPR Priority +pkg log/syslog (netbsd-amd64), const LOG_MAIL Priority +pkg log/syslog (netbsd-amd64), const LOG_NEWS Priority +pkg log/syslog (netbsd-amd64), const LOG_NOTICE Priority +pkg log/syslog (netbsd-amd64), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-amd64), const LOG_USER Priority +pkg log/syslog (netbsd-amd64), const LOG_UUCP Priority +pkg log/syslog (netbsd-amd64), const LOG_WARNING Priority +pkg log/syslog (netbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-amd64), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-amd64), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Close() error +pkg log/syslog (netbsd-amd64), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Err(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Info(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-amd64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-amd64), type Priority int +pkg log/syslog (netbsd-amd64), type Writer struct +pkg log/syslog (netbsd-amd64-cgo), const LOG_ALERT Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTH Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_CRIT Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_CRON Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_DAEMON Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_DEBUG Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_EMERG Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_ERR Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_FTP Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_INFO Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_KERN Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_LPR Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_MAIL Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_NEWS Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_NOTICE Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_USER Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_UUCP Priority +pkg log/syslog (netbsd-amd64-cgo), const LOG_WARNING Priority +pkg log/syslog (netbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-amd64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Close() error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Err(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Info(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-amd64-cgo), type Priority int +pkg log/syslog (netbsd-amd64-cgo), type Writer struct +pkg log/syslog (netbsd-arm), const LOG_ALERT Priority +pkg log/syslog (netbsd-arm), const LOG_AUTH Priority +pkg log/syslog (netbsd-arm), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-arm), const LOG_CRIT Priority +pkg log/syslog (netbsd-arm), const LOG_CRON Priority +pkg log/syslog (netbsd-arm), const LOG_DAEMON Priority +pkg log/syslog (netbsd-arm), const LOG_DEBUG Priority +pkg log/syslog (netbsd-arm), const LOG_EMERG Priority +pkg log/syslog (netbsd-arm), const LOG_ERR Priority +pkg log/syslog (netbsd-arm), const LOG_FTP Priority +pkg log/syslog (netbsd-arm), const LOG_INFO Priority +pkg log/syslog (netbsd-arm), const LOG_KERN Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-arm), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-arm), const LOG_LPR Priority +pkg log/syslog (netbsd-arm), const LOG_MAIL Priority +pkg log/syslog (netbsd-arm), const LOG_NEWS Priority +pkg log/syslog (netbsd-arm), const LOG_NOTICE Priority +pkg log/syslog (netbsd-arm), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-arm), const LOG_USER Priority +pkg log/syslog (netbsd-arm), const LOG_UUCP Priority +pkg log/syslog (netbsd-arm), const LOG_WARNING Priority +pkg log/syslog (netbsd-arm), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-arm), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Close() error +pkg log/syslog (netbsd-arm), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Err(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Info(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-arm), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-arm), type Priority int +pkg log/syslog (netbsd-arm), type Writer struct +pkg log/syslog (netbsd-arm-cgo), const LOG_ALERT Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_AUTH Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_CRIT Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_CRON Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_DAEMON Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_DEBUG Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_EMERG Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_ERR Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_FTP Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_INFO Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_KERN Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_LPR Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_MAIL Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_NEWS Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_NOTICE Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_SYSLOG Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_USER Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_UUCP Priority +pkg log/syslog (netbsd-arm-cgo), const LOG_WARNING Priority +pkg log/syslog (netbsd-arm-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (netbsd-arm-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Alert(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Close() error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Crit(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Debug(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Err(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Info(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Notice(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Warning(string) error +pkg log/syslog (netbsd-arm-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (netbsd-arm-cgo), type Priority int +pkg log/syslog (netbsd-arm-cgo), type Writer struct +pkg log/syslog (openbsd-386), const LOG_ALERT Priority +pkg log/syslog (openbsd-386), const LOG_AUTH Priority +pkg log/syslog (openbsd-386), const LOG_AUTHPRIV Priority +pkg log/syslog (openbsd-386), const LOG_CRIT Priority +pkg log/syslog (openbsd-386), const LOG_CRON Priority +pkg log/syslog (openbsd-386), const LOG_DAEMON Priority +pkg log/syslog (openbsd-386), const LOG_DEBUG Priority +pkg log/syslog (openbsd-386), const LOG_EMERG Priority +pkg log/syslog (openbsd-386), const LOG_ERR Priority +pkg log/syslog (openbsd-386), const LOG_FTP Priority +pkg log/syslog (openbsd-386), const LOG_INFO Priority +pkg log/syslog (openbsd-386), const LOG_KERN Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL0 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL1 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL2 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL3 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL4 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL5 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL6 Priority +pkg log/syslog (openbsd-386), const LOG_LOCAL7 Priority +pkg log/syslog (openbsd-386), const LOG_LPR Priority +pkg log/syslog (openbsd-386), const LOG_MAIL Priority +pkg log/syslog (openbsd-386), const LOG_NEWS Priority +pkg log/syslog (openbsd-386), const LOG_NOTICE Priority +pkg log/syslog (openbsd-386), const LOG_SYSLOG Priority +pkg log/syslog (openbsd-386), const LOG_USER Priority +pkg log/syslog (openbsd-386), const LOG_UUCP Priority +pkg log/syslog (openbsd-386), const LOG_WARNING Priority +pkg log/syslog (openbsd-386), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (openbsd-386), func New(Priority, string) (*Writer, error) +pkg log/syslog (openbsd-386), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (openbsd-386), method (*Writer) Alert(string) error +pkg log/syslog (openbsd-386), method (*Writer) Close() error +pkg log/syslog (openbsd-386), method (*Writer) Crit(string) error +pkg log/syslog (openbsd-386), method (*Writer) Debug(string) error +pkg log/syslog (openbsd-386), method (*Writer) Emerg(string) error +pkg log/syslog (openbsd-386), method (*Writer) Err(string) error +pkg log/syslog (openbsd-386), method (*Writer) Info(string) error +pkg log/syslog (openbsd-386), method (*Writer) Notice(string) error +pkg log/syslog (openbsd-386), method (*Writer) Warning(string) error +pkg log/syslog (openbsd-386), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (openbsd-386), type Priority int +pkg log/syslog (openbsd-386), type Writer struct +pkg log/syslog (openbsd-386-cgo), const LOG_ALERT Priority +pkg log/syslog (openbsd-386-cgo), const LOG_AUTH Priority +pkg log/syslog (openbsd-386-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (openbsd-386-cgo), const LOG_CRIT Priority +pkg log/syslog (openbsd-386-cgo), const LOG_CRON Priority +pkg log/syslog (openbsd-386-cgo), const LOG_DAEMON Priority +pkg log/syslog (openbsd-386-cgo), const LOG_DEBUG Priority +pkg log/syslog (openbsd-386-cgo), const LOG_EMERG Priority +pkg log/syslog (openbsd-386-cgo), const LOG_ERR Priority +pkg log/syslog (openbsd-386-cgo), const LOG_FTP Priority +pkg log/syslog (openbsd-386-cgo), const LOG_INFO Priority +pkg log/syslog (openbsd-386-cgo), const LOG_KERN Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (openbsd-386-cgo), const LOG_LPR Priority +pkg log/syslog (openbsd-386-cgo), const LOG_MAIL Priority +pkg log/syslog (openbsd-386-cgo), const LOG_NEWS Priority +pkg log/syslog (openbsd-386-cgo), const LOG_NOTICE Priority +pkg log/syslog (openbsd-386-cgo), const LOG_SYSLOG Priority +pkg log/syslog (openbsd-386-cgo), const LOG_USER Priority +pkg log/syslog (openbsd-386-cgo), const LOG_UUCP Priority +pkg log/syslog (openbsd-386-cgo), const LOG_WARNING Priority +pkg log/syslog (openbsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (openbsd-386-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (openbsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (openbsd-386-cgo), method (*Writer) Alert(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Close() error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Crit(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Debug(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Err(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Info(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Notice(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Warning(string) error +pkg log/syslog (openbsd-386-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (openbsd-386-cgo), type Priority int +pkg log/syslog (openbsd-386-cgo), type Writer struct +pkg log/syslog (openbsd-amd64), const LOG_ALERT Priority +pkg log/syslog (openbsd-amd64), const LOG_AUTH Priority +pkg log/syslog (openbsd-amd64), const LOG_AUTHPRIV Priority +pkg log/syslog (openbsd-amd64), const LOG_CRIT Priority +pkg log/syslog (openbsd-amd64), const LOG_CRON Priority +pkg log/syslog (openbsd-amd64), const LOG_DAEMON Priority +pkg log/syslog (openbsd-amd64), const LOG_DEBUG Priority +pkg log/syslog (openbsd-amd64), const LOG_EMERG Priority +pkg log/syslog (openbsd-amd64), const LOG_ERR Priority +pkg log/syslog (openbsd-amd64), const LOG_FTP Priority +pkg log/syslog (openbsd-amd64), const LOG_INFO Priority +pkg log/syslog (openbsd-amd64), const LOG_KERN Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL0 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL1 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL2 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL3 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL4 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL5 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL6 Priority +pkg log/syslog (openbsd-amd64), const LOG_LOCAL7 Priority +pkg log/syslog (openbsd-amd64), const LOG_LPR Priority +pkg log/syslog (openbsd-amd64), const LOG_MAIL Priority +pkg log/syslog (openbsd-amd64), const LOG_NEWS Priority +pkg log/syslog (openbsd-amd64), const LOG_NOTICE Priority +pkg log/syslog (openbsd-amd64), const LOG_SYSLOG Priority +pkg log/syslog (openbsd-amd64), const LOG_USER Priority +pkg log/syslog (openbsd-amd64), const LOG_UUCP Priority +pkg log/syslog (openbsd-amd64), const LOG_WARNING Priority +pkg log/syslog (openbsd-amd64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (openbsd-amd64), func New(Priority, string) (*Writer, error) +pkg log/syslog (openbsd-amd64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (openbsd-amd64), method (*Writer) Alert(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Close() error +pkg log/syslog (openbsd-amd64), method (*Writer) Crit(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Debug(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Emerg(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Err(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Info(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Notice(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Warning(string) error +pkg log/syslog (openbsd-amd64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (openbsd-amd64), type Priority int +pkg log/syslog (openbsd-amd64), type Writer struct +pkg log/syslog (openbsd-amd64-cgo), const LOG_ALERT Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTH Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_AUTHPRIV Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_CRIT Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_CRON Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_DAEMON Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_DEBUG Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_EMERG Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_ERR Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_FTP Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_INFO Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_KERN Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL0 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL1 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL2 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL3 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL4 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL5 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL6 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LOCAL7 Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_LPR Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_MAIL Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_NEWS Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_NOTICE Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_SYSLOG Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_USER Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_UUCP Priority +pkg log/syslog (openbsd-amd64-cgo), const LOG_WARNING Priority +pkg log/syslog (openbsd-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (openbsd-amd64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (openbsd-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Close() error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Err(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Info(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (openbsd-amd64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (openbsd-amd64-cgo), type Priority int +pkg log/syslog (openbsd-amd64-cgo), type Writer struct +pkg net, method (*IP) UnmarshalText([]uint8) error +pkg net, method (*TCPConn) SetKeepAlivePeriod(time.Duration) error +pkg net, method (IP) MarshalText() ([]uint8, error) +pkg net, type Dialer struct, DualStack bool +pkg net/smtp, method (*Client) Close() error +pkg os (linux-arm), const O_SYNC = 1052672 +pkg os (linux-arm-cgo), const O_SYNC = 1052672 +pkg reflect, method (Value) SetCap(int) +pkg reflect, method (Value) Slice3(int, int, int) Value +pkg runtime, type MemStats struct, GCSys uint64 +pkg runtime, type MemStats struct, OtherSys uint64 +pkg runtime/debug, func SetMaxStack(int) int +pkg runtime/debug, func SetMaxThreads(int) int +pkg sort, func Stable(Interface) +pkg strings, func IndexByte(string, uint8) int +pkg sync/atomic, func SwapInt32(*int32, int32) int32 +pkg sync/atomic, func SwapInt64(*int64, int64) int64 +pkg sync/atomic, func SwapPointer(*unsafe.Pointer, unsafe.Pointer) unsafe.Pointer +pkg sync/atomic, func SwapUint32(*uint32, uint32) uint32 +pkg sync/atomic, func SwapUint64(*uint64, uint64) uint64 +pkg sync/atomic, func SwapUintptr(*uintptr, uintptr) uintptr +pkg syscall (darwin-386), const ICMP6_FILTER = 18 +pkg syscall (darwin-386), const ICMP6_FILTER ideal-int +pkg syscall (darwin-386), const ImplementsGetwd = true +pkg syscall (darwin-386), const PRIO_PGRP = 1 +pkg syscall (darwin-386), const PRIO_PGRP ideal-int +pkg syscall (darwin-386), const PRIO_PROCESS = 0 +pkg syscall (darwin-386), const PRIO_PROCESS ideal-int +pkg syscall (darwin-386), const PRIO_USER = 2 +pkg syscall (darwin-386), const PRIO_USER ideal-int +pkg syscall (darwin-386), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-386), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-386), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-386), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-386), type ICMPv6Filter struct +pkg syscall (darwin-386), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-386), type IPv6MTUInfo struct +pkg syscall (darwin-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-386), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (darwin-386-cgo), const ICMP6_FILTER = 18 +pkg syscall (darwin-386-cgo), const ICMP6_FILTER ideal-int +pkg syscall (darwin-386-cgo), const ImplementsGetwd = true +pkg syscall (darwin-386-cgo), const PRIO_PGRP = 1 +pkg syscall (darwin-386-cgo), const PRIO_PGRP ideal-int +pkg syscall (darwin-386-cgo), const PRIO_PROCESS = 0 +pkg syscall (darwin-386-cgo), const PRIO_PROCESS ideal-int +pkg syscall (darwin-386-cgo), const PRIO_USER = 2 +pkg syscall (darwin-386-cgo), const PRIO_USER ideal-int +pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-386-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-386-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-386-cgo), type ICMPv6Filter struct +pkg syscall (darwin-386-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct +pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-386-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (darwin-amd64), const ICMP6_FILTER = 18 +pkg syscall (darwin-amd64), const ICMP6_FILTER ideal-int +pkg syscall (darwin-amd64), const ImplementsGetwd = true +pkg syscall (darwin-amd64), const PRIO_PGRP = 1 +pkg syscall (darwin-amd64), const PRIO_PGRP ideal-int +pkg syscall (darwin-amd64), const PRIO_PROCESS = 0 +pkg syscall (darwin-amd64), const PRIO_PROCESS ideal-int +pkg syscall (darwin-amd64), const PRIO_USER = 2 +pkg syscall (darwin-amd64), const PRIO_USER ideal-int +pkg syscall (darwin-amd64), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-amd64), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-amd64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64), type ICMPv6Filter struct +pkg syscall (darwin-amd64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-amd64), type IPv6MTUInfo struct +pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-amd64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER = 18 +pkg syscall (darwin-amd64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = true +pkg syscall (darwin-amd64-cgo), const PRIO_PGRP = 1 +pkg syscall (darwin-amd64-cgo), const PRIO_PGRP ideal-int +pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS = 0 +pkg syscall (darwin-amd64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (darwin-amd64-cgo), const PRIO_USER = 2 +pkg syscall (darwin-amd64-cgo), const PRIO_USER ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (darwin-amd64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (darwin-amd64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (darwin-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (darwin-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (darwin-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct +pkg syscall (darwin-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct +pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (darwin-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-386), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-386), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-386), const ICMP6_FILTER = 18 +pkg syscall (freebsd-386), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-386), const PRIO_PGRP = 1 +pkg syscall (freebsd-386), const PRIO_PGRP ideal-int +pkg syscall (freebsd-386), const PRIO_PROCESS = 0 +pkg syscall (freebsd-386), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-386), const PRIO_USER = 2 +pkg syscall (freebsd-386), const PRIO_USER ideal-int +pkg syscall (freebsd-386), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-386), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-386), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-386), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-386), type ICMPv6Filter struct +pkg syscall (freebsd-386), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-386), type IPv6MTUInfo struct +pkg syscall (freebsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-386), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-386-cgo), const AF_APPLETALK ideal-int +pkg syscall (freebsd-386-cgo), const AF_ARP ideal-int +pkg syscall (freebsd-386-cgo), const AF_ATM ideal-int +pkg syscall (freebsd-386-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-386-cgo), const AF_CCITT ideal-int +pkg syscall (freebsd-386-cgo), const AF_CHAOS ideal-int +pkg syscall (freebsd-386-cgo), const AF_CNT ideal-int +pkg syscall (freebsd-386-cgo), const AF_COIP ideal-int +pkg syscall (freebsd-386-cgo), const AF_DATAKIT ideal-int +pkg syscall (freebsd-386-cgo), const AF_DECnet ideal-int +pkg syscall (freebsd-386-cgo), const AF_DLI ideal-int +pkg syscall (freebsd-386-cgo), const AF_E164 ideal-int +pkg syscall (freebsd-386-cgo), const AF_ECMA ideal-int +pkg syscall (freebsd-386-cgo), const AF_HYLINK ideal-int +pkg syscall (freebsd-386-cgo), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-386-cgo), const AF_IMPLINK ideal-int +pkg syscall (freebsd-386-cgo), const AF_IPX ideal-int +pkg syscall (freebsd-386-cgo), const AF_ISDN ideal-int +pkg syscall (freebsd-386-cgo), const AF_ISO ideal-int +pkg syscall (freebsd-386-cgo), const AF_LAT ideal-int +pkg syscall (freebsd-386-cgo), const AF_LINK ideal-int +pkg syscall (freebsd-386-cgo), const AF_LOCAL ideal-int +pkg syscall (freebsd-386-cgo), const AF_MAX ideal-int +pkg syscall (freebsd-386-cgo), const AF_NATM ideal-int +pkg syscall (freebsd-386-cgo), const AF_NETBIOS ideal-int +pkg syscall (freebsd-386-cgo), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-386-cgo), const AF_OSI ideal-int +pkg syscall (freebsd-386-cgo), const AF_PUP ideal-int +pkg syscall (freebsd-386-cgo), const AF_ROUTE ideal-int +pkg syscall (freebsd-386-cgo), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-386-cgo), const AF_SIP ideal-int +pkg syscall (freebsd-386-cgo), const AF_SLOW ideal-int +pkg syscall (freebsd-386-cgo), const AF_SNA ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-386-cgo), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-386-cgo), const B0 ideal-int +pkg syscall (freebsd-386-cgo), const B110 ideal-int +pkg syscall (freebsd-386-cgo), const B115200 ideal-int +pkg syscall (freebsd-386-cgo), const B1200 ideal-int +pkg syscall (freebsd-386-cgo), const B134 ideal-int +pkg syscall (freebsd-386-cgo), const B14400 ideal-int +pkg syscall (freebsd-386-cgo), const B150 ideal-int +pkg syscall (freebsd-386-cgo), const B1800 ideal-int +pkg syscall (freebsd-386-cgo), const B19200 ideal-int +pkg syscall (freebsd-386-cgo), const B200 ideal-int +pkg syscall (freebsd-386-cgo), const B230400 ideal-int +pkg syscall (freebsd-386-cgo), const B2400 ideal-int +pkg syscall (freebsd-386-cgo), const B28800 ideal-int +pkg syscall (freebsd-386-cgo), const B300 ideal-int +pkg syscall (freebsd-386-cgo), const B38400 ideal-int +pkg syscall (freebsd-386-cgo), const B460800 ideal-int +pkg syscall (freebsd-386-cgo), const B4800 ideal-int +pkg syscall (freebsd-386-cgo), const B50 ideal-int +pkg syscall (freebsd-386-cgo), const B57600 ideal-int +pkg syscall (freebsd-386-cgo), const B600 ideal-int +pkg syscall (freebsd-386-cgo), const B7200 ideal-int +pkg syscall (freebsd-386-cgo), const B75 ideal-int +pkg syscall (freebsd-386-cgo), const B76800 ideal-int +pkg syscall (freebsd-386-cgo), const B921600 ideal-int +pkg syscall (freebsd-386-cgo), const B9600 ideal-int +pkg syscall (freebsd-386-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-386-cgo), const BIOCFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGBLEN ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGDLT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGETIF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGRSIG ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGSTATS ideal-int +pkg syscall (freebsd-386-cgo), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-386-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-386-cgo), const BIOCLOCK ideal-int +pkg syscall (freebsd-386-cgo), const BIOCPROMISC ideal-int +pkg syscall (freebsd-386-cgo), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSBLEN ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSDLT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETFNR ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETIF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETWF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSRSIG ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-386-cgo), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-386-cgo), const BIOCVERSION ideal-int +pkg syscall (freebsd-386-cgo), const BPF_A ideal-int +pkg syscall (freebsd-386-cgo), const BPF_ABS ideal-int +pkg syscall (freebsd-386-cgo), const BPF_ADD ideal-int +pkg syscall (freebsd-386-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-386-cgo), const BPF_ALU ideal-int +pkg syscall (freebsd-386-cgo), const BPF_AND ideal-int +pkg syscall (freebsd-386-cgo), const BPF_B ideal-int +pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-386-cgo), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-386-cgo), const BPF_DIV ideal-int +pkg syscall (freebsd-386-cgo), const BPF_H ideal-int +pkg syscall (freebsd-386-cgo), const BPF_IMM ideal-int +pkg syscall (freebsd-386-cgo), const BPF_IND ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JA ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JEQ ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JGE ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JGT ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JMP ideal-int +pkg syscall (freebsd-386-cgo), const BPF_JSET ideal-int +pkg syscall (freebsd-386-cgo), const BPF_K ideal-int +pkg syscall (freebsd-386-cgo), const BPF_LD ideal-int +pkg syscall (freebsd-386-cgo), const BPF_LDX ideal-int +pkg syscall (freebsd-386-cgo), const BPF_LEN ideal-int +pkg syscall (freebsd-386-cgo), const BPF_LSH ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MEM ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MISC ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MSH ideal-int +pkg syscall (freebsd-386-cgo), const BPF_MUL ideal-int +pkg syscall (freebsd-386-cgo), const BPF_NEG ideal-int +pkg syscall (freebsd-386-cgo), const BPF_OR ideal-int +pkg syscall (freebsd-386-cgo), const BPF_RELEASE ideal-int +pkg syscall (freebsd-386-cgo), const BPF_RET ideal-int +pkg syscall (freebsd-386-cgo), const BPF_RSH ideal-int +pkg syscall (freebsd-386-cgo), const BPF_ST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_STX ideal-int +pkg syscall (freebsd-386-cgo), const BPF_SUB ideal-int +pkg syscall (freebsd-386-cgo), const BPF_TAX ideal-int +pkg syscall (freebsd-386-cgo), const BPF_TXA ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NONE ideal-int +pkg syscall (freebsd-386-cgo), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-386-cgo), const BPF_W ideal-int +pkg syscall (freebsd-386-cgo), const BPF_X ideal-int +pkg syscall (freebsd-386-cgo), const BRKINT ideal-int +pkg syscall (freebsd-386-cgo), const CFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const CLOCAL ideal-int +pkg syscall (freebsd-386-cgo), const CREAD ideal-int +pkg syscall (freebsd-386-cgo), const CS5 ideal-int +pkg syscall (freebsd-386-cgo), const CS6 ideal-int +pkg syscall (freebsd-386-cgo), const CS7 ideal-int +pkg syscall (freebsd-386-cgo), const CS8 ideal-int +pkg syscall (freebsd-386-cgo), const CSIZE ideal-int +pkg syscall (freebsd-386-cgo), const CSTART ideal-int +pkg syscall (freebsd-386-cgo), const CSTATUS ideal-int +pkg syscall (freebsd-386-cgo), const CSTOP ideal-int +pkg syscall (freebsd-386-cgo), const CSTOPB ideal-int +pkg syscall (freebsd-386-cgo), const CSUSP ideal-int +pkg syscall (freebsd-386-cgo), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-386-cgo), const CTL_NET ideal-int +pkg syscall (freebsd-386-cgo), const DLT_A429 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-386-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_AOS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ARCNET ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_AURORA ideal-int +pkg syscall (freebsd-386-cgo), const DLT_AX25 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_CAN20B ideal-int +pkg syscall (freebsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-386-cgo), const DLT_CHAOS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_CHDLC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_DBUS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_DECT ideal-int +pkg syscall (freebsd-386-cgo), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ECONET ideal-int +pkg syscall (freebsd-386-cgo), const DLT_EN10MB ideal-int +pkg syscall (freebsd-386-cgo), const DLT_EN3MB ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ENC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ERF ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-386-cgo), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FC_2 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FDDI ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FRELAY ideal-int +pkg syscall (freebsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GPF_F ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GPF_T ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-386-cgo), const DLT_HHDLC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPMB ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPNET ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPOIB ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPV4 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IPV6 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LAPD ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LIN ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LOOP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_LTALK ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MFR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MOST ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MPLS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MTP2 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MTP3 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NFLOG ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NULL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PFLOG ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPI ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-386-cgo), const DLT_PRONET ideal-int +pkg syscall (freebsd-386-cgo), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_RAW ideal-int +pkg syscall (freebsd-386-cgo), const DLT_RIO ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SCCP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SITA ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SLIP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SUNATM ideal-int +pkg syscall (freebsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_TZSP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USB ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER0 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER1 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER10 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER11 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER12 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER13 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER14 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER15 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER2 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER3 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER4 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER5 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER6 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER7 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER8 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_USER9 ideal-int +pkg syscall (freebsd-386-cgo), const DLT_WIHART ideal-int +pkg syscall (freebsd-386-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-386-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-386-cgo), const DT_BLK ideal-int +pkg syscall (freebsd-386-cgo), const DT_CHR ideal-int +pkg syscall (freebsd-386-cgo), const DT_DIR ideal-int +pkg syscall (freebsd-386-cgo), const DT_FIFO ideal-int +pkg syscall (freebsd-386-cgo), const DT_LNK ideal-int +pkg syscall (freebsd-386-cgo), const DT_REG ideal-int +pkg syscall (freebsd-386-cgo), const DT_SOCK ideal-int +pkg syscall (freebsd-386-cgo), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-386-cgo), const DT_WHT ideal-int +pkg syscall (freebsd-386-cgo), const EAUTH Errno +pkg syscall (freebsd-386-cgo), const EBADMSG Errno +pkg syscall (freebsd-386-cgo), const EBADRPC Errno +pkg syscall (freebsd-386-cgo), const ECAPMODE Errno +pkg syscall (freebsd-386-cgo), const ECHO ideal-int +pkg syscall (freebsd-386-cgo), const ECHOCTL ideal-int +pkg syscall (freebsd-386-cgo), const ECHOE ideal-int +pkg syscall (freebsd-386-cgo), const ECHOK ideal-int +pkg syscall (freebsd-386-cgo), const ECHOKE ideal-int +pkg syscall (freebsd-386-cgo), const ECHONL ideal-int +pkg syscall (freebsd-386-cgo), const ECHOPRT ideal-int +pkg syscall (freebsd-386-cgo), const EDOOFUS Errno +pkg syscall (freebsd-386-cgo), const EFTYPE Errno +pkg syscall (freebsd-386-cgo), const ELAST Errno +pkg syscall (freebsd-386-cgo), const EMULTIHOP Errno +pkg syscall (freebsd-386-cgo), const ENEEDAUTH Errno +pkg syscall (freebsd-386-cgo), const ENOATTR Errno +pkg syscall (freebsd-386-cgo), const ENOLINK Errno +pkg syscall (freebsd-386-cgo), const ENOTCAPABLE Errno +pkg syscall (freebsd-386-cgo), const EPROCLIM Errno +pkg syscall (freebsd-386-cgo), const EPROCUNAVAIL Errno +pkg syscall (freebsd-386-cgo), const EPROGMISMATCH Errno +pkg syscall (freebsd-386-cgo), const EPROGUNAVAIL Errno +pkg syscall (freebsd-386-cgo), const EPROTO Errno +pkg syscall (freebsd-386-cgo), const ERPCMISMATCH Errno +pkg syscall (freebsd-386-cgo), const EVFILT_AIO ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_FS ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_LIO ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_PROC ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_READ ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_USER ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-386-cgo), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-386-cgo), const EV_ADD ideal-int +pkg syscall (freebsd-386-cgo), const EV_CLEAR ideal-int +pkg syscall (freebsd-386-cgo), const EV_DELETE ideal-int +pkg syscall (freebsd-386-cgo), const EV_DISABLE ideal-int +pkg syscall (freebsd-386-cgo), const EV_DISPATCH ideal-int +pkg syscall (freebsd-386-cgo), const EV_ENABLE ideal-int +pkg syscall (freebsd-386-cgo), const EV_EOF ideal-int +pkg syscall (freebsd-386-cgo), const EV_ERROR ideal-int +pkg syscall (freebsd-386-cgo), const EV_FLAG1 ideal-int +pkg syscall (freebsd-386-cgo), const EV_ONESHOT ideal-int +pkg syscall (freebsd-386-cgo), const EV_RECEIPT ideal-int +pkg syscall (freebsd-386-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const EXTA ideal-int +pkg syscall (freebsd-386-cgo), const EXTB ideal-int +pkg syscall (freebsd-386-cgo), const EXTPROC ideal-int +pkg syscall (freebsd-386-cgo), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-386-cgo), const FD_SETSIZE ideal-int +pkg syscall (freebsd-386-cgo), const FLUSHO ideal-int +pkg syscall (freebsd-386-cgo), const F_CANCEL ideal-int +pkg syscall (freebsd-386-cgo), const F_DUP2FD ideal-int +pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-386-cgo), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-386-cgo), const F_DUPFD ideal-int +pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-386-cgo), const F_GETFD ideal-int +pkg syscall (freebsd-386-cgo), const F_GETFL ideal-int +pkg syscall (freebsd-386-cgo), const F_GETLK ideal-int +pkg syscall (freebsd-386-cgo), const F_GETOWN ideal-int +pkg syscall (freebsd-386-cgo), const F_OGETLK ideal-int +pkg syscall (freebsd-386-cgo), const F_OK ideal-int +pkg syscall (freebsd-386-cgo), const F_OSETLK ideal-int +pkg syscall (freebsd-386-cgo), const F_OSETLKW ideal-int +pkg syscall (freebsd-386-cgo), const F_RDAHEAD ideal-int +pkg syscall (freebsd-386-cgo), const F_RDLCK ideal-int +pkg syscall (freebsd-386-cgo), const F_READAHEAD ideal-int +pkg syscall (freebsd-386-cgo), const F_SETFD ideal-int +pkg syscall (freebsd-386-cgo), const F_SETFL ideal-int +pkg syscall (freebsd-386-cgo), const F_SETLK ideal-int +pkg syscall (freebsd-386-cgo), const F_SETLKW ideal-int +pkg syscall (freebsd-386-cgo), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-386-cgo), const F_SETOWN ideal-int +pkg syscall (freebsd-386-cgo), const F_UNLCK ideal-int +pkg syscall (freebsd-386-cgo), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-386-cgo), const F_WRLCK ideal-int +pkg syscall (freebsd-386-cgo), const HUPCL ideal-int +pkg syscall (freebsd-386-cgo), const ICANON ideal-int +pkg syscall (freebsd-386-cgo), const ICMP6_FILTER = 18 +pkg syscall (freebsd-386-cgo), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const ICRNL ideal-int +pkg syscall (freebsd-386-cgo), const IEXTEN ideal-int +pkg syscall (freebsd-386-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-386-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-386-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-386-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-386-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-386-cgo), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-386-cgo), const IFF_DEBUG ideal-int +pkg syscall (freebsd-386-cgo), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-386-cgo), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-386-cgo), const IFF_DYING ideal-int +pkg syscall (freebsd-386-cgo), const IFF_LINK0 ideal-int +pkg syscall (freebsd-386-cgo), const IFF_LINK1 ideal-int +pkg syscall (freebsd-386-cgo), const IFF_LINK2 ideal-int +pkg syscall (freebsd-386-cgo), const IFF_MONITOR ideal-int +pkg syscall (freebsd-386-cgo), const IFF_NOARP ideal-int +pkg syscall (freebsd-386-cgo), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-386-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-386-cgo), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-386-cgo), const IFF_PROMISC ideal-int +pkg syscall (freebsd-386-cgo), const IFF_RENAMING ideal-int +pkg syscall (freebsd-386-cgo), const IFF_RUNNING ideal-int +pkg syscall (freebsd-386-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-386-cgo), const IFF_SMART ideal-int +pkg syscall (freebsd-386-cgo), const IFF_STATICARP ideal-int +pkg syscall (freebsd-386-cgo), const IFNAMSIZ ideal-int +pkg syscall (freebsd-386-cgo), const IFT_1822 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-386-cgo), const IFT_AAL2 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_AAL5 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ADSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ARAP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ARCNET ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ASYNC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-386-cgo), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_BSC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CARP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CEPT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CES ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_CNR ideal-int +pkg syscall (freebsd-386-cgo), const IFT_COFFEE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DCN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DLSW ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DS0 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DS3 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DTM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ENC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_EON ideal-int +pkg syscall (freebsd-386-cgo), const IFT_EPLRS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ESCON ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ETHER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FAITH ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FAST ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FDDI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRELAY ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-386-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-386-cgo), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-386-cgo), const IFT_GIF ideal-int +pkg syscall (freebsd-386-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-386-cgo), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HDLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HIPPI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HSSI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_HY ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IFGSN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IMT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-386-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-386-cgo), const IFT_IPXIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISDN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISDNS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISDNU ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ISUP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_LAPB ideal-int +pkg syscall (freebsd-386-cgo), const IFT_LAPD ideal-int +pkg syscall (freebsd-386-cgo), const IFT_LAPF ideal-int +pkg syscall (freebsd-386-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-386-cgo), const IFT_LOOP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MODEM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MPC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MPLS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MSDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MVL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_MYRINET ideal-int +pkg syscall (freebsd-386-cgo), const IFT_NFAS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_NSIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_OTHER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_P10 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_P80 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PARA ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PFLOG ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_POS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PPP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_PVC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_QLLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_RADSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_RS232 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_RSRB ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SDLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SHDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SLIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SONET ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SONETVT ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SRP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-386-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-386-cgo), const IFT_STARLAN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_STF ideal-int +pkg syscall (freebsd-386-cgo), const IFT_T1 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_TDLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-386-cgo), const IFT_TR008 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-386-cgo), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_ULTRA ideal-int +pkg syscall (freebsd-386-cgo), const IFT_USB ideal-int +pkg syscall (freebsd-386-cgo), const IFT_V11 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_V35 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_V36 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_V37 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VDSL ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-386-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X213 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X25 ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X25DDN ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X25MLP ideal-int +pkg syscall (freebsd-386-cgo), const IFT_X25PLE ideal-int +pkg syscall (freebsd-386-cgo), const IFT_XETHER ideal-int +pkg syscall (freebsd-386-cgo), const IGNBRK ideal-int +pkg syscall (freebsd-386-cgo), const IGNCR ideal-int +pkg syscall (freebsd-386-cgo), const IGNPAR ideal-int +pkg syscall (freebsd-386-cgo), const IMAXBEL ideal-int +pkg syscall (freebsd-386-cgo), const INLCR ideal-int +pkg syscall (freebsd-386-cgo), const INPCK ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-386-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-386-cgo), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_AH ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_APES ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_EON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IL ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_INP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MH ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ND ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_ST ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FAITH ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MMTU ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_VERSION ideal-int +pkg syscall (freebsd-386-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-386-cgo), const IP_BINDANY ideal-int +pkg syscall (freebsd-386-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-386-cgo), const IP_DF ideal-int +pkg syscall (freebsd-386-cgo), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-386-cgo), const IP_FAITH ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW3 ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_ADD ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_DEL ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_GET ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-386-cgo), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-386-cgo), const IP_HDRINCL ideal-int +pkg syscall (freebsd-386-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-386-cgo), const IP_MF ideal-int +pkg syscall (freebsd-386-cgo), const IP_MINTTL ideal-int +pkg syscall (freebsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386-cgo), const IP_MSFILTER ideal-int +pkg syscall (freebsd-386-cgo), const IP_MSS ideal-int +pkg syscall (freebsd-386-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-386-cgo), const IP_OFFMASK ideal-int +pkg syscall (freebsd-386-cgo), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-386-cgo), const IP_OPTIONS ideal-int +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-386-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVIF ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVTOS ideal-int +pkg syscall (freebsd-386-cgo), const IP_RECVTTL ideal-int +pkg syscall (freebsd-386-cgo), const IP_RETOPTS ideal-int +pkg syscall (freebsd-386-cgo), const IP_RF ideal-int +pkg syscall (freebsd-386-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-386-cgo), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-386-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-386-cgo), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-386-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-386-cgo), const ISIG ideal-int +pkg syscall (freebsd-386-cgo), const ISTRIP ideal-int +pkg syscall (freebsd-386-cgo), const IXANY ideal-int +pkg syscall (freebsd-386-cgo), const IXOFF ideal-int +pkg syscall (freebsd-386-cgo), const IXON ideal-int +pkg syscall (freebsd-386-cgo), const LOCK_EX ideal-int +pkg syscall (freebsd-386-cgo), const LOCK_NB ideal-int +pkg syscall (freebsd-386-cgo), const LOCK_SH ideal-int +pkg syscall (freebsd-386-cgo), const LOCK_UN ideal-int +pkg syscall (freebsd-386-cgo), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-386-cgo), const MADV_CORE ideal-int +pkg syscall (freebsd-386-cgo), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-386-cgo), const MADV_FREE ideal-int +pkg syscall (freebsd-386-cgo), const MADV_NOCORE ideal-int +pkg syscall (freebsd-386-cgo), const MADV_NORMAL ideal-int +pkg syscall (freebsd-386-cgo), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-386-cgo), const MADV_PROTECT ideal-int +pkg syscall (freebsd-386-cgo), const MADV_RANDOM ideal-int +pkg syscall (freebsd-386-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-386-cgo), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-386-cgo), const MAP_ANON ideal-int +pkg syscall (freebsd-386-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-386-cgo), const MAP_COPY ideal-int +pkg syscall (freebsd-386-cgo), const MAP_FILE ideal-int +pkg syscall (freebsd-386-cgo), const MAP_FIXED ideal-int +pkg syscall (freebsd-386-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-386-cgo), const MAP_NOCORE ideal-int +pkg syscall (freebsd-386-cgo), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-386-cgo), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-386-cgo), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-386-cgo), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-386-cgo), const MAP_RENAME ideal-int +pkg syscall (freebsd-386-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-386-cgo), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-386-cgo), const MAP_SHARED ideal-int +pkg syscall (freebsd-386-cgo), const MAP_STACK ideal-int +pkg syscall (freebsd-386-cgo), const MCL_CURRENT ideal-int +pkg syscall (freebsd-386-cgo), const MCL_FUTURE ideal-int +pkg syscall (freebsd-386-cgo), const MSG_COMPAT ideal-int +pkg syscall (freebsd-386-cgo), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-386-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-386-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-386-cgo), const MSG_EOF ideal-int +pkg syscall (freebsd-386-cgo), const MSG_EOR ideal-int +pkg syscall (freebsd-386-cgo), const MSG_NBIO ideal-int +pkg syscall (freebsd-386-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-386-cgo), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-386-cgo), const MSG_OOB ideal-int +pkg syscall (freebsd-386-cgo), const MSG_PEEK ideal-int +pkg syscall (freebsd-386-cgo), const MSG_TRUNC ideal-int +pkg syscall (freebsd-386-cgo), const MSG_WAITALL ideal-int +pkg syscall (freebsd-386-cgo), const MS_ASYNC ideal-int +pkg syscall (freebsd-386-cgo), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-386-cgo), const MS_SYNC ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-386-cgo), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-386-cgo), const NOFLSH ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_CHILD ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_DELETE ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_EXEC ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_EXIT ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFAND ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FFOR ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_FORK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_LINK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_RENAME ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_TRACK ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-386-cgo), const NOTE_WRITE ideal-int +pkg syscall (freebsd-386-cgo), const OCRNL ideal-int +pkg syscall (freebsd-386-cgo), const ONLCR ideal-int +pkg syscall (freebsd-386-cgo), const ONLRET ideal-int +pkg syscall (freebsd-386-cgo), const ONOCR ideal-int +pkg syscall (freebsd-386-cgo), const ONOEOT ideal-int +pkg syscall (freebsd-386-cgo), const OPOST ideal-int +pkg syscall (freebsd-386-cgo), const O_ACCMODE ideal-int +pkg syscall (freebsd-386-cgo), const O_DIRECT ideal-int +pkg syscall (freebsd-386-cgo), const O_DIRECTORY ideal-int +pkg syscall (freebsd-386-cgo), const O_EXEC ideal-int +pkg syscall (freebsd-386-cgo), const O_EXLOCK ideal-int +pkg syscall (freebsd-386-cgo), const O_FSYNC ideal-int +pkg syscall (freebsd-386-cgo), const O_NDELAY ideal-int +pkg syscall (freebsd-386-cgo), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-386-cgo), const O_SHLOCK ideal-int +pkg syscall (freebsd-386-cgo), const O_TTY_INIT ideal-int +pkg syscall (freebsd-386-cgo), const PARENB ideal-int +pkg syscall (freebsd-386-cgo), const PARMRK ideal-int +pkg syscall (freebsd-386-cgo), const PARODD ideal-int +pkg syscall (freebsd-386-cgo), const PENDIN ideal-int +pkg syscall (freebsd-386-cgo), const PRIO_PGRP = 1 +pkg syscall (freebsd-386-cgo), const PRIO_PGRP ideal-int +pkg syscall (freebsd-386-cgo), const PRIO_PROCESS = 0 +pkg syscall (freebsd-386-cgo), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-386-cgo), const PRIO_USER = 2 +pkg syscall (freebsd-386-cgo), const PRIO_USER ideal-int +pkg syscall (freebsd-386-cgo), const PROT_EXEC ideal-int +pkg syscall (freebsd-386-cgo), const PROT_NONE ideal-int +pkg syscall (freebsd-386-cgo), const PROT_READ ideal-int +pkg syscall (freebsd-386-cgo), const PROT_WRITE ideal-int +pkg syscall (freebsd-386-cgo), const PTRACE_CONT ideal-int +pkg syscall (freebsd-386-cgo), const PTRACE_KILL ideal-int +pkg syscall (freebsd-386-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_AS ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-386-cgo), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-386-cgo), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_BRD ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_DST ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_IFA ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_IFP ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_MAX ideal-int +pkg syscall (freebsd-386-cgo), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-386-cgo), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-386-cgo), const RTA_BRD ideal-int +pkg syscall (freebsd-386-cgo), const RTA_DST ideal-int +pkg syscall (freebsd-386-cgo), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-386-cgo), const RTA_GENMASK ideal-int +pkg syscall (freebsd-386-cgo), const RTA_IFA ideal-int +pkg syscall (freebsd-386-cgo), const RTA_IFP ideal-int +pkg syscall (freebsd-386-cgo), const RTA_NETMASK ideal-int +pkg syscall (freebsd-386-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-386-cgo), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-386-cgo), const RTF_DONE ideal-int +pkg syscall (freebsd-386-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-386-cgo), const RTF_FMASK ideal-int +pkg syscall (freebsd-386-cgo), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-386-cgo), const RTF_HOST ideal-int +pkg syscall (freebsd-386-cgo), const RTF_LLDATA ideal-int +pkg syscall (freebsd-386-cgo), const RTF_LLINFO ideal-int +pkg syscall (freebsd-386-cgo), const RTF_LOCAL ideal-int +pkg syscall (freebsd-386-cgo), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-386-cgo), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-386-cgo), const RTF_PINNED ideal-int +pkg syscall (freebsd-386-cgo), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-386-cgo), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-386-cgo), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-386-cgo), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-386-cgo), const RTF_REJECT ideal-int +pkg syscall (freebsd-386-cgo), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-386-cgo), const RTF_STATIC ideal-int +pkg syscall (freebsd-386-cgo), const RTF_STICKY ideal-int +pkg syscall (freebsd-386-cgo), const RTF_UP ideal-int +pkg syscall (freebsd-386-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-386-cgo), const RTM_ADD ideal-int +pkg syscall (freebsd-386-cgo), const RTM_CHANGE ideal-int +pkg syscall (freebsd-386-cgo), const RTM_DELADDR ideal-int +pkg syscall (freebsd-386-cgo), const RTM_DELETE ideal-int +pkg syscall (freebsd-386-cgo), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-386-cgo), const RTM_GET ideal-int +pkg syscall (freebsd-386-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-386-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-386-cgo), const RTM_IFINFO ideal-int +pkg syscall (freebsd-386-cgo), const RTM_LOCK ideal-int +pkg syscall (freebsd-386-cgo), const RTM_LOSING ideal-int +pkg syscall (freebsd-386-cgo), const RTM_MISS ideal-int +pkg syscall (freebsd-386-cgo), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-386-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-386-cgo), const RTM_OLDADD ideal-int +pkg syscall (freebsd-386-cgo), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-386-cgo), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-386-cgo), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-386-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-386-cgo), const RTM_VERSION ideal-int +pkg syscall (freebsd-386-cgo), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-386-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-386-cgo), const RTV_MTU ideal-int +pkg syscall (freebsd-386-cgo), const RTV_RPIPE ideal-int +pkg syscall (freebsd-386-cgo), const RTV_RTT ideal-int +pkg syscall (freebsd-386-cgo), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-386-cgo), const RTV_SPIPE ideal-int +pkg syscall (freebsd-386-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-386-cgo), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-386-cgo), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-386-cgo), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-386-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-386-cgo), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-386-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-386-cgo), const SCM_BINTIME ideal-int +pkg syscall (freebsd-386-cgo), const SCM_CREDS ideal-int +pkg syscall (freebsd-386-cgo), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-386-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-386-cgo), const SIGCHLD Signal +pkg syscall (freebsd-386-cgo), const SIGCONT Signal +pkg syscall (freebsd-386-cgo), const SIGEMT Signal +pkg syscall (freebsd-386-cgo), const SIGINFO Signal +pkg syscall (freebsd-386-cgo), const SIGIO Signal +pkg syscall (freebsd-386-cgo), const SIGIOT Signal +pkg syscall (freebsd-386-cgo), const SIGLWP Signal +pkg syscall (freebsd-386-cgo), const SIGPROF Signal +pkg syscall (freebsd-386-cgo), const SIGSTOP Signal +pkg syscall (freebsd-386-cgo), const SIGSYS Signal +pkg syscall (freebsd-386-cgo), const SIGTHR Signal +pkg syscall (freebsd-386-cgo), const SIGTSTP Signal +pkg syscall (freebsd-386-cgo), const SIGTTIN Signal +pkg syscall (freebsd-386-cgo), const SIGTTOU Signal +pkg syscall (freebsd-386-cgo), const SIGURG Signal +pkg syscall (freebsd-386-cgo), const SIGUSR1 Signal +pkg syscall (freebsd-386-cgo), const SIGUSR2 Signal +pkg syscall (freebsd-386-cgo), const SIGVTALRM Signal +pkg syscall (freebsd-386-cgo), const SIGWINCH Signal +pkg syscall (freebsd-386-cgo), const SIGXCPU Signal +pkg syscall (freebsd-386-cgo), const SIGXFSZ Signal +pkg syscall (freebsd-386-cgo), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-386-cgo), const SIOCADDRT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCATMARK ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDELRT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGPGRP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-386-cgo), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-386-cgo), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-386-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-386-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-386-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-386-cgo), const SIOCSPGRP ideal-int +pkg syscall (freebsd-386-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-386-cgo), const SOCK_RDM ideal-int +pkg syscall (freebsd-386-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-386-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-386-cgo), const SO_BINTIME ideal-int +pkg syscall (freebsd-386-cgo), const SO_DEBUG ideal-int +pkg syscall (freebsd-386-cgo), const SO_ERROR ideal-int +pkg syscall (freebsd-386-cgo), const SO_LABEL ideal-int +pkg syscall (freebsd-386-cgo), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-386-cgo), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-386-cgo), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-386-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-386-cgo), const SO_NO_DDP ideal-int +pkg syscall (freebsd-386-cgo), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-386-cgo), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-386-cgo), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-386-cgo), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-386-cgo), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-386-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-386-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-386-cgo), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-386-cgo), const SO_SETFIB ideal-int +pkg syscall (freebsd-386-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-386-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-386-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-386-cgo), const SO_TYPE ideal-int +pkg syscall (freebsd-386-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-386-cgo), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ACCESS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ACCT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_AUDIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_AUDITON ideal-int +pkg syscall (freebsd-386-cgo), const SYS_BIND ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHDIR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHMOD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHOWN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHROOT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOSE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CONNECT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CPUSET ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_DUP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_DUP2 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EACCESS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXECVE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FCNTL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FLOCK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FORK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FSYNC ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETAUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETEGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETEUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETFH ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPPID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETSID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_GETUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_IOCTL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_JAIL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-386-cgo), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-386-cgo), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KENV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KEVENT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KILL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_KTRACE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LGETFH ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LINKAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LISTEN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LSEEK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MADVISE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MINCORE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKDIR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKNOD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MLOCK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MMAP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MODFIND ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MOUNT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MSYNC ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NSTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_OBREAK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_OPEN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_OPENAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PDFORK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PDKILL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PIPE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_POLL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PREAD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PREADV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PROFIL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PSELECT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PTRACE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PWRITE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_READ ideal-int +pkg syscall (freebsd-386-cgo), const SYS_READLINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_READV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_REBOOT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RENAME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_REVOKE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RFORK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RMDIR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-386-cgo), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SBRK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SELECT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SENDTO ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETAUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETEGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETEUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETFIB ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETPGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETREGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETREUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETSID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SETUID ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SOCKET ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SSTK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_STATFS ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SWAPON ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SYNC ideal-int +pkg syscall (freebsd-386-cgo), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-386-cgo), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UMASK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UNLINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UTIMES ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UTRACE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-386-cgo), const SYS_VFORK ideal-int +pkg syscall (freebsd-386-cgo), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_WRITE ideal-int +pkg syscall (freebsd-386-cgo), const SYS_WRITEV ideal-int +pkg syscall (freebsd-386-cgo), const SYS_YIELD ideal-int +pkg syscall (freebsd-386-cgo), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-386-cgo), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-386-cgo), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___GETCWD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-386-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-386-cgo), const SYS___SETUGID ideal-int +pkg syscall (freebsd-386-cgo), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfStat ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-386-cgo), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-386-cgo), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-386-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIPMreq ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-386-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIfData ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-386-cgo), const SizeofLinger ideal-int +pkg syscall (freebsd-386-cgo), const SizeofMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-386-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-386-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-386-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-386-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-386-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-386-cgo), const TCIFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const TCIOFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const TCOFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-386-cgo), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-386-cgo), const TCP_INFO ideal-int +pkg syscall (freebsd-386-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-386-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-386-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-386-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MINMSS ideal-int +pkg syscall (freebsd-386-cgo), const TCP_MSS ideal-int +pkg syscall (freebsd-386-cgo), const TCP_NOOPT ideal-int +pkg syscall (freebsd-386-cgo), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-386-cgo), const TCSAFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const TIOCCBRK ideal-int +pkg syscall (freebsd-386-cgo), const TIOCCDTR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCCONS ideal-int +pkg syscall (freebsd-386-cgo), const TIOCDRAIN ideal-int +pkg syscall (freebsd-386-cgo), const TIOCEXCL ideal-int +pkg syscall (freebsd-386-cgo), const TIOCEXT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCFLUSH ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGETA ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGETD ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGPGRP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGPTN ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGSID ideal-int +pkg syscall (freebsd-386-cgo), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMBIC ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMBIS ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMGET ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCMSET ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_CAR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_CD ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_CTS ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_DCD ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_DSR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_DTR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_LE ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_RI ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_RNG ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_RTS ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_SR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCM_ST ideal-int +pkg syscall (freebsd-386-cgo), const TIOCNOTTY ideal-int +pkg syscall (freebsd-386-cgo), const TIOCNXCL ideal-int +pkg syscall (freebsd-386-cgo), const TIOCOUTQ ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_START ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSBRK ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSCTTY ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSDTR ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSETA ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSETAF ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSETAW ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSETD ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSIG ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSPGRP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSTART ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSTAT ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSTI ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSTOP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-386-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-386-cgo), const TIOCUCNTL ideal-int +pkg syscall (freebsd-386-cgo), const TOSTOP ideal-int +pkg syscall (freebsd-386-cgo), const VDISCARD ideal-int +pkg syscall (freebsd-386-cgo), const VDSUSP ideal-int +pkg syscall (freebsd-386-cgo), const VEOF ideal-int +pkg syscall (freebsd-386-cgo), const VEOL ideal-int +pkg syscall (freebsd-386-cgo), const VEOL2 ideal-int +pkg syscall (freebsd-386-cgo), const VERASE ideal-int +pkg syscall (freebsd-386-cgo), const VERASE2 ideal-int +pkg syscall (freebsd-386-cgo), const VINTR ideal-int +pkg syscall (freebsd-386-cgo), const VKILL ideal-int +pkg syscall (freebsd-386-cgo), const VLNEXT ideal-int +pkg syscall (freebsd-386-cgo), const VMIN ideal-int +pkg syscall (freebsd-386-cgo), const VQUIT ideal-int +pkg syscall (freebsd-386-cgo), const VREPRINT ideal-int +pkg syscall (freebsd-386-cgo), const VSTART ideal-int +pkg syscall (freebsd-386-cgo), const VSTATUS ideal-int +pkg syscall (freebsd-386-cgo), const VSTOP ideal-int +pkg syscall (freebsd-386-cgo), const VSUSP ideal-int +pkg syscall (freebsd-386-cgo), const VTIME ideal-int +pkg syscall (freebsd-386-cgo), const VWERASE ideal-int +pkg syscall (freebsd-386-cgo), const WCONTINUED ideal-int +pkg syscall (freebsd-386-cgo), const WCOREFLAG ideal-int +pkg syscall (freebsd-386-cgo), const WLINUXCLONE ideal-int +pkg syscall (freebsd-386-cgo), const WNOHANG ideal-int +pkg syscall (freebsd-386-cgo), const WNOWAIT ideal-int +pkg syscall (freebsd-386-cgo), const WSTOPPED ideal-int +pkg syscall (freebsd-386-cgo), const WUNTRACED ideal-int +pkg syscall (freebsd-386-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-386-cgo), func Access(string, uint32) error +pkg syscall (freebsd-386-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-386-cgo), func Bind(int, Sockaddr) error +pkg syscall (freebsd-386-cgo), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-386-cgo), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-386-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-386-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-386-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-386-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-386-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-386-cgo), func CheckBpfVersion(int) error +pkg syscall (freebsd-386-cgo), func Chflags(string, int) error +pkg syscall (freebsd-386-cgo), func Chroot(string) error +pkg syscall (freebsd-386-cgo), func Close(int) error +pkg syscall (freebsd-386-cgo), func CloseOnExec(int) +pkg syscall (freebsd-386-cgo), func CmsgLen(int) int +pkg syscall (freebsd-386-cgo), func CmsgSpace(int) int +pkg syscall (freebsd-386-cgo), func Connect(int, Sockaddr) error +pkg syscall (freebsd-386-cgo), func Dup(int) (int, error) +pkg syscall (freebsd-386-cgo), func Dup2(int, int) error +pkg syscall (freebsd-386-cgo), func Fchdir(int) error +pkg syscall (freebsd-386-cgo), func Fchflags(int, int) error +pkg syscall (freebsd-386-cgo), func Fchmod(int, uint32) error +pkg syscall (freebsd-386-cgo), func Fchown(int, int, int) error +pkg syscall (freebsd-386-cgo), func Flock(int, int) error +pkg syscall (freebsd-386-cgo), func FlushBpf(int) error +pkg syscall (freebsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-386-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-386-cgo), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-386-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-386-cgo), func Fsync(int) error +pkg syscall (freebsd-386-cgo), func Ftruncate(int, int64) error +pkg syscall (freebsd-386-cgo), func Futimes(int, []Timeval) error +pkg syscall (freebsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-386-cgo), func Getdtablesize() int +pkg syscall (freebsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-386-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-386-cgo), func Getpgid(int) (int, error) +pkg syscall (freebsd-386-cgo), func Getpgrp() int +pkg syscall (freebsd-386-cgo), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-386-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-386-cgo), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-386-cgo), func Getsid(int) (int, error) +pkg syscall (freebsd-386-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-386-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-386-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-386-cgo), func Issetugid() bool +pkg syscall (freebsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-386-cgo), func Kill(int, Signal) error +pkg syscall (freebsd-386-cgo), func Kqueue() (int, error) +pkg syscall (freebsd-386-cgo), func Listen(int, int) error +pkg syscall (freebsd-386-cgo), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-386-cgo), func Mkfifo(string, uint32) error +pkg syscall (freebsd-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-386-cgo), func Munmap([]uint8) error +pkg syscall (freebsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-386-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-386-cgo), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-386-cgo), func Pipe([]int) error +pkg syscall (freebsd-386-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386-cgo), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-386-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-386-cgo), func Revoke(string) error +pkg syscall (freebsd-386-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-386-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-386-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-386-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-386-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-386-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-386-cgo), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-386-cgo), func SetBpfInterface(int, string) error +pkg syscall (freebsd-386-cgo), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-386-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-386-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-386-cgo), func SetNonblock(int, bool) error +pkg syscall (freebsd-386-cgo), func Setegid(int) error +pkg syscall (freebsd-386-cgo), func Seteuid(int) error +pkg syscall (freebsd-386-cgo), func Setgid(int) error +pkg syscall (freebsd-386-cgo), func Setgroups([]int) error +pkg syscall (freebsd-386-cgo), func Setlogin(string) error +pkg syscall (freebsd-386-cgo), func Setpgid(int, int) error +pkg syscall (freebsd-386-cgo), func Setpriority(int, int, int) error +pkg syscall (freebsd-386-cgo), func Setregid(int, int) error +pkg syscall (freebsd-386-cgo), func Setreuid(int, int) error +pkg syscall (freebsd-386-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-386-cgo), func Setsid() (int, error) +pkg syscall (freebsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-386-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-386-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-386-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-386-cgo), func Settimeofday(*Timeval) error +pkg syscall (freebsd-386-cgo), func Setuid(int) error +pkg syscall (freebsd-386-cgo), func Shutdown(int, int) error +pkg syscall (freebsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-386-cgo), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-386-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-386-cgo), func Stat(string, *Stat_t) error +pkg syscall (freebsd-386-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-386-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-386-cgo), func Sync() error +pkg syscall (freebsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386-cgo), func Sysctl(string) (string, error) +pkg syscall (freebsd-386-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-386-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-386-cgo), func Truncate(string, int64) error +pkg syscall (freebsd-386-cgo), func Umask(int) int +pkg syscall (freebsd-386-cgo), func Undelete(string) error +pkg syscall (freebsd-386-cgo), func UnixRights(...int) []uint8 +pkg syscall (freebsd-386-cgo), func Unmount(string, int) error +pkg syscall (freebsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-386-cgo), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-386-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-386-cgo), method (*Iovec) SetLen(int) +pkg syscall (freebsd-386-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-386-cgo), type BpfHdr struct +pkg syscall (freebsd-386-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-386-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-386-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386-cgo), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-386-cgo), type BpfInsn struct +pkg syscall (freebsd-386-cgo), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-386-cgo), type BpfInsn struct, K uint32 +pkg syscall (freebsd-386-cgo), type BpfProgram struct +pkg syscall (freebsd-386-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-386-cgo), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-386-cgo), type BpfStat struct +pkg syscall (freebsd-386-cgo), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-386-cgo), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-386-cgo), type BpfVersion struct +pkg syscall (freebsd-386-cgo), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-386-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-386-cgo), type BpfZbuf struct +pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Buflen uint32 +pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct +pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-386-cgo), type Cmsghdr struct +pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-386-cgo), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-386-cgo), type Credential struct +pkg syscall (freebsd-386-cgo), type Credential struct, Gid uint32 +pkg syscall (freebsd-386-cgo), type Credential struct, Groups []uint32 +pkg syscall (freebsd-386-cgo), type Credential struct, Uid uint32 +pkg syscall (freebsd-386-cgo), type Dirent struct +pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-386-cgo), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-386-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-386-cgo), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-386-cgo), type Dirent struct, Type uint8 +pkg syscall (freebsd-386-cgo), type FdSet struct +pkg syscall (freebsd-386-cgo), type FdSet struct, X__fds_bits [32]uint32 +pkg syscall (freebsd-386-cgo), type Flock_t struct +pkg syscall (freebsd-386-cgo), type Flock_t struct, Len int64 +pkg syscall (freebsd-386-cgo), type Flock_t struct, Pid int32 +pkg syscall (freebsd-386-cgo), type Flock_t struct, Start int64 +pkg syscall (freebsd-386-cgo), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-386-cgo), type Flock_t struct, Type int16 +pkg syscall (freebsd-386-cgo), type Flock_t struct, Whence int16 +pkg syscall (freebsd-386-cgo), type Fsid struct +pkg syscall (freebsd-386-cgo), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct +pkg syscall (freebsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-386-cgo), type IPMreqn struct +pkg syscall (freebsd-386-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-386-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-386-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct +pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-386-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-386-cgo), type IfData struct +pkg syscall (freebsd-386-cgo), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Baudrate uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Collisions uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Datalen uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Epoch int32 +pkg syscall (freebsd-386-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Hwassist uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Ibytes uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Ierrors uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Imcasts uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Ipackets uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Iqdrops uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-386-cgo), type IfData struct, Link_state uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Metric uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Mtu uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Noproto uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Obytes uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Oerrors uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Omcasts uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Opackets uint32 +pkg syscall (freebsd-386-cgo), type IfData struct, Physical uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-386-cgo), type IfData struct, Type uint8 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-386-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-386-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-386-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct +pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct +pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-386-cgo), type InterfaceMessage struct +pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-386-cgo), type Iovec struct +pkg syscall (freebsd-386-cgo), type Iovec struct, Base *uint8 +pkg syscall (freebsd-386-cgo), type Iovec struct, Len uint32 +pkg syscall (freebsd-386-cgo), type Kevent_t struct +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Data int32 +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (freebsd-386-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-386-cgo), type Msghdr struct +pkg syscall (freebsd-386-cgo), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-386-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-386-cgo), type Msghdr struct, Flags int32 +pkg syscall (freebsd-386-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-386-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-386-cgo), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-386-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct +pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-386-cgo), type Rlimit struct +pkg syscall (freebsd-386-cgo), type Rlimit struct, Cur int64 +pkg syscall (freebsd-386-cgo), type Rlimit struct, Max int64 +pkg syscall (freebsd-386-cgo), type RouteMessage struct +pkg syscall (freebsd-386-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-386-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-386-cgo), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-386-cgo), type RtMetrics struct +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Filler [3]uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Pksent uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (freebsd-386-cgo), type RtMetrics struct, Weight uint32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-386-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-386-cgo), type Rusage struct, Idrss int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Inblock int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Isrss int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Ixrss int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Majflt int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Maxrss int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Minflt int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Nsignals int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Nswap int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Oublock int32 +pkg syscall (freebsd-386-cgo), type Rusage struct, Stime Timeval +pkg syscall (freebsd-386-cgo), type Rusage struct, Utime Timeval +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-386-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-386-cgo), type SocketControlMessage struct +pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-386-cgo), type Stat_t struct +pkg syscall (freebsd-386-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-386-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-386-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-386-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-386-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Pad_cgo_0 [8]uint8 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Size int64 +pkg syscall (freebsd-386-cgo), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-386-cgo), type Statfs_t struct +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-386-cgo), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-386-cgo), type Timespec struct, Nsec int32 +pkg syscall (freebsd-386-cgo), type Timespec struct, Sec int32 +pkg syscall (freebsd-386-cgo), type Timeval struct, Sec int32 +pkg syscall (freebsd-386-cgo), type Timeval struct, Usec int32 +pkg syscall (freebsd-386-cgo), type WaitStatus uint32 +pkg syscall (freebsd-386-cgo), var Stderr int +pkg syscall (freebsd-386-cgo), var Stdin int +pkg syscall (freebsd-386-cgo), var Stdout int +pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-amd64), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-amd64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64), const ICMP6_FILTER = 18 +pkg syscall (freebsd-amd64), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-amd64), const PRIO_PGRP = 1 +pkg syscall (freebsd-amd64), const PRIO_PGRP ideal-int +pkg syscall (freebsd-amd64), const PRIO_PROCESS = 0 +pkg syscall (freebsd-amd64), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-amd64), const PRIO_USER = 2 +pkg syscall (freebsd-amd64), const PRIO_USER ideal-int +pkg syscall (freebsd-amd64), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-amd64), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-amd64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-amd64), type ICMPv6Filter struct +pkg syscall (freebsd-amd64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-amd64), type IPv6MTUInfo struct +pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-amd64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-amd64-cgo), const AF_APPLETALK ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ARP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ATM ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_CCITT ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_CHAOS ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_CNT ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_COIP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_DATAKIT ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_DECnet ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_DLI ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_E164 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ECMA ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_HYLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_IMPLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_IPX ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ISDN ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ISO ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_LAT ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_LOCAL ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_NATM ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_NETBIOS ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_OSI ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_PUP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_ROUTE ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_SIP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_SLOW ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_SNA ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-amd64-cgo), const B0 ideal-int +pkg syscall (freebsd-amd64-cgo), const B110 ideal-int +pkg syscall (freebsd-amd64-cgo), const B115200 ideal-int +pkg syscall (freebsd-amd64-cgo), const B1200 ideal-int +pkg syscall (freebsd-amd64-cgo), const B134 ideal-int +pkg syscall (freebsd-amd64-cgo), const B14400 ideal-int +pkg syscall (freebsd-amd64-cgo), const B150 ideal-int +pkg syscall (freebsd-amd64-cgo), const B1800 ideal-int +pkg syscall (freebsd-amd64-cgo), const B19200 ideal-int +pkg syscall (freebsd-amd64-cgo), const B200 ideal-int +pkg syscall (freebsd-amd64-cgo), const B230400 ideal-int +pkg syscall (freebsd-amd64-cgo), const B2400 ideal-int +pkg syscall (freebsd-amd64-cgo), const B28800 ideal-int +pkg syscall (freebsd-amd64-cgo), const B300 ideal-int +pkg syscall (freebsd-amd64-cgo), const B38400 ideal-int +pkg syscall (freebsd-amd64-cgo), const B460800 ideal-int +pkg syscall (freebsd-amd64-cgo), const B4800 ideal-int +pkg syscall (freebsd-amd64-cgo), const B50 ideal-int +pkg syscall (freebsd-amd64-cgo), const B57600 ideal-int +pkg syscall (freebsd-amd64-cgo), const B600 ideal-int +pkg syscall (freebsd-amd64-cgo), const B7200 ideal-int +pkg syscall (freebsd-amd64-cgo), const B75 ideal-int +pkg syscall (freebsd-amd64-cgo), const B76800 ideal-int +pkg syscall (freebsd-amd64-cgo), const B921600 ideal-int +pkg syscall (freebsd-amd64-cgo), const B9600 ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGBLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGDLT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGETIF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGRSIG ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGSTATS ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCPROMISC ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSBLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSDLT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETFNR ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETIF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETWF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSRSIG ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-amd64-cgo), const BIOCVERSION ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_A ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_ABS ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_ALU ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_AND ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_B ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_DIV ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_H ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_IMM ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_IND ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JA ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JEQ ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JGE ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JGT ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JMP ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_JSET ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_K ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_LD ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_LDX ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_LEN ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_LSH ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MEM ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MISC ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MSH ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_MUL ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_NEG ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_OR ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_RELEASE ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_RET ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_RSH ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_ST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_STX ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_SUB ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_TAX ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_TXA ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NONE ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_W ideal-int +pkg syscall (freebsd-amd64-cgo), const BPF_X ideal-int +pkg syscall (freebsd-amd64-cgo), const BRKINT ideal-int +pkg syscall (freebsd-amd64-cgo), const CFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const CLOCAL ideal-int +pkg syscall (freebsd-amd64-cgo), const CREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const CS5 ideal-int +pkg syscall (freebsd-amd64-cgo), const CS6 ideal-int +pkg syscall (freebsd-amd64-cgo), const CS7 ideal-int +pkg syscall (freebsd-amd64-cgo), const CS8 ideal-int +pkg syscall (freebsd-amd64-cgo), const CSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const CSTART ideal-int +pkg syscall (freebsd-amd64-cgo), const CSTATUS ideal-int +pkg syscall (freebsd-amd64-cgo), const CSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const CSTOPB ideal-int +pkg syscall (freebsd-amd64-cgo), const CSUSP ideal-int +pkg syscall (freebsd-amd64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-amd64-cgo), const CTL_NET ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_A429 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_AOS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_AURORA ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_AX25 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_CAN20B ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_CHAOS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_CHDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_DBUS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_DECT ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ECONET ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_EN10MB ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_EN3MB ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ENC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ERF ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FC_2 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FDDI ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GPF_F ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GPF_T ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_HHDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPMB ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPNET ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPOIB ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPV4 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IPV6 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LAPD ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LIN ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LOOP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_LTALK ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MFR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MOST ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MPLS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MTP2 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MTP3 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NFLOG ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NULL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PFLOG ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPI ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_PRONET ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_RAW ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_RIO ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SCCP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SITA ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SLIP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SUNATM ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_TZSP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USB ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER0 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER1 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER10 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER11 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER12 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER13 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER14 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER15 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER2 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER3 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER4 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER5 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER6 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER7 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER8 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_USER9 ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_WIHART ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_BLK ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_CHR ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_DIR ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_FIFO ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_LNK ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_REG ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_SOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const DT_WHT ideal-int +pkg syscall (freebsd-amd64-cgo), const EAUTH Errno +pkg syscall (freebsd-amd64-cgo), const EBADMSG Errno +pkg syscall (freebsd-amd64-cgo), const EBADRPC Errno +pkg syscall (freebsd-amd64-cgo), const ECAPMODE Errno +pkg syscall (freebsd-amd64-cgo), const ECHO ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHOCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHOE ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHOK ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHOKE ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHONL ideal-int +pkg syscall (freebsd-amd64-cgo), const ECHOPRT ideal-int +pkg syscall (freebsd-amd64-cgo), const EDOOFUS Errno +pkg syscall (freebsd-amd64-cgo), const EFTYPE Errno +pkg syscall (freebsd-amd64-cgo), const ELAST Errno +pkg syscall (freebsd-amd64-cgo), const EMULTIHOP Errno +pkg syscall (freebsd-amd64-cgo), const ENEEDAUTH Errno +pkg syscall (freebsd-amd64-cgo), const ENOATTR Errno +pkg syscall (freebsd-amd64-cgo), const ENOLINK Errno +pkg syscall (freebsd-amd64-cgo), const ENOTCAPABLE Errno +pkg syscall (freebsd-amd64-cgo), const EPROCLIM Errno +pkg syscall (freebsd-amd64-cgo), const EPROCUNAVAIL Errno +pkg syscall (freebsd-amd64-cgo), const EPROGMISMATCH Errno +pkg syscall (freebsd-amd64-cgo), const EPROGUNAVAIL Errno +pkg syscall (freebsd-amd64-cgo), const EPROTO Errno +pkg syscall (freebsd-amd64-cgo), const ERPCMISMATCH Errno +pkg syscall (freebsd-amd64-cgo), const EVFILT_AIO ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_FS ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_LIO ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_PROC ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_READ ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_USER ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-amd64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_CLEAR ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_DELETE ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_DISABLE ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_DISPATCH ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_ENABLE ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_EOF ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_ERROR ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_FLAG1 ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_ONESHOT ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_RECEIPT ideal-int +pkg syscall (freebsd-amd64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const EXTA ideal-int +pkg syscall (freebsd-amd64-cgo), const EXTB ideal-int +pkg syscall (freebsd-amd64-cgo), const EXTPROC ideal-int +pkg syscall (freebsd-amd64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const FD_SETSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const FLUSHO ideal-int +pkg syscall (freebsd-amd64-cgo), const F_CANCEL ideal-int +pkg syscall (freebsd-amd64-cgo), const F_DUP2FD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC = 18 +pkg syscall (freebsd-amd64-cgo), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const F_DUPFD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC = 17 +pkg syscall (freebsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const F_GETFD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_GETFL ideal-int +pkg syscall (freebsd-amd64-cgo), const F_GETLK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_GETOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const F_OGETLK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_OK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_OSETLK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_OSETLKW ideal-int +pkg syscall (freebsd-amd64-cgo), const F_RDAHEAD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_RDLCK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_READAHEAD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETFD ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETFL ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETLK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETLKW ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-amd64-cgo), const F_SETOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const F_UNLCK ideal-int +pkg syscall (freebsd-amd64-cgo), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-amd64-cgo), const F_WRLCK ideal-int +pkg syscall (freebsd-amd64-cgo), const HUPCL ideal-int +pkg syscall (freebsd-amd64-cgo), const ICANON ideal-int +pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER = 18 +pkg syscall (freebsd-amd64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const ICRNL ideal-int +pkg syscall (freebsd-amd64-cgo), const IEXTEN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_DEBUG ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_DYING ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_LINK0 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_LINK1 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_LINK2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_MONITOR ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_NOARP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_PROMISC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_RENAMING ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_RUNNING ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_SMART ideal-int +pkg syscall (freebsd-amd64-cgo), const IFF_STATICARP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFNAMSIZ ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_1822 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_AAL2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_AAL5 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ADSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ARAP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ARCNET ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ASYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_BSC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CARP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CEPT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CES ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_CNR ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_COFFEE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DCN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DLSW ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DS0 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DS3 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DTM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ENC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_EON ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_EPLRS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ESCON ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ETHER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FAITH ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FAST ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FDDI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRELAY ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_GIF ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HIPPI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HSSI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_HY ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IFGSN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IMT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_IPXIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISDN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISDNU ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ISUP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_LAPB ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_LAPD ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_LAPF ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_LOOP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MODEM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MPC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MPLS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MSDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MVL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_MYRINET ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_NFAS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_NSIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_OTHER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_P10 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_P80 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PARA ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PFLOG ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_POS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PPP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_PVC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_QLLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_RADSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_RS232 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_RSRB ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SHDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SLIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SONET ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SONETVT ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_STARLAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_STF ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_T1 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_TDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_TR008 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_ULTRA ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_USB ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_V11 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_V35 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_V36 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_V37 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VDSL ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X213 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X25 ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X25DDN ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X25MLP ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_X25PLE ideal-int +pkg syscall (freebsd-amd64-cgo), const IFT_XETHER ideal-int +pkg syscall (freebsd-amd64-cgo), const IGNBRK ideal-int +pkg syscall (freebsd-amd64-cgo), const IGNCR ideal-int +pkg syscall (freebsd-amd64-cgo), const IGNPAR ideal-int +pkg syscall (freebsd-amd64-cgo), const IMAXBEL ideal-int +pkg syscall (freebsd-amd64-cgo), const INLCR ideal-int +pkg syscall (freebsd-amd64-cgo), const INPCK ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-amd64-cgo), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AH ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_APES ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_EON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IL ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_INP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MH ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ND ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_ST ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FAITH ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MMTU ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION ideal-int +pkg syscall (freebsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_BINDANY ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FAITH ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW3 ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_DEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_GET ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_HDRINCL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MINTTL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MSFILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MSS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_OFFMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_OPTIONS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVIF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVTOS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RECVTTL ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RETOPTS ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-amd64-cgo), const ISIG ideal-int +pkg syscall (freebsd-amd64-cgo), const ISTRIP ideal-int +pkg syscall (freebsd-amd64-cgo), const IXANY ideal-int +pkg syscall (freebsd-amd64-cgo), const IXOFF ideal-int +pkg syscall (freebsd-amd64-cgo), const IXON ideal-int +pkg syscall (freebsd-amd64-cgo), const LOCK_EX ideal-int +pkg syscall (freebsd-amd64-cgo), const LOCK_NB ideal-int +pkg syscall (freebsd-amd64-cgo), const LOCK_SH ideal-int +pkg syscall (freebsd-amd64-cgo), const LOCK_UN ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_CORE ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_FREE ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_NOCORE ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_NORMAL ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_PROTECT ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_RANDOM ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-amd64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_ANON ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_COPY ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_FIXED ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_NOCORE ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_RENAME ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_SHARED ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_STACK ideal-int +pkg syscall (freebsd-amd64-cgo), const MCL_CURRENT ideal-int +pkg syscall (freebsd-amd64-cgo), const MCL_FUTURE ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_COMPAT ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_EOF ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_EOR ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_NBIO ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_OOB ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_PEEK ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_TRUNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_WAITALL ideal-int +pkg syscall (freebsd-amd64-cgo), const MS_ASYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-amd64-cgo), const MS_SYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-amd64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-amd64-cgo), const NOFLSH ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_CHILD ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_DELETE ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_EXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_EXIT ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFAND ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FFOR ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_FORK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_RENAME ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_TRACK ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-amd64-cgo), const NOTE_WRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const OCRNL ideal-int +pkg syscall (freebsd-amd64-cgo), const ONLCR ideal-int +pkg syscall (freebsd-amd64-cgo), const ONLRET ideal-int +pkg syscall (freebsd-amd64-cgo), const ONOCR ideal-int +pkg syscall (freebsd-amd64-cgo), const ONOEOT ideal-int +pkg syscall (freebsd-amd64-cgo), const OPOST ideal-int +pkg syscall (freebsd-amd64-cgo), const O_ACCMODE ideal-int +pkg syscall (freebsd-amd64-cgo), const O_DIRECT ideal-int +pkg syscall (freebsd-amd64-cgo), const O_DIRECTORY ideal-int +pkg syscall (freebsd-amd64-cgo), const O_EXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const O_EXLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const O_FSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const O_NDELAY ideal-int +pkg syscall (freebsd-amd64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-amd64-cgo), const O_SHLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const O_TTY_INIT ideal-int +pkg syscall (freebsd-amd64-cgo), const PARENB ideal-int +pkg syscall (freebsd-amd64-cgo), const PARMRK ideal-int +pkg syscall (freebsd-amd64-cgo), const PARODD ideal-int +pkg syscall (freebsd-amd64-cgo), const PENDIN ideal-int +pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP = 1 +pkg syscall (freebsd-amd64-cgo), const PRIO_PGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS = 0 +pkg syscall (freebsd-amd64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-amd64-cgo), const PRIO_USER = 2 +pkg syscall (freebsd-amd64-cgo), const PRIO_USER ideal-int +pkg syscall (freebsd-amd64-cgo), const PROT_EXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const PROT_NONE ideal-int +pkg syscall (freebsd-amd64-cgo), const PROT_READ ideal-int +pkg syscall (freebsd-amd64-cgo), const PROT_WRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const PTRACE_CONT ideal-int +pkg syscall (freebsd-amd64-cgo), const PTRACE_KILL ideal-int +pkg syscall (freebsd-amd64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_AS ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-amd64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_BRD ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_DST ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_IFA ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_IFP ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_BRD ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_DST ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_GENMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_IFA ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_IFP ideal-int +pkg syscall (freebsd-amd64-cgo), const RTA_NETMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_DONE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_FMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_HOST ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_LLDATA ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_LLINFO ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_LOCAL ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_PINNED ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_REJECT ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_STATIC ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_STICKY ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_UP ideal-int +pkg syscall (freebsd-amd64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_ADD ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_CHANGE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_DELADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_DELETE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_GET ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_IFINFO ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_LOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_LOSING ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_MISS ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_OLDADD ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-amd64-cgo), const RTM_VERSION ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_MTU ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_RPIPE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_RTT ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_SPIPE ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-amd64-cgo), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-amd64-cgo), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-amd64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-amd64-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SCM_BINTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SCM_CREDS ideal-int +pkg syscall (freebsd-amd64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-amd64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIGCHLD Signal +pkg syscall (freebsd-amd64-cgo), const SIGCONT Signal +pkg syscall (freebsd-amd64-cgo), const SIGEMT Signal +pkg syscall (freebsd-amd64-cgo), const SIGINFO Signal +pkg syscall (freebsd-amd64-cgo), const SIGIO Signal +pkg syscall (freebsd-amd64-cgo), const SIGIOT Signal +pkg syscall (freebsd-amd64-cgo), const SIGLWP Signal +pkg syscall (freebsd-amd64-cgo), const SIGPROF Signal +pkg syscall (freebsd-amd64-cgo), const SIGSTOP Signal +pkg syscall (freebsd-amd64-cgo), const SIGSYS Signal +pkg syscall (freebsd-amd64-cgo), const SIGTHR Signal +pkg syscall (freebsd-amd64-cgo), const SIGTSTP Signal +pkg syscall (freebsd-amd64-cgo), const SIGTTIN Signal +pkg syscall (freebsd-amd64-cgo), const SIGTTOU Signal +pkg syscall (freebsd-amd64-cgo), const SIGURG Signal +pkg syscall (freebsd-amd64-cgo), const SIGUSR1 Signal +pkg syscall (freebsd-amd64-cgo), const SIGUSR2 Signal +pkg syscall (freebsd-amd64-cgo), const SIGVTALRM Signal +pkg syscall (freebsd-amd64-cgo), const SIGWINCH Signal +pkg syscall (freebsd-amd64-cgo), const SIGXCPU Signal +pkg syscall (freebsd-amd64-cgo), const SIGXFSZ Signal +pkg syscall (freebsd-amd64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCADDRT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCATMARK ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDELRT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGPGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SIOCSPGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SOCK_RDM ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_BINTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_DEBUG ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_ERROR ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_LABEL ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_NO_DDP ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_SETFIB ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_TYPE ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ACCESS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ACCT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_AUDIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_AUDITON ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_BIND ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHDIR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHMOD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHROOT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOSE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CONNECT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_DUP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_DUP2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EACCESS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXECVE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FCNTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FORK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETAUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETEGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETEUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETFH ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPPID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETSID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_GETUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_IOCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KENV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KEVENT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KILL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_KTRACE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LGETFH ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LINKAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LISTEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LSEEK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MADVISE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MINCORE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKDIR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKNOD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MMAP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MODFIND ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MOUNT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MSYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_OBREAK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_OPEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_OPENAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PDFORK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PDKILL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PIPE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_POLL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PREADV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PROFIL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PSELECT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PTRACE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PWRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_READ ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_READLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_READV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_REBOOT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RENAME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_REVOKE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RFORK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RMDIR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SBRK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SELECT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SENDTO ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETAUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETEGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETEUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETFIB ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETPGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETREGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETREUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETSID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SETUID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SOCKET ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SSTK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_STATFS ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SWAPON ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SYNC ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UMASK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UNLINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UTIMES ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UTRACE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_VFORK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_WRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_WRITEV ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_YIELD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___GETCWD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___SETUGID ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfStat ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-amd64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIPMreq ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIfData ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofLinger ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-amd64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-amd64-cgo), const TCIFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TCIOFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TCOFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_INFO ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MINMSS ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_MSS ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_NOOPT ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TCSAFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCCBRK ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCCDTR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCCONS ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCDRAIN ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCEXCL ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCFLUSH ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGETA ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGETD ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGPGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGPTN ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGSID ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMBIC ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMBIS ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMGET ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCMSET ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_CAR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_CD ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_CTS ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_DCD ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_DSR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_DTR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_LE ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_RI ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_RNG ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_RTS ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_SR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCM_ST ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCNOTTY ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCNXCL ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCOUTQ ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_START ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSBRK ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSCTTY ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSDTR ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSETA ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSETAF ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSETAW ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSETD ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSIG ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSPGRP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSTART ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSTI ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-amd64-cgo), const TIOCUCNTL ideal-int +pkg syscall (freebsd-amd64-cgo), const TOSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const VDISCARD ideal-int +pkg syscall (freebsd-amd64-cgo), const VDSUSP ideal-int +pkg syscall (freebsd-amd64-cgo), const VEOF ideal-int +pkg syscall (freebsd-amd64-cgo), const VEOL ideal-int +pkg syscall (freebsd-amd64-cgo), const VEOL2 ideal-int +pkg syscall (freebsd-amd64-cgo), const VERASE ideal-int +pkg syscall (freebsd-amd64-cgo), const VERASE2 ideal-int +pkg syscall (freebsd-amd64-cgo), const VINTR ideal-int +pkg syscall (freebsd-amd64-cgo), const VKILL ideal-int +pkg syscall (freebsd-amd64-cgo), const VLNEXT ideal-int +pkg syscall (freebsd-amd64-cgo), const VMIN ideal-int +pkg syscall (freebsd-amd64-cgo), const VQUIT ideal-int +pkg syscall (freebsd-amd64-cgo), const VREPRINT ideal-int +pkg syscall (freebsd-amd64-cgo), const VSTART ideal-int +pkg syscall (freebsd-amd64-cgo), const VSTATUS ideal-int +pkg syscall (freebsd-amd64-cgo), const VSTOP ideal-int +pkg syscall (freebsd-amd64-cgo), const VSUSP ideal-int +pkg syscall (freebsd-amd64-cgo), const VTIME ideal-int +pkg syscall (freebsd-amd64-cgo), const VWERASE ideal-int +pkg syscall (freebsd-amd64-cgo), const WCONTINUED ideal-int +pkg syscall (freebsd-amd64-cgo), const WCOREFLAG ideal-int +pkg syscall (freebsd-amd64-cgo), const WLINUXCLONE ideal-int +pkg syscall (freebsd-amd64-cgo), const WNOHANG ideal-int +pkg syscall (freebsd-amd64-cgo), const WNOWAIT ideal-int +pkg syscall (freebsd-amd64-cgo), const WSTOPPED ideal-int +pkg syscall (freebsd-amd64-cgo), const WUNTRACED ideal-int +pkg syscall (freebsd-amd64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func Access(string, uint32) error +pkg syscall (freebsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-amd64-cgo), func Bind(int, Sockaddr) error +pkg syscall (freebsd-amd64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-amd64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-amd64-cgo), func CheckBpfVersion(int) error +pkg syscall (freebsd-amd64-cgo), func Chflags(string, int) error +pkg syscall (freebsd-amd64-cgo), func Chroot(string) error +pkg syscall (freebsd-amd64-cgo), func Close(int) error +pkg syscall (freebsd-amd64-cgo), func CloseOnExec(int) +pkg syscall (freebsd-amd64-cgo), func CmsgLen(int) int +pkg syscall (freebsd-amd64-cgo), func CmsgSpace(int) int +pkg syscall (freebsd-amd64-cgo), func Connect(int, Sockaddr) error +pkg syscall (freebsd-amd64-cgo), func Dup(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Dup2(int, int) error +pkg syscall (freebsd-amd64-cgo), func Fchdir(int) error +pkg syscall (freebsd-amd64-cgo), func Fchflags(int, int) error +pkg syscall (freebsd-amd64-cgo), func Fchmod(int, uint32) error +pkg syscall (freebsd-amd64-cgo), func Fchown(int, int, int) error +pkg syscall (freebsd-amd64-cgo), func Flock(int, int) error +pkg syscall (freebsd-amd64-cgo), func FlushBpf(int) error +pkg syscall (freebsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-amd64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-amd64-cgo), func Fsync(int) error +pkg syscall (freebsd-amd64-cgo), func Ftruncate(int, int64) error +pkg syscall (freebsd-amd64-cgo), func Futimes(int, []Timeval) error +pkg syscall (freebsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-amd64-cgo), func Getdtablesize() int +pkg syscall (freebsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func Getpgid(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Getpgrp() int +pkg syscall (freebsd-amd64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-amd64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-amd64-cgo), func Getsid(int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Issetugid() bool +pkg syscall (freebsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-amd64-cgo), func Kill(int, Signal) error +pkg syscall (freebsd-amd64-cgo), func Kqueue() (int, error) +pkg syscall (freebsd-amd64-cgo), func Listen(int, int) error +pkg syscall (freebsd-amd64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-amd64-cgo), func Mkfifo(string, uint32) error +pkg syscall (freebsd-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-amd64-cgo), func Munmap([]uint8) error +pkg syscall (freebsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-amd64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-amd64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Pipe([]int) error +pkg syscall (freebsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func Revoke(string) error +pkg syscall (freebsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-amd64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-amd64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-amd64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-amd64-cgo), func SetBpfInterface(int, string) error +pkg syscall (freebsd-amd64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-amd64-cgo), func SetNonblock(int, bool) error +pkg syscall (freebsd-amd64-cgo), func Setegid(int) error +pkg syscall (freebsd-amd64-cgo), func Seteuid(int) error +pkg syscall (freebsd-amd64-cgo), func Setgid(int) error +pkg syscall (freebsd-amd64-cgo), func Setgroups([]int) error +pkg syscall (freebsd-amd64-cgo), func Setlogin(string) error +pkg syscall (freebsd-amd64-cgo), func Setpgid(int, int) error +pkg syscall (freebsd-amd64-cgo), func Setpriority(int, int, int) error +pkg syscall (freebsd-amd64-cgo), func Setregid(int, int) error +pkg syscall (freebsd-amd64-cgo), func Setreuid(int, int) error +pkg syscall (freebsd-amd64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-amd64-cgo), func Setsid() (int, error) +pkg syscall (freebsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-amd64-cgo), func Settimeofday(*Timeval) error +pkg syscall (freebsd-amd64-cgo), func Setuid(int) error +pkg syscall (freebsd-amd64-cgo), func Shutdown(int, int) error +pkg syscall (freebsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-amd64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-amd64-cgo), func Stat(string, *Stat_t) error +pkg syscall (freebsd-amd64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-amd64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-amd64-cgo), func Sync() error +pkg syscall (freebsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64-cgo), func Sysctl(string) (string, error) +pkg syscall (freebsd-amd64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-amd64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-amd64-cgo), func Truncate(string, int64) error +pkg syscall (freebsd-amd64-cgo), func Umask(int) int +pkg syscall (freebsd-amd64-cgo), func Undelete(string) error +pkg syscall (freebsd-amd64-cgo), func UnixRights(...int) []uint8 +pkg syscall (freebsd-amd64-cgo), func Unmount(string, int) error +pkg syscall (freebsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-amd64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-amd64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-amd64-cgo), method (*Iovec) SetLen(int) +pkg syscall (freebsd-amd64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-amd64-cgo), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-amd64-cgo), type BpfInsn struct +pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-amd64-cgo), type BpfInsn struct, K uint32 +pkg syscall (freebsd-amd64-cgo), type BpfProgram struct +pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64-cgo), type BpfStat struct +pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-amd64-cgo), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-amd64-cgo), type BpfVersion struct +pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-amd64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct +pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-amd64-cgo), type BpfZbuf struct, Buflen uint64 +pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct +pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-amd64-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct +pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-amd64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-amd64-cgo), type Credential struct +pkg syscall (freebsd-amd64-cgo), type Credential struct, Gid uint32 +pkg syscall (freebsd-amd64-cgo), type Credential struct, Groups []uint32 +pkg syscall (freebsd-amd64-cgo), type Credential struct, Uid uint32 +pkg syscall (freebsd-amd64-cgo), type Dirent struct +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-amd64-cgo), type Dirent struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type FdSet struct +pkg syscall (freebsd-amd64-cgo), type FdSet struct, X__fds_bits [16]uint64 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Len int64 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Pid int32 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Start int64 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Type int16 +pkg syscall (freebsd-amd64-cgo), type Flock_t struct, Whence int16 +pkg syscall (freebsd-amd64-cgo), type Fsid struct +pkg syscall (freebsd-amd64-cgo), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct +pkg syscall (freebsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-amd64-cgo), type IPMreqn struct +pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-amd64-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct +pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-amd64-cgo), type IfData struct +pkg syscall (freebsd-amd64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Baudrate uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Collisions uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Datalen uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Epoch int64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Hwassist uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Ibytes uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Ierrors uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Imcasts uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Ipackets uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-amd64-cgo), type IfData struct, Link_state uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Metric uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Mtu uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Noproto uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Obytes uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Oerrors uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Omcasts uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Opackets uint64 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Physical uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-amd64-cgo), type IfData struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct +pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct +pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct +pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-amd64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-amd64-cgo), type Iovec struct +pkg syscall (freebsd-amd64-cgo), type Iovec struct, Base *uint8 +pkg syscall (freebsd-amd64-cgo), type Iovec struct, Len uint64 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Data int64 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (freebsd-amd64-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Flags int32 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct +pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-amd64-cgo), type Rlimit struct +pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Cur int64 +pkg syscall (freebsd-amd64-cgo), type Rlimit struct, Max int64 +pkg syscall (freebsd-amd64-cgo), type RouteMessage struct +pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-amd64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Expire uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Filler [3]uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Pksent uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (freebsd-amd64-cgo), type RtMetrics struct, Weight uint64 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Inits uint64 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Idrss int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Inblock int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Isrss int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Majflt int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Minflt int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nswap int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Oublock int64 +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Stime Timeval +pkg syscall (freebsd-amd64-cgo), type Rusage struct, Utime Timeval +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-amd64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct +pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-amd64-cgo), type Stat_t struct +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Size int64 +pkg syscall (freebsd-amd64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-amd64-cgo), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-amd64-cgo), type Timespec struct, Nsec int64 +pkg syscall (freebsd-amd64-cgo), type Timespec struct, Sec int64 +pkg syscall (freebsd-amd64-cgo), type Timeval struct, Sec int64 +pkg syscall (freebsd-amd64-cgo), type Timeval struct, Usec int64 +pkg syscall (freebsd-amd64-cgo), type WaitStatus uint32 +pkg syscall (freebsd-amd64-cgo), var Stderr int +pkg syscall (freebsd-amd64-cgo), var Stdin int +pkg syscall (freebsd-amd64-cgo), var Stdout int +pkg syscall (freebsd-arm), const AF_APPLETALK ideal-int +pkg syscall (freebsd-arm), const AF_ARP ideal-int +pkg syscall (freebsd-arm), const AF_ATM ideal-int +pkg syscall (freebsd-arm), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-arm), const AF_CCITT ideal-int +pkg syscall (freebsd-arm), const AF_CHAOS ideal-int +pkg syscall (freebsd-arm), const AF_CNT ideal-int +pkg syscall (freebsd-arm), const AF_COIP ideal-int +pkg syscall (freebsd-arm), const AF_DATAKIT ideal-int +pkg syscall (freebsd-arm), const AF_DECnet ideal-int +pkg syscall (freebsd-arm), const AF_DLI ideal-int +pkg syscall (freebsd-arm), const AF_E164 ideal-int +pkg syscall (freebsd-arm), const AF_ECMA ideal-int +pkg syscall (freebsd-arm), const AF_HYLINK ideal-int +pkg syscall (freebsd-arm), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-arm), const AF_IMPLINK ideal-int +pkg syscall (freebsd-arm), const AF_IPX ideal-int +pkg syscall (freebsd-arm), const AF_ISDN ideal-int +pkg syscall (freebsd-arm), const AF_ISO ideal-int +pkg syscall (freebsd-arm), const AF_LAT ideal-int +pkg syscall (freebsd-arm), const AF_LINK ideal-int +pkg syscall (freebsd-arm), const AF_LOCAL ideal-int +pkg syscall (freebsd-arm), const AF_MAX ideal-int +pkg syscall (freebsd-arm), const AF_NATM ideal-int +pkg syscall (freebsd-arm), const AF_NETBIOS ideal-int +pkg syscall (freebsd-arm), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-arm), const AF_OSI ideal-int +pkg syscall (freebsd-arm), const AF_PUP ideal-int +pkg syscall (freebsd-arm), const AF_ROUTE ideal-int +pkg syscall (freebsd-arm), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-arm), const AF_SIP ideal-int +pkg syscall (freebsd-arm), const AF_SLOW ideal-int +pkg syscall (freebsd-arm), const AF_SNA ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-arm), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-arm), const B0 ideal-int +pkg syscall (freebsd-arm), const B110 ideal-int +pkg syscall (freebsd-arm), const B115200 ideal-int +pkg syscall (freebsd-arm), const B1200 ideal-int +pkg syscall (freebsd-arm), const B134 ideal-int +pkg syscall (freebsd-arm), const B14400 ideal-int +pkg syscall (freebsd-arm), const B150 ideal-int +pkg syscall (freebsd-arm), const B1800 ideal-int +pkg syscall (freebsd-arm), const B19200 ideal-int +pkg syscall (freebsd-arm), const B200 ideal-int +pkg syscall (freebsd-arm), const B230400 ideal-int +pkg syscall (freebsd-arm), const B2400 ideal-int +pkg syscall (freebsd-arm), const B28800 ideal-int +pkg syscall (freebsd-arm), const B300 ideal-int +pkg syscall (freebsd-arm), const B38400 ideal-int +pkg syscall (freebsd-arm), const B460800 ideal-int +pkg syscall (freebsd-arm), const B4800 ideal-int +pkg syscall (freebsd-arm), const B50 ideal-int +pkg syscall (freebsd-arm), const B57600 ideal-int +pkg syscall (freebsd-arm), const B600 ideal-int +pkg syscall (freebsd-arm), const B7200 ideal-int +pkg syscall (freebsd-arm), const B75 ideal-int +pkg syscall (freebsd-arm), const B76800 ideal-int +pkg syscall (freebsd-arm), const B921600 ideal-int +pkg syscall (freebsd-arm), const B9600 ideal-int +pkg syscall (freebsd-arm), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-arm), const BIOCFLUSH ideal-int +pkg syscall (freebsd-arm), const BIOCGBLEN ideal-int +pkg syscall (freebsd-arm), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-arm), const BIOCGDLT ideal-int +pkg syscall (freebsd-arm), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-arm), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-arm), const BIOCGETIF ideal-int +pkg syscall (freebsd-arm), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-arm), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-arm), const BIOCGRSIG ideal-int +pkg syscall (freebsd-arm), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-arm), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-arm), const BIOCGSTATS ideal-int +pkg syscall (freebsd-arm), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-arm), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-arm), const BIOCLOCK ideal-int +pkg syscall (freebsd-arm), const BIOCPROMISC ideal-int +pkg syscall (freebsd-arm), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-arm), const BIOCSBLEN ideal-int +pkg syscall (freebsd-arm), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-arm), const BIOCSDLT ideal-int +pkg syscall (freebsd-arm), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-arm), const BIOCSETF ideal-int +pkg syscall (freebsd-arm), const BIOCSETFNR ideal-int +pkg syscall (freebsd-arm), const BIOCSETIF ideal-int +pkg syscall (freebsd-arm), const BIOCSETWF ideal-int +pkg syscall (freebsd-arm), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-arm), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-arm), const BIOCSRSIG ideal-int +pkg syscall (freebsd-arm), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-arm), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-arm), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-arm), const BIOCVERSION ideal-int +pkg syscall (freebsd-arm), const BPF_A ideal-int +pkg syscall (freebsd-arm), const BPF_ABS ideal-int +pkg syscall (freebsd-arm), const BPF_ADD ideal-int +pkg syscall (freebsd-arm), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-arm), const BPF_ALU ideal-int +pkg syscall (freebsd-arm), const BPF_AND ideal-int +pkg syscall (freebsd-arm), const BPF_B ideal-int +pkg syscall (freebsd-arm), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-arm), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-arm), const BPF_DIV ideal-int +pkg syscall (freebsd-arm), const BPF_H ideal-int +pkg syscall (freebsd-arm), const BPF_IMM ideal-int +pkg syscall (freebsd-arm), const BPF_IND ideal-int +pkg syscall (freebsd-arm), const BPF_JA ideal-int +pkg syscall (freebsd-arm), const BPF_JEQ ideal-int +pkg syscall (freebsd-arm), const BPF_JGE ideal-int +pkg syscall (freebsd-arm), const BPF_JGT ideal-int +pkg syscall (freebsd-arm), const BPF_JMP ideal-int +pkg syscall (freebsd-arm), const BPF_JSET ideal-int +pkg syscall (freebsd-arm), const BPF_K ideal-int +pkg syscall (freebsd-arm), const BPF_LD ideal-int +pkg syscall (freebsd-arm), const BPF_LDX ideal-int +pkg syscall (freebsd-arm), const BPF_LEN ideal-int +pkg syscall (freebsd-arm), const BPF_LSH ideal-int +pkg syscall (freebsd-arm), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-arm), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-arm), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-arm), const BPF_MEM ideal-int +pkg syscall (freebsd-arm), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-arm), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-arm), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-arm), const BPF_MISC ideal-int +pkg syscall (freebsd-arm), const BPF_MSH ideal-int +pkg syscall (freebsd-arm), const BPF_MUL ideal-int +pkg syscall (freebsd-arm), const BPF_NEG ideal-int +pkg syscall (freebsd-arm), const BPF_OR ideal-int +pkg syscall (freebsd-arm), const BPF_RELEASE ideal-int +pkg syscall (freebsd-arm), const BPF_RET ideal-int +pkg syscall (freebsd-arm), const BPF_RSH ideal-int +pkg syscall (freebsd-arm), const BPF_ST ideal-int +pkg syscall (freebsd-arm), const BPF_STX ideal-int +pkg syscall (freebsd-arm), const BPF_SUB ideal-int +pkg syscall (freebsd-arm), const BPF_TAX ideal-int +pkg syscall (freebsd-arm), const BPF_TXA ideal-int +pkg syscall (freebsd-arm), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-arm), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-arm), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-arm), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-arm), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm), const BPF_T_NONE ideal-int +pkg syscall (freebsd-arm), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-arm), const BPF_W ideal-int +pkg syscall (freebsd-arm), const BPF_X ideal-int +pkg syscall (freebsd-arm), const BRKINT ideal-int +pkg syscall (freebsd-arm), const CFLUSH ideal-int +pkg syscall (freebsd-arm), const CLOCAL ideal-int +pkg syscall (freebsd-arm), const CREAD ideal-int +pkg syscall (freebsd-arm), const CS5 ideal-int +pkg syscall (freebsd-arm), const CS6 ideal-int +pkg syscall (freebsd-arm), const CS7 ideal-int +pkg syscall (freebsd-arm), const CS8 ideal-int +pkg syscall (freebsd-arm), const CSIZE ideal-int +pkg syscall (freebsd-arm), const CSTART ideal-int +pkg syscall (freebsd-arm), const CSTATUS ideal-int +pkg syscall (freebsd-arm), const CSTOP ideal-int +pkg syscall (freebsd-arm), const CSTOPB ideal-int +pkg syscall (freebsd-arm), const CSUSP ideal-int +pkg syscall (freebsd-arm), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-arm), const CTL_NET ideal-int +pkg syscall (freebsd-arm), const DLT_A429 ideal-int +pkg syscall (freebsd-arm), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-arm), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-arm), const DLT_AOS ideal-int +pkg syscall (freebsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-arm), const DLT_ARCNET ideal-int +pkg syscall (freebsd-arm), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-arm), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-arm), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-arm), const DLT_AURORA ideal-int +pkg syscall (freebsd-arm), const DLT_AX25 ideal-int +pkg syscall (freebsd-arm), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-arm), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-arm), const DLT_CAN20B ideal-int +pkg syscall (freebsd-arm), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-arm), const DLT_CHAOS ideal-int +pkg syscall (freebsd-arm), const DLT_CHDLC ideal-int +pkg syscall (freebsd-arm), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-arm), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-arm), const DLT_DBUS ideal-int +pkg syscall (freebsd-arm), const DLT_DECT ideal-int +pkg syscall (freebsd-arm), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-arm), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-arm), const DLT_ECONET ideal-int +pkg syscall (freebsd-arm), const DLT_EN10MB ideal-int +pkg syscall (freebsd-arm), const DLT_EN3MB ideal-int +pkg syscall (freebsd-arm), const DLT_ENC ideal-int +pkg syscall (freebsd-arm), const DLT_ERF ideal-int +pkg syscall (freebsd-arm), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-arm), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-arm), const DLT_FC_2 ideal-int +pkg syscall (freebsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-arm), const DLT_FDDI ideal-int +pkg syscall (freebsd-arm), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-arm), const DLT_FRELAY ideal-int +pkg syscall (freebsd-arm), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-arm), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-arm), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-arm), const DLT_GPF_F ideal-int +pkg syscall (freebsd-arm), const DLT_GPF_T ideal-int +pkg syscall (freebsd-arm), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-arm), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-arm), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-arm), const DLT_HHDLC ideal-int +pkg syscall (freebsd-arm), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-arm), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-arm), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-arm), const DLT_IPMB ideal-int +pkg syscall (freebsd-arm), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-arm), const DLT_IPNET ideal-int +pkg syscall (freebsd-arm), const DLT_IPOIB ideal-int +pkg syscall (freebsd-arm), const DLT_IPV4 ideal-int +pkg syscall (freebsd-arm), const DLT_IPV6 ideal-int +pkg syscall (freebsd-arm), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-arm), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-arm), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-arm), const DLT_LAPD ideal-int +pkg syscall (freebsd-arm), const DLT_LIN ideal-int +pkg syscall (freebsd-arm), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-arm), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-arm), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-arm), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-arm), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-arm), const DLT_LOOP ideal-int +pkg syscall (freebsd-arm), const DLT_LTALK ideal-int +pkg syscall (freebsd-arm), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-arm), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-arm), const DLT_MFR ideal-int +pkg syscall (freebsd-arm), const DLT_MOST ideal-int +pkg syscall (freebsd-arm), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-arm), const DLT_MPLS ideal-int +pkg syscall (freebsd-arm), const DLT_MTP2 ideal-int +pkg syscall (freebsd-arm), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-arm), const DLT_MTP3 ideal-int +pkg syscall (freebsd-arm), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-arm), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-arm), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-arm), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-arm), const DLT_NFLOG ideal-int +pkg syscall (freebsd-arm), const DLT_NG40 ideal-int +pkg syscall (freebsd-arm), const DLT_NULL ideal-int +pkg syscall (freebsd-arm), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-arm), const DLT_PFLOG ideal-int +pkg syscall (freebsd-arm), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-arm), const DLT_PPI ideal-int +pkg syscall (freebsd-arm), const DLT_PPP ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-arm), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-arm), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-arm), const DLT_PRONET ideal-int +pkg syscall (freebsd-arm), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-arm), const DLT_RAW ideal-int +pkg syscall (freebsd-arm), const DLT_RIO ideal-int +pkg syscall (freebsd-arm), const DLT_SCCP ideal-int +pkg syscall (freebsd-arm), const DLT_SITA ideal-int +pkg syscall (freebsd-arm), const DLT_SLIP ideal-int +pkg syscall (freebsd-arm), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-arm), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-arm), const DLT_SUNATM ideal-int +pkg syscall (freebsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-arm), const DLT_TZSP ideal-int +pkg syscall (freebsd-arm), const DLT_USB ideal-int +pkg syscall (freebsd-arm), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-arm), const DLT_USER0 ideal-int +pkg syscall (freebsd-arm), const DLT_USER1 ideal-int +pkg syscall (freebsd-arm), const DLT_USER10 ideal-int +pkg syscall (freebsd-arm), const DLT_USER11 ideal-int +pkg syscall (freebsd-arm), const DLT_USER12 ideal-int +pkg syscall (freebsd-arm), const DLT_USER13 ideal-int +pkg syscall (freebsd-arm), const DLT_USER14 ideal-int +pkg syscall (freebsd-arm), const DLT_USER15 ideal-int +pkg syscall (freebsd-arm), const DLT_USER2 ideal-int +pkg syscall (freebsd-arm), const DLT_USER3 ideal-int +pkg syscall (freebsd-arm), const DLT_USER4 ideal-int +pkg syscall (freebsd-arm), const DLT_USER5 ideal-int +pkg syscall (freebsd-arm), const DLT_USER6 ideal-int +pkg syscall (freebsd-arm), const DLT_USER7 ideal-int +pkg syscall (freebsd-arm), const DLT_USER8 ideal-int +pkg syscall (freebsd-arm), const DLT_USER9 ideal-int +pkg syscall (freebsd-arm), const DLT_WIHART ideal-int +pkg syscall (freebsd-arm), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-arm), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-arm), const DT_BLK ideal-int +pkg syscall (freebsd-arm), const DT_CHR ideal-int +pkg syscall (freebsd-arm), const DT_DIR ideal-int +pkg syscall (freebsd-arm), const DT_FIFO ideal-int +pkg syscall (freebsd-arm), const DT_LNK ideal-int +pkg syscall (freebsd-arm), const DT_REG ideal-int +pkg syscall (freebsd-arm), const DT_SOCK ideal-int +pkg syscall (freebsd-arm), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-arm), const DT_WHT ideal-int +pkg syscall (freebsd-arm), const EAUTH Errno +pkg syscall (freebsd-arm), const EBADMSG Errno +pkg syscall (freebsd-arm), const EBADRPC Errno +pkg syscall (freebsd-arm), const ECAPMODE Errno +pkg syscall (freebsd-arm), const ECHO ideal-int +pkg syscall (freebsd-arm), const ECHOCTL ideal-int +pkg syscall (freebsd-arm), const ECHOE ideal-int +pkg syscall (freebsd-arm), const ECHOK ideal-int +pkg syscall (freebsd-arm), const ECHOKE ideal-int +pkg syscall (freebsd-arm), const ECHONL ideal-int +pkg syscall (freebsd-arm), const ECHOPRT ideal-int +pkg syscall (freebsd-arm), const EDOOFUS Errno +pkg syscall (freebsd-arm), const EFTYPE Errno +pkg syscall (freebsd-arm), const ELAST Errno +pkg syscall (freebsd-arm), const EMULTIHOP Errno +pkg syscall (freebsd-arm), const ENEEDAUTH Errno +pkg syscall (freebsd-arm), const ENOATTR Errno +pkg syscall (freebsd-arm), const ENOLINK Errno +pkg syscall (freebsd-arm), const ENOTCAPABLE Errno +pkg syscall (freebsd-arm), const EPROCLIM Errno +pkg syscall (freebsd-arm), const EPROCUNAVAIL Errno +pkg syscall (freebsd-arm), const EPROGMISMATCH Errno +pkg syscall (freebsd-arm), const EPROGUNAVAIL Errno +pkg syscall (freebsd-arm), const EPROTO Errno +pkg syscall (freebsd-arm), const ERPCMISMATCH Errno +pkg syscall (freebsd-arm), const EVFILT_AIO ideal-int +pkg syscall (freebsd-arm), const EVFILT_FS ideal-int +pkg syscall (freebsd-arm), const EVFILT_LIO ideal-int +pkg syscall (freebsd-arm), const EVFILT_PROC ideal-int +pkg syscall (freebsd-arm), const EVFILT_READ ideal-int +pkg syscall (freebsd-arm), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-arm), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-arm), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-arm), const EVFILT_USER ideal-int +pkg syscall (freebsd-arm), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-arm), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-arm), const EV_ADD ideal-int +pkg syscall (freebsd-arm), const EV_CLEAR ideal-int +pkg syscall (freebsd-arm), const EV_DELETE ideal-int +pkg syscall (freebsd-arm), const EV_DISABLE ideal-int +pkg syscall (freebsd-arm), const EV_DISPATCH ideal-int +pkg syscall (freebsd-arm), const EV_ENABLE ideal-int +pkg syscall (freebsd-arm), const EV_EOF ideal-int +pkg syscall (freebsd-arm), const EV_ERROR ideal-int +pkg syscall (freebsd-arm), const EV_FLAG1 ideal-int +pkg syscall (freebsd-arm), const EV_ONESHOT ideal-int +pkg syscall (freebsd-arm), const EV_RECEIPT ideal-int +pkg syscall (freebsd-arm), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-arm), const EXTA ideal-int +pkg syscall (freebsd-arm), const EXTB ideal-int +pkg syscall (freebsd-arm), const EXTPROC ideal-int +pkg syscall (freebsd-arm), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm), const FD_SETSIZE ideal-int +pkg syscall (freebsd-arm), const FLUSHO ideal-int +pkg syscall (freebsd-arm), const F_CANCEL ideal-int +pkg syscall (freebsd-arm), const F_DUP2FD ideal-int +pkg syscall (freebsd-arm), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm), const F_DUPFD ideal-int +pkg syscall (freebsd-arm), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-arm), const F_GETFD ideal-int +pkg syscall (freebsd-arm), const F_GETFL ideal-int +pkg syscall (freebsd-arm), const F_GETLK ideal-int +pkg syscall (freebsd-arm), const F_GETOWN ideal-int +pkg syscall (freebsd-arm), const F_OGETLK ideal-int +pkg syscall (freebsd-arm), const F_OK ideal-int +pkg syscall (freebsd-arm), const F_OSETLK ideal-int +pkg syscall (freebsd-arm), const F_OSETLKW ideal-int +pkg syscall (freebsd-arm), const F_RDAHEAD ideal-int +pkg syscall (freebsd-arm), const F_RDLCK ideal-int +pkg syscall (freebsd-arm), const F_READAHEAD ideal-int +pkg syscall (freebsd-arm), const F_SETFD ideal-int +pkg syscall (freebsd-arm), const F_SETFL ideal-int +pkg syscall (freebsd-arm), const F_SETLK ideal-int +pkg syscall (freebsd-arm), const F_SETLKW ideal-int +pkg syscall (freebsd-arm), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-arm), const F_SETOWN ideal-int +pkg syscall (freebsd-arm), const F_UNLCK ideal-int +pkg syscall (freebsd-arm), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-arm), const F_WRLCK ideal-int +pkg syscall (freebsd-arm), const HUPCL ideal-int +pkg syscall (freebsd-arm), const ICANON ideal-int +pkg syscall (freebsd-arm), const ICMP6_FILTER = 18 +pkg syscall (freebsd-arm), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-arm), const ICRNL ideal-int +pkg syscall (freebsd-arm), const IEXTEN ideal-int +pkg syscall (freebsd-arm), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-arm), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-arm), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-arm), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-arm), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-arm), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-arm), const IFF_DEBUG ideal-int +pkg syscall (freebsd-arm), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-arm), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-arm), const IFF_DYING ideal-int +pkg syscall (freebsd-arm), const IFF_LINK0 ideal-int +pkg syscall (freebsd-arm), const IFF_LINK1 ideal-int +pkg syscall (freebsd-arm), const IFF_LINK2 ideal-int +pkg syscall (freebsd-arm), const IFF_MONITOR ideal-int +pkg syscall (freebsd-arm), const IFF_NOARP ideal-int +pkg syscall (freebsd-arm), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-arm), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-arm), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-arm), const IFF_PROMISC ideal-int +pkg syscall (freebsd-arm), const IFF_RENAMING ideal-int +pkg syscall (freebsd-arm), const IFF_RUNNING ideal-int +pkg syscall (freebsd-arm), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-arm), const IFF_SMART ideal-int +pkg syscall (freebsd-arm), const IFF_STATICARP ideal-int +pkg syscall (freebsd-arm), const IFNAMSIZ ideal-int +pkg syscall (freebsd-arm), const IFT_1822 ideal-int +pkg syscall (freebsd-arm), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-arm), const IFT_AAL2 ideal-int +pkg syscall (freebsd-arm), const IFT_AAL5 ideal-int +pkg syscall (freebsd-arm), const IFT_ADSL ideal-int +pkg syscall (freebsd-arm), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-arm), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-arm), const IFT_ARAP ideal-int +pkg syscall (freebsd-arm), const IFT_ARCNET ideal-int +pkg syscall (freebsd-arm), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-arm), const IFT_ASYNC ideal-int +pkg syscall (freebsd-arm), const IFT_ATM ideal-int +pkg syscall (freebsd-arm), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-arm), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-arm), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-arm), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-arm), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-arm), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-arm), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-arm), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-arm), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-arm), const IFT_BSC ideal-int +pkg syscall (freebsd-arm), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-arm), const IFT_CEPT ideal-int +pkg syscall (freebsd-arm), const IFT_CES ideal-int +pkg syscall (freebsd-arm), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-arm), const IFT_CNR ideal-int +pkg syscall (freebsd-arm), const IFT_COFFEE ideal-int +pkg syscall (freebsd-arm), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-arm), const IFT_DCN ideal-int +pkg syscall (freebsd-arm), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm), const IFT_DLSW ideal-int +pkg syscall (freebsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_DS0 ideal-int +pkg syscall (freebsd-arm), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-arm), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-arm), const IFT_DS3 ideal-int +pkg syscall (freebsd-arm), const IFT_DTM ideal-int +pkg syscall (freebsd-arm), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-arm), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-arm), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_ENC ideal-int +pkg syscall (freebsd-arm), const IFT_EON ideal-int +pkg syscall (freebsd-arm), const IFT_EPLRS ideal-int +pkg syscall (freebsd-arm), const IFT_ESCON ideal-int +pkg syscall (freebsd-arm), const IFT_ETHER ideal-int +pkg syscall (freebsd-arm), const IFT_FAITH ideal-int +pkg syscall (freebsd-arm), const IFT_FAST ideal-int +pkg syscall (freebsd-arm), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-arm), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-arm), const IFT_FDDI ideal-int +pkg syscall (freebsd-arm), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-arm), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-arm), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-arm), const IFT_FRELAY ideal-int +pkg syscall (freebsd-arm), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-arm), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-arm), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-arm), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-arm), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-arm), const IFT_GIF ideal-int +pkg syscall (freebsd-arm), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-arm), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-arm), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-arm), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-arm), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-arm), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-arm), const IFT_HDLC ideal-int +pkg syscall (freebsd-arm), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-arm), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-arm), const IFT_HIPPI ideal-int +pkg syscall (freebsd-arm), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-arm), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-arm), const IFT_HSSI ideal-int +pkg syscall (freebsd-arm), const IFT_HY ideal-int +pkg syscall (freebsd-arm), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-arm), const IFT_IDSL ideal-int +pkg syscall (freebsd-arm), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-arm), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-arm), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-arm), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-arm), const IFT_IFGSN ideal-int +pkg syscall (freebsd-arm), const IFT_IMT ideal-int +pkg syscall (freebsd-arm), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-arm), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-arm), const IFT_IP ideal-int +pkg syscall (freebsd-arm), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-arm), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-arm), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-arm), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-arm), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-arm), const IFT_IPXIP ideal-int +pkg syscall (freebsd-arm), const IFT_ISDN ideal-int +pkg syscall (freebsd-arm), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-arm), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-arm), const IFT_ISDNS ideal-int +pkg syscall (freebsd-arm), const IFT_ISDNU ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-arm), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-arm), const IFT_ISUP ideal-int +pkg syscall (freebsd-arm), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-arm), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-arm), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-arm), const IFT_LAPB ideal-int +pkg syscall (freebsd-arm), const IFT_LAPD ideal-int +pkg syscall (freebsd-arm), const IFT_LAPF ideal-int +pkg syscall (freebsd-arm), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-arm), const IFT_LOOP ideal-int +pkg syscall (freebsd-arm), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-arm), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-arm), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-arm), const IFT_MODEM ideal-int +pkg syscall (freebsd-arm), const IFT_MPC ideal-int +pkg syscall (freebsd-arm), const IFT_MPLS ideal-int +pkg syscall (freebsd-arm), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-arm), const IFT_MSDSL ideal-int +pkg syscall (freebsd-arm), const IFT_MVL ideal-int +pkg syscall (freebsd-arm), const IFT_MYRINET ideal-int +pkg syscall (freebsd-arm), const IFT_NFAS ideal-int +pkg syscall (freebsd-arm), const IFT_NSIP ideal-int +pkg syscall (freebsd-arm), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-arm), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-arm), const IFT_OTHER ideal-int +pkg syscall (freebsd-arm), const IFT_P10 ideal-int +pkg syscall (freebsd-arm), const IFT_P80 ideal-int +pkg syscall (freebsd-arm), const IFT_PARA ideal-int +pkg syscall (freebsd-arm), const IFT_PFLOG ideal-int +pkg syscall (freebsd-arm), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-arm), const IFT_PLC ideal-int +pkg syscall (freebsd-arm), const IFT_POS ideal-int +pkg syscall (freebsd-arm), const IFT_PPP ideal-int +pkg syscall (freebsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-arm), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-arm), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-arm), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-arm), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-arm), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-arm), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-arm), const IFT_PVC ideal-int +pkg syscall (freebsd-arm), const IFT_QLLC ideal-int +pkg syscall (freebsd-arm), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-arm), const IFT_RADSL ideal-int +pkg syscall (freebsd-arm), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-arm), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-arm), const IFT_RS232 ideal-int +pkg syscall (freebsd-arm), const IFT_RSRB ideal-int +pkg syscall (freebsd-arm), const IFT_SDLC ideal-int +pkg syscall (freebsd-arm), const IFT_SDSL ideal-int +pkg syscall (freebsd-arm), const IFT_SHDSL ideal-int +pkg syscall (freebsd-arm), const IFT_SIP ideal-int +pkg syscall (freebsd-arm), const IFT_SLIP ideal-int +pkg syscall (freebsd-arm), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-arm), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-arm), const IFT_SONET ideal-int +pkg syscall (freebsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-arm), const IFT_SONETVT ideal-int +pkg syscall (freebsd-arm), const IFT_SRP ideal-int +pkg syscall (freebsd-arm), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-arm), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-arm), const IFT_STARLAN ideal-int +pkg syscall (freebsd-arm), const IFT_STF ideal-int +pkg syscall (freebsd-arm), const IFT_T1 ideal-int +pkg syscall (freebsd-arm), const IFT_TDLC ideal-int +pkg syscall (freebsd-arm), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-arm), const IFT_TR008 ideal-int +pkg syscall (freebsd-arm), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-arm), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-arm), const IFT_ULTRA ideal-int +pkg syscall (freebsd-arm), const IFT_USB ideal-int +pkg syscall (freebsd-arm), const IFT_V11 ideal-int +pkg syscall (freebsd-arm), const IFT_V35 ideal-int +pkg syscall (freebsd-arm), const IFT_V36 ideal-int +pkg syscall (freebsd-arm), const IFT_V37 ideal-int +pkg syscall (freebsd-arm), const IFT_VDSL ideal-int +pkg syscall (freebsd-arm), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-arm), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-arm), const IFT_X213 ideal-int +pkg syscall (freebsd-arm), const IFT_X25 ideal-int +pkg syscall (freebsd-arm), const IFT_X25DDN ideal-int +pkg syscall (freebsd-arm), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-arm), const IFT_X25MLP ideal-int +pkg syscall (freebsd-arm), const IFT_X25PLE ideal-int +pkg syscall (freebsd-arm), const IFT_XETHER ideal-int +pkg syscall (freebsd-arm), const IGNBRK ideal-int +pkg syscall (freebsd-arm), const IGNCR ideal-int +pkg syscall (freebsd-arm), const IGNPAR ideal-int +pkg syscall (freebsd-arm), const IMAXBEL ideal-int +pkg syscall (freebsd-arm), const INLCR ideal-int +pkg syscall (freebsd-arm), const INPCK ideal-int +pkg syscall (freebsd-arm), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-arm), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-arm), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-arm), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-arm), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-arm), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-arm), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-arm), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-arm), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-arm), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-arm), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-arm), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-arm), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-arm), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-arm), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-arm), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-arm), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_AH ideal-int +pkg syscall (freebsd-arm), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_APES ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-arm), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-arm), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-arm), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-arm), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-arm), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-arm), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_EON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-arm), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-arm), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-arm), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IL ideal-int +pkg syscall (freebsd-arm), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_INP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-arm), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MH ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ND ideal-int +pkg syscall (freebsd-arm), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-arm), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-arm), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-arm), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-arm), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-arm), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-arm), const IPPROTO_ST ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-arm), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-arm), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-arm), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-arm), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-arm), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-arm), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-arm), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-arm), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-arm), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-arm), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-arm), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-arm), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-arm), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-arm), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-arm), const IPV6_FAITH ideal-int +pkg syscall (freebsd-arm), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-arm), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-arm), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-arm), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-arm), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-arm), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-arm), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-arm), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-arm), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-arm), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-arm), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-arm), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-arm), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-arm), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-arm), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm), const IPV6_MMTU ideal-int +pkg syscall (freebsd-arm), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-arm), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-arm), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-arm), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-arm), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-arm), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-arm), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-arm), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-arm), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-arm), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-arm), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-arm), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-arm), const IPV6_VERSION ideal-int +pkg syscall (freebsd-arm), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-arm), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm), const IP_BINDANY ideal-int +pkg syscall (freebsd-arm), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-arm), const IP_DF ideal-int +pkg syscall (freebsd-arm), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-arm), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-arm), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-arm), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-arm), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-arm), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-arm), const IP_FAITH ideal-int +pkg syscall (freebsd-arm), const IP_FW3 ideal-int +pkg syscall (freebsd-arm), const IP_FW_ADD ideal-int +pkg syscall (freebsd-arm), const IP_FW_DEL ideal-int +pkg syscall (freebsd-arm), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-arm), const IP_FW_GET ideal-int +pkg syscall (freebsd-arm), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-arm), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-arm), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-arm), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-arm), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-arm), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-arm), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-arm), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-arm), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-arm), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-arm), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-arm), const IP_HDRINCL ideal-int +pkg syscall (freebsd-arm), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-arm), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-arm), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-arm), const IP_MF ideal-int +pkg syscall (freebsd-arm), const IP_MINTTL ideal-int +pkg syscall (freebsd-arm), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm), const IP_MSFILTER ideal-int +pkg syscall (freebsd-arm), const IP_MSS ideal-int +pkg syscall (freebsd-arm), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-arm), const IP_OFFMASK ideal-int +pkg syscall (freebsd-arm), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-arm), const IP_OPTIONS ideal-int +pkg syscall (freebsd-arm), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-arm), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-arm), const IP_RECVIF ideal-int +pkg syscall (freebsd-arm), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-arm), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-arm), const IP_RECVTOS ideal-int +pkg syscall (freebsd-arm), const IP_RECVTTL ideal-int +pkg syscall (freebsd-arm), const IP_RETOPTS ideal-int +pkg syscall (freebsd-arm), const IP_RF ideal-int +pkg syscall (freebsd-arm), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-arm), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-arm), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-arm), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-arm), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-arm), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm), const ISIG ideal-int +pkg syscall (freebsd-arm), const ISTRIP ideal-int +pkg syscall (freebsd-arm), const IXANY ideal-int +pkg syscall (freebsd-arm), const IXOFF ideal-int +pkg syscall (freebsd-arm), const IXON ideal-int +pkg syscall (freebsd-arm), const LOCK_EX ideal-int +pkg syscall (freebsd-arm), const LOCK_NB ideal-int +pkg syscall (freebsd-arm), const LOCK_SH ideal-int +pkg syscall (freebsd-arm), const LOCK_UN ideal-int +pkg syscall (freebsd-arm), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-arm), const MADV_CORE ideal-int +pkg syscall (freebsd-arm), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-arm), const MADV_FREE ideal-int +pkg syscall (freebsd-arm), const MADV_NOCORE ideal-int +pkg syscall (freebsd-arm), const MADV_NORMAL ideal-int +pkg syscall (freebsd-arm), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-arm), const MADV_PROTECT ideal-int +pkg syscall (freebsd-arm), const MADV_RANDOM ideal-int +pkg syscall (freebsd-arm), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-arm), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-arm), const MAP_ANON ideal-int +pkg syscall (freebsd-arm), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-arm), const MAP_COPY ideal-int +pkg syscall (freebsd-arm), const MAP_FILE ideal-int +pkg syscall (freebsd-arm), const MAP_FIXED ideal-int +pkg syscall (freebsd-arm), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-arm), const MAP_NOCORE ideal-int +pkg syscall (freebsd-arm), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-arm), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-arm), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-arm), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-arm), const MAP_RENAME ideal-int +pkg syscall (freebsd-arm), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-arm), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-arm), const MAP_SHARED ideal-int +pkg syscall (freebsd-arm), const MAP_STACK ideal-int +pkg syscall (freebsd-arm), const MCL_CURRENT ideal-int +pkg syscall (freebsd-arm), const MCL_FUTURE ideal-int +pkg syscall (freebsd-arm), const MSG_COMPAT ideal-int +pkg syscall (freebsd-arm), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-arm), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-arm), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-arm), const MSG_EOF ideal-int +pkg syscall (freebsd-arm), const MSG_EOR ideal-int +pkg syscall (freebsd-arm), const MSG_NBIO ideal-int +pkg syscall (freebsd-arm), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-arm), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-arm), const MSG_OOB ideal-int +pkg syscall (freebsd-arm), const MSG_PEEK ideal-int +pkg syscall (freebsd-arm), const MSG_TRUNC ideal-int +pkg syscall (freebsd-arm), const MSG_WAITALL ideal-int +pkg syscall (freebsd-arm), const MS_ASYNC ideal-int +pkg syscall (freebsd-arm), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-arm), const MS_SYNC ideal-int +pkg syscall (freebsd-arm), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-arm), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-arm), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-arm), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-arm), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-arm), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-arm), const NOFLSH ideal-int +pkg syscall (freebsd-arm), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-arm), const NOTE_CHILD ideal-int +pkg syscall (freebsd-arm), const NOTE_DELETE ideal-int +pkg syscall (freebsd-arm), const NOTE_EXEC ideal-int +pkg syscall (freebsd-arm), const NOTE_EXIT ideal-int +pkg syscall (freebsd-arm), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-arm), const NOTE_FFAND ideal-int +pkg syscall (freebsd-arm), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-arm), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-arm), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-arm), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-arm), const NOTE_FFOR ideal-int +pkg syscall (freebsd-arm), const NOTE_FORK ideal-int +pkg syscall (freebsd-arm), const NOTE_LINK ideal-int +pkg syscall (freebsd-arm), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-arm), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-arm), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-arm), const NOTE_RENAME ideal-int +pkg syscall (freebsd-arm), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-arm), const NOTE_TRACK ideal-int +pkg syscall (freebsd-arm), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-arm), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-arm), const NOTE_WRITE ideal-int +pkg syscall (freebsd-arm), const OCRNL ideal-int +pkg syscall (freebsd-arm), const ONLCR ideal-int +pkg syscall (freebsd-arm), const ONLRET ideal-int +pkg syscall (freebsd-arm), const ONOCR ideal-int +pkg syscall (freebsd-arm), const ONOEOT ideal-int +pkg syscall (freebsd-arm), const OPOST ideal-int +pkg syscall (freebsd-arm), const O_ACCMODE ideal-int +pkg syscall (freebsd-arm), const O_DIRECT ideal-int +pkg syscall (freebsd-arm), const O_DIRECTORY ideal-int +pkg syscall (freebsd-arm), const O_EXEC ideal-int +pkg syscall (freebsd-arm), const O_EXLOCK ideal-int +pkg syscall (freebsd-arm), const O_FSYNC ideal-int +pkg syscall (freebsd-arm), const O_NDELAY ideal-int +pkg syscall (freebsd-arm), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-arm), const O_SHLOCK ideal-int +pkg syscall (freebsd-arm), const O_TTY_INIT ideal-int +pkg syscall (freebsd-arm), const PARENB ideal-int +pkg syscall (freebsd-arm), const PARMRK ideal-int +pkg syscall (freebsd-arm), const PARODD ideal-int +pkg syscall (freebsd-arm), const PENDIN ideal-int +pkg syscall (freebsd-arm), const PRIO_PGRP = 1 +pkg syscall (freebsd-arm), const PRIO_PGRP ideal-int +pkg syscall (freebsd-arm), const PRIO_PROCESS = 0 +pkg syscall (freebsd-arm), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-arm), const PRIO_USER = 2 +pkg syscall (freebsd-arm), const PRIO_USER ideal-int +pkg syscall (freebsd-arm), const PROT_EXEC ideal-int +pkg syscall (freebsd-arm), const PROT_NONE ideal-int +pkg syscall (freebsd-arm), const PROT_READ ideal-int +pkg syscall (freebsd-arm), const PROT_WRITE ideal-int +pkg syscall (freebsd-arm), const PTRACE_CONT ideal-int +pkg syscall (freebsd-arm), const PTRACE_KILL ideal-int +pkg syscall (freebsd-arm), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-arm), const RLIMIT_AS ideal-int +pkg syscall (freebsd-arm), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-arm), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-arm), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-arm), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-arm), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-arm), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-arm), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-arm), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-arm), const RTAX_BRD ideal-int +pkg syscall (freebsd-arm), const RTAX_DST ideal-int +pkg syscall (freebsd-arm), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-arm), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-arm), const RTAX_IFA ideal-int +pkg syscall (freebsd-arm), const RTAX_IFP ideal-int +pkg syscall (freebsd-arm), const RTAX_MAX ideal-int +pkg syscall (freebsd-arm), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-arm), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-arm), const RTA_BRD ideal-int +pkg syscall (freebsd-arm), const RTA_DST ideal-int +pkg syscall (freebsd-arm), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-arm), const RTA_GENMASK ideal-int +pkg syscall (freebsd-arm), const RTA_IFA ideal-int +pkg syscall (freebsd-arm), const RTA_IFP ideal-int +pkg syscall (freebsd-arm), const RTA_NETMASK ideal-int +pkg syscall (freebsd-arm), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-arm), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-arm), const RTF_DONE ideal-int +pkg syscall (freebsd-arm), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-arm), const RTF_FMASK ideal-int +pkg syscall (freebsd-arm), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-arm), const RTF_HOST ideal-int +pkg syscall (freebsd-arm), const RTF_LLDATA ideal-int +pkg syscall (freebsd-arm), const RTF_LLINFO ideal-int +pkg syscall (freebsd-arm), const RTF_LOCAL ideal-int +pkg syscall (freebsd-arm), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-arm), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-arm), const RTF_PINNED ideal-int +pkg syscall (freebsd-arm), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-arm), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-arm), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-arm), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-arm), const RTF_REJECT ideal-int +pkg syscall (freebsd-arm), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-arm), const RTF_STATIC ideal-int +pkg syscall (freebsd-arm), const RTF_STICKY ideal-int +pkg syscall (freebsd-arm), const RTF_UP ideal-int +pkg syscall (freebsd-arm), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-arm), const RTM_ADD ideal-int +pkg syscall (freebsd-arm), const RTM_CHANGE ideal-int +pkg syscall (freebsd-arm), const RTM_DELADDR ideal-int +pkg syscall (freebsd-arm), const RTM_DELETE ideal-int +pkg syscall (freebsd-arm), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-arm), const RTM_GET ideal-int +pkg syscall (freebsd-arm), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-arm), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-arm), const RTM_IFINFO ideal-int +pkg syscall (freebsd-arm), const RTM_LOCK ideal-int +pkg syscall (freebsd-arm), const RTM_LOSING ideal-int +pkg syscall (freebsd-arm), const RTM_MISS ideal-int +pkg syscall (freebsd-arm), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-arm), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-arm), const RTM_OLDADD ideal-int +pkg syscall (freebsd-arm), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-arm), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-arm), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-arm), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-arm), const RTM_VERSION ideal-int +pkg syscall (freebsd-arm), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-arm), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-arm), const RTV_MTU ideal-int +pkg syscall (freebsd-arm), const RTV_RPIPE ideal-int +pkg syscall (freebsd-arm), const RTV_RTT ideal-int +pkg syscall (freebsd-arm), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-arm), const RTV_SPIPE ideal-int +pkg syscall (freebsd-arm), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-arm), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-arm), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-arm), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-arm), const RT_NORTREF ideal-int +pkg syscall (freebsd-arm), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-arm), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-arm), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-arm), const SCM_BINTIME ideal-int +pkg syscall (freebsd-arm), const SCM_CREDS ideal-int +pkg syscall (freebsd-arm), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-arm), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-arm), const SIGCHLD Signal +pkg syscall (freebsd-arm), const SIGCONT Signal +pkg syscall (freebsd-arm), const SIGEMT Signal +pkg syscall (freebsd-arm), const SIGINFO Signal +pkg syscall (freebsd-arm), const SIGIO Signal +pkg syscall (freebsd-arm), const SIGIOT Signal +pkg syscall (freebsd-arm), const SIGLIBRT Signal +pkg syscall (freebsd-arm), const SIGLWP Signal +pkg syscall (freebsd-arm), const SIGPROF Signal +pkg syscall (freebsd-arm), const SIGSTOP Signal +pkg syscall (freebsd-arm), const SIGSYS Signal +pkg syscall (freebsd-arm), const SIGTHR Signal +pkg syscall (freebsd-arm), const SIGTSTP Signal +pkg syscall (freebsd-arm), const SIGTTIN Signal +pkg syscall (freebsd-arm), const SIGTTOU Signal +pkg syscall (freebsd-arm), const SIGURG Signal +pkg syscall (freebsd-arm), const SIGUSR1 Signal +pkg syscall (freebsd-arm), const SIGUSR2 Signal +pkg syscall (freebsd-arm), const SIGVTALRM Signal +pkg syscall (freebsd-arm), const SIGWINCH Signal +pkg syscall (freebsd-arm), const SIGXCPU Signal +pkg syscall (freebsd-arm), const SIGXFSZ Signal +pkg syscall (freebsd-arm), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-arm), const SIOCADDRT ideal-int +pkg syscall (freebsd-arm), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-arm), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCATMARK ideal-int +pkg syscall (freebsd-arm), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-arm), const SIOCDELRT ideal-int +pkg syscall (freebsd-arm), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-arm), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-arm), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-arm), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-arm), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-arm), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-arm), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-arm), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-arm), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-arm), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-arm), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-arm), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-arm), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-arm), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-arm), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-arm), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-arm), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-arm), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-arm), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-arm), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-arm), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-arm), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-arm), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-arm), const SIOCGPGRP ideal-int +pkg syscall (freebsd-arm), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-arm), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-arm), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-arm), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-arm), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-arm), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-arm), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-arm), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-arm), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-arm), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-arm), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-arm), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-arm), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-arm), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-arm), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-arm), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-arm), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-arm), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-arm), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-arm), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-arm), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-arm), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-arm), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-arm), const SIOCSPGRP ideal-int +pkg syscall (freebsd-arm), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-arm), const SOCK_RDM ideal-int +pkg syscall (freebsd-arm), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-arm), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-arm), const SO_BINTIME ideal-int +pkg syscall (freebsd-arm), const SO_DEBUG ideal-int +pkg syscall (freebsd-arm), const SO_ERROR ideal-int +pkg syscall (freebsd-arm), const SO_LABEL ideal-int +pkg syscall (freebsd-arm), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-arm), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-arm), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-arm), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-arm), const SO_NO_DDP ideal-int +pkg syscall (freebsd-arm), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-arm), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-arm), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-arm), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-arm), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-arm), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-arm), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-arm), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-arm), const SO_SETFIB ideal-int +pkg syscall (freebsd-arm), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-arm), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-arm), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-arm), const SO_TYPE ideal-int +pkg syscall (freebsd-arm), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-arm), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-arm), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-arm), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-arm), const SYS_ACCESS ideal-int +pkg syscall (freebsd-arm), const SYS_ACCT ideal-int +pkg syscall (freebsd-arm), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-arm), const SYS_AUDIT ideal-int +pkg syscall (freebsd-arm), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-arm), const SYS_AUDITON ideal-int +pkg syscall (freebsd-arm), const SYS_BIND ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_CHDIR ideal-int +pkg syscall (freebsd-arm), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-arm), const SYS_CHMOD ideal-int +pkg syscall (freebsd-arm), const SYS_CHOWN ideal-int +pkg syscall (freebsd-arm), const SYS_CHROOT ideal-int +pkg syscall (freebsd-arm), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-arm), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-arm), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-arm), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-arm), const SYS_CLOSE ideal-int +pkg syscall (freebsd-arm), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-arm), const SYS_CONNECT ideal-int +pkg syscall (freebsd-arm), const SYS_CPUSET ideal-int +pkg syscall (freebsd-arm), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-arm), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-arm), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-arm), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-arm), const SYS_DUP ideal-int +pkg syscall (freebsd-arm), const SYS_DUP2 ideal-int +pkg syscall (freebsd-arm), const SYS_EACCESS ideal-int +pkg syscall (freebsd-arm), const SYS_EXECVE ideal-int +pkg syscall (freebsd-arm), const SYS_EXIT ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-arm), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-arm), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-arm), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-arm), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-arm), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-arm), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-arm), const SYS_FCNTL ideal-int +pkg syscall (freebsd-arm), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-arm), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-arm), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-arm), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-arm), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-arm), const SYS_FLOCK ideal-int +pkg syscall (freebsd-arm), const SYS_FORK ideal-int +pkg syscall (freebsd-arm), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-arm), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-arm), const SYS_FSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-arm), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-arm), const SYS_FSYNC ideal-int +pkg syscall (freebsd-arm), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-arm), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-arm), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-arm), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-arm), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm), const SYS_GETAUID ideal-int +pkg syscall (freebsd-arm), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-arm), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-arm), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-arm), const SYS_GETEGID ideal-int +pkg syscall (freebsd-arm), const SYS_GETEUID ideal-int +pkg syscall (freebsd-arm), const SYS_GETFH ideal-int +pkg syscall (freebsd-arm), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_GETGID ideal-int +pkg syscall (freebsd-arm), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-arm), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-arm), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-arm), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-arm), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-arm), const SYS_GETPGID ideal-int +pkg syscall (freebsd-arm), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-arm), const SYS_GETPID ideal-int +pkg syscall (freebsd-arm), const SYS_GETPPID ideal-int +pkg syscall (freebsd-arm), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-arm), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-arm), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-arm), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-arm), const SYS_GETSID ideal-int +pkg syscall (freebsd-arm), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-arm), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-arm), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm), const SYS_GETUID ideal-int +pkg syscall (freebsd-arm), const SYS_IOCTL ideal-int +pkg syscall (freebsd-arm), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-arm), const SYS_JAIL ideal-int +pkg syscall (freebsd-arm), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-arm), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-arm), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-arm), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-arm), const SYS_KENV ideal-int +pkg syscall (freebsd-arm), const SYS_KEVENT ideal-int +pkg syscall (freebsd-arm), const SYS_KILL ideal-int +pkg syscall (freebsd-arm), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-arm), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-arm), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-arm), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-arm), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-arm), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-arm), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-arm), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-arm), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-arm), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-arm), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-arm), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-arm), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-arm), const SYS_KTRACE ideal-int +pkg syscall (freebsd-arm), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-arm), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-arm), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-arm), const SYS_LGETFH ideal-int +pkg syscall (freebsd-arm), const SYS_LINK ideal-int +pkg syscall (freebsd-arm), const SYS_LINKAT ideal-int +pkg syscall (freebsd-arm), const SYS_LISTEN ideal-int +pkg syscall (freebsd-arm), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-arm), const SYS_LSEEK ideal-int +pkg syscall (freebsd-arm), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-arm), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-arm), const SYS_MADVISE ideal-int +pkg syscall (freebsd-arm), const SYS_MINCORE ideal-int +pkg syscall (freebsd-arm), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-arm), const SYS_MKDIR ideal-int +pkg syscall (freebsd-arm), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-arm), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-arm), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-arm), const SYS_MKNOD ideal-int +pkg syscall (freebsd-arm), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-arm), const SYS_MLOCK ideal-int +pkg syscall (freebsd-arm), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-arm), const SYS_MMAP ideal-int +pkg syscall (freebsd-arm), const SYS_MODFIND ideal-int +pkg syscall (freebsd-arm), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-arm), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-arm), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_MOUNT ideal-int +pkg syscall (freebsd-arm), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-arm), const SYS_MSYNC ideal-int +pkg syscall (freebsd-arm), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-arm), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-arm), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-arm), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-arm), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-arm), const SYS_NSTAT ideal-int +pkg syscall (freebsd-arm), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-arm), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-arm), const SYS_OBREAK ideal-int +pkg syscall (freebsd-arm), const SYS_OPEN ideal-int +pkg syscall (freebsd-arm), const SYS_OPENAT ideal-int +pkg syscall (freebsd-arm), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-arm), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-arm), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-arm), const SYS_PDFORK ideal-int +pkg syscall (freebsd-arm), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-arm), const SYS_PDKILL ideal-int +pkg syscall (freebsd-arm), const SYS_PIPE ideal-int +pkg syscall (freebsd-arm), const SYS_POLL ideal-int +pkg syscall (freebsd-arm), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-arm), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-arm), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-arm), const SYS_PREAD ideal-int +pkg syscall (freebsd-arm), const SYS_PREADV ideal-int +pkg syscall (freebsd-arm), const SYS_PROFIL ideal-int +pkg syscall (freebsd-arm), const SYS_PSELECT ideal-int +pkg syscall (freebsd-arm), const SYS_PTRACE ideal-int +pkg syscall (freebsd-arm), const SYS_PWRITE ideal-int +pkg syscall (freebsd-arm), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-arm), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-arm), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-arm), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-arm), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-arm), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-arm), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-arm), const SYS_READ ideal-int +pkg syscall (freebsd-arm), const SYS_READLINK ideal-int +pkg syscall (freebsd-arm), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-arm), const SYS_READV ideal-int +pkg syscall (freebsd-arm), const SYS_REBOOT ideal-int +pkg syscall (freebsd-arm), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-arm), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-arm), const SYS_RENAME ideal-int +pkg syscall (freebsd-arm), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-arm), const SYS_REVOKE ideal-int +pkg syscall (freebsd-arm), const SYS_RFORK ideal-int +pkg syscall (freebsd-arm), const SYS_RMDIR ideal-int +pkg syscall (freebsd-arm), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-arm), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-arm), const SYS_SBRK ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-arm), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-arm), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-arm), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-arm), const SYS_SELECT ideal-int +pkg syscall (freebsd-arm), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-arm), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-arm), const SYS_SENDTO ideal-int +pkg syscall (freebsd-arm), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-arm), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm), const SYS_SETAUID ideal-int +pkg syscall (freebsd-arm), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-arm), const SYS_SETEGID ideal-int +pkg syscall (freebsd-arm), const SYS_SETEUID ideal-int +pkg syscall (freebsd-arm), const SYS_SETFIB ideal-int +pkg syscall (freebsd-arm), const SYS_SETGID ideal-int +pkg syscall (freebsd-arm), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-arm), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-arm), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-arm), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-arm), const SYS_SETPGID ideal-int +pkg syscall (freebsd-arm), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-arm), const SYS_SETREGID ideal-int +pkg syscall (freebsd-arm), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-arm), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-arm), const SYS_SETREUID ideal-int +pkg syscall (freebsd-arm), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-arm), const SYS_SETSID ideal-int +pkg syscall (freebsd-arm), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-arm), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm), const SYS_SETUID ideal-int +pkg syscall (freebsd-arm), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-arm), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-arm), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-arm), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-arm), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-arm), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-arm), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-arm), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-arm), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-arm), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-arm), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-arm), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-arm), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-arm), const SYS_SOCKET ideal-int +pkg syscall (freebsd-arm), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-arm), const SYS_SSTK ideal-int +pkg syscall (freebsd-arm), const SYS_STAT ideal-int +pkg syscall (freebsd-arm), const SYS_STATFS ideal-int +pkg syscall (freebsd-arm), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-arm), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-arm), const SYS_SWAPON ideal-int +pkg syscall (freebsd-arm), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-arm), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-arm), const SYS_SYNC ideal-int +pkg syscall (freebsd-arm), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-arm), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-arm), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-arm), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-arm), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-arm), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-arm), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-arm), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-arm), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-arm), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-arm), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-arm), const SYS_UMASK ideal-int +pkg syscall (freebsd-arm), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-arm), const SYS_UNLINK ideal-int +pkg syscall (freebsd-arm), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-arm), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-arm), const SYS_UTIMES ideal-int +pkg syscall (freebsd-arm), const SYS_UTRACE ideal-int +pkg syscall (freebsd-arm), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-arm), const SYS_VFORK ideal-int +pkg syscall (freebsd-arm), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-arm), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-arm), const SYS_WRITE ideal-int +pkg syscall (freebsd-arm), const SYS_WRITEV ideal-int +pkg syscall (freebsd-arm), const SYS_YIELD ideal-int +pkg syscall (freebsd-arm), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-arm), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-arm), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___GETCWD ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-arm), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-arm), const SYS___SETUGID ideal-int +pkg syscall (freebsd-arm), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-arm), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-arm), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-arm), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-arm), const SizeofBpfStat ideal-int +pkg syscall (freebsd-arm), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-arm), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-arm), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-arm), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-arm), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-arm), const SizeofIPMreq ideal-int +pkg syscall (freebsd-arm), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-arm), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-arm), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-arm), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofIfData ideal-int +pkg syscall (freebsd-arm), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-arm), const SizeofLinger ideal-int +pkg syscall (freebsd-arm), const SizeofMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-arm), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-arm), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-arm), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-arm), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-arm), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-arm), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-arm), const TCIFLUSH ideal-int +pkg syscall (freebsd-arm), const TCIOFLUSH ideal-int +pkg syscall (freebsd-arm), const TCOFLUSH ideal-int +pkg syscall (freebsd-arm), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-arm), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-arm), const TCP_INFO ideal-int +pkg syscall (freebsd-arm), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-arm), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-arm), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-arm), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-arm), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-arm), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-arm), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-arm), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-arm), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-arm), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-arm), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-arm), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-arm), const TCP_MINMSS ideal-int +pkg syscall (freebsd-arm), const TCP_MSS ideal-int +pkg syscall (freebsd-arm), const TCP_NOOPT ideal-int +pkg syscall (freebsd-arm), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-arm), const TCSAFLUSH ideal-int +pkg syscall (freebsd-arm), const TIOCCBRK ideal-int +pkg syscall (freebsd-arm), const TIOCCDTR ideal-int +pkg syscall (freebsd-arm), const TIOCCONS ideal-int +pkg syscall (freebsd-arm), const TIOCDRAIN ideal-int +pkg syscall (freebsd-arm), const TIOCEXCL ideal-int +pkg syscall (freebsd-arm), const TIOCEXT ideal-int +pkg syscall (freebsd-arm), const TIOCFLUSH ideal-int +pkg syscall (freebsd-arm), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-arm), const TIOCGETA ideal-int +pkg syscall (freebsd-arm), const TIOCGETD ideal-int +pkg syscall (freebsd-arm), const TIOCGPGRP ideal-int +pkg syscall (freebsd-arm), const TIOCGPTN ideal-int +pkg syscall (freebsd-arm), const TIOCGSID ideal-int +pkg syscall (freebsd-arm), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-arm), const TIOCMBIC ideal-int +pkg syscall (freebsd-arm), const TIOCMBIS ideal-int +pkg syscall (freebsd-arm), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-arm), const TIOCMGET ideal-int +pkg syscall (freebsd-arm), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-arm), const TIOCMSET ideal-int +pkg syscall (freebsd-arm), const TIOCM_CAR ideal-int +pkg syscall (freebsd-arm), const TIOCM_CD ideal-int +pkg syscall (freebsd-arm), const TIOCM_CTS ideal-int +pkg syscall (freebsd-arm), const TIOCM_DCD ideal-int +pkg syscall (freebsd-arm), const TIOCM_DSR ideal-int +pkg syscall (freebsd-arm), const TIOCM_DTR ideal-int +pkg syscall (freebsd-arm), const TIOCM_LE ideal-int +pkg syscall (freebsd-arm), const TIOCM_RI ideal-int +pkg syscall (freebsd-arm), const TIOCM_RNG ideal-int +pkg syscall (freebsd-arm), const TIOCM_RTS ideal-int +pkg syscall (freebsd-arm), const TIOCM_SR ideal-int +pkg syscall (freebsd-arm), const TIOCM_ST ideal-int +pkg syscall (freebsd-arm), const TIOCNOTTY ideal-int +pkg syscall (freebsd-arm), const TIOCNXCL ideal-int +pkg syscall (freebsd-arm), const TIOCOUTQ ideal-int +pkg syscall (freebsd-arm), const TIOCPKT ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_START ideal-int +pkg syscall (freebsd-arm), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-arm), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-arm), const TIOCSBRK ideal-int +pkg syscall (freebsd-arm), const TIOCSCTTY ideal-int +pkg syscall (freebsd-arm), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-arm), const TIOCSDTR ideal-int +pkg syscall (freebsd-arm), const TIOCSETA ideal-int +pkg syscall (freebsd-arm), const TIOCSETAF ideal-int +pkg syscall (freebsd-arm), const TIOCSETAW ideal-int +pkg syscall (freebsd-arm), const TIOCSETD ideal-int +pkg syscall (freebsd-arm), const TIOCSIG ideal-int +pkg syscall (freebsd-arm), const TIOCSPGRP ideal-int +pkg syscall (freebsd-arm), const TIOCSTART ideal-int +pkg syscall (freebsd-arm), const TIOCSTAT ideal-int +pkg syscall (freebsd-arm), const TIOCSTI ideal-int +pkg syscall (freebsd-arm), const TIOCSTOP ideal-int +pkg syscall (freebsd-arm), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-arm), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-arm), const TIOCUCNTL ideal-int +pkg syscall (freebsd-arm), const TOSTOP ideal-int +pkg syscall (freebsd-arm), const VDISCARD ideal-int +pkg syscall (freebsd-arm), const VDSUSP ideal-int +pkg syscall (freebsd-arm), const VEOF ideal-int +pkg syscall (freebsd-arm), const VEOL ideal-int +pkg syscall (freebsd-arm), const VEOL2 ideal-int +pkg syscall (freebsd-arm), const VERASE ideal-int +pkg syscall (freebsd-arm), const VERASE2 ideal-int +pkg syscall (freebsd-arm), const VINTR ideal-int +pkg syscall (freebsd-arm), const VKILL ideal-int +pkg syscall (freebsd-arm), const VLNEXT ideal-int +pkg syscall (freebsd-arm), const VMIN ideal-int +pkg syscall (freebsd-arm), const VQUIT ideal-int +pkg syscall (freebsd-arm), const VREPRINT ideal-int +pkg syscall (freebsd-arm), const VSTART ideal-int +pkg syscall (freebsd-arm), const VSTATUS ideal-int +pkg syscall (freebsd-arm), const VSTOP ideal-int +pkg syscall (freebsd-arm), const VSUSP ideal-int +pkg syscall (freebsd-arm), const VTIME ideal-int +pkg syscall (freebsd-arm), const VWERASE ideal-int +pkg syscall (freebsd-arm), const WCONTINUED ideal-int +pkg syscall (freebsd-arm), const WCOREFLAG ideal-int +pkg syscall (freebsd-arm), const WEXITED ideal-int +pkg syscall (freebsd-arm), const WLINUXCLONE ideal-int +pkg syscall (freebsd-arm), const WNOHANG ideal-int +pkg syscall (freebsd-arm), const WNOWAIT ideal-int +pkg syscall (freebsd-arm), const WSTOPPED ideal-int +pkg syscall (freebsd-arm), const WTRAPPED ideal-int +pkg syscall (freebsd-arm), const WUNTRACED ideal-int +pkg syscall (freebsd-arm), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-arm), func Access(string, uint32) error +pkg syscall (freebsd-arm), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-arm), func Bind(int, Sockaddr) error +pkg syscall (freebsd-arm), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-arm), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-arm), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-arm), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-arm), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-arm), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-arm), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-arm), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-arm), func CheckBpfVersion(int) error +pkg syscall (freebsd-arm), func Chflags(string, int) error +pkg syscall (freebsd-arm), func Chroot(string) error +pkg syscall (freebsd-arm), func Close(int) error +pkg syscall (freebsd-arm), func CloseOnExec(int) +pkg syscall (freebsd-arm), func CmsgLen(int) int +pkg syscall (freebsd-arm), func CmsgSpace(int) int +pkg syscall (freebsd-arm), func Connect(int, Sockaddr) error +pkg syscall (freebsd-arm), func Dup(int) (int, error) +pkg syscall (freebsd-arm), func Dup2(int, int) error +pkg syscall (freebsd-arm), func Fchdir(int) error +pkg syscall (freebsd-arm), func Fchflags(string, int) error +pkg syscall (freebsd-arm), func Fchmod(int, uint32) error +pkg syscall (freebsd-arm), func Fchown(int, int, int) error +pkg syscall (freebsd-arm), func Flock(int, int) error +pkg syscall (freebsd-arm), func FlushBpf(int) error +pkg syscall (freebsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-arm), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-arm), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-arm), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-arm), func Fsync(int) error +pkg syscall (freebsd-arm), func Ftruncate(int, int64) error +pkg syscall (freebsd-arm), func Futimes(int, []Timeval) error +pkg syscall (freebsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-arm), func Getdtablesize() int +pkg syscall (freebsd-arm), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-arm), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-arm), func Getpgid(int) (int, error) +pkg syscall (freebsd-arm), func Getpgrp() int +pkg syscall (freebsd-arm), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-arm), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-arm), func Getsid(int) (int, error) +pkg syscall (freebsd-arm), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-arm), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-arm), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-arm), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-arm), func Issetugid() bool +pkg syscall (freebsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-arm), func Kill(int, Signal) error +pkg syscall (freebsd-arm), func Kqueue() (int, error) +pkg syscall (freebsd-arm), func Listen(int, int) error +pkg syscall (freebsd-arm), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-arm), func Mkfifo(string, uint32) error +pkg syscall (freebsd-arm), func Mknod(string, uint32, int) error +pkg syscall (freebsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-arm), func Munmap([]uint8) error +pkg syscall (freebsd-arm), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-arm), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-arm), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-arm), func Pipe([]int) error +pkg syscall (freebsd-arm), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-arm), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-arm), func Revoke(string) error +pkg syscall (freebsd-arm), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-arm), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-arm), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-arm), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-arm), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-arm), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-arm), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-arm), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-arm), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-arm), func SetBpfInterface(int, string) error +pkg syscall (freebsd-arm), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-arm), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-arm), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-arm), func SetNonblock(int, bool) error +pkg syscall (freebsd-arm), func Setegid(int) error +pkg syscall (freebsd-arm), func Seteuid(int) error +pkg syscall (freebsd-arm), func Setgid(int) error +pkg syscall (freebsd-arm), func Setgroups([]int) error +pkg syscall (freebsd-arm), func Setlogin(string) error +pkg syscall (freebsd-arm), func Setpgid(int, int) error +pkg syscall (freebsd-arm), func Setpriority(int, int, int) error +pkg syscall (freebsd-arm), func Setregid(int, int) error +pkg syscall (freebsd-arm), func Setreuid(int, int) error +pkg syscall (freebsd-arm), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm), func Setsid() (int, error) +pkg syscall (freebsd-arm), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-arm), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-arm), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-arm), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-arm), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-arm), func Settimeofday(*Timeval) error +pkg syscall (freebsd-arm), func Setuid(int) error +pkg syscall (freebsd-arm), func Shutdown(int, int) error +pkg syscall (freebsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-arm), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-arm), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-arm), func Stat(string, *Stat_t) error +pkg syscall (freebsd-arm), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-arm), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-arm), func Sync() error +pkg syscall (freebsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm), func Sysctl(string) (string, error) +pkg syscall (freebsd-arm), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-arm), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-arm), func Truncate(string, int64) error +pkg syscall (freebsd-arm), func Umask(int) int +pkg syscall (freebsd-arm), func Undelete(string) error +pkg syscall (freebsd-arm), func UnixRights(...int) []uint8 +pkg syscall (freebsd-arm), func Unmount(string, int) error +pkg syscall (freebsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-arm), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-arm), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-arm), method (*Iovec) SetLen(int) +pkg syscall (freebsd-arm), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-arm), type BpfHdr struct +pkg syscall (freebsd-arm), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-arm), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-arm), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-arm), type BpfInsn struct +pkg syscall (freebsd-arm), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-arm), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-arm), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-arm), type BpfInsn struct, K uint32 +pkg syscall (freebsd-arm), type BpfProgram struct +pkg syscall (freebsd-arm), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-arm), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-arm), type BpfStat struct +pkg syscall (freebsd-arm), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-arm), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-arm), type BpfVersion struct +pkg syscall (freebsd-arm), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-arm), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-arm), type BpfZbuf struct +pkg syscall (freebsd-arm), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-arm), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-arm), type BpfZbuf struct, Buflen uint32 +pkg syscall (freebsd-arm), type BpfZbufHeader struct +pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-arm), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-arm), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-arm), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-arm), type Cmsghdr struct +pkg syscall (freebsd-arm), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-arm), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-arm), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-arm), type Credential struct +pkg syscall (freebsd-arm), type Credential struct, Gid uint32 +pkg syscall (freebsd-arm), type Credential struct, Groups []uint32 +pkg syscall (freebsd-arm), type Credential struct, Uid uint32 +pkg syscall (freebsd-arm), type Dirent struct +pkg syscall (freebsd-arm), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-arm), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-arm), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-arm), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-arm), type Dirent struct, Type uint8 +pkg syscall (freebsd-arm), type FdSet struct +pkg syscall (freebsd-arm), type FdSet struct, X__fds_bits [32]uint32 +pkg syscall (freebsd-arm), type Flock_t struct +pkg syscall (freebsd-arm), type Flock_t struct, Len int64 +pkg syscall (freebsd-arm), type Flock_t struct, Pid int32 +pkg syscall (freebsd-arm), type Flock_t struct, Start int64 +pkg syscall (freebsd-arm), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-arm), type Flock_t struct, Type int16 +pkg syscall (freebsd-arm), type Flock_t struct, Whence int16 +pkg syscall (freebsd-arm), type Fsid struct +pkg syscall (freebsd-arm), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-arm), type ICMPv6Filter struct +pkg syscall (freebsd-arm), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-arm), type IPMreqn struct +pkg syscall (freebsd-arm), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-arm), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-arm), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-arm), type IPv6MTUInfo struct +pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-arm), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-arm), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-arm), type IfData struct +pkg syscall (freebsd-arm), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-arm), type IfData struct, Baudrate uint32 +pkg syscall (freebsd-arm), type IfData struct, Collisions uint32 +pkg syscall (freebsd-arm), type IfData struct, Datalen uint8 +pkg syscall (freebsd-arm), type IfData struct, Epoch int64 +pkg syscall (freebsd-arm), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-arm), type IfData struct, Hwassist uint32 +pkg syscall (freebsd-arm), type IfData struct, Ibytes uint32 +pkg syscall (freebsd-arm), type IfData struct, Ierrors uint32 +pkg syscall (freebsd-arm), type IfData struct, Imcasts uint32 +pkg syscall (freebsd-arm), type IfData struct, Ipackets uint32 +pkg syscall (freebsd-arm), type IfData struct, Iqdrops uint32 +pkg syscall (freebsd-arm), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-arm), type IfData struct, Link_state uint8 +pkg syscall (freebsd-arm), type IfData struct, Metric uint32 +pkg syscall (freebsd-arm), type IfData struct, Mtu uint32 +pkg syscall (freebsd-arm), type IfData struct, Noproto uint32 +pkg syscall (freebsd-arm), type IfData struct, Obytes uint32 +pkg syscall (freebsd-arm), type IfData struct, Oerrors uint32 +pkg syscall (freebsd-arm), type IfData struct, Omcasts uint32 +pkg syscall (freebsd-arm), type IfData struct, Opackets uint32 +pkg syscall (freebsd-arm), type IfData struct, Physical uint8 +pkg syscall (freebsd-arm), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-arm), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-arm), type IfData struct, Type uint8 +pkg syscall (freebsd-arm), type IfMsghdr struct +pkg syscall (freebsd-arm), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-arm), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-arm), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-arm), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-arm), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-arm), type IfaMsghdr struct +pkg syscall (freebsd-arm), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm), type IfmaMsghdr struct +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm), type Inet6Pktinfo struct +pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-arm), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-arm), type InterfaceAddrMessage struct +pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-arm), type InterfaceMessage struct +pkg syscall (freebsd-arm), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-arm), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-arm), type Iovec struct +pkg syscall (freebsd-arm), type Iovec struct, Base *uint8 +pkg syscall (freebsd-arm), type Iovec struct, Len uint32 +pkg syscall (freebsd-arm), type Kevent_t struct +pkg syscall (freebsd-arm), type Kevent_t struct, Data int32 +pkg syscall (freebsd-arm), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-arm), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-arm), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-arm), type Kevent_t struct, Ident uint32 +pkg syscall (freebsd-arm), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-arm), type Msghdr struct +pkg syscall (freebsd-arm), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-arm), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-arm), type Msghdr struct, Flags int32 +pkg syscall (freebsd-arm), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-arm), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-arm), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-arm), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-arm), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-arm), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-arm), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-arm), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-arm), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-arm), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-arm), type RawSockaddrUnix struct +pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-arm), type Rlimit struct +pkg syscall (freebsd-arm), type Rlimit struct, Cur int64 +pkg syscall (freebsd-arm), type Rlimit struct, Max int64 +pkg syscall (freebsd-arm), type RouteMessage struct +pkg syscall (freebsd-arm), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-arm), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-arm), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-arm), type RtMetrics struct +pkg syscall (freebsd-arm), type RtMetrics struct, Expire uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Filler [3]uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Hopcount uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Locks uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Mtu uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Pksent uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Recvpipe uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Rtt uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Rttvar uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Sendpipe uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Ssthresh uint32 +pkg syscall (freebsd-arm), type RtMetrics struct, Weight uint32 +pkg syscall (freebsd-arm), type RtMsghdr struct +pkg syscall (freebsd-arm), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-arm), type RtMsghdr struct, Inits uint32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-arm), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-arm), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-arm), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-arm), type Rusage struct, Idrss int32 +pkg syscall (freebsd-arm), type Rusage struct, Inblock int32 +pkg syscall (freebsd-arm), type Rusage struct, Isrss int32 +pkg syscall (freebsd-arm), type Rusage struct, Ixrss int32 +pkg syscall (freebsd-arm), type Rusage struct, Majflt int32 +pkg syscall (freebsd-arm), type Rusage struct, Maxrss int32 +pkg syscall (freebsd-arm), type Rusage struct, Minflt int32 +pkg syscall (freebsd-arm), type Rusage struct, Msgrcv int32 +pkg syscall (freebsd-arm), type Rusage struct, Msgsnd int32 +pkg syscall (freebsd-arm), type Rusage struct, Nivcsw int32 +pkg syscall (freebsd-arm), type Rusage struct, Nsignals int32 +pkg syscall (freebsd-arm), type Rusage struct, Nswap int32 +pkg syscall (freebsd-arm), type Rusage struct, Nvcsw int32 +pkg syscall (freebsd-arm), type Rusage struct, Oublock int32 +pkg syscall (freebsd-arm), type Rusage struct, Stime Timeval +pkg syscall (freebsd-arm), type Rusage struct, Utime Timeval +pkg syscall (freebsd-arm), type SockaddrDatalink struct +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm), type SocketControlMessage struct +pkg syscall (freebsd-arm), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-arm), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-arm), type Stat_t struct +pkg syscall (freebsd-arm), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-arm), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-arm), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-arm), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-arm), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-arm), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-arm), type Stat_t struct, Size int64 +pkg syscall (freebsd-arm), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-arm), type Statfs_t struct +pkg syscall (freebsd-arm), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-arm), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-arm), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-arm), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-arm), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-arm), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-arm), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-arm), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-arm), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-arm), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-arm), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-arm), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-arm), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-arm), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-arm), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-arm), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-arm), type Timespec struct, Nsec int32 +pkg syscall (freebsd-arm), type Timespec struct, Sec int64 +pkg syscall (freebsd-arm), type Timeval struct, Sec int64 +pkg syscall (freebsd-arm), type Timeval struct, Usec int32 +pkg syscall (freebsd-arm), type WaitStatus uint32 +pkg syscall (freebsd-arm), var Stderr int +pkg syscall (freebsd-arm), var Stdin int +pkg syscall (freebsd-arm), var Stdout int +pkg syscall (freebsd-arm-cgo), const AF_APPLETALK ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ARP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ATM ideal-int +pkg syscall (freebsd-arm-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-arm-cgo), const AF_CCITT ideal-int +pkg syscall (freebsd-arm-cgo), const AF_CHAOS ideal-int +pkg syscall (freebsd-arm-cgo), const AF_CNT ideal-int +pkg syscall (freebsd-arm-cgo), const AF_COIP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_DATAKIT ideal-int +pkg syscall (freebsd-arm-cgo), const AF_DECnet ideal-int +pkg syscall (freebsd-arm-cgo), const AF_DLI ideal-int +pkg syscall (freebsd-arm-cgo), const AF_E164 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ECMA ideal-int +pkg syscall (freebsd-arm-cgo), const AF_HYLINK ideal-int +pkg syscall (freebsd-arm-cgo), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_IMPLINK ideal-int +pkg syscall (freebsd-arm-cgo), const AF_IPX ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ISDN ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ISO ideal-int +pkg syscall (freebsd-arm-cgo), const AF_LAT ideal-int +pkg syscall (freebsd-arm-cgo), const AF_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const AF_LOCAL ideal-int +pkg syscall (freebsd-arm-cgo), const AF_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const AF_NATM ideal-int +pkg syscall (freebsd-arm-cgo), const AF_NETBIOS ideal-int +pkg syscall (freebsd-arm-cgo), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-arm-cgo), const AF_OSI ideal-int +pkg syscall (freebsd-arm-cgo), const AF_PUP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_ROUTE ideal-int +pkg syscall (freebsd-arm-cgo), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-arm-cgo), const AF_SIP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_SLOW ideal-int +pkg syscall (freebsd-arm-cgo), const AF_SNA ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-arm-cgo), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-arm-cgo), const B0 ideal-int +pkg syscall (freebsd-arm-cgo), const B110 ideal-int +pkg syscall (freebsd-arm-cgo), const B115200 ideal-int +pkg syscall (freebsd-arm-cgo), const B1200 ideal-int +pkg syscall (freebsd-arm-cgo), const B134 ideal-int +pkg syscall (freebsd-arm-cgo), const B14400 ideal-int +pkg syscall (freebsd-arm-cgo), const B150 ideal-int +pkg syscall (freebsd-arm-cgo), const B1800 ideal-int +pkg syscall (freebsd-arm-cgo), const B19200 ideal-int +pkg syscall (freebsd-arm-cgo), const B200 ideal-int +pkg syscall (freebsd-arm-cgo), const B230400 ideal-int +pkg syscall (freebsd-arm-cgo), const B2400 ideal-int +pkg syscall (freebsd-arm-cgo), const B28800 ideal-int +pkg syscall (freebsd-arm-cgo), const B300 ideal-int +pkg syscall (freebsd-arm-cgo), const B38400 ideal-int +pkg syscall (freebsd-arm-cgo), const B460800 ideal-int +pkg syscall (freebsd-arm-cgo), const B4800 ideal-int +pkg syscall (freebsd-arm-cgo), const B50 ideal-int +pkg syscall (freebsd-arm-cgo), const B57600 ideal-int +pkg syscall (freebsd-arm-cgo), const B600 ideal-int +pkg syscall (freebsd-arm-cgo), const B7200 ideal-int +pkg syscall (freebsd-arm-cgo), const B75 ideal-int +pkg syscall (freebsd-arm-cgo), const B76800 ideal-int +pkg syscall (freebsd-arm-cgo), const B921600 ideal-int +pkg syscall (freebsd-arm-cgo), const B9600 ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGBLEN ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGDLT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGETIF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGRSIG ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGSTATS ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCGTSTAMP ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCPROMISC ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSBLEN ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSDLT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETFNR ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETIF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETWF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSRSIG ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCSTSTAMP ideal-int +pkg syscall (freebsd-arm-cgo), const BIOCVERSION ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_A ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_ABS ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_ALU ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_AND ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_B ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_DIV ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_H ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_IMM ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_IND ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JA ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JEQ ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JGE ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JGT ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JMP ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_JSET ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_K ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_LD ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_LDX ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_LEN ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_LSH ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MEM ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MISC ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MSH ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_MUL ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_NEG ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_OR ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_RELEASE ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_RET ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_RSH ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_ST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_STX ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_SUB ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_TAX ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_TXA ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_FLAG_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_FORMAT_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NONE ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_T_NORMAL ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_W ideal-int +pkg syscall (freebsd-arm-cgo), const BPF_X ideal-int +pkg syscall (freebsd-arm-cgo), const BRKINT ideal-int +pkg syscall (freebsd-arm-cgo), const CFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const CLOCAL ideal-int +pkg syscall (freebsd-arm-cgo), const CREAD ideal-int +pkg syscall (freebsd-arm-cgo), const CS5 ideal-int +pkg syscall (freebsd-arm-cgo), const CS6 ideal-int +pkg syscall (freebsd-arm-cgo), const CS7 ideal-int +pkg syscall (freebsd-arm-cgo), const CS8 ideal-int +pkg syscall (freebsd-arm-cgo), const CSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const CSTART ideal-int +pkg syscall (freebsd-arm-cgo), const CSTATUS ideal-int +pkg syscall (freebsd-arm-cgo), const CSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const CSTOPB ideal-int +pkg syscall (freebsd-arm-cgo), const CSUSP ideal-int +pkg syscall (freebsd-arm-cgo), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-arm-cgo), const CTL_NET ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_A429 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_AOS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ARCNET ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_AURORA ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_AX25 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_CAN20B ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_CHAOS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_CHDLC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_DBUS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_DECT ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_DVB_CI ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ECONET ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_EN10MB ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_EN3MB ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ENC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ERF ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FC_2 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FDDI ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FRELAY ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GPF_F ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GPF_T ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_HHDLC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPMB ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPNET ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPOIB ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPV4 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IPV6 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_SRX_E2E ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_JUNIPER_VS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LAPD ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LIN ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LOOP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_LTALK ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MATCHING_MIN ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MFR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MOST ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MPLS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MTP2 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MTP3 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_MUX27010 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NFLOG ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NG40 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_NULL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PFLOG ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPI ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_PRONET ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_RAW ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_RIO ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SCCP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SITA ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SLIP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_STANAG_5066_D_PDU ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SUNATM ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_TZSP ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USB ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER0 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER1 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER10 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER11 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER12 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER13 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER14 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER15 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER2 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER3 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER4 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER5 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER6 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER7 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER8 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_USER9 ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_WIHART ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-arm-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-arm-cgo), const DT_BLK ideal-int +pkg syscall (freebsd-arm-cgo), const DT_CHR ideal-int +pkg syscall (freebsd-arm-cgo), const DT_DIR ideal-int +pkg syscall (freebsd-arm-cgo), const DT_FIFO ideal-int +pkg syscall (freebsd-arm-cgo), const DT_LNK ideal-int +pkg syscall (freebsd-arm-cgo), const DT_REG ideal-int +pkg syscall (freebsd-arm-cgo), const DT_SOCK ideal-int +pkg syscall (freebsd-arm-cgo), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-arm-cgo), const DT_WHT ideal-int +pkg syscall (freebsd-arm-cgo), const EAUTH Errno +pkg syscall (freebsd-arm-cgo), const EBADMSG Errno +pkg syscall (freebsd-arm-cgo), const EBADRPC Errno +pkg syscall (freebsd-arm-cgo), const ECAPMODE Errno +pkg syscall (freebsd-arm-cgo), const ECHO ideal-int +pkg syscall (freebsd-arm-cgo), const ECHOCTL ideal-int +pkg syscall (freebsd-arm-cgo), const ECHOE ideal-int +pkg syscall (freebsd-arm-cgo), const ECHOK ideal-int +pkg syscall (freebsd-arm-cgo), const ECHOKE ideal-int +pkg syscall (freebsd-arm-cgo), const ECHONL ideal-int +pkg syscall (freebsd-arm-cgo), const ECHOPRT ideal-int +pkg syscall (freebsd-arm-cgo), const EDOOFUS Errno +pkg syscall (freebsd-arm-cgo), const EFTYPE Errno +pkg syscall (freebsd-arm-cgo), const ELAST Errno +pkg syscall (freebsd-arm-cgo), const EMULTIHOP Errno +pkg syscall (freebsd-arm-cgo), const ENEEDAUTH Errno +pkg syscall (freebsd-arm-cgo), const ENOATTR Errno +pkg syscall (freebsd-arm-cgo), const ENOLINK Errno +pkg syscall (freebsd-arm-cgo), const ENOTCAPABLE Errno +pkg syscall (freebsd-arm-cgo), const EPROCLIM Errno +pkg syscall (freebsd-arm-cgo), const EPROCUNAVAIL Errno +pkg syscall (freebsd-arm-cgo), const EPROGMISMATCH Errno +pkg syscall (freebsd-arm-cgo), const EPROGUNAVAIL Errno +pkg syscall (freebsd-arm-cgo), const EPROTO Errno +pkg syscall (freebsd-arm-cgo), const ERPCMISMATCH Errno +pkg syscall (freebsd-arm-cgo), const EVFILT_AIO ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_FS ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_LIO ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_PROC ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_READ ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_USER ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-arm-cgo), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-arm-cgo), const EV_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const EV_CLEAR ideal-int +pkg syscall (freebsd-arm-cgo), const EV_DELETE ideal-int +pkg syscall (freebsd-arm-cgo), const EV_DISABLE ideal-int +pkg syscall (freebsd-arm-cgo), const EV_DISPATCH ideal-int +pkg syscall (freebsd-arm-cgo), const EV_ENABLE ideal-int +pkg syscall (freebsd-arm-cgo), const EV_EOF ideal-int +pkg syscall (freebsd-arm-cgo), const EV_ERROR ideal-int +pkg syscall (freebsd-arm-cgo), const EV_FLAG1 ideal-int +pkg syscall (freebsd-arm-cgo), const EV_ONESHOT ideal-int +pkg syscall (freebsd-arm-cgo), const EV_RECEIPT ideal-int +pkg syscall (freebsd-arm-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const EXTA ideal-int +pkg syscall (freebsd-arm-cgo), const EXTB ideal-int +pkg syscall (freebsd-arm-cgo), const EXTPROC ideal-int +pkg syscall (freebsd-arm-cgo), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm-cgo), const FD_SETSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const FLUSHO ideal-int +pkg syscall (freebsd-arm-cgo), const F_CANCEL ideal-int +pkg syscall (freebsd-arm-cgo), const F_DUP2FD ideal-int +pkg syscall (freebsd-arm-cgo), const F_DUP2FD_CLOEXEC ideal-int +pkg syscall (freebsd-arm-cgo), const F_DUPFD ideal-int +pkg syscall (freebsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (freebsd-arm-cgo), const F_GETFD ideal-int +pkg syscall (freebsd-arm-cgo), const F_GETFL ideal-int +pkg syscall (freebsd-arm-cgo), const F_GETLK ideal-int +pkg syscall (freebsd-arm-cgo), const F_GETOWN ideal-int +pkg syscall (freebsd-arm-cgo), const F_OGETLK ideal-int +pkg syscall (freebsd-arm-cgo), const F_OK ideal-int +pkg syscall (freebsd-arm-cgo), const F_OSETLK ideal-int +pkg syscall (freebsd-arm-cgo), const F_OSETLKW ideal-int +pkg syscall (freebsd-arm-cgo), const F_RDAHEAD ideal-int +pkg syscall (freebsd-arm-cgo), const F_RDLCK ideal-int +pkg syscall (freebsd-arm-cgo), const F_READAHEAD ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETFD ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETFL ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETLK ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETLKW ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-arm-cgo), const F_SETOWN ideal-int +pkg syscall (freebsd-arm-cgo), const F_UNLCK ideal-int +pkg syscall (freebsd-arm-cgo), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-arm-cgo), const F_WRLCK ideal-int +pkg syscall (freebsd-arm-cgo), const HUPCL ideal-int +pkg syscall (freebsd-arm-cgo), const ICANON ideal-int +pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER = 18 +pkg syscall (freebsd-arm-cgo), const ICMP6_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const ICRNL ideal-int +pkg syscall (freebsd-arm-cgo), const IEXTEN ideal-int +pkg syscall (freebsd-arm-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (freebsd-arm-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_CANTCONFIG ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_DEBUG ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_DYING ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_LINK0 ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_LINK1 ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_LINK2 ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_MONITOR ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_NOARP ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_PROMISC ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_RENAMING ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_RUNNING ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_SMART ideal-int +pkg syscall (freebsd-arm-cgo), const IFF_STATICARP ideal-int +pkg syscall (freebsd-arm-cgo), const IFNAMSIZ ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_1822 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_AAL2 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_AAL5 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ADSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ARAP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ARCNET ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ASYNC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_BSC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CEPT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CES ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CNR ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_COFFEE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DCN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DLSW ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DS0 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DS3 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DTM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ENC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_EON ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_EPLRS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ESCON ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ETHER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FAITH ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FAST ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FDDI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRELAY ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_GIF ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HDLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HIPPI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HSSI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_HY ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IFGSN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IMT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_IPXIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISDN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISDNS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISDNU ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ISUP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_LAPB ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_LAPD ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_LAPF ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_LOOP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MODEM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MPC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MPLS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MSDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MVL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_MYRINET ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_NFAS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_NSIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_OTHER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_P10 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_P80 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PARA ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PFLOG ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_POS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PPP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_PVC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_QLLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_RADSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_RS232 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_RSRB ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SDLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SHDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SLIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SONET ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SONETVT ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SRP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_STARLAN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_STF ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_T1 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_TDLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_TR008 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_ULTRA ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_USB ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_V11 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_V35 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_V36 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_V37 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VDSL ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X213 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X25 ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X25DDN ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X25MLP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_X25PLE ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_XETHER ideal-int +pkg syscall (freebsd-arm-cgo), const IGNBRK ideal-int +pkg syscall (freebsd-arm-cgo), const IGNCR ideal-int +pkg syscall (freebsd-arm-cgo), const IGNPAR ideal-int +pkg syscall (freebsd-arm-cgo), const IMAXBEL ideal-int +pkg syscall (freebsd-arm-cgo), const INLCR ideal-int +pkg syscall (freebsd-arm-cgo), const INPCK ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-arm-cgo), const IN_RFC3021_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_AH ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_APES ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_EON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IL ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_INP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MH ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ND ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SEND ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_ST ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-arm-cgo), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FAITH ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MMTU ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_VERSION ideal-int +pkg syscall (freebsd-arm-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm-cgo), const IP_BINDANY ideal-int +pkg syscall (freebsd-arm-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FAITH ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW3 ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_DEL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_GET ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-arm-cgo), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-arm-cgo), const IP_HDRINCL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MINTTL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MSFILTER ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MSS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_OFFMASK ideal-int +pkg syscall (freebsd-arm-cgo), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-arm-cgo), const IP_OPTIONS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVIF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVTOS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RECVTTL ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RETOPTS ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-arm-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-arm-cgo), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-arm-cgo), const ISIG ideal-int +pkg syscall (freebsd-arm-cgo), const ISTRIP ideal-int +pkg syscall (freebsd-arm-cgo), const IXANY ideal-int +pkg syscall (freebsd-arm-cgo), const IXOFF ideal-int +pkg syscall (freebsd-arm-cgo), const IXON ideal-int +pkg syscall (freebsd-arm-cgo), const LOCK_EX ideal-int +pkg syscall (freebsd-arm-cgo), const LOCK_NB ideal-int +pkg syscall (freebsd-arm-cgo), const LOCK_SH ideal-int +pkg syscall (freebsd-arm-cgo), const LOCK_UN ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_AUTOSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_CORE ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_DONTNEED ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_FREE ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_NOCORE ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_NORMAL ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_NOSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_PROTECT ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_RANDOM ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (freebsd-arm-cgo), const MADV_WILLNEED ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_ANON ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_COPY ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_FIXED ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_NOCORE ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_NORESERVE ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_NOSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_PREFAULT_READ ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_PRIVATE ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_RENAME ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_RESERVED0100 ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_SHARED ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_STACK ideal-int +pkg syscall (freebsd-arm-cgo), const MCL_CURRENT ideal-int +pkg syscall (freebsd-arm-cgo), const MCL_FUTURE ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_COMPAT ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_EOF ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_EOR ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_NBIO ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_OOB ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_PEEK ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_TRUNC ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_WAITALL ideal-int +pkg syscall (freebsd-arm-cgo), const MS_ASYNC ideal-int +pkg syscall (freebsd-arm-cgo), const MS_INVALIDATE ideal-int +pkg syscall (freebsd-arm-cgo), const MS_SYNC ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_IFLISTL ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-arm-cgo), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-arm-cgo), const NOFLSH ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_CHILD ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_DELETE ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_EXEC ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_EXIT ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFAND ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FFOR ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_FORK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_RENAME ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_TRACK ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-arm-cgo), const NOTE_WRITE ideal-int +pkg syscall (freebsd-arm-cgo), const OCRNL ideal-int +pkg syscall (freebsd-arm-cgo), const ONLCR ideal-int +pkg syscall (freebsd-arm-cgo), const ONLRET ideal-int +pkg syscall (freebsd-arm-cgo), const ONOCR ideal-int +pkg syscall (freebsd-arm-cgo), const ONOEOT ideal-int +pkg syscall (freebsd-arm-cgo), const OPOST ideal-int +pkg syscall (freebsd-arm-cgo), const O_ACCMODE ideal-int +pkg syscall (freebsd-arm-cgo), const O_DIRECT ideal-int +pkg syscall (freebsd-arm-cgo), const O_DIRECTORY ideal-int +pkg syscall (freebsd-arm-cgo), const O_EXEC ideal-int +pkg syscall (freebsd-arm-cgo), const O_EXLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const O_FSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const O_NDELAY ideal-int +pkg syscall (freebsd-arm-cgo), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-arm-cgo), const O_SHLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const O_TTY_INIT ideal-int +pkg syscall (freebsd-arm-cgo), const PARENB ideal-int +pkg syscall (freebsd-arm-cgo), const PARMRK ideal-int +pkg syscall (freebsd-arm-cgo), const PARODD ideal-int +pkg syscall (freebsd-arm-cgo), const PENDIN ideal-int +pkg syscall (freebsd-arm-cgo), const PRIO_PGRP = 1 +pkg syscall (freebsd-arm-cgo), const PRIO_PGRP ideal-int +pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS = 0 +pkg syscall (freebsd-arm-cgo), const PRIO_PROCESS ideal-int +pkg syscall (freebsd-arm-cgo), const PRIO_USER = 2 +pkg syscall (freebsd-arm-cgo), const PRIO_USER ideal-int +pkg syscall (freebsd-arm-cgo), const PROT_EXEC ideal-int +pkg syscall (freebsd-arm-cgo), const PROT_NONE ideal-int +pkg syscall (freebsd-arm-cgo), const PROT_READ ideal-int +pkg syscall (freebsd-arm-cgo), const PROT_WRITE ideal-int +pkg syscall (freebsd-arm-cgo), const PTRACE_CONT ideal-int +pkg syscall (freebsd-arm-cgo), const PTRACE_KILL ideal-int +pkg syscall (freebsd-arm-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_AS ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-arm-cgo), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-arm-cgo), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_BRD ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_DST ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_IFA ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_IFP ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_BRD ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_DST ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_GENMASK ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_IFA ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_IFP ideal-int +pkg syscall (freebsd-arm-cgo), const RTA_NETMASK ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_DONE ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_FMASK ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_HOST ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_LLDATA ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_LLINFO ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_LOCAL ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_PINNED ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_REJECT ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_STATIC ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_STICKY ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_UP ideal-int +pkg syscall (freebsd-arm-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_ADD ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_CHANGE ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_DELADDR ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_DELETE ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_GET ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_IFINFO ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_LOCK ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_LOSING ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_MISS ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_OLDADD ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-arm-cgo), const RTM_VERSION ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_MTU ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_RPIPE ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_RTT ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_SPIPE ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-arm-cgo), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-arm-cgo), const RT_CACHING_CONTEXT ideal-int +pkg syscall (freebsd-arm-cgo), const RT_DEFAULT_FIB ideal-int +pkg syscall (freebsd-arm-cgo), const RT_NORTREF ideal-int +pkg syscall (freebsd-arm-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-arm-cgo), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-arm-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-arm-cgo), const SCM_BINTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SCM_CREDS ideal-int +pkg syscall (freebsd-arm-cgo), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-arm-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-arm-cgo), const SIGCHLD Signal +pkg syscall (freebsd-arm-cgo), const SIGCONT Signal +pkg syscall (freebsd-arm-cgo), const SIGEMT Signal +pkg syscall (freebsd-arm-cgo), const SIGINFO Signal +pkg syscall (freebsd-arm-cgo), const SIGIO Signal +pkg syscall (freebsd-arm-cgo), const SIGIOT Signal +pkg syscall (freebsd-arm-cgo), const SIGLIBRT Signal +pkg syscall (freebsd-arm-cgo), const SIGLWP Signal +pkg syscall (freebsd-arm-cgo), const SIGPROF Signal +pkg syscall (freebsd-arm-cgo), const SIGSTOP Signal +pkg syscall (freebsd-arm-cgo), const SIGSYS Signal +pkg syscall (freebsd-arm-cgo), const SIGTHR Signal +pkg syscall (freebsd-arm-cgo), const SIGTSTP Signal +pkg syscall (freebsd-arm-cgo), const SIGTTIN Signal +pkg syscall (freebsd-arm-cgo), const SIGTTOU Signal +pkg syscall (freebsd-arm-cgo), const SIGURG Signal +pkg syscall (freebsd-arm-cgo), const SIGUSR1 Signal +pkg syscall (freebsd-arm-cgo), const SIGUSR2 Signal +pkg syscall (freebsd-arm-cgo), const SIGVTALRM Signal +pkg syscall (freebsd-arm-cgo), const SIGWINCH Signal +pkg syscall (freebsd-arm-cgo), const SIGXCPU Signal +pkg syscall (freebsd-arm-cgo), const SIGXFSZ Signal +pkg syscall (freebsd-arm-cgo), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCADDRT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCATMARK ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDELRT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFFIB ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGPGRP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFFIB ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCSPGRP ideal-int +pkg syscall (freebsd-arm-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-arm-cgo), const SOCK_RDM ideal-int +pkg syscall (freebsd-arm-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-arm-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-arm-cgo), const SO_BINTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SO_DEBUG ideal-int +pkg syscall (freebsd-arm-cgo), const SO_ERROR ideal-int +pkg syscall (freebsd-arm-cgo), const SO_LABEL ideal-int +pkg syscall (freebsd-arm-cgo), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-arm-cgo), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-arm-cgo), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-arm-cgo), const SO_NO_DDP ideal-int +pkg syscall (freebsd-arm-cgo), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-arm-cgo), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-arm-cgo), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-arm-cgo), const SO_PROTOCOL ideal-int +pkg syscall (freebsd-arm-cgo), const SO_PROTOTYPE ideal-int +pkg syscall (freebsd-arm-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-arm-cgo), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-arm-cgo), const SO_SETFIB ideal-int +pkg syscall (freebsd-arm-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-arm-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-arm-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-arm-cgo), const SO_TYPE ideal-int +pkg syscall (freebsd-arm-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-arm-cgo), const SO_USER_COOKIE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ACCESS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ACCT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_AUDIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_AUDITON ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_BIND ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHDIR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHMOD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHOWN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHROOT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOSE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CONNECT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_DUP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_DUP2 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EACCESS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXECVE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FCNTL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FORK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETAUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETEGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETEUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETFH ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPPID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETSID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_GETUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_IOCTL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_JAIL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KENV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KEVENT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KILL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_KTRACE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LGETFH ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LINKAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LISTEN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LSEEK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MADVISE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MINCORE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKDIR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKNOD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MMAP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MODFIND ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MOUNT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MSYNC ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_OBREAK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_OPEN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_OPENAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PDFORK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PDKILL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PIPE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_POLL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PREAD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PREADV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PROFIL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PSELECT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PTRACE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PWRITE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_READ ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_READLINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_READV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_REBOOT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RENAME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_REVOKE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RFORK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RMDIR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SBRK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SELECT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SENDTO ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETAUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETEGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETEUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETFIB ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETPGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETREGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETREUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETSID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SETUID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SOCKET ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SSTK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_STAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_STATFS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SWAPON ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SYNC ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UMASK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UNLINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UTIMES ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UTRACE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_VFORK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_WAIT6 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_WRITE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_WRITEV ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_YIELD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-arm-cgo), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___GETCWD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___SETUGID ideal-int +pkg syscall (freebsd-arm-cgo), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfStat ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (freebsd-arm-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIPMreq ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (freebsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIfData ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofLinger ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-arm-cgo), const TCIFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TCIOFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TCOFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_INFO ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MINMSS ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_MSS ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_NOOPT ideal-int +pkg syscall (freebsd-arm-cgo), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TCSAFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCCBRK ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCCDTR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCCONS ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCDRAIN ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCEXCL ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCEXT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCFLUSH ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGETA ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGETD ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGPGRP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGPTN ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGSID ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMBIC ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMBIS ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMGET ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCMSET ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_CAR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_CD ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_CTS ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_DCD ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_DSR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_DTR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_LE ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_RI ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_RNG ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_RTS ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_SR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCM_ST ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCNOTTY ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCNXCL ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCOUTQ ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_START ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSBRK ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSCTTY ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSDTR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSETA ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSETAF ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSETAW ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSETD ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSIG ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSPGRP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSTART ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSTAT ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSTI ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCUCNTL ideal-int +pkg syscall (freebsd-arm-cgo), const TOSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const VDISCARD ideal-int +pkg syscall (freebsd-arm-cgo), const VDSUSP ideal-int +pkg syscall (freebsd-arm-cgo), const VEOF ideal-int +pkg syscall (freebsd-arm-cgo), const VEOL ideal-int +pkg syscall (freebsd-arm-cgo), const VEOL2 ideal-int +pkg syscall (freebsd-arm-cgo), const VERASE ideal-int +pkg syscall (freebsd-arm-cgo), const VERASE2 ideal-int +pkg syscall (freebsd-arm-cgo), const VINTR ideal-int +pkg syscall (freebsd-arm-cgo), const VKILL ideal-int +pkg syscall (freebsd-arm-cgo), const VLNEXT ideal-int +pkg syscall (freebsd-arm-cgo), const VMIN ideal-int +pkg syscall (freebsd-arm-cgo), const VQUIT ideal-int +pkg syscall (freebsd-arm-cgo), const VREPRINT ideal-int +pkg syscall (freebsd-arm-cgo), const VSTART ideal-int +pkg syscall (freebsd-arm-cgo), const VSTATUS ideal-int +pkg syscall (freebsd-arm-cgo), const VSTOP ideal-int +pkg syscall (freebsd-arm-cgo), const VSUSP ideal-int +pkg syscall (freebsd-arm-cgo), const VTIME ideal-int +pkg syscall (freebsd-arm-cgo), const VWERASE ideal-int +pkg syscall (freebsd-arm-cgo), const WCONTINUED ideal-int +pkg syscall (freebsd-arm-cgo), const WCOREFLAG ideal-int +pkg syscall (freebsd-arm-cgo), const WEXITED ideal-int +pkg syscall (freebsd-arm-cgo), const WLINUXCLONE ideal-int +pkg syscall (freebsd-arm-cgo), const WNOHANG ideal-int +pkg syscall (freebsd-arm-cgo), const WNOWAIT ideal-int +pkg syscall (freebsd-arm-cgo), const WSTOPPED ideal-int +pkg syscall (freebsd-arm-cgo), const WTRAPPED ideal-int +pkg syscall (freebsd-arm-cgo), const WUNTRACED ideal-int +pkg syscall (freebsd-arm-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func Access(string, uint32) error +pkg syscall (freebsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-arm-cgo), func Bind(int, Sockaddr) error +pkg syscall (freebsd-arm-cgo), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-arm-cgo), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-arm-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-arm-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-arm-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-arm-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-arm-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-arm-cgo), func CheckBpfVersion(int) error +pkg syscall (freebsd-arm-cgo), func Chflags(string, int) error +pkg syscall (freebsd-arm-cgo), func Chroot(string) error +pkg syscall (freebsd-arm-cgo), func Close(int) error +pkg syscall (freebsd-arm-cgo), func CloseOnExec(int) +pkg syscall (freebsd-arm-cgo), func CmsgLen(int) int +pkg syscall (freebsd-arm-cgo), func CmsgSpace(int) int +pkg syscall (freebsd-arm-cgo), func Connect(int, Sockaddr) error +pkg syscall (freebsd-arm-cgo), func Dup(int) (int, error) +pkg syscall (freebsd-arm-cgo), func Dup2(int, int) error +pkg syscall (freebsd-arm-cgo), func Fchdir(int) error +pkg syscall (freebsd-arm-cgo), func Fchflags(string, int) error +pkg syscall (freebsd-arm-cgo), func Fchmod(int, uint32) error +pkg syscall (freebsd-arm-cgo), func Fchown(int, int, int) error +pkg syscall (freebsd-arm-cgo), func Flock(int, int) error +pkg syscall (freebsd-arm-cgo), func FlushBpf(int) error +pkg syscall (freebsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-arm-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-arm-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-arm-cgo), func Fsync(int) error +pkg syscall (freebsd-arm-cgo), func Ftruncate(int, int64) error +pkg syscall (freebsd-arm-cgo), func Futimes(int, []Timeval) error +pkg syscall (freebsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-arm-cgo), func Getdtablesize() int +pkg syscall (freebsd-arm-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func Getpgid(int) (int, error) +pkg syscall (freebsd-arm-cgo), func Getpgrp() int +pkg syscall (freebsd-arm-cgo), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm-cgo), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-arm-cgo), func Getsid(int) (int, error) +pkg syscall (freebsd-arm-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Issetugid() bool +pkg syscall (freebsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-arm-cgo), func Kill(int, Signal) error +pkg syscall (freebsd-arm-cgo), func Kqueue() (int, error) +pkg syscall (freebsd-arm-cgo), func Listen(int, int) error +pkg syscall (freebsd-arm-cgo), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-arm-cgo), func Mkfifo(string, uint32) error +pkg syscall (freebsd-arm-cgo), func Mknod(string, uint32, int) error +pkg syscall (freebsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-arm-cgo), func Munmap([]uint8) error +pkg syscall (freebsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-arm-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-arm-cgo), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Pipe([]int) error +pkg syscall (freebsd-arm-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm-cgo), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-arm-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func Revoke(string) error +pkg syscall (freebsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-arm-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-arm-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-arm-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-arm-cgo), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-arm-cgo), func SetBpfInterface(int, string) error +pkg syscall (freebsd-arm-cgo), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-arm-cgo), func SetNonblock(int, bool) error +pkg syscall (freebsd-arm-cgo), func Setegid(int) error +pkg syscall (freebsd-arm-cgo), func Seteuid(int) error +pkg syscall (freebsd-arm-cgo), func Setgid(int) error +pkg syscall (freebsd-arm-cgo), func Setgroups([]int) error +pkg syscall (freebsd-arm-cgo), func Setlogin(string) error +pkg syscall (freebsd-arm-cgo), func Setpgid(int, int) error +pkg syscall (freebsd-arm-cgo), func Setpriority(int, int, int) error +pkg syscall (freebsd-arm-cgo), func Setregid(int, int) error +pkg syscall (freebsd-arm-cgo), func Setreuid(int, int) error +pkg syscall (freebsd-arm-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-arm-cgo), func Setsid() (int, error) +pkg syscall (freebsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-arm-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-arm-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-arm-cgo), func Settimeofday(*Timeval) error +pkg syscall (freebsd-arm-cgo), func Setuid(int) error +pkg syscall (freebsd-arm-cgo), func Shutdown(int, int) error +pkg syscall (freebsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (freebsd-arm-cgo), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-arm-cgo), func Stat(string, *Stat_t) error +pkg syscall (freebsd-arm-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-arm-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-arm-cgo), func Sync() error +pkg syscall (freebsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-arm-cgo), func Sysctl(string) (string, error) +pkg syscall (freebsd-arm-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-arm-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-arm-cgo), func Truncate(string, int64) error +pkg syscall (freebsd-arm-cgo), func Umask(int) int +pkg syscall (freebsd-arm-cgo), func Undelete(string) error +pkg syscall (freebsd-arm-cgo), func UnixRights(...int) []uint8 +pkg syscall (freebsd-arm-cgo), func Unmount(string, int) error +pkg syscall (freebsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-arm-cgo), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-arm-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-arm-cgo), method (*Iovec) SetLen(int) +pkg syscall (freebsd-arm-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-arm-cgo), type BpfHdr struct +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-arm-cgo), type BpfInsn struct +pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-arm-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-arm-cgo), type BpfInsn struct, K uint32 +pkg syscall (freebsd-arm-cgo), type BpfProgram struct +pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-arm-cgo), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-arm-cgo), type BpfStat struct +pkg syscall (freebsd-arm-cgo), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-arm-cgo), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-arm-cgo), type BpfVersion struct +pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-arm-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-arm-cgo), type BpfZbuf struct +pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-arm-cgo), type BpfZbuf struct, Buflen uint32 +pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct +pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-arm-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-arm-cgo), type Cmsghdr struct +pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-arm-cgo), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-arm-cgo), type Credential struct +pkg syscall (freebsd-arm-cgo), type Credential struct, Gid uint32 +pkg syscall (freebsd-arm-cgo), type Credential struct, Groups []uint32 +pkg syscall (freebsd-arm-cgo), type Credential struct, Uid uint32 +pkg syscall (freebsd-arm-cgo), type Dirent struct +pkg syscall (freebsd-arm-cgo), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-arm-cgo), type Dirent struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type FdSet struct +pkg syscall (freebsd-arm-cgo), type FdSet struct, X__fds_bits [32]uint32 +pkg syscall (freebsd-arm-cgo), type Flock_t struct +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Len int64 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Pid int32 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Start int64 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Type int16 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Whence int16 +pkg syscall (freebsd-arm-cgo), type Fsid struct +pkg syscall (freebsd-arm-cgo), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct +pkg syscall (freebsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (freebsd-arm-cgo), type IPMreqn struct +pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct +pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (freebsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (freebsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (freebsd-arm-cgo), type IfData struct +pkg syscall (freebsd-arm-cgo), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Baudrate uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Collisions uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Datalen uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Epoch int64 +pkg syscall (freebsd-arm-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Hwassist uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Ibytes uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Ierrors uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Imcasts uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Ipackets uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Iqdrops uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-arm-cgo), type IfData struct, Link_state uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Metric uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Mtu uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Noproto uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Obytes uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Oerrors uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Omcasts uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Opackets uint32 +pkg syscall (freebsd-arm-cgo), type IfData struct, Physical uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct +pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct +pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct +pkg syscall (freebsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct +pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-arm-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-arm-cgo), type Iovec struct +pkg syscall (freebsd-arm-cgo), type Iovec struct, Base *uint8 +pkg syscall (freebsd-arm-cgo), type Iovec struct, Len uint32 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Data int32 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (freebsd-arm-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-arm-cgo), type Msghdr struct +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Flags int32 +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-arm-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-arm-cgo), type Rlimit struct +pkg syscall (freebsd-arm-cgo), type Rlimit struct, Cur int64 +pkg syscall (freebsd-arm-cgo), type Rlimit struct, Max int64 +pkg syscall (freebsd-arm-cgo), type RouteMessage struct +pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-arm-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-arm-cgo), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-arm-cgo), type RtMetrics struct +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Filler [3]uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Pksent uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (freebsd-arm-cgo), type RtMetrics struct, Weight uint32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Idrss int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Inblock int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Isrss int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Ixrss int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Majflt int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Maxrss int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Minflt int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Nsignals int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Nswap int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Oublock int32 +pkg syscall (freebsd-arm-cgo), type Rusage struct, Stime Timeval +pkg syscall (freebsd-arm-cgo), type Rusage struct, Utime Timeval +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-arm-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct +pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-arm-cgo), type Stat_t struct +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Size int64 +pkg syscall (freebsd-arm-cgo), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-arm-cgo), type Timespec struct, Nsec int32 +pkg syscall (freebsd-arm-cgo), type Timespec struct, Sec int64 +pkg syscall (freebsd-arm-cgo), type Timeval struct, Sec int64 +pkg syscall (freebsd-arm-cgo), type Timeval struct, Usec int32 +pkg syscall (freebsd-arm-cgo), type WaitStatus uint32 +pkg syscall (freebsd-arm-cgo), var Stderr int +pkg syscall (freebsd-arm-cgo), var Stdin int +pkg syscall (freebsd-arm-cgo), var Stdout int +pkg syscall (linux-386), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-386), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-386), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-386), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-386), const CLONE_DETACHED = 4194304 +pkg syscall (linux-386), const CLONE_DETACHED ideal-int +pkg syscall (linux-386), const CLONE_FILES = 1024 +pkg syscall (linux-386), const CLONE_FILES ideal-int +pkg syscall (linux-386), const CLONE_FS = 512 +pkg syscall (linux-386), const CLONE_FS ideal-int +pkg syscall (linux-386), const CLONE_IO = 2147483648 +pkg syscall (linux-386), const CLONE_IO ideal-int +pkg syscall (linux-386), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-386), const CLONE_NEWIPC ideal-int +pkg syscall (linux-386), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-386), const CLONE_NEWNET ideal-int +pkg syscall (linux-386), const CLONE_NEWNS = 131072 +pkg syscall (linux-386), const CLONE_NEWNS ideal-int +pkg syscall (linux-386), const CLONE_NEWPID = 536870912 +pkg syscall (linux-386), const CLONE_NEWPID ideal-int +pkg syscall (linux-386), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-386), const CLONE_NEWUSER ideal-int +pkg syscall (linux-386), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-386), const CLONE_NEWUTS ideal-int +pkg syscall (linux-386), const CLONE_PARENT = 32768 +pkg syscall (linux-386), const CLONE_PARENT ideal-int +pkg syscall (linux-386), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-386), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-386), const CLONE_PTRACE = 8192 +pkg syscall (linux-386), const CLONE_PTRACE ideal-int +pkg syscall (linux-386), const CLONE_SETTLS = 524288 +pkg syscall (linux-386), const CLONE_SETTLS ideal-int +pkg syscall (linux-386), const CLONE_SIGHAND = 2048 +pkg syscall (linux-386), const CLONE_SIGHAND ideal-int +pkg syscall (linux-386), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-386), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-386), const CLONE_THREAD = 65536 +pkg syscall (linux-386), const CLONE_THREAD ideal-int +pkg syscall (linux-386), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-386), const CLONE_UNTRACED ideal-int +pkg syscall (linux-386), const CLONE_VFORK = 16384 +pkg syscall (linux-386), const CLONE_VFORK ideal-int +pkg syscall (linux-386), const CLONE_VM = 256 +pkg syscall (linux-386), const CLONE_VM ideal-int +pkg syscall (linux-386), const ICMPV6_FILTER = 1 +pkg syscall (linux-386), const ICMPV6_FILTER ideal-int +pkg syscall (linux-386), const PRIO_PGRP = 1 +pkg syscall (linux-386), const PRIO_PGRP ideal-int +pkg syscall (linux-386), const PRIO_PROCESS = 0 +pkg syscall (linux-386), const PRIO_PROCESS ideal-int +pkg syscall (linux-386), const PRIO_USER = 2 +pkg syscall (linux-386), const PRIO_USER ideal-int +pkg syscall (linux-386), const SizeofICMPv6Filter = 32 +pkg syscall (linux-386), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-386), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-386), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-386), const TCIFLUSH = 0 +pkg syscall (linux-386), const TCIFLUSH ideal-int +pkg syscall (linux-386), const TCIOFLUSH = 2 +pkg syscall (linux-386), const TCIOFLUSH ideal-int +pkg syscall (linux-386), const TCOFLUSH = 1 +pkg syscall (linux-386), const TCOFLUSH ideal-int +pkg syscall (linux-386), func Dup3(int, int, int) error +pkg syscall (linux-386), func Getpriority(int, int) (int, error) +pkg syscall (linux-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-386), func Setpriority(int, int, int) error +pkg syscall (linux-386), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-386), type ICMPv6Filter struct +pkg syscall (linux-386), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-386), type IPv6MTUInfo struct +pkg syscall (linux-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-386), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-386), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-386-cgo), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-386-cgo), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-386-cgo), const CLONE_DETACHED = 4194304 +pkg syscall (linux-386-cgo), const CLONE_DETACHED ideal-int +pkg syscall (linux-386-cgo), const CLONE_FILES = 1024 +pkg syscall (linux-386-cgo), const CLONE_FILES ideal-int +pkg syscall (linux-386-cgo), const CLONE_FS = 512 +pkg syscall (linux-386-cgo), const CLONE_FS ideal-int +pkg syscall (linux-386-cgo), const CLONE_IO = 2147483648 +pkg syscall (linux-386-cgo), const CLONE_IO ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-386-cgo), const CLONE_NEWIPC ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-386-cgo), const CLONE_NEWNET ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWNS = 131072 +pkg syscall (linux-386-cgo), const CLONE_NEWNS ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWPID = 536870912 +pkg syscall (linux-386-cgo), const CLONE_NEWPID ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-386-cgo), const CLONE_NEWUSER ideal-int +pkg syscall (linux-386-cgo), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-386-cgo), const CLONE_NEWUTS ideal-int +pkg syscall (linux-386-cgo), const CLONE_PARENT = 32768 +pkg syscall (linux-386-cgo), const CLONE_PARENT ideal-int +pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-386-cgo), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-386-cgo), const CLONE_PTRACE = 8192 +pkg syscall (linux-386-cgo), const CLONE_PTRACE ideal-int +pkg syscall (linux-386-cgo), const CLONE_SETTLS = 524288 +pkg syscall (linux-386-cgo), const CLONE_SETTLS ideal-int +pkg syscall (linux-386-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (linux-386-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (linux-386-cgo), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-386-cgo), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-386-cgo), const CLONE_THREAD = 65536 +pkg syscall (linux-386-cgo), const CLONE_THREAD ideal-int +pkg syscall (linux-386-cgo), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-386-cgo), const CLONE_UNTRACED ideal-int +pkg syscall (linux-386-cgo), const CLONE_VFORK = 16384 +pkg syscall (linux-386-cgo), const CLONE_VFORK ideal-int +pkg syscall (linux-386-cgo), const CLONE_VM = 256 +pkg syscall (linux-386-cgo), const CLONE_VM ideal-int +pkg syscall (linux-386-cgo), const ICMPV6_FILTER = 1 +pkg syscall (linux-386-cgo), const ICMPV6_FILTER ideal-int +pkg syscall (linux-386-cgo), const PRIO_PGRP = 1 +pkg syscall (linux-386-cgo), const PRIO_PGRP ideal-int +pkg syscall (linux-386-cgo), const PRIO_PROCESS = 0 +pkg syscall (linux-386-cgo), const PRIO_PROCESS ideal-int +pkg syscall (linux-386-cgo), const PRIO_USER = 2 +pkg syscall (linux-386-cgo), const PRIO_USER ideal-int +pkg syscall (linux-386-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (linux-386-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-386-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-386-cgo), const TCIFLUSH = 0 +pkg syscall (linux-386-cgo), const TCIFLUSH ideal-int +pkg syscall (linux-386-cgo), const TCIOFLUSH = 2 +pkg syscall (linux-386-cgo), const TCIOFLUSH ideal-int +pkg syscall (linux-386-cgo), const TCOFLUSH = 1 +pkg syscall (linux-386-cgo), const TCOFLUSH ideal-int +pkg syscall (linux-386-cgo), func Dup3(int, int, int) error +pkg syscall (linux-386-cgo), func Getpriority(int, int) (int, error) +pkg syscall (linux-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-386-cgo), func Setpriority(int, int, int) error +pkg syscall (linux-386-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-386-cgo), type ICMPv6Filter struct +pkg syscall (linux-386-cgo), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-386-cgo), type IPv6MTUInfo struct +pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-386-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-386-cgo), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-amd64), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-amd64), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-amd64), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-amd64), const CLONE_DETACHED = 4194304 +pkg syscall (linux-amd64), const CLONE_DETACHED ideal-int +pkg syscall (linux-amd64), const CLONE_FILES = 1024 +pkg syscall (linux-amd64), const CLONE_FILES ideal-int +pkg syscall (linux-amd64), const CLONE_FS = 512 +pkg syscall (linux-amd64), const CLONE_FS ideal-int +pkg syscall (linux-amd64), const CLONE_IO = 2147483648 +pkg syscall (linux-amd64), const CLONE_IO ideal-int +pkg syscall (linux-amd64), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-amd64), const CLONE_NEWIPC ideal-int +pkg syscall (linux-amd64), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-amd64), const CLONE_NEWNET ideal-int +pkg syscall (linux-amd64), const CLONE_NEWNS = 131072 +pkg syscall (linux-amd64), const CLONE_NEWNS ideal-int +pkg syscall (linux-amd64), const CLONE_NEWPID = 536870912 +pkg syscall (linux-amd64), const CLONE_NEWPID ideal-int +pkg syscall (linux-amd64), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-amd64), const CLONE_NEWUSER ideal-int +pkg syscall (linux-amd64), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-amd64), const CLONE_NEWUTS ideal-int +pkg syscall (linux-amd64), const CLONE_PARENT = 32768 +pkg syscall (linux-amd64), const CLONE_PARENT ideal-int +pkg syscall (linux-amd64), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-amd64), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-amd64), const CLONE_PTRACE = 8192 +pkg syscall (linux-amd64), const CLONE_PTRACE ideal-int +pkg syscall (linux-amd64), const CLONE_SETTLS = 524288 +pkg syscall (linux-amd64), const CLONE_SETTLS ideal-int +pkg syscall (linux-amd64), const CLONE_SIGHAND = 2048 +pkg syscall (linux-amd64), const CLONE_SIGHAND ideal-int +pkg syscall (linux-amd64), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-amd64), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-amd64), const CLONE_THREAD = 65536 +pkg syscall (linux-amd64), const CLONE_THREAD ideal-int +pkg syscall (linux-amd64), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-amd64), const CLONE_UNTRACED ideal-int +pkg syscall (linux-amd64), const CLONE_VFORK = 16384 +pkg syscall (linux-amd64), const CLONE_VFORK ideal-int +pkg syscall (linux-amd64), const CLONE_VM = 256 +pkg syscall (linux-amd64), const CLONE_VM ideal-int +pkg syscall (linux-amd64), const ICMPV6_FILTER = 1 +pkg syscall (linux-amd64), const ICMPV6_FILTER ideal-int +pkg syscall (linux-amd64), const PRIO_PGRP = 1 +pkg syscall (linux-amd64), const PRIO_PGRP ideal-int +pkg syscall (linux-amd64), const PRIO_PROCESS = 0 +pkg syscall (linux-amd64), const PRIO_PROCESS ideal-int +pkg syscall (linux-amd64), const PRIO_USER = 2 +pkg syscall (linux-amd64), const PRIO_USER ideal-int +pkg syscall (linux-amd64), const SizeofICMPv6Filter = 32 +pkg syscall (linux-amd64), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-amd64), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-amd64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-amd64), const TCIFLUSH = 0 +pkg syscall (linux-amd64), const TCIFLUSH ideal-int +pkg syscall (linux-amd64), const TCIOFLUSH = 2 +pkg syscall (linux-amd64), const TCIOFLUSH ideal-int +pkg syscall (linux-amd64), const TCOFLUSH = 1 +pkg syscall (linux-amd64), const TCOFLUSH ideal-int +pkg syscall (linux-amd64), func Dup3(int, int, int) error +pkg syscall (linux-amd64), func Getpriority(int, int) (int, error) +pkg syscall (linux-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-amd64), func Setpriority(int, int, int) error +pkg syscall (linux-amd64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-amd64), type ICMPv6Filter struct +pkg syscall (linux-amd64), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-amd64), type IPv6MTUInfo struct +pkg syscall (linux-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-amd64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-amd64), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-amd64-cgo), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-amd64-cgo), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_DETACHED = 4194304 +pkg syscall (linux-amd64-cgo), const CLONE_DETACHED ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_FILES = 1024 +pkg syscall (linux-amd64-cgo), const CLONE_FILES ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_FS = 512 +pkg syscall (linux-amd64-cgo), const CLONE_FS ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_IO = 2147483648 +pkg syscall (linux-amd64-cgo), const CLONE_IO ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-amd64-cgo), const CLONE_NEWIPC ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-amd64-cgo), const CLONE_NEWNET ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWNS = 131072 +pkg syscall (linux-amd64-cgo), const CLONE_NEWNS ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWPID = 536870912 +pkg syscall (linux-amd64-cgo), const CLONE_NEWPID ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-amd64-cgo), const CLONE_NEWUSER ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-amd64-cgo), const CLONE_NEWUTS ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_PARENT = 32768 +pkg syscall (linux-amd64-cgo), const CLONE_PARENT ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-amd64-cgo), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_PTRACE = 8192 +pkg syscall (linux-amd64-cgo), const CLONE_PTRACE ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_SETTLS = 524288 +pkg syscall (linux-amd64-cgo), const CLONE_SETTLS ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (linux-amd64-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-amd64-cgo), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_THREAD = 65536 +pkg syscall (linux-amd64-cgo), const CLONE_THREAD ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-amd64-cgo), const CLONE_UNTRACED ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_VFORK = 16384 +pkg syscall (linux-amd64-cgo), const CLONE_VFORK ideal-int +pkg syscall (linux-amd64-cgo), const CLONE_VM = 256 +pkg syscall (linux-amd64-cgo), const CLONE_VM ideal-int +pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER = 1 +pkg syscall (linux-amd64-cgo), const ICMPV6_FILTER ideal-int +pkg syscall (linux-amd64-cgo), const PRIO_PGRP = 1 +pkg syscall (linux-amd64-cgo), const PRIO_PGRP ideal-int +pkg syscall (linux-amd64-cgo), const PRIO_PROCESS = 0 +pkg syscall (linux-amd64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (linux-amd64-cgo), const PRIO_USER = 2 +pkg syscall (linux-amd64-cgo), const PRIO_USER ideal-int +pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (linux-amd64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-amd64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-amd64-cgo), const TCIFLUSH = 0 +pkg syscall (linux-amd64-cgo), const TCIFLUSH ideal-int +pkg syscall (linux-amd64-cgo), const TCIOFLUSH = 2 +pkg syscall (linux-amd64-cgo), const TCIOFLUSH ideal-int +pkg syscall (linux-amd64-cgo), const TCOFLUSH = 1 +pkg syscall (linux-amd64-cgo), const TCOFLUSH ideal-int +pkg syscall (linux-amd64-cgo), func Dup3(int, int, int) error +pkg syscall (linux-amd64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (linux-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-amd64-cgo), func Setpriority(int, int, int) error +pkg syscall (linux-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct +pkg syscall (linux-amd64-cgo), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct +pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-arm), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-arm), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-arm), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-arm), const CLONE_DETACHED = 4194304 +pkg syscall (linux-arm), const CLONE_DETACHED ideal-int +pkg syscall (linux-arm), const CLONE_FILES = 1024 +pkg syscall (linux-arm), const CLONE_FILES ideal-int +pkg syscall (linux-arm), const CLONE_FS = 512 +pkg syscall (linux-arm), const CLONE_FS ideal-int +pkg syscall (linux-arm), const CLONE_IO = 2147483648 +pkg syscall (linux-arm), const CLONE_IO ideal-int +pkg syscall (linux-arm), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-arm), const CLONE_NEWIPC ideal-int +pkg syscall (linux-arm), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-arm), const CLONE_NEWNET ideal-int +pkg syscall (linux-arm), const CLONE_NEWNS = 131072 +pkg syscall (linux-arm), const CLONE_NEWNS ideal-int +pkg syscall (linux-arm), const CLONE_NEWPID = 536870912 +pkg syscall (linux-arm), const CLONE_NEWPID ideal-int +pkg syscall (linux-arm), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-arm), const CLONE_NEWUSER ideal-int +pkg syscall (linux-arm), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-arm), const CLONE_NEWUTS ideal-int +pkg syscall (linux-arm), const CLONE_PARENT = 32768 +pkg syscall (linux-arm), const CLONE_PARENT ideal-int +pkg syscall (linux-arm), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-arm), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-arm), const CLONE_PTRACE = 8192 +pkg syscall (linux-arm), const CLONE_PTRACE ideal-int +pkg syscall (linux-arm), const CLONE_SETTLS = 524288 +pkg syscall (linux-arm), const CLONE_SETTLS ideal-int +pkg syscall (linux-arm), const CLONE_SIGHAND = 2048 +pkg syscall (linux-arm), const CLONE_SIGHAND ideal-int +pkg syscall (linux-arm), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-arm), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-arm), const CLONE_THREAD = 65536 +pkg syscall (linux-arm), const CLONE_THREAD ideal-int +pkg syscall (linux-arm), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-arm), const CLONE_UNTRACED ideal-int +pkg syscall (linux-arm), const CLONE_VFORK = 16384 +pkg syscall (linux-arm), const CLONE_VFORK ideal-int +pkg syscall (linux-arm), const CLONE_VM = 256 +pkg syscall (linux-arm), const CLONE_VM ideal-int +pkg syscall (linux-arm), const ICMPV6_FILTER = 1 +pkg syscall (linux-arm), const ICMPV6_FILTER ideal-int +pkg syscall (linux-arm), const PRIO_PGRP = 1 +pkg syscall (linux-arm), const PRIO_PGRP ideal-int +pkg syscall (linux-arm), const PRIO_PROCESS = 0 +pkg syscall (linux-arm), const PRIO_PROCESS ideal-int +pkg syscall (linux-arm), const PRIO_USER = 2 +pkg syscall (linux-arm), const PRIO_USER ideal-int +pkg syscall (linux-arm), const SizeofICMPv6Filter = 32 +pkg syscall (linux-arm), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-arm), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-arm), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-arm), const TCIFLUSH = 0 +pkg syscall (linux-arm), const TCIFLUSH ideal-int +pkg syscall (linux-arm), const TCIOFLUSH = 2 +pkg syscall (linux-arm), const TCIOFLUSH ideal-int +pkg syscall (linux-arm), const TCOFLUSH = 1 +pkg syscall (linux-arm), const TCOFLUSH ideal-int +pkg syscall (linux-arm), func Dup3(int, int, int) error +pkg syscall (linux-arm), func Getpriority(int, int) (int, error) +pkg syscall (linux-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-arm), func Setpriority(int, int, int) error +pkg syscall (linux-arm), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-arm), type ICMPv6Filter struct +pkg syscall (linux-arm), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-arm), type IPv6MTUInfo struct +pkg syscall (linux-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-arm), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-arm), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-arm-cgo), const AF_ALG ideal-int +pkg syscall (linux-arm-cgo), const AF_APPLETALK ideal-int +pkg syscall (linux-arm-cgo), const AF_ASH ideal-int +pkg syscall (linux-arm-cgo), const AF_ATMPVC ideal-int +pkg syscall (linux-arm-cgo), const AF_ATMSVC ideal-int +pkg syscall (linux-arm-cgo), const AF_AX25 ideal-int +pkg syscall (linux-arm-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (linux-arm-cgo), const AF_BRIDGE ideal-int +pkg syscall (linux-arm-cgo), const AF_CAIF ideal-int +pkg syscall (linux-arm-cgo), const AF_CAN ideal-int +pkg syscall (linux-arm-cgo), const AF_DECnet ideal-int +pkg syscall (linux-arm-cgo), const AF_ECONET ideal-int +pkg syscall (linux-arm-cgo), const AF_FILE ideal-int +pkg syscall (linux-arm-cgo), const AF_IEEE802154 ideal-int +pkg syscall (linux-arm-cgo), const AF_IPX ideal-int +pkg syscall (linux-arm-cgo), const AF_IRDA ideal-int +pkg syscall (linux-arm-cgo), const AF_ISDN ideal-int +pkg syscall (linux-arm-cgo), const AF_IUCV ideal-int +pkg syscall (linux-arm-cgo), const AF_KEY ideal-int +pkg syscall (linux-arm-cgo), const AF_LLC ideal-int +pkg syscall (linux-arm-cgo), const AF_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const AF_MAX ideal-int +pkg syscall (linux-arm-cgo), const AF_NETBEUI ideal-int +pkg syscall (linux-arm-cgo), const AF_NETLINK ideal-int +pkg syscall (linux-arm-cgo), const AF_NETROM ideal-int +pkg syscall (linux-arm-cgo), const AF_PACKET ideal-int +pkg syscall (linux-arm-cgo), const AF_PHONET ideal-int +pkg syscall (linux-arm-cgo), const AF_PPPOX ideal-int +pkg syscall (linux-arm-cgo), const AF_RDS ideal-int +pkg syscall (linux-arm-cgo), const AF_ROSE ideal-int +pkg syscall (linux-arm-cgo), const AF_ROUTE ideal-int +pkg syscall (linux-arm-cgo), const AF_RXRPC ideal-int +pkg syscall (linux-arm-cgo), const AF_SECURITY ideal-int +pkg syscall (linux-arm-cgo), const AF_SNA ideal-int +pkg syscall (linux-arm-cgo), const AF_TIPC ideal-int +pkg syscall (linux-arm-cgo), const AF_WANPIPE ideal-int +pkg syscall (linux-arm-cgo), const AF_X25 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ASH ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ATM ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_AX25 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_BIF ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_CISCO ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_DLCI ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ECONET ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_EETHER ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FCAL ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FCPL ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FCPP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FDDI ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_FRAD ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_HDLC ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_IRDA ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_LAPB ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_NETROM ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_NONE ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_PPP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_PRONET ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_ROSE ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_SIT ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_SKIP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_SLIP ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_VOID ideal-int +pkg syscall (linux-arm-cgo), const ARPHRD_X25 ideal-int +pkg syscall (linux-arm-cgo), const B0 ideal-int +pkg syscall (linux-arm-cgo), const B1000000 ideal-int +pkg syscall (linux-arm-cgo), const B110 ideal-int +pkg syscall (linux-arm-cgo), const B115200 ideal-int +pkg syscall (linux-arm-cgo), const B1152000 ideal-int +pkg syscall (linux-arm-cgo), const B1200 ideal-int +pkg syscall (linux-arm-cgo), const B134 ideal-int +pkg syscall (linux-arm-cgo), const B150 ideal-int +pkg syscall (linux-arm-cgo), const B1500000 ideal-int +pkg syscall (linux-arm-cgo), const B1800 ideal-int +pkg syscall (linux-arm-cgo), const B19200 ideal-int +pkg syscall (linux-arm-cgo), const B200 ideal-int +pkg syscall (linux-arm-cgo), const B2000000 ideal-int +pkg syscall (linux-arm-cgo), const B230400 ideal-int +pkg syscall (linux-arm-cgo), const B2400 ideal-int +pkg syscall (linux-arm-cgo), const B2500000 ideal-int +pkg syscall (linux-arm-cgo), const B300 ideal-int +pkg syscall (linux-arm-cgo), const B3000000 ideal-int +pkg syscall (linux-arm-cgo), const B3500000 ideal-int +pkg syscall (linux-arm-cgo), const B38400 ideal-int +pkg syscall (linux-arm-cgo), const B4000000 ideal-int +pkg syscall (linux-arm-cgo), const B460800 ideal-int +pkg syscall (linux-arm-cgo), const B4800 ideal-int +pkg syscall (linux-arm-cgo), const B50 ideal-int +pkg syscall (linux-arm-cgo), const B500000 ideal-int +pkg syscall (linux-arm-cgo), const B57600 ideal-int +pkg syscall (linux-arm-cgo), const B576000 ideal-int +pkg syscall (linux-arm-cgo), const B600 ideal-int +pkg syscall (linux-arm-cgo), const B75 ideal-int +pkg syscall (linux-arm-cgo), const B921600 ideal-int +pkg syscall (linux-arm-cgo), const B9600 ideal-int +pkg syscall (linux-arm-cgo), const BPF_A ideal-int +pkg syscall (linux-arm-cgo), const BPF_ABS ideal-int +pkg syscall (linux-arm-cgo), const BPF_ADD ideal-int +pkg syscall (linux-arm-cgo), const BPF_ALU ideal-int +pkg syscall (linux-arm-cgo), const BPF_AND ideal-int +pkg syscall (linux-arm-cgo), const BPF_B ideal-int +pkg syscall (linux-arm-cgo), const BPF_DIV ideal-int +pkg syscall (linux-arm-cgo), const BPF_H ideal-int +pkg syscall (linux-arm-cgo), const BPF_IMM ideal-int +pkg syscall (linux-arm-cgo), const BPF_IND ideal-int +pkg syscall (linux-arm-cgo), const BPF_JA ideal-int +pkg syscall (linux-arm-cgo), const BPF_JEQ ideal-int +pkg syscall (linux-arm-cgo), const BPF_JGE ideal-int +pkg syscall (linux-arm-cgo), const BPF_JGT ideal-int +pkg syscall (linux-arm-cgo), const BPF_JMP ideal-int +pkg syscall (linux-arm-cgo), const BPF_JSET ideal-int +pkg syscall (linux-arm-cgo), const BPF_K ideal-int +pkg syscall (linux-arm-cgo), const BPF_LD ideal-int +pkg syscall (linux-arm-cgo), const BPF_LDX ideal-int +pkg syscall (linux-arm-cgo), const BPF_LEN ideal-int +pkg syscall (linux-arm-cgo), const BPF_LSH ideal-int +pkg syscall (linux-arm-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-arm-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (linux-arm-cgo), const BPF_MEM ideal-int +pkg syscall (linux-arm-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (linux-arm-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-arm-cgo), const BPF_MISC ideal-int +pkg syscall (linux-arm-cgo), const BPF_MSH ideal-int +pkg syscall (linux-arm-cgo), const BPF_MUL ideal-int +pkg syscall (linux-arm-cgo), const BPF_NEG ideal-int +pkg syscall (linux-arm-cgo), const BPF_OR ideal-int +pkg syscall (linux-arm-cgo), const BPF_RET ideal-int +pkg syscall (linux-arm-cgo), const BPF_RSH ideal-int +pkg syscall (linux-arm-cgo), const BPF_ST ideal-int +pkg syscall (linux-arm-cgo), const BPF_STX ideal-int +pkg syscall (linux-arm-cgo), const BPF_SUB ideal-int +pkg syscall (linux-arm-cgo), const BPF_TAX ideal-int +pkg syscall (linux-arm-cgo), const BPF_TXA ideal-int +pkg syscall (linux-arm-cgo), const BPF_W ideal-int +pkg syscall (linux-arm-cgo), const BPF_X ideal-int +pkg syscall (linux-arm-cgo), const BRKINT ideal-int +pkg syscall (linux-arm-cgo), const CLOCAL ideal-int +pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID = 2097152 +pkg syscall (linux-arm-cgo), const CLONE_CHILD_CLEARTID ideal-int +pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID = 16777216 +pkg syscall (linux-arm-cgo), const CLONE_CHILD_SETTID ideal-int +pkg syscall (linux-arm-cgo), const CLONE_DETACHED = 4194304 +pkg syscall (linux-arm-cgo), const CLONE_DETACHED ideal-int +pkg syscall (linux-arm-cgo), const CLONE_FILES = 1024 +pkg syscall (linux-arm-cgo), const CLONE_FILES ideal-int +pkg syscall (linux-arm-cgo), const CLONE_FS = 512 +pkg syscall (linux-arm-cgo), const CLONE_FS ideal-int +pkg syscall (linux-arm-cgo), const CLONE_IO = 2147483648 +pkg syscall (linux-arm-cgo), const CLONE_IO ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWIPC = 134217728 +pkg syscall (linux-arm-cgo), const CLONE_NEWIPC ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWNET = 1073741824 +pkg syscall (linux-arm-cgo), const CLONE_NEWNET ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWNS = 131072 +pkg syscall (linux-arm-cgo), const CLONE_NEWNS ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWPID = 536870912 +pkg syscall (linux-arm-cgo), const CLONE_NEWPID ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWUSER = 268435456 +pkg syscall (linux-arm-cgo), const CLONE_NEWUSER ideal-int +pkg syscall (linux-arm-cgo), const CLONE_NEWUTS = 67108864 +pkg syscall (linux-arm-cgo), const CLONE_NEWUTS ideal-int +pkg syscall (linux-arm-cgo), const CLONE_PARENT = 32768 +pkg syscall (linux-arm-cgo), const CLONE_PARENT ideal-int +pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID = 1048576 +pkg syscall (linux-arm-cgo), const CLONE_PARENT_SETTID ideal-int +pkg syscall (linux-arm-cgo), const CLONE_PTRACE = 8192 +pkg syscall (linux-arm-cgo), const CLONE_PTRACE ideal-int +pkg syscall (linux-arm-cgo), const CLONE_SETTLS = 524288 +pkg syscall (linux-arm-cgo), const CLONE_SETTLS ideal-int +pkg syscall (linux-arm-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (linux-arm-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM = 262144 +pkg syscall (linux-arm-cgo), const CLONE_SYSVSEM ideal-int +pkg syscall (linux-arm-cgo), const CLONE_THREAD = 65536 +pkg syscall (linux-arm-cgo), const CLONE_THREAD ideal-int +pkg syscall (linux-arm-cgo), const CLONE_UNTRACED = 8388608 +pkg syscall (linux-arm-cgo), const CLONE_UNTRACED ideal-int +pkg syscall (linux-arm-cgo), const CLONE_VFORK = 16384 +pkg syscall (linux-arm-cgo), const CLONE_VFORK ideal-int +pkg syscall (linux-arm-cgo), const CLONE_VM = 256 +pkg syscall (linux-arm-cgo), const CLONE_VM ideal-int +pkg syscall (linux-arm-cgo), const CREAD ideal-int +pkg syscall (linux-arm-cgo), const CS5 ideal-int +pkg syscall (linux-arm-cgo), const CS6 ideal-int +pkg syscall (linux-arm-cgo), const CS7 ideal-int +pkg syscall (linux-arm-cgo), const CS8 ideal-int +pkg syscall (linux-arm-cgo), const CSIZE ideal-int +pkg syscall (linux-arm-cgo), const CSTOPB ideal-int +pkg syscall (linux-arm-cgo), const DT_BLK ideal-int +pkg syscall (linux-arm-cgo), const DT_CHR ideal-int +pkg syscall (linux-arm-cgo), const DT_DIR ideal-int +pkg syscall (linux-arm-cgo), const DT_FIFO ideal-int +pkg syscall (linux-arm-cgo), const DT_LNK ideal-int +pkg syscall (linux-arm-cgo), const DT_REG ideal-int +pkg syscall (linux-arm-cgo), const DT_SOCK ideal-int +pkg syscall (linux-arm-cgo), const DT_UNKNOWN ideal-int +pkg syscall (linux-arm-cgo), const DT_WHT ideal-int +pkg syscall (linux-arm-cgo), const EADV Errno +pkg syscall (linux-arm-cgo), const EBADE Errno +pkg syscall (linux-arm-cgo), const EBADFD Errno +pkg syscall (linux-arm-cgo), const EBADMSG Errno +pkg syscall (linux-arm-cgo), const EBADR Errno +pkg syscall (linux-arm-cgo), const EBADRQC Errno +pkg syscall (linux-arm-cgo), const EBADSLT Errno +pkg syscall (linux-arm-cgo), const EBFONT Errno +pkg syscall (linux-arm-cgo), const ECHO ideal-int +pkg syscall (linux-arm-cgo), const ECHOCTL ideal-int +pkg syscall (linux-arm-cgo), const ECHOE ideal-int +pkg syscall (linux-arm-cgo), const ECHOK ideal-int +pkg syscall (linux-arm-cgo), const ECHOKE ideal-int +pkg syscall (linux-arm-cgo), const ECHONL ideal-int +pkg syscall (linux-arm-cgo), const ECHOPRT ideal-int +pkg syscall (linux-arm-cgo), const ECHRNG Errno +pkg syscall (linux-arm-cgo), const ECOMM Errno +pkg syscall (linux-arm-cgo), const EDEADLOCK Errno +pkg syscall (linux-arm-cgo), const EDOTDOT Errno +pkg syscall (linux-arm-cgo), const EHWPOISON Errno +pkg syscall (linux-arm-cgo), const EISNAM Errno +pkg syscall (linux-arm-cgo), const EKEYEXPIRED Errno +pkg syscall (linux-arm-cgo), const EKEYREJECTED Errno +pkg syscall (linux-arm-cgo), const EKEYREVOKED Errno +pkg syscall (linux-arm-cgo), const EL2HLT Errno +pkg syscall (linux-arm-cgo), const EL2NSYNC Errno +pkg syscall (linux-arm-cgo), const EL3HLT Errno +pkg syscall (linux-arm-cgo), const EL3RST Errno +pkg syscall (linux-arm-cgo), const ELF_NGREG ideal-int +pkg syscall (linux-arm-cgo), const ELF_PRARGSZ ideal-int +pkg syscall (linux-arm-cgo), const ELIBACC Errno +pkg syscall (linux-arm-cgo), const ELIBBAD Errno +pkg syscall (linux-arm-cgo), const ELIBEXEC Errno +pkg syscall (linux-arm-cgo), const ELIBMAX Errno +pkg syscall (linux-arm-cgo), const ELIBSCN Errno +pkg syscall (linux-arm-cgo), const ELNRNG Errno +pkg syscall (linux-arm-cgo), const EMEDIUMTYPE Errno +pkg syscall (linux-arm-cgo), const EMULTIHOP Errno +pkg syscall (linux-arm-cgo), const ENAVAIL Errno +pkg syscall (linux-arm-cgo), const ENOANO Errno +pkg syscall (linux-arm-cgo), const ENOCSI Errno +pkg syscall (linux-arm-cgo), const ENODATA Errno +pkg syscall (linux-arm-cgo), const ENOKEY Errno +pkg syscall (linux-arm-cgo), const ENOLINK Errno +pkg syscall (linux-arm-cgo), const ENOMEDIUM Errno +pkg syscall (linux-arm-cgo), const ENONET Errno +pkg syscall (linux-arm-cgo), const ENOPKG Errno +pkg syscall (linux-arm-cgo), const ENOSR Errno +pkg syscall (linux-arm-cgo), const ENOSTR Errno +pkg syscall (linux-arm-cgo), const ENOTNAM Errno +pkg syscall (linux-arm-cgo), const ENOTRECOVERABLE Errno +pkg syscall (linux-arm-cgo), const ENOTUNIQ Errno +pkg syscall (linux-arm-cgo), const EOWNERDEAD Errno +pkg syscall (linux-arm-cgo), const EPOLLERR ideal-int +pkg syscall (linux-arm-cgo), const EPOLLET ideal-int +pkg syscall (linux-arm-cgo), const EPOLLHUP ideal-int +pkg syscall (linux-arm-cgo), const EPOLLIN ideal-int +pkg syscall (linux-arm-cgo), const EPOLLMSG ideal-int +pkg syscall (linux-arm-cgo), const EPOLLONESHOT ideal-int +pkg syscall (linux-arm-cgo), const EPOLLOUT ideal-int +pkg syscall (linux-arm-cgo), const EPOLLPRI ideal-int +pkg syscall (linux-arm-cgo), const EPOLLRDBAND ideal-int +pkg syscall (linux-arm-cgo), const EPOLLRDHUP ideal-int +pkg syscall (linux-arm-cgo), const EPOLLRDNORM ideal-int +pkg syscall (linux-arm-cgo), const EPOLLWRBAND ideal-int +pkg syscall (linux-arm-cgo), const EPOLLWRNORM ideal-int +pkg syscall (linux-arm-cgo), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-arm-cgo), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-arm-cgo), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-arm-cgo), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-arm-cgo), const EPROTO Errno +pkg syscall (linux-arm-cgo), const EREMCHG Errno +pkg syscall (linux-arm-cgo), const EREMOTEIO Errno +pkg syscall (linux-arm-cgo), const ERESTART Errno +pkg syscall (linux-arm-cgo), const ERFKILL Errno +pkg syscall (linux-arm-cgo), const ESRMNT Errno +pkg syscall (linux-arm-cgo), const ESTRPIPE Errno +pkg syscall (linux-arm-cgo), const ETH_P_1588 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_8021Q ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_802_2 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_802_3 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_AARP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ALL ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_AOE ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ARCNET ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ARP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ATALK ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_AX25 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_BPQ ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_CAIF ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_CAN ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_CONTROL ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_CUST ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DDCMP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DEC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DIAG ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_DSA ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_ECONET ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_EDSA ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_FCOE ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_FIP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_HDLC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IPV6 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IPX ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_IRDA ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_LAT ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_LOOP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PAE ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PAUSE ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PHONET ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PUP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_PUPAT ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_RARP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_SCA ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_SLOW ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_SNAP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_TEB ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_TIPC ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_TRAILER ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_WCCP ideal-int +pkg syscall (linux-arm-cgo), const ETH_P_X25 ideal-int +pkg syscall (linux-arm-cgo), const ETIME Errno +pkg syscall (linux-arm-cgo), const EUCLEAN Errno +pkg syscall (linux-arm-cgo), const EUNATCH Errno +pkg syscall (linux-arm-cgo), const EXFULL Errno +pkg syscall (linux-arm-cgo), const FD_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const FD_SETSIZE ideal-int +pkg syscall (linux-arm-cgo), const FLUSHO ideal-int +pkg syscall (linux-arm-cgo), const F_DUPFD ideal-int +pkg syscall (linux-arm-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const F_EXLCK ideal-int +pkg syscall (linux-arm-cgo), const F_GETFD ideal-int +pkg syscall (linux-arm-cgo), const F_GETFL ideal-int +pkg syscall (linux-arm-cgo), const F_GETLEASE ideal-int +pkg syscall (linux-arm-cgo), const F_GETLK ideal-int +pkg syscall (linux-arm-cgo), const F_GETLK64 ideal-int +pkg syscall (linux-arm-cgo), const F_GETOWN ideal-int +pkg syscall (linux-arm-cgo), const F_GETOWN_EX ideal-int +pkg syscall (linux-arm-cgo), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-arm-cgo), const F_GETSIG ideal-int +pkg syscall (linux-arm-cgo), const F_LOCK ideal-int +pkg syscall (linux-arm-cgo), const F_NOTIFY ideal-int +pkg syscall (linux-arm-cgo), const F_OK ideal-int +pkg syscall (linux-arm-cgo), const F_RDLCK ideal-int +pkg syscall (linux-arm-cgo), const F_SETFD ideal-int +pkg syscall (linux-arm-cgo), const F_SETFL ideal-int +pkg syscall (linux-arm-cgo), const F_SETLEASE ideal-int +pkg syscall (linux-arm-cgo), const F_SETLK ideal-int +pkg syscall (linux-arm-cgo), const F_SETLK64 ideal-int +pkg syscall (linux-arm-cgo), const F_SETLKW ideal-int +pkg syscall (linux-arm-cgo), const F_SETLKW64 ideal-int +pkg syscall (linux-arm-cgo), const F_SETOWN ideal-int +pkg syscall (linux-arm-cgo), const F_SETOWN_EX ideal-int +pkg syscall (linux-arm-cgo), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-arm-cgo), const F_SETSIG ideal-int +pkg syscall (linux-arm-cgo), const F_SHLCK ideal-int +pkg syscall (linux-arm-cgo), const F_TEST ideal-int +pkg syscall (linux-arm-cgo), const F_TLOCK ideal-int +pkg syscall (linux-arm-cgo), const F_ULOCK ideal-int +pkg syscall (linux-arm-cgo), const F_UNLCK ideal-int +pkg syscall (linux-arm-cgo), const F_WRLCK ideal-int +pkg syscall (linux-arm-cgo), const HUPCL ideal-int +pkg syscall (linux-arm-cgo), const ICANON ideal-int +pkg syscall (linux-arm-cgo), const ICMPV6_FILTER = 1 +pkg syscall (linux-arm-cgo), const ICMPV6_FILTER ideal-int +pkg syscall (linux-arm-cgo), const ICRNL ideal-int +pkg syscall (linux-arm-cgo), const IEXTEN ideal-int +pkg syscall (linux-arm-cgo), const IFA_ADDRESS ideal-int +pkg syscall (linux-arm-cgo), const IFA_ANYCAST ideal-int +pkg syscall (linux-arm-cgo), const IFA_BROADCAST ideal-int +pkg syscall (linux-arm-cgo), const IFA_CACHEINFO ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_NODAD ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-arm-cgo), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-arm-cgo), const IFA_LABEL ideal-int +pkg syscall (linux-arm-cgo), const IFA_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const IFA_MAX ideal-int +pkg syscall (linux-arm-cgo), const IFA_MULTICAST ideal-int +pkg syscall (linux-arm-cgo), const IFA_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (linux-arm-cgo), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-arm-cgo), const IFF_DEBUG ideal-int +pkg syscall (linux-arm-cgo), const IFF_DYNAMIC ideal-int +pkg syscall (linux-arm-cgo), const IFF_MASTER ideal-int +pkg syscall (linux-arm-cgo), const IFF_NOARP ideal-int +pkg syscall (linux-arm-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-arm-cgo), const IFF_NO_PI ideal-int +pkg syscall (linux-arm-cgo), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-arm-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-arm-cgo), const IFF_PORTSEL ideal-int +pkg syscall (linux-arm-cgo), const IFF_PROMISC ideal-int +pkg syscall (linux-arm-cgo), const IFF_RUNNING ideal-int +pkg syscall (linux-arm-cgo), const IFF_SLAVE ideal-int +pkg syscall (linux-arm-cgo), const IFF_TAP ideal-int +pkg syscall (linux-arm-cgo), const IFF_TUN ideal-int +pkg syscall (linux-arm-cgo), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-arm-cgo), const IFF_VNET_HDR ideal-int +pkg syscall (linux-arm-cgo), const IFLA_ADDRESS ideal-int +pkg syscall (linux-arm-cgo), const IFLA_BROADCAST ideal-int +pkg syscall (linux-arm-cgo), const IFLA_COST ideal-int +pkg syscall (linux-arm-cgo), const IFLA_IFALIAS ideal-int +pkg syscall (linux-arm-cgo), const IFLA_IFNAME ideal-int +pkg syscall (linux-arm-cgo), const IFLA_LINK ideal-int +pkg syscall (linux-arm-cgo), const IFLA_LINKINFO ideal-int +pkg syscall (linux-arm-cgo), const IFLA_LINKMODE ideal-int +pkg syscall (linux-arm-cgo), const IFLA_MAP ideal-int +pkg syscall (linux-arm-cgo), const IFLA_MASTER ideal-int +pkg syscall (linux-arm-cgo), const IFLA_MAX ideal-int +pkg syscall (linux-arm-cgo), const IFLA_MTU ideal-int +pkg syscall (linux-arm-cgo), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-arm-cgo), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-arm-cgo), const IFLA_PRIORITY ideal-int +pkg syscall (linux-arm-cgo), const IFLA_PROTINFO ideal-int +pkg syscall (linux-arm-cgo), const IFLA_QDISC ideal-int +pkg syscall (linux-arm-cgo), const IFLA_STATS ideal-int +pkg syscall (linux-arm-cgo), const IFLA_TXQLEN ideal-int +pkg syscall (linux-arm-cgo), const IFLA_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const IFLA_WEIGHT ideal-int +pkg syscall (linux-arm-cgo), const IFLA_WIRELESS ideal-int +pkg syscall (linux-arm-cgo), const IFNAMSIZ ideal-int +pkg syscall (linux-arm-cgo), const IGNBRK ideal-int +pkg syscall (linux-arm-cgo), const IGNCR ideal-int +pkg syscall (linux-arm-cgo), const IGNPAR ideal-int +pkg syscall (linux-arm-cgo), const IMAXBEL ideal-int +pkg syscall (linux-arm-cgo), const INLCR ideal-int +pkg syscall (linux-arm-cgo), const INPCK ideal-int +pkg syscall (linux-arm-cgo), const IN_ACCESS ideal-int +pkg syscall (linux-arm-cgo), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-arm-cgo), const IN_ATTRIB ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (linux-arm-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-arm-cgo), const IN_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const IN_CLOSE ideal-int +pkg syscall (linux-arm-cgo), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-arm-cgo), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-arm-cgo), const IN_CREATE ideal-int +pkg syscall (linux-arm-cgo), const IN_DELETE ideal-int +pkg syscall (linux-arm-cgo), const IN_DELETE_SELF ideal-int +pkg syscall (linux-arm-cgo), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-arm-cgo), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-arm-cgo), const IN_IGNORED ideal-int +pkg syscall (linux-arm-cgo), const IN_ISDIR ideal-int +pkg syscall (linux-arm-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-arm-cgo), const IN_MASK_ADD ideal-int +pkg syscall (linux-arm-cgo), const IN_MODIFY ideal-int +pkg syscall (linux-arm-cgo), const IN_MOVE ideal-int +pkg syscall (linux-arm-cgo), const IN_MOVED_FROM ideal-int +pkg syscall (linux-arm-cgo), const IN_MOVED_TO ideal-int +pkg syscall (linux-arm-cgo), const IN_MOVE_SELF ideal-int +pkg syscall (linux-arm-cgo), const IN_NONBLOCK ideal-int +pkg syscall (linux-arm-cgo), const IN_ONESHOT ideal-int +pkg syscall (linux-arm-cgo), const IN_ONLYDIR ideal-int +pkg syscall (linux-arm-cgo), const IN_OPEN ideal-int +pkg syscall (linux-arm-cgo), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-arm-cgo), const IN_UNMOUNT ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_AH ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_COMP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_DCCP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_EGP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_ESP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_GRE ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_IDP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_MTP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_NONE ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_PIM ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_PUP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_RAW ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_TP ideal-int +pkg syscall (linux-arm-cgo), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-arm-cgo), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-arm-cgo), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-arm-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-arm-cgo), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-arm-cgo), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-arm-cgo), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-arm-cgo), const IPV6_MTU ideal-int +pkg syscall (linux-arm-cgo), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-arm-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-arm-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVERR ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RTHDR ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_TCLASS ideal-int +pkg syscall (linux-arm-cgo), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-arm-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-arm-cgo), const IP_DF ideal-int +pkg syscall (linux-arm-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const IP_FREEBIND ideal-int +pkg syscall (linux-arm-cgo), const IP_HDRINCL ideal-int +pkg syscall (linux-arm-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-arm-cgo), const IP_MAXPACKET ideal-int +pkg syscall (linux-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-arm-cgo), const IP_MF ideal-int +pkg syscall (linux-arm-cgo), const IP_MINTTL ideal-int +pkg syscall (linux-arm-cgo), const IP_MSFILTER ideal-int +pkg syscall (linux-arm-cgo), const IP_MSS ideal-int +pkg syscall (linux-arm-cgo), const IP_MTU ideal-int +pkg syscall (linux-arm-cgo), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-arm-cgo), const IP_OFFMASK ideal-int +pkg syscall (linux-arm-cgo), const IP_OPTIONS ideal-int +pkg syscall (linux-arm-cgo), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-arm-cgo), const IP_PASSSEC ideal-int +pkg syscall (linux-arm-cgo), const IP_PKTINFO ideal-int +pkg syscall (linux-arm-cgo), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-arm-cgo), const IP_PMTUDISC ideal-int +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-arm-cgo), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVERR ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVOPTS ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVTOS ideal-int +pkg syscall (linux-arm-cgo), const IP_RECVTTL ideal-int +pkg syscall (linux-arm-cgo), const IP_RETOPTS ideal-int +pkg syscall (linux-arm-cgo), const IP_RF ideal-int +pkg syscall (linux-arm-cgo), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-arm-cgo), const IP_TRANSPARENT ideal-int +pkg syscall (linux-arm-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-arm-cgo), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-arm-cgo), const ISIG ideal-int +pkg syscall (linux-arm-cgo), const ISTRIP ideal-int +pkg syscall (linux-arm-cgo), const IUCLC ideal-int +pkg syscall (linux-arm-cgo), const IUTF8 ideal-int +pkg syscall (linux-arm-cgo), const IXANY ideal-int +pkg syscall (linux-arm-cgo), const IXOFF ideal-int +pkg syscall (linux-arm-cgo), const IXON ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-arm-cgo), const LOCK_EX ideal-int +pkg syscall (linux-arm-cgo), const LOCK_NB ideal-int +pkg syscall (linux-arm-cgo), const LOCK_SH ideal-int +pkg syscall (linux-arm-cgo), const LOCK_UN ideal-int +pkg syscall (linux-arm-cgo), const MADV_DOFORK ideal-int +pkg syscall (linux-arm-cgo), const MADV_DONTFORK ideal-int +pkg syscall (linux-arm-cgo), const MADV_DONTNEED ideal-int +pkg syscall (linux-arm-cgo), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-arm-cgo), const MADV_HWPOISON ideal-int +pkg syscall (linux-arm-cgo), const MADV_MERGEABLE ideal-int +pkg syscall (linux-arm-cgo), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-arm-cgo), const MADV_NORMAL ideal-int +pkg syscall (linux-arm-cgo), const MADV_RANDOM ideal-int +pkg syscall (linux-arm-cgo), const MADV_REMOVE ideal-int +pkg syscall (linux-arm-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-arm-cgo), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-arm-cgo), const MADV_WILLNEED ideal-int +pkg syscall (linux-arm-cgo), const MAP_ANON ideal-int +pkg syscall (linux-arm-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-arm-cgo), const MAP_DENYWRITE ideal-int +pkg syscall (linux-arm-cgo), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-arm-cgo), const MAP_FILE ideal-int +pkg syscall (linux-arm-cgo), const MAP_FIXED ideal-int +pkg syscall (linux-arm-cgo), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-arm-cgo), const MAP_LOCKED ideal-int +pkg syscall (linux-arm-cgo), const MAP_NONBLOCK ideal-int +pkg syscall (linux-arm-cgo), const MAP_NORESERVE ideal-int +pkg syscall (linux-arm-cgo), const MAP_POPULATE ideal-int +pkg syscall (linux-arm-cgo), const MAP_PRIVATE ideal-int +pkg syscall (linux-arm-cgo), const MAP_SHARED ideal-int +pkg syscall (linux-arm-cgo), const MAP_TYPE ideal-int +pkg syscall (linux-arm-cgo), const MCL_CURRENT ideal-int +pkg syscall (linux-arm-cgo), const MCL_FUTURE ideal-int +pkg syscall (linux-arm-cgo), const MNT_DETACH ideal-int +pkg syscall (linux-arm-cgo), const MNT_EXPIRE ideal-int +pkg syscall (linux-arm-cgo), const MNT_FORCE ideal-int +pkg syscall (linux-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const MSG_CONFIRM ideal-int +pkg syscall (linux-arm-cgo), const MSG_CTRUNC ideal-int +pkg syscall (linux-arm-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (linux-arm-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (linux-arm-cgo), const MSG_EOR ideal-int +pkg syscall (linux-arm-cgo), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-arm-cgo), const MSG_FASTOPEN ideal-int +pkg syscall (linux-arm-cgo), const MSG_FIN ideal-int +pkg syscall (linux-arm-cgo), const MSG_MORE ideal-int +pkg syscall (linux-arm-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-arm-cgo), const MSG_OOB ideal-int +pkg syscall (linux-arm-cgo), const MSG_PEEK ideal-int +pkg syscall (linux-arm-cgo), const MSG_PROXY ideal-int +pkg syscall (linux-arm-cgo), const MSG_RST ideal-int +pkg syscall (linux-arm-cgo), const MSG_SYN ideal-int +pkg syscall (linux-arm-cgo), const MSG_TRUNC ideal-int +pkg syscall (linux-arm-cgo), const MSG_TRYHARD ideal-int +pkg syscall (linux-arm-cgo), const MSG_WAITALL ideal-int +pkg syscall (linux-arm-cgo), const MSG_WAITFORONE ideal-int +pkg syscall (linux-arm-cgo), const MS_ACTIVE ideal-int +pkg syscall (linux-arm-cgo), const MS_ASYNC ideal-int +pkg syscall (linux-arm-cgo), const MS_BIND ideal-int +pkg syscall (linux-arm-cgo), const MS_DIRSYNC ideal-int +pkg syscall (linux-arm-cgo), const MS_INVALIDATE ideal-int +pkg syscall (linux-arm-cgo), const MS_I_VERSION ideal-int +pkg syscall (linux-arm-cgo), const MS_KERNMOUNT ideal-int +pkg syscall (linux-arm-cgo), const MS_MANDLOCK ideal-int +pkg syscall (linux-arm-cgo), const MS_MGC_MSK ideal-int +pkg syscall (linux-arm-cgo), const MS_MGC_VAL ideal-int +pkg syscall (linux-arm-cgo), const MS_MOVE ideal-int +pkg syscall (linux-arm-cgo), const MS_NOATIME ideal-int +pkg syscall (linux-arm-cgo), const MS_NODEV ideal-int +pkg syscall (linux-arm-cgo), const MS_NODIRATIME ideal-int +pkg syscall (linux-arm-cgo), const MS_NOEXEC ideal-int +pkg syscall (linux-arm-cgo), const MS_NOSUID ideal-int +pkg syscall (linux-arm-cgo), const MS_NOUSER ideal-int +pkg syscall (linux-arm-cgo), const MS_POSIXACL ideal-int +pkg syscall (linux-arm-cgo), const MS_PRIVATE ideal-int +pkg syscall (linux-arm-cgo), const MS_RDONLY ideal-int +pkg syscall (linux-arm-cgo), const MS_REC ideal-int +pkg syscall (linux-arm-cgo), const MS_RELATIME ideal-int +pkg syscall (linux-arm-cgo), const MS_REMOUNT ideal-int +pkg syscall (linux-arm-cgo), const MS_RMT_MASK ideal-int +pkg syscall (linux-arm-cgo), const MS_SHARED ideal-int +pkg syscall (linux-arm-cgo), const MS_SILENT ideal-int +pkg syscall (linux-arm-cgo), const MS_SLAVE ideal-int +pkg syscall (linux-arm-cgo), const MS_STRICTATIME ideal-int +pkg syscall (linux-arm-cgo), const MS_SYNC ideal-int +pkg syscall (linux-arm-cgo), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-arm-cgo), const MS_UNBINDABLE ideal-int +pkg syscall (linux-arm-cgo), const NAME_MAX ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_AUDIT ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_GENERIC ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_ISCSI ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_NFLOG ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_RDMA ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_ROUTE ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_SELINUX ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_UNUSED ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-arm-cgo), const NETLINK_XFRM ideal-int +pkg syscall (linux-arm-cgo), const NLA_ALIGNTO ideal-int +pkg syscall (linux-arm-cgo), const NLA_F_NESTED ideal-int +pkg syscall (linux-arm-cgo), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-arm-cgo), const NLA_HDRLEN ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_DONE ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_ERROR ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_NOOP ideal-int +pkg syscall (linux-arm-cgo), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_ACK ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_APPEND ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_CREATE ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_DUMP ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_ECHO ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_EXCL ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_MATCH ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_MULTI ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_REPLACE ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_REQUEST ideal-int +pkg syscall (linux-arm-cgo), const NLM_F_ROOT ideal-int +pkg syscall (linux-arm-cgo), const NOFLSH ideal-int +pkg syscall (linux-arm-cgo), const OCRNL ideal-int +pkg syscall (linux-arm-cgo), const OFDEL ideal-int +pkg syscall (linux-arm-cgo), const OFILL ideal-int +pkg syscall (linux-arm-cgo), const OLCUC ideal-int +pkg syscall (linux-arm-cgo), const ONLCR ideal-int +pkg syscall (linux-arm-cgo), const ONLRET ideal-int +pkg syscall (linux-arm-cgo), const ONOCR ideal-int +pkg syscall (linux-arm-cgo), const OPOST ideal-int +pkg syscall (linux-arm-cgo), const O_ACCMODE ideal-int +pkg syscall (linux-arm-cgo), const O_DIRECT ideal-int +pkg syscall (linux-arm-cgo), const O_DIRECTORY ideal-int +pkg syscall (linux-arm-cgo), const O_DSYNC ideal-int +pkg syscall (linux-arm-cgo), const O_FSYNC ideal-int +pkg syscall (linux-arm-cgo), const O_LARGEFILE ideal-int +pkg syscall (linux-arm-cgo), const O_NDELAY ideal-int +pkg syscall (linux-arm-cgo), const O_NOATIME ideal-int +pkg syscall (linux-arm-cgo), const O_NOFOLLOW ideal-int +pkg syscall (linux-arm-cgo), const O_RSYNC ideal-int +pkg syscall (linux-arm-cgo), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const PACKET_BROADCAST ideal-int +pkg syscall (linux-arm-cgo), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm-cgo), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-arm-cgo), const PACKET_HOST ideal-int +pkg syscall (linux-arm-cgo), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-arm-cgo), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-arm-cgo), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-arm-cgo), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-arm-cgo), const PACKET_MULTICAST ideal-int +pkg syscall (linux-arm-cgo), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-arm-cgo), const PACKET_OUTGOING ideal-int +pkg syscall (linux-arm-cgo), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-arm-cgo), const PACKET_RX_RING ideal-int +pkg syscall (linux-arm-cgo), const PACKET_STATISTICS ideal-int +pkg syscall (linux-arm-cgo), const PARENB ideal-int +pkg syscall (linux-arm-cgo), const PARMRK ideal-int +pkg syscall (linux-arm-cgo), const PARODD ideal-int +pkg syscall (linux-arm-cgo), const PENDIN ideal-int +pkg syscall (linux-arm-cgo), const PRIO_PGRP = 1 +pkg syscall (linux-arm-cgo), const PRIO_PGRP ideal-int +pkg syscall (linux-arm-cgo), const PRIO_PROCESS = 0 +pkg syscall (linux-arm-cgo), const PRIO_PROCESS ideal-int +pkg syscall (linux-arm-cgo), const PRIO_USER = 2 +pkg syscall (linux-arm-cgo), const PRIO_USER ideal-int +pkg syscall (linux-arm-cgo), const PROT_EXEC ideal-int +pkg syscall (linux-arm-cgo), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-arm-cgo), const PROT_GROWSUP ideal-int +pkg syscall (linux-arm-cgo), const PROT_NONE ideal-int +pkg syscall (linux-arm-cgo), const PROT_READ ideal-int +pkg syscall (linux-arm-cgo), const PROT_WRITE ideal-int +pkg syscall (linux-arm-cgo), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-arm-cgo), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-arm-cgo), const PR_CLEAR_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm-cgo), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-arm-cgo), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-arm-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-arm-cgo), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-arm-cgo), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_FPEMU ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_FPEXC ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_NAME ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_TIMING ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_TSC ideal-int +pkg syscall (linux-arm-cgo), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_EVENT ideal-int +pkg syscall (linux-arm-cgo), const PR_SECCOMP_FILTER_SYSCALL ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_FPEMU ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_FPEXC ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_NAME ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_PTRACER ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_TIMING ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_TSC ideal-int +pkg syscall (linux-arm-cgo), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-arm-cgo), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-arm-cgo), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-arm-cgo), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-arm-cgo), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-arm-cgo), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_ATTACH ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_CONT ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_DETACH ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETCRUNCHREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETHBPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETVFPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GETWMMXREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_KILL ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_MASK ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETCRUNCHREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETHBPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETVFPREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SETWMMXREGS ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SET_SYSCALL ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-arm-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (linux-arm-cgo), const PT_DATA_ADDR ideal-int +pkg syscall (linux-arm-cgo), const PT_TEXT_ADDR ideal-int +pkg syscall (linux-arm-cgo), const PT_TEXT_END_ADDR ideal-int +pkg syscall (linux-arm-cgo), const PathMax ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_AS ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_CORE ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_CPU ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_DATA ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-arm-cgo), const RLIMIT_STACK ideal-int +pkg syscall (linux-arm-cgo), const RLIM_INFINITY ideal-int +pkg syscall (linux-arm-cgo), const RTAX_ADVMSS ideal-int +pkg syscall (linux-arm-cgo), const RTAX_CWND ideal-int +pkg syscall (linux-arm-cgo), const RTAX_FEATURES ideal-int +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-arm-cgo), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-arm-cgo), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-arm-cgo), const RTAX_INITCWND ideal-int +pkg syscall (linux-arm-cgo), const RTAX_INITRWND ideal-int +pkg syscall (linux-arm-cgo), const RTAX_LOCK ideal-int +pkg syscall (linux-arm-cgo), const RTAX_MAX ideal-int +pkg syscall (linux-arm-cgo), const RTAX_MTU ideal-int +pkg syscall (linux-arm-cgo), const RTAX_REORDERING ideal-int +pkg syscall (linux-arm-cgo), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-arm-cgo), const RTAX_RTT ideal-int +pkg syscall (linux-arm-cgo), const RTAX_RTTVAR ideal-int +pkg syscall (linux-arm-cgo), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-arm-cgo), const RTAX_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RTAX_WINDOW ideal-int +pkg syscall (linux-arm-cgo), const RTA_ALIGNTO ideal-int +pkg syscall (linux-arm-cgo), const RTA_CACHEINFO ideal-int +pkg syscall (linux-arm-cgo), const RTA_DST ideal-int +pkg syscall (linux-arm-cgo), const RTA_FLOW ideal-int +pkg syscall (linux-arm-cgo), const RTA_GATEWAY ideal-int +pkg syscall (linux-arm-cgo), const RTA_IIF ideal-int +pkg syscall (linux-arm-cgo), const RTA_MAX ideal-int +pkg syscall (linux-arm-cgo), const RTA_METRICS ideal-int +pkg syscall (linux-arm-cgo), const RTA_MULTIPATH ideal-int +pkg syscall (linux-arm-cgo), const RTA_OIF ideal-int +pkg syscall (linux-arm-cgo), const RTA_PREFSRC ideal-int +pkg syscall (linux-arm-cgo), const RTA_PRIORITY ideal-int +pkg syscall (linux-arm-cgo), const RTA_SRC ideal-int +pkg syscall (linux-arm-cgo), const RTA_TABLE ideal-int +pkg syscall (linux-arm-cgo), const RTA_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-arm-cgo), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-arm-cgo), const RTCF_LOG ideal-int +pkg syscall (linux-arm-cgo), const RTCF_MASQ ideal-int +pkg syscall (linux-arm-cgo), const RTCF_NAT ideal-int +pkg syscall (linux-arm-cgo), const RTCF_VALVE ideal-int +pkg syscall (linux-arm-cgo), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-arm-cgo), const RTF_ADDRCONF ideal-int +pkg syscall (linux-arm-cgo), const RTF_ALLONLINK ideal-int +pkg syscall (linux-arm-cgo), const RTF_BROADCAST ideal-int +pkg syscall (linux-arm-cgo), const RTF_CACHE ideal-int +pkg syscall (linux-arm-cgo), const RTF_DEFAULT ideal-int +pkg syscall (linux-arm-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (linux-arm-cgo), const RTF_FLOW ideal-int +pkg syscall (linux-arm-cgo), const RTF_GATEWAY ideal-int +pkg syscall (linux-arm-cgo), const RTF_HOST ideal-int +pkg syscall (linux-arm-cgo), const RTF_INTERFACE ideal-int +pkg syscall (linux-arm-cgo), const RTF_IRTT ideal-int +pkg syscall (linux-arm-cgo), const RTF_LINKRT ideal-int +pkg syscall (linux-arm-cgo), const RTF_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const RTF_MODIFIED ideal-int +pkg syscall (linux-arm-cgo), const RTF_MSS ideal-int +pkg syscall (linux-arm-cgo), const RTF_MTU ideal-int +pkg syscall (linux-arm-cgo), const RTF_MULTICAST ideal-int +pkg syscall (linux-arm-cgo), const RTF_NAT ideal-int +pkg syscall (linux-arm-cgo), const RTF_NOFORWARD ideal-int +pkg syscall (linux-arm-cgo), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-arm-cgo), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-arm-cgo), const RTF_POLICY ideal-int +pkg syscall (linux-arm-cgo), const RTF_REINSTATE ideal-int +pkg syscall (linux-arm-cgo), const RTF_REJECT ideal-int +pkg syscall (linux-arm-cgo), const RTF_STATIC ideal-int +pkg syscall (linux-arm-cgo), const RTF_THROW ideal-int +pkg syscall (linux-arm-cgo), const RTF_UP ideal-int +pkg syscall (linux-arm-cgo), const RTF_WINDOW ideal-int +pkg syscall (linux-arm-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (linux-arm-cgo), const RTM_BASE ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELACTION ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELADDR ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELLINK ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELNEIGH ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELQDISC ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELRULE ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELTCLASS ideal-int +pkg syscall (linux-arm-cgo), const RTM_DELTFILTER ideal-int +pkg syscall (linux-arm-cgo), const RTM_F_CLONED ideal-int +pkg syscall (linux-arm-cgo), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-arm-cgo), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-arm-cgo), const RTM_F_PREFIX ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETACTION ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETADDR ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETANYCAST ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETDCB ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETLINK ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETNEIGH ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETQDISC ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETRULE ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETTCLASS ideal-int +pkg syscall (linux-arm-cgo), const RTM_GETTFILTER ideal-int +pkg syscall (linux-arm-cgo), const RTM_MAX ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWACTION ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWADDR ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWLINK ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWQDISC ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWRULE ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-arm-cgo), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-arm-cgo), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-arm-cgo), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-arm-cgo), const RTM_SETDCB ideal-int +pkg syscall (linux-arm-cgo), const RTM_SETLINK ideal-int +pkg syscall (linux-arm-cgo), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-arm-cgo), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-arm-cgo), const RTNH_F_DEAD ideal-int +pkg syscall (linux-arm-cgo), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-arm-cgo), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_IFADDR ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_MROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_ROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV4_RULE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFADDR ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_IFINFO ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_MROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_PREFIX ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_ROUTE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_IPV6_RULE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_LINK ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_ND_USEROPT ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_NEIGH ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_NONE ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_NOTIFY ideal-int +pkg syscall (linux-arm-cgo), const RTNLGRP_TC ideal-int +pkg syscall (linux-arm-cgo), const RTN_ANYCAST ideal-int +pkg syscall (linux-arm-cgo), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-arm-cgo), const RTN_BROADCAST ideal-int +pkg syscall (linux-arm-cgo), const RTN_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const RTN_MAX ideal-int +pkg syscall (linux-arm-cgo), const RTN_MULTICAST ideal-int +pkg syscall (linux-arm-cgo), const RTN_NAT ideal-int +pkg syscall (linux-arm-cgo), const RTN_PROHIBIT ideal-int +pkg syscall (linux-arm-cgo), const RTN_THROW ideal-int +pkg syscall (linux-arm-cgo), const RTN_UNICAST ideal-int +pkg syscall (linux-arm-cgo), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-arm-cgo), const RTN_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RTN_XRESOLVE ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_BIRD ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_BOOT ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_DHCP ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_GATED ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_KERNEL ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_MRT ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_NTK ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_RA ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_STATIC ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_XORP ideal-int +pkg syscall (linux-arm-cgo), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-arm-cgo), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-arm-cgo), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-arm-cgo), const RT_CLASS_MAX ideal-int +pkg syscall (linux-arm-cgo), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-arm-cgo), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-arm-cgo), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-arm-cgo), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-arm-cgo), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_MAX ideal-int +pkg syscall (linux-arm-cgo), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-arm-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-arm-cgo), const RUSAGE_SELF ideal-int +pkg syscall (linux-arm-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (linux-arm-cgo), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-arm-cgo), const SCM_RIGHTS ideal-int +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-arm-cgo), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-arm-cgo), const SIGCHLD Signal +pkg syscall (linux-arm-cgo), const SIGCLD Signal +pkg syscall (linux-arm-cgo), const SIGCONT Signal +pkg syscall (linux-arm-cgo), const SIGIO Signal +pkg syscall (linux-arm-cgo), const SIGIOT Signal +pkg syscall (linux-arm-cgo), const SIGPOLL Signal +pkg syscall (linux-arm-cgo), const SIGPROF Signal +pkg syscall (linux-arm-cgo), const SIGPWR Signal +pkg syscall (linux-arm-cgo), const SIGSTKFLT Signal +pkg syscall (linux-arm-cgo), const SIGSTOP Signal +pkg syscall (linux-arm-cgo), const SIGSYS Signal +pkg syscall (linux-arm-cgo), const SIGTSTP Signal +pkg syscall (linux-arm-cgo), const SIGTTIN Signal +pkg syscall (linux-arm-cgo), const SIGTTOU Signal +pkg syscall (linux-arm-cgo), const SIGUNUSED Signal +pkg syscall (linux-arm-cgo), const SIGURG Signal +pkg syscall (linux-arm-cgo), const SIGUSR1 Signal +pkg syscall (linux-arm-cgo), const SIGUSR2 Signal +pkg syscall (linux-arm-cgo), const SIGVTALRM Signal +pkg syscall (linux-arm-cgo), const SIGWINCH Signal +pkg syscall (linux-arm-cgo), const SIGXCPU Signal +pkg syscall (linux-arm-cgo), const SIGXFSZ Signal +pkg syscall (linux-arm-cgo), const SIOCADDDLCI ideal-int +pkg syscall (linux-arm-cgo), const SIOCADDMULTI ideal-int +pkg syscall (linux-arm-cgo), const SIOCADDRT ideal-int +pkg syscall (linux-arm-cgo), const SIOCATMARK ideal-int +pkg syscall (linux-arm-cgo), const SIOCDARP ideal-int +pkg syscall (linux-arm-cgo), const SIOCDELDLCI ideal-int +pkg syscall (linux-arm-cgo), const SIOCDELMULTI ideal-int +pkg syscall (linux-arm-cgo), const SIOCDELRT ideal-int +pkg syscall (linux-arm-cgo), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-arm-cgo), const SIOCDIFADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCDRARP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGARP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFBR ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFCONF ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFENCAP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFMAP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFMEM ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFMTU ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFNAME ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-arm-cgo), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-arm-cgo), const SIOCGPGRP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGRARP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGSTAMP ideal-int +pkg syscall (linux-arm-cgo), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-arm-cgo), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-arm-cgo), const SIOCRTMSG ideal-int +pkg syscall (linux-arm-cgo), const SIOCSARP ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFBR ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFENCAP ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFLINK ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFMAP ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFMEM ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFMTU ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFNAME ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-arm-cgo), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-arm-cgo), const SIOCSPGRP ideal-int +pkg syscall (linux-arm-cgo), const SIOCSRARP ideal-int +pkg syscall (linux-arm-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-arm-cgo), const SOCK_DCCP ideal-int +pkg syscall (linux-arm-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-arm-cgo), const SOCK_PACKET ideal-int +pkg syscall (linux-arm-cgo), const SOCK_RDM ideal-int +pkg syscall (linux-arm-cgo), const SOL_AAL ideal-int +pkg syscall (linux-arm-cgo), const SOL_ATM ideal-int +pkg syscall (linux-arm-cgo), const SOL_DECNET ideal-int +pkg syscall (linux-arm-cgo), const SOL_ICMPV6 ideal-int +pkg syscall (linux-arm-cgo), const SOL_IP ideal-int +pkg syscall (linux-arm-cgo), const SOL_IPV6 ideal-int +pkg syscall (linux-arm-cgo), const SOL_IRDA ideal-int +pkg syscall (linux-arm-cgo), const SOL_PACKET ideal-int +pkg syscall (linux-arm-cgo), const SOL_RAW ideal-int +pkg syscall (linux-arm-cgo), const SOL_TCP ideal-int +pkg syscall (linux-arm-cgo), const SOL_X25 ideal-int +pkg syscall (linux-arm-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-arm-cgo), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-arm-cgo), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-arm-cgo), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-arm-cgo), const SO_DEBUG ideal-int +pkg syscall (linux-arm-cgo), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-arm-cgo), const SO_DOMAIN ideal-int +pkg syscall (linux-arm-cgo), const SO_ERROR ideal-int +pkg syscall (linux-arm-cgo), const SO_MARK ideal-int +pkg syscall (linux-arm-cgo), const SO_NO_CHECK ideal-int +pkg syscall (linux-arm-cgo), const SO_OOBINLINE ideal-int +pkg syscall (linux-arm-cgo), const SO_PASSCRED ideal-int +pkg syscall (linux-arm-cgo), const SO_PASSSEC ideal-int +pkg syscall (linux-arm-cgo), const SO_PEERCRED ideal-int +pkg syscall (linux-arm-cgo), const SO_PEERNAME ideal-int +pkg syscall (linux-arm-cgo), const SO_PEERSEC ideal-int +pkg syscall (linux-arm-cgo), const SO_PRIORITY ideal-int +pkg syscall (linux-arm-cgo), const SO_PROTOCOL ideal-int +pkg syscall (linux-arm-cgo), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-arm-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (linux-arm-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (linux-arm-cgo), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-arm-cgo), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-arm-cgo), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-arm-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (linux-arm-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (linux-arm-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (linux-arm-cgo), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-arm-cgo), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-arm-cgo), const SO_TYPE ideal-int +pkg syscall (linux-arm-cgo), const SYS_ACCEPT ideal-int +pkg syscall (linux-arm-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (linux-arm-cgo), const SYS_ACCESS ideal-int +pkg syscall (linux-arm-cgo), const SYS_ACCT ideal-int +pkg syscall (linux-arm-cgo), const SYS_ADD_KEY ideal-int +pkg syscall (linux-arm-cgo), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-arm-cgo), const SYS_ALARM ideal-int +pkg syscall (linux-arm-cgo), const SYS_ARM_FADVISE64_64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_ARM_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-arm-cgo), const SYS_BDFLUSH ideal-int +pkg syscall (linux-arm-cgo), const SYS_BIND ideal-int +pkg syscall (linux-arm-cgo), const SYS_BRK ideal-int +pkg syscall (linux-arm-cgo), const SYS_CAPGET ideal-int +pkg syscall (linux-arm-cgo), const SYS_CAPSET ideal-int +pkg syscall (linux-arm-cgo), const SYS_CHDIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_CHMOD ideal-int +pkg syscall (linux-arm-cgo), const SYS_CHOWN ideal-int +pkg syscall (linux-arm-cgo), const SYS_CHOWN32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_CHROOT ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOCK_ADJTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLONE ideal-int +pkg syscall (linux-arm-cgo), const SYS_CLOSE ideal-int +pkg syscall (linux-arm-cgo), const SYS_CONNECT ideal-int +pkg syscall (linux-arm-cgo), const SYS_CREAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-arm-cgo), const SYS_DUP ideal-int +pkg syscall (linux-arm-cgo), const SYS_DUP2 ideal-int +pkg syscall (linux-arm-cgo), const SYS_DUP3 ideal-int +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-arm-cgo), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_EVENTFD ideal-int +pkg syscall (linux-arm-cgo), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-arm-cgo), const SYS_EXECVE ideal-int +pkg syscall (linux-arm-cgo), const SYS_EXIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-arm-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_FALLOCATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHDIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHMOD ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHOWN ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHOWN32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCNTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_FCNTL64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (linux-arm-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_FLOCK ideal-int +pkg syscall (linux-arm-cgo), const SYS_FORK ideal-int +pkg syscall (linux-arm-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSTAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSTAT64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSTATAT64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSTATFS ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSTATFS64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FSYNC ideal-int +pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_FTRUNCATE64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_FUTEX ideal-int +pkg syscall (linux-arm-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETCPU ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETCWD ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETDENTS ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETEGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETEGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETEUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETEUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETGROUPS32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETITIMER ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPGRP ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPPID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRESGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRESGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRESUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRESUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETSID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETTID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_GETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-arm-cgo), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-arm-cgo), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-arm-cgo), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-arm-cgo), const SYS_IOCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-arm-cgo), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-arm-cgo), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-arm-cgo), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-arm-cgo), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-arm-cgo), const SYS_IO_SETUP ideal-int +pkg syscall (linux-arm-cgo), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_IPC ideal-int +pkg syscall (linux-arm-cgo), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-arm-cgo), const SYS_KEYCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_KILL ideal-int +pkg syscall (linux-arm-cgo), const SYS_LCHOWN ideal-int +pkg syscall (linux-arm-cgo), const SYS_LCHOWN32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_LINK ideal-int +pkg syscall (linux-arm-cgo), const SYS_LINKAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_LISTEN ideal-int +pkg syscall (linux-arm-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-arm-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_LSEEK ideal-int +pkg syscall (linux-arm-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_LSTAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_LSTAT64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_MADVISE ideal-int +pkg syscall (linux-arm-cgo), const SYS_MBIND ideal-int +pkg syscall (linux-arm-cgo), const SYS_MINCORE ideal-int +pkg syscall (linux-arm-cgo), const SYS_MKDIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_MKNOD ideal-int +pkg syscall (linux-arm-cgo), const SYS_MKNODAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_MLOCK ideal-int +pkg syscall (linux-arm-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (linux-arm-cgo), const SYS_MMAP ideal-int +pkg syscall (linux-arm-cgo), const SYS_MMAP2 ideal-int +pkg syscall (linux-arm-cgo), const SYS_MOUNT ideal-int +pkg syscall (linux-arm-cgo), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-arm-cgo), const SYS_MPROTECT ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-arm-cgo), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-arm-cgo), const SYS_MREMAP ideal-int +pkg syscall (linux-arm-cgo), const SYS_MSGCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_MSGGET ideal-int +pkg syscall (linux-arm-cgo), const SYS_MSGRCV ideal-int +pkg syscall (linux-arm-cgo), const SYS_MSGSND ideal-int +pkg syscall (linux-arm-cgo), const SYS_MSYNC ideal-int +pkg syscall (linux-arm-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (linux-arm-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-arm-cgo), const SYS_MUNMAP ideal-int +pkg syscall (linux-arm-cgo), const SYS_NAME_TO_HANDLE_AT ideal-int +pkg syscall (linux-arm-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-arm-cgo), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_NICE ideal-int +pkg syscall (linux-arm-cgo), const SYS_OABI_SYSCALL_BASE ideal-int +pkg syscall (linux-arm-cgo), const SYS_OPEN ideal-int +pkg syscall (linux-arm-cgo), const SYS_OPENAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_OPEN_BY_HANDLE_AT ideal-int +pkg syscall (linux-arm-cgo), const SYS_PAUSE ideal-int +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_IOBASE ideal-int +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_READ ideal-int +pkg syscall (linux-arm-cgo), const SYS_PCICONFIG_WRITE ideal-int +pkg syscall (linux-arm-cgo), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-arm-cgo), const SYS_PERSONALITY ideal-int +pkg syscall (linux-arm-cgo), const SYS_PIPE ideal-int +pkg syscall (linux-arm-cgo), const SYS_PIPE2 ideal-int +pkg syscall (linux-arm-cgo), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-arm-cgo), const SYS_POLL ideal-int +pkg syscall (linux-arm-cgo), const SYS_PPOLL ideal-int +pkg syscall (linux-arm-cgo), const SYS_PRCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_PREAD64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_PREADV ideal-int +pkg syscall (linux-arm-cgo), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_READV ideal-int +pkg syscall (linux-arm-cgo), const SYS_PROCESS_VM_WRITEV ideal-int +pkg syscall (linux-arm-cgo), const SYS_PSELECT6 ideal-int +pkg syscall (linux-arm-cgo), const SYS_PTRACE ideal-int +pkg syscall (linux-arm-cgo), const SYS_PWRITE64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_PWRITEV ideal-int +pkg syscall (linux-arm-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_READ ideal-int +pkg syscall (linux-arm-cgo), const SYS_READAHEAD ideal-int +pkg syscall (linux-arm-cgo), const SYS_READDIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_READLINK ideal-int +pkg syscall (linux-arm-cgo), const SYS_READLINKAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_READV ideal-int +pkg syscall (linux-arm-cgo), const SYS_REBOOT ideal-int +pkg syscall (linux-arm-cgo), const SYS_RECV ideal-int +pkg syscall (linux-arm-cgo), const SYS_RECVFROM ideal-int +pkg syscall (linux-arm-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (linux-arm-cgo), const SYS_RECVMSG ideal-int +pkg syscall (linux-arm-cgo), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-arm-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_RENAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-arm-cgo), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-arm-cgo), const SYS_RMDIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-arm-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-arm-cgo), const SYS_SELECT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SEMCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_SEMGET ideal-int +pkg syscall (linux-arm-cgo), const SYS_SEMOP ideal-int +pkg syscall (linux-arm-cgo), const SYS_SEMTIMEDOP ideal-int +pkg syscall (linux-arm-cgo), const SYS_SEND ideal-int +pkg syscall (linux-arm-cgo), const SYS_SENDFILE ideal-int +pkg syscall (linux-arm-cgo), const SYS_SENDFILE64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SENDMMSG ideal-int +pkg syscall (linux-arm-cgo), const SYS_SENDMSG ideal-int +pkg syscall (linux-arm-cgo), const SYS_SENDTO ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETFSGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETFSGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETFSUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETFSUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETGROUPS32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETITIMER ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETNS ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETPGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETREGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETREGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETRESGID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETRESGID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETRESUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETRESUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETREUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETREUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETSID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETUID ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETUID32 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SETXATTR ideal-int +pkg syscall (linux-arm-cgo), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-arm-cgo), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-arm-cgo), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-arm-cgo), const SYS_SHMAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SHMCTL ideal-int +pkg syscall (linux-arm-cgo), const SYS_SHMDT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SHMGET ideal-int +pkg syscall (linux-arm-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGACTION ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGNALFD ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (linux-arm-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (linux-arm-cgo), const SYS_SOCKET ideal-int +pkg syscall (linux-arm-cgo), const SYS_SOCKETCALL ideal-int +pkg syscall (linux-arm-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (linux-arm-cgo), const SYS_SPLICE ideal-int +pkg syscall (linux-arm-cgo), const SYS_STAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_STAT64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_STATFS ideal-int +pkg syscall (linux-arm-cgo), const SYS_STATFS64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_STIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (linux-arm-cgo), const SYS_SWAPON ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYMLINK ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYNC ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYNCFS ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYSCALL ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYSCALL_BASE ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYSFS ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYSINFO ideal-int +pkg syscall (linux-arm-cgo), const SYS_SYSLOG ideal-int +pkg syscall (linux-arm-cgo), const SYS_TEE ideal-int +pkg syscall (linux-arm-cgo), const SYS_TGKILL ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_TIMES ideal-int +pkg syscall (linux-arm-cgo), const SYS_TKILL ideal-int +pkg syscall (linux-arm-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (linux-arm-cgo), const SYS_TRUNCATE64 ideal-int +pkg syscall (linux-arm-cgo), const SYS_UGETRLIMIT ideal-int +pkg syscall (linux-arm-cgo), const SYS_UMASK ideal-int +pkg syscall (linux-arm-cgo), const SYS_UMOUNT ideal-int +pkg syscall (linux-arm-cgo), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-arm-cgo), const SYS_UNAME ideal-int +pkg syscall (linux-arm-cgo), const SYS_UNLINK ideal-int +pkg syscall (linux-arm-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_UNSHARE ideal-int +pkg syscall (linux-arm-cgo), const SYS_USELIB ideal-int +pkg syscall (linux-arm-cgo), const SYS_USTAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_UTIME ideal-int +pkg syscall (linux-arm-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-arm-cgo), const SYS_UTIMES ideal-int +pkg syscall (linux-arm-cgo), const SYS_VFORK ideal-int +pkg syscall (linux-arm-cgo), const SYS_VHANGUP ideal-int +pkg syscall (linux-arm-cgo), const SYS_VMSPLICE ideal-int +pkg syscall (linux-arm-cgo), const SYS_VSERVER ideal-int +pkg syscall (linux-arm-cgo), const SYS_WAIT4 ideal-int +pkg syscall (linux-arm-cgo), const SYS_WAITID ideal-int +pkg syscall (linux-arm-cgo), const SYS_WRITE ideal-int +pkg syscall (linux-arm-cgo), const SYS_WRITEV ideal-int +pkg syscall (linux-arm-cgo), const SYS__LLSEEK ideal-int +pkg syscall (linux-arm-cgo), const SYS__NEWSELECT ideal-int +pkg syscall (linux-arm-cgo), const SYS__SYSCTL ideal-int +pkg syscall (linux-arm-cgo), const S_BLKSIZE ideal-int +pkg syscall (linux-arm-cgo), const S_IEXEC ideal-int +pkg syscall (linux-arm-cgo), const S_IREAD ideal-int +pkg syscall (linux-arm-cgo), const S_IRGRP ideal-int +pkg syscall (linux-arm-cgo), const S_IROTH ideal-int +pkg syscall (linux-arm-cgo), const S_IRWXG ideal-int +pkg syscall (linux-arm-cgo), const S_IRWXO ideal-int +pkg syscall (linux-arm-cgo), const S_IRWXU ideal-int +pkg syscall (linux-arm-cgo), const S_IWGRP ideal-int +pkg syscall (linux-arm-cgo), const S_IWOTH ideal-int +pkg syscall (linux-arm-cgo), const S_IWRITE ideal-int +pkg syscall (linux-arm-cgo), const S_IXGRP ideal-int +pkg syscall (linux-arm-cgo), const S_IXOTH ideal-int +pkg syscall (linux-arm-cgo), const SizeofCmsghdr ideal-int +pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (linux-arm-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (linux-arm-cgo), const SizeofIPMreq ideal-int +pkg syscall (linux-arm-cgo), const SizeofIPMreqn ideal-int +pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (linux-arm-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (linux-arm-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-arm-cgo), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-arm-cgo), const SizeofIfInfomsg ideal-int +pkg syscall (linux-arm-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-arm-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-arm-cgo), const SizeofInotifyEvent ideal-int +pkg syscall (linux-arm-cgo), const SizeofLinger ideal-int +pkg syscall (linux-arm-cgo), const SizeofMsghdr ideal-int +pkg syscall (linux-arm-cgo), const SizeofNlAttr ideal-int +pkg syscall (linux-arm-cgo), const SizeofNlMsgerr ideal-int +pkg syscall (linux-arm-cgo), const SizeofNlMsghdr ideal-int +pkg syscall (linux-arm-cgo), const SizeofRtAttr ideal-int +pkg syscall (linux-arm-cgo), const SizeofRtGenmsg ideal-int +pkg syscall (linux-arm-cgo), const SizeofRtMsg ideal-int +pkg syscall (linux-arm-cgo), const SizeofRtNexthop ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockFilter ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockFprog ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-arm-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-arm-cgo), const SizeofTCPInfo ideal-int +pkg syscall (linux-arm-cgo), const SizeofUcred ideal-int +pkg syscall (linux-arm-cgo), const TCGETS ideal-int +pkg syscall (linux-arm-cgo), const TCIFLUSH = 0 +pkg syscall (linux-arm-cgo), const TCIFLUSH ideal-int +pkg syscall (linux-arm-cgo), const TCIOFLUSH = 2 +pkg syscall (linux-arm-cgo), const TCIOFLUSH ideal-int +pkg syscall (linux-arm-cgo), const TCOFLUSH = 1 +pkg syscall (linux-arm-cgo), const TCOFLUSH ideal-int +pkg syscall (linux-arm-cgo), const TCP_CONGESTION ideal-int +pkg syscall (linux-arm-cgo), const TCP_CORK ideal-int +pkg syscall (linux-arm-cgo), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-arm-cgo), const TCP_INFO ideal-int +pkg syscall (linux-arm-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (linux-arm-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-arm-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-arm-cgo), const TCP_LINGER2 ideal-int +pkg syscall (linux-arm-cgo), const TCP_MAXSEG ideal-int +pkg syscall (linux-arm-cgo), const TCP_MAXWIN ideal-int +pkg syscall (linux-arm-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-arm-cgo), const TCP_MD5SIG ideal-int +pkg syscall (linux-arm-cgo), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-arm-cgo), const TCP_MSS ideal-int +pkg syscall (linux-arm-cgo), const TCP_QUICKACK ideal-int +pkg syscall (linux-arm-cgo), const TCP_SYNCNT ideal-int +pkg syscall (linux-arm-cgo), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-arm-cgo), const TCSETS ideal-int +pkg syscall (linux-arm-cgo), const TIOCCBRK ideal-int +pkg syscall (linux-arm-cgo), const TIOCCONS ideal-int +pkg syscall (linux-arm-cgo), const TIOCEXCL ideal-int +pkg syscall (linux-arm-cgo), const TIOCGDEV ideal-int +pkg syscall (linux-arm-cgo), const TIOCGETD ideal-int +pkg syscall (linux-arm-cgo), const TIOCGICOUNT ideal-int +pkg syscall (linux-arm-cgo), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-arm-cgo), const TIOCGPGRP ideal-int +pkg syscall (linux-arm-cgo), const TIOCGPTN ideal-int +pkg syscall (linux-arm-cgo), const TIOCGRS485 ideal-int +pkg syscall (linux-arm-cgo), const TIOCGSERIAL ideal-int +pkg syscall (linux-arm-cgo), const TIOCGSID ideal-int +pkg syscall (linux-arm-cgo), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-arm-cgo), const TIOCGWINSZ ideal-int +pkg syscall (linux-arm-cgo), const TIOCINQ ideal-int +pkg syscall (linux-arm-cgo), const TIOCLINUX ideal-int +pkg syscall (linux-arm-cgo), const TIOCMBIC ideal-int +pkg syscall (linux-arm-cgo), const TIOCMBIS ideal-int +pkg syscall (linux-arm-cgo), const TIOCMGET ideal-int +pkg syscall (linux-arm-cgo), const TIOCMIWAIT ideal-int +pkg syscall (linux-arm-cgo), const TIOCMSET ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_CAR ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_CD ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_CTS ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_DSR ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_DTR ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_LE ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_RI ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_RNG ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_RTS ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_SR ideal-int +pkg syscall (linux-arm-cgo), const TIOCM_ST ideal-int +pkg syscall (linux-arm-cgo), const TIOCNOTTY ideal-int +pkg syscall (linux-arm-cgo), const TIOCNXCL ideal-int +pkg syscall (linux-arm-cgo), const TIOCOUTQ ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_START ideal-int +pkg syscall (linux-arm-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (linux-arm-cgo), const TIOCSBRK ideal-int +pkg syscall (linux-arm-cgo), const TIOCSCTTY ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERCONFIG ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERGETLSR ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERGWILD ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-arm-cgo), const TIOCSERSWILD ideal-int +pkg syscall (linux-arm-cgo), const TIOCSER_TEMT ideal-int +pkg syscall (linux-arm-cgo), const TIOCSETD ideal-int +pkg syscall (linux-arm-cgo), const TIOCSIG ideal-int +pkg syscall (linux-arm-cgo), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-arm-cgo), const TIOCSPGRP ideal-int +pkg syscall (linux-arm-cgo), const TIOCSPTLCK ideal-int +pkg syscall (linux-arm-cgo), const TIOCSRS485 ideal-int +pkg syscall (linux-arm-cgo), const TIOCSSERIAL ideal-int +pkg syscall (linux-arm-cgo), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-arm-cgo), const TIOCSTI ideal-int +pkg syscall (linux-arm-cgo), const TIOCSWINSZ ideal-int +pkg syscall (linux-arm-cgo), const TIOCVHANGUP ideal-int +pkg syscall (linux-arm-cgo), const TOSTOP ideal-int +pkg syscall (linux-arm-cgo), const TUNATTACHFILTER ideal-int +pkg syscall (linux-arm-cgo), const TUNDETACHFILTER ideal-int +pkg syscall (linux-arm-cgo), const TUNGETFEATURES ideal-int +pkg syscall (linux-arm-cgo), const TUNGETIFF ideal-int +pkg syscall (linux-arm-cgo), const TUNGETSNDBUF ideal-int +pkg syscall (linux-arm-cgo), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-arm-cgo), const TUNSETDEBUG ideal-int +pkg syscall (linux-arm-cgo), const TUNSETGROUP ideal-int +pkg syscall (linux-arm-cgo), const TUNSETIFF ideal-int +pkg syscall (linux-arm-cgo), const TUNSETLINK ideal-int +pkg syscall (linux-arm-cgo), const TUNSETNOCSUM ideal-int +pkg syscall (linux-arm-cgo), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-arm-cgo), const TUNSETOWNER ideal-int +pkg syscall (linux-arm-cgo), const TUNSETPERSIST ideal-int +pkg syscall (linux-arm-cgo), const TUNSETSNDBUF ideal-int +pkg syscall (linux-arm-cgo), const TUNSETTXFILTER ideal-int +pkg syscall (linux-arm-cgo), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-arm-cgo), const VDISCARD ideal-int +pkg syscall (linux-arm-cgo), const VEOF ideal-int +pkg syscall (linux-arm-cgo), const VEOL ideal-int +pkg syscall (linux-arm-cgo), const VEOL2 ideal-int +pkg syscall (linux-arm-cgo), const VERASE ideal-int +pkg syscall (linux-arm-cgo), const VINTR ideal-int +pkg syscall (linux-arm-cgo), const VKILL ideal-int +pkg syscall (linux-arm-cgo), const VLNEXT ideal-int +pkg syscall (linux-arm-cgo), const VMIN ideal-int +pkg syscall (linux-arm-cgo), const VQUIT ideal-int +pkg syscall (linux-arm-cgo), const VREPRINT ideal-int +pkg syscall (linux-arm-cgo), const VSTART ideal-int +pkg syscall (linux-arm-cgo), const VSTOP ideal-int +pkg syscall (linux-arm-cgo), const VSUSP ideal-int +pkg syscall (linux-arm-cgo), const VSWTC ideal-int +pkg syscall (linux-arm-cgo), const VTIME ideal-int +pkg syscall (linux-arm-cgo), const VWERASE ideal-int +pkg syscall (linux-arm-cgo), const WALL ideal-int +pkg syscall (linux-arm-cgo), const WCLONE ideal-int +pkg syscall (linux-arm-cgo), const WCONTINUED ideal-int +pkg syscall (linux-arm-cgo), const WEXITED ideal-int +pkg syscall (linux-arm-cgo), const WNOHANG ideal-int +pkg syscall (linux-arm-cgo), const WNOTHREAD ideal-int +pkg syscall (linux-arm-cgo), const WNOWAIT ideal-int +pkg syscall (linux-arm-cgo), const WORDSIZE ideal-int +pkg syscall (linux-arm-cgo), const WSTOPPED ideal-int +pkg syscall (linux-arm-cgo), const WUNTRACED ideal-int +pkg syscall (linux-arm-cgo), const XCASE ideal-int +pkg syscall (linux-arm-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-arm-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (linux-arm-cgo), func Access(string, uint32) error +pkg syscall (linux-arm-cgo), func Acct(string) error +pkg syscall (linux-arm-cgo), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-arm-cgo), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-arm-cgo), func Bind(int, Sockaddr) error +pkg syscall (linux-arm-cgo), func BindToDevice(int, string) error +pkg syscall (linux-arm-cgo), func Chroot(string) error +pkg syscall (linux-arm-cgo), func Close(int) error +pkg syscall (linux-arm-cgo), func CloseOnExec(int) +pkg syscall (linux-arm-cgo), func CmsgLen(int) int +pkg syscall (linux-arm-cgo), func CmsgSpace(int) int +pkg syscall (linux-arm-cgo), func Connect(int, Sockaddr) error +pkg syscall (linux-arm-cgo), func Creat(string, uint32) (int, error) +pkg syscall (linux-arm-cgo), func DetachLsf(int) error +pkg syscall (linux-arm-cgo), func Dup(int) (int, error) +pkg syscall (linux-arm-cgo), func Dup2(int, int) error +pkg syscall (linux-arm-cgo), func Dup3(int, int, int) error +pkg syscall (linux-arm-cgo), func EpollCreate(int) (int, error) +pkg syscall (linux-arm-cgo), func EpollCreate1(int) (int, error) +pkg syscall (linux-arm-cgo), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-arm-cgo), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-arm-cgo), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-arm-cgo), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-arm-cgo), func Fchdir(int) error +pkg syscall (linux-arm-cgo), func Fchmod(int, uint32) error +pkg syscall (linux-arm-cgo), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-arm-cgo), func Fchown(int, int, int) error +pkg syscall (linux-arm-cgo), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-arm-cgo), func Fdatasync(int) error +pkg syscall (linux-arm-cgo), func Flock(int, int) error +pkg syscall (linux-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-arm-cgo), func Fstat(int, *Stat_t) error +pkg syscall (linux-arm-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-arm-cgo), func Fsync(int) error +pkg syscall (linux-arm-cgo), func Ftruncate(int, int64) error +pkg syscall (linux-arm-cgo), func Futimes(int, []Timeval) error +pkg syscall (linux-arm-cgo), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-arm-cgo), func Getcwd([]uint8) (int, error) +pkg syscall (linux-arm-cgo), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-arm-cgo), func Getpgid(int) (int, error) +pkg syscall (linux-arm-cgo), func Getpgrp() int +pkg syscall (linux-arm-cgo), func Getpriority(int, int) (int, error) +pkg syscall (linux-arm-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-arm-cgo), func Getrusage(int, *Rusage) error +pkg syscall (linux-arm-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (linux-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-arm-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (linux-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-arm-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-arm-cgo), func GetsockoptUcred(int, int, int) (*Ucred, error) +pkg syscall (linux-arm-cgo), func Gettid() int +pkg syscall (linux-arm-cgo), func Getxattr(string, string, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-arm-cgo), func InotifyInit() (int, error) +pkg syscall (linux-arm-cgo), func InotifyInit1(int) (int, error) +pkg syscall (linux-arm-cgo), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-arm-cgo), func Kill(int, Signal) error +pkg syscall (linux-arm-cgo), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func Listen(int, int) error +pkg syscall (linux-arm-cgo), func Listxattr(string, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-arm-cgo), func LsfSocket(int, int) (int, error) +pkg syscall (linux-arm-cgo), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-arm-cgo), func Lstat(string, *Stat_t) error +pkg syscall (linux-arm-cgo), func Madvise([]uint8, int) error +pkg syscall (linux-arm-cgo), func Mkdirat(int, string, uint32) error +pkg syscall (linux-arm-cgo), func Mkfifo(string, uint32) error +pkg syscall (linux-arm-cgo), func Mknod(string, uint32, int) error +pkg syscall (linux-arm-cgo), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-arm-cgo), func Mlock([]uint8) error +pkg syscall (linux-arm-cgo), func Mlockall(int) error +pkg syscall (linux-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-arm-cgo), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-arm-cgo), func Mprotect([]uint8, int) error +pkg syscall (linux-arm-cgo), func Munlock([]uint8) error +pkg syscall (linux-arm-cgo), func Munlockall() error +pkg syscall (linux-arm-cgo), func Munmap([]uint8) error +pkg syscall (linux-arm-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-arm-cgo), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-arm-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (linux-arm-cgo), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-arm-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-arm-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-arm-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-arm-cgo), func Pause() error +pkg syscall (linux-arm-cgo), func Pipe([]int) error +pkg syscall (linux-arm-cgo), func Pipe2([]int, int) error +pkg syscall (linux-arm-cgo), func PivotRoot(string, string) error +pkg syscall (linux-arm-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-arm-cgo), func PtraceAttach(int) error +pkg syscall (linux-arm-cgo), func PtraceCont(int, int) error +pkg syscall (linux-arm-cgo), func PtraceDetach(int) error +pkg syscall (linux-arm-cgo), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-arm-cgo), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-arm-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func PtraceSetOptions(int, int) error +pkg syscall (linux-arm-cgo), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-arm-cgo), func PtraceSingleStep(int) error +pkg syscall (linux-arm-cgo), func PtraceSyscall(int, int) error +pkg syscall (linux-arm-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func Read(int, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-arm-cgo), func Reboot(int) error +pkg syscall (linux-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-arm-cgo), func Removexattr(string, string) error +pkg syscall (linux-arm-cgo), func Renameat(int, string, int, string) error +pkg syscall (linux-arm-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-arm-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-arm-cgo), func SetLsfPromisc(string, bool) error +pkg syscall (linux-arm-cgo), func SetNonblock(int, bool) error +pkg syscall (linux-arm-cgo), func Setdomainname([]uint8) error +pkg syscall (linux-arm-cgo), func Setfsgid(int) error +pkg syscall (linux-arm-cgo), func Setfsuid(int) error +pkg syscall (linux-arm-cgo), func Setgid(int) error +pkg syscall (linux-arm-cgo), func Setgroups([]int) error +pkg syscall (linux-arm-cgo), func Sethostname([]uint8) error +pkg syscall (linux-arm-cgo), func Setpgid(int, int) error +pkg syscall (linux-arm-cgo), func Setpriority(int, int, int) error +pkg syscall (linux-arm-cgo), func Setregid(int, int) error +pkg syscall (linux-arm-cgo), func Setresgid(int, int, int) error +pkg syscall (linux-arm-cgo), func Setresuid(int, int, int) error +pkg syscall (linux-arm-cgo), func Setreuid(int, int) error +pkg syscall (linux-arm-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-arm-cgo), func Setsid() (int, error) +pkg syscall (linux-arm-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (linux-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (linux-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-arm-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-arm-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-arm-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-arm-cgo), func Settimeofday(*Timeval) error +pkg syscall (linux-arm-cgo), func Setuid(int) error +pkg syscall (linux-arm-cgo), func Setxattr(string, string, []uint8, int) error +pkg syscall (linux-arm-cgo), func Shutdown(int, int) error +pkg syscall (linux-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (linux-arm-cgo), func Socket(int, int, int) (int, error) +pkg syscall (linux-arm-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-arm-cgo), func Splice(int, *int64, int, *int64, int, int) (int, error) +pkg syscall (linux-arm-cgo), func Stat(string, *Stat_t) error +pkg syscall (linux-arm-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (linux-arm-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-arm-cgo), func Sync() +pkg syscall (linux-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm-cgo), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-arm-cgo), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-arm-cgo), func Tgkill(int, int, Signal) error +pkg syscall (linux-arm-cgo), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-arm-cgo), func Times(*Tms) (uintptr, error) +pkg syscall (linux-arm-cgo), func Truncate(string, int64) error +pkg syscall (linux-arm-cgo), func Umask(int) int +pkg syscall (linux-arm-cgo), func Uname(*Utsname) error +pkg syscall (linux-arm-cgo), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-arm-cgo), func UnixRights(...int) []uint8 +pkg syscall (linux-arm-cgo), func Unlinkat(int, string) error +pkg syscall (linux-arm-cgo), func Unmount(string, int) error +pkg syscall (linux-arm-cgo), func Unshare(int) error +pkg syscall (linux-arm-cgo), func Ustat(int, *Ustat_t) error +pkg syscall (linux-arm-cgo), func Utime(string, *Utimbuf) error +pkg syscall (linux-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-arm-cgo), func Write(int, []uint8) (int, error) +pkg syscall (linux-arm-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-arm-cgo), method (*Iovec) SetLen(int) +pkg syscall (linux-arm-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (linux-arm-cgo), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-arm-cgo), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-arm-cgo), type Cmsghdr struct +pkg syscall (linux-arm-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (linux-arm-cgo), type Cmsghdr struct, Level int32 +pkg syscall (linux-arm-cgo), type Cmsghdr struct, Type int32 +pkg syscall (linux-arm-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-arm-cgo), type Credential struct +pkg syscall (linux-arm-cgo), type Credential struct, Gid uint32 +pkg syscall (linux-arm-cgo), type Credential struct, Groups []uint32 +pkg syscall (linux-arm-cgo), type Credential struct, Uid uint32 +pkg syscall (linux-arm-cgo), type Dirent struct +pkg syscall (linux-arm-cgo), type Dirent struct, Ino uint64 +pkg syscall (linux-arm-cgo), type Dirent struct, Name [256]uint8 +pkg syscall (linux-arm-cgo), type Dirent struct, Off int64 +pkg syscall (linux-arm-cgo), type Dirent struct, Pad_cgo_0 [5]uint8 +pkg syscall (linux-arm-cgo), type Dirent struct, Reclen uint16 +pkg syscall (linux-arm-cgo), type Dirent struct, Type uint8 +pkg syscall (linux-arm-cgo), type EpollEvent struct +pkg syscall (linux-arm-cgo), type EpollEvent struct, Events uint32 +pkg syscall (linux-arm-cgo), type EpollEvent struct, Fd int32 +pkg syscall (linux-arm-cgo), type EpollEvent struct, Pad int32 +pkg syscall (linux-arm-cgo), type EpollEvent struct, PadFd int32 +pkg syscall (linux-arm-cgo), type FdSet struct +pkg syscall (linux-arm-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (linux-arm-cgo), type Fsid struct +pkg syscall (linux-arm-cgo), type Fsid struct, X__val [2]int32 +pkg syscall (linux-arm-cgo), type ICMPv6Filter struct +pkg syscall (linux-arm-cgo), type ICMPv6Filter struct, Data [8]uint32 +pkg syscall (linux-arm-cgo), type IPMreqn struct +pkg syscall (linux-arm-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-arm-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-arm-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct +pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (linux-arm-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (linux-arm-cgo), type IfAddrmsg struct +pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-arm-cgo), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-arm-cgo), type IfInfomsg struct +pkg syscall (linux-arm-cgo), type IfInfomsg struct, Change uint32 +pkg syscall (linux-arm-cgo), type IfInfomsg struct, Family uint8 +pkg syscall (linux-arm-cgo), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-arm-cgo), type IfInfomsg struct, Index int32 +pkg syscall (linux-arm-cgo), type IfInfomsg struct, Type uint16 +pkg syscall (linux-arm-cgo), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct +pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-arm-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct +pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-arm-cgo), type InotifyEvent struct +pkg syscall (linux-arm-cgo), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-arm-cgo), type InotifyEvent struct, Len uint32 +pkg syscall (linux-arm-cgo), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-arm-cgo), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-arm-cgo), type InotifyEvent struct, Wd int32 +pkg syscall (linux-arm-cgo), type Iovec struct +pkg syscall (linux-arm-cgo), type Iovec struct, Base *uint8 +pkg syscall (linux-arm-cgo), type Iovec struct, Len uint32 +pkg syscall (linux-arm-cgo), type Msghdr struct +pkg syscall (linux-arm-cgo), type Msghdr struct, Control *uint8 +pkg syscall (linux-arm-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (linux-arm-cgo), type Msghdr struct, Flags int32 +pkg syscall (linux-arm-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (linux-arm-cgo), type Msghdr struct, Iovlen uint32 +pkg syscall (linux-arm-cgo), type Msghdr struct, Name *uint8 +pkg syscall (linux-arm-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (linux-arm-cgo), type NetlinkMessage struct +pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-arm-cgo), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct +pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct +pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-arm-cgo), type NlAttr struct +pkg syscall (linux-arm-cgo), type NlAttr struct, Len uint16 +pkg syscall (linux-arm-cgo), type NlAttr struct, Type uint16 +pkg syscall (linux-arm-cgo), type NlMsgerr struct +pkg syscall (linux-arm-cgo), type NlMsgerr struct, Error int32 +pkg syscall (linux-arm-cgo), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-arm-cgo), type NlMsghdr struct +pkg syscall (linux-arm-cgo), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-arm-cgo), type NlMsghdr struct, Len uint32 +pkg syscall (linux-arm-cgo), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-arm-cgo), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-arm-cgo), type NlMsghdr struct, Type uint16 +pkg syscall (linux-arm-cgo), type PtraceRegs struct +pkg syscall (linux-arm-cgo), type PtraceRegs struct, Uregs [18]uint32 +pkg syscall (linux-arm-cgo), type RawSockaddr struct, Data [14]uint8 +pkg syscall (linux-arm-cgo), type RawSockaddr struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrAny struct, Pad [96]uint8 +pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-arm-cgo), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-arm-cgo), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct +pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct +pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-arm-cgo), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-arm-cgo), type Rlimit struct +pkg syscall (linux-arm-cgo), type Rlimit struct, Cur uint64 +pkg syscall (linux-arm-cgo), type Rlimit struct, Max uint64 +pkg syscall (linux-arm-cgo), type RtAttr struct +pkg syscall (linux-arm-cgo), type RtAttr struct, Len uint16 +pkg syscall (linux-arm-cgo), type RtAttr struct, Type uint16 +pkg syscall (linux-arm-cgo), type RtGenmsg struct +pkg syscall (linux-arm-cgo), type RtGenmsg struct, Family uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct +pkg syscall (linux-arm-cgo), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Family uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Flags uint32 +pkg syscall (linux-arm-cgo), type RtMsg struct, Protocol uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Scope uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Src_len uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Table uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Tos uint8 +pkg syscall (linux-arm-cgo), type RtMsg struct, Type uint8 +pkg syscall (linux-arm-cgo), type RtNexthop struct +pkg syscall (linux-arm-cgo), type RtNexthop struct, Flags uint8 +pkg syscall (linux-arm-cgo), type RtNexthop struct, Hops uint8 +pkg syscall (linux-arm-cgo), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-arm-cgo), type RtNexthop struct, Len uint16 +pkg syscall (linux-arm-cgo), type Rusage struct, Idrss int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Inblock int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Isrss int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Ixrss int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Majflt int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Maxrss int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Minflt int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Nsignals int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Nswap int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Oublock int32 +pkg syscall (linux-arm-cgo), type Rusage struct, Stime Timeval +pkg syscall (linux-arm-cgo), type Rusage struct, Utime Timeval +pkg syscall (linux-arm-cgo), type SockFilter struct +pkg syscall (linux-arm-cgo), type SockFilter struct, Code uint16 +pkg syscall (linux-arm-cgo), type SockFilter struct, Jf uint8 +pkg syscall (linux-arm-cgo), type SockFilter struct, Jt uint8 +pkg syscall (linux-arm-cgo), type SockFilter struct, K uint32 +pkg syscall (linux-arm-cgo), type SockFprog struct +pkg syscall (linux-arm-cgo), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-arm-cgo), type SockFprog struct, Len uint16 +pkg syscall (linux-arm-cgo), type SockFprog struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-arm-cgo), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-arm-cgo), type SockaddrNetlink struct +pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-arm-cgo), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-arm-cgo), type SocketControlMessage struct +pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-arm-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-arm-cgo), type Stat_t struct +pkg syscall (linux-arm-cgo), type Stat_t struct, Atim Timespec +pkg syscall (linux-arm-cgo), type Stat_t struct, Blksize int32 +pkg syscall (linux-arm-cgo), type Stat_t struct, Blocks int64 +pkg syscall (linux-arm-cgo), type Stat_t struct, Ctim Timespec +pkg syscall (linux-arm-cgo), type Stat_t struct, Dev uint64 +pkg syscall (linux-arm-cgo), type Stat_t struct, Gid uint32 +pkg syscall (linux-arm-cgo), type Stat_t struct, Ino uint64 +pkg syscall (linux-arm-cgo), type Stat_t struct, Mode uint32 +pkg syscall (linux-arm-cgo), type Stat_t struct, Mtim Timespec +pkg syscall (linux-arm-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_1 [6]uint8 +pkg syscall (linux-arm-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (linux-arm-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (linux-arm-cgo), type Stat_t struct, Size int64 +pkg syscall (linux-arm-cgo), type Stat_t struct, Uid uint32 +pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad1 uint16 +pkg syscall (linux-arm-cgo), type Stat_t struct, X__pad2 uint16 +pkg syscall (linux-arm-cgo), type Stat_t struct, X__st_ino uint32 +pkg syscall (linux-arm-cgo), type Statfs_t struct +pkg syscall (linux-arm-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Bsize int32 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Files uint64 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Flags int32 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Frsize int32 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-arm-cgo), type Statfs_t struct, Namelen int32 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Spare [4]int32 +pkg syscall (linux-arm-cgo), type Statfs_t struct, Type int32 +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Chroot string +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Cloneflags uintptr +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ctty int +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (linux-arm-cgo), type Sysinfo_t struct +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Bufferram uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freehigh uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeram uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Freeswap uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Loads [3]uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Sharedram uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalhigh uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalram uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalswap uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Uptime int32 +pkg syscall (linux-arm-cgo), type Sysinfo_t struct, X_f [8]uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct +pkg syscall (linux-arm-cgo), type TCPInfo struct, Advmss uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Ato uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Backoff uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Ca_state uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Fackets uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_recv uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_ack_sent uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_recv uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Last_data_sent uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Lost uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Options uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Pmtu uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Probes uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_mss uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_rtt uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_space uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rcv_ssthresh uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Reordering uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Retrans uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Retransmits uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rto uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rtt uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Rttvar uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Sacked uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_cwnd uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_mss uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Snd_ssthresh uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, State uint8 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Total_retrans uint32 +pkg syscall (linux-arm-cgo), type TCPInfo struct, Unacked uint32 +pkg syscall (linux-arm-cgo), type Termios struct +pkg syscall (linux-arm-cgo), type Termios struct, Cc [32]uint8 +pkg syscall (linux-arm-cgo), type Termios struct, Cflag uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Iflag uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Ispeed uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Lflag uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Line uint8 +pkg syscall (linux-arm-cgo), type Termios struct, Oflag uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Ospeed uint32 +pkg syscall (linux-arm-cgo), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-arm-cgo), type Time_t int32 +pkg syscall (linux-arm-cgo), type Timespec struct, Nsec int32 +pkg syscall (linux-arm-cgo), type Timespec struct, Sec int32 +pkg syscall (linux-arm-cgo), type Timeval struct, Sec int32 +pkg syscall (linux-arm-cgo), type Timeval struct, Usec int32 +pkg syscall (linux-arm-cgo), type Timex struct +pkg syscall (linux-arm-cgo), type Timex struct, Calcnt int32 +pkg syscall (linux-arm-cgo), type Timex struct, Constant int32 +pkg syscall (linux-arm-cgo), type Timex struct, Errcnt int32 +pkg syscall (linux-arm-cgo), type Timex struct, Esterror int32 +pkg syscall (linux-arm-cgo), type Timex struct, Freq int32 +pkg syscall (linux-arm-cgo), type Timex struct, Jitcnt int32 +pkg syscall (linux-arm-cgo), type Timex struct, Jitter int32 +pkg syscall (linux-arm-cgo), type Timex struct, Maxerror int32 +pkg syscall (linux-arm-cgo), type Timex struct, Modes uint32 +pkg syscall (linux-arm-cgo), type Timex struct, Offset int32 +pkg syscall (linux-arm-cgo), type Timex struct, Pad_cgo_0 [44]uint8 +pkg syscall (linux-arm-cgo), type Timex struct, Ppsfreq int32 +pkg syscall (linux-arm-cgo), type Timex struct, Precision int32 +pkg syscall (linux-arm-cgo), type Timex struct, Shift int32 +pkg syscall (linux-arm-cgo), type Timex struct, Stabil int32 +pkg syscall (linux-arm-cgo), type Timex struct, Status int32 +pkg syscall (linux-arm-cgo), type Timex struct, Stbcnt int32 +pkg syscall (linux-arm-cgo), type Timex struct, Tai int32 +pkg syscall (linux-arm-cgo), type Timex struct, Tick int32 +pkg syscall (linux-arm-cgo), type Timex struct, Time Timeval +pkg syscall (linux-arm-cgo), type Timex struct, Tolerance int32 +pkg syscall (linux-arm-cgo), type Tms struct +pkg syscall (linux-arm-cgo), type Tms struct, Cstime int32 +pkg syscall (linux-arm-cgo), type Tms struct, Cutime int32 +pkg syscall (linux-arm-cgo), type Tms struct, Stime int32 +pkg syscall (linux-arm-cgo), type Tms struct, Utime int32 +pkg syscall (linux-arm-cgo), type Ucred struct +pkg syscall (linux-arm-cgo), type Ucred struct, Gid uint32 +pkg syscall (linux-arm-cgo), type Ucred struct, Pid int32 +pkg syscall (linux-arm-cgo), type Ucred struct, Uid uint32 +pkg syscall (linux-arm-cgo), type Ustat_t struct +pkg syscall (linux-arm-cgo), type Ustat_t struct, Fname [6]uint8 +pkg syscall (linux-arm-cgo), type Ustat_t struct, Fpack [6]uint8 +pkg syscall (linux-arm-cgo), type Ustat_t struct, Tfree int32 +pkg syscall (linux-arm-cgo), type Ustat_t struct, Tinode uint32 +pkg syscall (linux-arm-cgo), type Utimbuf struct +pkg syscall (linux-arm-cgo), type Utimbuf struct, Actime int32 +pkg syscall (linux-arm-cgo), type Utimbuf struct, Modtime int32 +pkg syscall (linux-arm-cgo), type Utsname struct +pkg syscall (linux-arm-cgo), type Utsname struct, Domainname [65]uint8 +pkg syscall (linux-arm-cgo), type Utsname struct, Machine [65]uint8 +pkg syscall (linux-arm-cgo), type Utsname struct, Nodename [65]uint8 +pkg syscall (linux-arm-cgo), type Utsname struct, Release [65]uint8 +pkg syscall (linux-arm-cgo), type Utsname struct, Sysname [65]uint8 +pkg syscall (linux-arm-cgo), type Utsname struct, Version [65]uint8 +pkg syscall (linux-arm-cgo), type WaitStatus uint32 +pkg syscall (linux-arm-cgo), var Stderr int +pkg syscall (linux-arm-cgo), var Stdin int +pkg syscall (linux-arm-cgo), var Stdout int +pkg syscall (netbsd-386), const AF_APPLETALK ideal-int +pkg syscall (netbsd-386), const AF_ARP ideal-int +pkg syscall (netbsd-386), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-386), const AF_CCITT ideal-int +pkg syscall (netbsd-386), const AF_CHAOS ideal-int +pkg syscall (netbsd-386), const AF_CNT ideal-int +pkg syscall (netbsd-386), const AF_COIP ideal-int +pkg syscall (netbsd-386), const AF_DATAKIT ideal-int +pkg syscall (netbsd-386), const AF_DECnet ideal-int +pkg syscall (netbsd-386), const AF_DLI ideal-int +pkg syscall (netbsd-386), const AF_E164 ideal-int +pkg syscall (netbsd-386), const AF_ECMA ideal-int +pkg syscall (netbsd-386), const AF_HYLINK ideal-int +pkg syscall (netbsd-386), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-386), const AF_IMPLINK ideal-int +pkg syscall (netbsd-386), const AF_IPX ideal-int +pkg syscall (netbsd-386), const AF_ISDN ideal-int +pkg syscall (netbsd-386), const AF_ISO ideal-int +pkg syscall (netbsd-386), const AF_LAT ideal-int +pkg syscall (netbsd-386), const AF_LINK ideal-int +pkg syscall (netbsd-386), const AF_LOCAL ideal-int +pkg syscall (netbsd-386), const AF_MAX ideal-int +pkg syscall (netbsd-386), const AF_MPLS ideal-int +pkg syscall (netbsd-386), const AF_NATM ideal-int +pkg syscall (netbsd-386), const AF_NS ideal-int +pkg syscall (netbsd-386), const AF_OROUTE ideal-int +pkg syscall (netbsd-386), const AF_OSI ideal-int +pkg syscall (netbsd-386), const AF_PUP ideal-int +pkg syscall (netbsd-386), const AF_ROUTE ideal-int +pkg syscall (netbsd-386), const AF_SNA ideal-int +pkg syscall (netbsd-386), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-386), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-386), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-386), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-386), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-386), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-386), const B0 ideal-int +pkg syscall (netbsd-386), const B110 ideal-int +pkg syscall (netbsd-386), const B115200 ideal-int +pkg syscall (netbsd-386), const B1200 ideal-int +pkg syscall (netbsd-386), const B134 ideal-int +pkg syscall (netbsd-386), const B14400 ideal-int +pkg syscall (netbsd-386), const B150 ideal-int +pkg syscall (netbsd-386), const B1800 ideal-int +pkg syscall (netbsd-386), const B19200 ideal-int +pkg syscall (netbsd-386), const B200 ideal-int +pkg syscall (netbsd-386), const B230400 ideal-int +pkg syscall (netbsd-386), const B2400 ideal-int +pkg syscall (netbsd-386), const B28800 ideal-int +pkg syscall (netbsd-386), const B300 ideal-int +pkg syscall (netbsd-386), const B38400 ideal-int +pkg syscall (netbsd-386), const B460800 ideal-int +pkg syscall (netbsd-386), const B4800 ideal-int +pkg syscall (netbsd-386), const B50 ideal-int +pkg syscall (netbsd-386), const B57600 ideal-int +pkg syscall (netbsd-386), const B600 ideal-int +pkg syscall (netbsd-386), const B7200 ideal-int +pkg syscall (netbsd-386), const B75 ideal-int +pkg syscall (netbsd-386), const B76800 ideal-int +pkg syscall (netbsd-386), const B921600 ideal-int +pkg syscall (netbsd-386), const B9600 ideal-int +pkg syscall (netbsd-386), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-386), const BIOCFLUSH ideal-int +pkg syscall (netbsd-386), const BIOCGBLEN ideal-int +pkg syscall (netbsd-386), const BIOCGDLT ideal-int +pkg syscall (netbsd-386), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-386), const BIOCGETIF ideal-int +pkg syscall (netbsd-386), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-386), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-386), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-386), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-386), const BIOCGSTATS ideal-int +pkg syscall (netbsd-386), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-386), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-386), const BIOCPROMISC ideal-int +pkg syscall (netbsd-386), const BIOCSBLEN ideal-int +pkg syscall (netbsd-386), const BIOCSDLT ideal-int +pkg syscall (netbsd-386), const BIOCSETF ideal-int +pkg syscall (netbsd-386), const BIOCSETIF ideal-int +pkg syscall (netbsd-386), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-386), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-386), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-386), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-386), const BIOCSTCPF ideal-int +pkg syscall (netbsd-386), const BIOCSUDPF ideal-int +pkg syscall (netbsd-386), const BIOCVERSION ideal-int +pkg syscall (netbsd-386), const BPF_A ideal-int +pkg syscall (netbsd-386), const BPF_ABS ideal-int +pkg syscall (netbsd-386), const BPF_ADD ideal-int +pkg syscall (netbsd-386), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-386), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-386), const BPF_ALU ideal-int +pkg syscall (netbsd-386), const BPF_AND ideal-int +pkg syscall (netbsd-386), const BPF_B ideal-int +pkg syscall (netbsd-386), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-386), const BPF_DIV ideal-int +pkg syscall (netbsd-386), const BPF_H ideal-int +pkg syscall (netbsd-386), const BPF_IMM ideal-int +pkg syscall (netbsd-386), const BPF_IND ideal-int +pkg syscall (netbsd-386), const BPF_JA ideal-int +pkg syscall (netbsd-386), const BPF_JEQ ideal-int +pkg syscall (netbsd-386), const BPF_JGE ideal-int +pkg syscall (netbsd-386), const BPF_JGT ideal-int +pkg syscall (netbsd-386), const BPF_JMP ideal-int +pkg syscall (netbsd-386), const BPF_JSET ideal-int +pkg syscall (netbsd-386), const BPF_K ideal-int +pkg syscall (netbsd-386), const BPF_LD ideal-int +pkg syscall (netbsd-386), const BPF_LDX ideal-int +pkg syscall (netbsd-386), const BPF_LEN ideal-int +pkg syscall (netbsd-386), const BPF_LSH ideal-int +pkg syscall (netbsd-386), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-386), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-386), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-386), const BPF_MEM ideal-int +pkg syscall (netbsd-386), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-386), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-386), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-386), const BPF_MISC ideal-int +pkg syscall (netbsd-386), const BPF_MSH ideal-int +pkg syscall (netbsd-386), const BPF_MUL ideal-int +pkg syscall (netbsd-386), const BPF_NEG ideal-int +pkg syscall (netbsd-386), const BPF_OR ideal-int +pkg syscall (netbsd-386), const BPF_RELEASE ideal-int +pkg syscall (netbsd-386), const BPF_RET ideal-int +pkg syscall (netbsd-386), const BPF_RSH ideal-int +pkg syscall (netbsd-386), const BPF_ST ideal-int +pkg syscall (netbsd-386), const BPF_STX ideal-int +pkg syscall (netbsd-386), const BPF_SUB ideal-int +pkg syscall (netbsd-386), const BPF_TAX ideal-int +pkg syscall (netbsd-386), const BPF_TXA ideal-int +pkg syscall (netbsd-386), const BPF_W ideal-int +pkg syscall (netbsd-386), const BPF_X ideal-int +pkg syscall (netbsd-386), const BRKINT ideal-int +pkg syscall (netbsd-386), const CFLUSH ideal-int +pkg syscall (netbsd-386), const CLOCAL ideal-int +pkg syscall (netbsd-386), const CREAD ideal-int +pkg syscall (netbsd-386), const CS5 ideal-int +pkg syscall (netbsd-386), const CS6 ideal-int +pkg syscall (netbsd-386), const CS7 ideal-int +pkg syscall (netbsd-386), const CS8 ideal-int +pkg syscall (netbsd-386), const CSIZE ideal-int +pkg syscall (netbsd-386), const CSTART ideal-int +pkg syscall (netbsd-386), const CSTATUS ideal-int +pkg syscall (netbsd-386), const CSTOP ideal-int +pkg syscall (netbsd-386), const CSTOPB ideal-int +pkg syscall (netbsd-386), const CSUSP ideal-int +pkg syscall (netbsd-386), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-386), const CTL_NET ideal-int +pkg syscall (netbsd-386), const CTL_QUERY ideal-int +pkg syscall (netbsd-386), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-386), const DLT_A429 ideal-int +pkg syscall (netbsd-386), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-386), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-386), const DLT_AOS ideal-int +pkg syscall (netbsd-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-386), const DLT_ARCNET ideal-int +pkg syscall (netbsd-386), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-386), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-386), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-386), const DLT_AURORA ideal-int +pkg syscall (netbsd-386), const DLT_AX25 ideal-int +pkg syscall (netbsd-386), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-386), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-386), const DLT_CAN20B ideal-int +pkg syscall (netbsd-386), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-386), const DLT_CHAOS ideal-int +pkg syscall (netbsd-386), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-386), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-386), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-386), const DLT_DECT ideal-int +pkg syscall (netbsd-386), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-386), const DLT_ECONET ideal-int +pkg syscall (netbsd-386), const DLT_EN10MB ideal-int +pkg syscall (netbsd-386), const DLT_EN3MB ideal-int +pkg syscall (netbsd-386), const DLT_ENC ideal-int +pkg syscall (netbsd-386), const DLT_ERF ideal-int +pkg syscall (netbsd-386), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-386), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-386), const DLT_FC_2 ideal-int +pkg syscall (netbsd-386), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-386), const DLT_FDDI ideal-int +pkg syscall (netbsd-386), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-386), const DLT_FRELAY ideal-int +pkg syscall (netbsd-386), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-386), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-386), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-386), const DLT_GPF_F ideal-int +pkg syscall (netbsd-386), const DLT_GPF_T ideal-int +pkg syscall (netbsd-386), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-386), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-386), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-386), const DLT_HDLC ideal-int +pkg syscall (netbsd-386), const DLT_HHDLC ideal-int +pkg syscall (netbsd-386), const DLT_HIPPI ideal-int +pkg syscall (netbsd-386), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-386), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-386), const DLT_IPMB ideal-int +pkg syscall (netbsd-386), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-386), const DLT_IPNET ideal-int +pkg syscall (netbsd-386), const DLT_IPV4 ideal-int +pkg syscall (netbsd-386), const DLT_IPV6 ideal-int +pkg syscall (netbsd-386), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-386), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-386), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-386), const DLT_LAPD ideal-int +pkg syscall (netbsd-386), const DLT_LIN ideal-int +pkg syscall (netbsd-386), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-386), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-386), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-386), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-386), const DLT_LOOP ideal-int +pkg syscall (netbsd-386), const DLT_LTALK ideal-int +pkg syscall (netbsd-386), const DLT_MFR ideal-int +pkg syscall (netbsd-386), const DLT_MOST ideal-int +pkg syscall (netbsd-386), const DLT_MPLS ideal-int +pkg syscall (netbsd-386), const DLT_MTP2 ideal-int +pkg syscall (netbsd-386), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-386), const DLT_MTP3 ideal-int +pkg syscall (netbsd-386), const DLT_NULL ideal-int +pkg syscall (netbsd-386), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-386), const DLT_PFLOG ideal-int +pkg syscall (netbsd-386), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-386), const DLT_PPI ideal-int +pkg syscall (netbsd-386), const DLT_PPP ideal-int +pkg syscall (netbsd-386), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-386), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-386), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-386), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-386), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-386), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-386), const DLT_PRONET ideal-int +pkg syscall (netbsd-386), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-386), const DLT_RAW ideal-int +pkg syscall (netbsd-386), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-386), const DLT_RIO ideal-int +pkg syscall (netbsd-386), const DLT_SCCP ideal-int +pkg syscall (netbsd-386), const DLT_SITA ideal-int +pkg syscall (netbsd-386), const DLT_SLIP ideal-int +pkg syscall (netbsd-386), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-386), const DLT_SUNATM ideal-int +pkg syscall (netbsd-386), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-386), const DLT_TZSP ideal-int +pkg syscall (netbsd-386), const DLT_USB ideal-int +pkg syscall (netbsd-386), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-386), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-386), const DLT_WIHART ideal-int +pkg syscall (netbsd-386), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-386), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-386), const DT_BLK ideal-int +pkg syscall (netbsd-386), const DT_CHR ideal-int +pkg syscall (netbsd-386), const DT_DIR ideal-int +pkg syscall (netbsd-386), const DT_FIFO ideal-int +pkg syscall (netbsd-386), const DT_LNK ideal-int +pkg syscall (netbsd-386), const DT_REG ideal-int +pkg syscall (netbsd-386), const DT_SOCK ideal-int +pkg syscall (netbsd-386), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-386), const DT_WHT ideal-int +pkg syscall (netbsd-386), const EAUTH Errno +pkg syscall (netbsd-386), const EBADMSG Errno +pkg syscall (netbsd-386), const EBADRPC Errno +pkg syscall (netbsd-386), const ECHO ideal-int +pkg syscall (netbsd-386), const ECHOCTL ideal-int +pkg syscall (netbsd-386), const ECHOE ideal-int +pkg syscall (netbsd-386), const ECHOK ideal-int +pkg syscall (netbsd-386), const ECHOKE ideal-int +pkg syscall (netbsd-386), const ECHONL ideal-int +pkg syscall (netbsd-386), const ECHOPRT ideal-int +pkg syscall (netbsd-386), const EFTYPE Errno +pkg syscall (netbsd-386), const ELAST Errno +pkg syscall (netbsd-386), const EMULTIHOP Errno +pkg syscall (netbsd-386), const EMUL_LINUX ideal-int +pkg syscall (netbsd-386), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-386), const EMUL_MAXID ideal-int +pkg syscall (netbsd-386), const ENEEDAUTH Errno +pkg syscall (netbsd-386), const ENOATTR Errno +pkg syscall (netbsd-386), const ENODATA Errno +pkg syscall (netbsd-386), const ENOLINK Errno +pkg syscall (netbsd-386), const ENOSR Errno +pkg syscall (netbsd-386), const ENOSTR Errno +pkg syscall (netbsd-386), const EN_SW_CTL_INF ideal-int +pkg syscall (netbsd-386), const EN_SW_CTL_PREC ideal-int +pkg syscall (netbsd-386), const EN_SW_CTL_ROUND ideal-int +pkg syscall (netbsd-386), const EN_SW_DATACHAIN ideal-int +pkg syscall (netbsd-386), const EN_SW_DENORM ideal-int +pkg syscall (netbsd-386), const EN_SW_INVOP ideal-int +pkg syscall (netbsd-386), const EN_SW_OVERFLOW ideal-int +pkg syscall (netbsd-386), const EN_SW_PRECLOSS ideal-int +pkg syscall (netbsd-386), const EN_SW_UNDERFLOW ideal-int +pkg syscall (netbsd-386), const EN_SW_ZERODIV ideal-int +pkg syscall (netbsd-386), const EPROCLIM Errno +pkg syscall (netbsd-386), const EPROCUNAVAIL Errno +pkg syscall (netbsd-386), const EPROGMISMATCH Errno +pkg syscall (netbsd-386), const EPROGUNAVAIL Errno +pkg syscall (netbsd-386), const EPROTO Errno +pkg syscall (netbsd-386), const ERPCMISMATCH Errno +pkg syscall (netbsd-386), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-386), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-386), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-386), const ETHERMIN ideal-int +pkg syscall (netbsd-386), const ETHERMTU ideal-int +pkg syscall (netbsd-386), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-386), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-386), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-386), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-386), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-386), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-386), const ETIME Errno +pkg syscall (netbsd-386), const EVFILT_AIO ideal-int +pkg syscall (netbsd-386), const EVFILT_PROC ideal-int +pkg syscall (netbsd-386), const EVFILT_READ ideal-int +pkg syscall (netbsd-386), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-386), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-386), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-386), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-386), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-386), const EV_ADD ideal-int +pkg syscall (netbsd-386), const EV_CLEAR ideal-int +pkg syscall (netbsd-386), const EV_DELETE ideal-int +pkg syscall (netbsd-386), const EV_DISABLE ideal-int +pkg syscall (netbsd-386), const EV_ENABLE ideal-int +pkg syscall (netbsd-386), const EV_EOF ideal-int +pkg syscall (netbsd-386), const EV_ERROR ideal-int +pkg syscall (netbsd-386), const EV_FLAG1 ideal-int +pkg syscall (netbsd-386), const EV_ONESHOT ideal-int +pkg syscall (netbsd-386), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-386), const EXTA ideal-int +pkg syscall (netbsd-386), const EXTB ideal-int +pkg syscall (netbsd-386), const EXTPROC ideal-int +pkg syscall (netbsd-386), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-386), const FD_SETSIZE ideal-int +pkg syscall (netbsd-386), const FLUSHO ideal-int +pkg syscall (netbsd-386), const F_CLOSEM ideal-int +pkg syscall (netbsd-386), const F_DUPFD ideal-int +pkg syscall (netbsd-386), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-386), const F_FSCTL ideal-int +pkg syscall (netbsd-386), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-386), const F_FSIN ideal-int +pkg syscall (netbsd-386), const F_FSINOUT ideal-int +pkg syscall (netbsd-386), const F_FSOUT ideal-int +pkg syscall (netbsd-386), const F_FSPRIV ideal-int +pkg syscall (netbsd-386), const F_FSVOID ideal-int +pkg syscall (netbsd-386), const F_GETFD ideal-int +pkg syscall (netbsd-386), const F_GETFL ideal-int +pkg syscall (netbsd-386), const F_GETLK ideal-int +pkg syscall (netbsd-386), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-386), const F_GETOWN ideal-int +pkg syscall (netbsd-386), const F_MAXFD ideal-int +pkg syscall (netbsd-386), const F_OK ideal-int +pkg syscall (netbsd-386), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-386), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-386), const F_RDLCK ideal-int +pkg syscall (netbsd-386), const F_SETFD ideal-int +pkg syscall (netbsd-386), const F_SETFL ideal-int +pkg syscall (netbsd-386), const F_SETLK ideal-int +pkg syscall (netbsd-386), const F_SETLKW ideal-int +pkg syscall (netbsd-386), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-386), const F_SETOWN ideal-int +pkg syscall (netbsd-386), const F_UNLCK ideal-int +pkg syscall (netbsd-386), const F_WRLCK ideal-int +pkg syscall (netbsd-386), const HUPCL ideal-int +pkg syscall (netbsd-386), const ICANON ideal-int +pkg syscall (netbsd-386), const ICMP6_FILTER = 18 +pkg syscall (netbsd-386), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-386), const ICRNL ideal-int +pkg syscall (netbsd-386), const IEXTEN ideal-int +pkg syscall (netbsd-386), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-386), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-386), const IFA_ROUTE ideal-int +pkg syscall (netbsd-386), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-386), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-386), const IFF_DEBUG ideal-int +pkg syscall (netbsd-386), const IFF_LINK0 ideal-int +pkg syscall (netbsd-386), const IFF_LINK1 ideal-int +pkg syscall (netbsd-386), const IFF_LINK2 ideal-int +pkg syscall (netbsd-386), const IFF_NOARP ideal-int +pkg syscall (netbsd-386), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-386), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-386), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-386), const IFF_PROMISC ideal-int +pkg syscall (netbsd-386), const IFF_RUNNING ideal-int +pkg syscall (netbsd-386), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-386), const IFNAMSIZ ideal-int +pkg syscall (netbsd-386), const IFT_1822 ideal-int +pkg syscall (netbsd-386), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-386), const IFT_AAL2 ideal-int +pkg syscall (netbsd-386), const IFT_AAL5 ideal-int +pkg syscall (netbsd-386), const IFT_ADSL ideal-int +pkg syscall (netbsd-386), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-386), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-386), const IFT_ARAP ideal-int +pkg syscall (netbsd-386), const IFT_ARCNET ideal-int +pkg syscall (netbsd-386), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-386), const IFT_ASYNC ideal-int +pkg syscall (netbsd-386), const IFT_ATM ideal-int +pkg syscall (netbsd-386), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-386), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-386), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-386), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-386), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-386), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-386), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-386), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-386), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-386), const IFT_BSC ideal-int +pkg syscall (netbsd-386), const IFT_CARP ideal-int +pkg syscall (netbsd-386), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-386), const IFT_CEPT ideal-int +pkg syscall (netbsd-386), const IFT_CES ideal-int +pkg syscall (netbsd-386), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_CNR ideal-int +pkg syscall (netbsd-386), const IFT_COFFEE ideal-int +pkg syscall (netbsd-386), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-386), const IFT_DCN ideal-int +pkg syscall (netbsd-386), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_DLSW ideal-int +pkg syscall (netbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_DS0 ideal-int +pkg syscall (netbsd-386), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-386), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-386), const IFT_DS3 ideal-int +pkg syscall (netbsd-386), const IFT_DTM ideal-int +pkg syscall (netbsd-386), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-386), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-386), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_ECONET ideal-int +pkg syscall (netbsd-386), const IFT_EON ideal-int +pkg syscall (netbsd-386), const IFT_EPLRS ideal-int +pkg syscall (netbsd-386), const IFT_ESCON ideal-int +pkg syscall (netbsd-386), const IFT_ETHER ideal-int +pkg syscall (netbsd-386), const IFT_FAITH ideal-int +pkg syscall (netbsd-386), const IFT_FAST ideal-int +pkg syscall (netbsd-386), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-386), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-386), const IFT_FDDI ideal-int +pkg syscall (netbsd-386), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-386), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-386), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-386), const IFT_FRELAY ideal-int +pkg syscall (netbsd-386), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-386), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-386), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-386), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-386), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-386), const IFT_GIF ideal-int +pkg syscall (netbsd-386), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-386), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-386), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-386), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-386), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-386), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-386), const IFT_HDLC ideal-int +pkg syscall (netbsd-386), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-386), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-386), const IFT_HIPPI ideal-int +pkg syscall (netbsd-386), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-386), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-386), const IFT_HSSI ideal-int +pkg syscall (netbsd-386), const IFT_HY ideal-int +pkg syscall (netbsd-386), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-386), const IFT_IDSL ideal-int +pkg syscall (netbsd-386), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-386), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-386), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-386), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-386), const IFT_IFGSN ideal-int +pkg syscall (netbsd-386), const IFT_IMT ideal-int +pkg syscall (netbsd-386), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-386), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-386), const IFT_IP ideal-int +pkg syscall (netbsd-386), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-386), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-386), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-386), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-386), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-386), const IFT_ISDN ideal-int +pkg syscall (netbsd-386), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-386), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-386), const IFT_ISDNS ideal-int +pkg syscall (netbsd-386), const IFT_ISDNU ideal-int +pkg syscall (netbsd-386), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-386), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-386), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-386), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-386), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-386), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-386), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-386), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-386), const IFT_ISUP ideal-int +pkg syscall (netbsd-386), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-386), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-386), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-386), const IFT_LAPB ideal-int +pkg syscall (netbsd-386), const IFT_LAPD ideal-int +pkg syscall (netbsd-386), const IFT_LAPF ideal-int +pkg syscall (netbsd-386), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-386), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-386), const IFT_LOOP ideal-int +pkg syscall (netbsd-386), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-386), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-386), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-386), const IFT_MODEM ideal-int +pkg syscall (netbsd-386), const IFT_MPC ideal-int +pkg syscall (netbsd-386), const IFT_MPLS ideal-int +pkg syscall (netbsd-386), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-386), const IFT_MSDSL ideal-int +pkg syscall (netbsd-386), const IFT_MVL ideal-int +pkg syscall (netbsd-386), const IFT_MYRINET ideal-int +pkg syscall (netbsd-386), const IFT_NFAS ideal-int +pkg syscall (netbsd-386), const IFT_NSIP ideal-int +pkg syscall (netbsd-386), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-386), const IFT_OTHER ideal-int +pkg syscall (netbsd-386), const IFT_P10 ideal-int +pkg syscall (netbsd-386), const IFT_P80 ideal-int +pkg syscall (netbsd-386), const IFT_PARA ideal-int +pkg syscall (netbsd-386), const IFT_PFLOG ideal-int +pkg syscall (netbsd-386), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-386), const IFT_PLC ideal-int +pkg syscall (netbsd-386), const IFT_PON155 ideal-int +pkg syscall (netbsd-386), const IFT_PON622 ideal-int +pkg syscall (netbsd-386), const IFT_POS ideal-int +pkg syscall (netbsd-386), const IFT_PPP ideal-int +pkg syscall (netbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-386), const IFT_PROPATM ideal-int +pkg syscall (netbsd-386), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-386), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-386), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-386), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-386), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-386), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-386), const IFT_PVC ideal-int +pkg syscall (netbsd-386), const IFT_Q2931 ideal-int +pkg syscall (netbsd-386), const IFT_QLLC ideal-int +pkg syscall (netbsd-386), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-386), const IFT_RADSL ideal-int +pkg syscall (netbsd-386), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-386), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-386), const IFT_RS232 ideal-int +pkg syscall (netbsd-386), const IFT_RSRB ideal-int +pkg syscall (netbsd-386), const IFT_SDLC ideal-int +pkg syscall (netbsd-386), const IFT_SDSL ideal-int +pkg syscall (netbsd-386), const IFT_SHDSL ideal-int +pkg syscall (netbsd-386), const IFT_SIP ideal-int +pkg syscall (netbsd-386), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-386), const IFT_SIPTG ideal-int +pkg syscall (netbsd-386), const IFT_SLIP ideal-int +pkg syscall (netbsd-386), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-386), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-386), const IFT_SONET ideal-int +pkg syscall (netbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-386), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-386), const IFT_SONETVT ideal-int +pkg syscall (netbsd-386), const IFT_SRP ideal-int +pkg syscall (netbsd-386), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-386), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-386), const IFT_STARLAN ideal-int +pkg syscall (netbsd-386), const IFT_STF ideal-int +pkg syscall (netbsd-386), const IFT_T1 ideal-int +pkg syscall (netbsd-386), const IFT_TDLC ideal-int +pkg syscall (netbsd-386), const IFT_TELINK ideal-int +pkg syscall (netbsd-386), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-386), const IFT_TR008 ideal-int +pkg syscall (netbsd-386), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-386), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-386), const IFT_ULTRA ideal-int +pkg syscall (netbsd-386), const IFT_USB ideal-int +pkg syscall (netbsd-386), const IFT_V11 ideal-int +pkg syscall (netbsd-386), const IFT_V35 ideal-int +pkg syscall (netbsd-386), const IFT_V36 ideal-int +pkg syscall (netbsd-386), const IFT_V37 ideal-int +pkg syscall (netbsd-386), const IFT_VDSL ideal-int +pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-386), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-386), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-386), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-386), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-386), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-386), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-386), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-386), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-386), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-386), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-386), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-386), const IFT_X213 ideal-int +pkg syscall (netbsd-386), const IFT_X25 ideal-int +pkg syscall (netbsd-386), const IFT_X25DDN ideal-int +pkg syscall (netbsd-386), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-386), const IFT_X25MLP ideal-int +pkg syscall (netbsd-386), const IFT_X25PLE ideal-int +pkg syscall (netbsd-386), const IFT_XETHER ideal-int +pkg syscall (netbsd-386), const IGNBRK ideal-int +pkg syscall (netbsd-386), const IGNCR ideal-int +pkg syscall (netbsd-386), const IGNPAR ideal-int +pkg syscall (netbsd-386), const IMAXBEL ideal-int +pkg syscall (netbsd-386), const INLCR ideal-int +pkg syscall (netbsd-386), const INPCK ideal-int +pkg syscall (netbsd-386), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-386), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-386), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-386), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-386), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-386), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-386), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-386), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-386), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-386), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-386), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-386), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-386), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-386), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-386), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-386), const IPPROTO_AH ideal-int +pkg syscall (netbsd-386), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-386), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-386), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-386), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-386), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-386), const IPPROTO_EON ideal-int +pkg syscall (netbsd-386), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-386), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-386), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-386), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-386), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-386), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-386), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-386), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-386), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-386), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-386), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-386), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-386), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-386), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-386), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-386), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-386), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-386), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-386), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-386), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-386), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-386), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-386), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-386), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-386), const IPPROTO_TP ideal-int +pkg syscall (netbsd-386), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-386), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-386), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-386), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-386), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-386), const IPV6_FAITH ideal-int +pkg syscall (netbsd-386), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-386), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-386), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-386), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-386), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-386), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-386), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-386), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-386), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-386), const IPV6_MMTU ideal-int +pkg syscall (netbsd-386), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-386), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-386), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-386), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-386), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-386), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-386), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-386), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-386), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-386), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-386), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-386), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-386), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-386), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-386), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-386), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-386), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-386), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-386), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-386), const IPV6_VERSION ideal-int +pkg syscall (netbsd-386), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-386), const IP_DF ideal-int +pkg syscall (netbsd-386), const IP_EF ideal-int +pkg syscall (netbsd-386), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-386), const IP_HDRINCL ideal-int +pkg syscall (netbsd-386), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-386), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-386), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-386), const IP_MF ideal-int +pkg syscall (netbsd-386), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-386), const IP_MINTTL ideal-int +pkg syscall (netbsd-386), const IP_MSS ideal-int +pkg syscall (netbsd-386), const IP_OFFMASK ideal-int +pkg syscall (netbsd-386), const IP_OPTIONS ideal-int +pkg syscall (netbsd-386), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-386), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-386), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-386), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-386), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-386), const IP_RECVIF ideal-int +pkg syscall (netbsd-386), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-386), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-386), const IP_RECVTTL ideal-int +pkg syscall (netbsd-386), const IP_RETOPTS ideal-int +pkg syscall (netbsd-386), const IP_RF ideal-int +pkg syscall (netbsd-386), const ISIG ideal-int +pkg syscall (netbsd-386), const ISTRIP ideal-int +pkg syscall (netbsd-386), const IXANY ideal-int +pkg syscall (netbsd-386), const IXOFF ideal-int +pkg syscall (netbsd-386), const IXON ideal-int +pkg syscall (netbsd-386), const LOCK_EX ideal-int +pkg syscall (netbsd-386), const LOCK_NB ideal-int +pkg syscall (netbsd-386), const LOCK_SH ideal-int +pkg syscall (netbsd-386), const LOCK_UN ideal-int +pkg syscall (netbsd-386), const MSG_BCAST ideal-int +pkg syscall (netbsd-386), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-386), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-386), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-386), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-386), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-386), const MSG_EOR ideal-int +pkg syscall (netbsd-386), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-386), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-386), const MSG_MCAST ideal-int +pkg syscall (netbsd-386), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-386), const MSG_NBIO ideal-int +pkg syscall (netbsd-386), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-386), const MSG_OOB ideal-int +pkg syscall (netbsd-386), const MSG_PEEK ideal-int +pkg syscall (netbsd-386), const MSG_TRUNC ideal-int +pkg syscall (netbsd-386), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-386), const MSG_WAITALL ideal-int +pkg syscall (netbsd-386), const NAME_MAX ideal-int +pkg syscall (netbsd-386), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-386), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-386), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-386), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-386), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-386), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-386), const NOFLSH ideal-int +pkg syscall (netbsd-386), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-386), const NOTE_CHILD ideal-int +pkg syscall (netbsd-386), const NOTE_DELETE ideal-int +pkg syscall (netbsd-386), const NOTE_EXEC ideal-int +pkg syscall (netbsd-386), const NOTE_EXIT ideal-int +pkg syscall (netbsd-386), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-386), const NOTE_FORK ideal-int +pkg syscall (netbsd-386), const NOTE_LINK ideal-int +pkg syscall (netbsd-386), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-386), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-386), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-386), const NOTE_RENAME ideal-int +pkg syscall (netbsd-386), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-386), const NOTE_TRACK ideal-int +pkg syscall (netbsd-386), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-386), const NOTE_WRITE ideal-int +pkg syscall (netbsd-386), const OCRNL ideal-int +pkg syscall (netbsd-386), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-386), const ONLCR ideal-int +pkg syscall (netbsd-386), const ONLRET ideal-int +pkg syscall (netbsd-386), const ONOCR ideal-int +pkg syscall (netbsd-386), const ONOEOT ideal-int +pkg syscall (netbsd-386), const OPOST ideal-int +pkg syscall (netbsd-386), const O_ACCMODE ideal-int +pkg syscall (netbsd-386), const O_ALT_IO ideal-int +pkg syscall (netbsd-386), const O_DIRECT ideal-int +pkg syscall (netbsd-386), const O_DIRECTORY ideal-int +pkg syscall (netbsd-386), const O_DSYNC ideal-int +pkg syscall (netbsd-386), const O_EXLOCK ideal-int +pkg syscall (netbsd-386), const O_FSYNC ideal-int +pkg syscall (netbsd-386), const O_NDELAY ideal-int +pkg syscall (netbsd-386), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-386), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-386), const O_RSYNC ideal-int +pkg syscall (netbsd-386), const O_SHLOCK ideal-int +pkg syscall (netbsd-386), const PARENB ideal-int +pkg syscall (netbsd-386), const PARMRK ideal-int +pkg syscall (netbsd-386), const PARODD ideal-int +pkg syscall (netbsd-386), const PENDIN ideal-int +pkg syscall (netbsd-386), const PRIO_PGRP = 1 +pkg syscall (netbsd-386), const PRIO_PGRP ideal-int +pkg syscall (netbsd-386), const PRIO_PROCESS = 0 +pkg syscall (netbsd-386), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-386), const PRIO_USER = 2 +pkg syscall (netbsd-386), const PRIO_USER ideal-int +pkg syscall (netbsd-386), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-386), const PTRACE_CONT ideal-int +pkg syscall (netbsd-386), const PTRACE_KILL ideal-int +pkg syscall (netbsd-386), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-386), const RLIMIT_AS ideal-int +pkg syscall (netbsd-386), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-386), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-386), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-386), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-386), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-386), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-386), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-386), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-386), const RTAX_BRD ideal-int +pkg syscall (netbsd-386), const RTAX_DST ideal-int +pkg syscall (netbsd-386), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-386), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-386), const RTAX_IFA ideal-int +pkg syscall (netbsd-386), const RTAX_IFP ideal-int +pkg syscall (netbsd-386), const RTAX_MAX ideal-int +pkg syscall (netbsd-386), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-386), const RTAX_TAG ideal-int +pkg syscall (netbsd-386), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-386), const RTA_BRD ideal-int +pkg syscall (netbsd-386), const RTA_DST ideal-int +pkg syscall (netbsd-386), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-386), const RTA_GENMASK ideal-int +pkg syscall (netbsd-386), const RTA_IFA ideal-int +pkg syscall (netbsd-386), const RTA_IFP ideal-int +pkg syscall (netbsd-386), const RTA_NETMASK ideal-int +pkg syscall (netbsd-386), const RTA_TAG ideal-int +pkg syscall (netbsd-386), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-386), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-386), const RTF_CLONED ideal-int +pkg syscall (netbsd-386), const RTF_CLONING ideal-int +pkg syscall (netbsd-386), const RTF_DONE ideal-int +pkg syscall (netbsd-386), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-386), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-386), const RTF_HOST ideal-int +pkg syscall (netbsd-386), const RTF_LLINFO ideal-int +pkg syscall (netbsd-386), const RTF_MASK ideal-int +pkg syscall (netbsd-386), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-386), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-386), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-386), const RTF_REJECT ideal-int +pkg syscall (netbsd-386), const RTF_SRC ideal-int +pkg syscall (netbsd-386), const RTF_STATIC ideal-int +pkg syscall (netbsd-386), const RTF_UP ideal-int +pkg syscall (netbsd-386), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-386), const RTM_ADD ideal-int +pkg syscall (netbsd-386), const RTM_CHANGE ideal-int +pkg syscall (netbsd-386), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-386), const RTM_DELADDR ideal-int +pkg syscall (netbsd-386), const RTM_DELETE ideal-int +pkg syscall (netbsd-386), const RTM_GET ideal-int +pkg syscall (netbsd-386), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-386), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-386), const RTM_IFINFO ideal-int +pkg syscall (netbsd-386), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-386), const RTM_LOCK ideal-int +pkg syscall (netbsd-386), const RTM_LOSING ideal-int +pkg syscall (netbsd-386), const RTM_MISS ideal-int +pkg syscall (netbsd-386), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-386), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-386), const RTM_OLDADD ideal-int +pkg syscall (netbsd-386), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-386), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-386), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-386), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-386), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-386), const RTM_SETGATE ideal-int +pkg syscall (netbsd-386), const RTM_VERSION ideal-int +pkg syscall (netbsd-386), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-386), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-386), const RTV_MTU ideal-int +pkg syscall (netbsd-386), const RTV_RPIPE ideal-int +pkg syscall (netbsd-386), const RTV_RTT ideal-int +pkg syscall (netbsd-386), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-386), const RTV_SPIPE ideal-int +pkg syscall (netbsd-386), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-386), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-386), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-386), const SCM_CREDS ideal-int +pkg syscall (netbsd-386), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-386), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-386), const SIGCHLD Signal +pkg syscall (netbsd-386), const SIGCONT Signal +pkg syscall (netbsd-386), const SIGEMT Signal +pkg syscall (netbsd-386), const SIGINFO Signal +pkg syscall (netbsd-386), const SIGIO Signal +pkg syscall (netbsd-386), const SIGIOT Signal +pkg syscall (netbsd-386), const SIGPROF Signal +pkg syscall (netbsd-386), const SIGPWR Signal +pkg syscall (netbsd-386), const SIGSTOP Signal +pkg syscall (netbsd-386), const SIGSYS Signal +pkg syscall (netbsd-386), const SIGTSTP Signal +pkg syscall (netbsd-386), const SIGTTIN Signal +pkg syscall (netbsd-386), const SIGTTOU Signal +pkg syscall (netbsd-386), const SIGURG Signal +pkg syscall (netbsd-386), const SIGUSR1 Signal +pkg syscall (netbsd-386), const SIGUSR2 Signal +pkg syscall (netbsd-386), const SIGVTALRM Signal +pkg syscall (netbsd-386), const SIGWINCH Signal +pkg syscall (netbsd-386), const SIGXCPU Signal +pkg syscall (netbsd-386), const SIGXFSZ Signal +pkg syscall (netbsd-386), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-386), const SIOCADDRT ideal-int +pkg syscall (netbsd-386), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCATMARK ideal-int +pkg syscall (netbsd-386), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-386), const SIOCDELRT ideal-int +pkg syscall (netbsd-386), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-386), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-386), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-386), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-386), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-386), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-386), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-386), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-386), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-386), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-386), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-386), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-386), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-386), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-386), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-386), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-386), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-386), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-386), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-386), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-386), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-386), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-386), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-386), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-386), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-386), const SIOCGPGRP ideal-int +pkg syscall (netbsd-386), const SIOCGVH ideal-int +pkg syscall (netbsd-386), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-386), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-386), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-386), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-386), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-386), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-386), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-386), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-386), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-386), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-386), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-386), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-386), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-386), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-386), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-386), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-386), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-386), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-386), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-386), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-386), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-386), const SIOCSPGRP ideal-int +pkg syscall (netbsd-386), const SIOCSVH ideal-int +pkg syscall (netbsd-386), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-386), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-386), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-386), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-386), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-386), const SOCK_RDM ideal-int +pkg syscall (netbsd-386), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-386), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-386), const SO_DEBUG ideal-int +pkg syscall (netbsd-386), const SO_ERROR ideal-int +pkg syscall (netbsd-386), const SO_NOHEADER ideal-int +pkg syscall (netbsd-386), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-386), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-386), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-386), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-386), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-386), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-386), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-386), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-386), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-386), const SO_TYPE ideal-int +pkg syscall (netbsd-386), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-386), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-386), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-386), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-386), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-386), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-386), const SYS_ACCESS ideal-int +pkg syscall (netbsd-386), const SYS_ACCT ideal-int +pkg syscall (netbsd-386), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-386), const SYS_BIND ideal-int +pkg syscall (netbsd-386), const SYS_BREAK ideal-int +pkg syscall (netbsd-386), const SYS_CHDIR ideal-int +pkg syscall (netbsd-386), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-386), const SYS_CHMOD ideal-int +pkg syscall (netbsd-386), const SYS_CHOWN ideal-int +pkg syscall (netbsd-386), const SYS_CHROOT ideal-int +pkg syscall (netbsd-386), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-386), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-386), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-386), const SYS_CLOSE ideal-int +pkg syscall (netbsd-386), const SYS_CONNECT ideal-int +pkg syscall (netbsd-386), const SYS_DUP ideal-int +pkg syscall (netbsd-386), const SYS_DUP2 ideal-int +pkg syscall (netbsd-386), const SYS_DUP3 ideal-int +pkg syscall (netbsd-386), const SYS_EXECVE ideal-int +pkg syscall (netbsd-386), const SYS_EXIT ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-386), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-386), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-386), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-386), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-386), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-386), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-386), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-386), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-386), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-386), const SYS_FCNTL ideal-int +pkg syscall (netbsd-386), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-386), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-386), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-386), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-386), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-386), const SYS_FLOCK ideal-int +pkg syscall (netbsd-386), const SYS_FORK ideal-int +pkg syscall (netbsd-386), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-386), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-386), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_FSTAT ideal-int +pkg syscall (netbsd-386), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-386), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-386), const SYS_FSYNC ideal-int +pkg syscall (netbsd-386), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-386), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-386), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-386), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-386), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-386), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-386), const SYS_GETEGID ideal-int +pkg syscall (netbsd-386), const SYS_GETEUID ideal-int +pkg syscall (netbsd-386), const SYS_GETFH ideal-int +pkg syscall (netbsd-386), const SYS_GETGID ideal-int +pkg syscall (netbsd-386), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-386), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-386), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-386), const SYS_GETPGID ideal-int +pkg syscall (netbsd-386), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-386), const SYS_GETPID ideal-int +pkg syscall (netbsd-386), const SYS_GETPPID ideal-int +pkg syscall (netbsd-386), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-386), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-386), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-386), const SYS_GETSID ideal-int +pkg syscall (netbsd-386), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-386), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-386), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-386), const SYS_GETUID ideal-int +pkg syscall (netbsd-386), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-386), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_IOCTL ideal-int +pkg syscall (netbsd-386), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-386), const SYS_KEVENT ideal-int +pkg syscall (netbsd-386), const SYS_KILL ideal-int +pkg syscall (netbsd-386), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-386), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-386), const SYS_KTRACE ideal-int +pkg syscall (netbsd-386), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-386), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-386), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-386), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_LINK ideal-int +pkg syscall (netbsd-386), const SYS_LINKAT ideal-int +pkg syscall (netbsd-386), const SYS_LISTEN ideal-int +pkg syscall (netbsd-386), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-386), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-386), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-386), const SYS_LSEEK ideal-int +pkg syscall (netbsd-386), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_LSTAT ideal-int +pkg syscall (netbsd-386), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-386), const SYS_MADVISE ideal-int +pkg syscall (netbsd-386), const SYS_MINCORE ideal-int +pkg syscall (netbsd-386), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-386), const SYS_MKDIR ideal-int +pkg syscall (netbsd-386), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-386), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-386), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-386), const SYS_MKNOD ideal-int +pkg syscall (netbsd-386), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-386), const SYS_MLOCK ideal-int +pkg syscall (netbsd-386), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-386), const SYS_MMAP ideal-int +pkg syscall (netbsd-386), const SYS_MODCTL ideal-int +pkg syscall (netbsd-386), const SYS_MOUNT ideal-int +pkg syscall (netbsd-386), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-386), const SYS_MREMAP ideal-int +pkg syscall (netbsd-386), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-386), const SYS_MSGGET ideal-int +pkg syscall (netbsd-386), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-386), const SYS_MSGSND ideal-int +pkg syscall (netbsd-386), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-386), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-386), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-386), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-386), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-386), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-386), const SYS_OPEN ideal-int +pkg syscall (netbsd-386), const SYS_OPENAT ideal-int +pkg syscall (netbsd-386), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-386), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-386), const SYS_PIPE ideal-int +pkg syscall (netbsd-386), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-386), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-386), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-386), const SYS_POLL ideal-int +pkg syscall (netbsd-386), const SYS_POLLTS ideal-int +pkg syscall (netbsd-386), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-386), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-386), const SYS_PREAD ideal-int +pkg syscall (netbsd-386), const SYS_PREADV ideal-int +pkg syscall (netbsd-386), const SYS_PROFIL ideal-int +pkg syscall (netbsd-386), const SYS_PSELECT ideal-int +pkg syscall (netbsd-386), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-386), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-386), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-386), const SYS_PTRACE ideal-int +pkg syscall (netbsd-386), const SYS_PWRITE ideal-int +pkg syscall (netbsd-386), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-386), const SYS_RASCTL ideal-int +pkg syscall (netbsd-386), const SYS_READ ideal-int +pkg syscall (netbsd-386), const SYS_READLINK ideal-int +pkg syscall (netbsd-386), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-386), const SYS_READV ideal-int +pkg syscall (netbsd-386), const SYS_REBOOT ideal-int +pkg syscall (netbsd-386), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-386), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-386), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-386), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-386), const SYS_RENAME ideal-int +pkg syscall (netbsd-386), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-386), const SYS_REVOKE ideal-int +pkg syscall (netbsd-386), const SYS_RMDIR ideal-int +pkg syscall (netbsd-386), const SYS_SBRK ideal-int +pkg syscall (netbsd-386), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-386), const SYS_SELECT ideal-int +pkg syscall (netbsd-386), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-386), const SYS_SEMGET ideal-int +pkg syscall (netbsd-386), const SYS_SEMOP ideal-int +pkg syscall (netbsd-386), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-386), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-386), const SYS_SENDTO ideal-int +pkg syscall (netbsd-386), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-386), const SYS_SETEGID ideal-int +pkg syscall (netbsd-386), const SYS_SETEUID ideal-int +pkg syscall (netbsd-386), const SYS_SETGID ideal-int +pkg syscall (netbsd-386), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-386), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-386), const SYS_SETPGID ideal-int +pkg syscall (netbsd-386), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-386), const SYS_SETREGID ideal-int +pkg syscall (netbsd-386), const SYS_SETREUID ideal-int +pkg syscall (netbsd-386), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-386), const SYS_SETSID ideal-int +pkg syscall (netbsd-386), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-386), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-386), const SYS_SETUID ideal-int +pkg syscall (netbsd-386), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-386), const SYS_SHMAT ideal-int +pkg syscall (netbsd-386), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-386), const SYS_SHMDT ideal-int +pkg syscall (netbsd-386), const SYS_SHMGET ideal-int +pkg syscall (netbsd-386), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-386), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-386), const SYS_SOCKET ideal-int +pkg syscall (netbsd-386), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-386), const SYS_SSTK ideal-int +pkg syscall (netbsd-386), const SYS_STAT ideal-int +pkg syscall (netbsd-386), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-386), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-386), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-386), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-386), const SYS_SYNC ideal-int +pkg syscall (netbsd-386), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-386), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-386), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-386), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-386), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-386), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-386), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-386), const SYS_UMASK ideal-int +pkg syscall (netbsd-386), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-386), const SYS_UNLINK ideal-int +pkg syscall (netbsd-386), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-386), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-386), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-386), const SYS_UTIMES ideal-int +pkg syscall (netbsd-386), const SYS_UTRACE ideal-int +pkg syscall (netbsd-386), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-386), const SYS_VADVISE ideal-int +pkg syscall (netbsd-386), const SYS_VFORK ideal-int +pkg syscall (netbsd-386), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-386), const SYS_WRITE ideal-int +pkg syscall (netbsd-386), const SYS_WRITEV ideal-int +pkg syscall (netbsd-386), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-386), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-386), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-386), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-386), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-386), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-386), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-386), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-386), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-386), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-386), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-386), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-386), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-386), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-386), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-386), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-386), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-386), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-386), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-386), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-386), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-386), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-386), const SYS___CLONE ideal-int +pkg syscall (netbsd-386), const SYS___GETCWD ideal-int +pkg syscall (netbsd-386), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-386), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-386), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-386), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-386), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-386), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-386), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-386), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-386), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-386), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-386), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-386), const S_ARCH1 ideal-int +pkg syscall (netbsd-386), const S_ARCH2 ideal-int +pkg syscall (netbsd-386), const S_BLKSIZE ideal-int +pkg syscall (netbsd-386), const S_IEXEC ideal-int +pkg syscall (netbsd-386), const S_IFWHT ideal-int +pkg syscall (netbsd-386), const S_IREAD ideal-int +pkg syscall (netbsd-386), const S_IRGRP ideal-int +pkg syscall (netbsd-386), const S_IROTH ideal-int +pkg syscall (netbsd-386), const S_IRWXG ideal-int +pkg syscall (netbsd-386), const S_IRWXO ideal-int +pkg syscall (netbsd-386), const S_IRWXU ideal-int +pkg syscall (netbsd-386), const S_ISTXT ideal-int +pkg syscall (netbsd-386), const S_IWGRP ideal-int +pkg syscall (netbsd-386), const S_IWOTH ideal-int +pkg syscall (netbsd-386), const S_IWRITE ideal-int +pkg syscall (netbsd-386), const S_IXGRP ideal-int +pkg syscall (netbsd-386), const S_IXOTH ideal-int +pkg syscall (netbsd-386), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-386), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-386), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-386), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-386), const SizeofBpfStat ideal-int +pkg syscall (netbsd-386), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-386), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-386), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-386), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-386), const SizeofIPMreq ideal-int +pkg syscall (netbsd-386), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-386), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-386), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-386), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-386), const SizeofIfData ideal-int +pkg syscall (netbsd-386), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-386), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-386), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-386), const SizeofLinger ideal-int +pkg syscall (netbsd-386), const SizeofMsghdr ideal-int +pkg syscall (netbsd-386), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-386), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-386), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-386), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-386), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-386), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-386), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-386), const TCIFLUSH ideal-int +pkg syscall (netbsd-386), const TCIOFLUSH ideal-int +pkg syscall (netbsd-386), const TCOFLUSH ideal-int +pkg syscall (netbsd-386), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-386), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-386), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-386), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-386), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-386), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-386), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-386), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-386), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-386), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-386), const TCP_MINMSS ideal-int +pkg syscall (netbsd-386), const TCP_MSS ideal-int +pkg syscall (netbsd-386), const TCSAFLUSH ideal-int +pkg syscall (netbsd-386), const TIOCCBRK ideal-int +pkg syscall (netbsd-386), const TIOCCDTR ideal-int +pkg syscall (netbsd-386), const TIOCCONS ideal-int +pkg syscall (netbsd-386), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-386), const TIOCDRAIN ideal-int +pkg syscall (netbsd-386), const TIOCEXCL ideal-int +pkg syscall (netbsd-386), const TIOCEXT ideal-int +pkg syscall (netbsd-386), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-386), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-386), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-386), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-386), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-386), const TIOCFLUSH ideal-int +pkg syscall (netbsd-386), const TIOCGETA ideal-int +pkg syscall (netbsd-386), const TIOCGETD ideal-int +pkg syscall (netbsd-386), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-386), const TIOCGLINED ideal-int +pkg syscall (netbsd-386), const TIOCGPGRP ideal-int +pkg syscall (netbsd-386), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-386), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-386), const TIOCGSID ideal-int +pkg syscall (netbsd-386), const TIOCGSIZE ideal-int +pkg syscall (netbsd-386), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-386), const TIOCMBIC ideal-int +pkg syscall (netbsd-386), const TIOCMBIS ideal-int +pkg syscall (netbsd-386), const TIOCMGET ideal-int +pkg syscall (netbsd-386), const TIOCMSET ideal-int +pkg syscall (netbsd-386), const TIOCM_CAR ideal-int +pkg syscall (netbsd-386), const TIOCM_CD ideal-int +pkg syscall (netbsd-386), const TIOCM_CTS ideal-int +pkg syscall (netbsd-386), const TIOCM_DSR ideal-int +pkg syscall (netbsd-386), const TIOCM_DTR ideal-int +pkg syscall (netbsd-386), const TIOCM_LE ideal-int +pkg syscall (netbsd-386), const TIOCM_RI ideal-int +pkg syscall (netbsd-386), const TIOCM_RNG ideal-int +pkg syscall (netbsd-386), const TIOCM_RTS ideal-int +pkg syscall (netbsd-386), const TIOCM_SR ideal-int +pkg syscall (netbsd-386), const TIOCM_ST ideal-int +pkg syscall (netbsd-386), const TIOCNOTTY ideal-int +pkg syscall (netbsd-386), const TIOCNXCL ideal-int +pkg syscall (netbsd-386), const TIOCOUTQ ideal-int +pkg syscall (netbsd-386), const TIOCPKT ideal-int +pkg syscall (netbsd-386), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-386), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-386), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-386), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-386), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-386), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-386), const TIOCPKT_START ideal-int +pkg syscall (netbsd-386), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-386), const TIOCPTMGET ideal-int +pkg syscall (netbsd-386), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-386), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-386), const TIOCREMOTE ideal-int +pkg syscall (netbsd-386), const TIOCSBRK ideal-int +pkg syscall (netbsd-386), const TIOCSCTTY ideal-int +pkg syscall (netbsd-386), const TIOCSDTR ideal-int +pkg syscall (netbsd-386), const TIOCSETA ideal-int +pkg syscall (netbsd-386), const TIOCSETAF ideal-int +pkg syscall (netbsd-386), const TIOCSETAW ideal-int +pkg syscall (netbsd-386), const TIOCSETD ideal-int +pkg syscall (netbsd-386), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-386), const TIOCSIG ideal-int +pkg syscall (netbsd-386), const TIOCSLINED ideal-int +pkg syscall (netbsd-386), const TIOCSPGRP ideal-int +pkg syscall (netbsd-386), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-386), const TIOCSSIZE ideal-int +pkg syscall (netbsd-386), const TIOCSTART ideal-int +pkg syscall (netbsd-386), const TIOCSTAT ideal-int +pkg syscall (netbsd-386), const TIOCSTI ideal-int +pkg syscall (netbsd-386), const TIOCSTOP ideal-int +pkg syscall (netbsd-386), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-386), const TIOCUCNTL ideal-int +pkg syscall (netbsd-386), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-386), const TOSTOP ideal-int +pkg syscall (netbsd-386), const VDISCARD ideal-int +pkg syscall (netbsd-386), const VDSUSP ideal-int +pkg syscall (netbsd-386), const VEOF ideal-int +pkg syscall (netbsd-386), const VEOL ideal-int +pkg syscall (netbsd-386), const VEOL2 ideal-int +pkg syscall (netbsd-386), const VERASE ideal-int +pkg syscall (netbsd-386), const VINTR ideal-int +pkg syscall (netbsd-386), const VKILL ideal-int +pkg syscall (netbsd-386), const VLNEXT ideal-int +pkg syscall (netbsd-386), const VMIN ideal-int +pkg syscall (netbsd-386), const VQUIT ideal-int +pkg syscall (netbsd-386), const VREPRINT ideal-int +pkg syscall (netbsd-386), const VSTART ideal-int +pkg syscall (netbsd-386), const VSTATUS ideal-int +pkg syscall (netbsd-386), const VSTOP ideal-int +pkg syscall (netbsd-386), const VSUSP ideal-int +pkg syscall (netbsd-386), const VTIME ideal-int +pkg syscall (netbsd-386), const VWERASE ideal-int +pkg syscall (netbsd-386), const WALL ideal-int +pkg syscall (netbsd-386), const WALLSIG ideal-int +pkg syscall (netbsd-386), const WALTSIG ideal-int +pkg syscall (netbsd-386), const WCLONE ideal-int +pkg syscall (netbsd-386), const WCOREFLAG ideal-int +pkg syscall (netbsd-386), const WNOHANG ideal-int +pkg syscall (netbsd-386), const WNOWAIT ideal-int +pkg syscall (netbsd-386), const WNOZOMBIE ideal-int +pkg syscall (netbsd-386), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-386), const WSTOPPED ideal-int +pkg syscall (netbsd-386), const WUNTRACED ideal-int +pkg syscall (netbsd-386), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-386), func Access(string, uint32) error +pkg syscall (netbsd-386), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-386), func Bind(int, Sockaddr) error +pkg syscall (netbsd-386), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-386), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-386), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-386), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-386), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-386), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-386), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-386), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-386), func CheckBpfVersion(int) error +pkg syscall (netbsd-386), func Chflags(string, int) error +pkg syscall (netbsd-386), func Chroot(string) error +pkg syscall (netbsd-386), func Close(int) error +pkg syscall (netbsd-386), func CloseOnExec(int) +pkg syscall (netbsd-386), func CmsgLen(int) int +pkg syscall (netbsd-386), func CmsgSpace(int) int +pkg syscall (netbsd-386), func Connect(int, Sockaddr) error +pkg syscall (netbsd-386), func Dup(int) (int, error) +pkg syscall (netbsd-386), func Dup2(int, int) error +pkg syscall (netbsd-386), func Fchdir(int) error +pkg syscall (netbsd-386), func Fchflags(int, int) error +pkg syscall (netbsd-386), func Fchmod(int, uint32) error +pkg syscall (netbsd-386), func Fchown(int, int, int) error +pkg syscall (netbsd-386), func Flock(int, int) error +pkg syscall (netbsd-386), func FlushBpf(int) error +pkg syscall (netbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-386), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-386), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-386), func Fsync(int) error +pkg syscall (netbsd-386), func Ftruncate(int, int64) error +pkg syscall (netbsd-386), func Futimes(int, []Timeval) error +pkg syscall (netbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-386), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-386), func Getpgid(int) (int, error) +pkg syscall (netbsd-386), func Getpgrp() int +pkg syscall (netbsd-386), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-386), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-386), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-386), func Getsid(int) (int, error) +pkg syscall (netbsd-386), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-386), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-386), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-386), func Issetugid() bool +pkg syscall (netbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-386), func Kill(int, Signal) error +pkg syscall (netbsd-386), func Kqueue() (int, error) +pkg syscall (netbsd-386), func Listen(int, int) error +pkg syscall (netbsd-386), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-386), func Mkfifo(string, uint32) error +pkg syscall (netbsd-386), func Mknod(string, uint32, int) error +pkg syscall (netbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-386), func Munmap([]uint8) error +pkg syscall (netbsd-386), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-386), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-386), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-386), func Pipe([]int) error +pkg syscall (netbsd-386), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-386), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-386), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-386), func Revoke(string) error +pkg syscall (netbsd-386), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-386), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-386), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-386), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-386), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-386), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-386), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-386), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-386), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-386), func SetBpfInterface(int, string) error +pkg syscall (netbsd-386), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-386), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-386), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-386), func SetNonblock(int, bool) error +pkg syscall (netbsd-386), func Setegid(int) error +pkg syscall (netbsd-386), func Seteuid(int) error +pkg syscall (netbsd-386), func Setgid(int) error +pkg syscall (netbsd-386), func Setgroups([]int) error +pkg syscall (netbsd-386), func Setpgid(int, int) error +pkg syscall (netbsd-386), func Setpriority(int, int, int) error +pkg syscall (netbsd-386), func Setregid(int, int) error +pkg syscall (netbsd-386), func Setreuid(int, int) error +pkg syscall (netbsd-386), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-386), func Setsid() (int, error) +pkg syscall (netbsd-386), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-386), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-386), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-386), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-386), func Settimeofday(*Timeval) error +pkg syscall (netbsd-386), func Setuid(int) error +pkg syscall (netbsd-386), func Shutdown(int, int) error +pkg syscall (netbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-386), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-386), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-386), func Stat(string, *Stat_t) error +pkg syscall (netbsd-386), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-386), func Sync() error +pkg syscall (netbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386), func Sysctl(string) (string, error) +pkg syscall (netbsd-386), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-386), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-386), func Truncate(string, int64) error +pkg syscall (netbsd-386), func Umask(int) int +pkg syscall (netbsd-386), func UnixRights(...int) []uint8 +pkg syscall (netbsd-386), func Unmount(string, int) error +pkg syscall (netbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-386), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-386), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-386), method (*Iovec) SetLen(int) +pkg syscall (netbsd-386), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-386), type BpfHdr struct +pkg syscall (netbsd-386), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-386), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-386), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-386), type BpfInsn struct +pkg syscall (netbsd-386), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-386), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-386), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-386), type BpfInsn struct, K uint32 +pkg syscall (netbsd-386), type BpfProgram struct +pkg syscall (netbsd-386), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-386), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-386), type BpfStat struct +pkg syscall (netbsd-386), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-386), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-386), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-386), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-386), type BpfTimeval struct +pkg syscall (netbsd-386), type BpfTimeval struct, Sec int32 +pkg syscall (netbsd-386), type BpfTimeval struct, Usec int32 +pkg syscall (netbsd-386), type BpfVersion struct +pkg syscall (netbsd-386), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-386), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-386), type Cmsghdr struct +pkg syscall (netbsd-386), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-386), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-386), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-386), type Credential struct +pkg syscall (netbsd-386), type Credential struct, Gid uint32 +pkg syscall (netbsd-386), type Credential struct, Groups []uint32 +pkg syscall (netbsd-386), type Credential struct, Uid uint32 +pkg syscall (netbsd-386), type Dirent struct +pkg syscall (netbsd-386), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-386), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-386), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-386), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-386), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-386), type Dirent struct, Type uint8 +pkg syscall (netbsd-386), type FdSet struct +pkg syscall (netbsd-386), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-386), type Flock_t struct +pkg syscall (netbsd-386), type Flock_t struct, Len int64 +pkg syscall (netbsd-386), type Flock_t struct, Pid int32 +pkg syscall (netbsd-386), type Flock_t struct, Start int64 +pkg syscall (netbsd-386), type Flock_t struct, Type int16 +pkg syscall (netbsd-386), type Flock_t struct, Whence int16 +pkg syscall (netbsd-386), type Fsid struct +pkg syscall (netbsd-386), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-386), type ICMPv6Filter struct +pkg syscall (netbsd-386), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-386), type IPv6MTUInfo struct +pkg syscall (netbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-386), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-386), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-386), type IfData struct +pkg syscall (netbsd-386), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-386), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-386), type IfData struct, Collisions uint64 +pkg syscall (netbsd-386), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-386), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-386), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-386), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-386), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-386), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-386), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-386), type IfData struct, Link_state int32 +pkg syscall (netbsd-386), type IfData struct, Metric uint64 +pkg syscall (netbsd-386), type IfData struct, Mtu uint64 +pkg syscall (netbsd-386), type IfData struct, Noproto uint64 +pkg syscall (netbsd-386), type IfData struct, Obytes uint64 +pkg syscall (netbsd-386), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-386), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-386), type IfData struct, Opackets uint64 +pkg syscall (netbsd-386), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-386), type IfData struct, Type uint8 +pkg syscall (netbsd-386), type IfMsghdr struct +pkg syscall (netbsd-386), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-386), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-386), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-386), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-386), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-386), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-386), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-386), type IfaMsghdr struct +pkg syscall (netbsd-386), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-386), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-386), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-386), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-386), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-386), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-386), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-386), type Inet6Pktinfo struct +pkg syscall (netbsd-386), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-386), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-386), type InterfaceAddrMessage struct +pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-386), type InterfaceMessage struct +pkg syscall (netbsd-386), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-386), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-386), type Iovec struct +pkg syscall (netbsd-386), type Iovec struct, Base *uint8 +pkg syscall (netbsd-386), type Iovec struct, Len uint32 +pkg syscall (netbsd-386), type Kevent_t struct +pkg syscall (netbsd-386), type Kevent_t struct, Data int64 +pkg syscall (netbsd-386), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-386), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-386), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-386), type Kevent_t struct, Ident uint32 +pkg syscall (netbsd-386), type Kevent_t struct, Udata int32 +pkg syscall (netbsd-386), type Mclpool [0]uint8 +pkg syscall (netbsd-386), type Msghdr struct +pkg syscall (netbsd-386), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-386), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-386), type Msghdr struct, Flags int32 +pkg syscall (netbsd-386), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-386), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-386), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-386), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-386), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-386), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-386), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-386), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-386), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-386), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-386), type RawSockaddrUnix struct +pkg syscall (netbsd-386), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-386), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-386), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-386), type Rlimit struct +pkg syscall (netbsd-386), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-386), type Rlimit struct, Max uint64 +pkg syscall (netbsd-386), type RouteMessage struct +pkg syscall (netbsd-386), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-386), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-386), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-386), type RtMetrics struct +pkg syscall (netbsd-386), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-386), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-386), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-386), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-386), type RtMsghdr struct +pkg syscall (netbsd-386), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-386), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-386), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-386), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-386), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-386), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-386), type Rusage struct, Idrss int32 +pkg syscall (netbsd-386), type Rusage struct, Inblock int32 +pkg syscall (netbsd-386), type Rusage struct, Isrss int32 +pkg syscall (netbsd-386), type Rusage struct, Ixrss int32 +pkg syscall (netbsd-386), type Rusage struct, Majflt int32 +pkg syscall (netbsd-386), type Rusage struct, Maxrss int32 +pkg syscall (netbsd-386), type Rusage struct, Minflt int32 +pkg syscall (netbsd-386), type Rusage struct, Msgrcv int32 +pkg syscall (netbsd-386), type Rusage struct, Msgsnd int32 +pkg syscall (netbsd-386), type Rusage struct, Nivcsw int32 +pkg syscall (netbsd-386), type Rusage struct, Nsignals int32 +pkg syscall (netbsd-386), type Rusage struct, Nswap int32 +pkg syscall (netbsd-386), type Rusage struct, Nvcsw int32 +pkg syscall (netbsd-386), type Rusage struct, Oublock int32 +pkg syscall (netbsd-386), type Rusage struct, Stime Timeval +pkg syscall (netbsd-386), type Rusage struct, Utime Timeval +pkg syscall (netbsd-386), type SockaddrDatalink struct +pkg syscall (netbsd-386), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-386), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-386), type SocketControlMessage struct +pkg syscall (netbsd-386), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-386), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-386), type Stat_t struct +pkg syscall (netbsd-386), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-386), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-386), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-386), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-386), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-386), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-386), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-386), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-386), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-386), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-386), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-386), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-386), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-386), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-386), type Stat_t struct, Size int64 +pkg syscall (netbsd-386), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-386), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-386), type Statfs_t [0]uint8 +pkg syscall (netbsd-386), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-386), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-386), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-386), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-386), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-386), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-386), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-386), type Sysctlnode struct +pkg syscall (netbsd-386), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-386), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-386), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-386), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-386), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-386), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-386), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-386), type Timespec struct, Nsec int32 +pkg syscall (netbsd-386), type Timespec struct, Sec int64 +pkg syscall (netbsd-386), type Timeval struct, Sec int64 +pkg syscall (netbsd-386), type Timeval struct, Usec int32 +pkg syscall (netbsd-386), type WaitStatus uint32 +pkg syscall (netbsd-386), var Stderr int +pkg syscall (netbsd-386), var Stdin int +pkg syscall (netbsd-386), var Stdout int +pkg syscall (netbsd-386-cgo), const AF_APPLETALK ideal-int +pkg syscall (netbsd-386-cgo), const AF_ARP ideal-int +pkg syscall (netbsd-386-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-386-cgo), const AF_CCITT ideal-int +pkg syscall (netbsd-386-cgo), const AF_CHAOS ideal-int +pkg syscall (netbsd-386-cgo), const AF_CNT ideal-int +pkg syscall (netbsd-386-cgo), const AF_COIP ideal-int +pkg syscall (netbsd-386-cgo), const AF_DATAKIT ideal-int +pkg syscall (netbsd-386-cgo), const AF_DECnet ideal-int +pkg syscall (netbsd-386-cgo), const AF_DLI ideal-int +pkg syscall (netbsd-386-cgo), const AF_E164 ideal-int +pkg syscall (netbsd-386-cgo), const AF_ECMA ideal-int +pkg syscall (netbsd-386-cgo), const AF_HYLINK ideal-int +pkg syscall (netbsd-386-cgo), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-386-cgo), const AF_IMPLINK ideal-int +pkg syscall (netbsd-386-cgo), const AF_IPX ideal-int +pkg syscall (netbsd-386-cgo), const AF_ISDN ideal-int +pkg syscall (netbsd-386-cgo), const AF_ISO ideal-int +pkg syscall (netbsd-386-cgo), const AF_LAT ideal-int +pkg syscall (netbsd-386-cgo), const AF_LINK ideal-int +pkg syscall (netbsd-386-cgo), const AF_LOCAL ideal-int +pkg syscall (netbsd-386-cgo), const AF_MAX ideal-int +pkg syscall (netbsd-386-cgo), const AF_MPLS ideal-int +pkg syscall (netbsd-386-cgo), const AF_NATM ideal-int +pkg syscall (netbsd-386-cgo), const AF_NS ideal-int +pkg syscall (netbsd-386-cgo), const AF_OROUTE ideal-int +pkg syscall (netbsd-386-cgo), const AF_OSI ideal-int +pkg syscall (netbsd-386-cgo), const AF_PUP ideal-int +pkg syscall (netbsd-386-cgo), const AF_ROUTE ideal-int +pkg syscall (netbsd-386-cgo), const AF_SNA ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-386-cgo), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-386-cgo), const B0 ideal-int +pkg syscall (netbsd-386-cgo), const B110 ideal-int +pkg syscall (netbsd-386-cgo), const B115200 ideal-int +pkg syscall (netbsd-386-cgo), const B1200 ideal-int +pkg syscall (netbsd-386-cgo), const B134 ideal-int +pkg syscall (netbsd-386-cgo), const B14400 ideal-int +pkg syscall (netbsd-386-cgo), const B150 ideal-int +pkg syscall (netbsd-386-cgo), const B1800 ideal-int +pkg syscall (netbsd-386-cgo), const B19200 ideal-int +pkg syscall (netbsd-386-cgo), const B200 ideal-int +pkg syscall (netbsd-386-cgo), const B230400 ideal-int +pkg syscall (netbsd-386-cgo), const B2400 ideal-int +pkg syscall (netbsd-386-cgo), const B28800 ideal-int +pkg syscall (netbsd-386-cgo), const B300 ideal-int +pkg syscall (netbsd-386-cgo), const B38400 ideal-int +pkg syscall (netbsd-386-cgo), const B460800 ideal-int +pkg syscall (netbsd-386-cgo), const B4800 ideal-int +pkg syscall (netbsd-386-cgo), const B50 ideal-int +pkg syscall (netbsd-386-cgo), const B57600 ideal-int +pkg syscall (netbsd-386-cgo), const B600 ideal-int +pkg syscall (netbsd-386-cgo), const B7200 ideal-int +pkg syscall (netbsd-386-cgo), const B75 ideal-int +pkg syscall (netbsd-386-cgo), const B76800 ideal-int +pkg syscall (netbsd-386-cgo), const B921600 ideal-int +pkg syscall (netbsd-386-cgo), const B9600 ideal-int +pkg syscall (netbsd-386-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-386-cgo), const BIOCFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGBLEN ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGDLT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGETIF ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGSTATS ideal-int +pkg syscall (netbsd-386-cgo), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-386-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-386-cgo), const BIOCPROMISC ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSBLEN ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSDLT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSETF ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSETIF ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSTCPF ideal-int +pkg syscall (netbsd-386-cgo), const BIOCSUDPF ideal-int +pkg syscall (netbsd-386-cgo), const BIOCVERSION ideal-int +pkg syscall (netbsd-386-cgo), const BPF_A ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ABS ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ADD ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ALU ideal-int +pkg syscall (netbsd-386-cgo), const BPF_AND ideal-int +pkg syscall (netbsd-386-cgo), const BPF_B ideal-int +pkg syscall (netbsd-386-cgo), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-386-cgo), const BPF_DIV ideal-int +pkg syscall (netbsd-386-cgo), const BPF_H ideal-int +pkg syscall (netbsd-386-cgo), const BPF_IMM ideal-int +pkg syscall (netbsd-386-cgo), const BPF_IND ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JA ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JEQ ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JGE ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JGT ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JMP ideal-int +pkg syscall (netbsd-386-cgo), const BPF_JSET ideal-int +pkg syscall (netbsd-386-cgo), const BPF_K ideal-int +pkg syscall (netbsd-386-cgo), const BPF_LD ideal-int +pkg syscall (netbsd-386-cgo), const BPF_LDX ideal-int +pkg syscall (netbsd-386-cgo), const BPF_LEN ideal-int +pkg syscall (netbsd-386-cgo), const BPF_LSH ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MEM ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MISC ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MSH ideal-int +pkg syscall (netbsd-386-cgo), const BPF_MUL ideal-int +pkg syscall (netbsd-386-cgo), const BPF_NEG ideal-int +pkg syscall (netbsd-386-cgo), const BPF_OR ideal-int +pkg syscall (netbsd-386-cgo), const BPF_RELEASE ideal-int +pkg syscall (netbsd-386-cgo), const BPF_RET ideal-int +pkg syscall (netbsd-386-cgo), const BPF_RSH ideal-int +pkg syscall (netbsd-386-cgo), const BPF_ST ideal-int +pkg syscall (netbsd-386-cgo), const BPF_STX ideal-int +pkg syscall (netbsd-386-cgo), const BPF_SUB ideal-int +pkg syscall (netbsd-386-cgo), const BPF_TAX ideal-int +pkg syscall (netbsd-386-cgo), const BPF_TXA ideal-int +pkg syscall (netbsd-386-cgo), const BPF_W ideal-int +pkg syscall (netbsd-386-cgo), const BPF_X ideal-int +pkg syscall (netbsd-386-cgo), const BRKINT ideal-int +pkg syscall (netbsd-386-cgo), const CFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const CLOCAL ideal-int +pkg syscall (netbsd-386-cgo), const CREAD ideal-int +pkg syscall (netbsd-386-cgo), const CS5 ideal-int +pkg syscall (netbsd-386-cgo), const CS6 ideal-int +pkg syscall (netbsd-386-cgo), const CS7 ideal-int +pkg syscall (netbsd-386-cgo), const CS8 ideal-int +pkg syscall (netbsd-386-cgo), const CSIZE ideal-int +pkg syscall (netbsd-386-cgo), const CSTART ideal-int +pkg syscall (netbsd-386-cgo), const CSTATUS ideal-int +pkg syscall (netbsd-386-cgo), const CSTOP ideal-int +pkg syscall (netbsd-386-cgo), const CSTOPB ideal-int +pkg syscall (netbsd-386-cgo), const CSUSP ideal-int +pkg syscall (netbsd-386-cgo), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-386-cgo), const CTL_NET ideal-int +pkg syscall (netbsd-386-cgo), const CTL_QUERY ideal-int +pkg syscall (netbsd-386-cgo), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const DLT_A429 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-386-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-386-cgo), const DLT_AOS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ARCNET ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_AURORA ideal-int +pkg syscall (netbsd-386-cgo), const DLT_AX25 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_CAN20B ideal-int +pkg syscall (netbsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-386-cgo), const DLT_CHAOS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_DECT ideal-int +pkg syscall (netbsd-386-cgo), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ECONET ideal-int +pkg syscall (netbsd-386-cgo), const DLT_EN10MB ideal-int +pkg syscall (netbsd-386-cgo), const DLT_EN3MB ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ENC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ERF ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-386-cgo), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FC_2 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FDDI ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FRELAY ideal-int +pkg syscall (netbsd-386-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GPF_F ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GPF_T ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-386-cgo), const DLT_HDLC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_HHDLC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_HIPPI ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IPMB ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IPNET ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IPV4 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IPV6 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-386-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LAPD ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LIN ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LOOP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_LTALK ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MFR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MOST ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MPLS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MTP2 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_MTP3 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_NULL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PFLOG ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPI ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-386-cgo), const DLT_PRONET ideal-int +pkg syscall (netbsd-386-cgo), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-386-cgo), const DLT_RAW ideal-int +pkg syscall (netbsd-386-cgo), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-386-cgo), const DLT_RIO ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SCCP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SITA ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SLIP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SUNATM ideal-int +pkg syscall (netbsd-386-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_TZSP ideal-int +pkg syscall (netbsd-386-cgo), const DLT_USB ideal-int +pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-386-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-386-cgo), const DLT_WIHART ideal-int +pkg syscall (netbsd-386-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-386-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-386-cgo), const DT_BLK ideal-int +pkg syscall (netbsd-386-cgo), const DT_CHR ideal-int +pkg syscall (netbsd-386-cgo), const DT_DIR ideal-int +pkg syscall (netbsd-386-cgo), const DT_FIFO ideal-int +pkg syscall (netbsd-386-cgo), const DT_LNK ideal-int +pkg syscall (netbsd-386-cgo), const DT_REG ideal-int +pkg syscall (netbsd-386-cgo), const DT_SOCK ideal-int +pkg syscall (netbsd-386-cgo), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-386-cgo), const DT_WHT ideal-int +pkg syscall (netbsd-386-cgo), const EAUTH Errno +pkg syscall (netbsd-386-cgo), const EBADMSG Errno +pkg syscall (netbsd-386-cgo), const EBADRPC Errno +pkg syscall (netbsd-386-cgo), const ECHO ideal-int +pkg syscall (netbsd-386-cgo), const ECHOCTL ideal-int +pkg syscall (netbsd-386-cgo), const ECHOE ideal-int +pkg syscall (netbsd-386-cgo), const ECHOK ideal-int +pkg syscall (netbsd-386-cgo), const ECHOKE ideal-int +pkg syscall (netbsd-386-cgo), const ECHONL ideal-int +pkg syscall (netbsd-386-cgo), const ECHOPRT ideal-int +pkg syscall (netbsd-386-cgo), const EFTYPE Errno +pkg syscall (netbsd-386-cgo), const ELAST Errno +pkg syscall (netbsd-386-cgo), const EMULTIHOP Errno +pkg syscall (netbsd-386-cgo), const EMUL_LINUX ideal-int +pkg syscall (netbsd-386-cgo), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-386-cgo), const EMUL_MAXID ideal-int +pkg syscall (netbsd-386-cgo), const ENEEDAUTH Errno +pkg syscall (netbsd-386-cgo), const ENOATTR Errno +pkg syscall (netbsd-386-cgo), const ENODATA Errno +pkg syscall (netbsd-386-cgo), const ENOLINK Errno +pkg syscall (netbsd-386-cgo), const ENOSR Errno +pkg syscall (netbsd-386-cgo), const ENOSTR Errno +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_INF ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_PREC ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_CTL_ROUND ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_DATACHAIN ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_DENORM ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_INVOP ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_OVERFLOW ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_PRECLOSS ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_UNDERFLOW ideal-int +pkg syscall (netbsd-386-cgo), const EN_SW_ZERODIV ideal-int +pkg syscall (netbsd-386-cgo), const EPROCLIM Errno +pkg syscall (netbsd-386-cgo), const EPROCUNAVAIL Errno +pkg syscall (netbsd-386-cgo), const EPROGMISMATCH Errno +pkg syscall (netbsd-386-cgo), const EPROGUNAVAIL Errno +pkg syscall (netbsd-386-cgo), const EPROTO Errno +pkg syscall (netbsd-386-cgo), const ERPCMISMATCH Errno +pkg syscall (netbsd-386-cgo), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-386-cgo), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-386-cgo), const ETHERMIN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERMTU ideal-int +pkg syscall (netbsd-386-cgo), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-386-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-386-cgo), const ETIME Errno +pkg syscall (netbsd-386-cgo), const EVFILT_AIO ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_PROC ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_READ ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-386-cgo), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-386-cgo), const EV_ADD ideal-int +pkg syscall (netbsd-386-cgo), const EV_CLEAR ideal-int +pkg syscall (netbsd-386-cgo), const EV_DELETE ideal-int +pkg syscall (netbsd-386-cgo), const EV_DISABLE ideal-int +pkg syscall (netbsd-386-cgo), const EV_ENABLE ideal-int +pkg syscall (netbsd-386-cgo), const EV_EOF ideal-int +pkg syscall (netbsd-386-cgo), const EV_ERROR ideal-int +pkg syscall (netbsd-386-cgo), const EV_FLAG1 ideal-int +pkg syscall (netbsd-386-cgo), const EV_ONESHOT ideal-int +pkg syscall (netbsd-386-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const EXTA ideal-int +pkg syscall (netbsd-386-cgo), const EXTB ideal-int +pkg syscall (netbsd-386-cgo), const EXTPROC ideal-int +pkg syscall (netbsd-386-cgo), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-386-cgo), const FD_SETSIZE ideal-int +pkg syscall (netbsd-386-cgo), const FLUSHO ideal-int +pkg syscall (netbsd-386-cgo), const F_CLOSEM ideal-int +pkg syscall (netbsd-386-cgo), const F_DUPFD ideal-int +pkg syscall (netbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-386-cgo), const F_FSCTL ideal-int +pkg syscall (netbsd-386-cgo), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-386-cgo), const F_FSIN ideal-int +pkg syscall (netbsd-386-cgo), const F_FSINOUT ideal-int +pkg syscall (netbsd-386-cgo), const F_FSOUT ideal-int +pkg syscall (netbsd-386-cgo), const F_FSPRIV ideal-int +pkg syscall (netbsd-386-cgo), const F_FSVOID ideal-int +pkg syscall (netbsd-386-cgo), const F_GETFD ideal-int +pkg syscall (netbsd-386-cgo), const F_GETFL ideal-int +pkg syscall (netbsd-386-cgo), const F_GETLK ideal-int +pkg syscall (netbsd-386-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-386-cgo), const F_GETOWN ideal-int +pkg syscall (netbsd-386-cgo), const F_MAXFD ideal-int +pkg syscall (netbsd-386-cgo), const F_OK ideal-int +pkg syscall (netbsd-386-cgo), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-386-cgo), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-386-cgo), const F_RDLCK ideal-int +pkg syscall (netbsd-386-cgo), const F_SETFD ideal-int +pkg syscall (netbsd-386-cgo), const F_SETFL ideal-int +pkg syscall (netbsd-386-cgo), const F_SETLK ideal-int +pkg syscall (netbsd-386-cgo), const F_SETLKW ideal-int +pkg syscall (netbsd-386-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-386-cgo), const F_SETOWN ideal-int +pkg syscall (netbsd-386-cgo), const F_UNLCK ideal-int +pkg syscall (netbsd-386-cgo), const F_WRLCK ideal-int +pkg syscall (netbsd-386-cgo), const HUPCL ideal-int +pkg syscall (netbsd-386-cgo), const ICANON ideal-int +pkg syscall (netbsd-386-cgo), const ICMP6_FILTER = 18 +pkg syscall (netbsd-386-cgo), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-386-cgo), const ICRNL ideal-int +pkg syscall (netbsd-386-cgo), const IEXTEN ideal-int +pkg syscall (netbsd-386-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-386-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-386-cgo), const IFA_ROUTE ideal-int +pkg syscall (netbsd-386-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-386-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-386-cgo), const IFF_DEBUG ideal-int +pkg syscall (netbsd-386-cgo), const IFF_LINK0 ideal-int +pkg syscall (netbsd-386-cgo), const IFF_LINK1 ideal-int +pkg syscall (netbsd-386-cgo), const IFF_LINK2 ideal-int +pkg syscall (netbsd-386-cgo), const IFF_NOARP ideal-int +pkg syscall (netbsd-386-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-386-cgo), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-386-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-386-cgo), const IFF_PROMISC ideal-int +pkg syscall (netbsd-386-cgo), const IFF_RUNNING ideal-int +pkg syscall (netbsd-386-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-386-cgo), const IFNAMSIZ ideal-int +pkg syscall (netbsd-386-cgo), const IFT_1822 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-386-cgo), const IFT_AAL2 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_AAL5 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ADSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ARAP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ARCNET ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ASYNC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-386-cgo), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_BSC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CARP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CEPT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CES ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_CNR ideal-int +pkg syscall (netbsd-386-cgo), const IFT_COFFEE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DCN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DLSW ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DS0 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DS3 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DTM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ECONET ideal-int +pkg syscall (netbsd-386-cgo), const IFT_EON ideal-int +pkg syscall (netbsd-386-cgo), const IFT_EPLRS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ESCON ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ETHER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FAITH ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FAST ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FDDI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRELAY ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-386-cgo), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-386-cgo), const IFT_GIF ideal-int +pkg syscall (netbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-386-cgo), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HDLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HIPPI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HSSI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_HY ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IFGSN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IMT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-386-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-386-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISDN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISDNS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISDNU ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ISUP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LAPB ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LAPD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LAPF ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_LOOP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MODEM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MPC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MPLS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MSDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MVL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_MYRINET ideal-int +pkg syscall (netbsd-386-cgo), const IFT_NFAS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_NSIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_OTHER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_P10 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_P80 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PARA ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PFLOG ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PON155 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PON622 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_POS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PPP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPATM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_PVC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_Q2931 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_QLLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_RADSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_RS232 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_RSRB ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SDLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SHDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SIPTG ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SLIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SONET ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SONETVT ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SRP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_STARLAN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_STF ideal-int +pkg syscall (netbsd-386-cgo), const IFT_T1 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TDLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TELINK ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TR008 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-386-cgo), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_ULTRA ideal-int +pkg syscall (netbsd-386-cgo), const IFT_USB ideal-int +pkg syscall (netbsd-386-cgo), const IFT_V11 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_V35 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_V36 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_V37 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VDSL ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-386-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X213 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X25 ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X25DDN ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X25MLP ideal-int +pkg syscall (netbsd-386-cgo), const IFT_X25PLE ideal-int +pkg syscall (netbsd-386-cgo), const IFT_XETHER ideal-int +pkg syscall (netbsd-386-cgo), const IGNBRK ideal-int +pkg syscall (netbsd-386-cgo), const IGNCR ideal-int +pkg syscall (netbsd-386-cgo), const IGNPAR ideal-int +pkg syscall (netbsd-386-cgo), const IMAXBEL ideal-int +pkg syscall (netbsd-386-cgo), const INLCR ideal-int +pkg syscall (netbsd-386-cgo), const INPCK ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-386-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_AH ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_EON ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_TP ideal-int +pkg syscall (netbsd-386-cgo), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_FAITH ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_MMTU ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_VERSION ideal-int +pkg syscall (netbsd-386-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-386-cgo), const IP_DF ideal-int +pkg syscall (netbsd-386-cgo), const IP_EF ideal-int +pkg syscall (netbsd-386-cgo), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-386-cgo), const IP_HDRINCL ideal-int +pkg syscall (netbsd-386-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-386-cgo), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-386-cgo), const IP_MF ideal-int +pkg syscall (netbsd-386-cgo), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-386-cgo), const IP_MINTTL ideal-int +pkg syscall (netbsd-386-cgo), const IP_MSS ideal-int +pkg syscall (netbsd-386-cgo), const IP_OFFMASK ideal-int +pkg syscall (netbsd-386-cgo), const IP_OPTIONS ideal-int +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-386-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-386-cgo), const IP_RECVIF ideal-int +pkg syscall (netbsd-386-cgo), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IP_RECVTTL ideal-int +pkg syscall (netbsd-386-cgo), const IP_RETOPTS ideal-int +pkg syscall (netbsd-386-cgo), const IP_RF ideal-int +pkg syscall (netbsd-386-cgo), const ISIG ideal-int +pkg syscall (netbsd-386-cgo), const ISTRIP ideal-int +pkg syscall (netbsd-386-cgo), const IXANY ideal-int +pkg syscall (netbsd-386-cgo), const IXOFF ideal-int +pkg syscall (netbsd-386-cgo), const IXON ideal-int +pkg syscall (netbsd-386-cgo), const LOCK_EX ideal-int +pkg syscall (netbsd-386-cgo), const LOCK_NB ideal-int +pkg syscall (netbsd-386-cgo), const LOCK_SH ideal-int +pkg syscall (netbsd-386-cgo), const LOCK_UN ideal-int +pkg syscall (netbsd-386-cgo), const MSG_BCAST ideal-int +pkg syscall (netbsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-386-cgo), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-386-cgo), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-386-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-386-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-386-cgo), const MSG_EOR ideal-int +pkg syscall (netbsd-386-cgo), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-386-cgo), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-386-cgo), const MSG_MCAST ideal-int +pkg syscall (netbsd-386-cgo), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-386-cgo), const MSG_NBIO ideal-int +pkg syscall (netbsd-386-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-386-cgo), const MSG_OOB ideal-int +pkg syscall (netbsd-386-cgo), const MSG_PEEK ideal-int +pkg syscall (netbsd-386-cgo), const MSG_TRUNC ideal-int +pkg syscall (netbsd-386-cgo), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const MSG_WAITALL ideal-int +pkg syscall (netbsd-386-cgo), const NAME_MAX ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-386-cgo), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-386-cgo), const NOFLSH ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_CHILD ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_DELETE ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_EXEC ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_EXIT ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_FORK ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_LINK ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_RENAME ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_TRACK ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-386-cgo), const NOTE_WRITE ideal-int +pkg syscall (netbsd-386-cgo), const OCRNL ideal-int +pkg syscall (netbsd-386-cgo), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-386-cgo), const ONLCR ideal-int +pkg syscall (netbsd-386-cgo), const ONLRET ideal-int +pkg syscall (netbsd-386-cgo), const ONOCR ideal-int +pkg syscall (netbsd-386-cgo), const ONOEOT ideal-int +pkg syscall (netbsd-386-cgo), const OPOST ideal-int +pkg syscall (netbsd-386-cgo), const O_ACCMODE ideal-int +pkg syscall (netbsd-386-cgo), const O_ALT_IO ideal-int +pkg syscall (netbsd-386-cgo), const O_DIRECT ideal-int +pkg syscall (netbsd-386-cgo), const O_DIRECTORY ideal-int +pkg syscall (netbsd-386-cgo), const O_DSYNC ideal-int +pkg syscall (netbsd-386-cgo), const O_EXLOCK ideal-int +pkg syscall (netbsd-386-cgo), const O_FSYNC ideal-int +pkg syscall (netbsd-386-cgo), const O_NDELAY ideal-int +pkg syscall (netbsd-386-cgo), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-386-cgo), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-386-cgo), const O_RSYNC ideal-int +pkg syscall (netbsd-386-cgo), const O_SHLOCK ideal-int +pkg syscall (netbsd-386-cgo), const PARENB ideal-int +pkg syscall (netbsd-386-cgo), const PARMRK ideal-int +pkg syscall (netbsd-386-cgo), const PARODD ideal-int +pkg syscall (netbsd-386-cgo), const PENDIN ideal-int +pkg syscall (netbsd-386-cgo), const PRIO_PGRP = 1 +pkg syscall (netbsd-386-cgo), const PRIO_PGRP ideal-int +pkg syscall (netbsd-386-cgo), const PRIO_PROCESS = 0 +pkg syscall (netbsd-386-cgo), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-386-cgo), const PRIO_USER = 2 +pkg syscall (netbsd-386-cgo), const PRIO_USER ideal-int +pkg syscall (netbsd-386-cgo), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const PTRACE_CONT ideal-int +pkg syscall (netbsd-386-cgo), const PTRACE_KILL ideal-int +pkg syscall (netbsd-386-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_AS ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-386-cgo), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-386-cgo), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_BRD ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_DST ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_IFA ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_IFP ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_MAX ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-386-cgo), const RTAX_TAG ideal-int +pkg syscall (netbsd-386-cgo), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-386-cgo), const RTA_BRD ideal-int +pkg syscall (netbsd-386-cgo), const RTA_DST ideal-int +pkg syscall (netbsd-386-cgo), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-386-cgo), const RTA_GENMASK ideal-int +pkg syscall (netbsd-386-cgo), const RTA_IFA ideal-int +pkg syscall (netbsd-386-cgo), const RTA_IFP ideal-int +pkg syscall (netbsd-386-cgo), const RTA_NETMASK ideal-int +pkg syscall (netbsd-386-cgo), const RTA_TAG ideal-int +pkg syscall (netbsd-386-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-386-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-386-cgo), const RTF_CLONED ideal-int +pkg syscall (netbsd-386-cgo), const RTF_CLONING ideal-int +pkg syscall (netbsd-386-cgo), const RTF_DONE ideal-int +pkg syscall (netbsd-386-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-386-cgo), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-386-cgo), const RTF_HOST ideal-int +pkg syscall (netbsd-386-cgo), const RTF_LLINFO ideal-int +pkg syscall (netbsd-386-cgo), const RTF_MASK ideal-int +pkg syscall (netbsd-386-cgo), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-386-cgo), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-386-cgo), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-386-cgo), const RTF_REJECT ideal-int +pkg syscall (netbsd-386-cgo), const RTF_SRC ideal-int +pkg syscall (netbsd-386-cgo), const RTF_STATIC ideal-int +pkg syscall (netbsd-386-cgo), const RTF_UP ideal-int +pkg syscall (netbsd-386-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_ADD ideal-int +pkg syscall (netbsd-386-cgo), const RTM_CHANGE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-386-cgo), const RTM_DELADDR ideal-int +pkg syscall (netbsd-386-cgo), const RTM_DELETE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_GET ideal-int +pkg syscall (netbsd-386-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-386-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_IFINFO ideal-int +pkg syscall (netbsd-386-cgo), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-386-cgo), const RTM_LOCK ideal-int +pkg syscall (netbsd-386-cgo), const RTM_LOSING ideal-int +pkg syscall (netbsd-386-cgo), const RTM_MISS ideal-int +pkg syscall (netbsd-386-cgo), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-386-cgo), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-386-cgo), const RTM_OLDADD ideal-int +pkg syscall (netbsd-386-cgo), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-386-cgo), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-386-cgo), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-386-cgo), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-386-cgo), const RTM_SETGATE ideal-int +pkg syscall (netbsd-386-cgo), const RTM_VERSION ideal-int +pkg syscall (netbsd-386-cgo), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-386-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-386-cgo), const RTV_MTU ideal-int +pkg syscall (netbsd-386-cgo), const RTV_RPIPE ideal-int +pkg syscall (netbsd-386-cgo), const RTV_RTT ideal-int +pkg syscall (netbsd-386-cgo), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-386-cgo), const RTV_SPIPE ideal-int +pkg syscall (netbsd-386-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-386-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-386-cgo), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-386-cgo), const SCM_CREDS ideal-int +pkg syscall (netbsd-386-cgo), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-386-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-386-cgo), const SIGCHLD Signal +pkg syscall (netbsd-386-cgo), const SIGCONT Signal +pkg syscall (netbsd-386-cgo), const SIGEMT Signal +pkg syscall (netbsd-386-cgo), const SIGINFO Signal +pkg syscall (netbsd-386-cgo), const SIGIO Signal +pkg syscall (netbsd-386-cgo), const SIGIOT Signal +pkg syscall (netbsd-386-cgo), const SIGPROF Signal +pkg syscall (netbsd-386-cgo), const SIGPWR Signal +pkg syscall (netbsd-386-cgo), const SIGSTOP Signal +pkg syscall (netbsd-386-cgo), const SIGSYS Signal +pkg syscall (netbsd-386-cgo), const SIGTSTP Signal +pkg syscall (netbsd-386-cgo), const SIGTTIN Signal +pkg syscall (netbsd-386-cgo), const SIGTTOU Signal +pkg syscall (netbsd-386-cgo), const SIGURG Signal +pkg syscall (netbsd-386-cgo), const SIGUSR1 Signal +pkg syscall (netbsd-386-cgo), const SIGUSR2 Signal +pkg syscall (netbsd-386-cgo), const SIGVTALRM Signal +pkg syscall (netbsd-386-cgo), const SIGWINCH Signal +pkg syscall (netbsd-386-cgo), const SIGXCPU Signal +pkg syscall (netbsd-386-cgo), const SIGXFSZ Signal +pkg syscall (netbsd-386-cgo), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-386-cgo), const SIOCADDRT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCATMARK ideal-int +pkg syscall (netbsd-386-cgo), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-386-cgo), const SIOCDELRT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGPGRP ideal-int +pkg syscall (netbsd-386-cgo), const SIOCGVH ideal-int +pkg syscall (netbsd-386-cgo), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-386-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-386-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-386-cgo), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSPGRP ideal-int +pkg syscall (netbsd-386-cgo), const SIOCSVH ideal-int +pkg syscall (netbsd-386-cgo), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-386-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-386-cgo), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-386-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-386-cgo), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-386-cgo), const SOCK_RDM ideal-int +pkg syscall (netbsd-386-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-386-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-386-cgo), const SO_DEBUG ideal-int +pkg syscall (netbsd-386-cgo), const SO_ERROR ideal-int +pkg syscall (netbsd-386-cgo), const SO_NOHEADER ideal-int +pkg syscall (netbsd-386-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-386-cgo), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-386-cgo), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-386-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-386-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-386-cgo), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-386-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-386-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-386-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-386-cgo), const SO_TYPE ideal-int +pkg syscall (netbsd-386-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-386-cgo), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-386-cgo), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_ACCESS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_ACCT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_BIND ideal-int +pkg syscall (netbsd-386-cgo), const SYS_BREAK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CHDIR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CHMOD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CHROOT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CLOSE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_CONNECT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_DUP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_DUP2 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_DUP3 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXECVE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FCNTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FLOCK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FORK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSTAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSYNC ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETEGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETEUID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETFH ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPPID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETSID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETUID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_IOCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_KEVENT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_KILL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_KTRACE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LINKAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LISTEN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LSEEK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MADVISE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MINCORE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKDIR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKNOD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MLOCK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MMAP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MODCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MOUNT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MREMAP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MSGGET ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MSGSND ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_OPEN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_OPENAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PIPE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-386-cgo), const SYS_POLL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_POLLTS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PREAD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PREADV ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PROFIL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PSELECT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PTRACE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PWRITE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RASCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_READ ideal-int +pkg syscall (netbsd-386-cgo), const SYS_READLINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_READV ideal-int +pkg syscall (netbsd-386-cgo), const SYS_REBOOT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-386-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RENAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_REVOKE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_RMDIR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SBRK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SELECT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SEMGET ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SEMOP ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SENDTO ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETEGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETEUID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETPGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETREGID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETREUID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETSID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETUID ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SHMAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SHMDT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SHMGET ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SOCKET ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SSTK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_STAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SYNC ideal-int +pkg syscall (netbsd-386-cgo), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-386-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UMASK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UNLINK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UTIMES ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UTRACE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-386-cgo), const SYS_VADVISE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_VFORK ideal-int +pkg syscall (netbsd-386-cgo), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-386-cgo), const SYS_WRITE ideal-int +pkg syscall (netbsd-386-cgo), const SYS_WRITEV ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-386-cgo), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-386-cgo), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-386-cgo), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-386-cgo), const SYS___CLONE ideal-int +pkg syscall (netbsd-386-cgo), const SYS___GETCWD ideal-int +pkg syscall (netbsd-386-cgo), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-386-cgo), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-386-cgo), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-386-cgo), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-386-cgo), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-386-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-386-cgo), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-386-cgo), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-386-cgo), const S_ARCH1 ideal-int +pkg syscall (netbsd-386-cgo), const S_ARCH2 ideal-int +pkg syscall (netbsd-386-cgo), const S_BLKSIZE ideal-int +pkg syscall (netbsd-386-cgo), const S_IEXEC ideal-int +pkg syscall (netbsd-386-cgo), const S_IFWHT ideal-int +pkg syscall (netbsd-386-cgo), const S_IREAD ideal-int +pkg syscall (netbsd-386-cgo), const S_IRGRP ideal-int +pkg syscall (netbsd-386-cgo), const S_IROTH ideal-int +pkg syscall (netbsd-386-cgo), const S_IRWXG ideal-int +pkg syscall (netbsd-386-cgo), const S_IRWXO ideal-int +pkg syscall (netbsd-386-cgo), const S_IRWXU ideal-int +pkg syscall (netbsd-386-cgo), const S_ISTXT ideal-int +pkg syscall (netbsd-386-cgo), const S_IWGRP ideal-int +pkg syscall (netbsd-386-cgo), const S_IWOTH ideal-int +pkg syscall (netbsd-386-cgo), const S_IWRITE ideal-int +pkg syscall (netbsd-386-cgo), const S_IXGRP ideal-int +pkg syscall (netbsd-386-cgo), const S_IXOTH ideal-int +pkg syscall (netbsd-386-cgo), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-386-cgo), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-386-cgo), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-386-cgo), const SizeofBpfStat ideal-int +pkg syscall (netbsd-386-cgo), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-386-cgo), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-386-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIPMreq ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIfData ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-386-cgo), const SizeofLinger ideal-int +pkg syscall (netbsd-386-cgo), const SizeofMsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-386-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-386-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-386-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-386-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-386-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-386-cgo), const TCIFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const TCIOFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const TCOFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-386-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-386-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-386-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-386-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MINMSS ideal-int +pkg syscall (netbsd-386-cgo), const TCP_MSS ideal-int +pkg syscall (netbsd-386-cgo), const TCSAFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const TIOCCBRK ideal-int +pkg syscall (netbsd-386-cgo), const TIOCCDTR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCCONS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCDRAIN ideal-int +pkg syscall (netbsd-386-cgo), const TIOCEXCL ideal-int +pkg syscall (netbsd-386-cgo), const TIOCEXT ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCFLUSH ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGETA ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGETD ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGLINED ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGPGRP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGSID ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGSIZE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-386-cgo), const TIOCMBIC ideal-int +pkg syscall (netbsd-386-cgo), const TIOCMBIS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCMGET ideal-int +pkg syscall (netbsd-386-cgo), const TIOCMSET ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_CAR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_CD ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_CTS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_DSR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_DTR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_LE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_RI ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_RNG ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_RTS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_SR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCM_ST ideal-int +pkg syscall (netbsd-386-cgo), const TIOCNOTTY ideal-int +pkg syscall (netbsd-386-cgo), const TIOCNXCL ideal-int +pkg syscall (netbsd-386-cgo), const TIOCOUTQ ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_START ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPTMGET ideal-int +pkg syscall (netbsd-386-cgo), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-386-cgo), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-386-cgo), const TIOCREMOTE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSBRK ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSCTTY ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSDTR ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSETA ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSETAF ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSETAW ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSETD ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSIG ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSLINED ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSPGRP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSSIZE ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSTART ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSTAT ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSTI ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSTOP ideal-int +pkg syscall (netbsd-386-cgo), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-386-cgo), const TIOCUCNTL ideal-int +pkg syscall (netbsd-386-cgo), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-386-cgo), const TOSTOP ideal-int +pkg syscall (netbsd-386-cgo), const VDISCARD ideal-int +pkg syscall (netbsd-386-cgo), const VDSUSP ideal-int +pkg syscall (netbsd-386-cgo), const VEOF ideal-int +pkg syscall (netbsd-386-cgo), const VEOL ideal-int +pkg syscall (netbsd-386-cgo), const VEOL2 ideal-int +pkg syscall (netbsd-386-cgo), const VERASE ideal-int +pkg syscall (netbsd-386-cgo), const VINTR ideal-int +pkg syscall (netbsd-386-cgo), const VKILL ideal-int +pkg syscall (netbsd-386-cgo), const VLNEXT ideal-int +pkg syscall (netbsd-386-cgo), const VMIN ideal-int +pkg syscall (netbsd-386-cgo), const VQUIT ideal-int +pkg syscall (netbsd-386-cgo), const VREPRINT ideal-int +pkg syscall (netbsd-386-cgo), const VSTART ideal-int +pkg syscall (netbsd-386-cgo), const VSTATUS ideal-int +pkg syscall (netbsd-386-cgo), const VSTOP ideal-int +pkg syscall (netbsd-386-cgo), const VSUSP ideal-int +pkg syscall (netbsd-386-cgo), const VTIME ideal-int +pkg syscall (netbsd-386-cgo), const VWERASE ideal-int +pkg syscall (netbsd-386-cgo), const WALL ideal-int +pkg syscall (netbsd-386-cgo), const WALLSIG ideal-int +pkg syscall (netbsd-386-cgo), const WALTSIG ideal-int +pkg syscall (netbsd-386-cgo), const WCLONE ideal-int +pkg syscall (netbsd-386-cgo), const WCOREFLAG ideal-int +pkg syscall (netbsd-386-cgo), const WNOHANG ideal-int +pkg syscall (netbsd-386-cgo), const WNOWAIT ideal-int +pkg syscall (netbsd-386-cgo), const WNOZOMBIE ideal-int +pkg syscall (netbsd-386-cgo), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-386-cgo), const WSTOPPED ideal-int +pkg syscall (netbsd-386-cgo), const WUNTRACED ideal-int +pkg syscall (netbsd-386-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-386-cgo), func Access(string, uint32) error +pkg syscall (netbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-386-cgo), func Bind(int, Sockaddr) error +pkg syscall (netbsd-386-cgo), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-386-cgo), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-386-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-386-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-386-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-386-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-386-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-386-cgo), func CheckBpfVersion(int) error +pkg syscall (netbsd-386-cgo), func Chflags(string, int) error +pkg syscall (netbsd-386-cgo), func Chroot(string) error +pkg syscall (netbsd-386-cgo), func Close(int) error +pkg syscall (netbsd-386-cgo), func CloseOnExec(int) +pkg syscall (netbsd-386-cgo), func CmsgLen(int) int +pkg syscall (netbsd-386-cgo), func CmsgSpace(int) int +pkg syscall (netbsd-386-cgo), func Connect(int, Sockaddr) error +pkg syscall (netbsd-386-cgo), func Dup(int) (int, error) +pkg syscall (netbsd-386-cgo), func Dup2(int, int) error +pkg syscall (netbsd-386-cgo), func Fchdir(int) error +pkg syscall (netbsd-386-cgo), func Fchflags(int, int) error +pkg syscall (netbsd-386-cgo), func Fchmod(int, uint32) error +pkg syscall (netbsd-386-cgo), func Fchown(int, int, int) error +pkg syscall (netbsd-386-cgo), func Flock(int, int) error +pkg syscall (netbsd-386-cgo), func FlushBpf(int) error +pkg syscall (netbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-386-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-386-cgo), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-386-cgo), func Fsync(int) error +pkg syscall (netbsd-386-cgo), func Ftruncate(int, int64) error +pkg syscall (netbsd-386-cgo), func Futimes(int, []Timeval) error +pkg syscall (netbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-386-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-386-cgo), func Getpgid(int) (int, error) +pkg syscall (netbsd-386-cgo), func Getpgrp() int +pkg syscall (netbsd-386-cgo), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-386-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-386-cgo), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-386-cgo), func Getsid(int) (int, error) +pkg syscall (netbsd-386-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-386-cgo), func Issetugid() bool +pkg syscall (netbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-386-cgo), func Kill(int, Signal) error +pkg syscall (netbsd-386-cgo), func Kqueue() (int, error) +pkg syscall (netbsd-386-cgo), func Listen(int, int) error +pkg syscall (netbsd-386-cgo), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-386-cgo), func Mkfifo(string, uint32) error +pkg syscall (netbsd-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (netbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-386-cgo), func Munmap([]uint8) error +pkg syscall (netbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-386-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-386-cgo), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-386-cgo), func Pipe([]int) error +pkg syscall (netbsd-386-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386-cgo), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-386-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-386-cgo), func Revoke(string) error +pkg syscall (netbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-386-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-386-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-386-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-386-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-386-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-386-cgo), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-386-cgo), func SetBpfInterface(int, string) error +pkg syscall (netbsd-386-cgo), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-386-cgo), func SetNonblock(int, bool) error +pkg syscall (netbsd-386-cgo), func Setegid(int) error +pkg syscall (netbsd-386-cgo), func Seteuid(int) error +pkg syscall (netbsd-386-cgo), func Setgid(int) error +pkg syscall (netbsd-386-cgo), func Setgroups([]int) error +pkg syscall (netbsd-386-cgo), func Setpgid(int, int) error +pkg syscall (netbsd-386-cgo), func Setpriority(int, int, int) error +pkg syscall (netbsd-386-cgo), func Setregid(int, int) error +pkg syscall (netbsd-386-cgo), func Setreuid(int, int) error +pkg syscall (netbsd-386-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-386-cgo), func Setsid() (int, error) +pkg syscall (netbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-386-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-386-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-386-cgo), func Settimeofday(*Timeval) error +pkg syscall (netbsd-386-cgo), func Setuid(int) error +pkg syscall (netbsd-386-cgo), func Shutdown(int, int) error +pkg syscall (netbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-386-cgo), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-386-cgo), func Stat(string, *Stat_t) error +pkg syscall (netbsd-386-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-386-cgo), func Sync() error +pkg syscall (netbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-386-cgo), func Sysctl(string) (string, error) +pkg syscall (netbsd-386-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-386-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-386-cgo), func Truncate(string, int64) error +pkg syscall (netbsd-386-cgo), func Umask(int) int +pkg syscall (netbsd-386-cgo), func UnixRights(...int) []uint8 +pkg syscall (netbsd-386-cgo), func Unmount(string, int) error +pkg syscall (netbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-386-cgo), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-386-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-386-cgo), method (*Iovec) SetLen(int) +pkg syscall (netbsd-386-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-386-cgo), type BpfHdr struct +pkg syscall (netbsd-386-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-386-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-386-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-386-cgo), type BpfInsn struct +pkg syscall (netbsd-386-cgo), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-386-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-386-cgo), type BpfInsn struct, K uint32 +pkg syscall (netbsd-386-cgo), type BpfProgram struct +pkg syscall (netbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-386-cgo), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-386-cgo), type BpfStat struct +pkg syscall (netbsd-386-cgo), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-386-cgo), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-386-cgo), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-386-cgo), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-386-cgo), type BpfTimeval struct +pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Sec int32 +pkg syscall (netbsd-386-cgo), type BpfTimeval struct, Usec int32 +pkg syscall (netbsd-386-cgo), type BpfVersion struct +pkg syscall (netbsd-386-cgo), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-386-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-386-cgo), type Cmsghdr struct +pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-386-cgo), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-386-cgo), type Credential struct +pkg syscall (netbsd-386-cgo), type Credential struct, Gid uint32 +pkg syscall (netbsd-386-cgo), type Credential struct, Groups []uint32 +pkg syscall (netbsd-386-cgo), type Credential struct, Uid uint32 +pkg syscall (netbsd-386-cgo), type Dirent struct +pkg syscall (netbsd-386-cgo), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-386-cgo), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-386-cgo), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-386-cgo), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-386-cgo), type Dirent struct, Type uint8 +pkg syscall (netbsd-386-cgo), type FdSet struct +pkg syscall (netbsd-386-cgo), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-386-cgo), type Flock_t struct +pkg syscall (netbsd-386-cgo), type Flock_t struct, Len int64 +pkg syscall (netbsd-386-cgo), type Flock_t struct, Pid int32 +pkg syscall (netbsd-386-cgo), type Flock_t struct, Start int64 +pkg syscall (netbsd-386-cgo), type Flock_t struct, Type int16 +pkg syscall (netbsd-386-cgo), type Flock_t struct, Whence int16 +pkg syscall (netbsd-386-cgo), type Fsid struct +pkg syscall (netbsd-386-cgo), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct +pkg syscall (netbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct +pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-386-cgo), type IfData struct +pkg syscall (netbsd-386-cgo), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-386-cgo), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Collisions uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-386-cgo), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-386-cgo), type IfData struct, Link_state int32 +pkg syscall (netbsd-386-cgo), type IfData struct, Metric uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Mtu uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Noproto uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Obytes uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Opackets uint64 +pkg syscall (netbsd-386-cgo), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-386-cgo), type IfData struct, Type uint8 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-386-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-386-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct +pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct +pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-386-cgo), type InterfaceMessage struct +pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-386-cgo), type Iovec struct +pkg syscall (netbsd-386-cgo), type Iovec struct, Base *uint8 +pkg syscall (netbsd-386-cgo), type Iovec struct, Len uint32 +pkg syscall (netbsd-386-cgo), type Kevent_t struct +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Data int64 +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (netbsd-386-cgo), type Kevent_t struct, Udata int32 +pkg syscall (netbsd-386-cgo), type Mclpool [0]uint8 +pkg syscall (netbsd-386-cgo), type Msghdr struct +pkg syscall (netbsd-386-cgo), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-386-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-386-cgo), type Msghdr struct, Flags int32 +pkg syscall (netbsd-386-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-386-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-386-cgo), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-386-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct +pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-386-cgo), type Rlimit struct +pkg syscall (netbsd-386-cgo), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-386-cgo), type Rlimit struct, Max uint64 +pkg syscall (netbsd-386-cgo), type RouteMessage struct +pkg syscall (netbsd-386-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-386-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-386-cgo), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-386-cgo), type RtMetrics struct +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-386-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-386-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-386-cgo), type Rusage struct, Idrss int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Inblock int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Isrss int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Ixrss int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Majflt int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Maxrss int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Minflt int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Nsignals int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Nswap int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Oublock int32 +pkg syscall (netbsd-386-cgo), type Rusage struct, Stime Timeval +pkg syscall (netbsd-386-cgo), type Rusage struct, Utime Timeval +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-386-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-386-cgo), type SocketControlMessage struct +pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-386-cgo), type Stat_t struct +pkg syscall (netbsd-386-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-386-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-386-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-386-cgo), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-386-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Size int64 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-386-cgo), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-386-cgo), type Statfs_t [0]uint8 +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-386-cgo), type Sysctlnode struct +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-386-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-386-cgo), type Timespec struct, Nsec int32 +pkg syscall (netbsd-386-cgo), type Timespec struct, Sec int64 +pkg syscall (netbsd-386-cgo), type Timeval struct, Sec int64 +pkg syscall (netbsd-386-cgo), type Timeval struct, Usec int32 +pkg syscall (netbsd-386-cgo), type WaitStatus uint32 +pkg syscall (netbsd-386-cgo), var Stderr int +pkg syscall (netbsd-386-cgo), var Stdin int +pkg syscall (netbsd-386-cgo), var Stdout int +pkg syscall (netbsd-amd64), const AF_APPLETALK ideal-int +pkg syscall (netbsd-amd64), const AF_ARP ideal-int +pkg syscall (netbsd-amd64), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-amd64), const AF_CCITT ideal-int +pkg syscall (netbsd-amd64), const AF_CHAOS ideal-int +pkg syscall (netbsd-amd64), const AF_CNT ideal-int +pkg syscall (netbsd-amd64), const AF_COIP ideal-int +pkg syscall (netbsd-amd64), const AF_DATAKIT ideal-int +pkg syscall (netbsd-amd64), const AF_DECnet ideal-int +pkg syscall (netbsd-amd64), const AF_DLI ideal-int +pkg syscall (netbsd-amd64), const AF_E164 ideal-int +pkg syscall (netbsd-amd64), const AF_ECMA ideal-int +pkg syscall (netbsd-amd64), const AF_HYLINK ideal-int +pkg syscall (netbsd-amd64), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-amd64), const AF_IMPLINK ideal-int +pkg syscall (netbsd-amd64), const AF_IPX ideal-int +pkg syscall (netbsd-amd64), const AF_ISDN ideal-int +pkg syscall (netbsd-amd64), const AF_ISO ideal-int +pkg syscall (netbsd-amd64), const AF_LAT ideal-int +pkg syscall (netbsd-amd64), const AF_LINK ideal-int +pkg syscall (netbsd-amd64), const AF_LOCAL ideal-int +pkg syscall (netbsd-amd64), const AF_MAX ideal-int +pkg syscall (netbsd-amd64), const AF_MPLS ideal-int +pkg syscall (netbsd-amd64), const AF_NATM ideal-int +pkg syscall (netbsd-amd64), const AF_NS ideal-int +pkg syscall (netbsd-amd64), const AF_OROUTE ideal-int +pkg syscall (netbsd-amd64), const AF_OSI ideal-int +pkg syscall (netbsd-amd64), const AF_PUP ideal-int +pkg syscall (netbsd-amd64), const AF_ROUTE ideal-int +pkg syscall (netbsd-amd64), const AF_SNA ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-amd64), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-amd64), const B0 ideal-int +pkg syscall (netbsd-amd64), const B110 ideal-int +pkg syscall (netbsd-amd64), const B115200 ideal-int +pkg syscall (netbsd-amd64), const B1200 ideal-int +pkg syscall (netbsd-amd64), const B134 ideal-int +pkg syscall (netbsd-amd64), const B14400 ideal-int +pkg syscall (netbsd-amd64), const B150 ideal-int +pkg syscall (netbsd-amd64), const B1800 ideal-int +pkg syscall (netbsd-amd64), const B19200 ideal-int +pkg syscall (netbsd-amd64), const B200 ideal-int +pkg syscall (netbsd-amd64), const B230400 ideal-int +pkg syscall (netbsd-amd64), const B2400 ideal-int +pkg syscall (netbsd-amd64), const B28800 ideal-int +pkg syscall (netbsd-amd64), const B300 ideal-int +pkg syscall (netbsd-amd64), const B38400 ideal-int +pkg syscall (netbsd-amd64), const B460800 ideal-int +pkg syscall (netbsd-amd64), const B4800 ideal-int +pkg syscall (netbsd-amd64), const B50 ideal-int +pkg syscall (netbsd-amd64), const B57600 ideal-int +pkg syscall (netbsd-amd64), const B600 ideal-int +pkg syscall (netbsd-amd64), const B7200 ideal-int +pkg syscall (netbsd-amd64), const B75 ideal-int +pkg syscall (netbsd-amd64), const B76800 ideal-int +pkg syscall (netbsd-amd64), const B921600 ideal-int +pkg syscall (netbsd-amd64), const B9600 ideal-int +pkg syscall (netbsd-amd64), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-amd64), const BIOCFLUSH ideal-int +pkg syscall (netbsd-amd64), const BIOCGBLEN ideal-int +pkg syscall (netbsd-amd64), const BIOCGDLT ideal-int +pkg syscall (netbsd-amd64), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-amd64), const BIOCGETIF ideal-int +pkg syscall (netbsd-amd64), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-amd64), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-amd64), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-amd64), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-amd64), const BIOCGSTATS ideal-int +pkg syscall (netbsd-amd64), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-amd64), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-amd64), const BIOCPROMISC ideal-int +pkg syscall (netbsd-amd64), const BIOCSBLEN ideal-int +pkg syscall (netbsd-amd64), const BIOCSDLT ideal-int +pkg syscall (netbsd-amd64), const BIOCSETF ideal-int +pkg syscall (netbsd-amd64), const BIOCSETIF ideal-int +pkg syscall (netbsd-amd64), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-amd64), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-amd64), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-amd64), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-amd64), const BIOCSTCPF ideal-int +pkg syscall (netbsd-amd64), const BIOCSUDPF ideal-int +pkg syscall (netbsd-amd64), const BIOCVERSION ideal-int +pkg syscall (netbsd-amd64), const BPF_A ideal-int +pkg syscall (netbsd-amd64), const BPF_ABS ideal-int +pkg syscall (netbsd-amd64), const BPF_ADD ideal-int +pkg syscall (netbsd-amd64), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-amd64), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-amd64), const BPF_ALU ideal-int +pkg syscall (netbsd-amd64), const BPF_AND ideal-int +pkg syscall (netbsd-amd64), const BPF_B ideal-int +pkg syscall (netbsd-amd64), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-amd64), const BPF_DIV ideal-int +pkg syscall (netbsd-amd64), const BPF_H ideal-int +pkg syscall (netbsd-amd64), const BPF_IMM ideal-int +pkg syscall (netbsd-amd64), const BPF_IND ideal-int +pkg syscall (netbsd-amd64), const BPF_JA ideal-int +pkg syscall (netbsd-amd64), const BPF_JEQ ideal-int +pkg syscall (netbsd-amd64), const BPF_JGE ideal-int +pkg syscall (netbsd-amd64), const BPF_JGT ideal-int +pkg syscall (netbsd-amd64), const BPF_JMP ideal-int +pkg syscall (netbsd-amd64), const BPF_JSET ideal-int +pkg syscall (netbsd-amd64), const BPF_K ideal-int +pkg syscall (netbsd-amd64), const BPF_LD ideal-int +pkg syscall (netbsd-amd64), const BPF_LDX ideal-int +pkg syscall (netbsd-amd64), const BPF_LEN ideal-int +pkg syscall (netbsd-amd64), const BPF_LSH ideal-int +pkg syscall (netbsd-amd64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-amd64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-amd64), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-amd64), const BPF_MEM ideal-int +pkg syscall (netbsd-amd64), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-amd64), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-amd64), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-amd64), const BPF_MISC ideal-int +pkg syscall (netbsd-amd64), const BPF_MSH ideal-int +pkg syscall (netbsd-amd64), const BPF_MUL ideal-int +pkg syscall (netbsd-amd64), const BPF_NEG ideal-int +pkg syscall (netbsd-amd64), const BPF_OR ideal-int +pkg syscall (netbsd-amd64), const BPF_RELEASE ideal-int +pkg syscall (netbsd-amd64), const BPF_RET ideal-int +pkg syscall (netbsd-amd64), const BPF_RSH ideal-int +pkg syscall (netbsd-amd64), const BPF_ST ideal-int +pkg syscall (netbsd-amd64), const BPF_STX ideal-int +pkg syscall (netbsd-amd64), const BPF_SUB ideal-int +pkg syscall (netbsd-amd64), const BPF_TAX ideal-int +pkg syscall (netbsd-amd64), const BPF_TXA ideal-int +pkg syscall (netbsd-amd64), const BPF_W ideal-int +pkg syscall (netbsd-amd64), const BPF_X ideal-int +pkg syscall (netbsd-amd64), const BRKINT ideal-int +pkg syscall (netbsd-amd64), const CFLUSH ideal-int +pkg syscall (netbsd-amd64), const CLOCAL ideal-int +pkg syscall (netbsd-amd64), const CREAD ideal-int +pkg syscall (netbsd-amd64), const CS5 ideal-int +pkg syscall (netbsd-amd64), const CS6 ideal-int +pkg syscall (netbsd-amd64), const CS7 ideal-int +pkg syscall (netbsd-amd64), const CS8 ideal-int +pkg syscall (netbsd-amd64), const CSIZE ideal-int +pkg syscall (netbsd-amd64), const CSTART ideal-int +pkg syscall (netbsd-amd64), const CSTATUS ideal-int +pkg syscall (netbsd-amd64), const CSTOP ideal-int +pkg syscall (netbsd-amd64), const CSTOPB ideal-int +pkg syscall (netbsd-amd64), const CSUSP ideal-int +pkg syscall (netbsd-amd64), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-amd64), const CTL_NET ideal-int +pkg syscall (netbsd-amd64), const CTL_QUERY ideal-int +pkg syscall (netbsd-amd64), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-amd64), const DLT_A429 ideal-int +pkg syscall (netbsd-amd64), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-amd64), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-amd64), const DLT_AOS ideal-int +pkg syscall (netbsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-amd64), const DLT_ARCNET ideal-int +pkg syscall (netbsd-amd64), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-amd64), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-amd64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-amd64), const DLT_AURORA ideal-int +pkg syscall (netbsd-amd64), const DLT_AX25 ideal-int +pkg syscall (netbsd-amd64), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-amd64), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-amd64), const DLT_CAN20B ideal-int +pkg syscall (netbsd-amd64), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-amd64), const DLT_CHAOS ideal-int +pkg syscall (netbsd-amd64), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-amd64), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-amd64), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-amd64), const DLT_DECT ideal-int +pkg syscall (netbsd-amd64), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-amd64), const DLT_ECONET ideal-int +pkg syscall (netbsd-amd64), const DLT_EN10MB ideal-int +pkg syscall (netbsd-amd64), const DLT_EN3MB ideal-int +pkg syscall (netbsd-amd64), const DLT_ENC ideal-int +pkg syscall (netbsd-amd64), const DLT_ERF ideal-int +pkg syscall (netbsd-amd64), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-amd64), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-amd64), const DLT_FC_2 ideal-int +pkg syscall (netbsd-amd64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-amd64), const DLT_FDDI ideal-int +pkg syscall (netbsd-amd64), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-amd64), const DLT_FRELAY ideal-int +pkg syscall (netbsd-amd64), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-amd64), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-amd64), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-amd64), const DLT_GPF_F ideal-int +pkg syscall (netbsd-amd64), const DLT_GPF_T ideal-int +pkg syscall (netbsd-amd64), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-amd64), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-amd64), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-amd64), const DLT_HDLC ideal-int +pkg syscall (netbsd-amd64), const DLT_HHDLC ideal-int +pkg syscall (netbsd-amd64), const DLT_HIPPI ideal-int +pkg syscall (netbsd-amd64), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-amd64), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-amd64), const DLT_IPMB ideal-int +pkg syscall (netbsd-amd64), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-amd64), const DLT_IPNET ideal-int +pkg syscall (netbsd-amd64), const DLT_IPV4 ideal-int +pkg syscall (netbsd-amd64), const DLT_IPV6 ideal-int +pkg syscall (netbsd-amd64), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-amd64), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-amd64), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-amd64), const DLT_LAPD ideal-int +pkg syscall (netbsd-amd64), const DLT_LIN ideal-int +pkg syscall (netbsd-amd64), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-amd64), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-amd64), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-amd64), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-amd64), const DLT_LOOP ideal-int +pkg syscall (netbsd-amd64), const DLT_LTALK ideal-int +pkg syscall (netbsd-amd64), const DLT_MFR ideal-int +pkg syscall (netbsd-amd64), const DLT_MOST ideal-int +pkg syscall (netbsd-amd64), const DLT_MPLS ideal-int +pkg syscall (netbsd-amd64), const DLT_MTP2 ideal-int +pkg syscall (netbsd-amd64), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-amd64), const DLT_MTP3 ideal-int +pkg syscall (netbsd-amd64), const DLT_NULL ideal-int +pkg syscall (netbsd-amd64), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-amd64), const DLT_PFLOG ideal-int +pkg syscall (netbsd-amd64), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-amd64), const DLT_PPI ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-amd64), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-amd64), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-amd64), const DLT_PRONET ideal-int +pkg syscall (netbsd-amd64), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-amd64), const DLT_RAW ideal-int +pkg syscall (netbsd-amd64), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-amd64), const DLT_RIO ideal-int +pkg syscall (netbsd-amd64), const DLT_SCCP ideal-int +pkg syscall (netbsd-amd64), const DLT_SITA ideal-int +pkg syscall (netbsd-amd64), const DLT_SLIP ideal-int +pkg syscall (netbsd-amd64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-amd64), const DLT_SUNATM ideal-int +pkg syscall (netbsd-amd64), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-amd64), const DLT_TZSP ideal-int +pkg syscall (netbsd-amd64), const DLT_USB ideal-int +pkg syscall (netbsd-amd64), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-amd64), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-amd64), const DLT_WIHART ideal-int +pkg syscall (netbsd-amd64), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-amd64), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-amd64), const DT_BLK ideal-int +pkg syscall (netbsd-amd64), const DT_CHR ideal-int +pkg syscall (netbsd-amd64), const DT_DIR ideal-int +pkg syscall (netbsd-amd64), const DT_FIFO ideal-int +pkg syscall (netbsd-amd64), const DT_LNK ideal-int +pkg syscall (netbsd-amd64), const DT_REG ideal-int +pkg syscall (netbsd-amd64), const DT_SOCK ideal-int +pkg syscall (netbsd-amd64), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-amd64), const DT_WHT ideal-int +pkg syscall (netbsd-amd64), const EAUTH Errno +pkg syscall (netbsd-amd64), const EBADMSG Errno +pkg syscall (netbsd-amd64), const EBADRPC Errno +pkg syscall (netbsd-amd64), const ECHO ideal-int +pkg syscall (netbsd-amd64), const ECHOCTL ideal-int +pkg syscall (netbsd-amd64), const ECHOE ideal-int +pkg syscall (netbsd-amd64), const ECHOK ideal-int +pkg syscall (netbsd-amd64), const ECHOKE ideal-int +pkg syscall (netbsd-amd64), const ECHONL ideal-int +pkg syscall (netbsd-amd64), const ECHOPRT ideal-int +pkg syscall (netbsd-amd64), const EFTYPE Errno +pkg syscall (netbsd-amd64), const ELAST Errno +pkg syscall (netbsd-amd64), const EMULTIHOP Errno +pkg syscall (netbsd-amd64), const EMUL_LINUX ideal-int +pkg syscall (netbsd-amd64), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-amd64), const EMUL_MAXID ideal-int +pkg syscall (netbsd-amd64), const ENEEDAUTH Errno +pkg syscall (netbsd-amd64), const ENOATTR Errno +pkg syscall (netbsd-amd64), const ENODATA Errno +pkg syscall (netbsd-amd64), const ENOLINK Errno +pkg syscall (netbsd-amd64), const ENOSR Errno +pkg syscall (netbsd-amd64), const ENOSTR Errno +pkg syscall (netbsd-amd64), const EPROCLIM Errno +pkg syscall (netbsd-amd64), const EPROCUNAVAIL Errno +pkg syscall (netbsd-amd64), const EPROGMISMATCH Errno +pkg syscall (netbsd-amd64), const EPROGUNAVAIL Errno +pkg syscall (netbsd-amd64), const EPROTO Errno +pkg syscall (netbsd-amd64), const ERPCMISMATCH Errno +pkg syscall (netbsd-amd64), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-amd64), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-amd64), const ETHERMIN ideal-int +pkg syscall (netbsd-amd64), const ETHERMTU ideal-int +pkg syscall (netbsd-amd64), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-amd64), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-amd64), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-amd64), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-amd64), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-amd64), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-amd64), const ETIME Errno +pkg syscall (netbsd-amd64), const EVFILT_AIO ideal-int +pkg syscall (netbsd-amd64), const EVFILT_PROC ideal-int +pkg syscall (netbsd-amd64), const EVFILT_READ ideal-int +pkg syscall (netbsd-amd64), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-amd64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-amd64), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-amd64), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-amd64), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-amd64), const EV_ADD ideal-int +pkg syscall (netbsd-amd64), const EV_CLEAR ideal-int +pkg syscall (netbsd-amd64), const EV_DELETE ideal-int +pkg syscall (netbsd-amd64), const EV_DISABLE ideal-int +pkg syscall (netbsd-amd64), const EV_ENABLE ideal-int +pkg syscall (netbsd-amd64), const EV_EOF ideal-int +pkg syscall (netbsd-amd64), const EV_ERROR ideal-int +pkg syscall (netbsd-amd64), const EV_FLAG1 ideal-int +pkg syscall (netbsd-amd64), const EV_ONESHOT ideal-int +pkg syscall (netbsd-amd64), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-amd64), const EXTA ideal-int +pkg syscall (netbsd-amd64), const EXTB ideal-int +pkg syscall (netbsd-amd64), const EXTPROC ideal-int +pkg syscall (netbsd-amd64), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-amd64), const FD_SETSIZE ideal-int +pkg syscall (netbsd-amd64), const FLUSHO ideal-int +pkg syscall (netbsd-amd64), const F_CLOSEM ideal-int +pkg syscall (netbsd-amd64), const F_DUPFD ideal-int +pkg syscall (netbsd-amd64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-amd64), const F_FSCTL ideal-int +pkg syscall (netbsd-amd64), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-amd64), const F_FSIN ideal-int +pkg syscall (netbsd-amd64), const F_FSINOUT ideal-int +pkg syscall (netbsd-amd64), const F_FSOUT ideal-int +pkg syscall (netbsd-amd64), const F_FSPRIV ideal-int +pkg syscall (netbsd-amd64), const F_FSVOID ideal-int +pkg syscall (netbsd-amd64), const F_GETFD ideal-int +pkg syscall (netbsd-amd64), const F_GETFL ideal-int +pkg syscall (netbsd-amd64), const F_GETLK ideal-int +pkg syscall (netbsd-amd64), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-amd64), const F_GETOWN ideal-int +pkg syscall (netbsd-amd64), const F_MAXFD ideal-int +pkg syscall (netbsd-amd64), const F_OK ideal-int +pkg syscall (netbsd-amd64), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-amd64), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-amd64), const F_RDLCK ideal-int +pkg syscall (netbsd-amd64), const F_SETFD ideal-int +pkg syscall (netbsd-amd64), const F_SETFL ideal-int +pkg syscall (netbsd-amd64), const F_SETLK ideal-int +pkg syscall (netbsd-amd64), const F_SETLKW ideal-int +pkg syscall (netbsd-amd64), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-amd64), const F_SETOWN ideal-int +pkg syscall (netbsd-amd64), const F_UNLCK ideal-int +pkg syscall (netbsd-amd64), const F_WRLCK ideal-int +pkg syscall (netbsd-amd64), const HUPCL ideal-int +pkg syscall (netbsd-amd64), const ICANON ideal-int +pkg syscall (netbsd-amd64), const ICMP6_FILTER = 18 +pkg syscall (netbsd-amd64), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-amd64), const ICRNL ideal-int +pkg syscall (netbsd-amd64), const IEXTEN ideal-int +pkg syscall (netbsd-amd64), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-amd64), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-amd64), const IFA_ROUTE ideal-int +pkg syscall (netbsd-amd64), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-amd64), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-amd64), const IFF_DEBUG ideal-int +pkg syscall (netbsd-amd64), const IFF_LINK0 ideal-int +pkg syscall (netbsd-amd64), const IFF_LINK1 ideal-int +pkg syscall (netbsd-amd64), const IFF_LINK2 ideal-int +pkg syscall (netbsd-amd64), const IFF_NOARP ideal-int +pkg syscall (netbsd-amd64), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-amd64), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-amd64), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-amd64), const IFF_PROMISC ideal-int +pkg syscall (netbsd-amd64), const IFF_RUNNING ideal-int +pkg syscall (netbsd-amd64), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-amd64), const IFNAMSIZ ideal-int +pkg syscall (netbsd-amd64), const IFT_1822 ideal-int +pkg syscall (netbsd-amd64), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-amd64), const IFT_AAL2 ideal-int +pkg syscall (netbsd-amd64), const IFT_AAL5 ideal-int +pkg syscall (netbsd-amd64), const IFT_ADSL ideal-int +pkg syscall (netbsd-amd64), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-amd64), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-amd64), const IFT_ARAP ideal-int +pkg syscall (netbsd-amd64), const IFT_ARCNET ideal-int +pkg syscall (netbsd-amd64), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-amd64), const IFT_ASYNC ideal-int +pkg syscall (netbsd-amd64), const IFT_ATM ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-amd64), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-amd64), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-amd64), const IFT_BSC ideal-int +pkg syscall (netbsd-amd64), const IFT_CARP ideal-int +pkg syscall (netbsd-amd64), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-amd64), const IFT_CEPT ideal-int +pkg syscall (netbsd-amd64), const IFT_CES ideal-int +pkg syscall (netbsd-amd64), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_CNR ideal-int +pkg syscall (netbsd-amd64), const IFT_COFFEE ideal-int +pkg syscall (netbsd-amd64), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-amd64), const IFT_DCN ideal-int +pkg syscall (netbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_DLSW ideal-int +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_DS0 ideal-int +pkg syscall (netbsd-amd64), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-amd64), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-amd64), const IFT_DS3 ideal-int +pkg syscall (netbsd-amd64), const IFT_DTM ideal-int +pkg syscall (netbsd-amd64), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-amd64), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_ECONET ideal-int +pkg syscall (netbsd-amd64), const IFT_EON ideal-int +pkg syscall (netbsd-amd64), const IFT_EPLRS ideal-int +pkg syscall (netbsd-amd64), const IFT_ESCON ideal-int +pkg syscall (netbsd-amd64), const IFT_ETHER ideal-int +pkg syscall (netbsd-amd64), const IFT_FAITH ideal-int +pkg syscall (netbsd-amd64), const IFT_FAST ideal-int +pkg syscall (netbsd-amd64), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-amd64), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-amd64), const IFT_FDDI ideal-int +pkg syscall (netbsd-amd64), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-amd64), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-amd64), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-amd64), const IFT_FRELAY ideal-int +pkg syscall (netbsd-amd64), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-amd64), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-amd64), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-amd64), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-amd64), const IFT_GIF ideal-int +pkg syscall (netbsd-amd64), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-amd64), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-amd64), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-amd64), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-amd64), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-amd64), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-amd64), const IFT_HDLC ideal-int +pkg syscall (netbsd-amd64), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-amd64), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-amd64), const IFT_HIPPI ideal-int +pkg syscall (netbsd-amd64), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-amd64), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-amd64), const IFT_HSSI ideal-int +pkg syscall (netbsd-amd64), const IFT_HY ideal-int +pkg syscall (netbsd-amd64), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-amd64), const IFT_IDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-amd64), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-amd64), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-amd64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-amd64), const IFT_IFGSN ideal-int +pkg syscall (netbsd-amd64), const IFT_IMT ideal-int +pkg syscall (netbsd-amd64), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-amd64), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-amd64), const IFT_IP ideal-int +pkg syscall (netbsd-amd64), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-amd64), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-amd64), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-amd64), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-amd64), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-amd64), const IFT_ISDN ideal-int +pkg syscall (netbsd-amd64), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-amd64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-amd64), const IFT_ISDNS ideal-int +pkg syscall (netbsd-amd64), const IFT_ISDNU ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-amd64), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-amd64), const IFT_ISUP ideal-int +pkg syscall (netbsd-amd64), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-amd64), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-amd64), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-amd64), const IFT_LAPB ideal-int +pkg syscall (netbsd-amd64), const IFT_LAPD ideal-int +pkg syscall (netbsd-amd64), const IFT_LAPF ideal-int +pkg syscall (netbsd-amd64), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-amd64), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-amd64), const IFT_LOOP ideal-int +pkg syscall (netbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-amd64), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-amd64), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-amd64), const IFT_MODEM ideal-int +pkg syscall (netbsd-amd64), const IFT_MPC ideal-int +pkg syscall (netbsd-amd64), const IFT_MPLS ideal-int +pkg syscall (netbsd-amd64), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_MSDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_MVL ideal-int +pkg syscall (netbsd-amd64), const IFT_MYRINET ideal-int +pkg syscall (netbsd-amd64), const IFT_NFAS ideal-int +pkg syscall (netbsd-amd64), const IFT_NSIP ideal-int +pkg syscall (netbsd-amd64), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-amd64), const IFT_OTHER ideal-int +pkg syscall (netbsd-amd64), const IFT_P10 ideal-int +pkg syscall (netbsd-amd64), const IFT_P80 ideal-int +pkg syscall (netbsd-amd64), const IFT_PARA ideal-int +pkg syscall (netbsd-amd64), const IFT_PFLOG ideal-int +pkg syscall (netbsd-amd64), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-amd64), const IFT_PLC ideal-int +pkg syscall (netbsd-amd64), const IFT_PON155 ideal-int +pkg syscall (netbsd-amd64), const IFT_PON622 ideal-int +pkg syscall (netbsd-amd64), const IFT_POS ideal-int +pkg syscall (netbsd-amd64), const IFT_PPP ideal-int +pkg syscall (netbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPATM ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-amd64), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-amd64), const IFT_PVC ideal-int +pkg syscall (netbsd-amd64), const IFT_Q2931 ideal-int +pkg syscall (netbsd-amd64), const IFT_QLLC ideal-int +pkg syscall (netbsd-amd64), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-amd64), const IFT_RADSL ideal-int +pkg syscall (netbsd-amd64), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-amd64), const IFT_RS232 ideal-int +pkg syscall (netbsd-amd64), const IFT_RSRB ideal-int +pkg syscall (netbsd-amd64), const IFT_SDLC ideal-int +pkg syscall (netbsd-amd64), const IFT_SDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_SHDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_SIP ideal-int +pkg syscall (netbsd-amd64), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-amd64), const IFT_SIPTG ideal-int +pkg syscall (netbsd-amd64), const IFT_SLIP ideal-int +pkg syscall (netbsd-amd64), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-amd64), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-amd64), const IFT_SONET ideal-int +pkg syscall (netbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-amd64), const IFT_SONETVT ideal-int +pkg syscall (netbsd-amd64), const IFT_SRP ideal-int +pkg syscall (netbsd-amd64), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-amd64), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-amd64), const IFT_STARLAN ideal-int +pkg syscall (netbsd-amd64), const IFT_STF ideal-int +pkg syscall (netbsd-amd64), const IFT_T1 ideal-int +pkg syscall (netbsd-amd64), const IFT_TDLC ideal-int +pkg syscall (netbsd-amd64), const IFT_TELINK ideal-int +pkg syscall (netbsd-amd64), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-amd64), const IFT_TR008 ideal-int +pkg syscall (netbsd-amd64), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-amd64), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-amd64), const IFT_ULTRA ideal-int +pkg syscall (netbsd-amd64), const IFT_USB ideal-int +pkg syscall (netbsd-amd64), const IFT_V11 ideal-int +pkg syscall (netbsd-amd64), const IFT_V35 ideal-int +pkg syscall (netbsd-amd64), const IFT_V36 ideal-int +pkg syscall (netbsd-amd64), const IFT_V37 ideal-int +pkg syscall (netbsd-amd64), const IFT_VDSL ideal-int +pkg syscall (netbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-amd64), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-amd64), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-amd64), const IFT_X213 ideal-int +pkg syscall (netbsd-amd64), const IFT_X25 ideal-int +pkg syscall (netbsd-amd64), const IFT_X25DDN ideal-int +pkg syscall (netbsd-amd64), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-amd64), const IFT_X25MLP ideal-int +pkg syscall (netbsd-amd64), const IFT_X25PLE ideal-int +pkg syscall (netbsd-amd64), const IFT_XETHER ideal-int +pkg syscall (netbsd-amd64), const IGNBRK ideal-int +pkg syscall (netbsd-amd64), const IGNCR ideal-int +pkg syscall (netbsd-amd64), const IGNPAR ideal-int +pkg syscall (netbsd-amd64), const IMAXBEL ideal-int +pkg syscall (netbsd-amd64), const INLCR ideal-int +pkg syscall (netbsd-amd64), const INPCK ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-amd64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-amd64), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_AH ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_EON ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_TP ideal-int +pkg syscall (netbsd-amd64), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-amd64), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-amd64), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-amd64), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-amd64), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-amd64), const IPV6_FAITH ideal-int +pkg syscall (netbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-amd64), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-amd64), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-amd64), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-amd64), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-amd64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-amd64), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-amd64), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-amd64), const IPV6_MMTU ideal-int +pkg syscall (netbsd-amd64), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-amd64), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-amd64), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-amd64), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-amd64), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-amd64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-amd64), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-amd64), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-amd64), const IPV6_VERSION ideal-int +pkg syscall (netbsd-amd64), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-amd64), const IP_DF ideal-int +pkg syscall (netbsd-amd64), const IP_EF ideal-int +pkg syscall (netbsd-amd64), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-amd64), const IP_HDRINCL ideal-int +pkg syscall (netbsd-amd64), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-amd64), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-amd64), const IP_MF ideal-int +pkg syscall (netbsd-amd64), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-amd64), const IP_MINTTL ideal-int +pkg syscall (netbsd-amd64), const IP_MSS ideal-int +pkg syscall (netbsd-amd64), const IP_OFFMASK ideal-int +pkg syscall (netbsd-amd64), const IP_OPTIONS ideal-int +pkg syscall (netbsd-amd64), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-amd64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-amd64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-amd64), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-amd64), const IP_RECVIF ideal-int +pkg syscall (netbsd-amd64), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-amd64), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-amd64), const IP_RECVTTL ideal-int +pkg syscall (netbsd-amd64), const IP_RETOPTS ideal-int +pkg syscall (netbsd-amd64), const IP_RF ideal-int +pkg syscall (netbsd-amd64), const ISIG ideal-int +pkg syscall (netbsd-amd64), const ISTRIP ideal-int +pkg syscall (netbsd-amd64), const IXANY ideal-int +pkg syscall (netbsd-amd64), const IXOFF ideal-int +pkg syscall (netbsd-amd64), const IXON ideal-int +pkg syscall (netbsd-amd64), const LOCK_EX ideal-int +pkg syscall (netbsd-amd64), const LOCK_NB ideal-int +pkg syscall (netbsd-amd64), const LOCK_SH ideal-int +pkg syscall (netbsd-amd64), const LOCK_UN ideal-int +pkg syscall (netbsd-amd64), const MSG_BCAST ideal-int +pkg syscall (netbsd-amd64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-amd64), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-amd64), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-amd64), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-amd64), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-amd64), const MSG_EOR ideal-int +pkg syscall (netbsd-amd64), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-amd64), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-amd64), const MSG_MCAST ideal-int +pkg syscall (netbsd-amd64), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-amd64), const MSG_NBIO ideal-int +pkg syscall (netbsd-amd64), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-amd64), const MSG_OOB ideal-int +pkg syscall (netbsd-amd64), const MSG_PEEK ideal-int +pkg syscall (netbsd-amd64), const MSG_TRUNC ideal-int +pkg syscall (netbsd-amd64), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-amd64), const MSG_WAITALL ideal-int +pkg syscall (netbsd-amd64), const NAME_MAX ideal-int +pkg syscall (netbsd-amd64), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-amd64), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-amd64), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-amd64), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-amd64), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-amd64), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-amd64), const NOFLSH ideal-int +pkg syscall (netbsd-amd64), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-amd64), const NOTE_CHILD ideal-int +pkg syscall (netbsd-amd64), const NOTE_DELETE ideal-int +pkg syscall (netbsd-amd64), const NOTE_EXEC ideal-int +pkg syscall (netbsd-amd64), const NOTE_EXIT ideal-int +pkg syscall (netbsd-amd64), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-amd64), const NOTE_FORK ideal-int +pkg syscall (netbsd-amd64), const NOTE_LINK ideal-int +pkg syscall (netbsd-amd64), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-amd64), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-amd64), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-amd64), const NOTE_RENAME ideal-int +pkg syscall (netbsd-amd64), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-amd64), const NOTE_TRACK ideal-int +pkg syscall (netbsd-amd64), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-amd64), const NOTE_WRITE ideal-int +pkg syscall (netbsd-amd64), const OCRNL ideal-int +pkg syscall (netbsd-amd64), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-amd64), const ONLCR ideal-int +pkg syscall (netbsd-amd64), const ONLRET ideal-int +pkg syscall (netbsd-amd64), const ONOCR ideal-int +pkg syscall (netbsd-amd64), const ONOEOT ideal-int +pkg syscall (netbsd-amd64), const OPOST ideal-int +pkg syscall (netbsd-amd64), const O_ACCMODE ideal-int +pkg syscall (netbsd-amd64), const O_ALT_IO ideal-int +pkg syscall (netbsd-amd64), const O_DIRECT ideal-int +pkg syscall (netbsd-amd64), const O_DIRECTORY ideal-int +pkg syscall (netbsd-amd64), const O_DSYNC ideal-int +pkg syscall (netbsd-amd64), const O_EXLOCK ideal-int +pkg syscall (netbsd-amd64), const O_FSYNC ideal-int +pkg syscall (netbsd-amd64), const O_NDELAY ideal-int +pkg syscall (netbsd-amd64), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-amd64), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64), const O_RSYNC ideal-int +pkg syscall (netbsd-amd64), const O_SHLOCK ideal-int +pkg syscall (netbsd-amd64), const PARENB ideal-int +pkg syscall (netbsd-amd64), const PARMRK ideal-int +pkg syscall (netbsd-amd64), const PARODD ideal-int +pkg syscall (netbsd-amd64), const PENDIN ideal-int +pkg syscall (netbsd-amd64), const PRIO_PGRP = 1 +pkg syscall (netbsd-amd64), const PRIO_PGRP ideal-int +pkg syscall (netbsd-amd64), const PRIO_PROCESS = 0 +pkg syscall (netbsd-amd64), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-amd64), const PRIO_USER = 2 +pkg syscall (netbsd-amd64), const PRIO_USER ideal-int +pkg syscall (netbsd-amd64), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-amd64), const PTRACE_CONT ideal-int +pkg syscall (netbsd-amd64), const PTRACE_KILL ideal-int +pkg syscall (netbsd-amd64), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_AS ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-amd64), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-amd64), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-amd64), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-amd64), const RTAX_BRD ideal-int +pkg syscall (netbsd-amd64), const RTAX_DST ideal-int +pkg syscall (netbsd-amd64), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-amd64), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-amd64), const RTAX_IFA ideal-int +pkg syscall (netbsd-amd64), const RTAX_IFP ideal-int +pkg syscall (netbsd-amd64), const RTAX_MAX ideal-int +pkg syscall (netbsd-amd64), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-amd64), const RTAX_TAG ideal-int +pkg syscall (netbsd-amd64), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-amd64), const RTA_BRD ideal-int +pkg syscall (netbsd-amd64), const RTA_DST ideal-int +pkg syscall (netbsd-amd64), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-amd64), const RTA_GENMASK ideal-int +pkg syscall (netbsd-amd64), const RTA_IFA ideal-int +pkg syscall (netbsd-amd64), const RTA_IFP ideal-int +pkg syscall (netbsd-amd64), const RTA_NETMASK ideal-int +pkg syscall (netbsd-amd64), const RTA_TAG ideal-int +pkg syscall (netbsd-amd64), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-amd64), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-amd64), const RTF_CLONED ideal-int +pkg syscall (netbsd-amd64), const RTF_CLONING ideal-int +pkg syscall (netbsd-amd64), const RTF_DONE ideal-int +pkg syscall (netbsd-amd64), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-amd64), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-amd64), const RTF_HOST ideal-int +pkg syscall (netbsd-amd64), const RTF_LLINFO ideal-int +pkg syscall (netbsd-amd64), const RTF_MASK ideal-int +pkg syscall (netbsd-amd64), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-amd64), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-amd64), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-amd64), const RTF_REJECT ideal-int +pkg syscall (netbsd-amd64), const RTF_SRC ideal-int +pkg syscall (netbsd-amd64), const RTF_STATIC ideal-int +pkg syscall (netbsd-amd64), const RTF_UP ideal-int +pkg syscall (netbsd-amd64), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-amd64), const RTM_ADD ideal-int +pkg syscall (netbsd-amd64), const RTM_CHANGE ideal-int +pkg syscall (netbsd-amd64), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-amd64), const RTM_DELADDR ideal-int +pkg syscall (netbsd-amd64), const RTM_DELETE ideal-int +pkg syscall (netbsd-amd64), const RTM_GET ideal-int +pkg syscall (netbsd-amd64), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-amd64), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-amd64), const RTM_IFINFO ideal-int +pkg syscall (netbsd-amd64), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-amd64), const RTM_LOCK ideal-int +pkg syscall (netbsd-amd64), const RTM_LOSING ideal-int +pkg syscall (netbsd-amd64), const RTM_MISS ideal-int +pkg syscall (netbsd-amd64), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-amd64), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-amd64), const RTM_OLDADD ideal-int +pkg syscall (netbsd-amd64), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-amd64), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-amd64), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-amd64), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-amd64), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-amd64), const RTM_SETGATE ideal-int +pkg syscall (netbsd-amd64), const RTM_VERSION ideal-int +pkg syscall (netbsd-amd64), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-amd64), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-amd64), const RTV_MTU ideal-int +pkg syscall (netbsd-amd64), const RTV_RPIPE ideal-int +pkg syscall (netbsd-amd64), const RTV_RTT ideal-int +pkg syscall (netbsd-amd64), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-amd64), const RTV_SPIPE ideal-int +pkg syscall (netbsd-amd64), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-amd64), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-amd64), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-amd64), const SCM_CREDS ideal-int +pkg syscall (netbsd-amd64), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-amd64), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-amd64), const SIGCHLD Signal +pkg syscall (netbsd-amd64), const SIGCONT Signal +pkg syscall (netbsd-amd64), const SIGEMT Signal +pkg syscall (netbsd-amd64), const SIGINFO Signal +pkg syscall (netbsd-amd64), const SIGIO Signal +pkg syscall (netbsd-amd64), const SIGIOT Signal +pkg syscall (netbsd-amd64), const SIGPROF Signal +pkg syscall (netbsd-amd64), const SIGPWR Signal +pkg syscall (netbsd-amd64), const SIGSTOP Signal +pkg syscall (netbsd-amd64), const SIGSYS Signal +pkg syscall (netbsd-amd64), const SIGTSTP Signal +pkg syscall (netbsd-amd64), const SIGTTIN Signal +pkg syscall (netbsd-amd64), const SIGTTOU Signal +pkg syscall (netbsd-amd64), const SIGURG Signal +pkg syscall (netbsd-amd64), const SIGUSR1 Signal +pkg syscall (netbsd-amd64), const SIGUSR2 Signal +pkg syscall (netbsd-amd64), const SIGVTALRM Signal +pkg syscall (netbsd-amd64), const SIGWINCH Signal +pkg syscall (netbsd-amd64), const SIGXCPU Signal +pkg syscall (netbsd-amd64), const SIGXFSZ Signal +pkg syscall (netbsd-amd64), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-amd64), const SIOCADDRT ideal-int +pkg syscall (netbsd-amd64), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCATMARK ideal-int +pkg syscall (netbsd-amd64), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-amd64), const SIOCDELRT ideal-int +pkg syscall (netbsd-amd64), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-amd64), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-amd64), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-amd64), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-amd64), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-amd64), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-amd64), const SIOCGPGRP ideal-int +pkg syscall (netbsd-amd64), const SIOCGVH ideal-int +pkg syscall (netbsd-amd64), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-amd64), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-amd64), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-amd64), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-amd64), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-amd64), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-amd64), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-amd64), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-amd64), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-amd64), const SIOCSPGRP ideal-int +pkg syscall (netbsd-amd64), const SIOCSVH ideal-int +pkg syscall (netbsd-amd64), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-amd64), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-amd64), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-amd64), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-amd64), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64), const SOCK_RDM ideal-int +pkg syscall (netbsd-amd64), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-amd64), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-amd64), const SO_DEBUG ideal-int +pkg syscall (netbsd-amd64), const SO_ERROR ideal-int +pkg syscall (netbsd-amd64), const SO_NOHEADER ideal-int +pkg syscall (netbsd-amd64), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-amd64), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-amd64), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-amd64), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-amd64), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-amd64), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-amd64), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-amd64), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-amd64), const SO_TYPE ideal-int +pkg syscall (netbsd-amd64), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-amd64), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-amd64), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-amd64), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-amd64), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-amd64), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-amd64), const SYS_ACCESS ideal-int +pkg syscall (netbsd-amd64), const SYS_ACCT ideal-int +pkg syscall (netbsd-amd64), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_BIND ideal-int +pkg syscall (netbsd-amd64), const SYS_BREAK ideal-int +pkg syscall (netbsd-amd64), const SYS_CHDIR ideal-int +pkg syscall (netbsd-amd64), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-amd64), const SYS_CHMOD ideal-int +pkg syscall (netbsd-amd64), const SYS_CHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS_CHROOT ideal-int +pkg syscall (netbsd-amd64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-amd64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_CLOSE ideal-int +pkg syscall (netbsd-amd64), const SYS_CONNECT ideal-int +pkg syscall (netbsd-amd64), const SYS_DUP ideal-int +pkg syscall (netbsd-amd64), const SYS_DUP2 ideal-int +pkg syscall (netbsd-amd64), const SYS_DUP3 ideal-int +pkg syscall (netbsd-amd64), const SYS_EXECVE ideal-int +pkg syscall (netbsd-amd64), const SYS_EXIT ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-amd64), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-amd64), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-amd64), const SYS_FCNTL ideal-int +pkg syscall (netbsd-amd64), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-amd64), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-amd64), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-amd64), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_FLOCK ideal-int +pkg syscall (netbsd-amd64), const SYS_FORK ideal-int +pkg syscall (netbsd-amd64), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-amd64), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_FSTAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-amd64), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-amd64), const SYS_FSYNC ideal-int +pkg syscall (netbsd-amd64), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-amd64), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-amd64), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-amd64), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-amd64), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-amd64), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-amd64), const SYS_GETEGID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETEUID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETFH ideal-int +pkg syscall (netbsd-amd64), const SYS_GETGID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-amd64), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPGID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPPID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-amd64), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-amd64), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-amd64), const SYS_GETSID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-amd64), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-amd64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-amd64), const SYS_GETUID ideal-int +pkg syscall (netbsd-amd64), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-amd64), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_IOCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-amd64), const SYS_KEVENT ideal-int +pkg syscall (netbsd-amd64), const SYS_KILL ideal-int +pkg syscall (netbsd-amd64), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-amd64), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-amd64), const SYS_KTRACE ideal-int +pkg syscall (netbsd-amd64), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-amd64), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-amd64), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_LINK ideal-int +pkg syscall (netbsd-amd64), const SYS_LINKAT ideal-int +pkg syscall (netbsd-amd64), const SYS_LISTEN ideal-int +pkg syscall (netbsd-amd64), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_LSEEK ideal-int +pkg syscall (netbsd-amd64), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_LSTAT ideal-int +pkg syscall (netbsd-amd64), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-amd64), const SYS_MADVISE ideal-int +pkg syscall (netbsd-amd64), const SYS_MINCORE ideal-int +pkg syscall (netbsd-amd64), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-amd64), const SYS_MKDIR ideal-int +pkg syscall (netbsd-amd64), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-amd64), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-amd64), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-amd64), const SYS_MKNOD ideal-int +pkg syscall (netbsd-amd64), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-amd64), const SYS_MLOCK ideal-int +pkg syscall (netbsd-amd64), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-amd64), const SYS_MMAP ideal-int +pkg syscall (netbsd-amd64), const SYS_MODCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_MOUNT ideal-int +pkg syscall (netbsd-amd64), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-amd64), const SYS_MREMAP ideal-int +pkg syscall (netbsd-amd64), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_MSGGET ideal-int +pkg syscall (netbsd-amd64), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-amd64), const SYS_MSGSND ideal-int +pkg syscall (netbsd-amd64), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-amd64), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-amd64), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-amd64), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-amd64), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_OPEN ideal-int +pkg syscall (netbsd-amd64), const SYS_OPENAT ideal-int +pkg syscall (netbsd-amd64), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-amd64), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-amd64), const SYS_PIPE ideal-int +pkg syscall (netbsd-amd64), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-amd64), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-amd64), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-amd64), const SYS_POLL ideal-int +pkg syscall (netbsd-amd64), const SYS_POLLTS ideal-int +pkg syscall (netbsd-amd64), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-amd64), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-amd64), const SYS_PREAD ideal-int +pkg syscall (netbsd-amd64), const SYS_PREADV ideal-int +pkg syscall (netbsd-amd64), const SYS_PROFIL ideal-int +pkg syscall (netbsd-amd64), const SYS_PSELECT ideal-int +pkg syscall (netbsd-amd64), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-amd64), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-amd64), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-amd64), const SYS_PTRACE ideal-int +pkg syscall (netbsd-amd64), const SYS_PWRITE ideal-int +pkg syscall (netbsd-amd64), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-amd64), const SYS_RASCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_READ ideal-int +pkg syscall (netbsd-amd64), const SYS_READLINK ideal-int +pkg syscall (netbsd-amd64), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-amd64), const SYS_READV ideal-int +pkg syscall (netbsd-amd64), const SYS_REBOOT ideal-int +pkg syscall (netbsd-amd64), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-amd64), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-amd64), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-amd64), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_RENAME ideal-int +pkg syscall (netbsd-amd64), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-amd64), const SYS_REVOKE ideal-int +pkg syscall (netbsd-amd64), const SYS_RMDIR ideal-int +pkg syscall (netbsd-amd64), const SYS_SBRK ideal-int +pkg syscall (netbsd-amd64), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-amd64), const SYS_SELECT ideal-int +pkg syscall (netbsd-amd64), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-amd64), const SYS_SEMGET ideal-int +pkg syscall (netbsd-amd64), const SYS_SEMOP ideal-int +pkg syscall (netbsd-amd64), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-amd64), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-amd64), const SYS_SENDTO ideal-int +pkg syscall (netbsd-amd64), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-amd64), const SYS_SETEGID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETEUID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETGID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-amd64), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-amd64), const SYS_SETPGID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-amd64), const SYS_SETREGID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETREUID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-amd64), const SYS_SETSID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-amd64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-amd64), const SYS_SETUID ideal-int +pkg syscall (netbsd-amd64), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-amd64), const SYS_SHMAT ideal-int +pkg syscall (netbsd-amd64), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_SHMDT ideal-int +pkg syscall (netbsd-amd64), const SYS_SHMGET ideal-int +pkg syscall (netbsd-amd64), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-amd64), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-amd64), const SYS_SOCKET ideal-int +pkg syscall (netbsd-amd64), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-amd64), const SYS_SSTK ideal-int +pkg syscall (netbsd-amd64), const SYS_STAT ideal-int +pkg syscall (netbsd-amd64), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-amd64), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-amd64), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-amd64), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-amd64), const SYS_SYNC ideal-int +pkg syscall (netbsd-amd64), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-amd64), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-amd64), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-amd64), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-amd64), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-amd64), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-amd64), const SYS_UMASK ideal-int +pkg syscall (netbsd-amd64), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-amd64), const SYS_UNLINK ideal-int +pkg syscall (netbsd-amd64), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-amd64), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-amd64), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-amd64), const SYS_UTIMES ideal-int +pkg syscall (netbsd-amd64), const SYS_UTRACE ideal-int +pkg syscall (netbsd-amd64), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-amd64), const SYS_VADVISE ideal-int +pkg syscall (netbsd-amd64), const SYS_VFORK ideal-int +pkg syscall (netbsd-amd64), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-amd64), const SYS_WRITE ideal-int +pkg syscall (netbsd-amd64), const SYS_WRITEV ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-amd64), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-amd64), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-amd64), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-amd64), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-amd64), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-amd64), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-amd64), const SYS___CLONE ideal-int +pkg syscall (netbsd-amd64), const SYS___GETCWD ideal-int +pkg syscall (netbsd-amd64), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-amd64), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-amd64), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-amd64), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-amd64), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-amd64), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-amd64), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-amd64), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-amd64), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-amd64), const S_ARCH1 ideal-int +pkg syscall (netbsd-amd64), const S_ARCH2 ideal-int +pkg syscall (netbsd-amd64), const S_BLKSIZE ideal-int +pkg syscall (netbsd-amd64), const S_IEXEC ideal-int +pkg syscall (netbsd-amd64), const S_IFWHT ideal-int +pkg syscall (netbsd-amd64), const S_IREAD ideal-int +pkg syscall (netbsd-amd64), const S_IRGRP ideal-int +pkg syscall (netbsd-amd64), const S_IROTH ideal-int +pkg syscall (netbsd-amd64), const S_IRWXG ideal-int +pkg syscall (netbsd-amd64), const S_IRWXO ideal-int +pkg syscall (netbsd-amd64), const S_IRWXU ideal-int +pkg syscall (netbsd-amd64), const S_ISTXT ideal-int +pkg syscall (netbsd-amd64), const S_IWGRP ideal-int +pkg syscall (netbsd-amd64), const S_IWOTH ideal-int +pkg syscall (netbsd-amd64), const S_IWRITE ideal-int +pkg syscall (netbsd-amd64), const S_IXGRP ideal-int +pkg syscall (netbsd-amd64), const S_IXOTH ideal-int +pkg syscall (netbsd-amd64), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-amd64), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-amd64), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-amd64), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-amd64), const SizeofBpfStat ideal-int +pkg syscall (netbsd-amd64), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-amd64), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-amd64), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-amd64), const SizeofIPMreq ideal-int +pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-amd64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-amd64), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofIfData ideal-int +pkg syscall (netbsd-amd64), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-amd64), const SizeofLinger ideal-int +pkg syscall (netbsd-amd64), const SizeofMsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-amd64), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-amd64), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-amd64), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-amd64), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-amd64), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-amd64), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-amd64), const TCIFLUSH ideal-int +pkg syscall (netbsd-amd64), const TCIOFLUSH ideal-int +pkg syscall (netbsd-amd64), const TCOFLUSH ideal-int +pkg syscall (netbsd-amd64), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-amd64), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-amd64), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-amd64), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-amd64), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-amd64), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-amd64), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-amd64), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-amd64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-amd64), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-amd64), const TCP_MINMSS ideal-int +pkg syscall (netbsd-amd64), const TCP_MSS ideal-int +pkg syscall (netbsd-amd64), const TCSAFLUSH ideal-int +pkg syscall (netbsd-amd64), const TIOCCBRK ideal-int +pkg syscall (netbsd-amd64), const TIOCCDTR ideal-int +pkg syscall (netbsd-amd64), const TIOCCONS ideal-int +pkg syscall (netbsd-amd64), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-amd64), const TIOCDRAIN ideal-int +pkg syscall (netbsd-amd64), const TIOCEXCL ideal-int +pkg syscall (netbsd-amd64), const TIOCEXT ideal-int +pkg syscall (netbsd-amd64), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-amd64), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-amd64), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-amd64), const TIOCFLUSH ideal-int +pkg syscall (netbsd-amd64), const TIOCGETA ideal-int +pkg syscall (netbsd-amd64), const TIOCGETD ideal-int +pkg syscall (netbsd-amd64), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-amd64), const TIOCGLINED ideal-int +pkg syscall (netbsd-amd64), const TIOCGPGRP ideal-int +pkg syscall (netbsd-amd64), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-amd64), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-amd64), const TIOCGSID ideal-int +pkg syscall (netbsd-amd64), const TIOCGSIZE ideal-int +pkg syscall (netbsd-amd64), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-amd64), const TIOCMBIC ideal-int +pkg syscall (netbsd-amd64), const TIOCMBIS ideal-int +pkg syscall (netbsd-amd64), const TIOCMGET ideal-int +pkg syscall (netbsd-amd64), const TIOCMSET ideal-int +pkg syscall (netbsd-amd64), const TIOCM_CAR ideal-int +pkg syscall (netbsd-amd64), const TIOCM_CD ideal-int +pkg syscall (netbsd-amd64), const TIOCM_CTS ideal-int +pkg syscall (netbsd-amd64), const TIOCM_DSR ideal-int +pkg syscall (netbsd-amd64), const TIOCM_DTR ideal-int +pkg syscall (netbsd-amd64), const TIOCM_LE ideal-int +pkg syscall (netbsd-amd64), const TIOCM_RI ideal-int +pkg syscall (netbsd-amd64), const TIOCM_RNG ideal-int +pkg syscall (netbsd-amd64), const TIOCM_RTS ideal-int +pkg syscall (netbsd-amd64), const TIOCM_SR ideal-int +pkg syscall (netbsd-amd64), const TIOCM_ST ideal-int +pkg syscall (netbsd-amd64), const TIOCNOTTY ideal-int +pkg syscall (netbsd-amd64), const TIOCNXCL ideal-int +pkg syscall (netbsd-amd64), const TIOCOUTQ ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_START ideal-int +pkg syscall (netbsd-amd64), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-amd64), const TIOCPTMGET ideal-int +pkg syscall (netbsd-amd64), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-amd64), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-amd64), const TIOCREMOTE ideal-int +pkg syscall (netbsd-amd64), const TIOCSBRK ideal-int +pkg syscall (netbsd-amd64), const TIOCSCTTY ideal-int +pkg syscall (netbsd-amd64), const TIOCSDTR ideal-int +pkg syscall (netbsd-amd64), const TIOCSETA ideal-int +pkg syscall (netbsd-amd64), const TIOCSETAF ideal-int +pkg syscall (netbsd-amd64), const TIOCSETAW ideal-int +pkg syscall (netbsd-amd64), const TIOCSETD ideal-int +pkg syscall (netbsd-amd64), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-amd64), const TIOCSIG ideal-int +pkg syscall (netbsd-amd64), const TIOCSLINED ideal-int +pkg syscall (netbsd-amd64), const TIOCSPGRP ideal-int +pkg syscall (netbsd-amd64), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-amd64), const TIOCSSIZE ideal-int +pkg syscall (netbsd-amd64), const TIOCSTART ideal-int +pkg syscall (netbsd-amd64), const TIOCSTAT ideal-int +pkg syscall (netbsd-amd64), const TIOCSTI ideal-int +pkg syscall (netbsd-amd64), const TIOCSTOP ideal-int +pkg syscall (netbsd-amd64), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-amd64), const TIOCUCNTL ideal-int +pkg syscall (netbsd-amd64), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-amd64), const TOSTOP ideal-int +pkg syscall (netbsd-amd64), const VDISCARD ideal-int +pkg syscall (netbsd-amd64), const VDSUSP ideal-int +pkg syscall (netbsd-amd64), const VEOF ideal-int +pkg syscall (netbsd-amd64), const VEOL ideal-int +pkg syscall (netbsd-amd64), const VEOL2 ideal-int +pkg syscall (netbsd-amd64), const VERASE ideal-int +pkg syscall (netbsd-amd64), const VINTR ideal-int +pkg syscall (netbsd-amd64), const VKILL ideal-int +pkg syscall (netbsd-amd64), const VLNEXT ideal-int +pkg syscall (netbsd-amd64), const VMIN ideal-int +pkg syscall (netbsd-amd64), const VQUIT ideal-int +pkg syscall (netbsd-amd64), const VREPRINT ideal-int +pkg syscall (netbsd-amd64), const VSTART ideal-int +pkg syscall (netbsd-amd64), const VSTATUS ideal-int +pkg syscall (netbsd-amd64), const VSTOP ideal-int +pkg syscall (netbsd-amd64), const VSUSP ideal-int +pkg syscall (netbsd-amd64), const VTIME ideal-int +pkg syscall (netbsd-amd64), const VWERASE ideal-int +pkg syscall (netbsd-amd64), const WALL ideal-int +pkg syscall (netbsd-amd64), const WALLSIG ideal-int +pkg syscall (netbsd-amd64), const WALTSIG ideal-int +pkg syscall (netbsd-amd64), const WCLONE ideal-int +pkg syscall (netbsd-amd64), const WCOREFLAG ideal-int +pkg syscall (netbsd-amd64), const WNOHANG ideal-int +pkg syscall (netbsd-amd64), const WNOWAIT ideal-int +pkg syscall (netbsd-amd64), const WNOZOMBIE ideal-int +pkg syscall (netbsd-amd64), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-amd64), const WSTOPPED ideal-int +pkg syscall (netbsd-amd64), const WUNTRACED ideal-int +pkg syscall (netbsd-amd64), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64), func Access(string, uint32) error +pkg syscall (netbsd-amd64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-amd64), func Bind(int, Sockaddr) error +pkg syscall (netbsd-amd64), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-amd64), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-amd64), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-amd64), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-amd64), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-amd64), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-amd64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-amd64), func CheckBpfVersion(int) error +pkg syscall (netbsd-amd64), func Chflags(string, int) error +pkg syscall (netbsd-amd64), func Chroot(string) error +pkg syscall (netbsd-amd64), func Close(int) error +pkg syscall (netbsd-amd64), func CloseOnExec(int) +pkg syscall (netbsd-amd64), func CmsgLen(int) int +pkg syscall (netbsd-amd64), func CmsgSpace(int) int +pkg syscall (netbsd-amd64), func Connect(int, Sockaddr) error +pkg syscall (netbsd-amd64), func Dup(int) (int, error) +pkg syscall (netbsd-amd64), func Dup2(int, int) error +pkg syscall (netbsd-amd64), func Fchdir(int) error +pkg syscall (netbsd-amd64), func Fchflags(int, int) error +pkg syscall (netbsd-amd64), func Fchmod(int, uint32) error +pkg syscall (netbsd-amd64), func Fchown(int, int, int) error +pkg syscall (netbsd-amd64), func Flock(int, int) error +pkg syscall (netbsd-amd64), func FlushBpf(int) error +pkg syscall (netbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-amd64), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-amd64), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-amd64), func Fsync(int) error +pkg syscall (netbsd-amd64), func Ftruncate(int, int64) error +pkg syscall (netbsd-amd64), func Futimes(int, []Timeval) error +pkg syscall (netbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-amd64), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-amd64), func Getpgid(int) (int, error) +pkg syscall (netbsd-amd64), func Getpgrp() int +pkg syscall (netbsd-amd64), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-amd64), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-amd64), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-amd64), func Getsid(int) (int, error) +pkg syscall (netbsd-amd64), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-amd64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-amd64), func Issetugid() bool +pkg syscall (netbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-amd64), func Kill(int, Signal) error +pkg syscall (netbsd-amd64), func Kqueue() (int, error) +pkg syscall (netbsd-amd64), func Listen(int, int) error +pkg syscall (netbsd-amd64), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-amd64), func Mkfifo(string, uint32) error +pkg syscall (netbsd-amd64), func Mknod(string, uint32, int) error +pkg syscall (netbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-amd64), func Munmap([]uint8) error +pkg syscall (netbsd-amd64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-amd64), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-amd64), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-amd64), func Pipe([]int) error +pkg syscall (netbsd-amd64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-amd64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-amd64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-amd64), func Revoke(string) error +pkg syscall (netbsd-amd64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-amd64), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-amd64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-amd64), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-amd64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-amd64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-amd64), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-amd64), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-amd64), func SetBpfInterface(int, string) error +pkg syscall (netbsd-amd64), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-amd64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-amd64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-amd64), func SetNonblock(int, bool) error +pkg syscall (netbsd-amd64), func Setegid(int) error +pkg syscall (netbsd-amd64), func Seteuid(int) error +pkg syscall (netbsd-amd64), func Setgid(int) error +pkg syscall (netbsd-amd64), func Setgroups([]int) error +pkg syscall (netbsd-amd64), func Setpgid(int, int) error +pkg syscall (netbsd-amd64), func Setpriority(int, int, int) error +pkg syscall (netbsd-amd64), func Setregid(int, int) error +pkg syscall (netbsd-amd64), func Setreuid(int, int) error +pkg syscall (netbsd-amd64), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-amd64), func Setsid() (int, error) +pkg syscall (netbsd-amd64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-amd64), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-amd64), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-amd64), func Settimeofday(*Timeval) error +pkg syscall (netbsd-amd64), func Setuid(int) error +pkg syscall (netbsd-amd64), func Shutdown(int, int) error +pkg syscall (netbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-amd64), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-amd64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-amd64), func Stat(string, *Stat_t) error +pkg syscall (netbsd-amd64), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-amd64), func Sync() error +pkg syscall (netbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64), func Sysctl(string) (string, error) +pkg syscall (netbsd-amd64), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-amd64), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-amd64), func Truncate(string, int64) error +pkg syscall (netbsd-amd64), func Umask(int) int +pkg syscall (netbsd-amd64), func UnixRights(...int) []uint8 +pkg syscall (netbsd-amd64), func Unmount(string, int) error +pkg syscall (netbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-amd64), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-amd64), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-amd64), method (*Iovec) SetLen(int) +pkg syscall (netbsd-amd64), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-amd64), type BpfHdr struct +pkg syscall (netbsd-amd64), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-amd64), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-amd64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-amd64), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-amd64), type BpfInsn struct +pkg syscall (netbsd-amd64), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-amd64), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-amd64), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-amd64), type BpfInsn struct, K uint32 +pkg syscall (netbsd-amd64), type BpfProgram struct +pkg syscall (netbsd-amd64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-amd64), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64), type BpfStat struct +pkg syscall (netbsd-amd64), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-amd64), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-amd64), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-amd64), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-amd64), type BpfTimeval struct +pkg syscall (netbsd-amd64), type BpfTimeval struct, Sec int64 +pkg syscall (netbsd-amd64), type BpfTimeval struct, Usec int64 +pkg syscall (netbsd-amd64), type BpfVersion struct +pkg syscall (netbsd-amd64), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-amd64), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-amd64), type Cmsghdr struct +pkg syscall (netbsd-amd64), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-amd64), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-amd64), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-amd64), type Credential struct +pkg syscall (netbsd-amd64), type Credential struct, Gid uint32 +pkg syscall (netbsd-amd64), type Credential struct, Groups []uint32 +pkg syscall (netbsd-amd64), type Credential struct, Uid uint32 +pkg syscall (netbsd-amd64), type Dirent struct +pkg syscall (netbsd-amd64), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-amd64), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-amd64), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-amd64), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-amd64), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-amd64), type Dirent struct, Type uint8 +pkg syscall (netbsd-amd64), type FdSet struct +pkg syscall (netbsd-amd64), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-amd64), type Flock_t struct +pkg syscall (netbsd-amd64), type Flock_t struct, Len int64 +pkg syscall (netbsd-amd64), type Flock_t struct, Pid int32 +pkg syscall (netbsd-amd64), type Flock_t struct, Start int64 +pkg syscall (netbsd-amd64), type Flock_t struct, Type int16 +pkg syscall (netbsd-amd64), type Flock_t struct, Whence int16 +pkg syscall (netbsd-amd64), type Fsid struct +pkg syscall (netbsd-amd64), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-amd64), type ICMPv6Filter struct +pkg syscall (netbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-amd64), type IPv6MTUInfo struct +pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-amd64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-amd64), type IfData struct +pkg syscall (netbsd-amd64), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-amd64), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-amd64), type IfData struct, Collisions uint64 +pkg syscall (netbsd-amd64), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-amd64), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-amd64), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-amd64), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-amd64), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-amd64), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-amd64), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-amd64), type IfData struct, Link_state int32 +pkg syscall (netbsd-amd64), type IfData struct, Metric uint64 +pkg syscall (netbsd-amd64), type IfData struct, Mtu uint64 +pkg syscall (netbsd-amd64), type IfData struct, Noproto uint64 +pkg syscall (netbsd-amd64), type IfData struct, Obytes uint64 +pkg syscall (netbsd-amd64), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-amd64), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-amd64), type IfData struct, Opackets uint64 +pkg syscall (netbsd-amd64), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-amd64), type IfData struct, Type uint8 +pkg syscall (netbsd-amd64), type IfMsghdr struct +pkg syscall (netbsd-amd64), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-amd64), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64), type IfaMsghdr struct +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64), type Inet6Pktinfo struct +pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct +pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-amd64), type InterfaceMessage struct +pkg syscall (netbsd-amd64), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-amd64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-amd64), type Iovec struct +pkg syscall (netbsd-amd64), type Iovec struct, Base *uint8 +pkg syscall (netbsd-amd64), type Iovec struct, Len uint64 +pkg syscall (netbsd-amd64), type Kevent_t struct +pkg syscall (netbsd-amd64), type Kevent_t struct, Data int64 +pkg syscall (netbsd-amd64), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-amd64), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-amd64), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-amd64), type Kevent_t struct, Ident uint64 +pkg syscall (netbsd-amd64), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64), type Kevent_t struct, Udata int64 +pkg syscall (netbsd-amd64), type Mclpool [0]uint8 +pkg syscall (netbsd-amd64), type Msghdr struct +pkg syscall (netbsd-amd64), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-amd64), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-amd64), type Msghdr struct, Flags int32 +pkg syscall (netbsd-amd64), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-amd64), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-amd64), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-amd64), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-amd64), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-amd64), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-amd64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-amd64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-amd64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-amd64), type RawSockaddrUnix struct +pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-amd64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-amd64), type Rlimit struct +pkg syscall (netbsd-amd64), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-amd64), type Rlimit struct, Max uint64 +pkg syscall (netbsd-amd64), type RouteMessage struct +pkg syscall (netbsd-amd64), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-amd64), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-amd64), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-amd64), type RtMetrics struct +pkg syscall (netbsd-amd64), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-amd64), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-amd64), type RtMsghdr struct +pkg syscall (netbsd-amd64), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-amd64), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-amd64), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64), type Rusage struct, Idrss int64 +pkg syscall (netbsd-amd64), type Rusage struct, Inblock int64 +pkg syscall (netbsd-amd64), type Rusage struct, Isrss int64 +pkg syscall (netbsd-amd64), type Rusage struct, Ixrss int64 +pkg syscall (netbsd-amd64), type Rusage struct, Majflt int64 +pkg syscall (netbsd-amd64), type Rusage struct, Maxrss int64 +pkg syscall (netbsd-amd64), type Rusage struct, Minflt int64 +pkg syscall (netbsd-amd64), type Rusage struct, Msgrcv int64 +pkg syscall (netbsd-amd64), type Rusage struct, Msgsnd int64 +pkg syscall (netbsd-amd64), type Rusage struct, Nivcsw int64 +pkg syscall (netbsd-amd64), type Rusage struct, Nsignals int64 +pkg syscall (netbsd-amd64), type Rusage struct, Nswap int64 +pkg syscall (netbsd-amd64), type Rusage struct, Nvcsw int64 +pkg syscall (netbsd-amd64), type Rusage struct, Oublock int64 +pkg syscall (netbsd-amd64), type Rusage struct, Stime Timeval +pkg syscall (netbsd-amd64), type Rusage struct, Utime Timeval +pkg syscall (netbsd-amd64), type SockaddrDatalink struct +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-amd64), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-amd64), type SocketControlMessage struct +pkg syscall (netbsd-amd64), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-amd64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-amd64), type Stat_t struct +pkg syscall (netbsd-amd64), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-amd64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-amd64), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-amd64), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-amd64), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-amd64), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-amd64), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-amd64), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-amd64), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-amd64), type Stat_t struct, Size int64 +pkg syscall (netbsd-amd64), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-amd64), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-amd64), type Statfs_t [0]uint8 +pkg syscall (netbsd-amd64), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-amd64), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-amd64), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-amd64), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-amd64), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-amd64), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-amd64), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-amd64), type Sysctlnode struct +pkg syscall (netbsd-amd64), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-amd64), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-amd64), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-amd64), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-amd64), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-amd64), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-amd64), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-amd64), type Timespec struct, Nsec int64 +pkg syscall (netbsd-amd64), type Timespec struct, Sec int64 +pkg syscall (netbsd-amd64), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64), type Timeval struct, Sec int64 +pkg syscall (netbsd-amd64), type Timeval struct, Usec int32 +pkg syscall (netbsd-amd64), type WaitStatus uint32 +pkg syscall (netbsd-amd64), var Stderr int +pkg syscall (netbsd-amd64), var Stdin int +pkg syscall (netbsd-amd64), var Stdout int +pkg syscall (netbsd-amd64-cgo), const AF_APPLETALK ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_ARP ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_CCITT ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_CHAOS ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_CNT ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_COIP ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_DATAKIT ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_DECnet ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_DLI ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_E164 ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_ECMA ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_HYLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_IMPLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_IPX ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_ISDN ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_ISO ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_LAT ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_LOCAL ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_MPLS ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_NATM ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_NS ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_OROUTE ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_OSI ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_PUP ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_ROUTE ideal-int +pkg syscall (netbsd-amd64-cgo), const AF_SNA ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-amd64-cgo), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-amd64-cgo), const B0 ideal-int +pkg syscall (netbsd-amd64-cgo), const B110 ideal-int +pkg syscall (netbsd-amd64-cgo), const B115200 ideal-int +pkg syscall (netbsd-amd64-cgo), const B1200 ideal-int +pkg syscall (netbsd-amd64-cgo), const B134 ideal-int +pkg syscall (netbsd-amd64-cgo), const B14400 ideal-int +pkg syscall (netbsd-amd64-cgo), const B150 ideal-int +pkg syscall (netbsd-amd64-cgo), const B1800 ideal-int +pkg syscall (netbsd-amd64-cgo), const B19200 ideal-int +pkg syscall (netbsd-amd64-cgo), const B200 ideal-int +pkg syscall (netbsd-amd64-cgo), const B230400 ideal-int +pkg syscall (netbsd-amd64-cgo), const B2400 ideal-int +pkg syscall (netbsd-amd64-cgo), const B28800 ideal-int +pkg syscall (netbsd-amd64-cgo), const B300 ideal-int +pkg syscall (netbsd-amd64-cgo), const B38400 ideal-int +pkg syscall (netbsd-amd64-cgo), const B460800 ideal-int +pkg syscall (netbsd-amd64-cgo), const B4800 ideal-int +pkg syscall (netbsd-amd64-cgo), const B50 ideal-int +pkg syscall (netbsd-amd64-cgo), const B57600 ideal-int +pkg syscall (netbsd-amd64-cgo), const B600 ideal-int +pkg syscall (netbsd-amd64-cgo), const B7200 ideal-int +pkg syscall (netbsd-amd64-cgo), const B75 ideal-int +pkg syscall (netbsd-amd64-cgo), const B76800 ideal-int +pkg syscall (netbsd-amd64-cgo), const B921600 ideal-int +pkg syscall (netbsd-amd64-cgo), const B9600 ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGBLEN ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGDLT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGETIF ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGSTATS ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCPROMISC ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSBLEN ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSDLT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSETF ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSETIF ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSTCPF ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCSUDPF ideal-int +pkg syscall (netbsd-amd64-cgo), const BIOCVERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_A ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ABS ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ADD ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ALU ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_AND ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_B ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_DIV ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_H ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_IMM ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_IND ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JA ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JEQ ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JGE ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JGT ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JMP ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_JSET ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_K ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_LD ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_LDX ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_LSH ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MEM ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MISC ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MSH ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_MUL ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_NEG ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_OR ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_RELEASE ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_RET ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_RSH ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_ST ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_STX ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_SUB ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_TAX ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_TXA ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_W ideal-int +pkg syscall (netbsd-amd64-cgo), const BPF_X ideal-int +pkg syscall (netbsd-amd64-cgo), const BRKINT ideal-int +pkg syscall (netbsd-amd64-cgo), const CFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const CLOCAL ideal-int +pkg syscall (netbsd-amd64-cgo), const CREAD ideal-int +pkg syscall (netbsd-amd64-cgo), const CS5 ideal-int +pkg syscall (netbsd-amd64-cgo), const CS6 ideal-int +pkg syscall (netbsd-amd64-cgo), const CS7 ideal-int +pkg syscall (netbsd-amd64-cgo), const CS8 ideal-int +pkg syscall (netbsd-amd64-cgo), const CSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const CSTART ideal-int +pkg syscall (netbsd-amd64-cgo), const CSTATUS ideal-int +pkg syscall (netbsd-amd64-cgo), const CSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const CSTOPB ideal-int +pkg syscall (netbsd-amd64-cgo), const CSUSP ideal-int +pkg syscall (netbsd-amd64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const CTL_NET ideal-int +pkg syscall (netbsd-amd64-cgo), const CTL_QUERY ideal-int +pkg syscall (netbsd-amd64-cgo), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_A429 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_AOS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_AURORA ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_AX25 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_CAN20B ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_CHAOS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_DECT ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ECONET ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_EN10MB ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_EN3MB ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ENC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ERF ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FC_2 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FDDI ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GPF_F ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GPF_T ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_HDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_HHDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_HIPPI ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IPMB ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IPNET ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IPV4 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IPV6 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LAPD ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LIN ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_LTALK ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MFR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MOST ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MPLS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MTP2 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_MTP3 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_NULL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PFLOG ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPI ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_PRONET ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_RAW ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_RIO ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SCCP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SITA ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SLIP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SUNATM ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_TZSP ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_USB ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_WIHART ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-amd64-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_BLK ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_CHR ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_DIR ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_FIFO ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_LNK ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_REG ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_SOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const DT_WHT ideal-int +pkg syscall (netbsd-amd64-cgo), const EAUTH Errno +pkg syscall (netbsd-amd64-cgo), const EBADMSG Errno +pkg syscall (netbsd-amd64-cgo), const EBADRPC Errno +pkg syscall (netbsd-amd64-cgo), const ECHO ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHOCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHOE ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHOK ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHOKE ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHONL ideal-int +pkg syscall (netbsd-amd64-cgo), const ECHOPRT ideal-int +pkg syscall (netbsd-amd64-cgo), const EFTYPE Errno +pkg syscall (netbsd-amd64-cgo), const ELAST Errno +pkg syscall (netbsd-amd64-cgo), const EMULTIHOP Errno +pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX ideal-int +pkg syscall (netbsd-amd64-cgo), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-amd64-cgo), const EMUL_MAXID ideal-int +pkg syscall (netbsd-amd64-cgo), const ENEEDAUTH Errno +pkg syscall (netbsd-amd64-cgo), const ENOATTR Errno +pkg syscall (netbsd-amd64-cgo), const ENODATA Errno +pkg syscall (netbsd-amd64-cgo), const ENOLINK Errno +pkg syscall (netbsd-amd64-cgo), const ENOSR Errno +pkg syscall (netbsd-amd64-cgo), const ENOSTR Errno +pkg syscall (netbsd-amd64-cgo), const EPROCLIM Errno +pkg syscall (netbsd-amd64-cgo), const EPROCUNAVAIL Errno +pkg syscall (netbsd-amd64-cgo), const EPROGMISMATCH Errno +pkg syscall (netbsd-amd64-cgo), const EPROGUNAVAIL Errno +pkg syscall (netbsd-amd64-cgo), const EPROTO Errno +pkg syscall (netbsd-amd64-cgo), const ERPCMISMATCH Errno +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERMIN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-amd64-cgo), const ETIME Errno +pkg syscall (netbsd-amd64-cgo), const EVFILT_AIO ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_PROC ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_READ ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-amd64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_ADD ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_CLEAR ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_DELETE ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_DISABLE ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_ENABLE ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_EOF ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_ERROR ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_FLAG1 ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_ONESHOT ideal-int +pkg syscall (netbsd-amd64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const EXTA ideal-int +pkg syscall (netbsd-amd64-cgo), const EXTB ideal-int +pkg syscall (netbsd-amd64-cgo), const EXTPROC ideal-int +pkg syscall (netbsd-amd64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const FD_SETSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const FLUSHO ideal-int +pkg syscall (netbsd-amd64-cgo), const F_CLOSEM ideal-int +pkg syscall (netbsd-amd64-cgo), const F_DUPFD ideal-int +pkg syscall (netbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSIN ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSINOUT ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSOUT ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSPRIV ideal-int +pkg syscall (netbsd-amd64-cgo), const F_FSVOID ideal-int +pkg syscall (netbsd-amd64-cgo), const F_GETFD ideal-int +pkg syscall (netbsd-amd64-cgo), const F_GETFL ideal-int +pkg syscall (netbsd-amd64-cgo), const F_GETLK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const F_GETOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const F_MAXFD ideal-int +pkg syscall (netbsd-amd64-cgo), const F_OK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const F_RDLCK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETFD ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETFL ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETLK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETLKW ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const F_SETOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const F_UNLCK ideal-int +pkg syscall (netbsd-amd64-cgo), const F_WRLCK ideal-int +pkg syscall (netbsd-amd64-cgo), const HUPCL ideal-int +pkg syscall (netbsd-amd64-cgo), const ICANON ideal-int +pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER = 18 +pkg syscall (netbsd-amd64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-amd64-cgo), const ICRNL ideal-int +pkg syscall (netbsd-amd64-cgo), const IEXTEN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFA_ROUTE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_DEBUG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_LINK0 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_LINK1 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_LINK2 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_NOARP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_PROMISC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_RUNNING ideal-int +pkg syscall (netbsd-amd64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-amd64-cgo), const IFNAMSIZ ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_1822 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_AAL2 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_AAL5 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ADSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ARAP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ARCNET ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ASYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_BSC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CARP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CEPT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CES ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_CNR ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_COFFEE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DCN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DLSW ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DS0 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DS3 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DTM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ECONET ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_EON ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_EPLRS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ESCON ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FAITH ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FAST ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FDDI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_GIF ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HIPPI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HSSI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_HY ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IFGSN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IMT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISDN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISDNU ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ISUP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LAPB ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LAPD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LAPF ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_LOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MODEM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MPC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MPLS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MSDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MVL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_MYRINET ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_NFAS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_NSIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_OTHER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_P10 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_P80 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PARA ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PFLOG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PON155 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PON622 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_POS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PPP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPATM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_PVC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_Q2931 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_QLLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_RADSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_RS232 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_RSRB ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SHDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SIPTG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SLIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SONET ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SONETVT ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SRP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_STARLAN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_STF ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_T1 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TELINK ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TR008 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_ULTRA ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_USB ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_V11 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_V35 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_V36 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_V37 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VDSL ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X213 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X25 ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X25DDN ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X25MLP ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_X25PLE ideal-int +pkg syscall (netbsd-amd64-cgo), const IFT_XETHER ideal-int +pkg syscall (netbsd-amd64-cgo), const IGNBRK ideal-int +pkg syscall (netbsd-amd64-cgo), const IGNCR ideal-int +pkg syscall (netbsd-amd64-cgo), const IGNPAR ideal-int +pkg syscall (netbsd-amd64-cgo), const IMAXBEL ideal-int +pkg syscall (netbsd-amd64-cgo), const INLCR ideal-int +pkg syscall (netbsd-amd64-cgo), const INPCK ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_AH ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_EON ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_TP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_FAITH ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_MMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_DF ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_EF ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_HDRINCL ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MF ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MINTTL ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_MSS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_OFFMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_OPTIONS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RECVIF ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RECVTTL ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RETOPTS ideal-int +pkg syscall (netbsd-amd64-cgo), const IP_RF ideal-int +pkg syscall (netbsd-amd64-cgo), const ISIG ideal-int +pkg syscall (netbsd-amd64-cgo), const ISTRIP ideal-int +pkg syscall (netbsd-amd64-cgo), const IXANY ideal-int +pkg syscall (netbsd-amd64-cgo), const IXOFF ideal-int +pkg syscall (netbsd-amd64-cgo), const IXON ideal-int +pkg syscall (netbsd-amd64-cgo), const LOCK_EX ideal-int +pkg syscall (netbsd-amd64-cgo), const LOCK_NB ideal-int +pkg syscall (netbsd-amd64-cgo), const LOCK_SH ideal-int +pkg syscall (netbsd-amd64-cgo), const LOCK_UN ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_BCAST ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_EOR ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_MCAST ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_NBIO ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_OOB ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_PEEK ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_TRUNC ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const MSG_WAITALL ideal-int +pkg syscall (netbsd-amd64-cgo), const NAME_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-amd64-cgo), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-amd64-cgo), const NOFLSH ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_CHILD ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_DELETE ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_EXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_EXIT ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_FORK ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_RENAME ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_TRACK ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-amd64-cgo), const NOTE_WRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const OCRNL ideal-int +pkg syscall (netbsd-amd64-cgo), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-amd64-cgo), const ONLCR ideal-int +pkg syscall (netbsd-amd64-cgo), const ONLRET ideal-int +pkg syscall (netbsd-amd64-cgo), const ONOCR ideal-int +pkg syscall (netbsd-amd64-cgo), const ONOEOT ideal-int +pkg syscall (netbsd-amd64-cgo), const OPOST ideal-int +pkg syscall (netbsd-amd64-cgo), const O_ACCMODE ideal-int +pkg syscall (netbsd-amd64-cgo), const O_ALT_IO ideal-int +pkg syscall (netbsd-amd64-cgo), const O_DIRECT ideal-int +pkg syscall (netbsd-amd64-cgo), const O_DIRECTORY ideal-int +pkg syscall (netbsd-amd64-cgo), const O_DSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const O_EXLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const O_FSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const O_NDELAY ideal-int +pkg syscall (netbsd-amd64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-amd64-cgo), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const O_RSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const O_SHLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const PARENB ideal-int +pkg syscall (netbsd-amd64-cgo), const PARMRK ideal-int +pkg syscall (netbsd-amd64-cgo), const PARODD ideal-int +pkg syscall (netbsd-amd64-cgo), const PENDIN ideal-int +pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP = 1 +pkg syscall (netbsd-amd64-cgo), const PRIO_PGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS = 0 +pkg syscall (netbsd-amd64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-amd64-cgo), const PRIO_USER = 2 +pkg syscall (netbsd-amd64-cgo), const PRIO_USER ideal-int +pkg syscall (netbsd-amd64-cgo), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const PTRACE_CONT ideal-int +pkg syscall (netbsd-amd64-cgo), const PTRACE_KILL ideal-int +pkg syscall (netbsd-amd64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_AS ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-amd64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_BRD ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_DST ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_IFA ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_IFP ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_MAX ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTAX_TAG ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_BRD ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_DST ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_GENMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_IFA ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_IFP ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_NETMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTA_TAG ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_CLONED ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_CLONING ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_DONE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_HOST ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_LLINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_REJECT ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_SRC ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_STATIC ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_UP ideal-int +pkg syscall (netbsd-amd64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_ADD ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_CHANGE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_DELADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_DELETE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_GET ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_IFINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_LOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_LOSING ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_MISS ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_OLDADD ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_SETGATE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTM_VERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_MTU ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_RPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_RTT ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_SPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-amd64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-amd64-cgo), const SCM_CREDS ideal-int +pkg syscall (netbsd-amd64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-amd64-cgo), const SIGCHLD Signal +pkg syscall (netbsd-amd64-cgo), const SIGCONT Signal +pkg syscall (netbsd-amd64-cgo), const SIGEMT Signal +pkg syscall (netbsd-amd64-cgo), const SIGINFO Signal +pkg syscall (netbsd-amd64-cgo), const SIGIO Signal +pkg syscall (netbsd-amd64-cgo), const SIGIOT Signal +pkg syscall (netbsd-amd64-cgo), const SIGPROF Signal +pkg syscall (netbsd-amd64-cgo), const SIGPWR Signal +pkg syscall (netbsd-amd64-cgo), const SIGSTOP Signal +pkg syscall (netbsd-amd64-cgo), const SIGSYS Signal +pkg syscall (netbsd-amd64-cgo), const SIGTSTP Signal +pkg syscall (netbsd-amd64-cgo), const SIGTTIN Signal +pkg syscall (netbsd-amd64-cgo), const SIGTTOU Signal +pkg syscall (netbsd-amd64-cgo), const SIGURG Signal +pkg syscall (netbsd-amd64-cgo), const SIGUSR1 Signal +pkg syscall (netbsd-amd64-cgo), const SIGUSR2 Signal +pkg syscall (netbsd-amd64-cgo), const SIGVTALRM Signal +pkg syscall (netbsd-amd64-cgo), const SIGWINCH Signal +pkg syscall (netbsd-amd64-cgo), const SIGXCPU Signal +pkg syscall (netbsd-amd64-cgo), const SIGXFSZ Signal +pkg syscall (netbsd-amd64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCADDRT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCATMARK ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCDELRT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGPGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCGVH ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSPGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCSVH ideal-int +pkg syscall (netbsd-amd64-cgo), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-amd64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const SOCK_RDM ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_DEBUG ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_ERROR ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_NOHEADER ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_TYPE ideal-int +pkg syscall (netbsd-amd64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_ACCESS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_ACCT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_BIND ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_BREAK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CHDIR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CHMOD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CHROOT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CLOSE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_CONNECT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_DUP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_DUP2 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_DUP3 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXECVE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FCNTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FORK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSTAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETEGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETEUID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETFH ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPPID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETSID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETUID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_IOCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_KEVENT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_KILL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_KTRACE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LINKAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LISTEN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LSEEK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MADVISE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MINCORE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKDIR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKNOD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MMAP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MODCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MOUNT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MREMAP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MSGGET ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MSGSND ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_OPEN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_OPENAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PIPE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_POLL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_POLLTS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PREAD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PREADV ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PROFIL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PSELECT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PTRACE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PWRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RASCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_READ ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_READLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_READV ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_REBOOT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RENAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_REVOKE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_RMDIR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SBRK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SELECT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SEMGET ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SEMOP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SENDTO ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETEGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETEUID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETPGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETREGID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETREUID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETSID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETUID ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SHMAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SHMDT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SHMGET ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SOCKET ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SSTK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UMASK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UNLINK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UTIMES ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UTRACE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_VADVISE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_VFORK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_WRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS_WRITEV ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___CLONE ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___GETCWD ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-amd64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const S_ARCH1 ideal-int +pkg syscall (netbsd-amd64-cgo), const S_ARCH2 ideal-int +pkg syscall (netbsd-amd64-cgo), const S_BLKSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IEXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IFWHT ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IREAD ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IRGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IROTH ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IRWXG ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IRWXO ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IRWXU ideal-int +pkg syscall (netbsd-amd64-cgo), const S_ISTXT ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IWGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IWOTH ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IWRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IXGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const S_IXOTH ideal-int +pkg syscall (netbsd-amd64-cgo), const S_LOGIN_SET ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofBpfStat ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIPMreq ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIfData ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofLinger ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofMsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-amd64-cgo), const TCIFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const TCIOFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const TCOFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MINMSS ideal-int +pkg syscall (netbsd-amd64-cgo), const TCP_MSS ideal-int +pkg syscall (netbsd-amd64-cgo), const TCSAFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCCBRK ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCCDTR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCCONS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCDRAIN ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCEXCL ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCEXT ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCFLUSH ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGETA ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGETD ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGLINED ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGPGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGSID ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCMBIC ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCMBIS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCMGET ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCMSET ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_CAR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_CD ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_CTS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_DSR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_DTR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_LE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_RI ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_RNG ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_RTS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_SR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCM_ST ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCNOTTY ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCNXCL ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCOUTQ ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_START ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPTMGET ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCREMOTE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSBRK ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSCTTY ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSDTR ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSETA ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSETAF ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSETAW ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSETD ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSIG ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSLINED ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSPGRP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSSIZE ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSTART ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSTAT ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSTI ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCUCNTL ideal-int +pkg syscall (netbsd-amd64-cgo), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-amd64-cgo), const TOSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const VDISCARD ideal-int +pkg syscall (netbsd-amd64-cgo), const VDSUSP ideal-int +pkg syscall (netbsd-amd64-cgo), const VEOF ideal-int +pkg syscall (netbsd-amd64-cgo), const VEOL ideal-int +pkg syscall (netbsd-amd64-cgo), const VEOL2 ideal-int +pkg syscall (netbsd-amd64-cgo), const VERASE ideal-int +pkg syscall (netbsd-amd64-cgo), const VINTR ideal-int +pkg syscall (netbsd-amd64-cgo), const VKILL ideal-int +pkg syscall (netbsd-amd64-cgo), const VLNEXT ideal-int +pkg syscall (netbsd-amd64-cgo), const VMIN ideal-int +pkg syscall (netbsd-amd64-cgo), const VQUIT ideal-int +pkg syscall (netbsd-amd64-cgo), const VREPRINT ideal-int +pkg syscall (netbsd-amd64-cgo), const VSTART ideal-int +pkg syscall (netbsd-amd64-cgo), const VSTATUS ideal-int +pkg syscall (netbsd-amd64-cgo), const VSTOP ideal-int +pkg syscall (netbsd-amd64-cgo), const VSUSP ideal-int +pkg syscall (netbsd-amd64-cgo), const VTIME ideal-int +pkg syscall (netbsd-amd64-cgo), const VWERASE ideal-int +pkg syscall (netbsd-amd64-cgo), const WALL ideal-int +pkg syscall (netbsd-amd64-cgo), const WALLSIG ideal-int +pkg syscall (netbsd-amd64-cgo), const WALTSIG ideal-int +pkg syscall (netbsd-amd64-cgo), const WCLONE ideal-int +pkg syscall (netbsd-amd64-cgo), const WCOREFLAG ideal-int +pkg syscall (netbsd-amd64-cgo), const WNOHANG ideal-int +pkg syscall (netbsd-amd64-cgo), const WNOWAIT ideal-int +pkg syscall (netbsd-amd64-cgo), const WNOZOMBIE ideal-int +pkg syscall (netbsd-amd64-cgo), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-amd64-cgo), const WSTOPPED ideal-int +pkg syscall (netbsd-amd64-cgo), const WUNTRACED ideal-int +pkg syscall (netbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func Access(string, uint32) error +pkg syscall (netbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-amd64-cgo), func Bind(int, Sockaddr) error +pkg syscall (netbsd-amd64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-amd64-cgo), func CheckBpfVersion(int) error +pkg syscall (netbsd-amd64-cgo), func Chflags(string, int) error +pkg syscall (netbsd-amd64-cgo), func Chroot(string) error +pkg syscall (netbsd-amd64-cgo), func Close(int) error +pkg syscall (netbsd-amd64-cgo), func CloseOnExec(int) +pkg syscall (netbsd-amd64-cgo), func CmsgLen(int) int +pkg syscall (netbsd-amd64-cgo), func CmsgSpace(int) int +pkg syscall (netbsd-amd64-cgo), func Connect(int, Sockaddr) error +pkg syscall (netbsd-amd64-cgo), func Dup(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Dup2(int, int) error +pkg syscall (netbsd-amd64-cgo), func Fchdir(int) error +pkg syscall (netbsd-amd64-cgo), func Fchflags(int, int) error +pkg syscall (netbsd-amd64-cgo), func Fchmod(int, uint32) error +pkg syscall (netbsd-amd64-cgo), func Fchown(int, int, int) error +pkg syscall (netbsd-amd64-cgo), func Flock(int, int) error +pkg syscall (netbsd-amd64-cgo), func FlushBpf(int) error +pkg syscall (netbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-amd64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-amd64-cgo), func Fsync(int) error +pkg syscall (netbsd-amd64-cgo), func Ftruncate(int, int64) error +pkg syscall (netbsd-amd64-cgo), func Futimes(int, []Timeval) error +pkg syscall (netbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func Getpgid(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Getpgrp() int +pkg syscall (netbsd-amd64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-amd64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-amd64-cgo), func Getsid(int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Issetugid() bool +pkg syscall (netbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-amd64-cgo), func Kill(int, Signal) error +pkg syscall (netbsd-amd64-cgo), func Kqueue() (int, error) +pkg syscall (netbsd-amd64-cgo), func Listen(int, int) error +pkg syscall (netbsd-amd64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-amd64-cgo), func Mkfifo(string, uint32) error +pkg syscall (netbsd-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (netbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-amd64-cgo), func Munmap([]uint8) error +pkg syscall (netbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-amd64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-amd64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Pipe([]int) error +pkg syscall (netbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-amd64-cgo), func Revoke(string) error +pkg syscall (netbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-amd64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-amd64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-amd64-cgo), func SetBpfInterface(int, string) error +pkg syscall (netbsd-amd64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-amd64-cgo), func SetNonblock(int, bool) error +pkg syscall (netbsd-amd64-cgo), func Setegid(int) error +pkg syscall (netbsd-amd64-cgo), func Seteuid(int) error +pkg syscall (netbsd-amd64-cgo), func Setgid(int) error +pkg syscall (netbsd-amd64-cgo), func Setgroups([]int) error +pkg syscall (netbsd-amd64-cgo), func Setpgid(int, int) error +pkg syscall (netbsd-amd64-cgo), func Setpriority(int, int, int) error +pkg syscall (netbsd-amd64-cgo), func Setregid(int, int) error +pkg syscall (netbsd-amd64-cgo), func Setreuid(int, int) error +pkg syscall (netbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-amd64-cgo), func Setsid() (int, error) +pkg syscall (netbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-amd64-cgo), func Settimeofday(*Timeval) error +pkg syscall (netbsd-amd64-cgo), func Setuid(int) error +pkg syscall (netbsd-amd64-cgo), func Shutdown(int, int) error +pkg syscall (netbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-amd64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-amd64-cgo), func Stat(string, *Stat_t) error +pkg syscall (netbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-amd64-cgo), func Sync() error +pkg syscall (netbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-amd64-cgo), func Sysctl(string) (string, error) +pkg syscall (netbsd-amd64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-amd64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-amd64-cgo), func Truncate(string, int64) error +pkg syscall (netbsd-amd64-cgo), func Umask(int) int +pkg syscall (netbsd-amd64-cgo), func UnixRights(...int) []uint8 +pkg syscall (netbsd-amd64-cgo), func Unmount(string, int) error +pkg syscall (netbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-amd64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-amd64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-amd64-cgo), method (*Iovec) SetLen(int) +pkg syscall (netbsd-amd64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-amd64-cgo), type BpfInsn struct +pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-amd64-cgo), type BpfInsn struct, K uint32 +pkg syscall (netbsd-amd64-cgo), type BpfProgram struct +pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type BpfStat struct +pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-amd64-cgo), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct +pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Sec int64 +pkg syscall (netbsd-amd64-cgo), type BpfTimeval struct, Usec int64 +pkg syscall (netbsd-amd64-cgo), type BpfVersion struct +pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-amd64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct +pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-amd64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-amd64-cgo), type Credential struct +pkg syscall (netbsd-amd64-cgo), type Credential struct, Gid uint32 +pkg syscall (netbsd-amd64-cgo), type Credential struct, Groups []uint32 +pkg syscall (netbsd-amd64-cgo), type Credential struct, Uid uint32 +pkg syscall (netbsd-amd64-cgo), type Dirent struct +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-amd64-cgo), type Dirent struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type FdSet struct +pkg syscall (netbsd-amd64-cgo), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-amd64-cgo), type Flock_t struct +pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Len int64 +pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Pid int32 +pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Start int64 +pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Type int16 +pkg syscall (netbsd-amd64-cgo), type Flock_t struct, Whence int16 +pkg syscall (netbsd-amd64-cgo), type Fsid struct +pkg syscall (netbsd-amd64-cgo), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct +pkg syscall (netbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct +pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-amd64-cgo), type IfData struct +pkg syscall (netbsd-amd64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Collisions uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-amd64-cgo), type IfData struct, Link_state int32 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Metric uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Mtu uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Noproto uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Obytes uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Opackets uint64 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-amd64-cgo), type IfData struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct +pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct +pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct +pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-amd64-cgo), type Iovec struct +pkg syscall (netbsd-amd64-cgo), type Iovec struct, Base *uint8 +pkg syscall (netbsd-amd64-cgo), type Iovec struct, Len uint64 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Data int64 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Kevent_t struct, Udata int64 +pkg syscall (netbsd-amd64-cgo), type Mclpool [0]uint8 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Flags int32 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct +pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-amd64-cgo), type Rlimit struct +pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-amd64-cgo), type Rlimit struct, Max uint64 +pkg syscall (netbsd-amd64-cgo), type RouteMessage struct +pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-amd64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-amd64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Idrss int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Inblock int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Isrss int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Majflt int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Minflt int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nswap int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Oublock int64 +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Stime Timeval +pkg syscall (netbsd-amd64-cgo), type Rusage struct, Utime Timeval +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct +pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-amd64-cgo), type Stat_t struct +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Size int64 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-amd64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-amd64-cgo), type Statfs_t [0]uint8 +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-amd64-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-amd64-cgo), type Timespec struct, Nsec int64 +pkg syscall (netbsd-amd64-cgo), type Timespec struct, Sec int64 +pkg syscall (netbsd-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-amd64-cgo), type Timeval struct, Sec int64 +pkg syscall (netbsd-amd64-cgo), type Timeval struct, Usec int32 +pkg syscall (netbsd-amd64-cgo), type WaitStatus uint32 +pkg syscall (netbsd-amd64-cgo), var Stderr int +pkg syscall (netbsd-amd64-cgo), var Stdin int +pkg syscall (netbsd-amd64-cgo), var Stdout int +pkg syscall (netbsd-arm), const AF_APPLETALK ideal-int +pkg syscall (netbsd-arm), const AF_ARP ideal-int +pkg syscall (netbsd-arm), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-arm), const AF_CCITT ideal-int +pkg syscall (netbsd-arm), const AF_CHAOS ideal-int +pkg syscall (netbsd-arm), const AF_CNT ideal-int +pkg syscall (netbsd-arm), const AF_COIP ideal-int +pkg syscall (netbsd-arm), const AF_DATAKIT ideal-int +pkg syscall (netbsd-arm), const AF_DECnet ideal-int +pkg syscall (netbsd-arm), const AF_DLI ideal-int +pkg syscall (netbsd-arm), const AF_E164 ideal-int +pkg syscall (netbsd-arm), const AF_ECMA ideal-int +pkg syscall (netbsd-arm), const AF_HYLINK ideal-int +pkg syscall (netbsd-arm), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-arm), const AF_IMPLINK ideal-int +pkg syscall (netbsd-arm), const AF_IPX ideal-int +pkg syscall (netbsd-arm), const AF_ISDN ideal-int +pkg syscall (netbsd-arm), const AF_ISO ideal-int +pkg syscall (netbsd-arm), const AF_LAT ideal-int +pkg syscall (netbsd-arm), const AF_LINK ideal-int +pkg syscall (netbsd-arm), const AF_LOCAL ideal-int +pkg syscall (netbsd-arm), const AF_MAX ideal-int +pkg syscall (netbsd-arm), const AF_MPLS ideal-int +pkg syscall (netbsd-arm), const AF_NATM ideal-int +pkg syscall (netbsd-arm), const AF_NS ideal-int +pkg syscall (netbsd-arm), const AF_OROUTE ideal-int +pkg syscall (netbsd-arm), const AF_OSI ideal-int +pkg syscall (netbsd-arm), const AF_PUP ideal-int +pkg syscall (netbsd-arm), const AF_ROUTE ideal-int +pkg syscall (netbsd-arm), const AF_SNA ideal-int +pkg syscall (netbsd-arm), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-arm), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-arm), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-arm), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-arm), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-arm), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-arm), const B0 ideal-int +pkg syscall (netbsd-arm), const B110 ideal-int +pkg syscall (netbsd-arm), const B115200 ideal-int +pkg syscall (netbsd-arm), const B1200 ideal-int +pkg syscall (netbsd-arm), const B134 ideal-int +pkg syscall (netbsd-arm), const B14400 ideal-int +pkg syscall (netbsd-arm), const B150 ideal-int +pkg syscall (netbsd-arm), const B1800 ideal-int +pkg syscall (netbsd-arm), const B19200 ideal-int +pkg syscall (netbsd-arm), const B200 ideal-int +pkg syscall (netbsd-arm), const B230400 ideal-int +pkg syscall (netbsd-arm), const B2400 ideal-int +pkg syscall (netbsd-arm), const B28800 ideal-int +pkg syscall (netbsd-arm), const B300 ideal-int +pkg syscall (netbsd-arm), const B38400 ideal-int +pkg syscall (netbsd-arm), const B460800 ideal-int +pkg syscall (netbsd-arm), const B4800 ideal-int +pkg syscall (netbsd-arm), const B50 ideal-int +pkg syscall (netbsd-arm), const B57600 ideal-int +pkg syscall (netbsd-arm), const B600 ideal-int +pkg syscall (netbsd-arm), const B7200 ideal-int +pkg syscall (netbsd-arm), const B75 ideal-int +pkg syscall (netbsd-arm), const B76800 ideal-int +pkg syscall (netbsd-arm), const B921600 ideal-int +pkg syscall (netbsd-arm), const B9600 ideal-int +pkg syscall (netbsd-arm), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-arm), const BIOCFLUSH ideal-int +pkg syscall (netbsd-arm), const BIOCGBLEN ideal-int +pkg syscall (netbsd-arm), const BIOCGDLT ideal-int +pkg syscall (netbsd-arm), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-arm), const BIOCGETIF ideal-int +pkg syscall (netbsd-arm), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-arm), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-arm), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-arm), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-arm), const BIOCGSTATS ideal-int +pkg syscall (netbsd-arm), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-arm), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-arm), const BIOCPROMISC ideal-int +pkg syscall (netbsd-arm), const BIOCSBLEN ideal-int +pkg syscall (netbsd-arm), const BIOCSDLT ideal-int +pkg syscall (netbsd-arm), const BIOCSETF ideal-int +pkg syscall (netbsd-arm), const BIOCSETIF ideal-int +pkg syscall (netbsd-arm), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-arm), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-arm), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-arm), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-arm), const BIOCSTCPF ideal-int +pkg syscall (netbsd-arm), const BIOCSUDPF ideal-int +pkg syscall (netbsd-arm), const BIOCVERSION ideal-int +pkg syscall (netbsd-arm), const BPF_A ideal-int +pkg syscall (netbsd-arm), const BPF_ABS ideal-int +pkg syscall (netbsd-arm), const BPF_ADD ideal-int +pkg syscall (netbsd-arm), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-arm), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-arm), const BPF_ALU ideal-int +pkg syscall (netbsd-arm), const BPF_AND ideal-int +pkg syscall (netbsd-arm), const BPF_B ideal-int +pkg syscall (netbsd-arm), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-arm), const BPF_DIV ideal-int +pkg syscall (netbsd-arm), const BPF_H ideal-int +pkg syscall (netbsd-arm), const BPF_IMM ideal-int +pkg syscall (netbsd-arm), const BPF_IND ideal-int +pkg syscall (netbsd-arm), const BPF_JA ideal-int +pkg syscall (netbsd-arm), const BPF_JEQ ideal-int +pkg syscall (netbsd-arm), const BPF_JGE ideal-int +pkg syscall (netbsd-arm), const BPF_JGT ideal-int +pkg syscall (netbsd-arm), const BPF_JMP ideal-int +pkg syscall (netbsd-arm), const BPF_JSET ideal-int +pkg syscall (netbsd-arm), const BPF_K ideal-int +pkg syscall (netbsd-arm), const BPF_LD ideal-int +pkg syscall (netbsd-arm), const BPF_LDX ideal-int +pkg syscall (netbsd-arm), const BPF_LEN ideal-int +pkg syscall (netbsd-arm), const BPF_LSH ideal-int +pkg syscall (netbsd-arm), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-arm), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-arm), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-arm), const BPF_MEM ideal-int +pkg syscall (netbsd-arm), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-arm), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-arm), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-arm), const BPF_MISC ideal-int +pkg syscall (netbsd-arm), const BPF_MSH ideal-int +pkg syscall (netbsd-arm), const BPF_MUL ideal-int +pkg syscall (netbsd-arm), const BPF_NEG ideal-int +pkg syscall (netbsd-arm), const BPF_OR ideal-int +pkg syscall (netbsd-arm), const BPF_RELEASE ideal-int +pkg syscall (netbsd-arm), const BPF_RET ideal-int +pkg syscall (netbsd-arm), const BPF_RSH ideal-int +pkg syscall (netbsd-arm), const BPF_ST ideal-int +pkg syscall (netbsd-arm), const BPF_STX ideal-int +pkg syscall (netbsd-arm), const BPF_SUB ideal-int +pkg syscall (netbsd-arm), const BPF_TAX ideal-int +pkg syscall (netbsd-arm), const BPF_TXA ideal-int +pkg syscall (netbsd-arm), const BPF_W ideal-int +pkg syscall (netbsd-arm), const BPF_X ideal-int +pkg syscall (netbsd-arm), const BRKINT ideal-int +pkg syscall (netbsd-arm), const CFLUSH ideal-int +pkg syscall (netbsd-arm), const CLOCAL ideal-int +pkg syscall (netbsd-arm), const CREAD ideal-int +pkg syscall (netbsd-arm), const CS5 ideal-int +pkg syscall (netbsd-arm), const CS6 ideal-int +pkg syscall (netbsd-arm), const CS7 ideal-int +pkg syscall (netbsd-arm), const CS8 ideal-int +pkg syscall (netbsd-arm), const CSIZE ideal-int +pkg syscall (netbsd-arm), const CSTART ideal-int +pkg syscall (netbsd-arm), const CSTATUS ideal-int +pkg syscall (netbsd-arm), const CSTOP ideal-int +pkg syscall (netbsd-arm), const CSTOPB ideal-int +pkg syscall (netbsd-arm), const CSUSP ideal-int +pkg syscall (netbsd-arm), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-arm), const CTL_NET ideal-int +pkg syscall (netbsd-arm), const CTL_QUERY ideal-int +pkg syscall (netbsd-arm), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-arm), const DLT_A429 ideal-int +pkg syscall (netbsd-arm), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-arm), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-arm), const DLT_AOS ideal-int +pkg syscall (netbsd-arm), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-arm), const DLT_ARCNET ideal-int +pkg syscall (netbsd-arm), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-arm), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-arm), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-arm), const DLT_AURORA ideal-int +pkg syscall (netbsd-arm), const DLT_AX25 ideal-int +pkg syscall (netbsd-arm), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-arm), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-arm), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-arm), const DLT_CAN20B ideal-int +pkg syscall (netbsd-arm), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-arm), const DLT_CHAOS ideal-int +pkg syscall (netbsd-arm), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-arm), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-arm), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-arm), const DLT_DECT ideal-int +pkg syscall (netbsd-arm), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-arm), const DLT_ECONET ideal-int +pkg syscall (netbsd-arm), const DLT_EN10MB ideal-int +pkg syscall (netbsd-arm), const DLT_EN3MB ideal-int +pkg syscall (netbsd-arm), const DLT_ENC ideal-int +pkg syscall (netbsd-arm), const DLT_ERF ideal-int +pkg syscall (netbsd-arm), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-arm), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-arm), const DLT_FC_2 ideal-int +pkg syscall (netbsd-arm), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-arm), const DLT_FDDI ideal-int +pkg syscall (netbsd-arm), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-arm), const DLT_FRELAY ideal-int +pkg syscall (netbsd-arm), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-arm), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-arm), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-arm), const DLT_GPF_F ideal-int +pkg syscall (netbsd-arm), const DLT_GPF_T ideal-int +pkg syscall (netbsd-arm), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-arm), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-arm), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-arm), const DLT_HDLC ideal-int +pkg syscall (netbsd-arm), const DLT_HHDLC ideal-int +pkg syscall (netbsd-arm), const DLT_HIPPI ideal-int +pkg syscall (netbsd-arm), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-arm), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-arm), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-arm), const DLT_IPMB ideal-int +pkg syscall (netbsd-arm), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-arm), const DLT_IPNET ideal-int +pkg syscall (netbsd-arm), const DLT_IPV4 ideal-int +pkg syscall (netbsd-arm), const DLT_IPV6 ideal-int +pkg syscall (netbsd-arm), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-arm), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-arm), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-arm), const DLT_LAPD ideal-int +pkg syscall (netbsd-arm), const DLT_LIN ideal-int +pkg syscall (netbsd-arm), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-arm), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-arm), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-arm), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-arm), const DLT_LOOP ideal-int +pkg syscall (netbsd-arm), const DLT_LTALK ideal-int +pkg syscall (netbsd-arm), const DLT_MFR ideal-int +pkg syscall (netbsd-arm), const DLT_MOST ideal-int +pkg syscall (netbsd-arm), const DLT_MPLS ideal-int +pkg syscall (netbsd-arm), const DLT_MTP2 ideal-int +pkg syscall (netbsd-arm), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-arm), const DLT_MTP3 ideal-int +pkg syscall (netbsd-arm), const DLT_NULL ideal-int +pkg syscall (netbsd-arm), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-arm), const DLT_PFLOG ideal-int +pkg syscall (netbsd-arm), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-arm), const DLT_PPI ideal-int +pkg syscall (netbsd-arm), const DLT_PPP ideal-int +pkg syscall (netbsd-arm), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-arm), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-arm), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-arm), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-arm), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-arm), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-arm), const DLT_PRONET ideal-int +pkg syscall (netbsd-arm), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-arm), const DLT_RAW ideal-int +pkg syscall (netbsd-arm), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-arm), const DLT_RIO ideal-int +pkg syscall (netbsd-arm), const DLT_SCCP ideal-int +pkg syscall (netbsd-arm), const DLT_SITA ideal-int +pkg syscall (netbsd-arm), const DLT_SLIP ideal-int +pkg syscall (netbsd-arm), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-arm), const DLT_SUNATM ideal-int +pkg syscall (netbsd-arm), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-arm), const DLT_TZSP ideal-int +pkg syscall (netbsd-arm), const DLT_USB ideal-int +pkg syscall (netbsd-arm), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-arm), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-arm), const DLT_WIHART ideal-int +pkg syscall (netbsd-arm), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-arm), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-arm), const DT_BLK ideal-int +pkg syscall (netbsd-arm), const DT_CHR ideal-int +pkg syscall (netbsd-arm), const DT_DIR ideal-int +pkg syscall (netbsd-arm), const DT_FIFO ideal-int +pkg syscall (netbsd-arm), const DT_LNK ideal-int +pkg syscall (netbsd-arm), const DT_REG ideal-int +pkg syscall (netbsd-arm), const DT_SOCK ideal-int +pkg syscall (netbsd-arm), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-arm), const DT_WHT ideal-int +pkg syscall (netbsd-arm), const EAUTH Errno +pkg syscall (netbsd-arm), const EBADMSG Errno +pkg syscall (netbsd-arm), const EBADRPC Errno +pkg syscall (netbsd-arm), const ECHO ideal-int +pkg syscall (netbsd-arm), const ECHOCTL ideal-int +pkg syscall (netbsd-arm), const ECHOE ideal-int +pkg syscall (netbsd-arm), const ECHOK ideal-int +pkg syscall (netbsd-arm), const ECHOKE ideal-int +pkg syscall (netbsd-arm), const ECHONL ideal-int +pkg syscall (netbsd-arm), const ECHOPRT ideal-int +pkg syscall (netbsd-arm), const EFTYPE Errno +pkg syscall (netbsd-arm), const ELAST Errno +pkg syscall (netbsd-arm), const EMULTIHOP Errno +pkg syscall (netbsd-arm), const EMUL_LINUX ideal-int +pkg syscall (netbsd-arm), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-arm), const EMUL_MAXID ideal-int +pkg syscall (netbsd-arm), const ENEEDAUTH Errno +pkg syscall (netbsd-arm), const ENOATTR Errno +pkg syscall (netbsd-arm), const ENODATA Errno +pkg syscall (netbsd-arm), const ENOLINK Errno +pkg syscall (netbsd-arm), const ENOSR Errno +pkg syscall (netbsd-arm), const ENOSTR Errno +pkg syscall (netbsd-arm), const EPROCLIM Errno +pkg syscall (netbsd-arm), const EPROCUNAVAIL Errno +pkg syscall (netbsd-arm), const EPROGMISMATCH Errno +pkg syscall (netbsd-arm), const EPROGUNAVAIL Errno +pkg syscall (netbsd-arm), const EPROTO Errno +pkg syscall (netbsd-arm), const ERPCMISMATCH Errno +pkg syscall (netbsd-arm), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-arm), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-arm), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-arm), const ETHERMIN ideal-int +pkg syscall (netbsd-arm), const ETHERMTU ideal-int +pkg syscall (netbsd-arm), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-arm), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-arm), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-arm), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-arm), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-arm), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-arm), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm), const ETIME Errno +pkg syscall (netbsd-arm), const EVFILT_AIO ideal-int +pkg syscall (netbsd-arm), const EVFILT_PROC ideal-int +pkg syscall (netbsd-arm), const EVFILT_READ ideal-int +pkg syscall (netbsd-arm), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-arm), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-arm), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-arm), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-arm), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-arm), const EV_ADD ideal-int +pkg syscall (netbsd-arm), const EV_CLEAR ideal-int +pkg syscall (netbsd-arm), const EV_DELETE ideal-int +pkg syscall (netbsd-arm), const EV_DISABLE ideal-int +pkg syscall (netbsd-arm), const EV_ENABLE ideal-int +pkg syscall (netbsd-arm), const EV_EOF ideal-int +pkg syscall (netbsd-arm), const EV_ERROR ideal-int +pkg syscall (netbsd-arm), const EV_FLAG1 ideal-int +pkg syscall (netbsd-arm), const EV_ONESHOT ideal-int +pkg syscall (netbsd-arm), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-arm), const EXTA ideal-int +pkg syscall (netbsd-arm), const EXTB ideal-int +pkg syscall (netbsd-arm), const EXTPROC ideal-int +pkg syscall (netbsd-arm), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-arm), const FD_SETSIZE ideal-int +pkg syscall (netbsd-arm), const FLUSHO ideal-int +pkg syscall (netbsd-arm), const F_CLOSEM ideal-int +pkg syscall (netbsd-arm), const F_DUPFD ideal-int +pkg syscall (netbsd-arm), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-arm), const F_FSCTL ideal-int +pkg syscall (netbsd-arm), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-arm), const F_FSIN ideal-int +pkg syscall (netbsd-arm), const F_FSINOUT ideal-int +pkg syscall (netbsd-arm), const F_FSOUT ideal-int +pkg syscall (netbsd-arm), const F_FSPRIV ideal-int +pkg syscall (netbsd-arm), const F_FSVOID ideal-int +pkg syscall (netbsd-arm), const F_GETFD ideal-int +pkg syscall (netbsd-arm), const F_GETFL ideal-int +pkg syscall (netbsd-arm), const F_GETLK ideal-int +pkg syscall (netbsd-arm), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm), const F_GETOWN ideal-int +pkg syscall (netbsd-arm), const F_MAXFD ideal-int +pkg syscall (netbsd-arm), const F_OK ideal-int +pkg syscall (netbsd-arm), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-arm), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-arm), const F_RDLCK ideal-int +pkg syscall (netbsd-arm), const F_SETFD ideal-int +pkg syscall (netbsd-arm), const F_SETFL ideal-int +pkg syscall (netbsd-arm), const F_SETLK ideal-int +pkg syscall (netbsd-arm), const F_SETLKW ideal-int +pkg syscall (netbsd-arm), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm), const F_SETOWN ideal-int +pkg syscall (netbsd-arm), const F_UNLCK ideal-int +pkg syscall (netbsd-arm), const F_WRLCK ideal-int +pkg syscall (netbsd-arm), const HUPCL ideal-int +pkg syscall (netbsd-arm), const ICANON ideal-int +pkg syscall (netbsd-arm), const ICMP6_FILTER = 18 +pkg syscall (netbsd-arm), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-arm), const ICRNL ideal-int +pkg syscall (netbsd-arm), const IEXTEN ideal-int +pkg syscall (netbsd-arm), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-arm), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-arm), const IFA_ROUTE ideal-int +pkg syscall (netbsd-arm), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-arm), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-arm), const IFF_DEBUG ideal-int +pkg syscall (netbsd-arm), const IFF_LINK0 ideal-int +pkg syscall (netbsd-arm), const IFF_LINK1 ideal-int +pkg syscall (netbsd-arm), const IFF_LINK2 ideal-int +pkg syscall (netbsd-arm), const IFF_NOARP ideal-int +pkg syscall (netbsd-arm), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-arm), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-arm), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-arm), const IFF_PROMISC ideal-int +pkg syscall (netbsd-arm), const IFF_RUNNING ideal-int +pkg syscall (netbsd-arm), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-arm), const IFNAMSIZ ideal-int +pkg syscall (netbsd-arm), const IFT_1822 ideal-int +pkg syscall (netbsd-arm), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-arm), const IFT_AAL2 ideal-int +pkg syscall (netbsd-arm), const IFT_AAL5 ideal-int +pkg syscall (netbsd-arm), const IFT_ADSL ideal-int +pkg syscall (netbsd-arm), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-arm), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-arm), const IFT_ARAP ideal-int +pkg syscall (netbsd-arm), const IFT_ARCNET ideal-int +pkg syscall (netbsd-arm), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-arm), const IFT_ASYNC ideal-int +pkg syscall (netbsd-arm), const IFT_ATM ideal-int +pkg syscall (netbsd-arm), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-arm), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-arm), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-arm), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-arm), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-arm), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-arm), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-arm), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-arm), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-arm), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-arm), const IFT_BSC ideal-int +pkg syscall (netbsd-arm), const IFT_CARP ideal-int +pkg syscall (netbsd-arm), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-arm), const IFT_CEPT ideal-int +pkg syscall (netbsd-arm), const IFT_CES ideal-int +pkg syscall (netbsd-arm), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_CNR ideal-int +pkg syscall (netbsd-arm), const IFT_COFFEE ideal-int +pkg syscall (netbsd-arm), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-arm), const IFT_DCN ideal-int +pkg syscall (netbsd-arm), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-arm), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_DLSW ideal-int +pkg syscall (netbsd-arm), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_DS0 ideal-int +pkg syscall (netbsd-arm), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-arm), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-arm), const IFT_DS3 ideal-int +pkg syscall (netbsd-arm), const IFT_DTM ideal-int +pkg syscall (netbsd-arm), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-arm), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-arm), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-arm), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_ECONET ideal-int +pkg syscall (netbsd-arm), const IFT_EON ideal-int +pkg syscall (netbsd-arm), const IFT_EPLRS ideal-int +pkg syscall (netbsd-arm), const IFT_ESCON ideal-int +pkg syscall (netbsd-arm), const IFT_ETHER ideal-int +pkg syscall (netbsd-arm), const IFT_FAITH ideal-int +pkg syscall (netbsd-arm), const IFT_FAST ideal-int +pkg syscall (netbsd-arm), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-arm), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-arm), const IFT_FDDI ideal-int +pkg syscall (netbsd-arm), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-arm), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-arm), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-arm), const IFT_FRELAY ideal-int +pkg syscall (netbsd-arm), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-arm), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-arm), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-arm), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-arm), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-arm), const IFT_GIF ideal-int +pkg syscall (netbsd-arm), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-arm), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-arm), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-arm), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-arm), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-arm), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-arm), const IFT_HDLC ideal-int +pkg syscall (netbsd-arm), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-arm), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-arm), const IFT_HIPPI ideal-int +pkg syscall (netbsd-arm), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-arm), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-arm), const IFT_HSSI ideal-int +pkg syscall (netbsd-arm), const IFT_HY ideal-int +pkg syscall (netbsd-arm), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-arm), const IFT_IDSL ideal-int +pkg syscall (netbsd-arm), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-arm), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-arm), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-arm), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-arm), const IFT_IFGSN ideal-int +pkg syscall (netbsd-arm), const IFT_IMT ideal-int +pkg syscall (netbsd-arm), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-arm), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-arm), const IFT_IP ideal-int +pkg syscall (netbsd-arm), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-arm), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-arm), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-arm), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-arm), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-arm), const IFT_ISDN ideal-int +pkg syscall (netbsd-arm), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-arm), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-arm), const IFT_ISDNS ideal-int +pkg syscall (netbsd-arm), const IFT_ISDNU ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-arm), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-arm), const IFT_ISUP ideal-int +pkg syscall (netbsd-arm), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-arm), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-arm), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-arm), const IFT_LAPB ideal-int +pkg syscall (netbsd-arm), const IFT_LAPD ideal-int +pkg syscall (netbsd-arm), const IFT_LAPF ideal-int +pkg syscall (netbsd-arm), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-arm), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-arm), const IFT_LOOP ideal-int +pkg syscall (netbsd-arm), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-arm), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-arm), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-arm), const IFT_MODEM ideal-int +pkg syscall (netbsd-arm), const IFT_MPC ideal-int +pkg syscall (netbsd-arm), const IFT_MPLS ideal-int +pkg syscall (netbsd-arm), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-arm), const IFT_MSDSL ideal-int +pkg syscall (netbsd-arm), const IFT_MVL ideal-int +pkg syscall (netbsd-arm), const IFT_MYRINET ideal-int +pkg syscall (netbsd-arm), const IFT_NFAS ideal-int +pkg syscall (netbsd-arm), const IFT_NSIP ideal-int +pkg syscall (netbsd-arm), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-arm), const IFT_OTHER ideal-int +pkg syscall (netbsd-arm), const IFT_P10 ideal-int +pkg syscall (netbsd-arm), const IFT_P80 ideal-int +pkg syscall (netbsd-arm), const IFT_PARA ideal-int +pkg syscall (netbsd-arm), const IFT_PFLOG ideal-int +pkg syscall (netbsd-arm), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-arm), const IFT_PLC ideal-int +pkg syscall (netbsd-arm), const IFT_PON155 ideal-int +pkg syscall (netbsd-arm), const IFT_PON622 ideal-int +pkg syscall (netbsd-arm), const IFT_POS ideal-int +pkg syscall (netbsd-arm), const IFT_PPP ideal-int +pkg syscall (netbsd-arm), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-arm), const IFT_PROPATM ideal-int +pkg syscall (netbsd-arm), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-arm), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-arm), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-arm), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-arm), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-arm), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-arm), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-arm), const IFT_PVC ideal-int +pkg syscall (netbsd-arm), const IFT_Q2931 ideal-int +pkg syscall (netbsd-arm), const IFT_QLLC ideal-int +pkg syscall (netbsd-arm), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-arm), const IFT_RADSL ideal-int +pkg syscall (netbsd-arm), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-arm), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-arm), const IFT_RS232 ideal-int +pkg syscall (netbsd-arm), const IFT_RSRB ideal-int +pkg syscall (netbsd-arm), const IFT_SDLC ideal-int +pkg syscall (netbsd-arm), const IFT_SDSL ideal-int +pkg syscall (netbsd-arm), const IFT_SHDSL ideal-int +pkg syscall (netbsd-arm), const IFT_SIP ideal-int +pkg syscall (netbsd-arm), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-arm), const IFT_SIPTG ideal-int +pkg syscall (netbsd-arm), const IFT_SLIP ideal-int +pkg syscall (netbsd-arm), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-arm), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-arm), const IFT_SONET ideal-int +pkg syscall (netbsd-arm), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-arm), const IFT_SONETVT ideal-int +pkg syscall (netbsd-arm), const IFT_SRP ideal-int +pkg syscall (netbsd-arm), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-arm), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-arm), const IFT_STARLAN ideal-int +pkg syscall (netbsd-arm), const IFT_STF ideal-int +pkg syscall (netbsd-arm), const IFT_T1 ideal-int +pkg syscall (netbsd-arm), const IFT_TDLC ideal-int +pkg syscall (netbsd-arm), const IFT_TELINK ideal-int +pkg syscall (netbsd-arm), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-arm), const IFT_TR008 ideal-int +pkg syscall (netbsd-arm), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-arm), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-arm), const IFT_ULTRA ideal-int +pkg syscall (netbsd-arm), const IFT_USB ideal-int +pkg syscall (netbsd-arm), const IFT_V11 ideal-int +pkg syscall (netbsd-arm), const IFT_V35 ideal-int +pkg syscall (netbsd-arm), const IFT_V36 ideal-int +pkg syscall (netbsd-arm), const IFT_V37 ideal-int +pkg syscall (netbsd-arm), const IFT_VDSL ideal-int +pkg syscall (netbsd-arm), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-arm), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-arm), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-arm), const IFT_X213 ideal-int +pkg syscall (netbsd-arm), const IFT_X25 ideal-int +pkg syscall (netbsd-arm), const IFT_X25DDN ideal-int +pkg syscall (netbsd-arm), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-arm), const IFT_X25MLP ideal-int +pkg syscall (netbsd-arm), const IFT_X25PLE ideal-int +pkg syscall (netbsd-arm), const IFT_XETHER ideal-int +pkg syscall (netbsd-arm), const IGNBRK ideal-int +pkg syscall (netbsd-arm), const IGNCR ideal-int +pkg syscall (netbsd-arm), const IGNPAR ideal-int +pkg syscall (netbsd-arm), const IMAXBEL ideal-int +pkg syscall (netbsd-arm), const INLCR ideal-int +pkg syscall (netbsd-arm), const INPCK ideal-int +pkg syscall (netbsd-arm), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-arm), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-arm), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-arm), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-arm), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-arm), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-arm), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-arm), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-arm), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-arm), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-arm), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-arm), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-arm), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-arm), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-arm), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-arm), const IPPROTO_AH ideal-int +pkg syscall (netbsd-arm), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-arm), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-arm), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_EON ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-arm), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-arm), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-arm), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-arm), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-arm), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-arm), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-arm), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-arm), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-arm), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-arm), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-arm), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_TP ideal-int +pkg syscall (netbsd-arm), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-arm), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-arm), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-arm), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-arm), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-arm), const IPV6_FAITH ideal-int +pkg syscall (netbsd-arm), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-arm), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-arm), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-arm), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-arm), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-arm), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-arm), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-arm), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-arm), const IPV6_MMTU ideal-int +pkg syscall (netbsd-arm), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-arm), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-arm), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-arm), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-arm), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-arm), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-arm), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-arm), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-arm), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-arm), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-arm), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-arm), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-arm), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-arm), const IPV6_VERSION ideal-int +pkg syscall (netbsd-arm), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-arm), const IP_DF ideal-int +pkg syscall (netbsd-arm), const IP_EF ideal-int +pkg syscall (netbsd-arm), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-arm), const IP_HDRINCL ideal-int +pkg syscall (netbsd-arm), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-arm), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-arm), const IP_MF ideal-int +pkg syscall (netbsd-arm), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-arm), const IP_MINTTL ideal-int +pkg syscall (netbsd-arm), const IP_MSS ideal-int +pkg syscall (netbsd-arm), const IP_OFFMASK ideal-int +pkg syscall (netbsd-arm), const IP_OPTIONS ideal-int +pkg syscall (netbsd-arm), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-arm), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-arm), const IP_RECVIF ideal-int +pkg syscall (netbsd-arm), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-arm), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-arm), const IP_RECVTTL ideal-int +pkg syscall (netbsd-arm), const IP_RETOPTS ideal-int +pkg syscall (netbsd-arm), const IP_RF ideal-int +pkg syscall (netbsd-arm), const ISIG ideal-int +pkg syscall (netbsd-arm), const ISTRIP ideal-int +pkg syscall (netbsd-arm), const IXANY ideal-int +pkg syscall (netbsd-arm), const IXOFF ideal-int +pkg syscall (netbsd-arm), const IXON ideal-int +pkg syscall (netbsd-arm), const LOCK_EX ideal-int +pkg syscall (netbsd-arm), const LOCK_NB ideal-int +pkg syscall (netbsd-arm), const LOCK_SH ideal-int +pkg syscall (netbsd-arm), const LOCK_UN ideal-int +pkg syscall (netbsd-arm), const MSG_BCAST ideal-int +pkg syscall (netbsd-arm), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-arm), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-arm), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-arm), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-arm), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-arm), const MSG_EOR ideal-int +pkg syscall (netbsd-arm), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-arm), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-arm), const MSG_MCAST ideal-int +pkg syscall (netbsd-arm), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-arm), const MSG_NBIO ideal-int +pkg syscall (netbsd-arm), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-arm), const MSG_OOB ideal-int +pkg syscall (netbsd-arm), const MSG_PEEK ideal-int +pkg syscall (netbsd-arm), const MSG_TRUNC ideal-int +pkg syscall (netbsd-arm), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-arm), const MSG_WAITALL ideal-int +pkg syscall (netbsd-arm), const NAME_MAX ideal-int +pkg syscall (netbsd-arm), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-arm), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-arm), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-arm), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-arm), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-arm), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-arm), const NOFLSH ideal-int +pkg syscall (netbsd-arm), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-arm), const NOTE_CHILD ideal-int +pkg syscall (netbsd-arm), const NOTE_DELETE ideal-int +pkg syscall (netbsd-arm), const NOTE_EXEC ideal-int +pkg syscall (netbsd-arm), const NOTE_EXIT ideal-int +pkg syscall (netbsd-arm), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-arm), const NOTE_FORK ideal-int +pkg syscall (netbsd-arm), const NOTE_LINK ideal-int +pkg syscall (netbsd-arm), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-arm), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-arm), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-arm), const NOTE_RENAME ideal-int +pkg syscall (netbsd-arm), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-arm), const NOTE_TRACK ideal-int +pkg syscall (netbsd-arm), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-arm), const NOTE_WRITE ideal-int +pkg syscall (netbsd-arm), const OCRNL ideal-int +pkg syscall (netbsd-arm), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-arm), const ONLCR ideal-int +pkg syscall (netbsd-arm), const ONLRET ideal-int +pkg syscall (netbsd-arm), const ONOCR ideal-int +pkg syscall (netbsd-arm), const ONOEOT ideal-int +pkg syscall (netbsd-arm), const OPOST ideal-int +pkg syscall (netbsd-arm), const O_ACCMODE ideal-int +pkg syscall (netbsd-arm), const O_ALT_IO ideal-int +pkg syscall (netbsd-arm), const O_DIRECT ideal-int +pkg syscall (netbsd-arm), const O_DIRECTORY ideal-int +pkg syscall (netbsd-arm), const O_DSYNC ideal-int +pkg syscall (netbsd-arm), const O_EXLOCK ideal-int +pkg syscall (netbsd-arm), const O_FSYNC ideal-int +pkg syscall (netbsd-arm), const O_NDELAY ideal-int +pkg syscall (netbsd-arm), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-arm), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm), const O_RSYNC ideal-int +pkg syscall (netbsd-arm), const O_SHLOCK ideal-int +pkg syscall (netbsd-arm), const PARENB ideal-int +pkg syscall (netbsd-arm), const PARMRK ideal-int +pkg syscall (netbsd-arm), const PARODD ideal-int +pkg syscall (netbsd-arm), const PENDIN ideal-int +pkg syscall (netbsd-arm), const PRIO_PGRP = 1 +pkg syscall (netbsd-arm), const PRIO_PGRP ideal-int +pkg syscall (netbsd-arm), const PRIO_PROCESS = 0 +pkg syscall (netbsd-arm), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-arm), const PRIO_USER = 2 +pkg syscall (netbsd-arm), const PRIO_USER ideal-int +pkg syscall (netbsd-arm), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-arm), const PTRACE_CONT ideal-int +pkg syscall (netbsd-arm), const PTRACE_KILL ideal-int +pkg syscall (netbsd-arm), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-arm), const RLIMIT_AS ideal-int +pkg syscall (netbsd-arm), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-arm), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-arm), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-arm), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-arm), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-arm), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-arm), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-arm), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-arm), const RTAX_BRD ideal-int +pkg syscall (netbsd-arm), const RTAX_DST ideal-int +pkg syscall (netbsd-arm), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-arm), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-arm), const RTAX_IFA ideal-int +pkg syscall (netbsd-arm), const RTAX_IFP ideal-int +pkg syscall (netbsd-arm), const RTAX_MAX ideal-int +pkg syscall (netbsd-arm), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-arm), const RTAX_TAG ideal-int +pkg syscall (netbsd-arm), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-arm), const RTA_BRD ideal-int +pkg syscall (netbsd-arm), const RTA_DST ideal-int +pkg syscall (netbsd-arm), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-arm), const RTA_GENMASK ideal-int +pkg syscall (netbsd-arm), const RTA_IFA ideal-int +pkg syscall (netbsd-arm), const RTA_IFP ideal-int +pkg syscall (netbsd-arm), const RTA_NETMASK ideal-int +pkg syscall (netbsd-arm), const RTA_TAG ideal-int +pkg syscall (netbsd-arm), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-arm), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-arm), const RTF_CLONED ideal-int +pkg syscall (netbsd-arm), const RTF_CLONING ideal-int +pkg syscall (netbsd-arm), const RTF_DONE ideal-int +pkg syscall (netbsd-arm), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-arm), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-arm), const RTF_HOST ideal-int +pkg syscall (netbsd-arm), const RTF_LLINFO ideal-int +pkg syscall (netbsd-arm), const RTF_MASK ideal-int +pkg syscall (netbsd-arm), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-arm), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-arm), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-arm), const RTF_REJECT ideal-int +pkg syscall (netbsd-arm), const RTF_SRC ideal-int +pkg syscall (netbsd-arm), const RTF_STATIC ideal-int +pkg syscall (netbsd-arm), const RTF_UP ideal-int +pkg syscall (netbsd-arm), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-arm), const RTM_ADD ideal-int +pkg syscall (netbsd-arm), const RTM_CHANGE ideal-int +pkg syscall (netbsd-arm), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-arm), const RTM_DELADDR ideal-int +pkg syscall (netbsd-arm), const RTM_DELETE ideal-int +pkg syscall (netbsd-arm), const RTM_GET ideal-int +pkg syscall (netbsd-arm), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-arm), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-arm), const RTM_IFINFO ideal-int +pkg syscall (netbsd-arm), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-arm), const RTM_LOCK ideal-int +pkg syscall (netbsd-arm), const RTM_LOSING ideal-int +pkg syscall (netbsd-arm), const RTM_MISS ideal-int +pkg syscall (netbsd-arm), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-arm), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-arm), const RTM_OLDADD ideal-int +pkg syscall (netbsd-arm), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-arm), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-arm), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-arm), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-arm), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-arm), const RTM_SETGATE ideal-int +pkg syscall (netbsd-arm), const RTM_VERSION ideal-int +pkg syscall (netbsd-arm), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-arm), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-arm), const RTV_MTU ideal-int +pkg syscall (netbsd-arm), const RTV_RPIPE ideal-int +pkg syscall (netbsd-arm), const RTV_RTT ideal-int +pkg syscall (netbsd-arm), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-arm), const RTV_SPIPE ideal-int +pkg syscall (netbsd-arm), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-arm), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-arm), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-arm), const SCM_CREDS ideal-int +pkg syscall (netbsd-arm), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-arm), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-arm), const SIGCHLD Signal +pkg syscall (netbsd-arm), const SIGCONT Signal +pkg syscall (netbsd-arm), const SIGEMT Signal +pkg syscall (netbsd-arm), const SIGINFO Signal +pkg syscall (netbsd-arm), const SIGIO Signal +pkg syscall (netbsd-arm), const SIGIOT Signal +pkg syscall (netbsd-arm), const SIGPROF Signal +pkg syscall (netbsd-arm), const SIGPWR Signal +pkg syscall (netbsd-arm), const SIGSTOP Signal +pkg syscall (netbsd-arm), const SIGSYS Signal +pkg syscall (netbsd-arm), const SIGTSTP Signal +pkg syscall (netbsd-arm), const SIGTTIN Signal +pkg syscall (netbsd-arm), const SIGTTOU Signal +pkg syscall (netbsd-arm), const SIGURG Signal +pkg syscall (netbsd-arm), const SIGUSR1 Signal +pkg syscall (netbsd-arm), const SIGUSR2 Signal +pkg syscall (netbsd-arm), const SIGVTALRM Signal +pkg syscall (netbsd-arm), const SIGWINCH Signal +pkg syscall (netbsd-arm), const SIGXCPU Signal +pkg syscall (netbsd-arm), const SIGXFSZ Signal +pkg syscall (netbsd-arm), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-arm), const SIOCADDRT ideal-int +pkg syscall (netbsd-arm), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCATMARK ideal-int +pkg syscall (netbsd-arm), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-arm), const SIOCDELRT ideal-int +pkg syscall (netbsd-arm), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-arm), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-arm), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-arm), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-arm), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-arm), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-arm), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-arm), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-arm), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-arm), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-arm), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-arm), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-arm), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-arm), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-arm), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-arm), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-arm), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-arm), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-arm), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-arm), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-arm), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-arm), const SIOCGPGRP ideal-int +pkg syscall (netbsd-arm), const SIOCGVH ideal-int +pkg syscall (netbsd-arm), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-arm), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-arm), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-arm), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-arm), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-arm), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-arm), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-arm), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-arm), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-arm), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-arm), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-arm), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-arm), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-arm), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-arm), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-arm), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-arm), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-arm), const SIOCSPGRP ideal-int +pkg syscall (netbsd-arm), const SIOCSVH ideal-int +pkg syscall (netbsd-arm), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-arm), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-arm), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-arm), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-arm), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm), const SOCK_RDM ideal-int +pkg syscall (netbsd-arm), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-arm), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-arm), const SO_DEBUG ideal-int +pkg syscall (netbsd-arm), const SO_ERROR ideal-int +pkg syscall (netbsd-arm), const SO_NOHEADER ideal-int +pkg syscall (netbsd-arm), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-arm), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-arm), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-arm), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-arm), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-arm), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-arm), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-arm), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-arm), const SO_TYPE ideal-int +pkg syscall (netbsd-arm), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-arm), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-arm), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-arm), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-arm), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-arm), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-arm), const SYS_ACCESS ideal-int +pkg syscall (netbsd-arm), const SYS_ACCT ideal-int +pkg syscall (netbsd-arm), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-arm), const SYS_BIND ideal-int +pkg syscall (netbsd-arm), const SYS_BREAK ideal-int +pkg syscall (netbsd-arm), const SYS_CHDIR ideal-int +pkg syscall (netbsd-arm), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-arm), const SYS_CHMOD ideal-int +pkg syscall (netbsd-arm), const SYS_CHOWN ideal-int +pkg syscall (netbsd-arm), const SYS_CHROOT ideal-int +pkg syscall (netbsd-arm), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-arm), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-arm), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-arm), const SYS_CLOSE ideal-int +pkg syscall (netbsd-arm), const SYS_CONNECT ideal-int +pkg syscall (netbsd-arm), const SYS_DUP ideal-int +pkg syscall (netbsd-arm), const SYS_DUP2 ideal-int +pkg syscall (netbsd-arm), const SYS_DUP3 ideal-int +pkg syscall (netbsd-arm), const SYS_EXECVE ideal-int +pkg syscall (netbsd-arm), const SYS_EXIT ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-arm), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-arm), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-arm), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-arm), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-arm), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-arm), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-arm), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-arm), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-arm), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-arm), const SYS_FCNTL ideal-int +pkg syscall (netbsd-arm), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-arm), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-arm), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-arm), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-arm), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_FLOCK ideal-int +pkg syscall (netbsd-arm), const SYS_FORK ideal-int +pkg syscall (netbsd-arm), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-arm), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_FSTAT ideal-int +pkg syscall (netbsd-arm), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-arm), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-arm), const SYS_FSYNC ideal-int +pkg syscall (netbsd-arm), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-arm), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-arm), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-arm), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-arm), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-arm), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-arm), const SYS_GETEGID ideal-int +pkg syscall (netbsd-arm), const SYS_GETEUID ideal-int +pkg syscall (netbsd-arm), const SYS_GETFH ideal-int +pkg syscall (netbsd-arm), const SYS_GETGID ideal-int +pkg syscall (netbsd-arm), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-arm), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-arm), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-arm), const SYS_GETPGID ideal-int +pkg syscall (netbsd-arm), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-arm), const SYS_GETPID ideal-int +pkg syscall (netbsd-arm), const SYS_GETPPID ideal-int +pkg syscall (netbsd-arm), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-arm), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-arm), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-arm), const SYS_GETSID ideal-int +pkg syscall (netbsd-arm), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-arm), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-arm), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm), const SYS_GETUID ideal-int +pkg syscall (netbsd-arm), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-arm), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_IOCTL ideal-int +pkg syscall (netbsd-arm), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-arm), const SYS_KEVENT ideal-int +pkg syscall (netbsd-arm), const SYS_KILL ideal-int +pkg syscall (netbsd-arm), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-arm), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-arm), const SYS_KTRACE ideal-int +pkg syscall (netbsd-arm), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-arm), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-arm), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-arm), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_LINK ideal-int +pkg syscall (netbsd-arm), const SYS_LINKAT ideal-int +pkg syscall (netbsd-arm), const SYS_LISTEN ideal-int +pkg syscall (netbsd-arm), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_LSEEK ideal-int +pkg syscall (netbsd-arm), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_LSTAT ideal-int +pkg syscall (netbsd-arm), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-arm), const SYS_MADVISE ideal-int +pkg syscall (netbsd-arm), const SYS_MINCORE ideal-int +pkg syscall (netbsd-arm), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-arm), const SYS_MKDIR ideal-int +pkg syscall (netbsd-arm), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-arm), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-arm), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-arm), const SYS_MKNOD ideal-int +pkg syscall (netbsd-arm), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-arm), const SYS_MLOCK ideal-int +pkg syscall (netbsd-arm), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-arm), const SYS_MMAP ideal-int +pkg syscall (netbsd-arm), const SYS_MODCTL ideal-int +pkg syscall (netbsd-arm), const SYS_MOUNT ideal-int +pkg syscall (netbsd-arm), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-arm), const SYS_MREMAP ideal-int +pkg syscall (netbsd-arm), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-arm), const SYS_MSGGET ideal-int +pkg syscall (netbsd-arm), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-arm), const SYS_MSGSND ideal-int +pkg syscall (netbsd-arm), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-arm), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-arm), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-arm), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-arm), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-arm), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-arm), const SYS_OPEN ideal-int +pkg syscall (netbsd-arm), const SYS_OPENAT ideal-int +pkg syscall (netbsd-arm), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-arm), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-arm), const SYS_PIPE ideal-int +pkg syscall (netbsd-arm), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-arm), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-arm), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-arm), const SYS_POLL ideal-int +pkg syscall (netbsd-arm), const SYS_POLLTS ideal-int +pkg syscall (netbsd-arm), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-arm), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-arm), const SYS_PREAD ideal-int +pkg syscall (netbsd-arm), const SYS_PREADV ideal-int +pkg syscall (netbsd-arm), const SYS_PROFIL ideal-int +pkg syscall (netbsd-arm), const SYS_PSELECT ideal-int +pkg syscall (netbsd-arm), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-arm), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-arm), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-arm), const SYS_PTRACE ideal-int +pkg syscall (netbsd-arm), const SYS_PWRITE ideal-int +pkg syscall (netbsd-arm), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-arm), const SYS_RASCTL ideal-int +pkg syscall (netbsd-arm), const SYS_READ ideal-int +pkg syscall (netbsd-arm), const SYS_READLINK ideal-int +pkg syscall (netbsd-arm), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-arm), const SYS_READV ideal-int +pkg syscall (netbsd-arm), const SYS_REBOOT ideal-int +pkg syscall (netbsd-arm), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-arm), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-arm), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-arm), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_RENAME ideal-int +pkg syscall (netbsd-arm), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-arm), const SYS_REVOKE ideal-int +pkg syscall (netbsd-arm), const SYS_RMDIR ideal-int +pkg syscall (netbsd-arm), const SYS_SBRK ideal-int +pkg syscall (netbsd-arm), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-arm), const SYS_SELECT ideal-int +pkg syscall (netbsd-arm), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-arm), const SYS_SEMGET ideal-int +pkg syscall (netbsd-arm), const SYS_SEMOP ideal-int +pkg syscall (netbsd-arm), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-arm), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-arm), const SYS_SENDTO ideal-int +pkg syscall (netbsd-arm), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-arm), const SYS_SETEGID ideal-int +pkg syscall (netbsd-arm), const SYS_SETEUID ideal-int +pkg syscall (netbsd-arm), const SYS_SETGID ideal-int +pkg syscall (netbsd-arm), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-arm), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-arm), const SYS_SETPGID ideal-int +pkg syscall (netbsd-arm), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-arm), const SYS_SETREGID ideal-int +pkg syscall (netbsd-arm), const SYS_SETREUID ideal-int +pkg syscall (netbsd-arm), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-arm), const SYS_SETSID ideal-int +pkg syscall (netbsd-arm), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-arm), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm), const SYS_SETUID ideal-int +pkg syscall (netbsd-arm), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-arm), const SYS_SHMAT ideal-int +pkg syscall (netbsd-arm), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-arm), const SYS_SHMDT ideal-int +pkg syscall (netbsd-arm), const SYS_SHMGET ideal-int +pkg syscall (netbsd-arm), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-arm), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-arm), const SYS_SOCKET ideal-int +pkg syscall (netbsd-arm), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-arm), const SYS_SSTK ideal-int +pkg syscall (netbsd-arm), const SYS_STAT ideal-int +pkg syscall (netbsd-arm), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-arm), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-arm), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-arm), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-arm), const SYS_SYNC ideal-int +pkg syscall (netbsd-arm), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-arm), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-arm), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-arm), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-arm), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-arm), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-arm), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-arm), const SYS_UMASK ideal-int +pkg syscall (netbsd-arm), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-arm), const SYS_UNLINK ideal-int +pkg syscall (netbsd-arm), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-arm), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-arm), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-arm), const SYS_UTIMES ideal-int +pkg syscall (netbsd-arm), const SYS_UTRACE ideal-int +pkg syscall (netbsd-arm), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-arm), const SYS_VADVISE ideal-int +pkg syscall (netbsd-arm), const SYS_VFORK ideal-int +pkg syscall (netbsd-arm), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-arm), const SYS_WRITE ideal-int +pkg syscall (netbsd-arm), const SYS_WRITEV ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-arm), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-arm), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-arm), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-arm), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-arm), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-arm), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-arm), const SYS___CLONE ideal-int +pkg syscall (netbsd-arm), const SYS___GETCWD ideal-int +pkg syscall (netbsd-arm), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-arm), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-arm), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-arm), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-arm), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-arm), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-arm), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-arm), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-arm), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-arm), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-arm), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-arm), const S_ARCH1 ideal-int +pkg syscall (netbsd-arm), const S_ARCH2 ideal-int +pkg syscall (netbsd-arm), const S_BLKSIZE ideal-int +pkg syscall (netbsd-arm), const S_IEXEC ideal-int +pkg syscall (netbsd-arm), const S_IFWHT ideal-int +pkg syscall (netbsd-arm), const S_IREAD ideal-int +pkg syscall (netbsd-arm), const S_IRGRP ideal-int +pkg syscall (netbsd-arm), const S_IROTH ideal-int +pkg syscall (netbsd-arm), const S_IRWXG ideal-int +pkg syscall (netbsd-arm), const S_IRWXO ideal-int +pkg syscall (netbsd-arm), const S_IRWXU ideal-int +pkg syscall (netbsd-arm), const S_ISTXT ideal-int +pkg syscall (netbsd-arm), const S_IWGRP ideal-int +pkg syscall (netbsd-arm), const S_IWOTH ideal-int +pkg syscall (netbsd-arm), const S_IWRITE ideal-int +pkg syscall (netbsd-arm), const S_IXGRP ideal-int +pkg syscall (netbsd-arm), const S_IXOTH ideal-int +pkg syscall (netbsd-arm), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-arm), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-arm), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-arm), const SizeofBpfStat ideal-int +pkg syscall (netbsd-arm), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-arm), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-arm), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-arm), const SizeofIPMreq ideal-int +pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-arm), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-arm), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-arm), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofIfData ideal-int +pkg syscall (netbsd-arm), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-arm), const SizeofLinger ideal-int +pkg syscall (netbsd-arm), const SizeofMsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-arm), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-arm), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-arm), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-arm), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-arm), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-arm), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-arm), const TCIFLUSH ideal-int +pkg syscall (netbsd-arm), const TCIOFLUSH ideal-int +pkg syscall (netbsd-arm), const TCOFLUSH ideal-int +pkg syscall (netbsd-arm), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-arm), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-arm), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-arm), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-arm), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-arm), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-arm), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-arm), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-arm), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-arm), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-arm), const TCP_MINMSS ideal-int +pkg syscall (netbsd-arm), const TCP_MSS ideal-int +pkg syscall (netbsd-arm), const TCSAFLUSH ideal-int +pkg syscall (netbsd-arm), const TIOCCBRK ideal-int +pkg syscall (netbsd-arm), const TIOCCDTR ideal-int +pkg syscall (netbsd-arm), const TIOCCONS ideal-int +pkg syscall (netbsd-arm), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-arm), const TIOCDRAIN ideal-int +pkg syscall (netbsd-arm), const TIOCEXCL ideal-int +pkg syscall (netbsd-arm), const TIOCEXT ideal-int +pkg syscall (netbsd-arm), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-arm), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-arm), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-arm), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-arm), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-arm), const TIOCFLUSH ideal-int +pkg syscall (netbsd-arm), const TIOCGETA ideal-int +pkg syscall (netbsd-arm), const TIOCGETD ideal-int +pkg syscall (netbsd-arm), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-arm), const TIOCGLINED ideal-int +pkg syscall (netbsd-arm), const TIOCGPGRP ideal-int +pkg syscall (netbsd-arm), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-arm), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-arm), const TIOCGSID ideal-int +pkg syscall (netbsd-arm), const TIOCGSIZE ideal-int +pkg syscall (netbsd-arm), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-arm), const TIOCMBIC ideal-int +pkg syscall (netbsd-arm), const TIOCMBIS ideal-int +pkg syscall (netbsd-arm), const TIOCMGET ideal-int +pkg syscall (netbsd-arm), const TIOCMSET ideal-int +pkg syscall (netbsd-arm), const TIOCM_CAR ideal-int +pkg syscall (netbsd-arm), const TIOCM_CD ideal-int +pkg syscall (netbsd-arm), const TIOCM_CTS ideal-int +pkg syscall (netbsd-arm), const TIOCM_DSR ideal-int +pkg syscall (netbsd-arm), const TIOCM_DTR ideal-int +pkg syscall (netbsd-arm), const TIOCM_LE ideal-int +pkg syscall (netbsd-arm), const TIOCM_RI ideal-int +pkg syscall (netbsd-arm), const TIOCM_RNG ideal-int +pkg syscall (netbsd-arm), const TIOCM_RTS ideal-int +pkg syscall (netbsd-arm), const TIOCM_SR ideal-int +pkg syscall (netbsd-arm), const TIOCM_ST ideal-int +pkg syscall (netbsd-arm), const TIOCNOTTY ideal-int +pkg syscall (netbsd-arm), const TIOCNXCL ideal-int +pkg syscall (netbsd-arm), const TIOCOUTQ ideal-int +pkg syscall (netbsd-arm), const TIOCPKT ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_START ideal-int +pkg syscall (netbsd-arm), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-arm), const TIOCPTMGET ideal-int +pkg syscall (netbsd-arm), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-arm), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-arm), const TIOCREMOTE ideal-int +pkg syscall (netbsd-arm), const TIOCSBRK ideal-int +pkg syscall (netbsd-arm), const TIOCSCTTY ideal-int +pkg syscall (netbsd-arm), const TIOCSDTR ideal-int +pkg syscall (netbsd-arm), const TIOCSETA ideal-int +pkg syscall (netbsd-arm), const TIOCSETAF ideal-int +pkg syscall (netbsd-arm), const TIOCSETAW ideal-int +pkg syscall (netbsd-arm), const TIOCSETD ideal-int +pkg syscall (netbsd-arm), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-arm), const TIOCSIG ideal-int +pkg syscall (netbsd-arm), const TIOCSLINED ideal-int +pkg syscall (netbsd-arm), const TIOCSPGRP ideal-int +pkg syscall (netbsd-arm), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-arm), const TIOCSSIZE ideal-int +pkg syscall (netbsd-arm), const TIOCSTART ideal-int +pkg syscall (netbsd-arm), const TIOCSTAT ideal-int +pkg syscall (netbsd-arm), const TIOCSTI ideal-int +pkg syscall (netbsd-arm), const TIOCSTOP ideal-int +pkg syscall (netbsd-arm), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-arm), const TIOCUCNTL ideal-int +pkg syscall (netbsd-arm), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-arm), const TOSTOP ideal-int +pkg syscall (netbsd-arm), const VDISCARD ideal-int +pkg syscall (netbsd-arm), const VDSUSP ideal-int +pkg syscall (netbsd-arm), const VEOF ideal-int +pkg syscall (netbsd-arm), const VEOL ideal-int +pkg syscall (netbsd-arm), const VEOL2 ideal-int +pkg syscall (netbsd-arm), const VERASE ideal-int +pkg syscall (netbsd-arm), const VINTR ideal-int +pkg syscall (netbsd-arm), const VKILL ideal-int +pkg syscall (netbsd-arm), const VLNEXT ideal-int +pkg syscall (netbsd-arm), const VMIN ideal-int +pkg syscall (netbsd-arm), const VQUIT ideal-int +pkg syscall (netbsd-arm), const VREPRINT ideal-int +pkg syscall (netbsd-arm), const VSTART ideal-int +pkg syscall (netbsd-arm), const VSTATUS ideal-int +pkg syscall (netbsd-arm), const VSTOP ideal-int +pkg syscall (netbsd-arm), const VSUSP ideal-int +pkg syscall (netbsd-arm), const VTIME ideal-int +pkg syscall (netbsd-arm), const VWERASE ideal-int +pkg syscall (netbsd-arm), const WALL ideal-int +pkg syscall (netbsd-arm), const WALLSIG ideal-int +pkg syscall (netbsd-arm), const WALTSIG ideal-int +pkg syscall (netbsd-arm), const WCLONE ideal-int +pkg syscall (netbsd-arm), const WCOREFLAG ideal-int +pkg syscall (netbsd-arm), const WNOHANG ideal-int +pkg syscall (netbsd-arm), const WNOWAIT ideal-int +pkg syscall (netbsd-arm), const WNOZOMBIE ideal-int +pkg syscall (netbsd-arm), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-arm), const WSTOPPED ideal-int +pkg syscall (netbsd-arm), const WUNTRACED ideal-int +pkg syscall (netbsd-arm), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-arm), func Access(string, uint32) error +pkg syscall (netbsd-arm), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-arm), func Bind(int, Sockaddr) error +pkg syscall (netbsd-arm), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-arm), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-arm), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-arm), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-arm), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-arm), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-arm), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-arm), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-arm), func CheckBpfVersion(int) error +pkg syscall (netbsd-arm), func Chflags(string, int) error +pkg syscall (netbsd-arm), func Chroot(string) error +pkg syscall (netbsd-arm), func Close(int) error +pkg syscall (netbsd-arm), func CloseOnExec(int) +pkg syscall (netbsd-arm), func CmsgLen(int) int +pkg syscall (netbsd-arm), func CmsgSpace(int) int +pkg syscall (netbsd-arm), func Connect(int, Sockaddr) error +pkg syscall (netbsd-arm), func Dup(int) (int, error) +pkg syscall (netbsd-arm), func Dup2(int, int) error +pkg syscall (netbsd-arm), func Fchdir(int) error +pkg syscall (netbsd-arm), func Fchflags(string, int) error +pkg syscall (netbsd-arm), func Fchmod(int, uint32) error +pkg syscall (netbsd-arm), func Fchown(int, int, int) error +pkg syscall (netbsd-arm), func Flock(int, int) error +pkg syscall (netbsd-arm), func FlushBpf(int) error +pkg syscall (netbsd-arm), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-arm), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-arm), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-arm), func Fsync(int) error +pkg syscall (netbsd-arm), func Ftruncate(int, int64) error +pkg syscall (netbsd-arm), func Futimes(int, []Timeval) error +pkg syscall (netbsd-arm), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-arm), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-arm), func Getpgid(int) (int, error) +pkg syscall (netbsd-arm), func Getpgrp() int +pkg syscall (netbsd-arm), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-arm), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-arm), func Getsid(int) (int, error) +pkg syscall (netbsd-arm), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-arm), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-arm), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-arm), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-arm), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-arm), func Issetugid() bool +pkg syscall (netbsd-arm), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-arm), func Kill(int, Signal) error +pkg syscall (netbsd-arm), func Kqueue() (int, error) +pkg syscall (netbsd-arm), func Listen(int, int) error +pkg syscall (netbsd-arm), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-arm), func Mkfifo(string, uint32) error +pkg syscall (netbsd-arm), func Mknod(string, uint32, int) error +pkg syscall (netbsd-arm), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-arm), func Munmap([]uint8) error +pkg syscall (netbsd-arm), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-arm), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-arm), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-arm), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-arm), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-arm), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-arm), func Pipe([]int) error +pkg syscall (netbsd-arm), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-arm), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-arm), func Revoke(string) error +pkg syscall (netbsd-arm), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-arm), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-arm), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-arm), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-arm), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-arm), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-arm), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-arm), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-arm), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-arm), func SetBpfInterface(int, string) error +pkg syscall (netbsd-arm), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-arm), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-arm), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-arm), func SetNonblock(int, bool) error +pkg syscall (netbsd-arm), func Setegid(int) error +pkg syscall (netbsd-arm), func Seteuid(int) error +pkg syscall (netbsd-arm), func Setgid(int) error +pkg syscall (netbsd-arm), func Setgroups([]int) error +pkg syscall (netbsd-arm), func Setpgid(int, int) error +pkg syscall (netbsd-arm), func Setpriority(int, int, int) error +pkg syscall (netbsd-arm), func Setregid(int, int) error +pkg syscall (netbsd-arm), func Setreuid(int, int) error +pkg syscall (netbsd-arm), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm), func Setsid() (int, error) +pkg syscall (netbsd-arm), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-arm), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-arm), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-arm), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-arm), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-arm), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-arm), func Settimeofday(*Timeval) error +pkg syscall (netbsd-arm), func Setuid(int) error +pkg syscall (netbsd-arm), func Shutdown(int, int) error +pkg syscall (netbsd-arm), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-arm), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-arm), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-arm), func Stat(string, *Stat_t) error +pkg syscall (netbsd-arm), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-arm), func Sync() error +pkg syscall (netbsd-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm), func Sysctl(string) (string, error) +pkg syscall (netbsd-arm), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-arm), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-arm), func Truncate(string, int64) error +pkg syscall (netbsd-arm), func Umask(int) int +pkg syscall (netbsd-arm), func UnixRights(...int) []uint8 +pkg syscall (netbsd-arm), func Unmount(string, int) error +pkg syscall (netbsd-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-arm), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-arm), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-arm), method (*Iovec) SetLen(int) +pkg syscall (netbsd-arm), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-arm), type BpfHdr struct +pkg syscall (netbsd-arm), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-arm), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-arm), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-arm), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-arm), type BpfInsn struct +pkg syscall (netbsd-arm), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-arm), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-arm), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-arm), type BpfInsn struct, K uint32 +pkg syscall (netbsd-arm), type BpfProgram struct +pkg syscall (netbsd-arm), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-arm), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-arm), type BpfStat struct +pkg syscall (netbsd-arm), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-arm), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-arm), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-arm), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-arm), type BpfTimeval struct +pkg syscall (netbsd-arm), type BpfTimeval struct, Sec int32 +pkg syscall (netbsd-arm), type BpfTimeval struct, Usec int32 +pkg syscall (netbsd-arm), type BpfVersion struct +pkg syscall (netbsd-arm), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-arm), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-arm), type Cmsghdr struct +pkg syscall (netbsd-arm), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-arm), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-arm), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-arm), type Credential struct +pkg syscall (netbsd-arm), type Credential struct, Gid uint32 +pkg syscall (netbsd-arm), type Credential struct, Groups []uint32 +pkg syscall (netbsd-arm), type Credential struct, Uid uint32 +pkg syscall (netbsd-arm), type Dirent struct +pkg syscall (netbsd-arm), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-arm), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-arm), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-arm), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-arm), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-arm), type Dirent struct, Type uint8 +pkg syscall (netbsd-arm), type FdSet struct +pkg syscall (netbsd-arm), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-arm), type Flock_t struct +pkg syscall (netbsd-arm), type Flock_t struct, Len int64 +pkg syscall (netbsd-arm), type Flock_t struct, Pid int32 +pkg syscall (netbsd-arm), type Flock_t struct, Start int64 +pkg syscall (netbsd-arm), type Flock_t struct, Type int16 +pkg syscall (netbsd-arm), type Flock_t struct, Whence int16 +pkg syscall (netbsd-arm), type Fsid struct +pkg syscall (netbsd-arm), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-arm), type ICMPv6Filter struct +pkg syscall (netbsd-arm), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-arm), type IPv6MTUInfo struct +pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-arm), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-arm), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-arm), type IfData struct +pkg syscall (netbsd-arm), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-arm), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-arm), type IfData struct, Collisions uint64 +pkg syscall (netbsd-arm), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-arm), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-arm), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-arm), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-arm), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-arm), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-arm), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-arm), type IfData struct, Link_state int32 +pkg syscall (netbsd-arm), type IfData struct, Metric uint64 +pkg syscall (netbsd-arm), type IfData struct, Mtu uint64 +pkg syscall (netbsd-arm), type IfData struct, Noproto uint64 +pkg syscall (netbsd-arm), type IfData struct, Obytes uint64 +pkg syscall (netbsd-arm), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-arm), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-arm), type IfData struct, Opackets uint64 +pkg syscall (netbsd-arm), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-arm), type IfData struct, Type uint8 +pkg syscall (netbsd-arm), type IfMsghdr struct +pkg syscall (netbsd-arm), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-arm), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-arm), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-arm), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-arm), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-arm), type IfaMsghdr struct +pkg syscall (netbsd-arm), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-arm), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-arm), type Inet6Pktinfo struct +pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-arm), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-arm), type InterfaceAddrMessage struct +pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-arm), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-arm), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-arm), type InterfaceMessage struct +pkg syscall (netbsd-arm), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-arm), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-arm), type Iovec struct +pkg syscall (netbsd-arm), type Iovec struct, Base *uint8 +pkg syscall (netbsd-arm), type Iovec struct, Len uint32 +pkg syscall (netbsd-arm), type Kevent_t struct +pkg syscall (netbsd-arm), type Kevent_t struct, Data int64 +pkg syscall (netbsd-arm), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-arm), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-arm), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-arm), type Kevent_t struct, Ident uint32 +pkg syscall (netbsd-arm), type Kevent_t struct, Udata int32 +pkg syscall (netbsd-arm), type Mclpool [0]uint8 +pkg syscall (netbsd-arm), type Msghdr struct +pkg syscall (netbsd-arm), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-arm), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-arm), type Msghdr struct, Flags int32 +pkg syscall (netbsd-arm), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-arm), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-arm), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-arm), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-arm), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-arm), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-arm), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-arm), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-arm), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-arm), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-arm), type RawSockaddrUnix struct +pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-arm), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-arm), type Rlimit struct +pkg syscall (netbsd-arm), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-arm), type Rlimit struct, Max uint64 +pkg syscall (netbsd-arm), type RouteMessage struct +pkg syscall (netbsd-arm), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-arm), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-arm), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-arm), type RtMetrics struct +pkg syscall (netbsd-arm), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-arm), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-arm), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-arm), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-arm), type RtMsghdr struct +pkg syscall (netbsd-arm), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-arm), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-arm), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-arm), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-arm), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-arm), type Rusage struct, Idrss int32 +pkg syscall (netbsd-arm), type Rusage struct, Inblock int32 +pkg syscall (netbsd-arm), type Rusage struct, Isrss int32 +pkg syscall (netbsd-arm), type Rusage struct, Ixrss int32 +pkg syscall (netbsd-arm), type Rusage struct, Majflt int32 +pkg syscall (netbsd-arm), type Rusage struct, Maxrss int32 +pkg syscall (netbsd-arm), type Rusage struct, Minflt int32 +pkg syscall (netbsd-arm), type Rusage struct, Msgrcv int32 +pkg syscall (netbsd-arm), type Rusage struct, Msgsnd int32 +pkg syscall (netbsd-arm), type Rusage struct, Nivcsw int32 +pkg syscall (netbsd-arm), type Rusage struct, Nsignals int32 +pkg syscall (netbsd-arm), type Rusage struct, Nswap int32 +pkg syscall (netbsd-arm), type Rusage struct, Nvcsw int32 +pkg syscall (netbsd-arm), type Rusage struct, Oublock int32 +pkg syscall (netbsd-arm), type Rusage struct, Stime Timeval +pkg syscall (netbsd-arm), type Rusage struct, Utime Timeval +pkg syscall (netbsd-arm), type SockaddrDatalink struct +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm), type SocketControlMessage struct +pkg syscall (netbsd-arm), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-arm), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-arm), type Stat_t struct +pkg syscall (netbsd-arm), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-arm), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-arm), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-arm), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-arm), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-arm), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-arm), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-arm), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-arm), type Stat_t struct, Size int64 +pkg syscall (netbsd-arm), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-arm), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-arm), type Statfs_t [0]uint8 +pkg syscall (netbsd-arm), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-arm), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-arm), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-arm), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-arm), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-arm), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-arm), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-arm), type Sysctlnode struct +pkg syscall (netbsd-arm), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-arm), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-arm), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-arm), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-arm), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-arm), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-arm), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-arm), type Timespec struct, Nsec int32 +pkg syscall (netbsd-arm), type Timespec struct, Sec int64 +pkg syscall (netbsd-arm), type Timeval struct, Sec int64 +pkg syscall (netbsd-arm), type Timeval struct, Usec int32 +pkg syscall (netbsd-arm), type WaitStatus uint32 +pkg syscall (netbsd-arm), var Stderr int +pkg syscall (netbsd-arm), var Stdin int +pkg syscall (netbsd-arm), var Stdout int +pkg syscall (netbsd-arm-cgo), const AF_APPLETALK ideal-int +pkg syscall (netbsd-arm-cgo), const AF_ARP ideal-int +pkg syscall (netbsd-arm-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (netbsd-arm-cgo), const AF_CCITT ideal-int +pkg syscall (netbsd-arm-cgo), const AF_CHAOS ideal-int +pkg syscall (netbsd-arm-cgo), const AF_CNT ideal-int +pkg syscall (netbsd-arm-cgo), const AF_COIP ideal-int +pkg syscall (netbsd-arm-cgo), const AF_DATAKIT ideal-int +pkg syscall (netbsd-arm-cgo), const AF_DECnet ideal-int +pkg syscall (netbsd-arm-cgo), const AF_DLI ideal-int +pkg syscall (netbsd-arm-cgo), const AF_E164 ideal-int +pkg syscall (netbsd-arm-cgo), const AF_ECMA ideal-int +pkg syscall (netbsd-arm-cgo), const AF_HYLINK ideal-int +pkg syscall (netbsd-arm-cgo), const AF_IEEE80211 ideal-int +pkg syscall (netbsd-arm-cgo), const AF_IMPLINK ideal-int +pkg syscall (netbsd-arm-cgo), const AF_IPX ideal-int +pkg syscall (netbsd-arm-cgo), const AF_ISDN ideal-int +pkg syscall (netbsd-arm-cgo), const AF_ISO ideal-int +pkg syscall (netbsd-arm-cgo), const AF_LAT ideal-int +pkg syscall (netbsd-arm-cgo), const AF_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const AF_LOCAL ideal-int +pkg syscall (netbsd-arm-cgo), const AF_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const AF_MPLS ideal-int +pkg syscall (netbsd-arm-cgo), const AF_NATM ideal-int +pkg syscall (netbsd-arm-cgo), const AF_NS ideal-int +pkg syscall (netbsd-arm-cgo), const AF_OROUTE ideal-int +pkg syscall (netbsd-arm-cgo), const AF_OSI ideal-int +pkg syscall (netbsd-arm-cgo), const AF_PUP ideal-int +pkg syscall (netbsd-arm-cgo), const AF_ROUTE ideal-int +pkg syscall (netbsd-arm-cgo), const AF_SNA ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (netbsd-arm-cgo), const ARPHRD_STRIP ideal-int +pkg syscall (netbsd-arm-cgo), const B0 ideal-int +pkg syscall (netbsd-arm-cgo), const B110 ideal-int +pkg syscall (netbsd-arm-cgo), const B115200 ideal-int +pkg syscall (netbsd-arm-cgo), const B1200 ideal-int +pkg syscall (netbsd-arm-cgo), const B134 ideal-int +pkg syscall (netbsd-arm-cgo), const B14400 ideal-int +pkg syscall (netbsd-arm-cgo), const B150 ideal-int +pkg syscall (netbsd-arm-cgo), const B1800 ideal-int +pkg syscall (netbsd-arm-cgo), const B19200 ideal-int +pkg syscall (netbsd-arm-cgo), const B200 ideal-int +pkg syscall (netbsd-arm-cgo), const B230400 ideal-int +pkg syscall (netbsd-arm-cgo), const B2400 ideal-int +pkg syscall (netbsd-arm-cgo), const B28800 ideal-int +pkg syscall (netbsd-arm-cgo), const B300 ideal-int +pkg syscall (netbsd-arm-cgo), const B38400 ideal-int +pkg syscall (netbsd-arm-cgo), const B460800 ideal-int +pkg syscall (netbsd-arm-cgo), const B4800 ideal-int +pkg syscall (netbsd-arm-cgo), const B50 ideal-int +pkg syscall (netbsd-arm-cgo), const B57600 ideal-int +pkg syscall (netbsd-arm-cgo), const B600 ideal-int +pkg syscall (netbsd-arm-cgo), const B7200 ideal-int +pkg syscall (netbsd-arm-cgo), const B75 ideal-int +pkg syscall (netbsd-arm-cgo), const B76800 ideal-int +pkg syscall (netbsd-arm-cgo), const B921600 ideal-int +pkg syscall (netbsd-arm-cgo), const B9600 ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCFEEDBACK ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGBLEN ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGDLT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGETIF ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGFEEDBACK ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGSEESENT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGSTATS ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCGSTATSOLD ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCPROMISC ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSBLEN ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSDLT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSETF ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSETIF ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSFEEDBACK ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSSEESENT ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSTCPF ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCSUDPF ideal-int +pkg syscall (netbsd-arm-cgo), const BIOCVERSION ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_A ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ABS ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ADD ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ALIGNMENT32 ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ALU ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_AND ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_B ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_DFLTBUFSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_DIV ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_H ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_IMM ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_IND ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JA ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JEQ ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JGE ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JGT ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JMP ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_JSET ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_K ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_LD ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_LDX ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_LSH ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MEM ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MISC ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MSH ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_MUL ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_NEG ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_OR ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_RELEASE ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_RET ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_RSH ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_ST ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_STX ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_SUB ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_TAX ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_TXA ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_W ideal-int +pkg syscall (netbsd-arm-cgo), const BPF_X ideal-int +pkg syscall (netbsd-arm-cgo), const BRKINT ideal-int +pkg syscall (netbsd-arm-cgo), const CFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const CLOCAL ideal-int +pkg syscall (netbsd-arm-cgo), const CREAD ideal-int +pkg syscall (netbsd-arm-cgo), const CS5 ideal-int +pkg syscall (netbsd-arm-cgo), const CS6 ideal-int +pkg syscall (netbsd-arm-cgo), const CS7 ideal-int +pkg syscall (netbsd-arm-cgo), const CS8 ideal-int +pkg syscall (netbsd-arm-cgo), const CSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const CSTART ideal-int +pkg syscall (netbsd-arm-cgo), const CSTATUS ideal-int +pkg syscall (netbsd-arm-cgo), const CSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const CSTOPB ideal-int +pkg syscall (netbsd-arm-cgo), const CSUSP ideal-int +pkg syscall (netbsd-arm-cgo), const CTL_MAXNAME ideal-int +pkg syscall (netbsd-arm-cgo), const CTL_NET ideal-int +pkg syscall (netbsd-arm-cgo), const CTL_QUERY ideal-int +pkg syscall (netbsd-arm-cgo), const DIOCBSFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_A429 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_A653_ICM ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_AIRONET_HEADER ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_AOS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ARCNET ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ARCNET_LINUX ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_AURORA ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_AX25 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_AX25_KISS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_BACNET_MS_TP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_CAN20B ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_CAN_SOCKETCAN ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_CHAOS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_CISCO_IOS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_DECT ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_DOCSIS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ECONET ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_EN10MB ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_EN3MB ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ENC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ERF ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ERF_ETH ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_ERF_POS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FC_2 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FDDI ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FLEXRAY ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FRELAY ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GCOM_SERIAL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GCOM_T1E1 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GPF_F ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GPF_T ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GPRS_LLC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_ABIS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_GSMTAP_UM ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_HDLC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_HHDLC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_HIPPI ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IBM_SN ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IBM_SP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IPMB ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IPMB_LINUX ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IPNET ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IPV4 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IPV6 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_IP_OVER_FC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ES ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ISM ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MFR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_ST ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_JUNIPER_VP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LAPD ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LIN ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_EVDEV ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_IRDA ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_LAPD ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LOOP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_LTALK ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MFR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MOST ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MPLS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MTP2 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_MTP3 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_NULL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PCI_EXP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PFLOG ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PFSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPI ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP_PPPD ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PRISM_HEADER ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_PRONET ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_RAIF1 ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_RAW ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_RAWAF_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_RIO ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SCCP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SITA ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SLIP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SUNATM ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_TZSP ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_USB ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_USB_LINUX_MMAPPED ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_WIHART ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_X2E_SERIAL ideal-int +pkg syscall (netbsd-arm-cgo), const DLT_X2E_XORAYA ideal-int +pkg syscall (netbsd-arm-cgo), const DT_BLK ideal-int +pkg syscall (netbsd-arm-cgo), const DT_CHR ideal-int +pkg syscall (netbsd-arm-cgo), const DT_DIR ideal-int +pkg syscall (netbsd-arm-cgo), const DT_FIFO ideal-int +pkg syscall (netbsd-arm-cgo), const DT_LNK ideal-int +pkg syscall (netbsd-arm-cgo), const DT_REG ideal-int +pkg syscall (netbsd-arm-cgo), const DT_SOCK ideal-int +pkg syscall (netbsd-arm-cgo), const DT_UNKNOWN ideal-int +pkg syscall (netbsd-arm-cgo), const DT_WHT ideal-int +pkg syscall (netbsd-arm-cgo), const EAUTH Errno +pkg syscall (netbsd-arm-cgo), const EBADMSG Errno +pkg syscall (netbsd-arm-cgo), const EBADRPC Errno +pkg syscall (netbsd-arm-cgo), const ECHO ideal-int +pkg syscall (netbsd-arm-cgo), const ECHOCTL ideal-int +pkg syscall (netbsd-arm-cgo), const ECHOE ideal-int +pkg syscall (netbsd-arm-cgo), const ECHOK ideal-int +pkg syscall (netbsd-arm-cgo), const ECHOKE ideal-int +pkg syscall (netbsd-arm-cgo), const ECHONL ideal-int +pkg syscall (netbsd-arm-cgo), const ECHOPRT ideal-int +pkg syscall (netbsd-arm-cgo), const EFTYPE Errno +pkg syscall (netbsd-arm-cgo), const ELAST Errno +pkg syscall (netbsd-arm-cgo), const EMULTIHOP Errno +pkg syscall (netbsd-arm-cgo), const EMUL_LINUX ideal-int +pkg syscall (netbsd-arm-cgo), const EMUL_LINUX32 ideal-int +pkg syscall (netbsd-arm-cgo), const EMUL_MAXID ideal-int +pkg syscall (netbsd-arm-cgo), const ENEEDAUTH Errno +pkg syscall (netbsd-arm-cgo), const ENOATTR Errno +pkg syscall (netbsd-arm-cgo), const ENODATA Errno +pkg syscall (netbsd-arm-cgo), const ENOLINK Errno +pkg syscall (netbsd-arm-cgo), const ENOSR Errno +pkg syscall (netbsd-arm-cgo), const ENOSTR Errno +pkg syscall (netbsd-arm-cgo), const EPROCLIM Errno +pkg syscall (netbsd-arm-cgo), const EPROCUNAVAIL Errno +pkg syscall (netbsd-arm-cgo), const EPROGMISMATCH Errno +pkg syscall (netbsd-arm-cgo), const EPROGUNAVAIL Errno +pkg syscall (netbsd-arm-cgo), const EPROTO Errno +pkg syscall (netbsd-arm-cgo), const ERPCMISMATCH Errno +pkg syscall (netbsd-arm-cgo), const ETHERCAP_JUMBO_MTU ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_HWTAGGING ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERCAP_VLAN_MTU ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERMIN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERMTU ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERMTU_JUMBO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SLOWPROTOCOLS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (netbsd-arm-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_MAX_LEN_JUMBO ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_PPPOE_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (netbsd-arm-cgo), const ETIME Errno +pkg syscall (netbsd-arm-cgo), const EVFILT_AIO ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_PROC ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_READ ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_TIMER ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_VNODE ideal-int +pkg syscall (netbsd-arm-cgo), const EVFILT_WRITE ideal-int +pkg syscall (netbsd-arm-cgo), const EV_ADD ideal-int +pkg syscall (netbsd-arm-cgo), const EV_CLEAR ideal-int +pkg syscall (netbsd-arm-cgo), const EV_DELETE ideal-int +pkg syscall (netbsd-arm-cgo), const EV_DISABLE ideal-int +pkg syscall (netbsd-arm-cgo), const EV_ENABLE ideal-int +pkg syscall (netbsd-arm-cgo), const EV_EOF ideal-int +pkg syscall (netbsd-arm-cgo), const EV_ERROR ideal-int +pkg syscall (netbsd-arm-cgo), const EV_FLAG1 ideal-int +pkg syscall (netbsd-arm-cgo), const EV_ONESHOT ideal-int +pkg syscall (netbsd-arm-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const EXTA ideal-int +pkg syscall (netbsd-arm-cgo), const EXTB ideal-int +pkg syscall (netbsd-arm-cgo), const EXTPROC ideal-int +pkg syscall (netbsd-arm-cgo), const FD_CLOEXEC ideal-int +pkg syscall (netbsd-arm-cgo), const FD_SETSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const FLUSHO ideal-int +pkg syscall (netbsd-arm-cgo), const F_CLOSEM ideal-int +pkg syscall (netbsd-arm-cgo), const F_DUPFD ideal-int +pkg syscall (netbsd-arm-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSCTL ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSDIRMASK ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSIN ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSINOUT ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSOUT ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSPRIV ideal-int +pkg syscall (netbsd-arm-cgo), const F_FSVOID ideal-int +pkg syscall (netbsd-arm-cgo), const F_GETFD ideal-int +pkg syscall (netbsd-arm-cgo), const F_GETFL ideal-int +pkg syscall (netbsd-arm-cgo), const F_GETLK ideal-int +pkg syscall (netbsd-arm-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const F_GETOWN ideal-int +pkg syscall (netbsd-arm-cgo), const F_MAXFD ideal-int +pkg syscall (netbsd-arm-cgo), const F_OK ideal-int +pkg syscall (netbsd-arm-cgo), const F_PARAM_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const F_PARAM_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const F_RDLCK ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETFD ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETFL ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETLK ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETLKW ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const F_SETOWN ideal-int +pkg syscall (netbsd-arm-cgo), const F_UNLCK ideal-int +pkg syscall (netbsd-arm-cgo), const F_WRLCK ideal-int +pkg syscall (netbsd-arm-cgo), const HUPCL ideal-int +pkg syscall (netbsd-arm-cgo), const ICANON ideal-int +pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER = 18 +pkg syscall (netbsd-arm-cgo), const ICMP6_FILTER ideal-int +pkg syscall (netbsd-arm-cgo), const ICRNL ideal-int +pkg syscall (netbsd-arm-cgo), const IEXTEN ideal-int +pkg syscall (netbsd-arm-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (netbsd-arm-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (netbsd-arm-cgo), const IFA_ROUTE ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_DEBUG ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_LINK0 ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_LINK1 ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_LINK2 ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_NOARP ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_OACTIVE ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_PROMISC ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_RUNNING ideal-int +pkg syscall (netbsd-arm-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (netbsd-arm-cgo), const IFNAMSIZ ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_1822 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_AAL2 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_AAL5 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ADSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ARAP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ARCNET ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ASYNC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMDXI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMIMA ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_BRIDGE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_BSC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CARP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CEPT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CES ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_CNR ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_COFFEE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DCN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DLSW ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DS0 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DS1FDL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DS3 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DTM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DVBASILN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ECONET ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_EON ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_EPLRS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ESCON ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ETHER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FAITH ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FAST ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FASTETHER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FDDI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRELAY ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_G703AT64K ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_GIF ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_GR303IDT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_GR303RDT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_H323PROXY ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HDH1822 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HDLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HDSL2 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HIPPI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HSSI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_HY ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IFGSN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IMT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISDN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISDNS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISDNU ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88023 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88024 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISO88026 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ISUP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_L2VLAN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LAPB ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LAPD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LAPF ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_LOOP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MIOX25 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MODEM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MPC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MPLS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MSDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MVL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_MYRINET ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_NFAS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_NSIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_OTHER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_P10 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_P80 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PARA ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PFLOG ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PFSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PON155 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PON622 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_POS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PPP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPATM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPMUX ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_PVC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_Q2931 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_QLLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_RADSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_REACHDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_RFC1483 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_RS232 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_RSRB ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SDLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SHDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SIPSIG ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SIPTG ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SLIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SONET ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SONETPATH ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SONETVT ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SRP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_STARLAN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_STF ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_T1 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TDLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TELINK ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TERMPAD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TR008 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_TUNNEL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_ULTRA ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_USB ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_V11 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_V35 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_V36 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_V37 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VDSL ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEDID ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEEM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X213 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X25 ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X25DDN ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X25MLP ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_X25PLE ideal-int +pkg syscall (netbsd-arm-cgo), const IFT_XETHER ideal-int +pkg syscall (netbsd-arm-cgo), const IGNBRK ideal-int +pkg syscall (netbsd-arm-cgo), const IGNCR ideal-int +pkg syscall (netbsd-arm-cgo), const IGNPAR ideal-int +pkg syscall (netbsd-arm-cgo), const IMAXBEL ideal-int +pkg syscall (netbsd-arm-cgo), const INLCR ideal-int +pkg syscall (netbsd-arm-cgo), const INPCK ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (netbsd-arm-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_AH ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_CARP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_DONE ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_EGP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_EON ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ESP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_GGP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_GRE ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IDP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_IPV6_ICMP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_NONE ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_PIM ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_PUP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_RAW ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_TP ideal-int +pkg syscall (netbsd-arm-cgo), const IPPROTO_VRRP ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_FAITH ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_MMTU ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_TCLASS ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_VERSION ideal-int +pkg syscall (netbsd-arm-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (netbsd-arm-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (netbsd-arm-cgo), const IP_DF ideal-int +pkg syscall (netbsd-arm-cgo), const IP_EF ideal-int +pkg syscall (netbsd-arm-cgo), const IP_ERRORMTU ideal-int +pkg syscall (netbsd-arm-cgo), const IP_HDRINCL ideal-int +pkg syscall (netbsd-arm-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MAXPACKET ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MF ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MINFRAGSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MINTTL ideal-int +pkg syscall (netbsd-arm-cgo), const IP_MSS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_OFFMASK ideal-int +pkg syscall (netbsd-arm-cgo), const IP_OPTIONS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE ideal-int +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (netbsd-arm-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RECVIF ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RECVOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RECVTTL ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RETOPTS ideal-int +pkg syscall (netbsd-arm-cgo), const IP_RF ideal-int +pkg syscall (netbsd-arm-cgo), const ISIG ideal-int +pkg syscall (netbsd-arm-cgo), const ISTRIP ideal-int +pkg syscall (netbsd-arm-cgo), const IXANY ideal-int +pkg syscall (netbsd-arm-cgo), const IXOFF ideal-int +pkg syscall (netbsd-arm-cgo), const IXON ideal-int +pkg syscall (netbsd-arm-cgo), const LOCK_EX ideal-int +pkg syscall (netbsd-arm-cgo), const LOCK_NB ideal-int +pkg syscall (netbsd-arm-cgo), const LOCK_SH ideal-int +pkg syscall (netbsd-arm-cgo), const LOCK_UN ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_BCAST ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_CONTROLMBUF ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_CTRUNC ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_EOR ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_IOVUSRSPACE ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_LENUSRSPACE ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_MCAST ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_NAMEMBUF ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_NBIO ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_OOB ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_PEEK ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_TRUNC ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_USERFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const MSG_WAITALL ideal-int +pkg syscall (netbsd-arm-cgo), const NAME_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_DUMP ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_MAXID ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_OIFLIST ideal-int +pkg syscall (netbsd-arm-cgo), const NET_RT_OOIFLIST ideal-int +pkg syscall (netbsd-arm-cgo), const NOFLSH ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_CHILD ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_DELETE ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_EXEC ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_EXIT ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_EXTEND ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_FORK ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_LOWAT ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_RENAME ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_REVOKE ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_TRACK ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (netbsd-arm-cgo), const NOTE_WRITE ideal-int +pkg syscall (netbsd-arm-cgo), const OCRNL ideal-int +pkg syscall (netbsd-arm-cgo), const OFIOGETBMAP ideal-int +pkg syscall (netbsd-arm-cgo), const ONLCR ideal-int +pkg syscall (netbsd-arm-cgo), const ONLRET ideal-int +pkg syscall (netbsd-arm-cgo), const ONOCR ideal-int +pkg syscall (netbsd-arm-cgo), const ONOEOT ideal-int +pkg syscall (netbsd-arm-cgo), const OPOST ideal-int +pkg syscall (netbsd-arm-cgo), const O_ACCMODE ideal-int +pkg syscall (netbsd-arm-cgo), const O_ALT_IO ideal-int +pkg syscall (netbsd-arm-cgo), const O_DIRECT ideal-int +pkg syscall (netbsd-arm-cgo), const O_DIRECTORY ideal-int +pkg syscall (netbsd-arm-cgo), const O_DSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const O_EXLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const O_FSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const O_NDELAY ideal-int +pkg syscall (netbsd-arm-cgo), const O_NOFOLLOW ideal-int +pkg syscall (netbsd-arm-cgo), const O_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const O_RSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const O_SHLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const PARENB ideal-int +pkg syscall (netbsd-arm-cgo), const PARMRK ideal-int +pkg syscall (netbsd-arm-cgo), const PARODD ideal-int +pkg syscall (netbsd-arm-cgo), const PENDIN ideal-int +pkg syscall (netbsd-arm-cgo), const PRIO_PGRP = 1 +pkg syscall (netbsd-arm-cgo), const PRIO_PGRP ideal-int +pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS = 0 +pkg syscall (netbsd-arm-cgo), const PRIO_PROCESS ideal-int +pkg syscall (netbsd-arm-cgo), const PRIO_USER = 2 +pkg syscall (netbsd-arm-cgo), const PRIO_USER ideal-int +pkg syscall (netbsd-arm-cgo), const PRI_IOFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const PTRACE_CONT ideal-int +pkg syscall (netbsd-arm-cgo), const PTRACE_KILL ideal-int +pkg syscall (netbsd-arm-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_AS ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_CORE ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_CPU ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_DATA ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (netbsd-arm-cgo), const RLIMIT_STACK ideal-int +pkg syscall (netbsd-arm-cgo), const RLIM_INFINITY ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_BRD ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_DST ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_GENMASK ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_IFA ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_IFP ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_MAX ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_NETMASK ideal-int +pkg syscall (netbsd-arm-cgo), const RTAX_TAG ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_AUTHOR ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_BRD ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_DST ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_GATEWAY ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_GENMASK ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_IFA ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_IFP ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_NETMASK ideal-int +pkg syscall (netbsd-arm-cgo), const RTA_TAG ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_CLONED ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_CLONING ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_DONE ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_GATEWAY ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_HOST ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_LLINFO ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_MODIFIED ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_PROTO1 ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_PROTO2 ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_REJECT ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_SRC ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_STATIC ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_UP ideal-int +pkg syscall (netbsd-arm-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_ADD ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_CHANGE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_CHGADDR ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_DELADDR ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_DELETE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_GET ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_IEEE80211 ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_IFINFO ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_LLINFO_UPD ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_LOCK ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_LOSING ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_MISS ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_NEWADDR ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_OIFINFO ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_OLDADD ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_OLDDEL ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_OOIFINFO ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_REDIRECT ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_RESOLVE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_SETGATE ideal-int +pkg syscall (netbsd-arm-cgo), const RTM_VERSION ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_EXPIRE ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_MTU ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_RPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_RTT ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_RTTVAR ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_SPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (netbsd-arm-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (netbsd-arm-cgo), const RUSAGE_SELF ideal-int +pkg syscall (netbsd-arm-cgo), const SCM_CREDS ideal-int +pkg syscall (netbsd-arm-cgo), const SCM_RIGHTS ideal-int +pkg syscall (netbsd-arm-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (netbsd-arm-cgo), const SIGCHLD Signal +pkg syscall (netbsd-arm-cgo), const SIGCONT Signal +pkg syscall (netbsd-arm-cgo), const SIGEMT Signal +pkg syscall (netbsd-arm-cgo), const SIGINFO Signal +pkg syscall (netbsd-arm-cgo), const SIGIO Signal +pkg syscall (netbsd-arm-cgo), const SIGIOT Signal +pkg syscall (netbsd-arm-cgo), const SIGPROF Signal +pkg syscall (netbsd-arm-cgo), const SIGPWR Signal +pkg syscall (netbsd-arm-cgo), const SIGSTOP Signal +pkg syscall (netbsd-arm-cgo), const SIGSYS Signal +pkg syscall (netbsd-arm-cgo), const SIGTSTP Signal +pkg syscall (netbsd-arm-cgo), const SIGTTIN Signal +pkg syscall (netbsd-arm-cgo), const SIGTTOU Signal +pkg syscall (netbsd-arm-cgo), const SIGURG Signal +pkg syscall (netbsd-arm-cgo), const SIGUSR1 Signal +pkg syscall (netbsd-arm-cgo), const SIGUSR2 Signal +pkg syscall (netbsd-arm-cgo), const SIGVTALRM Signal +pkg syscall (netbsd-arm-cgo), const SIGWINCH Signal +pkg syscall (netbsd-arm-cgo), const SIGXCPU Signal +pkg syscall (netbsd-arm-cgo), const SIGXFSZ Signal +pkg syscall (netbsd-arm-cgo), const SIOCADDMULTI ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCADDRT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCAIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCALIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCATMARK ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCDELMULTI ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCDELRT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCDIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGHIWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFADDRPREF ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFALIAS ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFCAP ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFCONF ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFDATA ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFDLT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFMTU ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGLINKSTR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGLOWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGPGRP ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCGVH ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCIFCREATE ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCINITIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSHIWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFADDRPREF ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFCAP ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFMTU ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSLINKSTR ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSLOWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSPGRP ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCSVH ideal-int +pkg syscall (netbsd-arm-cgo), const SIOCZIFDATA ideal-int +pkg syscall (netbsd-arm-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (netbsd-arm-cgo), const SOCK_FLAGS_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const SOCK_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const SOCK_RDM ideal-int +pkg syscall (netbsd-arm-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (netbsd-arm-cgo), const SO_ACCEPTFILTER ideal-int +pkg syscall (netbsd-arm-cgo), const SO_DEBUG ideal-int +pkg syscall (netbsd-arm-cgo), const SO_ERROR ideal-int +pkg syscall (netbsd-arm-cgo), const SO_NOHEADER ideal-int +pkg syscall (netbsd-arm-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (netbsd-arm-cgo), const SO_OOBINLINE ideal-int +pkg syscall (netbsd-arm-cgo), const SO_OVERFLOWED ideal-int +pkg syscall (netbsd-arm-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (netbsd-arm-cgo), const SO_REUSEPORT ideal-int +pkg syscall (netbsd-arm-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (netbsd-arm-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (netbsd-arm-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (netbsd-arm-cgo), const SO_TYPE ideal-int +pkg syscall (netbsd-arm-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERSION ideal-int +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_0 ideal-int +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_1 ideal-int +pkg syscall (netbsd-arm-cgo), const SYSCTL_VERS_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_ACCEPT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_ACCESS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_ACCT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_ADJTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_BIND ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_BREAK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CHDIR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CHMOD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CHROOT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CLOSE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_CONNECT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_DUP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_DUP2 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_DUP3 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXECVE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTRCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHDIR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHMOD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCHROOT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FCNTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FEXECVE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FHSTAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FKTRACE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FORK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSTAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSTATAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSTATVFS1 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSYNC ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FSYNC_RANGE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_FUTIMES ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETCONTEXT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETDENTS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETEGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETEUID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETFH ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETITIMER ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPGRP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPPID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETSID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETUID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETVFSSTAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_GETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_IOCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_KEVENT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_KILL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_KQUEUE1 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_KTRACE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LCHFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LCHMOD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LCHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LINKAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LISTEN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LSEEK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LSTAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_LUTIMES ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MADVISE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MINCORE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MINHERIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKDIR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKFIFO ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKNOD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MKNODAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MMAP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MODCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MOUNT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MPROTECT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MREMAP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MSGCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MSGGET ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MSGRCV ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MSGSND ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_MUNMAP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_NTP_ADJTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_NTP_GETTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_OPEN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_OPENAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PACCEPT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PATHCONF ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PIPE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PIPE2 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PMC_CONTROL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PMC_GET_INFO ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_POLL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_POLLTS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_POSIX_FADVISE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PREAD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PREADV ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PROFIL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PSELECT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PSET_ASSIGN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PSET_CREATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PSET_DESTROY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PTRACE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PWRITE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_PWRITEV ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RASCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_READ ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_READLINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_READLINKAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_READV ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_REBOOT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RECVFROM ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RECVMSG ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RENAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_REVOKE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_RMDIR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SBRK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SELECT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SEMCONFIG ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SEMGET ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SEMOP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SENDMMSG ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SENDMSG ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SENDTO ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETCONTEXT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETEGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETEUID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETITIMER ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETPGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETREGID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETREUID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETSID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETUID ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SETXATTR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SHMAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SHMCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SHMDT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SHMGET ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SIGQUEUEINFO ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SOCKET ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SSTK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_STAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_STATVFS1 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SYMLINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SYNC ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_SYSARCH ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UMASK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UNDELETE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UNLINK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UTIMES ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UTRACE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_UUIDGEN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_VADVISE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_VFORK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_WAIT4 ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_WRITE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS_WRITEV ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CONTINUE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CREATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_CTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_DETACH ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_EXIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETNAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_GETPRIVATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_KILL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_PARK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SELF ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETNAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SETPRIVATE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_SUSPEND ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_UNPARK_ALL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__LWP_WAKEUP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__PSET_BIND ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETAFFINITY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_GETPARAM ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETAFFINITY ideal-int +pkg syscall (netbsd-arm-cgo), const SYS__SCHED_SETPARAM ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___CLONE ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___GETCWD ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___GETLOGIN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_CHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_FCHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_LCHOWN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___POSIX_RENAME ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___QUOTACTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___SEMCTL ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___SETLOGIN ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___SIGACTION_SIGTRAMP ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___SIGTIMEDWAIT ideal-int +pkg syscall (netbsd-arm-cgo), const SYS___SYSCTL ideal-int +pkg syscall (netbsd-arm-cgo), const S_ARCH1 ideal-int +pkg syscall (netbsd-arm-cgo), const S_ARCH2 ideal-int +pkg syscall (netbsd-arm-cgo), const S_BLKSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const S_IEXEC ideal-int +pkg syscall (netbsd-arm-cgo), const S_IFWHT ideal-int +pkg syscall (netbsd-arm-cgo), const S_IREAD ideal-int +pkg syscall (netbsd-arm-cgo), const S_IRGRP ideal-int +pkg syscall (netbsd-arm-cgo), const S_IROTH ideal-int +pkg syscall (netbsd-arm-cgo), const S_IRWXG ideal-int +pkg syscall (netbsd-arm-cgo), const S_IRWXO ideal-int +pkg syscall (netbsd-arm-cgo), const S_IRWXU ideal-int +pkg syscall (netbsd-arm-cgo), const S_ISTXT ideal-int +pkg syscall (netbsd-arm-cgo), const S_IWGRP ideal-int +pkg syscall (netbsd-arm-cgo), const S_IWOTH ideal-int +pkg syscall (netbsd-arm-cgo), const S_IWRITE ideal-int +pkg syscall (netbsd-arm-cgo), const S_IXGRP ideal-int +pkg syscall (netbsd-arm-cgo), const S_IXOTH ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofBpfHdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofBpfInsn ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofBpfProgram ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofBpfStat ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofBpfVersion ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofCmsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (netbsd-arm-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIPMreq ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (netbsd-arm-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIfData ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofLinger ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofMsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofRtMetrics ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (netbsd-arm-cgo), const TCIFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const TCIOFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const TCOFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_CONGCTL ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_KEEPINIT ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MAXBURST ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MAXSEG ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MAXWIN ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MD5SIG ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MINMSS ideal-int +pkg syscall (netbsd-arm-cgo), const TCP_MSS ideal-int +pkg syscall (netbsd-arm-cgo), const TCSAFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCCBRK ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCCDTR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCCONS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCDRAIN ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCEXCL ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCEXT ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CDTRCTS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCFLUSH ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGETA ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGETD ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGLINED ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGPGRP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGQSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGRANTPT ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGSID ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCGWINSZ ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCMBIC ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCMBIS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCMGET ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCMSET ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_CAR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_CD ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_CTS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_DSR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_DTR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_LE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_RI ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_RNG ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_RTS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_SR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCM_ST ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCNOTTY ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCNXCL ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCOUTQ ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_START ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPTMGET ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCPTSNAME ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCRCVFRAME ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCREMOTE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSBRK ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSCTTY ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSDTR ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSETA ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSETAF ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSETAW ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSETD ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSFLAGS ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSIG ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSLINED ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSPGRP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSQSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSSIZE ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSTART ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSTAT ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSTI ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCSWINSZ ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCUCNTL ideal-int +pkg syscall (netbsd-arm-cgo), const TIOCXMTFRAME ideal-int +pkg syscall (netbsd-arm-cgo), const TOSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const VDISCARD ideal-int +pkg syscall (netbsd-arm-cgo), const VDSUSP ideal-int +pkg syscall (netbsd-arm-cgo), const VEOF ideal-int +pkg syscall (netbsd-arm-cgo), const VEOL ideal-int +pkg syscall (netbsd-arm-cgo), const VEOL2 ideal-int +pkg syscall (netbsd-arm-cgo), const VERASE ideal-int +pkg syscall (netbsd-arm-cgo), const VINTR ideal-int +pkg syscall (netbsd-arm-cgo), const VKILL ideal-int +pkg syscall (netbsd-arm-cgo), const VLNEXT ideal-int +pkg syscall (netbsd-arm-cgo), const VMIN ideal-int +pkg syscall (netbsd-arm-cgo), const VQUIT ideal-int +pkg syscall (netbsd-arm-cgo), const VREPRINT ideal-int +pkg syscall (netbsd-arm-cgo), const VSTART ideal-int +pkg syscall (netbsd-arm-cgo), const VSTATUS ideal-int +pkg syscall (netbsd-arm-cgo), const VSTOP ideal-int +pkg syscall (netbsd-arm-cgo), const VSUSP ideal-int +pkg syscall (netbsd-arm-cgo), const VTIME ideal-int +pkg syscall (netbsd-arm-cgo), const VWERASE ideal-int +pkg syscall (netbsd-arm-cgo), const WALL ideal-int +pkg syscall (netbsd-arm-cgo), const WALLSIG ideal-int +pkg syscall (netbsd-arm-cgo), const WALTSIG ideal-int +pkg syscall (netbsd-arm-cgo), const WCLONE ideal-int +pkg syscall (netbsd-arm-cgo), const WCOREFLAG ideal-int +pkg syscall (netbsd-arm-cgo), const WNOHANG ideal-int +pkg syscall (netbsd-arm-cgo), const WNOWAIT ideal-int +pkg syscall (netbsd-arm-cgo), const WNOZOMBIE ideal-int +pkg syscall (netbsd-arm-cgo), const WOPTSCHECKED ideal-int +pkg syscall (netbsd-arm-cgo), const WSTOPPED ideal-int +pkg syscall (netbsd-arm-cgo), const WUNTRACED ideal-int +pkg syscall (netbsd-arm-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func Access(string, uint32) error +pkg syscall (netbsd-arm-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (netbsd-arm-cgo), func Bind(int, Sockaddr) error +pkg syscall (netbsd-arm-cgo), func BpfBuflen(int) (int, error) +pkg syscall (netbsd-arm-cgo), func BpfDatalink(int) (int, error) +pkg syscall (netbsd-arm-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (netbsd-arm-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (netbsd-arm-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (netbsd-arm-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (netbsd-arm-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (netbsd-arm-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (netbsd-arm-cgo), func CheckBpfVersion(int) error +pkg syscall (netbsd-arm-cgo), func Chflags(string, int) error +pkg syscall (netbsd-arm-cgo), func Chroot(string) error +pkg syscall (netbsd-arm-cgo), func Close(int) error +pkg syscall (netbsd-arm-cgo), func CloseOnExec(int) +pkg syscall (netbsd-arm-cgo), func CmsgLen(int) int +pkg syscall (netbsd-arm-cgo), func CmsgSpace(int) int +pkg syscall (netbsd-arm-cgo), func Connect(int, Sockaddr) error +pkg syscall (netbsd-arm-cgo), func Dup(int) (int, error) +pkg syscall (netbsd-arm-cgo), func Dup2(int, int) error +pkg syscall (netbsd-arm-cgo), func Fchdir(int) error +pkg syscall (netbsd-arm-cgo), func Fchflags(string, int) error +pkg syscall (netbsd-arm-cgo), func Fchmod(int, uint32) error +pkg syscall (netbsd-arm-cgo), func Fchown(int, int, int) error +pkg syscall (netbsd-arm-cgo), func Flock(int, int) error +pkg syscall (netbsd-arm-cgo), func FlushBpf(int) error +pkg syscall (netbsd-arm-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (netbsd-arm-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Fstat(int, *Stat_t) error +pkg syscall (netbsd-arm-cgo), func Fsync(int) error +pkg syscall (netbsd-arm-cgo), func Ftruncate(int, int64) error +pkg syscall (netbsd-arm-cgo), func Futimes(int, []Timeval) error +pkg syscall (netbsd-arm-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (netbsd-arm-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func Getpgid(int) (int, error) +pkg syscall (netbsd-arm-cgo), func Getpgrp() int +pkg syscall (netbsd-arm-cgo), func Getpriority(int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm-cgo), func Getrusage(int, *Rusage) error +pkg syscall (netbsd-arm-cgo), func Getsid(int) (int, error) +pkg syscall (netbsd-arm-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (netbsd-arm-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Issetugid() bool +pkg syscall (netbsd-arm-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (netbsd-arm-cgo), func Kill(int, Signal) error +pkg syscall (netbsd-arm-cgo), func Kqueue() (int, error) +pkg syscall (netbsd-arm-cgo), func Listen(int, int) error +pkg syscall (netbsd-arm-cgo), func Lstat(string, *Stat_t) error +pkg syscall (netbsd-arm-cgo), func Mkfifo(string, uint32) error +pkg syscall (netbsd-arm-cgo), func Mknod(string, uint32, int) error +pkg syscall (netbsd-arm-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (netbsd-arm-cgo), func Munmap([]uint8) error +pkg syscall (netbsd-arm-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (netbsd-arm-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (netbsd-arm-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (netbsd-arm-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (netbsd-arm-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (netbsd-arm-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (netbsd-arm-cgo), func Pathconf(string, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Pipe([]int) error +pkg syscall (netbsd-arm-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (netbsd-arm-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm-cgo), func Read(int, []uint8) (int, error) +pkg syscall (netbsd-arm-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (netbsd-arm-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (netbsd-arm-cgo), func Revoke(string) error +pkg syscall (netbsd-arm-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (netbsd-arm-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (netbsd-arm-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (netbsd-arm-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (netbsd-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (netbsd-arm-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (netbsd-arm-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (netbsd-arm-cgo), func SetBpfImmediate(int, int) error +pkg syscall (netbsd-arm-cgo), func SetBpfInterface(int, string) error +pkg syscall (netbsd-arm-cgo), func SetBpfPromisc(int, int) error +pkg syscall (netbsd-arm-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (netbsd-arm-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (netbsd-arm-cgo), func SetNonblock(int, bool) error +pkg syscall (netbsd-arm-cgo), func Setegid(int) error +pkg syscall (netbsd-arm-cgo), func Seteuid(int) error +pkg syscall (netbsd-arm-cgo), func Setgid(int) error +pkg syscall (netbsd-arm-cgo), func Setgroups([]int) error +pkg syscall (netbsd-arm-cgo), func Setpgid(int, int) error +pkg syscall (netbsd-arm-cgo), func Setpriority(int, int, int) error +pkg syscall (netbsd-arm-cgo), func Setregid(int, int) error +pkg syscall (netbsd-arm-cgo), func Setreuid(int, int) error +pkg syscall (netbsd-arm-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (netbsd-arm-cgo), func Setsid() (int, error) +pkg syscall (netbsd-arm-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (netbsd-arm-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (netbsd-arm-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (netbsd-arm-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (netbsd-arm-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (netbsd-arm-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (netbsd-arm-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (netbsd-arm-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (netbsd-arm-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (netbsd-arm-cgo), func Settimeofday(*Timeval) error +pkg syscall (netbsd-arm-cgo), func Setuid(int) error +pkg syscall (netbsd-arm-cgo), func Shutdown(int, int) error +pkg syscall (netbsd-arm-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (netbsd-arm-cgo), func Socket(int, int, int) (int, error) +pkg syscall (netbsd-arm-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (netbsd-arm-cgo), func Stat(string, *Stat_t) error +pkg syscall (netbsd-arm-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (netbsd-arm-cgo), func Sync() error +pkg syscall (netbsd-arm-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (netbsd-arm-cgo), func Sysctl(string) (string, error) +pkg syscall (netbsd-arm-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (netbsd-arm-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (netbsd-arm-cgo), func Truncate(string, int64) error +pkg syscall (netbsd-arm-cgo), func Umask(int) int +pkg syscall (netbsd-arm-cgo), func UnixRights(...int) []uint8 +pkg syscall (netbsd-arm-cgo), func Unmount(string, int) error +pkg syscall (netbsd-arm-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (netbsd-arm-cgo), func Write(int, []uint8) (int, error) +pkg syscall (netbsd-arm-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (netbsd-arm-cgo), method (*Iovec) SetLen(int) +pkg syscall (netbsd-arm-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (netbsd-arm-cgo), type BpfHdr struct +pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (netbsd-arm-cgo), type BpfInsn struct +pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Code uint16 +pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (netbsd-arm-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (netbsd-arm-cgo), type BpfInsn struct, K uint32 +pkg syscall (netbsd-arm-cgo), type BpfProgram struct +pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (netbsd-arm-cgo), type BpfProgram struct, Len uint32 +pkg syscall (netbsd-arm-cgo), type BpfStat struct +pkg syscall (netbsd-arm-cgo), type BpfStat struct, Capt uint64 +pkg syscall (netbsd-arm-cgo), type BpfStat struct, Drop uint64 +pkg syscall (netbsd-arm-cgo), type BpfStat struct, Padding [13]uint64 +pkg syscall (netbsd-arm-cgo), type BpfStat struct, Recv uint64 +pkg syscall (netbsd-arm-cgo), type BpfTimeval struct +pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Sec int32 +pkg syscall (netbsd-arm-cgo), type BpfTimeval struct, Usec int32 +pkg syscall (netbsd-arm-cgo), type BpfVersion struct +pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Major uint16 +pkg syscall (netbsd-arm-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (netbsd-arm-cgo), type Cmsghdr struct +pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Level int32 +pkg syscall (netbsd-arm-cgo), type Cmsghdr struct, Type int32 +pkg syscall (netbsd-arm-cgo), type Credential struct +pkg syscall (netbsd-arm-cgo), type Credential struct, Gid uint32 +pkg syscall (netbsd-arm-cgo), type Credential struct, Groups []uint32 +pkg syscall (netbsd-arm-cgo), type Credential struct, Uid uint32 +pkg syscall (netbsd-arm-cgo), type Dirent struct +pkg syscall (netbsd-arm-cgo), type Dirent struct, Fileno uint64 +pkg syscall (netbsd-arm-cgo), type Dirent struct, Name [512]int8 +pkg syscall (netbsd-arm-cgo), type Dirent struct, Namlen uint16 +pkg syscall (netbsd-arm-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (netbsd-arm-cgo), type Dirent struct, Reclen uint16 +pkg syscall (netbsd-arm-cgo), type Dirent struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type FdSet struct +pkg syscall (netbsd-arm-cgo), type FdSet struct, Bits [8]uint32 +pkg syscall (netbsd-arm-cgo), type Flock_t struct +pkg syscall (netbsd-arm-cgo), type Flock_t struct, Len int64 +pkg syscall (netbsd-arm-cgo), type Flock_t struct, Pid int32 +pkg syscall (netbsd-arm-cgo), type Flock_t struct, Start int64 +pkg syscall (netbsd-arm-cgo), type Flock_t struct, Type int16 +pkg syscall (netbsd-arm-cgo), type Flock_t struct, Whence int16 +pkg syscall (netbsd-arm-cgo), type Fsid struct +pkg syscall (netbsd-arm-cgo), type Fsid struct, X__fsid_val [2]int32 +pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct +pkg syscall (netbsd-arm-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct +pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (netbsd-arm-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (netbsd-arm-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (netbsd-arm-cgo), type IfData struct +pkg syscall (netbsd-arm-cgo), type IfData struct, Addrlen uint8 +pkg syscall (netbsd-arm-cgo), type IfData struct, Baudrate uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Collisions uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (netbsd-arm-cgo), type IfData struct, Ibytes uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Ierrors uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Imcasts uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Ipackets uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Lastchange Timespec +pkg syscall (netbsd-arm-cgo), type IfData struct, Link_state int32 +pkg syscall (netbsd-arm-cgo), type IfData struct, Metric uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Mtu uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Noproto uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Obytes uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Oerrors uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Omcasts uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Opackets uint64 +pkg syscall (netbsd-arm-cgo), type IfData struct, Pad_cgo_0 [1]uint8 +pkg syscall (netbsd-arm-cgo), type IfData struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Data IfData +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct +pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (netbsd-arm-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct +pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (netbsd-arm-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct +pkg syscall (netbsd-arm-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct +pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (netbsd-arm-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (netbsd-arm-cgo), type Iovec struct +pkg syscall (netbsd-arm-cgo), type Iovec struct, Base *uint8 +pkg syscall (netbsd-arm-cgo), type Iovec struct, Len uint32 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Data int64 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Filter uint32 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Flags uint32 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Udata int32 +pkg syscall (netbsd-arm-cgo), type Mclpool [0]uint8 +pkg syscall (netbsd-arm-cgo), type Msghdr struct +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Control *uint8 +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Flags int32 +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Name *uint8 +pkg syscall (netbsd-arm-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct +pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (netbsd-arm-cgo), type Rlimit struct +pkg syscall (netbsd-arm-cgo), type Rlimit struct, Cur uint64 +pkg syscall (netbsd-arm-cgo), type Rlimit struct, Max uint64 +pkg syscall (netbsd-arm-cgo), type RouteMessage struct +pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (netbsd-arm-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (netbsd-arm-cgo), type RoutingMessage interface, unexported methods +pkg syscall (netbsd-arm-cgo), type RtMetrics struct +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Expire int64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Hopcount uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Locks uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Mtu uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Pksent int64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Recvpipe uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rtt uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Rttvar uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Sendpipe uint64 +pkg syscall (netbsd-arm-cgo), type RtMetrics struct, Ssthresh uint64 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Inits int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Use int32 +pkg syscall (netbsd-arm-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Idrss int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Inblock int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Isrss int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Ixrss int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Majflt int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Maxrss int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Minflt int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Nsignals int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Nswap int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Oublock int32 +pkg syscall (netbsd-arm-cgo), type Rusage struct, Stime Timeval +pkg syscall (netbsd-arm-cgo), type Rusage struct, Utime Timeval +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (netbsd-arm-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct +pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (netbsd-arm-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (netbsd-arm-cgo), type Stat_t struct +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Blocks int64 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Dev uint64 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Flags uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gen uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Gid uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Ino uint64 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mode uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Size int64 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Spare [2]uint32 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Uid uint32 +pkg syscall (netbsd-arm-cgo), type Statfs_t [0]uint8 +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Chroot string +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Flags uint32 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Name [32]int8 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Num int32 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Un [16]uint8 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, Ver uint32 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X__rsvd uint32 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_desc [8]uint8 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_func [8]uint8 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_parent [8]uint8 +pkg syscall (netbsd-arm-cgo), type Sysctlnode struct, X_sysctl_size [8]uint8 +pkg syscall (netbsd-arm-cgo), type Timespec struct, Nsec int32 +pkg syscall (netbsd-arm-cgo), type Timespec struct, Sec int64 +pkg syscall (netbsd-arm-cgo), type Timeval struct, Sec int64 +pkg syscall (netbsd-arm-cgo), type Timeval struct, Usec int32 +pkg syscall (netbsd-arm-cgo), type WaitStatus uint32 +pkg syscall (netbsd-arm-cgo), var Stderr int +pkg syscall (netbsd-arm-cgo), var Stdin int +pkg syscall (netbsd-arm-cgo), var Stdout int +pkg syscall (openbsd-386), const AF_APPLETALK ideal-int +pkg syscall (openbsd-386), const AF_BLUETOOTH ideal-int +pkg syscall (openbsd-386), const AF_CCITT ideal-int +pkg syscall (openbsd-386), const AF_CHAOS ideal-int +pkg syscall (openbsd-386), const AF_CNT ideal-int +pkg syscall (openbsd-386), const AF_COIP ideal-int +pkg syscall (openbsd-386), const AF_DATAKIT ideal-int +pkg syscall (openbsd-386), const AF_DECnet ideal-int +pkg syscall (openbsd-386), const AF_DLI ideal-int +pkg syscall (openbsd-386), const AF_E164 ideal-int +pkg syscall (openbsd-386), const AF_ECMA ideal-int +pkg syscall (openbsd-386), const AF_ENCAP ideal-int +pkg syscall (openbsd-386), const AF_HYLINK ideal-int +pkg syscall (openbsd-386), const AF_IMPLINK ideal-int +pkg syscall (openbsd-386), const AF_IPX ideal-int +pkg syscall (openbsd-386), const AF_ISDN ideal-int +pkg syscall (openbsd-386), const AF_ISO ideal-int +pkg syscall (openbsd-386), const AF_KEY ideal-int +pkg syscall (openbsd-386), const AF_LAT ideal-int +pkg syscall (openbsd-386), const AF_LINK ideal-int +pkg syscall (openbsd-386), const AF_LOCAL ideal-int +pkg syscall (openbsd-386), const AF_MAX ideal-int +pkg syscall (openbsd-386), const AF_MPLS ideal-int +pkg syscall (openbsd-386), const AF_NATM ideal-int +pkg syscall (openbsd-386), const AF_NS ideal-int +pkg syscall (openbsd-386), const AF_OSI ideal-int +pkg syscall (openbsd-386), const AF_PUP ideal-int +pkg syscall (openbsd-386), const AF_ROUTE ideal-int +pkg syscall (openbsd-386), const AF_SIP ideal-int +pkg syscall (openbsd-386), const AF_SNA ideal-int +pkg syscall (openbsd-386), const ARPHRD_ETHER ideal-int +pkg syscall (openbsd-386), const ARPHRD_FRELAY ideal-int +pkg syscall (openbsd-386), const ARPHRD_IEEE1394 ideal-int +pkg syscall (openbsd-386), const ARPHRD_IEEE802 ideal-int +pkg syscall (openbsd-386), const B0 ideal-int +pkg syscall (openbsd-386), const B110 ideal-int +pkg syscall (openbsd-386), const B115200 ideal-int +pkg syscall (openbsd-386), const B1200 ideal-int +pkg syscall (openbsd-386), const B134 ideal-int +pkg syscall (openbsd-386), const B14400 ideal-int +pkg syscall (openbsd-386), const B150 ideal-int +pkg syscall (openbsd-386), const B1800 ideal-int +pkg syscall (openbsd-386), const B19200 ideal-int +pkg syscall (openbsd-386), const B200 ideal-int +pkg syscall (openbsd-386), const B230400 ideal-int +pkg syscall (openbsd-386), const B2400 ideal-int +pkg syscall (openbsd-386), const B28800 ideal-int +pkg syscall (openbsd-386), const B300 ideal-int +pkg syscall (openbsd-386), const B38400 ideal-int +pkg syscall (openbsd-386), const B4800 ideal-int +pkg syscall (openbsd-386), const B50 ideal-int +pkg syscall (openbsd-386), const B57600 ideal-int +pkg syscall (openbsd-386), const B600 ideal-int +pkg syscall (openbsd-386), const B7200 ideal-int +pkg syscall (openbsd-386), const B75 ideal-int +pkg syscall (openbsd-386), const B76800 ideal-int +pkg syscall (openbsd-386), const B9600 ideal-int +pkg syscall (openbsd-386), const BIOCFLUSH ideal-int +pkg syscall (openbsd-386), const BIOCGBLEN ideal-int +pkg syscall (openbsd-386), const BIOCGDIRFILT ideal-int +pkg syscall (openbsd-386), const BIOCGDLT ideal-int +pkg syscall (openbsd-386), const BIOCGDLTLIST ideal-int +pkg syscall (openbsd-386), const BIOCGETIF ideal-int +pkg syscall (openbsd-386), const BIOCGFILDROP ideal-int +pkg syscall (openbsd-386), const BIOCGHDRCMPLT ideal-int +pkg syscall (openbsd-386), const BIOCGRSIG ideal-int +pkg syscall (openbsd-386), const BIOCGRTIMEOUT ideal-int +pkg syscall (openbsd-386), const BIOCGSTATS ideal-int +pkg syscall (openbsd-386), const BIOCIMMEDIATE ideal-int +pkg syscall (openbsd-386), const BIOCLOCK ideal-int +pkg syscall (openbsd-386), const BIOCPROMISC ideal-int +pkg syscall (openbsd-386), const BIOCSBLEN ideal-int +pkg syscall (openbsd-386), const BIOCSDIRFILT ideal-int +pkg syscall (openbsd-386), const BIOCSDLT ideal-int +pkg syscall (openbsd-386), const BIOCSETF ideal-int +pkg syscall (openbsd-386), const BIOCSETIF ideal-int +pkg syscall (openbsd-386), const BIOCSETWF ideal-int +pkg syscall (openbsd-386), const BIOCSFILDROP ideal-int +pkg syscall (openbsd-386), const BIOCSHDRCMPLT ideal-int +pkg syscall (openbsd-386), const BIOCSRSIG ideal-int +pkg syscall (openbsd-386), const BIOCSRTIMEOUT ideal-int +pkg syscall (openbsd-386), const BIOCVERSION ideal-int +pkg syscall (openbsd-386), const BPF_A ideal-int +pkg syscall (openbsd-386), const BPF_ABS ideal-int +pkg syscall (openbsd-386), const BPF_ADD ideal-int +pkg syscall (openbsd-386), const BPF_ALIGNMENT ideal-int +pkg syscall (openbsd-386), const BPF_ALU ideal-int +pkg syscall (openbsd-386), const BPF_AND ideal-int +pkg syscall (openbsd-386), const BPF_B ideal-int +pkg syscall (openbsd-386), const BPF_DIRECTION_IN ideal-int +pkg syscall (openbsd-386), const BPF_DIRECTION_OUT ideal-int +pkg syscall (openbsd-386), const BPF_DIV ideal-int +pkg syscall (openbsd-386), const BPF_H ideal-int +pkg syscall (openbsd-386), const BPF_IMM ideal-int +pkg syscall (openbsd-386), const BPF_IND ideal-int +pkg syscall (openbsd-386), const BPF_JA ideal-int +pkg syscall (openbsd-386), const BPF_JEQ ideal-int +pkg syscall (openbsd-386), const BPF_JGE ideal-int +pkg syscall (openbsd-386), const BPF_JGT ideal-int +pkg syscall (openbsd-386), const BPF_JMP ideal-int +pkg syscall (openbsd-386), const BPF_JSET ideal-int +pkg syscall (openbsd-386), const BPF_K ideal-int +pkg syscall (openbsd-386), const BPF_LD ideal-int +pkg syscall (openbsd-386), const BPF_LDX ideal-int +pkg syscall (openbsd-386), const BPF_LEN ideal-int +pkg syscall (openbsd-386), const BPF_LSH ideal-int +pkg syscall (openbsd-386), const BPF_MAJOR_VERSION ideal-int +pkg syscall (openbsd-386), const BPF_MAXBUFSIZE ideal-int +pkg syscall (openbsd-386), const BPF_MAXINSNS ideal-int +pkg syscall (openbsd-386), const BPF_MEM ideal-int +pkg syscall (openbsd-386), const BPF_MEMWORDS ideal-int +pkg syscall (openbsd-386), const BPF_MINBUFSIZE ideal-int +pkg syscall (openbsd-386), const BPF_MINOR_VERSION ideal-int +pkg syscall (openbsd-386), const BPF_MISC ideal-int +pkg syscall (openbsd-386), const BPF_MSH ideal-int +pkg syscall (openbsd-386), const BPF_MUL ideal-int +pkg syscall (openbsd-386), const BPF_NEG ideal-int +pkg syscall (openbsd-386), const BPF_OR ideal-int +pkg syscall (openbsd-386), const BPF_RELEASE ideal-int +pkg syscall (openbsd-386), const BPF_RET ideal-int +pkg syscall (openbsd-386), const BPF_RSH ideal-int +pkg syscall (openbsd-386), const BPF_ST ideal-int +pkg syscall (openbsd-386), const BPF_STX ideal-int +pkg syscall (openbsd-386), const BPF_SUB ideal-int +pkg syscall (openbsd-386), const BPF_TAX ideal-int +pkg syscall (openbsd-386), const BPF_TXA ideal-int +pkg syscall (openbsd-386), const BPF_W ideal-int +pkg syscall (openbsd-386), const BPF_X ideal-int +pkg syscall (openbsd-386), const BRKINT ideal-int +pkg syscall (openbsd-386), const CFLUSH ideal-int +pkg syscall (openbsd-386), const CLOCAL ideal-int +pkg syscall (openbsd-386), const CREAD ideal-int +pkg syscall (openbsd-386), const CS5 ideal-int +pkg syscall (openbsd-386), const CS6 ideal-int +pkg syscall (openbsd-386), const CS7 ideal-int +pkg syscall (openbsd-386), const CS8 ideal-int +pkg syscall (openbsd-386), const CSIZE ideal-int +pkg syscall (openbsd-386), const CSTART ideal-int +pkg syscall (openbsd-386), const CSTATUS ideal-int +pkg syscall (openbsd-386), const CSTOP ideal-int +pkg syscall (openbsd-386), const CSTOPB ideal-int +pkg syscall (openbsd-386), const CSUSP ideal-int +pkg syscall (openbsd-386), const CTL_MAXNAME ideal-int +pkg syscall (openbsd-386), const CTL_NET ideal-int +pkg syscall (openbsd-386), const DIOCOSFPFLUSH ideal-int +pkg syscall (openbsd-386), const DLT_ARCNET ideal-int +pkg syscall (openbsd-386), const DLT_ATM_RFC1483 ideal-int +pkg syscall (openbsd-386), const DLT_AX25 ideal-int +pkg syscall (openbsd-386), const DLT_CHAOS ideal-int +pkg syscall (openbsd-386), const DLT_C_HDLC ideal-int +pkg syscall (openbsd-386), const DLT_EN10MB ideal-int +pkg syscall (openbsd-386), const DLT_EN3MB ideal-int +pkg syscall (openbsd-386), const DLT_ENC ideal-int +pkg syscall (openbsd-386), const DLT_FDDI ideal-int +pkg syscall (openbsd-386), const DLT_IEEE802 ideal-int +pkg syscall (openbsd-386), const DLT_IEEE802_11 ideal-int +pkg syscall (openbsd-386), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (openbsd-386), const DLT_LOOP ideal-int +pkg syscall (openbsd-386), const DLT_MPLS ideal-int +pkg syscall (openbsd-386), const DLT_NULL ideal-int +pkg syscall (openbsd-386), const DLT_PFLOG ideal-int +pkg syscall (openbsd-386), const DLT_PFSYNC ideal-int +pkg syscall (openbsd-386), const DLT_PPP ideal-int +pkg syscall (openbsd-386), const DLT_PPP_BSDOS ideal-int +pkg syscall (openbsd-386), const DLT_PPP_ETHER ideal-int +pkg syscall (openbsd-386), const DLT_PPP_SERIAL ideal-int +pkg syscall (openbsd-386), const DLT_PRONET ideal-int +pkg syscall (openbsd-386), const DLT_RAW ideal-int +pkg syscall (openbsd-386), const DLT_SLIP ideal-int +pkg syscall (openbsd-386), const DLT_SLIP_BSDOS ideal-int +pkg syscall (openbsd-386), const DT_BLK ideal-int +pkg syscall (openbsd-386), const DT_CHR ideal-int +pkg syscall (openbsd-386), const DT_DIR ideal-int +pkg syscall (openbsd-386), const DT_FIFO ideal-int +pkg syscall (openbsd-386), const DT_LNK ideal-int +pkg syscall (openbsd-386), const DT_REG ideal-int +pkg syscall (openbsd-386), const DT_SOCK ideal-int +pkg syscall (openbsd-386), const DT_UNKNOWN ideal-int +pkg syscall (openbsd-386), const EAUTH Errno +pkg syscall (openbsd-386), const EBADRPC Errno +pkg syscall (openbsd-386), const ECHO ideal-int +pkg syscall (openbsd-386), const ECHOCTL ideal-int +pkg syscall (openbsd-386), const ECHOE ideal-int +pkg syscall (openbsd-386), const ECHOK ideal-int +pkg syscall (openbsd-386), const ECHOKE ideal-int +pkg syscall (openbsd-386), const ECHONL ideal-int +pkg syscall (openbsd-386), const ECHOPRT ideal-int +pkg syscall (openbsd-386), const EFTYPE Errno +pkg syscall (openbsd-386), const EIPSEC Errno +pkg syscall (openbsd-386), const ELAST Errno +pkg syscall (openbsd-386), const EMEDIUMTYPE Errno +pkg syscall (openbsd-386), const EMT_TAGOVF ideal-int +pkg syscall (openbsd-386), const EMUL_ENABLED ideal-int +pkg syscall (openbsd-386), const EMUL_NATIVE ideal-int +pkg syscall (openbsd-386), const ENDRUNDISC ideal-int +pkg syscall (openbsd-386), const ENEEDAUTH Errno +pkg syscall (openbsd-386), const ENOATTR Errno +pkg syscall (openbsd-386), const ENOMEDIUM Errno +pkg syscall (openbsd-386), const EPROCLIM Errno +pkg syscall (openbsd-386), const EPROCUNAVAIL Errno +pkg syscall (openbsd-386), const EPROGMISMATCH Errno +pkg syscall (openbsd-386), const EPROGUNAVAIL Errno +pkg syscall (openbsd-386), const ERPCMISMATCH Errno +pkg syscall (openbsd-386), const ETHERMIN ideal-int +pkg syscall (openbsd-386), const ETHERMTU ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_8023 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AARP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ACCTON ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AEONIC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ALPHA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AMBER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AOE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_APOLLO ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ARP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ATALK ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ATT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_AXIS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_BOFL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_CHAOS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_CRONUS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DCA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DDE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DEBNI ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECAM ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECCUST ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECDNS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECDTS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECLAST ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECLTM ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DELTACON ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_DSMD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ECMA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_ES ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_FLIP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_FRARP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_GENDYN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_HAYES ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_HITACHI ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_HP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IMLBL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IPAS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IPV6 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IPX ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_KALPANA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LAT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LBACK ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LITTLE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LLDP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MATRA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MAX ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MERIT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MICP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MOPDL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MOPRC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MPLS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_MUMPS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPDG ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPRST ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NBS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NCD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NESTAR ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NOVELL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NSAT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_OS9 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_OS9NET ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PACER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PAE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PCS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PLANNING ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PPP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PPPOE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PUP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_PUPAT ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_QINQ ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RACAL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RAWFR ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RCL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RDP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_RETIX ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_REVARP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SCA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SECTRA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SGITW ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SIMNET ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SLOW ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SNA ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SNMP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SONIX ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SPIDER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_SPRITE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_STP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TALARIS ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TCPSM ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TEC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TIGAN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TRAIL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBBST ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBDL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBNIU ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_UBNMC ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VALID ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VARIAN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VAXELN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VEECO ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VEXP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VGLAB ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VINES ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VITAL ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VLAN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VPROD ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_X25 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_X75 ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_XNSSM ideal-int +pkg syscall (openbsd-386), const ETHERTYPE_XTP ideal-int +pkg syscall (openbsd-386), const ETHER_ADDR_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_ALIGN ideal-int +pkg syscall (openbsd-386), const ETHER_CRC_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (openbsd-386), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (openbsd-386), const ETHER_HDR_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_MAX_DIX_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_MAX_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_MIN_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_TYPE_LEN ideal-int +pkg syscall (openbsd-386), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (openbsd-386), const EVFILT_AIO ideal-int +pkg syscall (openbsd-386), const EVFILT_PROC ideal-int +pkg syscall (openbsd-386), const EVFILT_READ ideal-int +pkg syscall (openbsd-386), const EVFILT_SIGNAL ideal-int +pkg syscall (openbsd-386), const EVFILT_SYSCOUNT ideal-int +pkg syscall (openbsd-386), const EVFILT_TIMER ideal-int +pkg syscall (openbsd-386), const EVFILT_VNODE ideal-int +pkg syscall (openbsd-386), const EVFILT_WRITE ideal-int +pkg syscall (openbsd-386), const EV_ADD ideal-int +pkg syscall (openbsd-386), const EV_CLEAR ideal-int +pkg syscall (openbsd-386), const EV_DELETE ideal-int +pkg syscall (openbsd-386), const EV_DISABLE ideal-int +pkg syscall (openbsd-386), const EV_ENABLE ideal-int +pkg syscall (openbsd-386), const EV_EOF ideal-int +pkg syscall (openbsd-386), const EV_ERROR ideal-int +pkg syscall (openbsd-386), const EV_FLAG1 ideal-int +pkg syscall (openbsd-386), const EV_ONESHOT ideal-int +pkg syscall (openbsd-386), const EV_SYSFLAGS ideal-int +pkg syscall (openbsd-386), const EXTA ideal-int +pkg syscall (openbsd-386), const EXTB ideal-int +pkg syscall (openbsd-386), const EXTPROC ideal-int +pkg syscall (openbsd-386), const FD_CLOEXEC ideal-int +pkg syscall (openbsd-386), const FD_SETSIZE ideal-int +pkg syscall (openbsd-386), const FLUSHO ideal-int +pkg syscall (openbsd-386), const F_DUPFD ideal-int +pkg syscall (openbsd-386), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (openbsd-386), const F_GETFD ideal-int +pkg syscall (openbsd-386), const F_GETFL ideal-int +pkg syscall (openbsd-386), const F_GETLK ideal-int +pkg syscall (openbsd-386), const F_GETOWN ideal-int +pkg syscall (openbsd-386), const F_OK ideal-int +pkg syscall (openbsd-386), const F_RDLCK ideal-int +pkg syscall (openbsd-386), const F_SETFD ideal-int +pkg syscall (openbsd-386), const F_SETFL ideal-int +pkg syscall (openbsd-386), const F_SETLK ideal-int +pkg syscall (openbsd-386), const F_SETLKW ideal-int +pkg syscall (openbsd-386), const F_SETOWN ideal-int +pkg syscall (openbsd-386), const F_UNLCK ideal-int +pkg syscall (openbsd-386), const F_WRLCK ideal-int +pkg syscall (openbsd-386), const HUPCL ideal-int +pkg syscall (openbsd-386), const ICANON ideal-int +pkg syscall (openbsd-386), const ICMP6_FILTER = 18 +pkg syscall (openbsd-386), const ICMP6_FILTER ideal-int +pkg syscall (openbsd-386), const ICRNL ideal-int +pkg syscall (openbsd-386), const IEXTEN ideal-int +pkg syscall (openbsd-386), const IFAN_ARRIVAL ideal-int +pkg syscall (openbsd-386), const IFAN_DEPARTURE ideal-int +pkg syscall (openbsd-386), const IFA_ROUTE ideal-int +pkg syscall (openbsd-386), const IFF_ALLMULTI ideal-int +pkg syscall (openbsd-386), const IFF_CANTCHANGE ideal-int +pkg syscall (openbsd-386), const IFF_DEBUG ideal-int +pkg syscall (openbsd-386), const IFF_LINK0 ideal-int +pkg syscall (openbsd-386), const IFF_LINK1 ideal-int +pkg syscall (openbsd-386), const IFF_LINK2 ideal-int +pkg syscall (openbsd-386), const IFF_NOARP ideal-int +pkg syscall (openbsd-386), const IFF_NOTRAILERS ideal-int +pkg syscall (openbsd-386), const IFF_OACTIVE ideal-int +pkg syscall (openbsd-386), const IFF_POINTOPOINT ideal-int +pkg syscall (openbsd-386), const IFF_PROMISC ideal-int +pkg syscall (openbsd-386), const IFF_RUNNING ideal-int +pkg syscall (openbsd-386), const IFF_SIMPLEX ideal-int +pkg syscall (openbsd-386), const IFNAMSIZ ideal-int +pkg syscall (openbsd-386), const IFT_1822 ideal-int +pkg syscall (openbsd-386), const IFT_A12MPPSWITCH ideal-int +pkg syscall (openbsd-386), const IFT_AAL2 ideal-int +pkg syscall (openbsd-386), const IFT_AAL5 ideal-int +pkg syscall (openbsd-386), const IFT_ADSL ideal-int +pkg syscall (openbsd-386), const IFT_AFLANE8023 ideal-int +pkg syscall (openbsd-386), const IFT_AFLANE8025 ideal-int +pkg syscall (openbsd-386), const IFT_ARAP ideal-int +pkg syscall (openbsd-386), const IFT_ARCNET ideal-int +pkg syscall (openbsd-386), const IFT_ARCNETPLUS ideal-int +pkg syscall (openbsd-386), const IFT_ASYNC ideal-int +pkg syscall (openbsd-386), const IFT_ATM ideal-int +pkg syscall (openbsd-386), const IFT_ATMDXI ideal-int +pkg syscall (openbsd-386), const IFT_ATMFUNI ideal-int +pkg syscall (openbsd-386), const IFT_ATMIMA ideal-int +pkg syscall (openbsd-386), const IFT_ATMLOGICAL ideal-int +pkg syscall (openbsd-386), const IFT_ATMRADIO ideal-int +pkg syscall (openbsd-386), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (openbsd-386), const IFT_ATMVCIENDPT ideal-int +pkg syscall (openbsd-386), const IFT_ATMVIRTUAL ideal-int +pkg syscall (openbsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (openbsd-386), const IFT_BLUETOOTH ideal-int +pkg syscall (openbsd-386), const IFT_BRIDGE ideal-int +pkg syscall (openbsd-386), const IFT_BSC ideal-int +pkg syscall (openbsd-386), const IFT_CARP ideal-int +pkg syscall (openbsd-386), const IFT_CCTEMUL ideal-int +pkg syscall (openbsd-386), const IFT_CEPT ideal-int +pkg syscall (openbsd-386), const IFT_CES ideal-int +pkg syscall (openbsd-386), const IFT_CHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_CNR ideal-int +pkg syscall (openbsd-386), const IFT_COFFEE ideal-int +pkg syscall (openbsd-386), const IFT_COMPOSITELINK ideal-int +pkg syscall (openbsd-386), const IFT_DCN ideal-int +pkg syscall (openbsd-386), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (openbsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_DLSW ideal-int +pkg syscall (openbsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_DS0 ideal-int +pkg syscall (openbsd-386), const IFT_DS0BUNDLE ideal-int +pkg syscall (openbsd-386), const IFT_DS1FDL ideal-int +pkg syscall (openbsd-386), const IFT_DS3 ideal-int +pkg syscall (openbsd-386), const IFT_DTM ideal-int +pkg syscall (openbsd-386), const IFT_DUMMY ideal-int +pkg syscall (openbsd-386), const IFT_DVBASILN ideal-int +pkg syscall (openbsd-386), const IFT_DVBASIOUT ideal-int +pkg syscall (openbsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (openbsd-386), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_ECONET ideal-int +pkg syscall (openbsd-386), const IFT_ENC ideal-int +pkg syscall (openbsd-386), const IFT_EON ideal-int +pkg syscall (openbsd-386), const IFT_EPLRS ideal-int +pkg syscall (openbsd-386), const IFT_ESCON ideal-int +pkg syscall (openbsd-386), const IFT_ETHER ideal-int +pkg syscall (openbsd-386), const IFT_FAITH ideal-int +pkg syscall (openbsd-386), const IFT_FAST ideal-int +pkg syscall (openbsd-386), const IFT_FASTETHER ideal-int +pkg syscall (openbsd-386), const IFT_FASTETHERFX ideal-int +pkg syscall (openbsd-386), const IFT_FDDI ideal-int +pkg syscall (openbsd-386), const IFT_FIBRECHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (openbsd-386), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (openbsd-386), const IFT_FRDLCIENDPT ideal-int +pkg syscall (openbsd-386), const IFT_FRELAY ideal-int +pkg syscall (openbsd-386), const IFT_FRELAYDCE ideal-int +pkg syscall (openbsd-386), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (openbsd-386), const IFT_FRFORWARD ideal-int +pkg syscall (openbsd-386), const IFT_G703AT2MB ideal-int +pkg syscall (openbsd-386), const IFT_G703AT64K ideal-int +pkg syscall (openbsd-386), const IFT_GIF ideal-int +pkg syscall (openbsd-386), const IFT_GIGABITETHERNET ideal-int +pkg syscall (openbsd-386), const IFT_GR303IDT ideal-int +pkg syscall (openbsd-386), const IFT_GR303RDT ideal-int +pkg syscall (openbsd-386), const IFT_H323GATEKEEPER ideal-int +pkg syscall (openbsd-386), const IFT_H323PROXY ideal-int +pkg syscall (openbsd-386), const IFT_HDH1822 ideal-int +pkg syscall (openbsd-386), const IFT_HDLC ideal-int +pkg syscall (openbsd-386), const IFT_HDSL2 ideal-int +pkg syscall (openbsd-386), const IFT_HIPERLAN2 ideal-int +pkg syscall (openbsd-386), const IFT_HIPPI ideal-int +pkg syscall (openbsd-386), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (openbsd-386), const IFT_HOSTPAD ideal-int +pkg syscall (openbsd-386), const IFT_HSSI ideal-int +pkg syscall (openbsd-386), const IFT_HY ideal-int +pkg syscall (openbsd-386), const IFT_IBM370PARCHAN ideal-int +pkg syscall (openbsd-386), const IFT_IDSL ideal-int +pkg syscall (openbsd-386), const IFT_IEEE1394 ideal-int +pkg syscall (openbsd-386), const IFT_IEEE80211 ideal-int +pkg syscall (openbsd-386), const IFT_IEEE80212 ideal-int +pkg syscall (openbsd-386), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (openbsd-386), const IFT_IFGSN ideal-int +pkg syscall (openbsd-386), const IFT_IMT ideal-int +pkg syscall (openbsd-386), const IFT_INFINIBAND ideal-int +pkg syscall (openbsd-386), const IFT_INTERLEAVE ideal-int +pkg syscall (openbsd-386), const IFT_IP ideal-int +pkg syscall (openbsd-386), const IFT_IPFORWARD ideal-int +pkg syscall (openbsd-386), const IFT_IPOVERATM ideal-int +pkg syscall (openbsd-386), const IFT_IPOVERCDLC ideal-int +pkg syscall (openbsd-386), const IFT_IPOVERCLAW ideal-int +pkg syscall (openbsd-386), const IFT_IPSWITCH ideal-int +pkg syscall (openbsd-386), const IFT_ISDN ideal-int +pkg syscall (openbsd-386), const IFT_ISDNBASIC ideal-int +pkg syscall (openbsd-386), const IFT_ISDNPRIMARY ideal-int +pkg syscall (openbsd-386), const IFT_ISDNS ideal-int +pkg syscall (openbsd-386), const IFT_ISDNU ideal-int +pkg syscall (openbsd-386), const IFT_ISO88022LLC ideal-int +pkg syscall (openbsd-386), const IFT_ISO88023 ideal-int +pkg syscall (openbsd-386), const IFT_ISO88024 ideal-int +pkg syscall (openbsd-386), const IFT_ISO88025 ideal-int +pkg syscall (openbsd-386), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (openbsd-386), const IFT_ISO88025DTR ideal-int +pkg syscall (openbsd-386), const IFT_ISO88025FIBER ideal-int +pkg syscall (openbsd-386), const IFT_ISO88026 ideal-int +pkg syscall (openbsd-386), const IFT_ISUP ideal-int +pkg syscall (openbsd-386), const IFT_L2VLAN ideal-int +pkg syscall (openbsd-386), const IFT_L3IPVLAN ideal-int +pkg syscall (openbsd-386), const IFT_L3IPXVLAN ideal-int +pkg syscall (openbsd-386), const IFT_LAPB ideal-int +pkg syscall (openbsd-386), const IFT_LAPD ideal-int +pkg syscall (openbsd-386), const IFT_LAPF ideal-int +pkg syscall (openbsd-386), const IFT_LINEGROUP ideal-int +pkg syscall (openbsd-386), const IFT_LOCALTALK ideal-int +pkg syscall (openbsd-386), const IFT_LOOP ideal-int +pkg syscall (openbsd-386), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (openbsd-386), const IFT_MFSIGLINK ideal-int +pkg syscall (openbsd-386), const IFT_MIOX25 ideal-int +pkg syscall (openbsd-386), const IFT_MODEM ideal-int +pkg syscall (openbsd-386), const IFT_MPC ideal-int +pkg syscall (openbsd-386), const IFT_MPLS ideal-int +pkg syscall (openbsd-386), const IFT_MPLSTUNNEL ideal-int +pkg syscall (openbsd-386), const IFT_MSDSL ideal-int +pkg syscall (openbsd-386), const IFT_MVL ideal-int +pkg syscall (openbsd-386), const IFT_MYRINET ideal-int +pkg syscall (openbsd-386), const IFT_NFAS ideal-int +pkg syscall (openbsd-386), const IFT_NSIP ideal-int +pkg syscall (openbsd-386), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (openbsd-386), const IFT_OTHER ideal-int +pkg syscall (openbsd-386), const IFT_P10 ideal-int +pkg syscall (openbsd-386), const IFT_P80 ideal-int +pkg syscall (openbsd-386), const IFT_PARA ideal-int +pkg syscall (openbsd-386), const IFT_PFLOG ideal-int +pkg syscall (openbsd-386), const IFT_PFLOW ideal-int +pkg syscall (openbsd-386), const IFT_PFSYNC ideal-int +pkg syscall (openbsd-386), const IFT_PLC ideal-int +pkg syscall (openbsd-386), const IFT_PON155 ideal-int +pkg syscall (openbsd-386), const IFT_PON622 ideal-int +pkg syscall (openbsd-386), const IFT_POS ideal-int +pkg syscall (openbsd-386), const IFT_PPP ideal-int +pkg syscall (openbsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (openbsd-386), const IFT_PROPATM ideal-int +pkg syscall (openbsd-386), const IFT_PROPBWAP2MP ideal-int +pkg syscall (openbsd-386), const IFT_PROPCNLS ideal-int +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (openbsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (openbsd-386), const IFT_PROPMUX ideal-int +pkg syscall (openbsd-386), const IFT_PROPVIRTUAL ideal-int +pkg syscall (openbsd-386), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (openbsd-386), const IFT_PTPSERIAL ideal-int +pkg syscall (openbsd-386), const IFT_PVC ideal-int +pkg syscall (openbsd-386), const IFT_Q2931 ideal-int +pkg syscall (openbsd-386), const IFT_QLLC ideal-int +pkg syscall (openbsd-386), const IFT_RADIOMAC ideal-int +pkg syscall (openbsd-386), const IFT_RADSL ideal-int +pkg syscall (openbsd-386), const IFT_REACHDSL ideal-int +pkg syscall (openbsd-386), const IFT_RFC1483 ideal-int +pkg syscall (openbsd-386), const IFT_RS232 ideal-int +pkg syscall (openbsd-386), const IFT_RSRB ideal-int +pkg syscall (openbsd-386), const IFT_SDLC ideal-int +pkg syscall (openbsd-386), const IFT_SDSL ideal-int +pkg syscall (openbsd-386), const IFT_SHDSL ideal-int +pkg syscall (openbsd-386), const IFT_SIP ideal-int +pkg syscall (openbsd-386), const IFT_SIPSIG ideal-int +pkg syscall (openbsd-386), const IFT_SIPTG ideal-int +pkg syscall (openbsd-386), const IFT_SLIP ideal-int +pkg syscall (openbsd-386), const IFT_SMDSDXI ideal-int +pkg syscall (openbsd-386), const IFT_SMDSICIP ideal-int +pkg syscall (openbsd-386), const IFT_SONET ideal-int +pkg syscall (openbsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (openbsd-386), const IFT_SONETPATH ideal-int +pkg syscall (openbsd-386), const IFT_SONETVT ideal-int +pkg syscall (openbsd-386), const IFT_SRP ideal-int +pkg syscall (openbsd-386), const IFT_SS7SIGLINK ideal-int +pkg syscall (openbsd-386), const IFT_STACKTOSTACK ideal-int +pkg syscall (openbsd-386), const IFT_STARLAN ideal-int +pkg syscall (openbsd-386), const IFT_T1 ideal-int +pkg syscall (openbsd-386), const IFT_TDLC ideal-int +pkg syscall (openbsd-386), const IFT_TELINK ideal-int +pkg syscall (openbsd-386), const IFT_TERMPAD ideal-int +pkg syscall (openbsd-386), const IFT_TR008 ideal-int +pkg syscall (openbsd-386), const IFT_TRANSPHDLC ideal-int +pkg syscall (openbsd-386), const IFT_TUNNEL ideal-int +pkg syscall (openbsd-386), const IFT_ULTRA ideal-int +pkg syscall (openbsd-386), const IFT_USB ideal-int +pkg syscall (openbsd-386), const IFT_V11 ideal-int +pkg syscall (openbsd-386), const IFT_V35 ideal-int +pkg syscall (openbsd-386), const IFT_V36 ideal-int +pkg syscall (openbsd-386), const IFT_V37 ideal-int +pkg syscall (openbsd-386), const IFT_VDSL ideal-int +pkg syscall (openbsd-386), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (openbsd-386), const IFT_VIRTUALTG ideal-int +pkg syscall (openbsd-386), const IFT_VOICEDID ideal-int +pkg syscall (openbsd-386), const IFT_VOICEEM ideal-int +pkg syscall (openbsd-386), const IFT_VOICEEMFGD ideal-int +pkg syscall (openbsd-386), const IFT_VOICEENCAP ideal-int +pkg syscall (openbsd-386), const IFT_VOICEFGDEANA ideal-int +pkg syscall (openbsd-386), const IFT_VOICEFXO ideal-int +pkg syscall (openbsd-386), const IFT_VOICEFXS ideal-int +pkg syscall (openbsd-386), const IFT_VOICEOVERATM ideal-int +pkg syscall (openbsd-386), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (openbsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (openbsd-386), const IFT_VOICEOVERIP ideal-int +pkg syscall (openbsd-386), const IFT_X213 ideal-int +pkg syscall (openbsd-386), const IFT_X25 ideal-int +pkg syscall (openbsd-386), const IFT_X25DDN ideal-int +pkg syscall (openbsd-386), const IFT_X25HUNTGROUP ideal-int +pkg syscall (openbsd-386), const IFT_X25MLP ideal-int +pkg syscall (openbsd-386), const IFT_X25PLE ideal-int +pkg syscall (openbsd-386), const IFT_XETHER ideal-int +pkg syscall (openbsd-386), const IGNBRK ideal-int +pkg syscall (openbsd-386), const IGNCR ideal-int +pkg syscall (openbsd-386), const IGNPAR ideal-int +pkg syscall (openbsd-386), const IMAXBEL ideal-int +pkg syscall (openbsd-386), const INLCR ideal-int +pkg syscall (openbsd-386), const INPCK ideal-int +pkg syscall (openbsd-386), const IN_CLASSA_HOST ideal-int +pkg syscall (openbsd-386), const IN_CLASSA_MAX ideal-int +pkg syscall (openbsd-386), const IN_CLASSA_NET ideal-int +pkg syscall (openbsd-386), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (openbsd-386), const IN_CLASSB_HOST ideal-int +pkg syscall (openbsd-386), const IN_CLASSB_MAX ideal-int +pkg syscall (openbsd-386), const IN_CLASSB_NET ideal-int +pkg syscall (openbsd-386), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (openbsd-386), const IN_CLASSC_HOST ideal-int +pkg syscall (openbsd-386), const IN_CLASSC_NET ideal-int +pkg syscall (openbsd-386), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (openbsd-386), const IN_CLASSD_HOST ideal-int +pkg syscall (openbsd-386), const IN_CLASSD_NET ideal-int +pkg syscall (openbsd-386), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (openbsd-386), const IN_LOOPBACKNET ideal-int +pkg syscall (openbsd-386), const IN_RFC3021_HOST ideal-int +pkg syscall (openbsd-386), const IN_RFC3021_NET ideal-int +pkg syscall (openbsd-386), const IN_RFC3021_NSHIFT ideal-int +pkg syscall (openbsd-386), const IPPROTO_AH ideal-int +pkg syscall (openbsd-386), const IPPROTO_CARP ideal-int +pkg syscall (openbsd-386), const IPPROTO_DIVERT ideal-int +pkg syscall (openbsd-386), const IPPROTO_DONE ideal-int +pkg syscall (openbsd-386), const IPPROTO_DSTOPTS ideal-int +pkg syscall (openbsd-386), const IPPROTO_EGP ideal-int +pkg syscall (openbsd-386), const IPPROTO_ENCAP ideal-int +pkg syscall (openbsd-386), const IPPROTO_EON ideal-int +pkg syscall (openbsd-386), const IPPROTO_ESP ideal-int +pkg syscall (openbsd-386), const IPPROTO_ETHERIP ideal-int +pkg syscall (openbsd-386), const IPPROTO_FRAGMENT ideal-int +pkg syscall (openbsd-386), const IPPROTO_GGP ideal-int +pkg syscall (openbsd-386), const IPPROTO_GRE ideal-int +pkg syscall (openbsd-386), const IPPROTO_HOPOPTS ideal-int +pkg syscall (openbsd-386), const IPPROTO_ICMP ideal-int +pkg syscall (openbsd-386), const IPPROTO_ICMPV6 ideal-int +pkg syscall (openbsd-386), const IPPROTO_IDP ideal-int +pkg syscall (openbsd-386), const IPPROTO_IGMP ideal-int +pkg syscall (openbsd-386), const IPPROTO_IPCOMP ideal-int +pkg syscall (openbsd-386), const IPPROTO_IPIP ideal-int +pkg syscall (openbsd-386), const IPPROTO_IPV4 ideal-int +pkg syscall (openbsd-386), const IPPROTO_MAX ideal-int +pkg syscall (openbsd-386), const IPPROTO_MAXID ideal-int +pkg syscall (openbsd-386), const IPPROTO_MOBILE ideal-int +pkg syscall (openbsd-386), const IPPROTO_MPLS ideal-int +pkg syscall (openbsd-386), const IPPROTO_NONE ideal-int +pkg syscall (openbsd-386), const IPPROTO_PFSYNC ideal-int +pkg syscall (openbsd-386), const IPPROTO_PIM ideal-int +pkg syscall (openbsd-386), const IPPROTO_PUP ideal-int +pkg syscall (openbsd-386), const IPPROTO_RAW ideal-int +pkg syscall (openbsd-386), const IPPROTO_ROUTING ideal-int +pkg syscall (openbsd-386), const IPPROTO_RSVP ideal-int +pkg syscall (openbsd-386), const IPPROTO_TP ideal-int +pkg syscall (openbsd-386), const IPV6_AUTH_LEVEL ideal-int +pkg syscall (openbsd-386), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (openbsd-386), const IPV6_CHECKSUM ideal-int +pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (openbsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-386), const IPV6_DEFHLIM ideal-int +pkg syscall (openbsd-386), const IPV6_DONTFRAG ideal-int +pkg syscall (openbsd-386), const IPV6_DSTOPTS ideal-int +pkg syscall (openbsd-386), const IPV6_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-386), const IPV6_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-386), const IPV6_FAITH ideal-int +pkg syscall (openbsd-386), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (openbsd-386), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (openbsd-386), const IPV6_FRAGTTL ideal-int +pkg syscall (openbsd-386), const IPV6_HLIMDEC ideal-int +pkg syscall (openbsd-386), const IPV6_HOPLIMIT ideal-int +pkg syscall (openbsd-386), const IPV6_HOPOPTS ideal-int +pkg syscall (openbsd-386), const IPV6_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-386), const IPV6_MAXHLIM ideal-int +pkg syscall (openbsd-386), const IPV6_MAXPACKET ideal-int +pkg syscall (openbsd-386), const IPV6_MMTU ideal-int +pkg syscall (openbsd-386), const IPV6_NEXTHOP ideal-int +pkg syscall (openbsd-386), const IPV6_OPTIONS ideal-int +pkg syscall (openbsd-386), const IPV6_PATHMTU ideal-int +pkg syscall (openbsd-386), const IPV6_PIPEX ideal-int +pkg syscall (openbsd-386), const IPV6_PKTINFO ideal-int +pkg syscall (openbsd-386), const IPV6_PORTRANGE ideal-int +pkg syscall (openbsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-386), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-386), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-386), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (openbsd-386), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (openbsd-386), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (openbsd-386), const IPV6_RECVPATHMTU ideal-int +pkg syscall (openbsd-386), const IPV6_RECVPKTINFO ideal-int +pkg syscall (openbsd-386), const IPV6_RECVRTHDR ideal-int +pkg syscall (openbsd-386), const IPV6_RECVTCLASS ideal-int +pkg syscall (openbsd-386), const IPV6_RTABLE ideal-int +pkg syscall (openbsd-386), const IPV6_RTHDR ideal-int +pkg syscall (openbsd-386), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (openbsd-386), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (openbsd-386), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (openbsd-386), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (openbsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (openbsd-386), const IPV6_TCLASS ideal-int +pkg syscall (openbsd-386), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (openbsd-386), const IPV6_VERSION ideal-int +pkg syscall (openbsd-386), const IPV6_VERSION_MASK ideal-int +pkg syscall (openbsd-386), const IP_AUTH_LEVEL ideal-int +pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (openbsd-386), const IP_DF ideal-int +pkg syscall (openbsd-386), const IP_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-386), const IP_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-386), const IP_HDRINCL ideal-int +pkg syscall (openbsd-386), const IP_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-386), const IP_IPSECFLOWINFO ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_AUTH ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_CRED ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_LOCAL_ID ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_AUTH ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_CRED ideal-int +pkg syscall (openbsd-386), const IP_IPSEC_REMOTE_ID ideal-int +pkg syscall (openbsd-386), const IP_MAXPACKET ideal-int +pkg syscall (openbsd-386), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (openbsd-386), const IP_MF ideal-int +pkg syscall (openbsd-386), const IP_MINTTL ideal-int +pkg syscall (openbsd-386), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (openbsd-386), const IP_MSS ideal-int +pkg syscall (openbsd-386), const IP_OFFMASK ideal-int +pkg syscall (openbsd-386), const IP_OPTIONS ideal-int +pkg syscall (openbsd-386), const IP_PIPEX ideal-int +pkg syscall (openbsd-386), const IP_PORTRANGE ideal-int +pkg syscall (openbsd-386), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-386), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-386), const IP_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-386), const IP_RECVDSTADDR ideal-int +pkg syscall (openbsd-386), const IP_RECVDSTPORT ideal-int +pkg syscall (openbsd-386), const IP_RECVIF ideal-int +pkg syscall (openbsd-386), const IP_RECVOPTS ideal-int +pkg syscall (openbsd-386), const IP_RECVRETOPTS ideal-int +pkg syscall (openbsd-386), const IP_RECVRTABLE ideal-int +pkg syscall (openbsd-386), const IP_RECVTTL ideal-int +pkg syscall (openbsd-386), const IP_RETOPTS ideal-int +pkg syscall (openbsd-386), const IP_RF ideal-int +pkg syscall (openbsd-386), const IP_RTABLE ideal-int +pkg syscall (openbsd-386), const ISIG ideal-int +pkg syscall (openbsd-386), const ISTRIP ideal-int +pkg syscall (openbsd-386), const IXANY ideal-int +pkg syscall (openbsd-386), const IXOFF ideal-int +pkg syscall (openbsd-386), const IXON ideal-int +pkg syscall (openbsd-386), const LCNT_OVERLOAD_FLUSH ideal-int +pkg syscall (openbsd-386), const LOCK_EX ideal-int +pkg syscall (openbsd-386), const LOCK_NB ideal-int +pkg syscall (openbsd-386), const LOCK_SH ideal-int +pkg syscall (openbsd-386), const LOCK_UN ideal-int +pkg syscall (openbsd-386), const MSG_BCAST ideal-int +pkg syscall (openbsd-386), const MSG_CTRUNC ideal-int +pkg syscall (openbsd-386), const MSG_DONTROUTE ideal-int +pkg syscall (openbsd-386), const MSG_DONTWAIT ideal-int +pkg syscall (openbsd-386), const MSG_EOR ideal-int +pkg syscall (openbsd-386), const MSG_MCAST ideal-int +pkg syscall (openbsd-386), const MSG_NOSIGNAL ideal-int +pkg syscall (openbsd-386), const MSG_OOB ideal-int +pkg syscall (openbsd-386), const MSG_PEEK ideal-int +pkg syscall (openbsd-386), const MSG_TRUNC ideal-int +pkg syscall (openbsd-386), const MSG_WAITALL ideal-int +pkg syscall (openbsd-386), const NAME_MAX ideal-int +pkg syscall (openbsd-386), const NET_RT_DUMP ideal-int +pkg syscall (openbsd-386), const NET_RT_FLAGS ideal-int +pkg syscall (openbsd-386), const NET_RT_IFLIST ideal-int +pkg syscall (openbsd-386), const NET_RT_MAXID ideal-int +pkg syscall (openbsd-386), const NET_RT_STATS ideal-int +pkg syscall (openbsd-386), const NET_RT_TABLE ideal-int +pkg syscall (openbsd-386), const NOFLSH ideal-int +pkg syscall (openbsd-386), const NOTE_ATTRIB ideal-int +pkg syscall (openbsd-386), const NOTE_CHILD ideal-int +pkg syscall (openbsd-386), const NOTE_DELETE ideal-int +pkg syscall (openbsd-386), const NOTE_EOF ideal-int +pkg syscall (openbsd-386), const NOTE_EXEC ideal-int +pkg syscall (openbsd-386), const NOTE_EXIT ideal-int +pkg syscall (openbsd-386), const NOTE_EXTEND ideal-int +pkg syscall (openbsd-386), const NOTE_FORK ideal-int +pkg syscall (openbsd-386), const NOTE_LINK ideal-int +pkg syscall (openbsd-386), const NOTE_LOWAT ideal-int +pkg syscall (openbsd-386), const NOTE_PCTRLMASK ideal-int +pkg syscall (openbsd-386), const NOTE_PDATAMASK ideal-int +pkg syscall (openbsd-386), const NOTE_RENAME ideal-int +pkg syscall (openbsd-386), const NOTE_REVOKE ideal-int +pkg syscall (openbsd-386), const NOTE_TRACK ideal-int +pkg syscall (openbsd-386), const NOTE_TRACKERR ideal-int +pkg syscall (openbsd-386), const NOTE_TRUNCATE ideal-int +pkg syscall (openbsd-386), const NOTE_WRITE ideal-int +pkg syscall (openbsd-386), const OCRNL ideal-int +pkg syscall (openbsd-386), const ONLCR ideal-int +pkg syscall (openbsd-386), const ONLRET ideal-int +pkg syscall (openbsd-386), const ONOCR ideal-int +pkg syscall (openbsd-386), const ONOEOT ideal-int +pkg syscall (openbsd-386), const OPOST ideal-int +pkg syscall (openbsd-386), const O_ACCMODE ideal-int +pkg syscall (openbsd-386), const O_DIRECTORY ideal-int +pkg syscall (openbsd-386), const O_DSYNC ideal-int +pkg syscall (openbsd-386), const O_EXLOCK ideal-int +pkg syscall (openbsd-386), const O_FSYNC ideal-int +pkg syscall (openbsd-386), const O_NDELAY ideal-int +pkg syscall (openbsd-386), const O_NOFOLLOW ideal-int +pkg syscall (openbsd-386), const O_RSYNC ideal-int +pkg syscall (openbsd-386), const O_SHLOCK ideal-int +pkg syscall (openbsd-386), const PARENB ideal-int +pkg syscall (openbsd-386), const PARMRK ideal-int +pkg syscall (openbsd-386), const PARODD ideal-int +pkg syscall (openbsd-386), const PENDIN ideal-int +pkg syscall (openbsd-386), const PF_FLUSH ideal-int +pkg syscall (openbsd-386), const PRIO_PGRP = 1 +pkg syscall (openbsd-386), const PRIO_PGRP ideal-int +pkg syscall (openbsd-386), const PRIO_PROCESS = 0 +pkg syscall (openbsd-386), const PRIO_PROCESS ideal-int +pkg syscall (openbsd-386), const PRIO_USER = 2 +pkg syscall (openbsd-386), const PRIO_USER ideal-int +pkg syscall (openbsd-386), const PTRACE_CONT ideal-int +pkg syscall (openbsd-386), const PTRACE_KILL ideal-int +pkg syscall (openbsd-386), const PTRACE_TRACEME ideal-int +pkg syscall (openbsd-386), const PT_MASK ideal-int +pkg syscall (openbsd-386), const RLIMIT_CORE ideal-int +pkg syscall (openbsd-386), const RLIMIT_CPU ideal-int +pkg syscall (openbsd-386), const RLIMIT_DATA ideal-int +pkg syscall (openbsd-386), const RLIMIT_FSIZE ideal-int +pkg syscall (openbsd-386), const RLIMIT_NOFILE ideal-int +pkg syscall (openbsd-386), const RLIMIT_STACK ideal-int +pkg syscall (openbsd-386), const RLIM_INFINITY ideal-int +pkg syscall (openbsd-386), const RTAX_AUTHOR ideal-int +pkg syscall (openbsd-386), const RTAX_BRD ideal-int +pkg syscall (openbsd-386), const RTAX_DST ideal-int +pkg syscall (openbsd-386), const RTAX_GATEWAY ideal-int +pkg syscall (openbsd-386), const RTAX_GENMASK ideal-int +pkg syscall (openbsd-386), const RTAX_IFA ideal-int +pkg syscall (openbsd-386), const RTAX_IFP ideal-int +pkg syscall (openbsd-386), const RTAX_LABEL ideal-int +pkg syscall (openbsd-386), const RTAX_MAX ideal-int +pkg syscall (openbsd-386), const RTAX_NETMASK ideal-int +pkg syscall (openbsd-386), const RTAX_SRC ideal-int +pkg syscall (openbsd-386), const RTAX_SRCMASK ideal-int +pkg syscall (openbsd-386), const RTA_AUTHOR ideal-int +pkg syscall (openbsd-386), const RTA_BRD ideal-int +pkg syscall (openbsd-386), const RTA_DST ideal-int +pkg syscall (openbsd-386), const RTA_GATEWAY ideal-int +pkg syscall (openbsd-386), const RTA_GENMASK ideal-int +pkg syscall (openbsd-386), const RTA_IFA ideal-int +pkg syscall (openbsd-386), const RTA_IFP ideal-int +pkg syscall (openbsd-386), const RTA_LABEL ideal-int +pkg syscall (openbsd-386), const RTA_NETMASK ideal-int +pkg syscall (openbsd-386), const RTA_SRC ideal-int +pkg syscall (openbsd-386), const RTA_SRCMASK ideal-int +pkg syscall (openbsd-386), const RTF_ANNOUNCE ideal-int +pkg syscall (openbsd-386), const RTF_BLACKHOLE ideal-int +pkg syscall (openbsd-386), const RTF_CLONED ideal-int +pkg syscall (openbsd-386), const RTF_CLONING ideal-int +pkg syscall (openbsd-386), const RTF_DONE ideal-int +pkg syscall (openbsd-386), const RTF_DYNAMIC ideal-int +pkg syscall (openbsd-386), const RTF_FMASK ideal-int +pkg syscall (openbsd-386), const RTF_GATEWAY ideal-int +pkg syscall (openbsd-386), const RTF_HOST ideal-int +pkg syscall (openbsd-386), const RTF_LLINFO ideal-int +pkg syscall (openbsd-386), const RTF_MASK ideal-int +pkg syscall (openbsd-386), const RTF_MODIFIED ideal-int +pkg syscall (openbsd-386), const RTF_MPATH ideal-int +pkg syscall (openbsd-386), const RTF_MPLS ideal-int +pkg syscall (openbsd-386), const RTF_PERMANENT_ARP ideal-int +pkg syscall (openbsd-386), const RTF_PROTO1 ideal-int +pkg syscall (openbsd-386), const RTF_PROTO2 ideal-int +pkg syscall (openbsd-386), const RTF_PROTO3 ideal-int +pkg syscall (openbsd-386), const RTF_REJECT ideal-int +pkg syscall (openbsd-386), const RTF_SOURCE ideal-int +pkg syscall (openbsd-386), const RTF_STATIC ideal-int +pkg syscall (openbsd-386), const RTF_TUNNEL ideal-int +pkg syscall (openbsd-386), const RTF_UP ideal-int +pkg syscall (openbsd-386), const RTF_USETRAILERS ideal-int +pkg syscall (openbsd-386), const RTF_XRESOLVE ideal-int +pkg syscall (openbsd-386), const RTM_ADD ideal-int +pkg syscall (openbsd-386), const RTM_CHANGE ideal-int +pkg syscall (openbsd-386), const RTM_DELADDR ideal-int +pkg syscall (openbsd-386), const RTM_DELETE ideal-int +pkg syscall (openbsd-386), const RTM_DESYNC ideal-int +pkg syscall (openbsd-386), const RTM_GET ideal-int +pkg syscall (openbsd-386), const RTM_IFANNOUNCE ideal-int +pkg syscall (openbsd-386), const RTM_IFINFO ideal-int +pkg syscall (openbsd-386), const RTM_LOCK ideal-int +pkg syscall (openbsd-386), const RTM_LOSING ideal-int +pkg syscall (openbsd-386), const RTM_MAXSIZE ideal-int +pkg syscall (openbsd-386), const RTM_MISS ideal-int +pkg syscall (openbsd-386), const RTM_NEWADDR ideal-int +pkg syscall (openbsd-386), const RTM_REDIRECT ideal-int +pkg syscall (openbsd-386), const RTM_RESOLVE ideal-int +pkg syscall (openbsd-386), const RTM_RTTUNIT ideal-int +pkg syscall (openbsd-386), const RTM_VERSION ideal-int +pkg syscall (openbsd-386), const RTV_EXPIRE ideal-int +pkg syscall (openbsd-386), const RTV_HOPCOUNT ideal-int +pkg syscall (openbsd-386), const RTV_MTU ideal-int +pkg syscall (openbsd-386), const RTV_RPIPE ideal-int +pkg syscall (openbsd-386), const RTV_RTT ideal-int +pkg syscall (openbsd-386), const RTV_RTTVAR ideal-int +pkg syscall (openbsd-386), const RTV_SPIPE ideal-int +pkg syscall (openbsd-386), const RTV_SSTHRESH ideal-int +pkg syscall (openbsd-386), const RT_TABLEID_MAX ideal-int +pkg syscall (openbsd-386), const RUSAGE_CHILDREN ideal-int +pkg syscall (openbsd-386), const RUSAGE_SELF ideal-int +pkg syscall (openbsd-386), const RUSAGE_THREAD ideal-int +pkg syscall (openbsd-386), const SCM_RIGHTS ideal-int +pkg syscall (openbsd-386), const SCM_TIMESTAMP ideal-int +pkg syscall (openbsd-386), const SIGCHLD Signal +pkg syscall (openbsd-386), const SIGCONT Signal +pkg syscall (openbsd-386), const SIGEMT Signal +pkg syscall (openbsd-386), const SIGINFO Signal +pkg syscall (openbsd-386), const SIGIO Signal +pkg syscall (openbsd-386), const SIGIOT Signal +pkg syscall (openbsd-386), const SIGPROF Signal +pkg syscall (openbsd-386), const SIGSTOP Signal +pkg syscall (openbsd-386), const SIGSYS Signal +pkg syscall (openbsd-386), const SIGTHR Signal +pkg syscall (openbsd-386), const SIGTSTP Signal +pkg syscall (openbsd-386), const SIGTTIN Signal +pkg syscall (openbsd-386), const SIGTTOU Signal +pkg syscall (openbsd-386), const SIGURG Signal +pkg syscall (openbsd-386), const SIGUSR1 Signal +pkg syscall (openbsd-386), const SIGUSR2 Signal +pkg syscall (openbsd-386), const SIGVTALRM Signal +pkg syscall (openbsd-386), const SIGWINCH Signal +pkg syscall (openbsd-386), const SIGXCPU Signal +pkg syscall (openbsd-386), const SIGXFSZ Signal +pkg syscall (openbsd-386), const SIOCADDMULTI ideal-int +pkg syscall (openbsd-386), const SIOCAIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCAIFGROUP ideal-int +pkg syscall (openbsd-386), const SIOCALIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCATMARK ideal-int +pkg syscall (openbsd-386), const SIOCBRDGADD ideal-int +pkg syscall (openbsd-386), const SIOCBRDGADDS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGARL ideal-int +pkg syscall (openbsd-386), const SIOCBRDGDADDR ideal-int +pkg syscall (openbsd-386), const SIOCBRDGDEL ideal-int +pkg syscall (openbsd-386), const SIOCBRDGDELS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGFLUSH ideal-int +pkg syscall (openbsd-386), const SIOCBRDGFRL ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGCACHE ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGFD ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGHT ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGIFFLGS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGMA ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGPARAM ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGPRI ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGRL ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGSIFS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGGTO ideal-int +pkg syscall (openbsd-386), const SIOCBRDGIFS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGRTS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSADDR ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSCACHE ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSFD ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSHT ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSIFCOST ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSIFFLGS ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSIFPRIO ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSMA ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSPRI ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSPROTO ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSTO ideal-int +pkg syscall (openbsd-386), const SIOCBRDGSTXHC ideal-int +pkg syscall (openbsd-386), const SIOCDELMULTI ideal-int +pkg syscall (openbsd-386), const SIOCDIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCDIFGROUP ideal-int +pkg syscall (openbsd-386), const SIOCDIFPHYADDR ideal-int +pkg syscall (openbsd-386), const SIOCDLIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCGETKALIVE ideal-int +pkg syscall (openbsd-386), const SIOCGETLABEL ideal-int +pkg syscall (openbsd-386), const SIOCGETPFLOW ideal-int +pkg syscall (openbsd-386), const SIOCGETPFSYNC ideal-int +pkg syscall (openbsd-386), const SIOCGETSGCNT ideal-int +pkg syscall (openbsd-386), const SIOCGETVIFCNT ideal-int +pkg syscall (openbsd-386), const SIOCGHIWAT ideal-int +pkg syscall (openbsd-386), const SIOCGIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCGIFASYNCMAP ideal-int +pkg syscall (openbsd-386), const SIOCGIFBRDADDR ideal-int +pkg syscall (openbsd-386), const SIOCGIFCONF ideal-int +pkg syscall (openbsd-386), const SIOCGIFDATA ideal-int +pkg syscall (openbsd-386), const SIOCGIFDESCR ideal-int +pkg syscall (openbsd-386), const SIOCGIFDSTADDR ideal-int +pkg syscall (openbsd-386), const SIOCGIFFLAGS ideal-int +pkg syscall (openbsd-386), const SIOCGIFGATTR ideal-int +pkg syscall (openbsd-386), const SIOCGIFGENERIC ideal-int +pkg syscall (openbsd-386), const SIOCGIFGMEMB ideal-int +pkg syscall (openbsd-386), const SIOCGIFGROUP ideal-int +pkg syscall (openbsd-386), const SIOCGIFMEDIA ideal-int +pkg syscall (openbsd-386), const SIOCGIFMETRIC ideal-int +pkg syscall (openbsd-386), const SIOCGIFMTU ideal-int +pkg syscall (openbsd-386), const SIOCGIFNETMASK ideal-int +pkg syscall (openbsd-386), const SIOCGIFPDSTADDR ideal-int +pkg syscall (openbsd-386), const SIOCGIFPRIORITY ideal-int +pkg syscall (openbsd-386), const SIOCGIFPSRCADDR ideal-int +pkg syscall (openbsd-386), const SIOCGIFRDOMAIN ideal-int +pkg syscall (openbsd-386), const SIOCGIFRTLABEL ideal-int +pkg syscall (openbsd-386), const SIOCGIFTIMESLOT ideal-int +pkg syscall (openbsd-386), const SIOCGIFXFLAGS ideal-int +pkg syscall (openbsd-386), const SIOCGLIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCGLIFPHYADDR ideal-int +pkg syscall (openbsd-386), const SIOCGLIFPHYRTABLE ideal-int +pkg syscall (openbsd-386), const SIOCGLOWAT ideal-int +pkg syscall (openbsd-386), const SIOCGPGRP ideal-int +pkg syscall (openbsd-386), const SIOCGVH ideal-int +pkg syscall (openbsd-386), const SIOCIFCREATE ideal-int +pkg syscall (openbsd-386), const SIOCIFDESTROY ideal-int +pkg syscall (openbsd-386), const SIOCIFGCLONERS ideal-int +pkg syscall (openbsd-386), const SIOCSETKALIVE ideal-int +pkg syscall (openbsd-386), const SIOCSETLABEL ideal-int +pkg syscall (openbsd-386), const SIOCSETPFLOW ideal-int +pkg syscall (openbsd-386), const SIOCSETPFSYNC ideal-int +pkg syscall (openbsd-386), const SIOCSHIWAT ideal-int +pkg syscall (openbsd-386), const SIOCSIFADDR ideal-int +pkg syscall (openbsd-386), const SIOCSIFASYNCMAP ideal-int +pkg syscall (openbsd-386), const SIOCSIFBRDADDR ideal-int +pkg syscall (openbsd-386), const SIOCSIFDESCR ideal-int +pkg syscall (openbsd-386), const SIOCSIFDSTADDR ideal-int +pkg syscall (openbsd-386), const SIOCSIFFLAGS ideal-int +pkg syscall (openbsd-386), const SIOCSIFGATTR ideal-int +pkg syscall (openbsd-386), const SIOCSIFGENERIC ideal-int +pkg syscall (openbsd-386), const SIOCSIFLLADDR ideal-int +pkg syscall (openbsd-386), const SIOCSIFMEDIA ideal-int +pkg syscall (openbsd-386), const SIOCSIFMETRIC ideal-int +pkg syscall (openbsd-386), const SIOCSIFMTU ideal-int +pkg syscall (openbsd-386), const SIOCSIFNETMASK ideal-int +pkg syscall (openbsd-386), const SIOCSIFPHYADDR ideal-int +pkg syscall (openbsd-386), const SIOCSIFPRIORITY ideal-int +pkg syscall (openbsd-386), const SIOCSIFRDOMAIN ideal-int +pkg syscall (openbsd-386), const SIOCSIFRTLABEL ideal-int +pkg syscall (openbsd-386), const SIOCSIFTIMESLOT ideal-int +pkg syscall (openbsd-386), const SIOCSIFXFLAGS ideal-int +pkg syscall (openbsd-386), const SIOCSLIFPHYADDR ideal-int +pkg syscall (openbsd-386), const SIOCSLIFPHYRTABLE ideal-int +pkg syscall (openbsd-386), const SIOCSLOWAT ideal-int +pkg syscall (openbsd-386), const SIOCSPGRP ideal-int +pkg syscall (openbsd-386), const SIOCSVH ideal-int +pkg syscall (openbsd-386), const SOCK_RDM ideal-int +pkg syscall (openbsd-386), const SO_ACCEPTCONN ideal-int +pkg syscall (openbsd-386), const SO_BINDANY ideal-int +pkg syscall (openbsd-386), const SO_DEBUG ideal-int +pkg syscall (openbsd-386), const SO_ERROR ideal-int +pkg syscall (openbsd-386), const SO_NETPROC ideal-int +pkg syscall (openbsd-386), const SO_OOBINLINE ideal-int +pkg syscall (openbsd-386), const SO_PEERCRED ideal-int +pkg syscall (openbsd-386), const SO_RCVLOWAT ideal-int +pkg syscall (openbsd-386), const SO_RCVTIMEO ideal-int +pkg syscall (openbsd-386), const SO_REUSEPORT ideal-int +pkg syscall (openbsd-386), const SO_RTABLE ideal-int +pkg syscall (openbsd-386), const SO_SNDLOWAT ideal-int +pkg syscall (openbsd-386), const SO_SNDTIMEO ideal-int +pkg syscall (openbsd-386), const SO_SPLICE ideal-int +pkg syscall (openbsd-386), const SO_TIMESTAMP ideal-int +pkg syscall (openbsd-386), const SO_TYPE ideal-int +pkg syscall (openbsd-386), const SO_USELOOPBACK ideal-int +pkg syscall (openbsd-386), const SYS_ACCEPT ideal-int +pkg syscall (openbsd-386), const SYS_ACCESS ideal-int +pkg syscall (openbsd-386), const SYS_ACCT ideal-int +pkg syscall (openbsd-386), const SYS_ADJFREQ ideal-int +pkg syscall (openbsd-386), const SYS_ADJTIME ideal-int +pkg syscall (openbsd-386), const SYS_BIND ideal-int +pkg syscall (openbsd-386), const SYS_CHDIR ideal-int +pkg syscall (openbsd-386), const SYS_CHFLAGS ideal-int +pkg syscall (openbsd-386), const SYS_CHMOD ideal-int +pkg syscall (openbsd-386), const SYS_CHOWN ideal-int +pkg syscall (openbsd-386), const SYS_CHROOT ideal-int +pkg syscall (openbsd-386), const SYS_CLOCK_GETRES ideal-int +pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (openbsd-386), const SYS_CLOSE ideal-int +pkg syscall (openbsd-386), const SYS_CLOSEFROM ideal-int +pkg syscall (openbsd-386), const SYS_CONNECT ideal-int +pkg syscall (openbsd-386), const SYS_DUP ideal-int +pkg syscall (openbsd-386), const SYS_DUP2 ideal-int +pkg syscall (openbsd-386), const SYS_EXECVE ideal-int +pkg syscall (openbsd-386), const SYS_EXIT ideal-int +pkg syscall (openbsd-386), const SYS_FACCESSAT ideal-int +pkg syscall (openbsd-386), const SYS_FCHDIR ideal-int +pkg syscall (openbsd-386), const SYS_FCHFLAGS ideal-int +pkg syscall (openbsd-386), const SYS_FCHMOD ideal-int +pkg syscall (openbsd-386), const SYS_FCHMODAT ideal-int +pkg syscall (openbsd-386), const SYS_FCHOWN ideal-int +pkg syscall (openbsd-386), const SYS_FCHOWNAT ideal-int +pkg syscall (openbsd-386), const SYS_FCNTL ideal-int +pkg syscall (openbsd-386), const SYS_FHOPEN ideal-int +pkg syscall (openbsd-386), const SYS_FHSTAT ideal-int +pkg syscall (openbsd-386), const SYS_FHSTATFS ideal-int +pkg syscall (openbsd-386), const SYS_FLOCK ideal-int +pkg syscall (openbsd-386), const SYS_FORK ideal-int +pkg syscall (openbsd-386), const SYS_FPATHCONF ideal-int +pkg syscall (openbsd-386), const SYS_FSTAT ideal-int +pkg syscall (openbsd-386), const SYS_FSTATAT ideal-int +pkg syscall (openbsd-386), const SYS_FSTATFS ideal-int +pkg syscall (openbsd-386), const SYS_FSYNC ideal-int +pkg syscall (openbsd-386), const SYS_FTRUNCATE ideal-int +pkg syscall (openbsd-386), const SYS_FUTIMENS ideal-int +pkg syscall (openbsd-386), const SYS_FUTIMES ideal-int +pkg syscall (openbsd-386), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-386), const SYS_GETDTABLECOUNT ideal-int +pkg syscall (openbsd-386), const SYS_GETEGID ideal-int +pkg syscall (openbsd-386), const SYS_GETEUID ideal-int +pkg syscall (openbsd-386), const SYS_GETFH ideal-int +pkg syscall (openbsd-386), const SYS_GETFSSTAT ideal-int +pkg syscall (openbsd-386), const SYS_GETGID ideal-int +pkg syscall (openbsd-386), const SYS_GETGROUPS ideal-int +pkg syscall (openbsd-386), const SYS_GETITIMER ideal-int +pkg syscall (openbsd-386), const SYS_GETLOGIN ideal-int +pkg syscall (openbsd-386), const SYS_GETPEERNAME ideal-int +pkg syscall (openbsd-386), const SYS_GETPGID ideal-int +pkg syscall (openbsd-386), const SYS_GETPGRP ideal-int +pkg syscall (openbsd-386), const SYS_GETPID ideal-int +pkg syscall (openbsd-386), const SYS_GETPPID ideal-int +pkg syscall (openbsd-386), const SYS_GETPRIORITY ideal-int +pkg syscall (openbsd-386), const SYS_GETRESGID ideal-int +pkg syscall (openbsd-386), const SYS_GETRESUID ideal-int +pkg syscall (openbsd-386), const SYS_GETRLIMIT ideal-int +pkg syscall (openbsd-386), const SYS_GETRTABLE ideal-int +pkg syscall (openbsd-386), const SYS_GETRUSAGE ideal-int +pkg syscall (openbsd-386), const SYS_GETSID ideal-int +pkg syscall (openbsd-386), const SYS_GETSOCKNAME ideal-int +pkg syscall (openbsd-386), const SYS_GETSOCKOPT ideal-int +pkg syscall (openbsd-386), const SYS_GETTHRID ideal-int +pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (openbsd-386), const SYS_GETUID ideal-int +pkg syscall (openbsd-386), const SYS_IOCTL ideal-int +pkg syscall (openbsd-386), const SYS_ISSETUGID ideal-int +pkg syscall (openbsd-386), const SYS_KEVENT ideal-int +pkg syscall (openbsd-386), const SYS_KILL ideal-int +pkg syscall (openbsd-386), const SYS_KQUEUE ideal-int +pkg syscall (openbsd-386), const SYS_KTRACE ideal-int +pkg syscall (openbsd-386), const SYS_LCHOWN ideal-int +pkg syscall (openbsd-386), const SYS_LINK ideal-int +pkg syscall (openbsd-386), const SYS_LINKAT ideal-int +pkg syscall (openbsd-386), const SYS_LISTEN ideal-int +pkg syscall (openbsd-386), const SYS_LSEEK ideal-int +pkg syscall (openbsd-386), const SYS_LSTAT ideal-int +pkg syscall (openbsd-386), const SYS_MADVISE ideal-int +pkg syscall (openbsd-386), const SYS_MINCORE ideal-int +pkg syscall (openbsd-386), const SYS_MINHERIT ideal-int +pkg syscall (openbsd-386), const SYS_MKDIR ideal-int +pkg syscall (openbsd-386), const SYS_MKDIRAT ideal-int +pkg syscall (openbsd-386), const SYS_MKFIFO ideal-int +pkg syscall (openbsd-386), const SYS_MKFIFOAT ideal-int +pkg syscall (openbsd-386), const SYS_MKNOD ideal-int +pkg syscall (openbsd-386), const SYS_MKNODAT ideal-int +pkg syscall (openbsd-386), const SYS_MLOCK ideal-int +pkg syscall (openbsd-386), const SYS_MLOCKALL ideal-int +pkg syscall (openbsd-386), const SYS_MMAP ideal-int +pkg syscall (openbsd-386), const SYS_MOUNT ideal-int +pkg syscall (openbsd-386), const SYS_MPROTECT ideal-int +pkg syscall (openbsd-386), const SYS_MQUERY ideal-int +pkg syscall (openbsd-386), const SYS_MSGCTL ideal-int +pkg syscall (openbsd-386), const SYS_MSGGET ideal-int +pkg syscall (openbsd-386), const SYS_MSGRCV ideal-int +pkg syscall (openbsd-386), const SYS_MSGSND ideal-int +pkg syscall (openbsd-386), const SYS_MSYNC ideal-int +pkg syscall (openbsd-386), const SYS_MUNLOCK ideal-int +pkg syscall (openbsd-386), const SYS_MUNLOCKALL ideal-int +pkg syscall (openbsd-386), const SYS_MUNMAP ideal-int +pkg syscall (openbsd-386), const SYS_NANOSLEEP ideal-int +pkg syscall (openbsd-386), const SYS_NFSSVC ideal-int +pkg syscall (openbsd-386), const SYS_OBREAK ideal-int +pkg syscall (openbsd-386), const SYS_OPEN ideal-int +pkg syscall (openbsd-386), const SYS_OPENAT ideal-int +pkg syscall (openbsd-386), const SYS_PATHCONF ideal-int +pkg syscall (openbsd-386), const SYS_PIPE ideal-int +pkg syscall (openbsd-386), const SYS_POLL ideal-int +pkg syscall (openbsd-386), const SYS_PREAD ideal-int +pkg syscall (openbsd-386), const SYS_PREADV ideal-int +pkg syscall (openbsd-386), const SYS_PROFIL ideal-int +pkg syscall (openbsd-386), const SYS_PTRACE ideal-int +pkg syscall (openbsd-386), const SYS_PWRITE ideal-int +pkg syscall (openbsd-386), const SYS_PWRITEV ideal-int +pkg syscall (openbsd-386), const SYS_QUOTACTL ideal-int +pkg syscall (openbsd-386), const SYS_READ ideal-int +pkg syscall (openbsd-386), const SYS_READLINK ideal-int +pkg syscall (openbsd-386), const SYS_READLINKAT ideal-int +pkg syscall (openbsd-386), const SYS_READV ideal-int +pkg syscall (openbsd-386), const SYS_REBOOT ideal-int +pkg syscall (openbsd-386), const SYS_RECVFROM ideal-int +pkg syscall (openbsd-386), const SYS_RECVMSG ideal-int +pkg syscall (openbsd-386), const SYS_RENAME ideal-int +pkg syscall (openbsd-386), const SYS_RENAMEAT ideal-int +pkg syscall (openbsd-386), const SYS_REVOKE ideal-int +pkg syscall (openbsd-386), const SYS_RMDIR ideal-int +pkg syscall (openbsd-386), const SYS_SCHED_YIELD ideal-int +pkg syscall (openbsd-386), const SYS_SELECT ideal-int +pkg syscall (openbsd-386), const SYS_SEMGET ideal-int +pkg syscall (openbsd-386), const SYS_SEMOP ideal-int +pkg syscall (openbsd-386), const SYS_SENDMSG ideal-int +pkg syscall (openbsd-386), const SYS_SENDTO ideal-int +pkg syscall (openbsd-386), const SYS_SETEGID ideal-int +pkg syscall (openbsd-386), const SYS_SETEUID ideal-int +pkg syscall (openbsd-386), const SYS_SETGID ideal-int +pkg syscall (openbsd-386), const SYS_SETGROUPS ideal-int +pkg syscall (openbsd-386), const SYS_SETITIMER ideal-int +pkg syscall (openbsd-386), const SYS_SETLOGIN ideal-int +pkg syscall (openbsd-386), const SYS_SETPGID ideal-int +pkg syscall (openbsd-386), const SYS_SETPRIORITY ideal-int +pkg syscall (openbsd-386), const SYS_SETREGID ideal-int +pkg syscall (openbsd-386), const SYS_SETRESGID ideal-int +pkg syscall (openbsd-386), const SYS_SETRESUID ideal-int +pkg syscall (openbsd-386), const SYS_SETREUID ideal-int +pkg syscall (openbsd-386), const SYS_SETRLIMIT ideal-int +pkg syscall (openbsd-386), const SYS_SETRTABLE ideal-int +pkg syscall (openbsd-386), const SYS_SETSID ideal-int +pkg syscall (openbsd-386), const SYS_SETSOCKOPT ideal-int +pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (openbsd-386), const SYS_SETUID ideal-int +pkg syscall (openbsd-386), const SYS_SHMAT ideal-int +pkg syscall (openbsd-386), const SYS_SHMCTL ideal-int +pkg syscall (openbsd-386), const SYS_SHMDT ideal-int +pkg syscall (openbsd-386), const SYS_SHMGET ideal-int +pkg syscall (openbsd-386), const SYS_SHUTDOWN ideal-int +pkg syscall (openbsd-386), const SYS_SIGACTION ideal-int +pkg syscall (openbsd-386), const SYS_SIGALTSTACK ideal-int +pkg syscall (openbsd-386), const SYS_SIGPENDING ideal-int +pkg syscall (openbsd-386), const SYS_SIGPROCMASK ideal-int +pkg syscall (openbsd-386), const SYS_SIGRETURN ideal-int +pkg syscall (openbsd-386), const SYS_SIGSUSPEND ideal-int +pkg syscall (openbsd-386), const SYS_SOCKET ideal-int +pkg syscall (openbsd-386), const SYS_SOCKETPAIR ideal-int +pkg syscall (openbsd-386), const SYS_STAT ideal-int +pkg syscall (openbsd-386), const SYS_STATFS ideal-int +pkg syscall (openbsd-386), const SYS_SWAPCTL ideal-int +pkg syscall (openbsd-386), const SYS_SYMLINK ideal-int +pkg syscall (openbsd-386), const SYS_SYMLINKAT ideal-int +pkg syscall (openbsd-386), const SYS_SYNC ideal-int +pkg syscall (openbsd-386), const SYS_SYSARCH ideal-int +pkg syscall (openbsd-386), const SYS_TRUNCATE ideal-int +pkg syscall (openbsd-386), const SYS_UMASK ideal-int +pkg syscall (openbsd-386), const SYS_UNLINK ideal-int +pkg syscall (openbsd-386), const SYS_UNLINKAT ideal-int +pkg syscall (openbsd-386), const SYS_UNMOUNT ideal-int +pkg syscall (openbsd-386), const SYS_UTIMENSAT ideal-int +pkg syscall (openbsd-386), const SYS_UTIMES ideal-int +pkg syscall (openbsd-386), const SYS_VFORK ideal-int +pkg syscall (openbsd-386), const SYS_WAIT4 ideal-int +pkg syscall (openbsd-386), const SYS_WRITE ideal-int +pkg syscall (openbsd-386), const SYS_WRITEV ideal-int +pkg syscall (openbsd-386), const SYS___GETCWD ideal-int +pkg syscall (openbsd-386), const SYS___GET_TCB ideal-int +pkg syscall (openbsd-386), const SYS___SEMCTL ideal-int +pkg syscall (openbsd-386), const SYS___SET_TCB ideal-int +pkg syscall (openbsd-386), const SYS___SYSCTL ideal-int +pkg syscall (openbsd-386), const SYS___TFORK ideal-int +pkg syscall (openbsd-386), const SYS___THREXIT ideal-int +pkg syscall (openbsd-386), const SYS___THRSIGDIVERT ideal-int +pkg syscall (openbsd-386), const SYS___THRSLEEP ideal-int +pkg syscall (openbsd-386), const SYS___THRWAKEUP ideal-int +pkg syscall (openbsd-386), const SizeofBpfHdr ideal-int +pkg syscall (openbsd-386), const SizeofBpfInsn ideal-int +pkg syscall (openbsd-386), const SizeofBpfProgram ideal-int +pkg syscall (openbsd-386), const SizeofBpfStat ideal-int +pkg syscall (openbsd-386), const SizeofBpfVersion ideal-int +pkg syscall (openbsd-386), const SizeofCmsghdr ideal-int +pkg syscall (openbsd-386), const SizeofICMPv6Filter = 32 +pkg syscall (openbsd-386), const SizeofICMPv6Filter ideal-int +pkg syscall (openbsd-386), const SizeofIPMreq ideal-int +pkg syscall (openbsd-386), const SizeofIPv6MTUInfo = 32 +pkg syscall (openbsd-386), const SizeofIPv6MTUInfo ideal-int +pkg syscall (openbsd-386), const SizeofIPv6Mreq ideal-int +pkg syscall (openbsd-386), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (openbsd-386), const SizeofIfData ideal-int +pkg syscall (openbsd-386), const SizeofIfMsghdr ideal-int +pkg syscall (openbsd-386), const SizeofIfaMsghdr ideal-int +pkg syscall (openbsd-386), const SizeofInet6Pktinfo ideal-int +pkg syscall (openbsd-386), const SizeofLinger ideal-int +pkg syscall (openbsd-386), const SizeofMsghdr ideal-int +pkg syscall (openbsd-386), const SizeofRtMetrics ideal-int +pkg syscall (openbsd-386), const SizeofRtMsghdr ideal-int +pkg syscall (openbsd-386), const SizeofSockaddrAny ideal-int +pkg syscall (openbsd-386), const SizeofSockaddrDatalink ideal-int +pkg syscall (openbsd-386), const SizeofSockaddrInet4 ideal-int +pkg syscall (openbsd-386), const SizeofSockaddrInet6 ideal-int +pkg syscall (openbsd-386), const SizeofSockaddrUnix ideal-int +pkg syscall (openbsd-386), const TCIFLUSH ideal-int +pkg syscall (openbsd-386), const TCIOFLUSH ideal-int +pkg syscall (openbsd-386), const TCOFLUSH ideal-int +pkg syscall (openbsd-386), const TCP_MAXBURST ideal-int +pkg syscall (openbsd-386), const TCP_MAXSEG ideal-int +pkg syscall (openbsd-386), const TCP_MAXWIN ideal-int +pkg syscall (openbsd-386), const TCP_MAX_SACK ideal-int +pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (openbsd-386), const TCP_MD5SIG ideal-int +pkg syscall (openbsd-386), const TCP_MSS ideal-int +pkg syscall (openbsd-386), const TCP_NSTATES ideal-int +pkg syscall (openbsd-386), const TCP_SACK_ENABLE ideal-int +pkg syscall (openbsd-386), const TCSAFLUSH ideal-int +pkg syscall (openbsd-386), const TIOCCBRK ideal-int +pkg syscall (openbsd-386), const TIOCCDTR ideal-int +pkg syscall (openbsd-386), const TIOCCONS ideal-int +pkg syscall (openbsd-386), const TIOCDRAIN ideal-int +pkg syscall (openbsd-386), const TIOCEXCL ideal-int +pkg syscall (openbsd-386), const TIOCEXT ideal-int +pkg syscall (openbsd-386), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (openbsd-386), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (openbsd-386), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (openbsd-386), const TIOCFLAG_PPS ideal-int +pkg syscall (openbsd-386), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (openbsd-386), const TIOCFLUSH ideal-int +pkg syscall (openbsd-386), const TIOCGETA ideal-int +pkg syscall (openbsd-386), const TIOCGETD ideal-int +pkg syscall (openbsd-386), const TIOCGFLAGS ideal-int +pkg syscall (openbsd-386), const TIOCGPGRP ideal-int +pkg syscall (openbsd-386), const TIOCGTSTAMP ideal-int +pkg syscall (openbsd-386), const TIOCGWINSZ ideal-int +pkg syscall (openbsd-386), const TIOCMBIC ideal-int +pkg syscall (openbsd-386), const TIOCMBIS ideal-int +pkg syscall (openbsd-386), const TIOCMGET ideal-int +pkg syscall (openbsd-386), const TIOCMODG ideal-int +pkg syscall (openbsd-386), const TIOCMODS ideal-int +pkg syscall (openbsd-386), const TIOCMSET ideal-int +pkg syscall (openbsd-386), const TIOCM_CAR ideal-int +pkg syscall (openbsd-386), const TIOCM_CD ideal-int +pkg syscall (openbsd-386), const TIOCM_CTS ideal-int +pkg syscall (openbsd-386), const TIOCM_DSR ideal-int +pkg syscall (openbsd-386), const TIOCM_DTR ideal-int +pkg syscall (openbsd-386), const TIOCM_LE ideal-int +pkg syscall (openbsd-386), const TIOCM_RI ideal-int +pkg syscall (openbsd-386), const TIOCM_RNG ideal-int +pkg syscall (openbsd-386), const TIOCM_RTS ideal-int +pkg syscall (openbsd-386), const TIOCM_SR ideal-int +pkg syscall (openbsd-386), const TIOCM_ST ideal-int +pkg syscall (openbsd-386), const TIOCNOTTY ideal-int +pkg syscall (openbsd-386), const TIOCNXCL ideal-int +pkg syscall (openbsd-386), const TIOCOUTQ ideal-int +pkg syscall (openbsd-386), const TIOCPKT ideal-int +pkg syscall (openbsd-386), const TIOCPKT_DATA ideal-int +pkg syscall (openbsd-386), const TIOCPKT_DOSTOP ideal-int +pkg syscall (openbsd-386), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (openbsd-386), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (openbsd-386), const TIOCPKT_IOCTL ideal-int +pkg syscall (openbsd-386), const TIOCPKT_NOSTOP ideal-int +pkg syscall (openbsd-386), const TIOCPKT_START ideal-int +pkg syscall (openbsd-386), const TIOCPKT_STOP ideal-int +pkg syscall (openbsd-386), const TIOCREMOTE ideal-int +pkg syscall (openbsd-386), const TIOCSBRK ideal-int +pkg syscall (openbsd-386), const TIOCSCTTY ideal-int +pkg syscall (openbsd-386), const TIOCSDTR ideal-int +pkg syscall (openbsd-386), const TIOCSETA ideal-int +pkg syscall (openbsd-386), const TIOCSETAF ideal-int +pkg syscall (openbsd-386), const TIOCSETAW ideal-int +pkg syscall (openbsd-386), const TIOCSETD ideal-int +pkg syscall (openbsd-386), const TIOCSFLAGS ideal-int +pkg syscall (openbsd-386), const TIOCSIG ideal-int +pkg syscall (openbsd-386), const TIOCSPGRP ideal-int +pkg syscall (openbsd-386), const TIOCSTART ideal-int +pkg syscall (openbsd-386), const TIOCSTAT ideal-int +pkg syscall (openbsd-386), const TIOCSTI ideal-int +pkg syscall (openbsd-386), const TIOCSTOP ideal-int +pkg syscall (openbsd-386), const TIOCSTSTAMP ideal-int +pkg syscall (openbsd-386), const TIOCSWINSZ ideal-int +pkg syscall (openbsd-386), const TIOCUCNTL ideal-int +pkg syscall (openbsd-386), const TOSTOP ideal-int +pkg syscall (openbsd-386), const VDISCARD ideal-int +pkg syscall (openbsd-386), const VDSUSP ideal-int +pkg syscall (openbsd-386), const VEOF ideal-int +pkg syscall (openbsd-386), const VEOL ideal-int +pkg syscall (openbsd-386), const VEOL2 ideal-int +pkg syscall (openbsd-386), const VERASE ideal-int +pkg syscall (openbsd-386), const VINTR ideal-int +pkg syscall (openbsd-386), const VKILL ideal-int +pkg syscall (openbsd-386), const VLNEXT ideal-int +pkg syscall (openbsd-386), const VMIN ideal-int +pkg syscall (openbsd-386), const VQUIT ideal-int +pkg syscall (openbsd-386), const VREPRINT ideal-int +pkg syscall (openbsd-386), const VSTART ideal-int +pkg syscall (openbsd-386), const VSTATUS ideal-int +pkg syscall (openbsd-386), const VSTOP ideal-int +pkg syscall (openbsd-386), const VSUSP ideal-int +pkg syscall (openbsd-386), const VTIME ideal-int +pkg syscall (openbsd-386), const VWERASE ideal-int +pkg syscall (openbsd-386), const WALTSIG ideal-int +pkg syscall (openbsd-386), const WCONTINUED ideal-int +pkg syscall (openbsd-386), const WCOREFLAG ideal-int +pkg syscall (openbsd-386), const WNOHANG ideal-int +pkg syscall (openbsd-386), const WSTOPPED ideal-int +pkg syscall (openbsd-386), const WUNTRACED ideal-int +pkg syscall (openbsd-386), func Accept(int) (int, Sockaddr, error) +pkg syscall (openbsd-386), func Access(string, uint32) error +pkg syscall (openbsd-386), func Adjtime(*Timeval, *Timeval) error +pkg syscall (openbsd-386), func Bind(int, Sockaddr) error +pkg syscall (openbsd-386), func BpfBuflen(int) (int, error) +pkg syscall (openbsd-386), func BpfDatalink(int) (int, error) +pkg syscall (openbsd-386), func BpfHeadercmpl(int) (int, error) +pkg syscall (openbsd-386), func BpfInterface(int, string) (string, error) +pkg syscall (openbsd-386), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (openbsd-386), func BpfStats(int) (*BpfStat, error) +pkg syscall (openbsd-386), func BpfStmt(int, int) *BpfInsn +pkg syscall (openbsd-386), func BpfTimeout(int) (*Timeval, error) +pkg syscall (openbsd-386), func CheckBpfVersion(int) error +pkg syscall (openbsd-386), func Chflags(string, int) error +pkg syscall (openbsd-386), func Chroot(string) error +pkg syscall (openbsd-386), func Close(int) error +pkg syscall (openbsd-386), func CloseOnExec(int) +pkg syscall (openbsd-386), func CmsgLen(int) int +pkg syscall (openbsd-386), func CmsgSpace(int) int +pkg syscall (openbsd-386), func Connect(int, Sockaddr) error +pkg syscall (openbsd-386), func Dup(int) (int, error) +pkg syscall (openbsd-386), func Dup2(int, int) error +pkg syscall (openbsd-386), func Fchdir(int) error +pkg syscall (openbsd-386), func Fchflags(int, int) error +pkg syscall (openbsd-386), func Fchmod(int, uint32) error +pkg syscall (openbsd-386), func Fchown(int, int, int) error +pkg syscall (openbsd-386), func Flock(int, int) error +pkg syscall (openbsd-386), func FlushBpf(int) error +pkg syscall (openbsd-386), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (openbsd-386), func Fpathconf(int, int) (int, error) +pkg syscall (openbsd-386), func Fstat(int, *Stat_t) error +pkg syscall (openbsd-386), func Fstatfs(int, *Statfs_t) error +pkg syscall (openbsd-386), func Fsync(int) error +pkg syscall (openbsd-386), func Ftruncate(int, int64) error +pkg syscall (openbsd-386), func Futimes(int, []Timeval) error +pkg syscall (openbsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (openbsd-386), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (openbsd-386), func Getpeername(int) (Sockaddr, error) +pkg syscall (openbsd-386), func Getpgid(int) (int, error) +pkg syscall (openbsd-386), func Getpgrp() int +pkg syscall (openbsd-386), func Getpriority(int, int) (int, error) +pkg syscall (openbsd-386), func Getrlimit(int, *Rlimit) error +pkg syscall (openbsd-386), func Getrusage(int, *Rusage) error +pkg syscall (openbsd-386), func Getsid(int) (int, error) +pkg syscall (openbsd-386), func Getsockname(int) (Sockaddr, error) +pkg syscall (openbsd-386), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (openbsd-386), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (openbsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (openbsd-386), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (openbsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (openbsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (openbsd-386), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (openbsd-386), func Issetugid() bool +pkg syscall (openbsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (openbsd-386), func Kill(int, Signal) error +pkg syscall (openbsd-386), func Kqueue() (int, error) +pkg syscall (openbsd-386), func Listen(int, int) error +pkg syscall (openbsd-386), func Lstat(string, *Stat_t) error +pkg syscall (openbsd-386), func Mkfifo(string, uint32) error +pkg syscall (openbsd-386), func Mknod(string, uint32, int) error +pkg syscall (openbsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (openbsd-386), func Munmap([]uint8) error +pkg syscall (openbsd-386), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (openbsd-386), func Open(string, int, uint32) (int, error) +pkg syscall (openbsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (openbsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (openbsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (openbsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (openbsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (openbsd-386), func Pathconf(string, int) (int, error) +pkg syscall (openbsd-386), func Pipe([]int) error +pkg syscall (openbsd-386), func Pread(int, []uint8, int64) (int, error) +pkg syscall (openbsd-386), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (openbsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386), func Read(int, []uint8) (int, error) +pkg syscall (openbsd-386), func ReadDirent(int, []uint8) (int, error) +pkg syscall (openbsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (openbsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (openbsd-386), func Revoke(string) error +pkg syscall (openbsd-386), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (openbsd-386), func Seek(int, int64, int) (int64, error) +pkg syscall (openbsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (openbsd-386), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (openbsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (openbsd-386), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (openbsd-386), func SetBpf(int, []BpfInsn) error +pkg syscall (openbsd-386), func SetBpfBuflen(int, int) (int, error) +pkg syscall (openbsd-386), func SetBpfDatalink(int, int) (int, error) +pkg syscall (openbsd-386), func SetBpfHeadercmpl(int, int) error +pkg syscall (openbsd-386), func SetBpfImmediate(int, int) error +pkg syscall (openbsd-386), func SetBpfInterface(int, string) error +pkg syscall (openbsd-386), func SetBpfPromisc(int, int) error +pkg syscall (openbsd-386), func SetBpfTimeout(int, *Timeval) error +pkg syscall (openbsd-386), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (openbsd-386), func SetNonblock(int, bool) error +pkg syscall (openbsd-386), func Setegid(int) error +pkg syscall (openbsd-386), func Seteuid(int) error +pkg syscall (openbsd-386), func Setgid(int) error +pkg syscall (openbsd-386), func Setgroups([]int) error +pkg syscall (openbsd-386), func Setlogin(string) error +pkg syscall (openbsd-386), func Setpgid(int, int) error +pkg syscall (openbsd-386), func Setpriority(int, int, int) error +pkg syscall (openbsd-386), func Setregid(int, int) error +pkg syscall (openbsd-386), func Setreuid(int, int) error +pkg syscall (openbsd-386), func Setrlimit(int, *Rlimit) error +pkg syscall (openbsd-386), func Setsid() (int, error) +pkg syscall (openbsd-386), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (openbsd-386), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (openbsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (openbsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (openbsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (openbsd-386), func SetsockoptInt(int, int, int, int) error +pkg syscall (openbsd-386), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (openbsd-386), func SetsockoptString(int, int, int, string) error +pkg syscall (openbsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (openbsd-386), func Settimeofday(*Timeval) error +pkg syscall (openbsd-386), func Setuid(int) error +pkg syscall (openbsd-386), func Shutdown(int, int) error +pkg syscall (openbsd-386), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (openbsd-386), func Socket(int, int, int) (int, error) +pkg syscall (openbsd-386), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (openbsd-386), func Stat(string, *Stat_t) error +pkg syscall (openbsd-386), func Statfs(string, *Statfs_t) error +pkg syscall (openbsd-386), func StringSlicePtr([]string) []*uint8 +pkg syscall (openbsd-386), func Sync() error +pkg syscall (openbsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386), func Sysctl(string) (string, error) +pkg syscall (openbsd-386), func SysctlUint32(string) (uint32, error) +pkg syscall (openbsd-386), func TimevalToNsec(Timeval) int64 +pkg syscall (openbsd-386), func Truncate(string, int64) error +pkg syscall (openbsd-386), func Umask(int) int +pkg syscall (openbsd-386), func UnixRights(...int) []uint8 +pkg syscall (openbsd-386), func Unmount(string, int) error +pkg syscall (openbsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (openbsd-386), func Write(int, []uint8) (int, error) +pkg syscall (openbsd-386), method (*Cmsghdr) SetLen(int) +pkg syscall (openbsd-386), method (*Iovec) SetLen(int) +pkg syscall (openbsd-386), method (*Msghdr) SetControllen(int) +pkg syscall (openbsd-386), type BpfHdr struct +pkg syscall (openbsd-386), type BpfHdr struct, Caplen uint32 +pkg syscall (openbsd-386), type BpfHdr struct, Datalen uint32 +pkg syscall (openbsd-386), type BpfHdr struct, Hdrlen uint16 +pkg syscall (openbsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-386), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (openbsd-386), type BpfInsn struct +pkg syscall (openbsd-386), type BpfInsn struct, Code uint16 +pkg syscall (openbsd-386), type BpfInsn struct, Jf uint8 +pkg syscall (openbsd-386), type BpfInsn struct, Jt uint8 +pkg syscall (openbsd-386), type BpfInsn struct, K uint32 +pkg syscall (openbsd-386), type BpfProgram struct +pkg syscall (openbsd-386), type BpfProgram struct, Insns *BpfInsn +pkg syscall (openbsd-386), type BpfProgram struct, Len uint32 +pkg syscall (openbsd-386), type BpfStat struct +pkg syscall (openbsd-386), type BpfStat struct, Drop uint32 +pkg syscall (openbsd-386), type BpfStat struct, Recv uint32 +pkg syscall (openbsd-386), type BpfTimeval struct +pkg syscall (openbsd-386), type BpfTimeval struct, Sec uint32 +pkg syscall (openbsd-386), type BpfTimeval struct, Usec uint32 +pkg syscall (openbsd-386), type BpfVersion struct +pkg syscall (openbsd-386), type BpfVersion struct, Major uint16 +pkg syscall (openbsd-386), type BpfVersion struct, Minor uint16 +pkg syscall (openbsd-386), type Cmsghdr struct +pkg syscall (openbsd-386), type Cmsghdr struct, Len uint32 +pkg syscall (openbsd-386), type Cmsghdr struct, Level int32 +pkg syscall (openbsd-386), type Cmsghdr struct, Type int32 +pkg syscall (openbsd-386), type Credential struct +pkg syscall (openbsd-386), type Credential struct, Gid uint32 +pkg syscall (openbsd-386), type Credential struct, Groups []uint32 +pkg syscall (openbsd-386), type Credential struct, Uid uint32 +pkg syscall (openbsd-386), type Dirent struct +pkg syscall (openbsd-386), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-386), type Dirent struct, Name [256]int8 +pkg syscall (openbsd-386), type Dirent struct, Namlen uint8 +pkg syscall (openbsd-386), type Dirent struct, Reclen uint16 +pkg syscall (openbsd-386), type Dirent struct, Type uint8 +pkg syscall (openbsd-386), type FdSet struct +pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-386), type Flock_t struct +pkg syscall (openbsd-386), type Flock_t struct, Len int64 +pkg syscall (openbsd-386), type Flock_t struct, Pid int32 +pkg syscall (openbsd-386), type Flock_t struct, Start int64 +pkg syscall (openbsd-386), type Flock_t struct, Type int16 +pkg syscall (openbsd-386), type Flock_t struct, Whence int16 +pkg syscall (openbsd-386), type Fsid struct +pkg syscall (openbsd-386), type Fsid struct, Val [2]int32 +pkg syscall (openbsd-386), type ICMPv6Filter struct +pkg syscall (openbsd-386), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (openbsd-386), type IPv6MTUInfo struct +pkg syscall (openbsd-386), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (openbsd-386), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (openbsd-386), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (openbsd-386), type IfData struct +pkg syscall (openbsd-386), type IfData struct, Addrlen uint8 +pkg syscall (openbsd-386), type IfData struct, Baudrate uint64 +pkg syscall (openbsd-386), type IfData struct, Capabilities uint32 +pkg syscall (openbsd-386), type IfData struct, Collisions uint64 +pkg syscall (openbsd-386), type IfData struct, Hdrlen uint8 +pkg syscall (openbsd-386), type IfData struct, Ibytes uint64 +pkg syscall (openbsd-386), type IfData struct, Ierrors uint64 +pkg syscall (openbsd-386), type IfData struct, Imcasts uint64 +pkg syscall (openbsd-386), type IfData struct, Ipackets uint64 +pkg syscall (openbsd-386), type IfData struct, Iqdrops uint64 +pkg syscall (openbsd-386), type IfData struct, Lastchange Timeval +pkg syscall (openbsd-386), type IfData struct, Link_state uint8 +pkg syscall (openbsd-386), type IfData struct, Mclpool [7]Mclpool +pkg syscall (openbsd-386), type IfData struct, Metric uint32 +pkg syscall (openbsd-386), type IfData struct, Mtu uint32 +pkg syscall (openbsd-386), type IfData struct, Noproto uint64 +pkg syscall (openbsd-386), type IfData struct, Obytes uint64 +pkg syscall (openbsd-386), type IfData struct, Oerrors uint64 +pkg syscall (openbsd-386), type IfData struct, Omcasts uint64 +pkg syscall (openbsd-386), type IfData struct, Opackets uint64 +pkg syscall (openbsd-386), type IfData struct, Pad uint32 +pkg syscall (openbsd-386), type IfData struct, Type uint8 +pkg syscall (openbsd-386), type IfMsghdr struct +pkg syscall (openbsd-386), type IfMsghdr struct, Addrs int32 +pkg syscall (openbsd-386), type IfMsghdr struct, Data IfData +pkg syscall (openbsd-386), type IfMsghdr struct, Flags int32 +pkg syscall (openbsd-386), type IfMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386), type IfMsghdr struct, Index uint16 +pkg syscall (openbsd-386), type IfMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386), type IfMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-386), type IfMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-386), type IfMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386), type IfMsghdr struct, Type uint8 +pkg syscall (openbsd-386), type IfMsghdr struct, Version uint8 +pkg syscall (openbsd-386), type IfMsghdr struct, Xflags int32 +pkg syscall (openbsd-386), type IfaMsghdr struct +pkg syscall (openbsd-386), type IfaMsghdr struct, Addrs int32 +pkg syscall (openbsd-386), type IfaMsghdr struct, Flags int32 +pkg syscall (openbsd-386), type IfaMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386), type IfaMsghdr struct, Index uint16 +pkg syscall (openbsd-386), type IfaMsghdr struct, Metric int32 +pkg syscall (openbsd-386), type IfaMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386), type IfaMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-386), type IfaMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-386), type IfaMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386), type IfaMsghdr struct, Type uint8 +pkg syscall (openbsd-386), type IfaMsghdr struct, Version uint8 +pkg syscall (openbsd-386), type Inet6Pktinfo struct +pkg syscall (openbsd-386), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (openbsd-386), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (openbsd-386), type InterfaceAddrMessage struct +pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (openbsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct +pkg syscall (openbsd-386), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (openbsd-386), type InterfaceMessage struct +pkg syscall (openbsd-386), type InterfaceMessage struct, Data []uint8 +pkg syscall (openbsd-386), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (openbsd-386), type Iovec struct +pkg syscall (openbsd-386), type Iovec struct, Base *uint8 +pkg syscall (openbsd-386), type Iovec struct, Len uint32 +pkg syscall (openbsd-386), type Kevent_t struct +pkg syscall (openbsd-386), type Kevent_t struct, Data int32 +pkg syscall (openbsd-386), type Kevent_t struct, Fflags uint32 +pkg syscall (openbsd-386), type Kevent_t struct, Filter int16 +pkg syscall (openbsd-386), type Kevent_t struct, Flags uint16 +pkg syscall (openbsd-386), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-386), type Kevent_t struct, Udata *uint8 +pkg syscall (openbsd-386), type Mclpool struct +pkg syscall (openbsd-386), type Mclpool struct, Alive uint16 +pkg syscall (openbsd-386), type Mclpool struct, Cwm uint16 +pkg syscall (openbsd-386), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-386), type Mclpool struct, Hwm uint16 +pkg syscall (openbsd-386), type Mclpool struct, Lwm uint16 +pkg syscall (openbsd-386), type Msghdr struct +pkg syscall (openbsd-386), type Msghdr struct, Control *uint8 +pkg syscall (openbsd-386), type Msghdr struct, Controllen uint32 +pkg syscall (openbsd-386), type Msghdr struct, Flags int32 +pkg syscall (openbsd-386), type Msghdr struct, Iov *Iovec +pkg syscall (openbsd-386), type Msghdr struct, Iovlen uint32 +pkg syscall (openbsd-386), type Msghdr struct, Name *uint8 +pkg syscall (openbsd-386), type Msghdr struct, Namelen uint32 +pkg syscall (openbsd-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (openbsd-386), type RawSockaddr struct, Family uint8 +pkg syscall (openbsd-386), type RawSockaddr struct, Len uint8 +pkg syscall (openbsd-386), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-386), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (openbsd-386), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (openbsd-386), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (openbsd-386), type RawSockaddrUnix struct +pkg syscall (openbsd-386), type RawSockaddrUnix struct, Family uint8 +pkg syscall (openbsd-386), type RawSockaddrUnix struct, Len uint8 +pkg syscall (openbsd-386), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (openbsd-386), type Rlimit struct +pkg syscall (openbsd-386), type Rlimit struct, Cur uint64 +pkg syscall (openbsd-386), type Rlimit struct, Max uint64 +pkg syscall (openbsd-386), type RouteMessage struct +pkg syscall (openbsd-386), type RouteMessage struct, Data []uint8 +pkg syscall (openbsd-386), type RouteMessage struct, Header RtMsghdr +pkg syscall (openbsd-386), type RoutingMessage interface, unexported methods +pkg syscall (openbsd-386), type RtMetrics struct +pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Hopcount uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Locks uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Mtu uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Pksent uint64 +pkg syscall (openbsd-386), type RtMetrics struct, Recvpipe uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Refcnt uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Rtt uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Rttvar uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Sendpipe uint32 +pkg syscall (openbsd-386), type RtMetrics struct, Ssthresh uint32 +pkg syscall (openbsd-386), type RtMsghdr struct +pkg syscall (openbsd-386), type RtMsghdr struct, Addrs int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Errno int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Flags int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Fmask int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386), type RtMsghdr struct, Index uint16 +pkg syscall (openbsd-386), type RtMsghdr struct, Inits uint32 +pkg syscall (openbsd-386), type RtMsghdr struct, Mpls uint8 +pkg syscall (openbsd-386), type RtMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386), type RtMsghdr struct, Pid int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Priority uint8 +pkg syscall (openbsd-386), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (openbsd-386), type RtMsghdr struct, Seq int32 +pkg syscall (openbsd-386), type RtMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386), type RtMsghdr struct, Type uint8 +pkg syscall (openbsd-386), type RtMsghdr struct, Version uint8 +pkg syscall (openbsd-386), type Rusage struct, Idrss int32 +pkg syscall (openbsd-386), type Rusage struct, Inblock int32 +pkg syscall (openbsd-386), type Rusage struct, Isrss int32 +pkg syscall (openbsd-386), type Rusage struct, Ixrss int32 +pkg syscall (openbsd-386), type Rusage struct, Majflt int32 +pkg syscall (openbsd-386), type Rusage struct, Maxrss int32 +pkg syscall (openbsd-386), type Rusage struct, Minflt int32 +pkg syscall (openbsd-386), type Rusage struct, Msgrcv int32 +pkg syscall (openbsd-386), type Rusage struct, Msgsnd int32 +pkg syscall (openbsd-386), type Rusage struct, Nivcsw int32 +pkg syscall (openbsd-386), type Rusage struct, Nsignals int32 +pkg syscall (openbsd-386), type Rusage struct, Nswap int32 +pkg syscall (openbsd-386), type Rusage struct, Nvcsw int32 +pkg syscall (openbsd-386), type Rusage struct, Oublock int32 +pkg syscall (openbsd-386), type Rusage struct, Stime Timeval +pkg syscall (openbsd-386), type Rusage struct, Utime Timeval +pkg syscall (openbsd-386), type SockaddrDatalink struct +pkg syscall (openbsd-386), type SockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-386), type SockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-386), type SocketControlMessage struct +pkg syscall (openbsd-386), type SocketControlMessage struct, Data []uint8 +pkg syscall (openbsd-386), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (openbsd-386), type Stat_t struct +pkg syscall (openbsd-386), type Stat_t struct, Atim Timespec +pkg syscall (openbsd-386), type Stat_t struct, Blksize uint32 +pkg syscall (openbsd-386), type Stat_t struct, Blocks int64 +pkg syscall (openbsd-386), type Stat_t struct, Ctim Timespec +pkg syscall (openbsd-386), type Stat_t struct, Dev int32 +pkg syscall (openbsd-386), type Stat_t struct, Flags uint32 +pkg syscall (openbsd-386), type Stat_t struct, Gen uint32 +pkg syscall (openbsd-386), type Stat_t struct, Gid uint32 +pkg syscall (openbsd-386), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-386), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-386), type Stat_t struct, Mode uint32 +pkg syscall (openbsd-386), type Stat_t struct, Mtim Timespec +pkg syscall (openbsd-386), type Stat_t struct, Nlink uint32 +pkg syscall (openbsd-386), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-386), type Stat_t struct, Rdev int32 +pkg syscall (openbsd-386), type Stat_t struct, Size int64 +pkg syscall (openbsd-386), type Stat_t struct, Uid uint32 +pkg syscall (openbsd-386), type Stat_t struct, X__st_birthtim Timespec +pkg syscall (openbsd-386), type Statfs_t struct +pkg syscall (openbsd-386), type Statfs_t struct, F_asyncreads uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_asyncwrites uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_bavail int64 +pkg syscall (openbsd-386), type Statfs_t struct, F_bfree uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_blocks uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_bsize uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_favail int64 +pkg syscall (openbsd-386), type Statfs_t struct, F_ffree uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_files uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_flags uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_fsid Fsid +pkg syscall (openbsd-386), type Statfs_t struct, F_fstypename [16]int8 +pkg syscall (openbsd-386), type Statfs_t struct, F_iosize uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_mntfromname [90]int8 +pkg syscall (openbsd-386), type Statfs_t struct, F_mntonname [90]int8 +pkg syscall (openbsd-386), type Statfs_t struct, F_namemax uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_owner uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-386), type Statfs_t struct, F_syncreads uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_syncwrites uint64 +pkg syscall (openbsd-386), type Statfs_t struct, Mount_info [160]uint8 +pkg syscall (openbsd-386), type SysProcAttr struct, Chroot string +pkg syscall (openbsd-386), type SysProcAttr struct, Credential *Credential +pkg syscall (openbsd-386), type SysProcAttr struct, Noctty bool +pkg syscall (openbsd-386), type SysProcAttr struct, Ptrace bool +pkg syscall (openbsd-386), type SysProcAttr struct, Setctty bool +pkg syscall (openbsd-386), type SysProcAttr struct, Setpgid bool +pkg syscall (openbsd-386), type SysProcAttr struct, Setsid bool +pkg syscall (openbsd-386), type Timespec struct, Nsec int32 +pkg syscall (openbsd-386), type Timespec struct, Sec int32 +pkg syscall (openbsd-386), type Timeval struct, Sec int32 +pkg syscall (openbsd-386), type Timeval struct, Usec int32 +pkg syscall (openbsd-386), type WaitStatus uint32 +pkg syscall (openbsd-386), var Stderr int +pkg syscall (openbsd-386), var Stdin int +pkg syscall (openbsd-386), var Stdout int +pkg syscall (openbsd-386-cgo), const AF_APPLETALK ideal-int +pkg syscall (openbsd-386-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (openbsd-386-cgo), const AF_CCITT ideal-int +pkg syscall (openbsd-386-cgo), const AF_CHAOS ideal-int +pkg syscall (openbsd-386-cgo), const AF_CNT ideal-int +pkg syscall (openbsd-386-cgo), const AF_COIP ideal-int +pkg syscall (openbsd-386-cgo), const AF_DATAKIT ideal-int +pkg syscall (openbsd-386-cgo), const AF_DECnet ideal-int +pkg syscall (openbsd-386-cgo), const AF_DLI ideal-int +pkg syscall (openbsd-386-cgo), const AF_E164 ideal-int +pkg syscall (openbsd-386-cgo), const AF_ECMA ideal-int +pkg syscall (openbsd-386-cgo), const AF_ENCAP ideal-int +pkg syscall (openbsd-386-cgo), const AF_HYLINK ideal-int +pkg syscall (openbsd-386-cgo), const AF_IMPLINK ideal-int +pkg syscall (openbsd-386-cgo), const AF_IPX ideal-int +pkg syscall (openbsd-386-cgo), const AF_ISDN ideal-int +pkg syscall (openbsd-386-cgo), const AF_ISO ideal-int +pkg syscall (openbsd-386-cgo), const AF_KEY ideal-int +pkg syscall (openbsd-386-cgo), const AF_LAT ideal-int +pkg syscall (openbsd-386-cgo), const AF_LINK ideal-int +pkg syscall (openbsd-386-cgo), const AF_LOCAL ideal-int +pkg syscall (openbsd-386-cgo), const AF_MAX ideal-int +pkg syscall (openbsd-386-cgo), const AF_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const AF_NATM ideal-int +pkg syscall (openbsd-386-cgo), const AF_NS ideal-int +pkg syscall (openbsd-386-cgo), const AF_OSI ideal-int +pkg syscall (openbsd-386-cgo), const AF_PUP ideal-int +pkg syscall (openbsd-386-cgo), const AF_ROUTE ideal-int +pkg syscall (openbsd-386-cgo), const AF_SIP ideal-int +pkg syscall (openbsd-386-cgo), const AF_SNA ideal-int +pkg syscall (openbsd-386-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (openbsd-386-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (openbsd-386-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (openbsd-386-cgo), const B0 ideal-int +pkg syscall (openbsd-386-cgo), const B110 ideal-int +pkg syscall (openbsd-386-cgo), const B115200 ideal-int +pkg syscall (openbsd-386-cgo), const B1200 ideal-int +pkg syscall (openbsd-386-cgo), const B134 ideal-int +pkg syscall (openbsd-386-cgo), const B14400 ideal-int +pkg syscall (openbsd-386-cgo), const B150 ideal-int +pkg syscall (openbsd-386-cgo), const B1800 ideal-int +pkg syscall (openbsd-386-cgo), const B19200 ideal-int +pkg syscall (openbsd-386-cgo), const B200 ideal-int +pkg syscall (openbsd-386-cgo), const B230400 ideal-int +pkg syscall (openbsd-386-cgo), const B2400 ideal-int +pkg syscall (openbsd-386-cgo), const B28800 ideal-int +pkg syscall (openbsd-386-cgo), const B300 ideal-int +pkg syscall (openbsd-386-cgo), const B38400 ideal-int +pkg syscall (openbsd-386-cgo), const B4800 ideal-int +pkg syscall (openbsd-386-cgo), const B50 ideal-int +pkg syscall (openbsd-386-cgo), const B57600 ideal-int +pkg syscall (openbsd-386-cgo), const B600 ideal-int +pkg syscall (openbsd-386-cgo), const B7200 ideal-int +pkg syscall (openbsd-386-cgo), const B75 ideal-int +pkg syscall (openbsd-386-cgo), const B76800 ideal-int +pkg syscall (openbsd-386-cgo), const B9600 ideal-int +pkg syscall (openbsd-386-cgo), const BIOCFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGBLEN ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGDIRFILT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGDLT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGETIF ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGFILDROP ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGRSIG ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCGSTATS ideal-int +pkg syscall (openbsd-386-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (openbsd-386-cgo), const BIOCLOCK ideal-int +pkg syscall (openbsd-386-cgo), const BIOCPROMISC ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSBLEN ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSDIRFILT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSDLT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSETF ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSETIF ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSETWF ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSFILDROP ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSRSIG ideal-int +pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (openbsd-386-cgo), const BIOCVERSION ideal-int +pkg syscall (openbsd-386-cgo), const BPF_A ideal-int +pkg syscall (openbsd-386-cgo), const BPF_ABS ideal-int +pkg syscall (openbsd-386-cgo), const BPF_ADD ideal-int +pkg syscall (openbsd-386-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (openbsd-386-cgo), const BPF_ALU ideal-int +pkg syscall (openbsd-386-cgo), const BPF_AND ideal-int +pkg syscall (openbsd-386-cgo), const BPF_B ideal-int +pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_IN ideal-int +pkg syscall (openbsd-386-cgo), const BPF_DIRECTION_OUT ideal-int +pkg syscall (openbsd-386-cgo), const BPF_DIV ideal-int +pkg syscall (openbsd-386-cgo), const BPF_H ideal-int +pkg syscall (openbsd-386-cgo), const BPF_IMM ideal-int +pkg syscall (openbsd-386-cgo), const BPF_IND ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JA ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JEQ ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JGE ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JGT ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JMP ideal-int +pkg syscall (openbsd-386-cgo), const BPF_JSET ideal-int +pkg syscall (openbsd-386-cgo), const BPF_K ideal-int +pkg syscall (openbsd-386-cgo), const BPF_LD ideal-int +pkg syscall (openbsd-386-cgo), const BPF_LDX ideal-int +pkg syscall (openbsd-386-cgo), const BPF_LEN ideal-int +pkg syscall (openbsd-386-cgo), const BPF_LSH ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MEM ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MISC ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MSH ideal-int +pkg syscall (openbsd-386-cgo), const BPF_MUL ideal-int +pkg syscall (openbsd-386-cgo), const BPF_NEG ideal-int +pkg syscall (openbsd-386-cgo), const BPF_OR ideal-int +pkg syscall (openbsd-386-cgo), const BPF_RELEASE ideal-int +pkg syscall (openbsd-386-cgo), const BPF_RET ideal-int +pkg syscall (openbsd-386-cgo), const BPF_RSH ideal-int +pkg syscall (openbsd-386-cgo), const BPF_ST ideal-int +pkg syscall (openbsd-386-cgo), const BPF_STX ideal-int +pkg syscall (openbsd-386-cgo), const BPF_SUB ideal-int +pkg syscall (openbsd-386-cgo), const BPF_TAX ideal-int +pkg syscall (openbsd-386-cgo), const BPF_TXA ideal-int +pkg syscall (openbsd-386-cgo), const BPF_W ideal-int +pkg syscall (openbsd-386-cgo), const BPF_X ideal-int +pkg syscall (openbsd-386-cgo), const BRKINT ideal-int +pkg syscall (openbsd-386-cgo), const CFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const CLOCAL ideal-int +pkg syscall (openbsd-386-cgo), const CREAD ideal-int +pkg syscall (openbsd-386-cgo), const CS5 ideal-int +pkg syscall (openbsd-386-cgo), const CS6 ideal-int +pkg syscall (openbsd-386-cgo), const CS7 ideal-int +pkg syscall (openbsd-386-cgo), const CS8 ideal-int +pkg syscall (openbsd-386-cgo), const CSIZE ideal-int +pkg syscall (openbsd-386-cgo), const CSTART ideal-int +pkg syscall (openbsd-386-cgo), const CSTATUS ideal-int +pkg syscall (openbsd-386-cgo), const CSTOP ideal-int +pkg syscall (openbsd-386-cgo), const CSTOPB ideal-int +pkg syscall (openbsd-386-cgo), const CSUSP ideal-int +pkg syscall (openbsd-386-cgo), const CTL_MAXNAME ideal-int +pkg syscall (openbsd-386-cgo), const CTL_NET ideal-int +pkg syscall (openbsd-386-cgo), const DIOCOSFPFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const DLT_ARCNET ideal-int +pkg syscall (openbsd-386-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (openbsd-386-cgo), const DLT_AX25 ideal-int +pkg syscall (openbsd-386-cgo), const DLT_CHAOS ideal-int +pkg syscall (openbsd-386-cgo), const DLT_C_HDLC ideal-int +pkg syscall (openbsd-386-cgo), const DLT_EN10MB ideal-int +pkg syscall (openbsd-386-cgo), const DLT_EN3MB ideal-int +pkg syscall (openbsd-386-cgo), const DLT_ENC ideal-int +pkg syscall (openbsd-386-cgo), const DLT_FDDI ideal-int +pkg syscall (openbsd-386-cgo), const DLT_IEEE802 ideal-int +pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (openbsd-386-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (openbsd-386-cgo), const DLT_LOOP ideal-int +pkg syscall (openbsd-386-cgo), const DLT_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const DLT_NULL ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PFLOG ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PFSYNC ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PPP ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (openbsd-386-cgo), const DLT_PRONET ideal-int +pkg syscall (openbsd-386-cgo), const DLT_RAW ideal-int +pkg syscall (openbsd-386-cgo), const DLT_SLIP ideal-int +pkg syscall (openbsd-386-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (openbsd-386-cgo), const DT_BLK ideal-int +pkg syscall (openbsd-386-cgo), const DT_CHR ideal-int +pkg syscall (openbsd-386-cgo), const DT_DIR ideal-int +pkg syscall (openbsd-386-cgo), const DT_FIFO ideal-int +pkg syscall (openbsd-386-cgo), const DT_LNK ideal-int +pkg syscall (openbsd-386-cgo), const DT_REG ideal-int +pkg syscall (openbsd-386-cgo), const DT_SOCK ideal-int +pkg syscall (openbsd-386-cgo), const DT_UNKNOWN ideal-int +pkg syscall (openbsd-386-cgo), const EAUTH Errno +pkg syscall (openbsd-386-cgo), const EBADRPC Errno +pkg syscall (openbsd-386-cgo), const ECHO ideal-int +pkg syscall (openbsd-386-cgo), const ECHOCTL ideal-int +pkg syscall (openbsd-386-cgo), const ECHOE ideal-int +pkg syscall (openbsd-386-cgo), const ECHOK ideal-int +pkg syscall (openbsd-386-cgo), const ECHOKE ideal-int +pkg syscall (openbsd-386-cgo), const ECHONL ideal-int +pkg syscall (openbsd-386-cgo), const ECHOPRT ideal-int +pkg syscall (openbsd-386-cgo), const EFTYPE Errno +pkg syscall (openbsd-386-cgo), const EIPSEC Errno +pkg syscall (openbsd-386-cgo), const ELAST Errno +pkg syscall (openbsd-386-cgo), const EMEDIUMTYPE Errno +pkg syscall (openbsd-386-cgo), const EMT_TAGOVF ideal-int +pkg syscall (openbsd-386-cgo), const EMUL_ENABLED ideal-int +pkg syscall (openbsd-386-cgo), const EMUL_NATIVE ideal-int +pkg syscall (openbsd-386-cgo), const ENDRUNDISC ideal-int +pkg syscall (openbsd-386-cgo), const ENEEDAUTH Errno +pkg syscall (openbsd-386-cgo), const ENOATTR Errno +pkg syscall (openbsd-386-cgo), const ENOMEDIUM Errno +pkg syscall (openbsd-386-cgo), const EPROCLIM Errno +pkg syscall (openbsd-386-cgo), const EPROCUNAVAIL Errno +pkg syscall (openbsd-386-cgo), const EPROGMISMATCH Errno +pkg syscall (openbsd-386-cgo), const EPROGUNAVAIL Errno +pkg syscall (openbsd-386-cgo), const ERPCMISMATCH Errno +pkg syscall (openbsd-386-cgo), const ETHERMIN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERMTU ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AOE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LLDP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_QINQ ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SLOW ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (openbsd-386-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_ALIGN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_MAX_DIX_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (openbsd-386-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_AIO ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_PROC ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_READ ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_TIMER ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_VNODE ideal-int +pkg syscall (openbsd-386-cgo), const EVFILT_WRITE ideal-int +pkg syscall (openbsd-386-cgo), const EV_ADD ideal-int +pkg syscall (openbsd-386-cgo), const EV_CLEAR ideal-int +pkg syscall (openbsd-386-cgo), const EV_DELETE ideal-int +pkg syscall (openbsd-386-cgo), const EV_DISABLE ideal-int +pkg syscall (openbsd-386-cgo), const EV_ENABLE ideal-int +pkg syscall (openbsd-386-cgo), const EV_EOF ideal-int +pkg syscall (openbsd-386-cgo), const EV_ERROR ideal-int +pkg syscall (openbsd-386-cgo), const EV_FLAG1 ideal-int +pkg syscall (openbsd-386-cgo), const EV_ONESHOT ideal-int +pkg syscall (openbsd-386-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const EXTA ideal-int +pkg syscall (openbsd-386-cgo), const EXTB ideal-int +pkg syscall (openbsd-386-cgo), const EXTPROC ideal-int +pkg syscall (openbsd-386-cgo), const FD_CLOEXEC ideal-int +pkg syscall (openbsd-386-cgo), const FD_SETSIZE ideal-int +pkg syscall (openbsd-386-cgo), const FLUSHO ideal-int +pkg syscall (openbsd-386-cgo), const F_DUPFD ideal-int +pkg syscall (openbsd-386-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (openbsd-386-cgo), const F_GETFD ideal-int +pkg syscall (openbsd-386-cgo), const F_GETFL ideal-int +pkg syscall (openbsd-386-cgo), const F_GETLK ideal-int +pkg syscall (openbsd-386-cgo), const F_GETOWN ideal-int +pkg syscall (openbsd-386-cgo), const F_OK ideal-int +pkg syscall (openbsd-386-cgo), const F_RDLCK ideal-int +pkg syscall (openbsd-386-cgo), const F_SETFD ideal-int +pkg syscall (openbsd-386-cgo), const F_SETFL ideal-int +pkg syscall (openbsd-386-cgo), const F_SETLK ideal-int +pkg syscall (openbsd-386-cgo), const F_SETLKW ideal-int +pkg syscall (openbsd-386-cgo), const F_SETOWN ideal-int +pkg syscall (openbsd-386-cgo), const F_UNLCK ideal-int +pkg syscall (openbsd-386-cgo), const F_WRLCK ideal-int +pkg syscall (openbsd-386-cgo), const HUPCL ideal-int +pkg syscall (openbsd-386-cgo), const ICANON ideal-int +pkg syscall (openbsd-386-cgo), const ICMP6_FILTER = 18 +pkg syscall (openbsd-386-cgo), const ICMP6_FILTER ideal-int +pkg syscall (openbsd-386-cgo), const ICRNL ideal-int +pkg syscall (openbsd-386-cgo), const IEXTEN ideal-int +pkg syscall (openbsd-386-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (openbsd-386-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (openbsd-386-cgo), const IFA_ROUTE ideal-int +pkg syscall (openbsd-386-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (openbsd-386-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (openbsd-386-cgo), const IFF_DEBUG ideal-int +pkg syscall (openbsd-386-cgo), const IFF_LINK0 ideal-int +pkg syscall (openbsd-386-cgo), const IFF_LINK1 ideal-int +pkg syscall (openbsd-386-cgo), const IFF_LINK2 ideal-int +pkg syscall (openbsd-386-cgo), const IFF_NOARP ideal-int +pkg syscall (openbsd-386-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (openbsd-386-cgo), const IFF_OACTIVE ideal-int +pkg syscall (openbsd-386-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (openbsd-386-cgo), const IFF_PROMISC ideal-int +pkg syscall (openbsd-386-cgo), const IFF_RUNNING ideal-int +pkg syscall (openbsd-386-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (openbsd-386-cgo), const IFNAMSIZ ideal-int +pkg syscall (openbsd-386-cgo), const IFT_1822 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (openbsd-386-cgo), const IFT_AAL2 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_AAL5 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ADSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ARAP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ARCNET ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ASYNC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMDXI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMIMA ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (openbsd-386-cgo), const IFT_BLUETOOTH ideal-int +pkg syscall (openbsd-386-cgo), const IFT_BRIDGE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_BSC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CARP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CEPT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CES ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_CNR ideal-int +pkg syscall (openbsd-386-cgo), const IFT_COFFEE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DCN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DLSW ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DS0 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DS1FDL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DS3 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DTM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DUMMY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DVBASILN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ECONET ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ENC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_EON ideal-int +pkg syscall (openbsd-386-cgo), const IFT_EPLRS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ESCON ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ETHER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FAITH ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FAST ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FASTETHER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FDDI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRELAY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (openbsd-386-cgo), const IFT_G703AT64K ideal-int +pkg syscall (openbsd-386-cgo), const IFT_GIF ideal-int +pkg syscall (openbsd-386-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (openbsd-386-cgo), const IFT_GR303IDT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_GR303RDT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_H323PROXY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HDH1822 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HDLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HDSL2 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HIPPI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HSSI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_HY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IFGSN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IMT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (openbsd-386-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (openbsd-386-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISDN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISDNS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISDNU ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88023 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88024 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88025 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISO88026 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ISUP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_L2VLAN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LAPB ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LAPD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LAPF ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_LOOP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MIOX25 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MODEM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MPC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MSDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MVL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_MYRINET ideal-int +pkg syscall (openbsd-386-cgo), const IFT_NFAS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_NSIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_OTHER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_P10 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_P80 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PARA ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PFLOG ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PFLOW ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PFSYNC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PON155 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PON622 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_POS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PPP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPATM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPMUX ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_PVC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_Q2931 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_QLLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_RADSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_REACHDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_RFC1483 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_RS232 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_RSRB ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SDLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SHDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SIPSIG ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SIPTG ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SLIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SONET ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SONETPATH ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SONETVT ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SRP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_STARLAN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_T1 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TDLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TELINK ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TERMPAD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TR008 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (openbsd-386-cgo), const IFT_TUNNEL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_ULTRA ideal-int +pkg syscall (openbsd-386-cgo), const IFT_USB ideal-int +pkg syscall (openbsd-386-cgo), const IFT_V11 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_V35 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_V36 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_V37 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VDSL ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEDID ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEEM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (openbsd-386-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X213 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X25 ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X25DDN ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X25MLP ideal-int +pkg syscall (openbsd-386-cgo), const IFT_X25PLE ideal-int +pkg syscall (openbsd-386-cgo), const IFT_XETHER ideal-int +pkg syscall (openbsd-386-cgo), const IGNBRK ideal-int +pkg syscall (openbsd-386-cgo), const IGNCR ideal-int +pkg syscall (openbsd-386-cgo), const IGNPAR ideal-int +pkg syscall (openbsd-386-cgo), const IMAXBEL ideal-int +pkg syscall (openbsd-386-cgo), const INLCR ideal-int +pkg syscall (openbsd-386-cgo), const INPCK ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (openbsd-386-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (openbsd-386-cgo), const IN_RFC3021_HOST ideal-int +pkg syscall (openbsd-386-cgo), const IN_RFC3021_NET ideal-int +pkg syscall (openbsd-386-cgo), const IN_RFC3021_NSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_AH ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_CARP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_DONE ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_EGP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_EON ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ESP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_GGP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_GRE ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_IDP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_MAX ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_NONE ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_PIM ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_PUP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_RAW ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_TP ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_AUTH_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_FAITH ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_MMTU ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_OPTIONS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PIPEX ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTABLE ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_TCLASS ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_VERSION ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (openbsd-386-cgo), const IP_AUTH_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (openbsd-386-cgo), const IP_DF ideal-int +pkg syscall (openbsd-386-cgo), const IP_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IP_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IP_HDRINCL ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSECFLOWINFO ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_CRED ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_LOCAL_ID ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_CRED ideal-int +pkg syscall (openbsd-386-cgo), const IP_IPSEC_REMOTE_ID ideal-int +pkg syscall (openbsd-386-cgo), const IP_MAXPACKET ideal-int +pkg syscall (openbsd-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (openbsd-386-cgo), const IP_MF ideal-int +pkg syscall (openbsd-386-cgo), const IP_MINTTL ideal-int +pkg syscall (openbsd-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (openbsd-386-cgo), const IP_MSS ideal-int +pkg syscall (openbsd-386-cgo), const IP_OFFMASK ideal-int +pkg syscall (openbsd-386-cgo), const IP_OPTIONS ideal-int +pkg syscall (openbsd-386-cgo), const IP_PIPEX ideal-int +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE ideal-int +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-386-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVDSTPORT ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVIF ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVRTABLE ideal-int +pkg syscall (openbsd-386-cgo), const IP_RECVTTL ideal-int +pkg syscall (openbsd-386-cgo), const IP_RETOPTS ideal-int +pkg syscall (openbsd-386-cgo), const IP_RF ideal-int +pkg syscall (openbsd-386-cgo), const IP_RTABLE ideal-int +pkg syscall (openbsd-386-cgo), const ISIG ideal-int +pkg syscall (openbsd-386-cgo), const ISTRIP ideal-int +pkg syscall (openbsd-386-cgo), const IXANY ideal-int +pkg syscall (openbsd-386-cgo), const IXOFF ideal-int +pkg syscall (openbsd-386-cgo), const IXON ideal-int +pkg syscall (openbsd-386-cgo), const LCNT_OVERLOAD_FLUSH ideal-int +pkg syscall (openbsd-386-cgo), const LOCK_EX ideal-int +pkg syscall (openbsd-386-cgo), const LOCK_NB ideal-int +pkg syscall (openbsd-386-cgo), const LOCK_SH ideal-int +pkg syscall (openbsd-386-cgo), const LOCK_UN ideal-int +pkg syscall (openbsd-386-cgo), const MSG_BCAST ideal-int +pkg syscall (openbsd-386-cgo), const MSG_CTRUNC ideal-int +pkg syscall (openbsd-386-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (openbsd-386-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (openbsd-386-cgo), const MSG_EOR ideal-int +pkg syscall (openbsd-386-cgo), const MSG_MCAST ideal-int +pkg syscall (openbsd-386-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (openbsd-386-cgo), const MSG_OOB ideal-int +pkg syscall (openbsd-386-cgo), const MSG_PEEK ideal-int +pkg syscall (openbsd-386-cgo), const MSG_TRUNC ideal-int +pkg syscall (openbsd-386-cgo), const MSG_WAITALL ideal-int +pkg syscall (openbsd-386-cgo), const NAME_MAX ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_DUMP ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_MAXID ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_STATS ideal-int +pkg syscall (openbsd-386-cgo), const NET_RT_TABLE ideal-int +pkg syscall (openbsd-386-cgo), const NOFLSH ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_CHILD ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_DELETE ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_EOF ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_EXEC ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_EXIT ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_EXTEND ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_FORK ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_LINK ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_LOWAT ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_RENAME ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_REVOKE ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_TRACK ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_TRUNCATE ideal-int +pkg syscall (openbsd-386-cgo), const NOTE_WRITE ideal-int +pkg syscall (openbsd-386-cgo), const OCRNL ideal-int +pkg syscall (openbsd-386-cgo), const ONLCR ideal-int +pkg syscall (openbsd-386-cgo), const ONLRET ideal-int +pkg syscall (openbsd-386-cgo), const ONOCR ideal-int +pkg syscall (openbsd-386-cgo), const ONOEOT ideal-int +pkg syscall (openbsd-386-cgo), const OPOST ideal-int +pkg syscall (openbsd-386-cgo), const O_ACCMODE ideal-int +pkg syscall (openbsd-386-cgo), const O_DIRECTORY ideal-int +pkg syscall (openbsd-386-cgo), const O_DSYNC ideal-int +pkg syscall (openbsd-386-cgo), const O_EXLOCK ideal-int +pkg syscall (openbsd-386-cgo), const O_FSYNC ideal-int +pkg syscall (openbsd-386-cgo), const O_NDELAY ideal-int +pkg syscall (openbsd-386-cgo), const O_NOFOLLOW ideal-int +pkg syscall (openbsd-386-cgo), const O_RSYNC ideal-int +pkg syscall (openbsd-386-cgo), const O_SHLOCK ideal-int +pkg syscall (openbsd-386-cgo), const PARENB ideal-int +pkg syscall (openbsd-386-cgo), const PARMRK ideal-int +pkg syscall (openbsd-386-cgo), const PARODD ideal-int +pkg syscall (openbsd-386-cgo), const PENDIN ideal-int +pkg syscall (openbsd-386-cgo), const PF_FLUSH ideal-int +pkg syscall (openbsd-386-cgo), const PRIO_PGRP = 1 +pkg syscall (openbsd-386-cgo), const PRIO_PGRP ideal-int +pkg syscall (openbsd-386-cgo), const PRIO_PROCESS = 0 +pkg syscall (openbsd-386-cgo), const PRIO_PROCESS ideal-int +pkg syscall (openbsd-386-cgo), const PRIO_USER = 2 +pkg syscall (openbsd-386-cgo), const PRIO_USER ideal-int +pkg syscall (openbsd-386-cgo), const PTRACE_CONT ideal-int +pkg syscall (openbsd-386-cgo), const PTRACE_KILL ideal-int +pkg syscall (openbsd-386-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (openbsd-386-cgo), const PT_MASK ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_CORE ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_CPU ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_DATA ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (openbsd-386-cgo), const RLIMIT_STACK ideal-int +pkg syscall (openbsd-386-cgo), const RLIM_INFINITY ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_BRD ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_DST ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_GENMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_IFA ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_IFP ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_LABEL ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_MAX ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_NETMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_SRC ideal-int +pkg syscall (openbsd-386-cgo), const RTAX_SRCMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTA_AUTHOR ideal-int +pkg syscall (openbsd-386-cgo), const RTA_BRD ideal-int +pkg syscall (openbsd-386-cgo), const RTA_DST ideal-int +pkg syscall (openbsd-386-cgo), const RTA_GATEWAY ideal-int +pkg syscall (openbsd-386-cgo), const RTA_GENMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTA_IFA ideal-int +pkg syscall (openbsd-386-cgo), const RTA_IFP ideal-int +pkg syscall (openbsd-386-cgo), const RTA_LABEL ideal-int +pkg syscall (openbsd-386-cgo), const RTA_NETMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTA_SRC ideal-int +pkg syscall (openbsd-386-cgo), const RTA_SRCMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (openbsd-386-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (openbsd-386-cgo), const RTF_CLONED ideal-int +pkg syscall (openbsd-386-cgo), const RTF_CLONING ideal-int +pkg syscall (openbsd-386-cgo), const RTF_DONE ideal-int +pkg syscall (openbsd-386-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (openbsd-386-cgo), const RTF_FMASK ideal-int +pkg syscall (openbsd-386-cgo), const RTF_GATEWAY ideal-int +pkg syscall (openbsd-386-cgo), const RTF_HOST ideal-int +pkg syscall (openbsd-386-cgo), const RTF_LLINFO ideal-int +pkg syscall (openbsd-386-cgo), const RTF_MASK ideal-int +pkg syscall (openbsd-386-cgo), const RTF_MODIFIED ideal-int +pkg syscall (openbsd-386-cgo), const RTF_MPATH ideal-int +pkg syscall (openbsd-386-cgo), const RTF_MPLS ideal-int +pkg syscall (openbsd-386-cgo), const RTF_PERMANENT_ARP ideal-int +pkg syscall (openbsd-386-cgo), const RTF_PROTO1 ideal-int +pkg syscall (openbsd-386-cgo), const RTF_PROTO2 ideal-int +pkg syscall (openbsd-386-cgo), const RTF_PROTO3 ideal-int +pkg syscall (openbsd-386-cgo), const RTF_REJECT ideal-int +pkg syscall (openbsd-386-cgo), const RTF_SOURCE ideal-int +pkg syscall (openbsd-386-cgo), const RTF_STATIC ideal-int +pkg syscall (openbsd-386-cgo), const RTF_TUNNEL ideal-int +pkg syscall (openbsd-386-cgo), const RTF_UP ideal-int +pkg syscall (openbsd-386-cgo), const RTF_USETRAILERS ideal-int +pkg syscall (openbsd-386-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_ADD ideal-int +pkg syscall (openbsd-386-cgo), const RTM_CHANGE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_DELADDR ideal-int +pkg syscall (openbsd-386-cgo), const RTM_DELETE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_DESYNC ideal-int +pkg syscall (openbsd-386-cgo), const RTM_GET ideal-int +pkg syscall (openbsd-386-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_IFINFO ideal-int +pkg syscall (openbsd-386-cgo), const RTM_LOCK ideal-int +pkg syscall (openbsd-386-cgo), const RTM_LOSING ideal-int +pkg syscall (openbsd-386-cgo), const RTM_MAXSIZE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_MISS ideal-int +pkg syscall (openbsd-386-cgo), const RTM_NEWADDR ideal-int +pkg syscall (openbsd-386-cgo), const RTM_REDIRECT ideal-int +pkg syscall (openbsd-386-cgo), const RTM_RESOLVE ideal-int +pkg syscall (openbsd-386-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (openbsd-386-cgo), const RTM_VERSION ideal-int +pkg syscall (openbsd-386-cgo), const RTV_EXPIRE ideal-int +pkg syscall (openbsd-386-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (openbsd-386-cgo), const RTV_MTU ideal-int +pkg syscall (openbsd-386-cgo), const RTV_RPIPE ideal-int +pkg syscall (openbsd-386-cgo), const RTV_RTT ideal-int +pkg syscall (openbsd-386-cgo), const RTV_RTTVAR ideal-int +pkg syscall (openbsd-386-cgo), const RTV_SPIPE ideal-int +pkg syscall (openbsd-386-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (openbsd-386-cgo), const RT_TABLEID_MAX ideal-int +pkg syscall (openbsd-386-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (openbsd-386-cgo), const RUSAGE_SELF ideal-int +pkg syscall (openbsd-386-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (openbsd-386-cgo), const SCM_RIGHTS ideal-int +pkg syscall (openbsd-386-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (openbsd-386-cgo), const SIGCHLD Signal +pkg syscall (openbsd-386-cgo), const SIGCONT Signal +pkg syscall (openbsd-386-cgo), const SIGEMT Signal +pkg syscall (openbsd-386-cgo), const SIGINFO Signal +pkg syscall (openbsd-386-cgo), const SIGIO Signal +pkg syscall (openbsd-386-cgo), const SIGIOT Signal +pkg syscall (openbsd-386-cgo), const SIGPROF Signal +pkg syscall (openbsd-386-cgo), const SIGSTOP Signal +pkg syscall (openbsd-386-cgo), const SIGSYS Signal +pkg syscall (openbsd-386-cgo), const SIGTHR Signal +pkg syscall (openbsd-386-cgo), const SIGTSTP Signal +pkg syscall (openbsd-386-cgo), const SIGTTIN Signal +pkg syscall (openbsd-386-cgo), const SIGTTOU Signal +pkg syscall (openbsd-386-cgo), const SIGURG Signal +pkg syscall (openbsd-386-cgo), const SIGUSR1 Signal +pkg syscall (openbsd-386-cgo), const SIGUSR2 Signal +pkg syscall (openbsd-386-cgo), const SIGVTALRM Signal +pkg syscall (openbsd-386-cgo), const SIGWINCH Signal +pkg syscall (openbsd-386-cgo), const SIGXCPU Signal +pkg syscall (openbsd-386-cgo), const SIGXFSZ Signal +pkg syscall (openbsd-386-cgo), const SIOCADDMULTI ideal-int +pkg syscall (openbsd-386-cgo), const SIOCAIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCALIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCATMARK ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGADD ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGADDS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGARL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGDEL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGDELS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGFRL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGCACHE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGFD ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGHT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGIFFLGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGMA ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPRI ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGRL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGSIFS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGGTO ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGIFS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGRTS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSCACHE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSFD ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSHT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFCOST ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFFLGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSIFPRIO ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSMA ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSPRI ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSPROTO ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSTO ideal-int +pkg syscall (openbsd-386-cgo), const SIOCBRDGSTXHC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCDELMULTI ideal-int +pkg syscall (openbsd-386-cgo), const SIOCDIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETKALIVE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETLABEL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETPFLOW ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGHIWAT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFASYNCMAP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFCONF ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFDATA ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFGATTR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFMTU ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFPRIORITY ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFRDOMAIN ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFRTLABEL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFTIMESLOT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFXFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYRTABLE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGLOWAT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGPGRP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGVH ideal-int +pkg syscall (openbsd-386-cgo), const SIOCIFCREATE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (openbsd-386-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSETKALIVE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSETLABEL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSETPFLOW ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSHIWAT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFASYNCMAP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFGATTR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFMTU ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFPRIORITY ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFRDOMAIN ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFRTLABEL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFTIMESLOT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSIFXFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYRTABLE ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSLOWAT ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSPGRP ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSVH ideal-int +pkg syscall (openbsd-386-cgo), const SOCK_RDM ideal-int +pkg syscall (openbsd-386-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (openbsd-386-cgo), const SO_BINDANY ideal-int +pkg syscall (openbsd-386-cgo), const SO_DEBUG ideal-int +pkg syscall (openbsd-386-cgo), const SO_ERROR ideal-int +pkg syscall (openbsd-386-cgo), const SO_NETPROC ideal-int +pkg syscall (openbsd-386-cgo), const SO_OOBINLINE ideal-int +pkg syscall (openbsd-386-cgo), const SO_PEERCRED ideal-int +pkg syscall (openbsd-386-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (openbsd-386-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (openbsd-386-cgo), const SO_REUSEPORT ideal-int +pkg syscall (openbsd-386-cgo), const SO_RTABLE ideal-int +pkg syscall (openbsd-386-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (openbsd-386-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (openbsd-386-cgo), const SO_SPLICE ideal-int +pkg syscall (openbsd-386-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (openbsd-386-cgo), const SO_TYPE ideal-int +pkg syscall (openbsd-386-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ACCEPT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ACCESS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ACCT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ADJFREQ ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ADJTIME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_BIND ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CHDIR ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CHMOD ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CHOWN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CHROOT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOSE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CONNECT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_DUP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_DUP2 ideal-int +pkg syscall (openbsd-386-cgo), const SYS_EXECVE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_EXIT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHDIR ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHMOD ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHOWN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FCNTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FHOPEN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FHSTAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FLOCK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FORK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FSTAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FSTATAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FSTATFS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FSYNC ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_FUTIMES ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETDTABLECOUNT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETEGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETEUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETFH ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETITIMER ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPGRP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPPID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETRESGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETRESUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETRTABLE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETSID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETTHRID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_IOCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_KEVENT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_KILL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_KQUEUE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_KTRACE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LCHOWN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LINK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LINKAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LISTEN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LSEEK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MADVISE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MINCORE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MINHERIT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKDIR ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKFIFO ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKNOD ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MKNODAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MLOCK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MMAP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MOUNT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MPROTECT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MQUERY ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MSGCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MSGGET ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MSGRCV ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MSGSND ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MSYNC ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_MUNMAP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_NFSSVC ideal-int +pkg syscall (openbsd-386-cgo), const SYS_OBREAK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_OPEN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_OPENAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PATHCONF ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PIPE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_POLL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PREAD ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PREADV ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PROFIL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PTRACE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PWRITE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PWRITEV ideal-int +pkg syscall (openbsd-386-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_READ ideal-int +pkg syscall (openbsd-386-cgo), const SYS_READLINK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_READLINKAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_READV ideal-int +pkg syscall (openbsd-386-cgo), const SYS_REBOOT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_RECVFROM ideal-int +pkg syscall (openbsd-386-cgo), const SYS_RECVMSG ideal-int +pkg syscall (openbsd-386-cgo), const SYS_RENAME ideal-int +pkg syscall (openbsd-386-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_REVOKE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_RMDIR ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SELECT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SEMGET ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SEMOP ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SENDMSG ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SENDTO ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETEGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETEUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETITIMER ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETPGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETREGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETRESGID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETRESUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETREUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETRTABLE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETSID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SETUID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SHMAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SHMCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SHMDT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SHMGET ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGACTION ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SOCKET ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (openbsd-386-cgo), const SYS_STAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_STATFS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SYMLINK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SYNC ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SYSARCH ideal-int +pkg syscall (openbsd-386-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UMASK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UNLINK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_UTIMES ideal-int +pkg syscall (openbsd-386-cgo), const SYS_VFORK ideal-int +pkg syscall (openbsd-386-cgo), const SYS_WAIT4 ideal-int +pkg syscall (openbsd-386-cgo), const SYS_WRITE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_WRITEV ideal-int +pkg syscall (openbsd-386-cgo), const SYS___GETCWD ideal-int +pkg syscall (openbsd-386-cgo), const SYS___GET_TCB ideal-int +pkg syscall (openbsd-386-cgo), const SYS___SEMCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS___SET_TCB ideal-int +pkg syscall (openbsd-386-cgo), const SYS___SYSCTL ideal-int +pkg syscall (openbsd-386-cgo), const SYS___TFORK ideal-int +pkg syscall (openbsd-386-cgo), const SYS___THREXIT ideal-int +pkg syscall (openbsd-386-cgo), const SYS___THRSIGDIVERT ideal-int +pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP ideal-int +pkg syscall (openbsd-386-cgo), const SYS___THRWAKEUP ideal-int +pkg syscall (openbsd-386-cgo), const SizeofBpfHdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofBpfInsn ideal-int +pkg syscall (openbsd-386-cgo), const SizeofBpfProgram ideal-int +pkg syscall (openbsd-386-cgo), const SizeofBpfStat ideal-int +pkg syscall (openbsd-386-cgo), const SizeofBpfVersion ideal-int +pkg syscall (openbsd-386-cgo), const SizeofCmsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (openbsd-386-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIPMreq ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (openbsd-386-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIfData ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (openbsd-386-cgo), const SizeofLinger ideal-int +pkg syscall (openbsd-386-cgo), const SizeofMsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofRtMetrics ideal-int +pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (openbsd-386-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (openbsd-386-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (openbsd-386-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (openbsd-386-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (openbsd-386-cgo), const TCIFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const TCIOFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const TCOFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MAXBURST ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MAXSEG ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MAXWIN ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MD5SIG ideal-int +pkg syscall (openbsd-386-cgo), const TCP_MSS ideal-int +pkg syscall (openbsd-386-cgo), const TCP_NSTATES ideal-int +pkg syscall (openbsd-386-cgo), const TCP_SACK_ENABLE ideal-int +pkg syscall (openbsd-386-cgo), const TCSAFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const TIOCCBRK ideal-int +pkg syscall (openbsd-386-cgo), const TIOCCDTR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCCONS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCDRAIN ideal-int +pkg syscall (openbsd-386-cgo), const TIOCEXCL ideal-int +pkg syscall (openbsd-386-cgo), const TIOCEXT ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLAG_PPS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCFLUSH ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGETA ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGETD ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGPGRP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGWINSZ ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMBIC ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMBIS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMGET ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMODG ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMODS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCMSET ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_CAR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_CD ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_CTS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_DSR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_DTR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_LE ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_RI ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_RNG ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_RTS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_SR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCM_ST ideal-int +pkg syscall (openbsd-386-cgo), const TIOCNOTTY ideal-int +pkg syscall (openbsd-386-cgo), const TIOCNXCL ideal-int +pkg syscall (openbsd-386-cgo), const TIOCOUTQ ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_START ideal-int +pkg syscall (openbsd-386-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCREMOTE ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSBRK ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSCTTY ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSDTR ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSETA ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSETAF ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSETAW ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSETD ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSFLAGS ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSIG ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSPGRP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSTART ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSTAT ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSTI ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSTOP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSTSTAMP ideal-int +pkg syscall (openbsd-386-cgo), const TIOCSWINSZ ideal-int +pkg syscall (openbsd-386-cgo), const TIOCUCNTL ideal-int +pkg syscall (openbsd-386-cgo), const TOSTOP ideal-int +pkg syscall (openbsd-386-cgo), const VDISCARD ideal-int +pkg syscall (openbsd-386-cgo), const VDSUSP ideal-int +pkg syscall (openbsd-386-cgo), const VEOF ideal-int +pkg syscall (openbsd-386-cgo), const VEOL ideal-int +pkg syscall (openbsd-386-cgo), const VEOL2 ideal-int +pkg syscall (openbsd-386-cgo), const VERASE ideal-int +pkg syscall (openbsd-386-cgo), const VINTR ideal-int +pkg syscall (openbsd-386-cgo), const VKILL ideal-int +pkg syscall (openbsd-386-cgo), const VLNEXT ideal-int +pkg syscall (openbsd-386-cgo), const VMIN ideal-int +pkg syscall (openbsd-386-cgo), const VQUIT ideal-int +pkg syscall (openbsd-386-cgo), const VREPRINT ideal-int +pkg syscall (openbsd-386-cgo), const VSTART ideal-int +pkg syscall (openbsd-386-cgo), const VSTATUS ideal-int +pkg syscall (openbsd-386-cgo), const VSTOP ideal-int +pkg syscall (openbsd-386-cgo), const VSUSP ideal-int +pkg syscall (openbsd-386-cgo), const VTIME ideal-int +pkg syscall (openbsd-386-cgo), const VWERASE ideal-int +pkg syscall (openbsd-386-cgo), const WALTSIG ideal-int +pkg syscall (openbsd-386-cgo), const WCONTINUED ideal-int +pkg syscall (openbsd-386-cgo), const WCOREFLAG ideal-int +pkg syscall (openbsd-386-cgo), const WNOHANG ideal-int +pkg syscall (openbsd-386-cgo), const WSTOPPED ideal-int +pkg syscall (openbsd-386-cgo), const WUNTRACED ideal-int +pkg syscall (openbsd-386-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (openbsd-386-cgo), func Access(string, uint32) error +pkg syscall (openbsd-386-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (openbsd-386-cgo), func Bind(int, Sockaddr) error +pkg syscall (openbsd-386-cgo), func BpfBuflen(int) (int, error) +pkg syscall (openbsd-386-cgo), func BpfDatalink(int) (int, error) +pkg syscall (openbsd-386-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (openbsd-386-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (openbsd-386-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (openbsd-386-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (openbsd-386-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (openbsd-386-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (openbsd-386-cgo), func CheckBpfVersion(int) error +pkg syscall (openbsd-386-cgo), func Chflags(string, int) error +pkg syscall (openbsd-386-cgo), func Chroot(string) error +pkg syscall (openbsd-386-cgo), func Close(int) error +pkg syscall (openbsd-386-cgo), func CloseOnExec(int) +pkg syscall (openbsd-386-cgo), func CmsgLen(int) int +pkg syscall (openbsd-386-cgo), func CmsgSpace(int) int +pkg syscall (openbsd-386-cgo), func Connect(int, Sockaddr) error +pkg syscall (openbsd-386-cgo), func Dup(int) (int, error) +pkg syscall (openbsd-386-cgo), func Dup2(int, int) error +pkg syscall (openbsd-386-cgo), func Fchdir(int) error +pkg syscall (openbsd-386-cgo), func Fchflags(int, int) error +pkg syscall (openbsd-386-cgo), func Fchmod(int, uint32) error +pkg syscall (openbsd-386-cgo), func Fchown(int, int, int) error +pkg syscall (openbsd-386-cgo), func Flock(int, int) error +pkg syscall (openbsd-386-cgo), func FlushBpf(int) error +pkg syscall (openbsd-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (openbsd-386-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (openbsd-386-cgo), func Fstat(int, *Stat_t) error +pkg syscall (openbsd-386-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (openbsd-386-cgo), func Fsync(int) error +pkg syscall (openbsd-386-cgo), func Ftruncate(int, int64) error +pkg syscall (openbsd-386-cgo), func Futimes(int, []Timeval) error +pkg syscall (openbsd-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (openbsd-386-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (openbsd-386-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (openbsd-386-cgo), func Getpgid(int) (int, error) +pkg syscall (openbsd-386-cgo), func Getpgrp() int +pkg syscall (openbsd-386-cgo), func Getpriority(int, int) (int, error) +pkg syscall (openbsd-386-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (openbsd-386-cgo), func Getrusage(int, *Rusage) error +pkg syscall (openbsd-386-cgo), func Getsid(int) (int, error) +pkg syscall (openbsd-386-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (openbsd-386-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (openbsd-386-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (openbsd-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (openbsd-386-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (openbsd-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (openbsd-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (openbsd-386-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (openbsd-386-cgo), func Issetugid() bool +pkg syscall (openbsd-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (openbsd-386-cgo), func Kill(int, Signal) error +pkg syscall (openbsd-386-cgo), func Kqueue() (int, error) +pkg syscall (openbsd-386-cgo), func Listen(int, int) error +pkg syscall (openbsd-386-cgo), func Lstat(string, *Stat_t) error +pkg syscall (openbsd-386-cgo), func Mkfifo(string, uint32) error +pkg syscall (openbsd-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (openbsd-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (openbsd-386-cgo), func Munmap([]uint8) error +pkg syscall (openbsd-386-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (openbsd-386-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (openbsd-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (openbsd-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (openbsd-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (openbsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (openbsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (openbsd-386-cgo), func Pathconf(string, int) (int, error) +pkg syscall (openbsd-386-cgo), func Pipe([]int) error +pkg syscall (openbsd-386-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (openbsd-386-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (openbsd-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386-cgo), func Read(int, []uint8) (int, error) +pkg syscall (openbsd-386-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (openbsd-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (openbsd-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (openbsd-386-cgo), func Revoke(string) error +pkg syscall (openbsd-386-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (openbsd-386-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (openbsd-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (openbsd-386-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (openbsd-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (openbsd-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (openbsd-386-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (openbsd-386-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (openbsd-386-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (openbsd-386-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (openbsd-386-cgo), func SetBpfImmediate(int, int) error +pkg syscall (openbsd-386-cgo), func SetBpfInterface(int, string) error +pkg syscall (openbsd-386-cgo), func SetBpfPromisc(int, int) error +pkg syscall (openbsd-386-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (openbsd-386-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (openbsd-386-cgo), func SetNonblock(int, bool) error +pkg syscall (openbsd-386-cgo), func Setegid(int) error +pkg syscall (openbsd-386-cgo), func Seteuid(int) error +pkg syscall (openbsd-386-cgo), func Setgid(int) error +pkg syscall (openbsd-386-cgo), func Setgroups([]int) error +pkg syscall (openbsd-386-cgo), func Setlogin(string) error +pkg syscall (openbsd-386-cgo), func Setpgid(int, int) error +pkg syscall (openbsd-386-cgo), func Setpriority(int, int, int) error +pkg syscall (openbsd-386-cgo), func Setregid(int, int) error +pkg syscall (openbsd-386-cgo), func Setreuid(int, int) error +pkg syscall (openbsd-386-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (openbsd-386-cgo), func Setsid() (int, error) +pkg syscall (openbsd-386-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (openbsd-386-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (openbsd-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (openbsd-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (openbsd-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (openbsd-386-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (openbsd-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (openbsd-386-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (openbsd-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (openbsd-386-cgo), func Settimeofday(*Timeval) error +pkg syscall (openbsd-386-cgo), func Setuid(int) error +pkg syscall (openbsd-386-cgo), func Shutdown(int, int) error +pkg syscall (openbsd-386-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (openbsd-386-cgo), func Socket(int, int, int) (int, error) +pkg syscall (openbsd-386-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (openbsd-386-cgo), func Stat(string, *Stat_t) error +pkg syscall (openbsd-386-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (openbsd-386-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (openbsd-386-cgo), func Sync() error +pkg syscall (openbsd-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-386-cgo), func Sysctl(string) (string, error) +pkg syscall (openbsd-386-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (openbsd-386-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (openbsd-386-cgo), func Truncate(string, int64) error +pkg syscall (openbsd-386-cgo), func Umask(int) int +pkg syscall (openbsd-386-cgo), func UnixRights(...int) []uint8 +pkg syscall (openbsd-386-cgo), func Unmount(string, int) error +pkg syscall (openbsd-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (openbsd-386-cgo), func Write(int, []uint8) (int, error) +pkg syscall (openbsd-386-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (openbsd-386-cgo), method (*Iovec) SetLen(int) +pkg syscall (openbsd-386-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (openbsd-386-cgo), type BpfHdr struct +pkg syscall (openbsd-386-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (openbsd-386-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (openbsd-386-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (openbsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-386-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (openbsd-386-cgo), type BpfInsn struct +pkg syscall (openbsd-386-cgo), type BpfInsn struct, Code uint16 +pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (openbsd-386-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (openbsd-386-cgo), type BpfInsn struct, K uint32 +pkg syscall (openbsd-386-cgo), type BpfProgram struct +pkg syscall (openbsd-386-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (openbsd-386-cgo), type BpfProgram struct, Len uint32 +pkg syscall (openbsd-386-cgo), type BpfStat struct +pkg syscall (openbsd-386-cgo), type BpfStat struct, Drop uint32 +pkg syscall (openbsd-386-cgo), type BpfStat struct, Recv uint32 +pkg syscall (openbsd-386-cgo), type BpfTimeval struct +pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Sec uint32 +pkg syscall (openbsd-386-cgo), type BpfTimeval struct, Usec uint32 +pkg syscall (openbsd-386-cgo), type BpfVersion struct +pkg syscall (openbsd-386-cgo), type BpfVersion struct, Major uint16 +pkg syscall (openbsd-386-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (openbsd-386-cgo), type Cmsghdr struct +pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Level int32 +pkg syscall (openbsd-386-cgo), type Cmsghdr struct, Type int32 +pkg syscall (openbsd-386-cgo), type Credential struct +pkg syscall (openbsd-386-cgo), type Credential struct, Gid uint32 +pkg syscall (openbsd-386-cgo), type Credential struct, Groups []uint32 +pkg syscall (openbsd-386-cgo), type Credential struct, Uid uint32 +pkg syscall (openbsd-386-cgo), type Dirent struct +pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-386-cgo), type Dirent struct, Name [256]int8 +pkg syscall (openbsd-386-cgo), type Dirent struct, Namlen uint8 +pkg syscall (openbsd-386-cgo), type Dirent struct, Reclen uint16 +pkg syscall (openbsd-386-cgo), type Dirent struct, Type uint8 +pkg syscall (openbsd-386-cgo), type FdSet struct +pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-386-cgo), type Flock_t struct +pkg syscall (openbsd-386-cgo), type Flock_t struct, Len int64 +pkg syscall (openbsd-386-cgo), type Flock_t struct, Pid int32 +pkg syscall (openbsd-386-cgo), type Flock_t struct, Start int64 +pkg syscall (openbsd-386-cgo), type Flock_t struct, Type int16 +pkg syscall (openbsd-386-cgo), type Flock_t struct, Whence int16 +pkg syscall (openbsd-386-cgo), type Fsid struct +pkg syscall (openbsd-386-cgo), type Fsid struct, Val [2]int32 +pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct +pkg syscall (openbsd-386-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct +pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (openbsd-386-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (openbsd-386-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (openbsd-386-cgo), type IfData struct +pkg syscall (openbsd-386-cgo), type IfData struct, Addrlen uint8 +pkg syscall (openbsd-386-cgo), type IfData struct, Baudrate uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Capabilities uint32 +pkg syscall (openbsd-386-cgo), type IfData struct, Collisions uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (openbsd-386-cgo), type IfData struct, Ibytes uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Ierrors uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Imcasts uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Ipackets uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Lastchange Timeval +pkg syscall (openbsd-386-cgo), type IfData struct, Link_state uint8 +pkg syscall (openbsd-386-cgo), type IfData struct, Mclpool [7]Mclpool +pkg syscall (openbsd-386-cgo), type IfData struct, Metric uint32 +pkg syscall (openbsd-386-cgo), type IfData struct, Mtu uint32 +pkg syscall (openbsd-386-cgo), type IfData struct, Noproto uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Obytes uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Oerrors uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Omcasts uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Opackets uint64 +pkg syscall (openbsd-386-cgo), type IfData struct, Pad uint32 +pkg syscall (openbsd-386-cgo), type IfData struct, Type uint8 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Data IfData +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (openbsd-386-cgo), type IfMsghdr struct, Xflags int32 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (openbsd-386-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct +pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (openbsd-386-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct +pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (openbsd-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct +pkg syscall (openbsd-386-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (openbsd-386-cgo), type InterfaceMessage struct +pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (openbsd-386-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (openbsd-386-cgo), type Iovec struct +pkg syscall (openbsd-386-cgo), type Iovec struct, Base *uint8 +pkg syscall (openbsd-386-cgo), type Iovec struct, Len uint32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Filter int16 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (openbsd-386-cgo), type Mclpool struct +pkg syscall (openbsd-386-cgo), type Mclpool struct, Alive uint16 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Cwm uint16 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Hwm uint16 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Lwm uint16 +pkg syscall (openbsd-386-cgo), type Msghdr struct +pkg syscall (openbsd-386-cgo), type Msghdr struct, Control *uint8 +pkg syscall (openbsd-386-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (openbsd-386-cgo), type Msghdr struct, Flags int32 +pkg syscall (openbsd-386-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (openbsd-386-cgo), type Msghdr struct, Iovlen uint32 +pkg syscall (openbsd-386-cgo), type Msghdr struct, Name *uint8 +pkg syscall (openbsd-386-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct +pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (openbsd-386-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (openbsd-386-cgo), type Rlimit struct +pkg syscall (openbsd-386-cgo), type Rlimit struct, Cur uint64 +pkg syscall (openbsd-386-cgo), type Rlimit struct, Max uint64 +pkg syscall (openbsd-386-cgo), type RouteMessage struct +pkg syscall (openbsd-386-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (openbsd-386-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (openbsd-386-cgo), type RoutingMessage interface, unexported methods +pkg syscall (openbsd-386-cgo), type RtMetrics struct +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Pksent uint64 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Refcnt uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Mpls uint8 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Priority uint8 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Tableid uint16 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (openbsd-386-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (openbsd-386-cgo), type Rusage struct, Idrss int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Inblock int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Isrss int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Ixrss int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Majflt int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Maxrss int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Minflt int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Nsignals int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Nswap int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Oublock int32 +pkg syscall (openbsd-386-cgo), type Rusage struct, Stime Timeval +pkg syscall (openbsd-386-cgo), type Rusage struct, Utime Timeval +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-386-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-386-cgo), type SocketControlMessage struct +pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (openbsd-386-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (openbsd-386-cgo), type Stat_t struct +pkg syscall (openbsd-386-cgo), type Stat_t struct, Atim Timespec +pkg syscall (openbsd-386-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Blocks int64 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Ctim Timespec +pkg syscall (openbsd-386-cgo), type Stat_t struct, Dev int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Flags uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Gen uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Gid uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Mode uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Mtim Timespec +pkg syscall (openbsd-386-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Rdev int32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Size int64 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Uid uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, X__st_birthtim Timespec +pkg syscall (openbsd-386-cgo), type Statfs_t struct +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncreads uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_asyncwrites uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bavail int64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bfree uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_blocks uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_bsize uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_favail int64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ffree uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_files uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_flags uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fsid Fsid +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_fstypename [16]int8 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_iosize uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntfromname [90]int8 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntonname [90]int8 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_namemax uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_owner uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncreads uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_syncwrites uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, Mount_info [160]uint8 +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Chroot string +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (openbsd-386-cgo), type Timespec struct, Nsec int32 +pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int32 +pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int32 +pkg syscall (openbsd-386-cgo), type Timeval struct, Usec int32 +pkg syscall (openbsd-386-cgo), type WaitStatus uint32 +pkg syscall (openbsd-386-cgo), var Stderr int +pkg syscall (openbsd-386-cgo), var Stdin int +pkg syscall (openbsd-386-cgo), var Stdout int +pkg syscall (openbsd-amd64), const AF_APPLETALK ideal-int +pkg syscall (openbsd-amd64), const AF_BLUETOOTH ideal-int +pkg syscall (openbsd-amd64), const AF_CCITT ideal-int +pkg syscall (openbsd-amd64), const AF_CHAOS ideal-int +pkg syscall (openbsd-amd64), const AF_CNT ideal-int +pkg syscall (openbsd-amd64), const AF_COIP ideal-int +pkg syscall (openbsd-amd64), const AF_DATAKIT ideal-int +pkg syscall (openbsd-amd64), const AF_DECnet ideal-int +pkg syscall (openbsd-amd64), const AF_DLI ideal-int +pkg syscall (openbsd-amd64), const AF_E164 ideal-int +pkg syscall (openbsd-amd64), const AF_ECMA ideal-int +pkg syscall (openbsd-amd64), const AF_ENCAP ideal-int +pkg syscall (openbsd-amd64), const AF_HYLINK ideal-int +pkg syscall (openbsd-amd64), const AF_IMPLINK ideal-int +pkg syscall (openbsd-amd64), const AF_IPX ideal-int +pkg syscall (openbsd-amd64), const AF_ISDN ideal-int +pkg syscall (openbsd-amd64), const AF_ISO ideal-int +pkg syscall (openbsd-amd64), const AF_KEY ideal-int +pkg syscall (openbsd-amd64), const AF_LAT ideal-int +pkg syscall (openbsd-amd64), const AF_LINK ideal-int +pkg syscall (openbsd-amd64), const AF_LOCAL ideal-int +pkg syscall (openbsd-amd64), const AF_MAX ideal-int +pkg syscall (openbsd-amd64), const AF_MPLS ideal-int +pkg syscall (openbsd-amd64), const AF_NATM ideal-int +pkg syscall (openbsd-amd64), const AF_NS ideal-int +pkg syscall (openbsd-amd64), const AF_OSI ideal-int +pkg syscall (openbsd-amd64), const AF_PUP ideal-int +pkg syscall (openbsd-amd64), const AF_ROUTE ideal-int +pkg syscall (openbsd-amd64), const AF_SIP ideal-int +pkg syscall (openbsd-amd64), const AF_SNA ideal-int +pkg syscall (openbsd-amd64), const ARPHRD_ETHER ideal-int +pkg syscall (openbsd-amd64), const ARPHRD_FRELAY ideal-int +pkg syscall (openbsd-amd64), const ARPHRD_IEEE1394 ideal-int +pkg syscall (openbsd-amd64), const ARPHRD_IEEE802 ideal-int +pkg syscall (openbsd-amd64), const B0 ideal-int +pkg syscall (openbsd-amd64), const B110 ideal-int +pkg syscall (openbsd-amd64), const B115200 ideal-int +pkg syscall (openbsd-amd64), const B1200 ideal-int +pkg syscall (openbsd-amd64), const B134 ideal-int +pkg syscall (openbsd-amd64), const B14400 ideal-int +pkg syscall (openbsd-amd64), const B150 ideal-int +pkg syscall (openbsd-amd64), const B1800 ideal-int +pkg syscall (openbsd-amd64), const B19200 ideal-int +pkg syscall (openbsd-amd64), const B200 ideal-int +pkg syscall (openbsd-amd64), const B230400 ideal-int +pkg syscall (openbsd-amd64), const B2400 ideal-int +pkg syscall (openbsd-amd64), const B28800 ideal-int +pkg syscall (openbsd-amd64), const B300 ideal-int +pkg syscall (openbsd-amd64), const B38400 ideal-int +pkg syscall (openbsd-amd64), const B4800 ideal-int +pkg syscall (openbsd-amd64), const B50 ideal-int +pkg syscall (openbsd-amd64), const B57600 ideal-int +pkg syscall (openbsd-amd64), const B600 ideal-int +pkg syscall (openbsd-amd64), const B7200 ideal-int +pkg syscall (openbsd-amd64), const B75 ideal-int +pkg syscall (openbsd-amd64), const B76800 ideal-int +pkg syscall (openbsd-amd64), const B9600 ideal-int +pkg syscall (openbsd-amd64), const BIOCFLUSH ideal-int +pkg syscall (openbsd-amd64), const BIOCGBLEN ideal-int +pkg syscall (openbsd-amd64), const BIOCGDIRFILT ideal-int +pkg syscall (openbsd-amd64), const BIOCGDLT ideal-int +pkg syscall (openbsd-amd64), const BIOCGDLTLIST ideal-int +pkg syscall (openbsd-amd64), const BIOCGETIF ideal-int +pkg syscall (openbsd-amd64), const BIOCGFILDROP ideal-int +pkg syscall (openbsd-amd64), const BIOCGHDRCMPLT ideal-int +pkg syscall (openbsd-amd64), const BIOCGRSIG ideal-int +pkg syscall (openbsd-amd64), const BIOCGRTIMEOUT ideal-int +pkg syscall (openbsd-amd64), const BIOCGSTATS ideal-int +pkg syscall (openbsd-amd64), const BIOCIMMEDIATE ideal-int +pkg syscall (openbsd-amd64), const BIOCLOCK ideal-int +pkg syscall (openbsd-amd64), const BIOCPROMISC ideal-int +pkg syscall (openbsd-amd64), const BIOCSBLEN ideal-int +pkg syscall (openbsd-amd64), const BIOCSDIRFILT ideal-int +pkg syscall (openbsd-amd64), const BIOCSDLT ideal-int +pkg syscall (openbsd-amd64), const BIOCSETF ideal-int +pkg syscall (openbsd-amd64), const BIOCSETIF ideal-int +pkg syscall (openbsd-amd64), const BIOCSETWF ideal-int +pkg syscall (openbsd-amd64), const BIOCSFILDROP ideal-int +pkg syscall (openbsd-amd64), const BIOCSHDRCMPLT ideal-int +pkg syscall (openbsd-amd64), const BIOCSRSIG ideal-int +pkg syscall (openbsd-amd64), const BIOCSRTIMEOUT ideal-int +pkg syscall (openbsd-amd64), const BIOCVERSION ideal-int +pkg syscall (openbsd-amd64), const BPF_A ideal-int +pkg syscall (openbsd-amd64), const BPF_ABS ideal-int +pkg syscall (openbsd-amd64), const BPF_ADD ideal-int +pkg syscall (openbsd-amd64), const BPF_ALIGNMENT ideal-int +pkg syscall (openbsd-amd64), const BPF_ALU ideal-int +pkg syscall (openbsd-amd64), const BPF_AND ideal-int +pkg syscall (openbsd-amd64), const BPF_B ideal-int +pkg syscall (openbsd-amd64), const BPF_DIRECTION_IN ideal-int +pkg syscall (openbsd-amd64), const BPF_DIRECTION_OUT ideal-int +pkg syscall (openbsd-amd64), const BPF_DIV ideal-int +pkg syscall (openbsd-amd64), const BPF_H ideal-int +pkg syscall (openbsd-amd64), const BPF_IMM ideal-int +pkg syscall (openbsd-amd64), const BPF_IND ideal-int +pkg syscall (openbsd-amd64), const BPF_JA ideal-int +pkg syscall (openbsd-amd64), const BPF_JEQ ideal-int +pkg syscall (openbsd-amd64), const BPF_JGE ideal-int +pkg syscall (openbsd-amd64), const BPF_JGT ideal-int +pkg syscall (openbsd-amd64), const BPF_JMP ideal-int +pkg syscall (openbsd-amd64), const BPF_JSET ideal-int +pkg syscall (openbsd-amd64), const BPF_K ideal-int +pkg syscall (openbsd-amd64), const BPF_LD ideal-int +pkg syscall (openbsd-amd64), const BPF_LDX ideal-int +pkg syscall (openbsd-amd64), const BPF_LEN ideal-int +pkg syscall (openbsd-amd64), const BPF_LSH ideal-int +pkg syscall (openbsd-amd64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (openbsd-amd64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (openbsd-amd64), const BPF_MAXINSNS ideal-int +pkg syscall (openbsd-amd64), const BPF_MEM ideal-int +pkg syscall (openbsd-amd64), const BPF_MEMWORDS ideal-int +pkg syscall (openbsd-amd64), const BPF_MINBUFSIZE ideal-int +pkg syscall (openbsd-amd64), const BPF_MINOR_VERSION ideal-int +pkg syscall (openbsd-amd64), const BPF_MISC ideal-int +pkg syscall (openbsd-amd64), const BPF_MSH ideal-int +pkg syscall (openbsd-amd64), const BPF_MUL ideal-int +pkg syscall (openbsd-amd64), const BPF_NEG ideal-int +pkg syscall (openbsd-amd64), const BPF_OR ideal-int +pkg syscall (openbsd-amd64), const BPF_RELEASE ideal-int +pkg syscall (openbsd-amd64), const BPF_RET ideal-int +pkg syscall (openbsd-amd64), const BPF_RSH ideal-int +pkg syscall (openbsd-amd64), const BPF_ST ideal-int +pkg syscall (openbsd-amd64), const BPF_STX ideal-int +pkg syscall (openbsd-amd64), const BPF_SUB ideal-int +pkg syscall (openbsd-amd64), const BPF_TAX ideal-int +pkg syscall (openbsd-amd64), const BPF_TXA ideal-int +pkg syscall (openbsd-amd64), const BPF_W ideal-int +pkg syscall (openbsd-amd64), const BPF_X ideal-int +pkg syscall (openbsd-amd64), const BRKINT ideal-int +pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int +pkg syscall (openbsd-amd64), const CFLUSH ideal-int +pkg syscall (openbsd-amd64), const CLOCAL ideal-int +pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int +pkg syscall (openbsd-amd64), const CREAD ideal-int +pkg syscall (openbsd-amd64), const CS5 ideal-int +pkg syscall (openbsd-amd64), const CS6 ideal-int +pkg syscall (openbsd-amd64), const CS7 ideal-int +pkg syscall (openbsd-amd64), const CS8 ideal-int +pkg syscall (openbsd-amd64), const CSIZE ideal-int +pkg syscall (openbsd-amd64), const CSTART ideal-int +pkg syscall (openbsd-amd64), const CSTATUS ideal-int +pkg syscall (openbsd-amd64), const CSTOP ideal-int +pkg syscall (openbsd-amd64), const CSTOPB ideal-int +pkg syscall (openbsd-amd64), const CSUSP ideal-int +pkg syscall (openbsd-amd64), const CTL_MAXNAME ideal-int +pkg syscall (openbsd-amd64), const CTL_NET ideal-int +pkg syscall (openbsd-amd64), const DIOCOSFPFLUSH ideal-int +pkg syscall (openbsd-amd64), const DLT_ARCNET ideal-int +pkg syscall (openbsd-amd64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (openbsd-amd64), const DLT_AX25 ideal-int +pkg syscall (openbsd-amd64), const DLT_CHAOS ideal-int +pkg syscall (openbsd-amd64), const DLT_C_HDLC ideal-int +pkg syscall (openbsd-amd64), const DLT_EN10MB ideal-int +pkg syscall (openbsd-amd64), const DLT_EN3MB ideal-int +pkg syscall (openbsd-amd64), const DLT_ENC ideal-int +pkg syscall (openbsd-amd64), const DLT_FDDI ideal-int +pkg syscall (openbsd-amd64), const DLT_IEEE802 ideal-int +pkg syscall (openbsd-amd64), const DLT_IEEE802_11 ideal-int +pkg syscall (openbsd-amd64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (openbsd-amd64), const DLT_LOOP ideal-int +pkg syscall (openbsd-amd64), const DLT_MPLS ideal-int +pkg syscall (openbsd-amd64), const DLT_NULL ideal-int +pkg syscall (openbsd-amd64), const DLT_PFLOG ideal-int +pkg syscall (openbsd-amd64), const DLT_PFSYNC ideal-int +pkg syscall (openbsd-amd64), const DLT_PPP ideal-int +pkg syscall (openbsd-amd64), const DLT_PPP_BSDOS ideal-int +pkg syscall (openbsd-amd64), const DLT_PPP_ETHER ideal-int +pkg syscall (openbsd-amd64), const DLT_PPP_SERIAL ideal-int +pkg syscall (openbsd-amd64), const DLT_PRONET ideal-int +pkg syscall (openbsd-amd64), const DLT_RAW ideal-int +pkg syscall (openbsd-amd64), const DLT_SLIP ideal-int +pkg syscall (openbsd-amd64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (openbsd-amd64), const DT_BLK ideal-int +pkg syscall (openbsd-amd64), const DT_CHR ideal-int +pkg syscall (openbsd-amd64), const DT_DIR ideal-int +pkg syscall (openbsd-amd64), const DT_FIFO ideal-int +pkg syscall (openbsd-amd64), const DT_LNK ideal-int +pkg syscall (openbsd-amd64), const DT_REG ideal-int +pkg syscall (openbsd-amd64), const DT_SOCK ideal-int +pkg syscall (openbsd-amd64), const DT_UNKNOWN ideal-int +pkg syscall (openbsd-amd64), const EAUTH Errno +pkg syscall (openbsd-amd64), const EBADRPC Errno +pkg syscall (openbsd-amd64), const ECHO ideal-int +pkg syscall (openbsd-amd64), const ECHOCTL ideal-int +pkg syscall (openbsd-amd64), const ECHOE ideal-int +pkg syscall (openbsd-amd64), const ECHOK ideal-int +pkg syscall (openbsd-amd64), const ECHOKE ideal-int +pkg syscall (openbsd-amd64), const ECHONL ideal-int +pkg syscall (openbsd-amd64), const ECHOPRT ideal-int +pkg syscall (openbsd-amd64), const EFER_LMA ideal-int +pkg syscall (openbsd-amd64), const EFER_LME ideal-int +pkg syscall (openbsd-amd64), const EFER_NXE ideal-int +pkg syscall (openbsd-amd64), const EFER_SCE ideal-int +pkg syscall (openbsd-amd64), const EFTYPE Errno +pkg syscall (openbsd-amd64), const EIPSEC Errno +pkg syscall (openbsd-amd64), const ELAST Errno +pkg syscall (openbsd-amd64), const EMEDIUMTYPE Errno +pkg syscall (openbsd-amd64), const EMT_TAGOVF ideal-int +pkg syscall (openbsd-amd64), const EMUL_ENABLED ideal-int +pkg syscall (openbsd-amd64), const EMUL_NATIVE ideal-int +pkg syscall (openbsd-amd64), const ENDRUNDISC ideal-int +pkg syscall (openbsd-amd64), const ENEEDAUTH Errno +pkg syscall (openbsd-amd64), const ENOATTR Errno +pkg syscall (openbsd-amd64), const ENOMEDIUM Errno +pkg syscall (openbsd-amd64), const EPROCLIM Errno +pkg syscall (openbsd-amd64), const EPROCUNAVAIL Errno +pkg syscall (openbsd-amd64), const EPROGMISMATCH Errno +pkg syscall (openbsd-amd64), const EPROGUNAVAIL Errno +pkg syscall (openbsd-amd64), const ERPCMISMATCH Errno +pkg syscall (openbsd-amd64), const ETHERMIN ideal-int +pkg syscall (openbsd-amd64), const ETHERMTU ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_8023 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AARP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ACCTON ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AEONIC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ALPHA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AMBER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AOE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLO ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ARP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ATALK ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ATT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_AXIS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_BOFL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_CHAOS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DCA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DDE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DEBNI ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECAM ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECCUST ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDNS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECDTS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECLAST ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECLTM ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DELTACON ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_DSMD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ECMA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_ES ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_FLIP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_FRARP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_GENDYN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_HAYES ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_HITACHI ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_HP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IPAS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IPV6 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IPX ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_KALPANA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LAT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LBACK ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LITTLE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LLDP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MATRA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MAX ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MERIT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MICP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MOPDL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MOPRC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_MUMPS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDG ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPRST ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NBS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NCD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NESTAR ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NOVELL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NSAT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_OS9 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_OS9NET ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PACER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PAE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PCS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PLANNING ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PPP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PUP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_PUPAT ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_QINQ ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RACAL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RAWFR ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RCL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RDP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_RETIX ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_REVARP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SCA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SECTRA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SGITW ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SIMNET ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SLOW ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SNA ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SNMP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SONIX ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SPIDER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_SPRITE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_STP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TALARIS ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TCPSM ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TEC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TIGAN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TRAIL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBBST ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBDL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBNIU ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_UBNMC ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VALID ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VARIAN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VAXELN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VEECO ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VEXP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VGLAB ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VINES ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VITAL ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VLAN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VPROD ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_X25 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_X75 ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_XNSSM ideal-int +pkg syscall (openbsd-amd64), const ETHERTYPE_XTP ideal-int +pkg syscall (openbsd-amd64), const ETHER_ADDR_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_ALIGN ideal-int +pkg syscall (openbsd-amd64), const ETHER_CRC_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (openbsd-amd64), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (openbsd-amd64), const ETHER_HDR_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_MAX_DIX_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_MAX_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_MIN_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_TYPE_LEN ideal-int +pkg syscall (openbsd-amd64), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (openbsd-amd64), const EVFILT_AIO ideal-int +pkg syscall (openbsd-amd64), const EVFILT_PROC ideal-int +pkg syscall (openbsd-amd64), const EVFILT_READ ideal-int +pkg syscall (openbsd-amd64), const EVFILT_SIGNAL ideal-int +pkg syscall (openbsd-amd64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (openbsd-amd64), const EVFILT_TIMER ideal-int +pkg syscall (openbsd-amd64), const EVFILT_VNODE ideal-int +pkg syscall (openbsd-amd64), const EVFILT_WRITE ideal-int +pkg syscall (openbsd-amd64), const EV_ADD ideal-int +pkg syscall (openbsd-amd64), const EV_CLEAR ideal-int +pkg syscall (openbsd-amd64), const EV_DELETE ideal-int +pkg syscall (openbsd-amd64), const EV_DISABLE ideal-int +pkg syscall (openbsd-amd64), const EV_ENABLE ideal-int +pkg syscall (openbsd-amd64), const EV_EOF ideal-int +pkg syscall (openbsd-amd64), const EV_ERROR ideal-int +pkg syscall (openbsd-amd64), const EV_FLAG1 ideal-int +pkg syscall (openbsd-amd64), const EV_ONESHOT ideal-int +pkg syscall (openbsd-amd64), const EV_SYSFLAGS ideal-int +pkg syscall (openbsd-amd64), const EXTA ideal-int +pkg syscall (openbsd-amd64), const EXTB ideal-int +pkg syscall (openbsd-amd64), const EXTPROC ideal-int +pkg syscall (openbsd-amd64), const FD_CLOEXEC ideal-int +pkg syscall (openbsd-amd64), const FD_SETSIZE ideal-int +pkg syscall (openbsd-amd64), const FLUSHO ideal-int +pkg syscall (openbsd-amd64), const F_DUPFD ideal-int +pkg syscall (openbsd-amd64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (openbsd-amd64), const F_GETFD ideal-int +pkg syscall (openbsd-amd64), const F_GETFL ideal-int +pkg syscall (openbsd-amd64), const F_GETLK ideal-int +pkg syscall (openbsd-amd64), const F_GETOWN ideal-int +pkg syscall (openbsd-amd64), const F_OK ideal-int +pkg syscall (openbsd-amd64), const F_RDLCK ideal-int +pkg syscall (openbsd-amd64), const F_SETFD ideal-int +pkg syscall (openbsd-amd64), const F_SETFL ideal-int +pkg syscall (openbsd-amd64), const F_SETLK ideal-int +pkg syscall (openbsd-amd64), const F_SETLKW ideal-int +pkg syscall (openbsd-amd64), const F_SETOWN ideal-int +pkg syscall (openbsd-amd64), const F_UNLCK ideal-int +pkg syscall (openbsd-amd64), const F_WRLCK ideal-int +pkg syscall (openbsd-amd64), const HUPCL ideal-int +pkg syscall (openbsd-amd64), const ICANON ideal-int +pkg syscall (openbsd-amd64), const ICMP6_FILTER = 18 +pkg syscall (openbsd-amd64), const ICMP6_FILTER ideal-int +pkg syscall (openbsd-amd64), const ICRNL ideal-int +pkg syscall (openbsd-amd64), const IEXTEN ideal-int +pkg syscall (openbsd-amd64), const IFAN_ARRIVAL ideal-int +pkg syscall (openbsd-amd64), const IFAN_DEPARTURE ideal-int +pkg syscall (openbsd-amd64), const IFA_ROUTE ideal-int +pkg syscall (openbsd-amd64), const IFF_ALLMULTI ideal-int +pkg syscall (openbsd-amd64), const IFF_CANTCHANGE ideal-int +pkg syscall (openbsd-amd64), const IFF_DEBUG ideal-int +pkg syscall (openbsd-amd64), const IFF_LINK0 ideal-int +pkg syscall (openbsd-amd64), const IFF_LINK1 ideal-int +pkg syscall (openbsd-amd64), const IFF_LINK2 ideal-int +pkg syscall (openbsd-amd64), const IFF_NOARP ideal-int +pkg syscall (openbsd-amd64), const IFF_NOTRAILERS ideal-int +pkg syscall (openbsd-amd64), const IFF_OACTIVE ideal-int +pkg syscall (openbsd-amd64), const IFF_POINTOPOINT ideal-int +pkg syscall (openbsd-amd64), const IFF_PROMISC ideal-int +pkg syscall (openbsd-amd64), const IFF_RUNNING ideal-int +pkg syscall (openbsd-amd64), const IFF_SIMPLEX ideal-int +pkg syscall (openbsd-amd64), const IFNAMSIZ ideal-int +pkg syscall (openbsd-amd64), const IFT_1822 ideal-int +pkg syscall (openbsd-amd64), const IFT_A12MPPSWITCH ideal-int +pkg syscall (openbsd-amd64), const IFT_AAL2 ideal-int +pkg syscall (openbsd-amd64), const IFT_AAL5 ideal-int +pkg syscall (openbsd-amd64), const IFT_ADSL ideal-int +pkg syscall (openbsd-amd64), const IFT_AFLANE8023 ideal-int +pkg syscall (openbsd-amd64), const IFT_AFLANE8025 ideal-int +pkg syscall (openbsd-amd64), const IFT_ARAP ideal-int +pkg syscall (openbsd-amd64), const IFT_ARCNET ideal-int +pkg syscall (openbsd-amd64), const IFT_ARCNETPLUS ideal-int +pkg syscall (openbsd-amd64), const IFT_ASYNC ideal-int +pkg syscall (openbsd-amd64), const IFT_ATM ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMDXI ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMFUNI ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMIMA ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMLOGICAL ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMRADIO ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMVCIENDPT ideal-int +pkg syscall (openbsd-amd64), const IFT_ATMVIRTUAL ideal-int +pkg syscall (openbsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (openbsd-amd64), const IFT_BLUETOOTH ideal-int +pkg syscall (openbsd-amd64), const IFT_BRIDGE ideal-int +pkg syscall (openbsd-amd64), const IFT_BSC ideal-int +pkg syscall (openbsd-amd64), const IFT_CARP ideal-int +pkg syscall (openbsd-amd64), const IFT_CCTEMUL ideal-int +pkg syscall (openbsd-amd64), const IFT_CEPT ideal-int +pkg syscall (openbsd-amd64), const IFT_CES ideal-int +pkg syscall (openbsd-amd64), const IFT_CHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_CNR ideal-int +pkg syscall (openbsd-amd64), const IFT_COFFEE ideal-int +pkg syscall (openbsd-amd64), const IFT_COMPOSITELINK ideal-int +pkg syscall (openbsd-amd64), const IFT_DCN ideal-int +pkg syscall (openbsd-amd64), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (openbsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_DLSW ideal-int +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_DS0 ideal-int +pkg syscall (openbsd-amd64), const IFT_DS0BUNDLE ideal-int +pkg syscall (openbsd-amd64), const IFT_DS1FDL ideal-int +pkg syscall (openbsd-amd64), const IFT_DS3 ideal-int +pkg syscall (openbsd-amd64), const IFT_DTM ideal-int +pkg syscall (openbsd-amd64), const IFT_DUMMY ideal-int +pkg syscall (openbsd-amd64), const IFT_DVBASILN ideal-int +pkg syscall (openbsd-amd64), const IFT_DVBASIOUT ideal-int +pkg syscall (openbsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (openbsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_ECONET ideal-int +pkg syscall (openbsd-amd64), const IFT_ENC ideal-int +pkg syscall (openbsd-amd64), const IFT_EON ideal-int +pkg syscall (openbsd-amd64), const IFT_EPLRS ideal-int +pkg syscall (openbsd-amd64), const IFT_ESCON ideal-int +pkg syscall (openbsd-amd64), const IFT_ETHER ideal-int +pkg syscall (openbsd-amd64), const IFT_FAITH ideal-int +pkg syscall (openbsd-amd64), const IFT_FAST ideal-int +pkg syscall (openbsd-amd64), const IFT_FASTETHER ideal-int +pkg syscall (openbsd-amd64), const IFT_FASTETHERFX ideal-int +pkg syscall (openbsd-amd64), const IFT_FDDI ideal-int +pkg syscall (openbsd-amd64), const IFT_FIBRECHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (openbsd-amd64), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (openbsd-amd64), const IFT_FRDLCIENDPT ideal-int +pkg syscall (openbsd-amd64), const IFT_FRELAY ideal-int +pkg syscall (openbsd-amd64), const IFT_FRELAYDCE ideal-int +pkg syscall (openbsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (openbsd-amd64), const IFT_FRFORWARD ideal-int +pkg syscall (openbsd-amd64), const IFT_G703AT2MB ideal-int +pkg syscall (openbsd-amd64), const IFT_G703AT64K ideal-int +pkg syscall (openbsd-amd64), const IFT_GIF ideal-int +pkg syscall (openbsd-amd64), const IFT_GIGABITETHERNET ideal-int +pkg syscall (openbsd-amd64), const IFT_GR303IDT ideal-int +pkg syscall (openbsd-amd64), const IFT_GR303RDT ideal-int +pkg syscall (openbsd-amd64), const IFT_H323GATEKEEPER ideal-int +pkg syscall (openbsd-amd64), const IFT_H323PROXY ideal-int +pkg syscall (openbsd-amd64), const IFT_HDH1822 ideal-int +pkg syscall (openbsd-amd64), const IFT_HDLC ideal-int +pkg syscall (openbsd-amd64), const IFT_HDSL2 ideal-int +pkg syscall (openbsd-amd64), const IFT_HIPERLAN2 ideal-int +pkg syscall (openbsd-amd64), const IFT_HIPPI ideal-int +pkg syscall (openbsd-amd64), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (openbsd-amd64), const IFT_HOSTPAD ideal-int +pkg syscall (openbsd-amd64), const IFT_HSSI ideal-int +pkg syscall (openbsd-amd64), const IFT_HY ideal-int +pkg syscall (openbsd-amd64), const IFT_IBM370PARCHAN ideal-int +pkg syscall (openbsd-amd64), const IFT_IDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_IEEE1394 ideal-int +pkg syscall (openbsd-amd64), const IFT_IEEE80211 ideal-int +pkg syscall (openbsd-amd64), const IFT_IEEE80212 ideal-int +pkg syscall (openbsd-amd64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (openbsd-amd64), const IFT_IFGSN ideal-int +pkg syscall (openbsd-amd64), const IFT_IMT ideal-int +pkg syscall (openbsd-amd64), const IFT_INFINIBAND ideal-int +pkg syscall (openbsd-amd64), const IFT_INTERLEAVE ideal-int +pkg syscall (openbsd-amd64), const IFT_IP ideal-int +pkg syscall (openbsd-amd64), const IFT_IPFORWARD ideal-int +pkg syscall (openbsd-amd64), const IFT_IPOVERATM ideal-int +pkg syscall (openbsd-amd64), const IFT_IPOVERCDLC ideal-int +pkg syscall (openbsd-amd64), const IFT_IPOVERCLAW ideal-int +pkg syscall (openbsd-amd64), const IFT_IPSWITCH ideal-int +pkg syscall (openbsd-amd64), const IFT_ISDN ideal-int +pkg syscall (openbsd-amd64), const IFT_ISDNBASIC ideal-int +pkg syscall (openbsd-amd64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (openbsd-amd64), const IFT_ISDNS ideal-int +pkg syscall (openbsd-amd64), const IFT_ISDNU ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88022LLC ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88023 ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88024 ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88025 ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88025DTR ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88025FIBER ideal-int +pkg syscall (openbsd-amd64), const IFT_ISO88026 ideal-int +pkg syscall (openbsd-amd64), const IFT_ISUP ideal-int +pkg syscall (openbsd-amd64), const IFT_L2VLAN ideal-int +pkg syscall (openbsd-amd64), const IFT_L3IPVLAN ideal-int +pkg syscall (openbsd-amd64), const IFT_L3IPXVLAN ideal-int +pkg syscall (openbsd-amd64), const IFT_LAPB ideal-int +pkg syscall (openbsd-amd64), const IFT_LAPD ideal-int +pkg syscall (openbsd-amd64), const IFT_LAPF ideal-int +pkg syscall (openbsd-amd64), const IFT_LINEGROUP ideal-int +pkg syscall (openbsd-amd64), const IFT_LOCALTALK ideal-int +pkg syscall (openbsd-amd64), const IFT_LOOP ideal-int +pkg syscall (openbsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (openbsd-amd64), const IFT_MFSIGLINK ideal-int +pkg syscall (openbsd-amd64), const IFT_MIOX25 ideal-int +pkg syscall (openbsd-amd64), const IFT_MODEM ideal-int +pkg syscall (openbsd-amd64), const IFT_MPC ideal-int +pkg syscall (openbsd-amd64), const IFT_MPLS ideal-int +pkg syscall (openbsd-amd64), const IFT_MPLSTUNNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_MSDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_MVL ideal-int +pkg syscall (openbsd-amd64), const IFT_MYRINET ideal-int +pkg syscall (openbsd-amd64), const IFT_NFAS ideal-int +pkg syscall (openbsd-amd64), const IFT_NSIP ideal-int +pkg syscall (openbsd-amd64), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (openbsd-amd64), const IFT_OTHER ideal-int +pkg syscall (openbsd-amd64), const IFT_P10 ideal-int +pkg syscall (openbsd-amd64), const IFT_P80 ideal-int +pkg syscall (openbsd-amd64), const IFT_PARA ideal-int +pkg syscall (openbsd-amd64), const IFT_PFLOG ideal-int +pkg syscall (openbsd-amd64), const IFT_PFLOW ideal-int +pkg syscall (openbsd-amd64), const IFT_PFSYNC ideal-int +pkg syscall (openbsd-amd64), const IFT_PLC ideal-int +pkg syscall (openbsd-amd64), const IFT_PON155 ideal-int +pkg syscall (openbsd-amd64), const IFT_PON622 ideal-int +pkg syscall (openbsd-amd64), const IFT_POS ideal-int +pkg syscall (openbsd-amd64), const IFT_PPP ideal-int +pkg syscall (openbsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPATM ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPBWAP2MP ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPCNLS ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPMUX ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (openbsd-amd64), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (openbsd-amd64), const IFT_PTPSERIAL ideal-int +pkg syscall (openbsd-amd64), const IFT_PVC ideal-int +pkg syscall (openbsd-amd64), const IFT_Q2931 ideal-int +pkg syscall (openbsd-amd64), const IFT_QLLC ideal-int +pkg syscall (openbsd-amd64), const IFT_RADIOMAC ideal-int +pkg syscall (openbsd-amd64), const IFT_RADSL ideal-int +pkg syscall (openbsd-amd64), const IFT_REACHDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_RFC1483 ideal-int +pkg syscall (openbsd-amd64), const IFT_RS232 ideal-int +pkg syscall (openbsd-amd64), const IFT_RSRB ideal-int +pkg syscall (openbsd-amd64), const IFT_SDLC ideal-int +pkg syscall (openbsd-amd64), const IFT_SDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_SHDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_SIP ideal-int +pkg syscall (openbsd-amd64), const IFT_SIPSIG ideal-int +pkg syscall (openbsd-amd64), const IFT_SIPTG ideal-int +pkg syscall (openbsd-amd64), const IFT_SLIP ideal-int +pkg syscall (openbsd-amd64), const IFT_SMDSDXI ideal-int +pkg syscall (openbsd-amd64), const IFT_SMDSICIP ideal-int +pkg syscall (openbsd-amd64), const IFT_SONET ideal-int +pkg syscall (openbsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_SONETPATH ideal-int +pkg syscall (openbsd-amd64), const IFT_SONETVT ideal-int +pkg syscall (openbsd-amd64), const IFT_SRP ideal-int +pkg syscall (openbsd-amd64), const IFT_SS7SIGLINK ideal-int +pkg syscall (openbsd-amd64), const IFT_STACKTOSTACK ideal-int +pkg syscall (openbsd-amd64), const IFT_STARLAN ideal-int +pkg syscall (openbsd-amd64), const IFT_T1 ideal-int +pkg syscall (openbsd-amd64), const IFT_TDLC ideal-int +pkg syscall (openbsd-amd64), const IFT_TELINK ideal-int +pkg syscall (openbsd-amd64), const IFT_TERMPAD ideal-int +pkg syscall (openbsd-amd64), const IFT_TR008 ideal-int +pkg syscall (openbsd-amd64), const IFT_TRANSPHDLC ideal-int +pkg syscall (openbsd-amd64), const IFT_TUNNEL ideal-int +pkg syscall (openbsd-amd64), const IFT_ULTRA ideal-int +pkg syscall (openbsd-amd64), const IFT_USB ideal-int +pkg syscall (openbsd-amd64), const IFT_V11 ideal-int +pkg syscall (openbsd-amd64), const IFT_V35 ideal-int +pkg syscall (openbsd-amd64), const IFT_V36 ideal-int +pkg syscall (openbsd-amd64), const IFT_V37 ideal-int +pkg syscall (openbsd-amd64), const IFT_VDSL ideal-int +pkg syscall (openbsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (openbsd-amd64), const IFT_VIRTUALTG ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEDID ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEEM ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEEMFGD ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEENCAP ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEFGDEANA ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEFXO ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEFXS ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEOVERATM ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (openbsd-amd64), const IFT_VOICEOVERIP ideal-int +pkg syscall (openbsd-amd64), const IFT_X213 ideal-int +pkg syscall (openbsd-amd64), const IFT_X25 ideal-int +pkg syscall (openbsd-amd64), const IFT_X25DDN ideal-int +pkg syscall (openbsd-amd64), const IFT_X25HUNTGROUP ideal-int +pkg syscall (openbsd-amd64), const IFT_X25MLP ideal-int +pkg syscall (openbsd-amd64), const IFT_X25PLE ideal-int +pkg syscall (openbsd-amd64), const IFT_XETHER ideal-int +pkg syscall (openbsd-amd64), const IGNBRK ideal-int +pkg syscall (openbsd-amd64), const IGNCR ideal-int +pkg syscall (openbsd-amd64), const IGNPAR ideal-int +pkg syscall (openbsd-amd64), const IMAXBEL ideal-int +pkg syscall (openbsd-amd64), const INLCR ideal-int +pkg syscall (openbsd-amd64), const INPCK ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSA_HOST ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSA_MAX ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSA_NET ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSB_HOST ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSB_MAX ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSB_NET ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSC_HOST ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSC_NET ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSD_HOST ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSD_NET ideal-int +pkg syscall (openbsd-amd64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (openbsd-amd64), const IN_LOOPBACKNET ideal-int +pkg syscall (openbsd-amd64), const IN_RFC3021_HOST ideal-int +pkg syscall (openbsd-amd64), const IN_RFC3021_NET ideal-int +pkg syscall (openbsd-amd64), const IN_RFC3021_NSHIFT ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_AH ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_CARP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_DONE ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_EGP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ENCAP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_EON ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ESP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ETHERIP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_GGP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_GRE ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ICMP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_IDP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_IGMP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_IPCOMP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_IPIP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_IPV4 ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_MAX ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_MAXID ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_MOBILE ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_MPLS ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_NONE ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_PFSYNC ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_PIM ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_PUP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_RAW ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_ROUTING ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_RSVP ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_TP ideal-int +pkg syscall (openbsd-amd64), const IPV6_AUTH_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (openbsd-amd64), const IPV6_CHECKSUM ideal-int +pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (openbsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-amd64), const IPV6_DEFHLIM ideal-int +pkg syscall (openbsd-amd64), const IPV6_DONTFRAG ideal-int +pkg syscall (openbsd-amd64), const IPV6_DSTOPTS ideal-int +pkg syscall (openbsd-amd64), const IPV6_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IPV6_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IPV6_FAITH ideal-int +pkg syscall (openbsd-amd64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (openbsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (openbsd-amd64), const IPV6_FRAGTTL ideal-int +pkg syscall (openbsd-amd64), const IPV6_HLIMDEC ideal-int +pkg syscall (openbsd-amd64), const IPV6_HOPLIMIT ideal-int +pkg syscall (openbsd-amd64), const IPV6_HOPOPTS ideal-int +pkg syscall (openbsd-amd64), const IPV6_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IPV6_MAXHLIM ideal-int +pkg syscall (openbsd-amd64), const IPV6_MAXPACKET ideal-int +pkg syscall (openbsd-amd64), const IPV6_MMTU ideal-int +pkg syscall (openbsd-amd64), const IPV6_NEXTHOP ideal-int +pkg syscall (openbsd-amd64), const IPV6_OPTIONS ideal-int +pkg syscall (openbsd-amd64), const IPV6_PATHMTU ideal-int +pkg syscall (openbsd-amd64), const IPV6_PIPEX ideal-int +pkg syscall (openbsd-amd64), const IPV6_PKTINFO ideal-int +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE ideal-int +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-amd64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVPATHMTU ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVRTHDR ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVTCLASS ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTABLE ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTHDR ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (openbsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (openbsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (openbsd-amd64), const IPV6_TCLASS ideal-int +pkg syscall (openbsd-amd64), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (openbsd-amd64), const IPV6_VERSION ideal-int +pkg syscall (openbsd-amd64), const IPV6_VERSION_MASK ideal-int +pkg syscall (openbsd-amd64), const IP_AUTH_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (openbsd-amd64), const IP_DF ideal-int +pkg syscall (openbsd-amd64), const IP_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IP_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IP_HDRINCL ideal-int +pkg syscall (openbsd-amd64), const IP_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-amd64), const IP_IPSECFLOWINFO ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_AUTH ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_CRED ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_LOCAL_ID ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_AUTH ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_CRED ideal-int +pkg syscall (openbsd-amd64), const IP_IPSEC_REMOTE_ID ideal-int +pkg syscall (openbsd-amd64), const IP_MAXPACKET ideal-int +pkg syscall (openbsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (openbsd-amd64), const IP_MF ideal-int +pkg syscall (openbsd-amd64), const IP_MINTTL ideal-int +pkg syscall (openbsd-amd64), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (openbsd-amd64), const IP_MSS ideal-int +pkg syscall (openbsd-amd64), const IP_OFFMASK ideal-int +pkg syscall (openbsd-amd64), const IP_OPTIONS ideal-int +pkg syscall (openbsd-amd64), const IP_PIPEX ideal-int +pkg syscall (openbsd-amd64), const IP_PORTRANGE ideal-int +pkg syscall (openbsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-amd64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-amd64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-amd64), const IP_RECVDSTADDR ideal-int +pkg syscall (openbsd-amd64), const IP_RECVDSTPORT ideal-int +pkg syscall (openbsd-amd64), const IP_RECVIF ideal-int +pkg syscall (openbsd-amd64), const IP_RECVOPTS ideal-int +pkg syscall (openbsd-amd64), const IP_RECVRETOPTS ideal-int +pkg syscall (openbsd-amd64), const IP_RECVRTABLE ideal-int +pkg syscall (openbsd-amd64), const IP_RECVTTL ideal-int +pkg syscall (openbsd-amd64), const IP_RETOPTS ideal-int +pkg syscall (openbsd-amd64), const IP_RF ideal-int +pkg syscall (openbsd-amd64), const IP_RTABLE ideal-int +pkg syscall (openbsd-amd64), const ISIG ideal-int +pkg syscall (openbsd-amd64), const ISTRIP ideal-int +pkg syscall (openbsd-amd64), const IXANY ideal-int +pkg syscall (openbsd-amd64), const IXOFF ideal-int +pkg syscall (openbsd-amd64), const IXON ideal-int +pkg syscall (openbsd-amd64), const LCNT_OVERLOAD_FLUSH ideal-int +pkg syscall (openbsd-amd64), const LOCK_EX ideal-int +pkg syscall (openbsd-amd64), const LOCK_NB ideal-int +pkg syscall (openbsd-amd64), const LOCK_SH ideal-int +pkg syscall (openbsd-amd64), const LOCK_UN ideal-int +pkg syscall (openbsd-amd64), const MSG_BCAST ideal-int +pkg syscall (openbsd-amd64), const MSG_CTRUNC ideal-int +pkg syscall (openbsd-amd64), const MSG_DONTROUTE ideal-int +pkg syscall (openbsd-amd64), const MSG_DONTWAIT ideal-int +pkg syscall (openbsd-amd64), const MSG_EOR ideal-int +pkg syscall (openbsd-amd64), const MSG_MCAST ideal-int +pkg syscall (openbsd-amd64), const MSG_NOSIGNAL ideal-int +pkg syscall (openbsd-amd64), const MSG_OOB ideal-int +pkg syscall (openbsd-amd64), const MSG_PEEK ideal-int +pkg syscall (openbsd-amd64), const MSG_TRUNC ideal-int +pkg syscall (openbsd-amd64), const MSG_WAITALL ideal-int +pkg syscall (openbsd-amd64), const NAME_MAX ideal-int +pkg syscall (openbsd-amd64), const NET_RT_DUMP ideal-int +pkg syscall (openbsd-amd64), const NET_RT_FLAGS ideal-int +pkg syscall (openbsd-amd64), const NET_RT_IFLIST ideal-int +pkg syscall (openbsd-amd64), const NET_RT_MAXID ideal-int +pkg syscall (openbsd-amd64), const NET_RT_STATS ideal-int +pkg syscall (openbsd-amd64), const NET_RT_TABLE ideal-int +pkg syscall (openbsd-amd64), const NOFLSH ideal-int +pkg syscall (openbsd-amd64), const NOTE_ATTRIB ideal-int +pkg syscall (openbsd-amd64), const NOTE_CHILD ideal-int +pkg syscall (openbsd-amd64), const NOTE_DELETE ideal-int +pkg syscall (openbsd-amd64), const NOTE_EOF ideal-int +pkg syscall (openbsd-amd64), const NOTE_EXEC ideal-int +pkg syscall (openbsd-amd64), const NOTE_EXIT ideal-int +pkg syscall (openbsd-amd64), const NOTE_EXTEND ideal-int +pkg syscall (openbsd-amd64), const NOTE_FORK ideal-int +pkg syscall (openbsd-amd64), const NOTE_LINK ideal-int +pkg syscall (openbsd-amd64), const NOTE_LOWAT ideal-int +pkg syscall (openbsd-amd64), const NOTE_PCTRLMASK ideal-int +pkg syscall (openbsd-amd64), const NOTE_PDATAMASK ideal-int +pkg syscall (openbsd-amd64), const NOTE_RENAME ideal-int +pkg syscall (openbsd-amd64), const NOTE_REVOKE ideal-int +pkg syscall (openbsd-amd64), const NOTE_TRACK ideal-int +pkg syscall (openbsd-amd64), const NOTE_TRACKERR ideal-int +pkg syscall (openbsd-amd64), const NOTE_TRUNCATE ideal-int +pkg syscall (openbsd-amd64), const NOTE_WRITE ideal-int +pkg syscall (openbsd-amd64), const OCRNL ideal-int +pkg syscall (openbsd-amd64), const ONLCR ideal-int +pkg syscall (openbsd-amd64), const ONLRET ideal-int +pkg syscall (openbsd-amd64), const ONOCR ideal-int +pkg syscall (openbsd-amd64), const ONOEOT ideal-int +pkg syscall (openbsd-amd64), const OPOST ideal-int +pkg syscall (openbsd-amd64), const O_ACCMODE ideal-int +pkg syscall (openbsd-amd64), const O_DIRECTORY ideal-int +pkg syscall (openbsd-amd64), const O_DSYNC ideal-int +pkg syscall (openbsd-amd64), const O_EXLOCK ideal-int +pkg syscall (openbsd-amd64), const O_FSYNC ideal-int +pkg syscall (openbsd-amd64), const O_NDELAY ideal-int +pkg syscall (openbsd-amd64), const O_NOFOLLOW ideal-int +pkg syscall (openbsd-amd64), const O_RSYNC ideal-int +pkg syscall (openbsd-amd64), const O_SHLOCK ideal-int +pkg syscall (openbsd-amd64), const PARENB ideal-int +pkg syscall (openbsd-amd64), const PARMRK ideal-int +pkg syscall (openbsd-amd64), const PARODD ideal-int +pkg syscall (openbsd-amd64), const PENDIN ideal-int +pkg syscall (openbsd-amd64), const PF_FLUSH ideal-int +pkg syscall (openbsd-amd64), const PMC5_PIPELINE_FLUSH ideal-int +pkg syscall (openbsd-amd64), const PRIO_PGRP = 1 +pkg syscall (openbsd-amd64), const PRIO_PGRP ideal-int +pkg syscall (openbsd-amd64), const PRIO_PROCESS = 0 +pkg syscall (openbsd-amd64), const PRIO_PROCESS ideal-int +pkg syscall (openbsd-amd64), const PRIO_USER = 2 +pkg syscall (openbsd-amd64), const PRIO_USER ideal-int +pkg syscall (openbsd-amd64), const PTRACE_CONT ideal-int +pkg syscall (openbsd-amd64), const PTRACE_KILL ideal-int +pkg syscall (openbsd-amd64), const PTRACE_TRACEME ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_CORE ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_CPU ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_DATA ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_FSIZE ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_NOFILE ideal-int +pkg syscall (openbsd-amd64), const RLIMIT_STACK ideal-int +pkg syscall (openbsd-amd64), const RLIM_INFINITY ideal-int +pkg syscall (openbsd-amd64), const RTAX_AUTHOR ideal-int +pkg syscall (openbsd-amd64), const RTAX_BRD ideal-int +pkg syscall (openbsd-amd64), const RTAX_DST ideal-int +pkg syscall (openbsd-amd64), const RTAX_GATEWAY ideal-int +pkg syscall (openbsd-amd64), const RTAX_GENMASK ideal-int +pkg syscall (openbsd-amd64), const RTAX_IFA ideal-int +pkg syscall (openbsd-amd64), const RTAX_IFP ideal-int +pkg syscall (openbsd-amd64), const RTAX_LABEL ideal-int +pkg syscall (openbsd-amd64), const RTAX_MAX ideal-int +pkg syscall (openbsd-amd64), const RTAX_NETMASK ideal-int +pkg syscall (openbsd-amd64), const RTAX_SRC ideal-int +pkg syscall (openbsd-amd64), const RTAX_SRCMASK ideal-int +pkg syscall (openbsd-amd64), const RTA_AUTHOR ideal-int +pkg syscall (openbsd-amd64), const RTA_BRD ideal-int +pkg syscall (openbsd-amd64), const RTA_DST ideal-int +pkg syscall (openbsd-amd64), const RTA_GATEWAY ideal-int +pkg syscall (openbsd-amd64), const RTA_GENMASK ideal-int +pkg syscall (openbsd-amd64), const RTA_IFA ideal-int +pkg syscall (openbsd-amd64), const RTA_IFP ideal-int +pkg syscall (openbsd-amd64), const RTA_LABEL ideal-int +pkg syscall (openbsd-amd64), const RTA_NETMASK ideal-int +pkg syscall (openbsd-amd64), const RTA_SRC ideal-int +pkg syscall (openbsd-amd64), const RTA_SRCMASK ideal-int +pkg syscall (openbsd-amd64), const RTF_ANNOUNCE ideal-int +pkg syscall (openbsd-amd64), const RTF_BLACKHOLE ideal-int +pkg syscall (openbsd-amd64), const RTF_CLONED ideal-int +pkg syscall (openbsd-amd64), const RTF_CLONING ideal-int +pkg syscall (openbsd-amd64), const RTF_DONE ideal-int +pkg syscall (openbsd-amd64), const RTF_DYNAMIC ideal-int +pkg syscall (openbsd-amd64), const RTF_FMASK ideal-int +pkg syscall (openbsd-amd64), const RTF_GATEWAY ideal-int +pkg syscall (openbsd-amd64), const RTF_HOST ideal-int +pkg syscall (openbsd-amd64), const RTF_LLINFO ideal-int +pkg syscall (openbsd-amd64), const RTF_MASK ideal-int +pkg syscall (openbsd-amd64), const RTF_MODIFIED ideal-int +pkg syscall (openbsd-amd64), const RTF_MPATH ideal-int +pkg syscall (openbsd-amd64), const RTF_MPLS ideal-int +pkg syscall (openbsd-amd64), const RTF_PERMANENT_ARP ideal-int +pkg syscall (openbsd-amd64), const RTF_PROTO1 ideal-int +pkg syscall (openbsd-amd64), const RTF_PROTO2 ideal-int +pkg syscall (openbsd-amd64), const RTF_PROTO3 ideal-int +pkg syscall (openbsd-amd64), const RTF_REJECT ideal-int +pkg syscall (openbsd-amd64), const RTF_SOURCE ideal-int +pkg syscall (openbsd-amd64), const RTF_STATIC ideal-int +pkg syscall (openbsd-amd64), const RTF_TUNNEL ideal-int +pkg syscall (openbsd-amd64), const RTF_UP ideal-int +pkg syscall (openbsd-amd64), const RTF_USETRAILERS ideal-int +pkg syscall (openbsd-amd64), const RTF_XRESOLVE ideal-int +pkg syscall (openbsd-amd64), const RTM_ADD ideal-int +pkg syscall (openbsd-amd64), const RTM_CHANGE ideal-int +pkg syscall (openbsd-amd64), const RTM_DELADDR ideal-int +pkg syscall (openbsd-amd64), const RTM_DELETE ideal-int +pkg syscall (openbsd-amd64), const RTM_DESYNC ideal-int +pkg syscall (openbsd-amd64), const RTM_GET ideal-int +pkg syscall (openbsd-amd64), const RTM_IFANNOUNCE ideal-int +pkg syscall (openbsd-amd64), const RTM_IFINFO ideal-int +pkg syscall (openbsd-amd64), const RTM_LOCK ideal-int +pkg syscall (openbsd-amd64), const RTM_LOSING ideal-int +pkg syscall (openbsd-amd64), const RTM_MAXSIZE ideal-int +pkg syscall (openbsd-amd64), const RTM_MISS ideal-int +pkg syscall (openbsd-amd64), const RTM_NEWADDR ideal-int +pkg syscall (openbsd-amd64), const RTM_REDIRECT ideal-int +pkg syscall (openbsd-amd64), const RTM_RESOLVE ideal-int +pkg syscall (openbsd-amd64), const RTM_RTTUNIT ideal-int +pkg syscall (openbsd-amd64), const RTM_VERSION ideal-int +pkg syscall (openbsd-amd64), const RTV_EXPIRE ideal-int +pkg syscall (openbsd-amd64), const RTV_HOPCOUNT ideal-int +pkg syscall (openbsd-amd64), const RTV_MTU ideal-int +pkg syscall (openbsd-amd64), const RTV_RPIPE ideal-int +pkg syscall (openbsd-amd64), const RTV_RTT ideal-int +pkg syscall (openbsd-amd64), const RTV_RTTVAR ideal-int +pkg syscall (openbsd-amd64), const RTV_SPIPE ideal-int +pkg syscall (openbsd-amd64), const RTV_SSTHRESH ideal-int +pkg syscall (openbsd-amd64), const RT_TABLEID_MAX ideal-int +pkg syscall (openbsd-amd64), const RUSAGE_CHILDREN ideal-int +pkg syscall (openbsd-amd64), const RUSAGE_SELF ideal-int +pkg syscall (openbsd-amd64), const RUSAGE_THREAD ideal-int +pkg syscall (openbsd-amd64), const SCM_RIGHTS ideal-int +pkg syscall (openbsd-amd64), const SCM_TIMESTAMP ideal-int +pkg syscall (openbsd-amd64), const SIGCHLD Signal +pkg syscall (openbsd-amd64), const SIGCONT Signal +pkg syscall (openbsd-amd64), const SIGEMT Signal +pkg syscall (openbsd-amd64), const SIGINFO Signal +pkg syscall (openbsd-amd64), const SIGIO Signal +pkg syscall (openbsd-amd64), const SIGIOT Signal +pkg syscall (openbsd-amd64), const SIGPROF Signal +pkg syscall (openbsd-amd64), const SIGSTOP Signal +pkg syscall (openbsd-amd64), const SIGSYS Signal +pkg syscall (openbsd-amd64), const SIGTHR Signal +pkg syscall (openbsd-amd64), const SIGTSTP Signal +pkg syscall (openbsd-amd64), const SIGTTIN Signal +pkg syscall (openbsd-amd64), const SIGTTOU Signal +pkg syscall (openbsd-amd64), const SIGURG Signal +pkg syscall (openbsd-amd64), const SIGUSR1 Signal +pkg syscall (openbsd-amd64), const SIGUSR2 Signal +pkg syscall (openbsd-amd64), const SIGVTALRM Signal +pkg syscall (openbsd-amd64), const SIGWINCH Signal +pkg syscall (openbsd-amd64), const SIGXCPU Signal +pkg syscall (openbsd-amd64), const SIGXFSZ Signal +pkg syscall (openbsd-amd64), const SIOCADDMULTI ideal-int +pkg syscall (openbsd-amd64), const SIOCAIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCAIFGROUP ideal-int +pkg syscall (openbsd-amd64), const SIOCALIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCATMARK ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGADD ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGADDS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGARL ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGDADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGDEL ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGDELS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGFLUSH ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGFRL ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGCACHE ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGFD ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGHT ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGIFFLGS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGMA ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGPARAM ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGPRI ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGRL ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGSIFS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGGTO ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGIFS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGRTS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSCACHE ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSFD ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSHT ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSIFCOST ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSIFFLGS ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSIFPRIO ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSMA ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSPRI ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSPROTO ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSTO ideal-int +pkg syscall (openbsd-amd64), const SIOCBRDGSTXHC ideal-int +pkg syscall (openbsd-amd64), const SIOCDELMULTI ideal-int +pkg syscall (openbsd-amd64), const SIOCDIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCDIFGROUP ideal-int +pkg syscall (openbsd-amd64), const SIOCDIFPHYADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCDLIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGETKALIVE ideal-int +pkg syscall (openbsd-amd64), const SIOCGETLABEL ideal-int +pkg syscall (openbsd-amd64), const SIOCGETPFLOW ideal-int +pkg syscall (openbsd-amd64), const SIOCGETPFSYNC ideal-int +pkg syscall (openbsd-amd64), const SIOCGETSGCNT ideal-int +pkg syscall (openbsd-amd64), const SIOCGETVIFCNT ideal-int +pkg syscall (openbsd-amd64), const SIOCGHIWAT ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFASYNCMAP ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFBRDADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFCONF ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFDATA ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFDESCR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFDSTADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFFLAGS ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFGATTR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFGENERIC ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFGMEMB ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFGROUP ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFMEDIA ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFMETRIC ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFMTU ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFNETMASK ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFPRIORITY ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFRDOMAIN ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFRTLABEL ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFTIMESLOT ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFXFLAGS ideal-int +pkg syscall (openbsd-amd64), const SIOCGLIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCGLIFPHYRTABLE ideal-int +pkg syscall (openbsd-amd64), const SIOCGLOWAT ideal-int +pkg syscall (openbsd-amd64), const SIOCGPGRP ideal-int +pkg syscall (openbsd-amd64), const SIOCGVH ideal-int +pkg syscall (openbsd-amd64), const SIOCIFCREATE ideal-int +pkg syscall (openbsd-amd64), const SIOCIFDESTROY ideal-int +pkg syscall (openbsd-amd64), const SIOCIFGCLONERS ideal-int +pkg syscall (openbsd-amd64), const SIOCSETKALIVE ideal-int +pkg syscall (openbsd-amd64), const SIOCSETLABEL ideal-int +pkg syscall (openbsd-amd64), const SIOCSETPFLOW ideal-int +pkg syscall (openbsd-amd64), const SIOCSETPFSYNC ideal-int +pkg syscall (openbsd-amd64), const SIOCSHIWAT ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFASYNCMAP ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFBRDADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFDESCR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFDSTADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFFLAGS ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFGATTR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFGENERIC ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFLLADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFMEDIA ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFMETRIC ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFMTU ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFNETMASK ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFPHYADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFPRIORITY ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFRDOMAIN ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFRTLABEL ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFTIMESLOT ideal-int +pkg syscall (openbsd-amd64), const SIOCSIFXFLAGS ideal-int +pkg syscall (openbsd-amd64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (openbsd-amd64), const SIOCSLIFPHYRTABLE ideal-int +pkg syscall (openbsd-amd64), const SIOCSLOWAT ideal-int +pkg syscall (openbsd-amd64), const SIOCSPGRP ideal-int +pkg syscall (openbsd-amd64), const SIOCSVH ideal-int +pkg syscall (openbsd-amd64), const SOCK_RDM ideal-int +pkg syscall (openbsd-amd64), const SO_ACCEPTCONN ideal-int +pkg syscall (openbsd-amd64), const SO_BINDANY ideal-int +pkg syscall (openbsd-amd64), const SO_DEBUG ideal-int +pkg syscall (openbsd-amd64), const SO_ERROR ideal-int +pkg syscall (openbsd-amd64), const SO_NETPROC ideal-int +pkg syscall (openbsd-amd64), const SO_OOBINLINE ideal-int +pkg syscall (openbsd-amd64), const SO_PEERCRED ideal-int +pkg syscall (openbsd-amd64), const SO_RCVLOWAT ideal-int +pkg syscall (openbsd-amd64), const SO_RCVTIMEO ideal-int +pkg syscall (openbsd-amd64), const SO_REUSEPORT ideal-int +pkg syscall (openbsd-amd64), const SO_RTABLE ideal-int +pkg syscall (openbsd-amd64), const SO_SNDLOWAT ideal-int +pkg syscall (openbsd-amd64), const SO_SNDTIMEO ideal-int +pkg syscall (openbsd-amd64), const SO_SPLICE ideal-int +pkg syscall (openbsd-amd64), const SO_TIMESTAMP ideal-int +pkg syscall (openbsd-amd64), const SO_TYPE ideal-int +pkg syscall (openbsd-amd64), const SO_USELOOPBACK ideal-int +pkg syscall (openbsd-amd64), const SYS_ACCEPT ideal-int +pkg syscall (openbsd-amd64), const SYS_ACCESS ideal-int +pkg syscall (openbsd-amd64), const SYS_ACCT ideal-int +pkg syscall (openbsd-amd64), const SYS_ADJFREQ ideal-int +pkg syscall (openbsd-amd64), const SYS_ADJTIME ideal-int +pkg syscall (openbsd-amd64), const SYS_BIND ideal-int +pkg syscall (openbsd-amd64), const SYS_CHDIR ideal-int +pkg syscall (openbsd-amd64), const SYS_CHFLAGS ideal-int +pkg syscall (openbsd-amd64), const SYS_CHMOD ideal-int +pkg syscall (openbsd-amd64), const SYS_CHOWN ideal-int +pkg syscall (openbsd-amd64), const SYS_CHROOT ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOSE ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOSEFROM ideal-int +pkg syscall (openbsd-amd64), const SYS_CONNECT ideal-int +pkg syscall (openbsd-amd64), const SYS_DUP ideal-int +pkg syscall (openbsd-amd64), const SYS_DUP2 ideal-int +pkg syscall (openbsd-amd64), const SYS_EXECVE ideal-int +pkg syscall (openbsd-amd64), const SYS_EXIT ideal-int +pkg syscall (openbsd-amd64), const SYS_FACCESSAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHDIR ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHFLAGS ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHMOD ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHMODAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHOWN ideal-int +pkg syscall (openbsd-amd64), const SYS_FCHOWNAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FCNTL ideal-int +pkg syscall (openbsd-amd64), const SYS_FHOPEN ideal-int +pkg syscall (openbsd-amd64), const SYS_FHSTAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FHSTATFS ideal-int +pkg syscall (openbsd-amd64), const SYS_FLOCK ideal-int +pkg syscall (openbsd-amd64), const SYS_FORK ideal-int +pkg syscall (openbsd-amd64), const SYS_FPATHCONF ideal-int +pkg syscall (openbsd-amd64), const SYS_FSTAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FSTATAT ideal-int +pkg syscall (openbsd-amd64), const SYS_FSTATFS ideal-int +pkg syscall (openbsd-amd64), const SYS_FSYNC ideal-int +pkg syscall (openbsd-amd64), const SYS_FTRUNCATE ideal-int +pkg syscall (openbsd-amd64), const SYS_FUTIMENS ideal-int +pkg syscall (openbsd-amd64), const SYS_FUTIMES ideal-int +pkg syscall (openbsd-amd64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-amd64), const SYS_GETDTABLECOUNT ideal-int +pkg syscall (openbsd-amd64), const SYS_GETEGID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETEUID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETFH ideal-int +pkg syscall (openbsd-amd64), const SYS_GETFSSTAT ideal-int +pkg syscall (openbsd-amd64), const SYS_GETGID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETGROUPS ideal-int +pkg syscall (openbsd-amd64), const SYS_GETITIMER ideal-int +pkg syscall (openbsd-amd64), const SYS_GETLOGIN ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPEERNAME ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPGID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPGRP ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPPID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETPRIORITY ideal-int +pkg syscall (openbsd-amd64), const SYS_GETRESGID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETRESUID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETRLIMIT ideal-int +pkg syscall (openbsd-amd64), const SYS_GETRTABLE ideal-int +pkg syscall (openbsd-amd64), const SYS_GETRUSAGE ideal-int +pkg syscall (openbsd-amd64), const SYS_GETSID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETSOCKNAME ideal-int +pkg syscall (openbsd-amd64), const SYS_GETSOCKOPT ideal-int +pkg syscall (openbsd-amd64), const SYS_GETTHRID ideal-int +pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (openbsd-amd64), const SYS_GETUID ideal-int +pkg syscall (openbsd-amd64), const SYS_IOCTL ideal-int +pkg syscall (openbsd-amd64), const SYS_ISSETUGID ideal-int +pkg syscall (openbsd-amd64), const SYS_KEVENT ideal-int +pkg syscall (openbsd-amd64), const SYS_KILL ideal-int +pkg syscall (openbsd-amd64), const SYS_KQUEUE ideal-int +pkg syscall (openbsd-amd64), const SYS_KTRACE ideal-int +pkg syscall (openbsd-amd64), const SYS_LCHOWN ideal-int +pkg syscall (openbsd-amd64), const SYS_LINK ideal-int +pkg syscall (openbsd-amd64), const SYS_LINKAT ideal-int +pkg syscall (openbsd-amd64), const SYS_LISTEN ideal-int +pkg syscall (openbsd-amd64), const SYS_LSEEK ideal-int +pkg syscall (openbsd-amd64), const SYS_LSTAT ideal-int +pkg syscall (openbsd-amd64), const SYS_MADVISE ideal-int +pkg syscall (openbsd-amd64), const SYS_MINCORE ideal-int +pkg syscall (openbsd-amd64), const SYS_MINHERIT ideal-int +pkg syscall (openbsd-amd64), const SYS_MKDIR ideal-int +pkg syscall (openbsd-amd64), const SYS_MKDIRAT ideal-int +pkg syscall (openbsd-amd64), const SYS_MKFIFO ideal-int +pkg syscall (openbsd-amd64), const SYS_MKFIFOAT ideal-int +pkg syscall (openbsd-amd64), const SYS_MKNOD ideal-int +pkg syscall (openbsd-amd64), const SYS_MKNODAT ideal-int +pkg syscall (openbsd-amd64), const SYS_MLOCK ideal-int +pkg syscall (openbsd-amd64), const SYS_MLOCKALL ideal-int +pkg syscall (openbsd-amd64), const SYS_MMAP ideal-int +pkg syscall (openbsd-amd64), const SYS_MOUNT ideal-int +pkg syscall (openbsd-amd64), const SYS_MPROTECT ideal-int +pkg syscall (openbsd-amd64), const SYS_MQUERY ideal-int +pkg syscall (openbsd-amd64), const SYS_MSGCTL ideal-int +pkg syscall (openbsd-amd64), const SYS_MSGGET ideal-int +pkg syscall (openbsd-amd64), const SYS_MSGRCV ideal-int +pkg syscall (openbsd-amd64), const SYS_MSGSND ideal-int +pkg syscall (openbsd-amd64), const SYS_MSYNC ideal-int +pkg syscall (openbsd-amd64), const SYS_MUNLOCK ideal-int +pkg syscall (openbsd-amd64), const SYS_MUNLOCKALL ideal-int +pkg syscall (openbsd-amd64), const SYS_MUNMAP ideal-int +pkg syscall (openbsd-amd64), const SYS_NANOSLEEP ideal-int +pkg syscall (openbsd-amd64), const SYS_NFSSVC ideal-int +pkg syscall (openbsd-amd64), const SYS_OBREAK ideal-int +pkg syscall (openbsd-amd64), const SYS_OPEN ideal-int +pkg syscall (openbsd-amd64), const SYS_OPENAT ideal-int +pkg syscall (openbsd-amd64), const SYS_PATHCONF ideal-int +pkg syscall (openbsd-amd64), const SYS_PIPE ideal-int +pkg syscall (openbsd-amd64), const SYS_POLL ideal-int +pkg syscall (openbsd-amd64), const SYS_PREAD ideal-int +pkg syscall (openbsd-amd64), const SYS_PREADV ideal-int +pkg syscall (openbsd-amd64), const SYS_PROFIL ideal-int +pkg syscall (openbsd-amd64), const SYS_PTRACE ideal-int +pkg syscall (openbsd-amd64), const SYS_PWRITE ideal-int +pkg syscall (openbsd-amd64), const SYS_PWRITEV ideal-int +pkg syscall (openbsd-amd64), const SYS_QUOTACTL ideal-int +pkg syscall (openbsd-amd64), const SYS_READ ideal-int +pkg syscall (openbsd-amd64), const SYS_READLINK ideal-int +pkg syscall (openbsd-amd64), const SYS_READLINKAT ideal-int +pkg syscall (openbsd-amd64), const SYS_READV ideal-int +pkg syscall (openbsd-amd64), const SYS_REBOOT ideal-int +pkg syscall (openbsd-amd64), const SYS_RECVFROM ideal-int +pkg syscall (openbsd-amd64), const SYS_RECVMSG ideal-int +pkg syscall (openbsd-amd64), const SYS_RENAME ideal-int +pkg syscall (openbsd-amd64), const SYS_RENAMEAT ideal-int +pkg syscall (openbsd-amd64), const SYS_REVOKE ideal-int +pkg syscall (openbsd-amd64), const SYS_RMDIR ideal-int +pkg syscall (openbsd-amd64), const SYS_SCHED_YIELD ideal-int +pkg syscall (openbsd-amd64), const SYS_SELECT ideal-int +pkg syscall (openbsd-amd64), const SYS_SEMGET ideal-int +pkg syscall (openbsd-amd64), const SYS_SEMOP ideal-int +pkg syscall (openbsd-amd64), const SYS_SENDMSG ideal-int +pkg syscall (openbsd-amd64), const SYS_SENDTO ideal-int +pkg syscall (openbsd-amd64), const SYS_SETEGID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETEUID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETGID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETGROUPS ideal-int +pkg syscall (openbsd-amd64), const SYS_SETITIMER ideal-int +pkg syscall (openbsd-amd64), const SYS_SETLOGIN ideal-int +pkg syscall (openbsd-amd64), const SYS_SETPGID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETPRIORITY ideal-int +pkg syscall (openbsd-amd64), const SYS_SETREGID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETRESGID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETRESUID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETREUID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETRLIMIT ideal-int +pkg syscall (openbsd-amd64), const SYS_SETRTABLE ideal-int +pkg syscall (openbsd-amd64), const SYS_SETSID ideal-int +pkg syscall (openbsd-amd64), const SYS_SETSOCKOPT ideal-int +pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (openbsd-amd64), const SYS_SETUID ideal-int +pkg syscall (openbsd-amd64), const SYS_SHMAT ideal-int +pkg syscall (openbsd-amd64), const SYS_SHMCTL ideal-int +pkg syscall (openbsd-amd64), const SYS_SHMDT ideal-int +pkg syscall (openbsd-amd64), const SYS_SHMGET ideal-int +pkg syscall (openbsd-amd64), const SYS_SHUTDOWN ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGACTION ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGALTSTACK ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGPENDING ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGPROCMASK ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGRETURN ideal-int +pkg syscall (openbsd-amd64), const SYS_SIGSUSPEND ideal-int +pkg syscall (openbsd-amd64), const SYS_SOCKET ideal-int +pkg syscall (openbsd-amd64), const SYS_SOCKETPAIR ideal-int +pkg syscall (openbsd-amd64), const SYS_STAT ideal-int +pkg syscall (openbsd-amd64), const SYS_STATFS ideal-int +pkg syscall (openbsd-amd64), const SYS_SWAPCTL ideal-int +pkg syscall (openbsd-amd64), const SYS_SYMLINK ideal-int +pkg syscall (openbsd-amd64), const SYS_SYMLINKAT ideal-int +pkg syscall (openbsd-amd64), const SYS_SYNC ideal-int +pkg syscall (openbsd-amd64), const SYS_SYSARCH ideal-int +pkg syscall (openbsd-amd64), const SYS_TRUNCATE ideal-int +pkg syscall (openbsd-amd64), const SYS_UMASK ideal-int +pkg syscall (openbsd-amd64), const SYS_UNLINK ideal-int +pkg syscall (openbsd-amd64), const SYS_UNLINKAT ideal-int +pkg syscall (openbsd-amd64), const SYS_UNMOUNT ideal-int +pkg syscall (openbsd-amd64), const SYS_UTIMENSAT ideal-int +pkg syscall (openbsd-amd64), const SYS_UTIMES ideal-int +pkg syscall (openbsd-amd64), const SYS_VFORK ideal-int +pkg syscall (openbsd-amd64), const SYS_WAIT4 ideal-int +pkg syscall (openbsd-amd64), const SYS_WRITE ideal-int +pkg syscall (openbsd-amd64), const SYS_WRITEV ideal-int +pkg syscall (openbsd-amd64), const SYS___GETCWD ideal-int +pkg syscall (openbsd-amd64), const SYS___GET_TCB ideal-int +pkg syscall (openbsd-amd64), const SYS___SEMCTL ideal-int +pkg syscall (openbsd-amd64), const SYS___SET_TCB ideal-int +pkg syscall (openbsd-amd64), const SYS___SYSCTL ideal-int +pkg syscall (openbsd-amd64), const SYS___TFORK ideal-int +pkg syscall (openbsd-amd64), const SYS___THREXIT ideal-int +pkg syscall (openbsd-amd64), const SYS___THRSIGDIVERT ideal-int +pkg syscall (openbsd-amd64), const SYS___THRSLEEP ideal-int +pkg syscall (openbsd-amd64), const SYS___THRWAKEUP ideal-int +pkg syscall (openbsd-amd64), const SizeofBpfHdr ideal-int +pkg syscall (openbsd-amd64), const SizeofBpfInsn ideal-int +pkg syscall (openbsd-amd64), const SizeofBpfProgram ideal-int +pkg syscall (openbsd-amd64), const SizeofBpfStat ideal-int +pkg syscall (openbsd-amd64), const SizeofBpfVersion ideal-int +pkg syscall (openbsd-amd64), const SizeofCmsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofICMPv6Filter = 32 +pkg syscall (openbsd-amd64), const SizeofICMPv6Filter ideal-int +pkg syscall (openbsd-amd64), const SizeofIPMreq ideal-int +pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo = 32 +pkg syscall (openbsd-amd64), const SizeofIPv6MTUInfo ideal-int +pkg syscall (openbsd-amd64), const SizeofIPv6Mreq ideal-int +pkg syscall (openbsd-amd64), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofIfData ideal-int +pkg syscall (openbsd-amd64), const SizeofIfMsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofIfaMsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofInet6Pktinfo ideal-int +pkg syscall (openbsd-amd64), const SizeofLinger ideal-int +pkg syscall (openbsd-amd64), const SizeofMsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofRtMetrics ideal-int +pkg syscall (openbsd-amd64), const SizeofRtMsghdr ideal-int +pkg syscall (openbsd-amd64), const SizeofSockaddrAny ideal-int +pkg syscall (openbsd-amd64), const SizeofSockaddrDatalink ideal-int +pkg syscall (openbsd-amd64), const SizeofSockaddrInet4 ideal-int +pkg syscall (openbsd-amd64), const SizeofSockaddrInet6 ideal-int +pkg syscall (openbsd-amd64), const SizeofSockaddrUnix ideal-int +pkg syscall (openbsd-amd64), const TCIFLUSH ideal-int +pkg syscall (openbsd-amd64), const TCIOFLUSH ideal-int +pkg syscall (openbsd-amd64), const TCOFLUSH ideal-int +pkg syscall (openbsd-amd64), const TCP_MAXBURST ideal-int +pkg syscall (openbsd-amd64), const TCP_MAXSEG ideal-int +pkg syscall (openbsd-amd64), const TCP_MAXWIN ideal-int +pkg syscall (openbsd-amd64), const TCP_MAX_SACK ideal-int +pkg syscall (openbsd-amd64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (openbsd-amd64), const TCP_MD5SIG ideal-int +pkg syscall (openbsd-amd64), const TCP_MSS ideal-int +pkg syscall (openbsd-amd64), const TCP_NSTATES ideal-int +pkg syscall (openbsd-amd64), const TCP_SACK_ENABLE ideal-int +pkg syscall (openbsd-amd64), const TCSAFLUSH ideal-int +pkg syscall (openbsd-amd64), const TIOCCBRK ideal-int +pkg syscall (openbsd-amd64), const TIOCCDTR ideal-int +pkg syscall (openbsd-amd64), const TIOCCONS ideal-int +pkg syscall (openbsd-amd64), const TIOCDRAIN ideal-int +pkg syscall (openbsd-amd64), const TIOCEXCL ideal-int +pkg syscall (openbsd-amd64), const TIOCEXT ideal-int +pkg syscall (openbsd-amd64), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (openbsd-amd64), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (openbsd-amd64), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (openbsd-amd64), const TIOCFLAG_PPS ideal-int +pkg syscall (openbsd-amd64), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (openbsd-amd64), const TIOCFLUSH ideal-int +pkg syscall (openbsd-amd64), const TIOCGETA ideal-int +pkg syscall (openbsd-amd64), const TIOCGETD ideal-int +pkg syscall (openbsd-amd64), const TIOCGFLAGS ideal-int +pkg syscall (openbsd-amd64), const TIOCGPGRP ideal-int +pkg syscall (openbsd-amd64), const TIOCGTSTAMP ideal-int +pkg syscall (openbsd-amd64), const TIOCGWINSZ ideal-int +pkg syscall (openbsd-amd64), const TIOCMBIC ideal-int +pkg syscall (openbsd-amd64), const TIOCMBIS ideal-int +pkg syscall (openbsd-amd64), const TIOCMGET ideal-int +pkg syscall (openbsd-amd64), const TIOCMODG ideal-int +pkg syscall (openbsd-amd64), const TIOCMODS ideal-int +pkg syscall (openbsd-amd64), const TIOCMSET ideal-int +pkg syscall (openbsd-amd64), const TIOCM_CAR ideal-int +pkg syscall (openbsd-amd64), const TIOCM_CD ideal-int +pkg syscall (openbsd-amd64), const TIOCM_CTS ideal-int +pkg syscall (openbsd-amd64), const TIOCM_DSR ideal-int +pkg syscall (openbsd-amd64), const TIOCM_DTR ideal-int +pkg syscall (openbsd-amd64), const TIOCM_LE ideal-int +pkg syscall (openbsd-amd64), const TIOCM_RI ideal-int +pkg syscall (openbsd-amd64), const TIOCM_RNG ideal-int +pkg syscall (openbsd-amd64), const TIOCM_RTS ideal-int +pkg syscall (openbsd-amd64), const TIOCM_SR ideal-int +pkg syscall (openbsd-amd64), const TIOCM_ST ideal-int +pkg syscall (openbsd-amd64), const TIOCNOTTY ideal-int +pkg syscall (openbsd-amd64), const TIOCNXCL ideal-int +pkg syscall (openbsd-amd64), const TIOCOUTQ ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_DATA ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_IOCTL ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_START ideal-int +pkg syscall (openbsd-amd64), const TIOCPKT_STOP ideal-int +pkg syscall (openbsd-amd64), const TIOCREMOTE ideal-int +pkg syscall (openbsd-amd64), const TIOCSBRK ideal-int +pkg syscall (openbsd-amd64), const TIOCSCTTY ideal-int +pkg syscall (openbsd-amd64), const TIOCSDTR ideal-int +pkg syscall (openbsd-amd64), const TIOCSETA ideal-int +pkg syscall (openbsd-amd64), const TIOCSETAF ideal-int +pkg syscall (openbsd-amd64), const TIOCSETAW ideal-int +pkg syscall (openbsd-amd64), const TIOCSETD ideal-int +pkg syscall (openbsd-amd64), const TIOCSFLAGS ideal-int +pkg syscall (openbsd-amd64), const TIOCSIG ideal-int +pkg syscall (openbsd-amd64), const TIOCSPGRP ideal-int +pkg syscall (openbsd-amd64), const TIOCSTART ideal-int +pkg syscall (openbsd-amd64), const TIOCSTAT ideal-int +pkg syscall (openbsd-amd64), const TIOCSTI ideal-int +pkg syscall (openbsd-amd64), const TIOCSTOP ideal-int +pkg syscall (openbsd-amd64), const TIOCSTSTAMP ideal-int +pkg syscall (openbsd-amd64), const TIOCSWINSZ ideal-int +pkg syscall (openbsd-amd64), const TIOCUCNTL ideal-int +pkg syscall (openbsd-amd64), const TOSTOP ideal-int +pkg syscall (openbsd-amd64), const VDISCARD ideal-int +pkg syscall (openbsd-amd64), const VDSUSP ideal-int +pkg syscall (openbsd-amd64), const VEOF ideal-int +pkg syscall (openbsd-amd64), const VEOL ideal-int +pkg syscall (openbsd-amd64), const VEOL2 ideal-int +pkg syscall (openbsd-amd64), const VERASE ideal-int +pkg syscall (openbsd-amd64), const VINTR ideal-int +pkg syscall (openbsd-amd64), const VKILL ideal-int +pkg syscall (openbsd-amd64), const VLNEXT ideal-int +pkg syscall (openbsd-amd64), const VMIN ideal-int +pkg syscall (openbsd-amd64), const VQUIT ideal-int +pkg syscall (openbsd-amd64), const VREPRINT ideal-int +pkg syscall (openbsd-amd64), const VSTART ideal-int +pkg syscall (openbsd-amd64), const VSTATUS ideal-int +pkg syscall (openbsd-amd64), const VSTOP ideal-int +pkg syscall (openbsd-amd64), const VSUSP ideal-int +pkg syscall (openbsd-amd64), const VTIME ideal-int +pkg syscall (openbsd-amd64), const VWERASE ideal-int +pkg syscall (openbsd-amd64), const WALTSIG ideal-int +pkg syscall (openbsd-amd64), const WCONTINUED ideal-int +pkg syscall (openbsd-amd64), const WCOREFLAG ideal-int +pkg syscall (openbsd-amd64), const WNOHANG ideal-int +pkg syscall (openbsd-amd64), const WSTOPPED ideal-int +pkg syscall (openbsd-amd64), const WUNTRACED ideal-int +pkg syscall (openbsd-amd64), func Accept(int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64), func Access(string, uint32) error +pkg syscall (openbsd-amd64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (openbsd-amd64), func Bind(int, Sockaddr) error +pkg syscall (openbsd-amd64), func BpfBuflen(int) (int, error) +pkg syscall (openbsd-amd64), func BpfDatalink(int) (int, error) +pkg syscall (openbsd-amd64), func BpfHeadercmpl(int) (int, error) +pkg syscall (openbsd-amd64), func BpfInterface(int, string) (string, error) +pkg syscall (openbsd-amd64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (openbsd-amd64), func BpfStats(int) (*BpfStat, error) +pkg syscall (openbsd-amd64), func BpfStmt(int, int) *BpfInsn +pkg syscall (openbsd-amd64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (openbsd-amd64), func CheckBpfVersion(int) error +pkg syscall (openbsd-amd64), func Chflags(string, int) error +pkg syscall (openbsd-amd64), func Chroot(string) error +pkg syscall (openbsd-amd64), func Close(int) error +pkg syscall (openbsd-amd64), func CloseOnExec(int) +pkg syscall (openbsd-amd64), func CmsgLen(int) int +pkg syscall (openbsd-amd64), func CmsgSpace(int) int +pkg syscall (openbsd-amd64), func Connect(int, Sockaddr) error +pkg syscall (openbsd-amd64), func Dup(int) (int, error) +pkg syscall (openbsd-amd64), func Dup2(int, int) error +pkg syscall (openbsd-amd64), func Fchdir(int) error +pkg syscall (openbsd-amd64), func Fchflags(int, int) error +pkg syscall (openbsd-amd64), func Fchmod(int, uint32) error +pkg syscall (openbsd-amd64), func Fchown(int, int, int) error +pkg syscall (openbsd-amd64), func Flock(int, int) error +pkg syscall (openbsd-amd64), func FlushBpf(int) error +pkg syscall (openbsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (openbsd-amd64), func Fpathconf(int, int) (int, error) +pkg syscall (openbsd-amd64), func Fstat(int, *Stat_t) error +pkg syscall (openbsd-amd64), func Fstatfs(int, *Statfs_t) error +pkg syscall (openbsd-amd64), func Fsync(int) error +pkg syscall (openbsd-amd64), func Ftruncate(int, int64) error +pkg syscall (openbsd-amd64), func Futimes(int, []Timeval) error +pkg syscall (openbsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (openbsd-amd64), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (openbsd-amd64), func Getpeername(int) (Sockaddr, error) +pkg syscall (openbsd-amd64), func Getpgid(int) (int, error) +pkg syscall (openbsd-amd64), func Getpgrp() int +pkg syscall (openbsd-amd64), func Getpriority(int, int) (int, error) +pkg syscall (openbsd-amd64), func Getrlimit(int, *Rlimit) error +pkg syscall (openbsd-amd64), func Getrusage(int, *Rusage) error +pkg syscall (openbsd-amd64), func Getsid(int) (int, error) +pkg syscall (openbsd-amd64), func Getsockname(int) (Sockaddr, error) +pkg syscall (openbsd-amd64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (openbsd-amd64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (openbsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (openbsd-amd64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (openbsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (openbsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (openbsd-amd64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (openbsd-amd64), func Issetugid() bool +pkg syscall (openbsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (openbsd-amd64), func Kill(int, Signal) error +pkg syscall (openbsd-amd64), func Kqueue() (int, error) +pkg syscall (openbsd-amd64), func Listen(int, int) error +pkg syscall (openbsd-amd64), func Lstat(string, *Stat_t) error +pkg syscall (openbsd-amd64), func Mkfifo(string, uint32) error +pkg syscall (openbsd-amd64), func Mknod(string, uint32, int) error +pkg syscall (openbsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (openbsd-amd64), func Munmap([]uint8) error +pkg syscall (openbsd-amd64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (openbsd-amd64), func Open(string, int, uint32) (int, error) +pkg syscall (openbsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (openbsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (openbsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (openbsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (openbsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (openbsd-amd64), func Pathconf(string, int) (int, error) +pkg syscall (openbsd-amd64), func Pipe([]int) error +pkg syscall (openbsd-amd64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (openbsd-amd64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (openbsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64), func Read(int, []uint8) (int, error) +pkg syscall (openbsd-amd64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (openbsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (openbsd-amd64), func Revoke(string) error +pkg syscall (openbsd-amd64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (openbsd-amd64), func Seek(int, int64, int) (int64, error) +pkg syscall (openbsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (openbsd-amd64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (openbsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (openbsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (openbsd-amd64), func SetBpf(int, []BpfInsn) error +pkg syscall (openbsd-amd64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (openbsd-amd64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (openbsd-amd64), func SetBpfHeadercmpl(int, int) error +pkg syscall (openbsd-amd64), func SetBpfImmediate(int, int) error +pkg syscall (openbsd-amd64), func SetBpfInterface(int, string) error +pkg syscall (openbsd-amd64), func SetBpfPromisc(int, int) error +pkg syscall (openbsd-amd64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (openbsd-amd64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (openbsd-amd64), func SetNonblock(int, bool) error +pkg syscall (openbsd-amd64), func Setegid(int) error +pkg syscall (openbsd-amd64), func Seteuid(int) error +pkg syscall (openbsd-amd64), func Setgid(int) error +pkg syscall (openbsd-amd64), func Setgroups([]int) error +pkg syscall (openbsd-amd64), func Setlogin(string) error +pkg syscall (openbsd-amd64), func Setpgid(int, int) error +pkg syscall (openbsd-amd64), func Setpriority(int, int, int) error +pkg syscall (openbsd-amd64), func Setregid(int, int) error +pkg syscall (openbsd-amd64), func Setreuid(int, int) error +pkg syscall (openbsd-amd64), func Setrlimit(int, *Rlimit) error +pkg syscall (openbsd-amd64), func Setsid() (int, error) +pkg syscall (openbsd-amd64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (openbsd-amd64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (openbsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (openbsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (openbsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (openbsd-amd64), func SetsockoptInt(int, int, int, int) error +pkg syscall (openbsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (openbsd-amd64), func SetsockoptString(int, int, int, string) error +pkg syscall (openbsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (openbsd-amd64), func Settimeofday(*Timeval) error +pkg syscall (openbsd-amd64), func Setuid(int) error +pkg syscall (openbsd-amd64), func Shutdown(int, int) error +pkg syscall (openbsd-amd64), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (openbsd-amd64), func Socket(int, int, int) (int, error) +pkg syscall (openbsd-amd64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (openbsd-amd64), func Stat(string, *Stat_t) error +pkg syscall (openbsd-amd64), func Statfs(string, *Statfs_t) error +pkg syscall (openbsd-amd64), func StringSlicePtr([]string) []*uint8 +pkg syscall (openbsd-amd64), func Sync() error +pkg syscall (openbsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64), func Sysctl(string) (string, error) +pkg syscall (openbsd-amd64), func SysctlUint32(string) (uint32, error) +pkg syscall (openbsd-amd64), func TimevalToNsec(Timeval) int64 +pkg syscall (openbsd-amd64), func Truncate(string, int64) error +pkg syscall (openbsd-amd64), func Umask(int) int +pkg syscall (openbsd-amd64), func UnixRights(...int) []uint8 +pkg syscall (openbsd-amd64), func Unmount(string, int) error +pkg syscall (openbsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (openbsd-amd64), func Write(int, []uint8) (int, error) +pkg syscall (openbsd-amd64), method (*Cmsghdr) SetLen(int) +pkg syscall (openbsd-amd64), method (*Iovec) SetLen(int) +pkg syscall (openbsd-amd64), method (*Msghdr) SetControllen(int) +pkg syscall (openbsd-amd64), type BpfHdr struct +pkg syscall (openbsd-amd64), type BpfHdr struct, Caplen uint32 +pkg syscall (openbsd-amd64), type BpfHdr struct, Datalen uint32 +pkg syscall (openbsd-amd64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-amd64), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (openbsd-amd64), type BpfInsn struct +pkg syscall (openbsd-amd64), type BpfInsn struct, Code uint16 +pkg syscall (openbsd-amd64), type BpfInsn struct, Jf uint8 +pkg syscall (openbsd-amd64), type BpfInsn struct, Jt uint8 +pkg syscall (openbsd-amd64), type BpfInsn struct, K uint32 +pkg syscall (openbsd-amd64), type BpfProgram struct +pkg syscall (openbsd-amd64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (openbsd-amd64), type BpfProgram struct, Len uint32 +pkg syscall (openbsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type BpfStat struct +pkg syscall (openbsd-amd64), type BpfStat struct, Drop uint32 +pkg syscall (openbsd-amd64), type BpfStat struct, Recv uint32 +pkg syscall (openbsd-amd64), type BpfTimeval struct +pkg syscall (openbsd-amd64), type BpfTimeval struct, Sec uint32 +pkg syscall (openbsd-amd64), type BpfTimeval struct, Usec uint32 +pkg syscall (openbsd-amd64), type BpfVersion struct +pkg syscall (openbsd-amd64), type BpfVersion struct, Major uint16 +pkg syscall (openbsd-amd64), type BpfVersion struct, Minor uint16 +pkg syscall (openbsd-amd64), type Cmsghdr struct +pkg syscall (openbsd-amd64), type Cmsghdr struct, Len uint32 +pkg syscall (openbsd-amd64), type Cmsghdr struct, Level int32 +pkg syscall (openbsd-amd64), type Cmsghdr struct, Type int32 +pkg syscall (openbsd-amd64), type Credential struct +pkg syscall (openbsd-amd64), type Credential struct, Gid uint32 +pkg syscall (openbsd-amd64), type Credential struct, Groups []uint32 +pkg syscall (openbsd-amd64), type Credential struct, Uid uint32 +pkg syscall (openbsd-amd64), type Dirent struct +pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-amd64), type Dirent struct, Name [256]int8 +pkg syscall (openbsd-amd64), type Dirent struct, Namlen uint8 +pkg syscall (openbsd-amd64), type Dirent struct, Reclen uint16 +pkg syscall (openbsd-amd64), type Dirent struct, Type uint8 +pkg syscall (openbsd-amd64), type FdSet struct +pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-amd64), type Flock_t struct +pkg syscall (openbsd-amd64), type Flock_t struct, Len int64 +pkg syscall (openbsd-amd64), type Flock_t struct, Pid int32 +pkg syscall (openbsd-amd64), type Flock_t struct, Start int64 +pkg syscall (openbsd-amd64), type Flock_t struct, Type int16 +pkg syscall (openbsd-amd64), type Flock_t struct, Whence int16 +pkg syscall (openbsd-amd64), type Fsid struct +pkg syscall (openbsd-amd64), type Fsid struct, Val [2]int32 +pkg syscall (openbsd-amd64), type ICMPv6Filter struct +pkg syscall (openbsd-amd64), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (openbsd-amd64), type IPv6MTUInfo struct +pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (openbsd-amd64), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (openbsd-amd64), type IfData struct +pkg syscall (openbsd-amd64), type IfData struct, Addrlen uint8 +pkg syscall (openbsd-amd64), type IfData struct, Baudrate uint64 +pkg syscall (openbsd-amd64), type IfData struct, Capabilities uint32 +pkg syscall (openbsd-amd64), type IfData struct, Collisions uint64 +pkg syscall (openbsd-amd64), type IfData struct, Hdrlen uint8 +pkg syscall (openbsd-amd64), type IfData struct, Ibytes uint64 +pkg syscall (openbsd-amd64), type IfData struct, Ierrors uint64 +pkg syscall (openbsd-amd64), type IfData struct, Imcasts uint64 +pkg syscall (openbsd-amd64), type IfData struct, Ipackets uint64 +pkg syscall (openbsd-amd64), type IfData struct, Iqdrops uint64 +pkg syscall (openbsd-amd64), type IfData struct, Lastchange Timeval +pkg syscall (openbsd-amd64), type IfData struct, Link_state uint8 +pkg syscall (openbsd-amd64), type IfData struct, Mclpool [7]Mclpool +pkg syscall (openbsd-amd64), type IfData struct, Metric uint32 +pkg syscall (openbsd-amd64), type IfData struct, Mtu uint32 +pkg syscall (openbsd-amd64), type IfData struct, Noproto uint64 +pkg syscall (openbsd-amd64), type IfData struct, Obytes uint64 +pkg syscall (openbsd-amd64), type IfData struct, Oerrors uint64 +pkg syscall (openbsd-amd64), type IfData struct, Omcasts uint64 +pkg syscall (openbsd-amd64), type IfData struct, Opackets uint64 +pkg syscall (openbsd-amd64), type IfData struct, Pad uint32 +pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type IfData struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64), type IfData struct, Type uint8 +pkg syscall (openbsd-amd64), type IfMsghdr struct +pkg syscall (openbsd-amd64), type IfMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Data IfData +pkg syscall (openbsd-amd64), type IfMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64), type IfMsghdr struct, Xflags int32 +pkg syscall (openbsd-amd64), type IfaMsghdr struct +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Metric int32 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64), type IfaMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64), type Inet6Pktinfo struct +pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (openbsd-amd64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct +pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (openbsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct +pkg syscall (openbsd-amd64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (openbsd-amd64), type InterfaceMessage struct +pkg syscall (openbsd-amd64), type InterfaceMessage struct, Data []uint8 +pkg syscall (openbsd-amd64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (openbsd-amd64), type Iovec struct +pkg syscall (openbsd-amd64), type Iovec struct, Base *uint8 +pkg syscall (openbsd-amd64), type Iovec struct, Len uint64 +pkg syscall (openbsd-amd64), type Kevent_t struct +pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Fflags uint32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Filter int16 +pkg syscall (openbsd-amd64), type Kevent_t struct, Flags uint16 +pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Udata *uint8 +pkg syscall (openbsd-amd64), type Mclpool struct +pkg syscall (openbsd-amd64), type Mclpool struct, Alive uint16 +pkg syscall (openbsd-amd64), type Mclpool struct, Cwm uint16 +pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-amd64), type Mclpool struct, Hwm uint16 +pkg syscall (openbsd-amd64), type Mclpool struct, Lwm uint16 +pkg syscall (openbsd-amd64), type Msghdr struct +pkg syscall (openbsd-amd64), type Msghdr struct, Control *uint8 +pkg syscall (openbsd-amd64), type Msghdr struct, Controllen uint32 +pkg syscall (openbsd-amd64), type Msghdr struct, Flags int32 +pkg syscall (openbsd-amd64), type Msghdr struct, Iov *Iovec +pkg syscall (openbsd-amd64), type Msghdr struct, Iovlen uint32 +pkg syscall (openbsd-amd64), type Msghdr struct, Name *uint8 +pkg syscall (openbsd-amd64), type Msghdr struct, Namelen uint32 +pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (openbsd-amd64), type RawSockaddr struct, Family uint8 +pkg syscall (openbsd-amd64), type RawSockaddr struct, Len uint8 +pkg syscall (openbsd-amd64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-amd64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (openbsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (openbsd-amd64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (openbsd-amd64), type RawSockaddrUnix struct +pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (openbsd-amd64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (openbsd-amd64), type Rlimit struct +pkg syscall (openbsd-amd64), type Rlimit struct, Cur uint64 +pkg syscall (openbsd-amd64), type Rlimit struct, Max uint64 +pkg syscall (openbsd-amd64), type RouteMessage struct +pkg syscall (openbsd-amd64), type RouteMessage struct, Data []uint8 +pkg syscall (openbsd-amd64), type RouteMessage struct, Header RtMsghdr +pkg syscall (openbsd-amd64), type RoutingMessage interface, unexported methods +pkg syscall (openbsd-amd64), type RtMetrics struct +pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Hopcount uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Locks uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Mtu uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Pksent uint64 +pkg syscall (openbsd-amd64), type RtMetrics struct, Recvpipe uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Refcnt uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Rtt uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Rttvar uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Sendpipe uint32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Ssthresh uint32 +pkg syscall (openbsd-amd64), type RtMsghdr struct +pkg syscall (openbsd-amd64), type RtMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Errno int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Fmask int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Inits uint32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Mpls uint8 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Pid int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Priority uint8 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (openbsd-amd64), type RtMsghdr struct, Seq int32 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64), type RtMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64), type Rusage struct, Idrss int64 +pkg syscall (openbsd-amd64), type Rusage struct, Inblock int64 +pkg syscall (openbsd-amd64), type Rusage struct, Isrss int64 +pkg syscall (openbsd-amd64), type Rusage struct, Ixrss int64 +pkg syscall (openbsd-amd64), type Rusage struct, Majflt int64 +pkg syscall (openbsd-amd64), type Rusage struct, Maxrss int64 +pkg syscall (openbsd-amd64), type Rusage struct, Minflt int64 +pkg syscall (openbsd-amd64), type Rusage struct, Msgrcv int64 +pkg syscall (openbsd-amd64), type Rusage struct, Msgsnd int64 +pkg syscall (openbsd-amd64), type Rusage struct, Nivcsw int64 +pkg syscall (openbsd-amd64), type Rusage struct, Nsignals int64 +pkg syscall (openbsd-amd64), type Rusage struct, Nswap int64 +pkg syscall (openbsd-amd64), type Rusage struct, Nvcsw int64 +pkg syscall (openbsd-amd64), type Rusage struct, Oublock int64 +pkg syscall (openbsd-amd64), type Rusage struct, Stime Timeval +pkg syscall (openbsd-amd64), type Rusage struct, Utime Timeval +pkg syscall (openbsd-amd64), type SockaddrDatalink struct +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-amd64), type SockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-amd64), type SocketControlMessage struct +pkg syscall (openbsd-amd64), type SocketControlMessage struct, Data []uint8 +pkg syscall (openbsd-amd64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (openbsd-amd64), type Stat_t struct +pkg syscall (openbsd-amd64), type Stat_t struct, Atim Timespec +pkg syscall (openbsd-amd64), type Stat_t struct, Blksize uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Blocks int64 +pkg syscall (openbsd-amd64), type Stat_t struct, Ctim Timespec +pkg syscall (openbsd-amd64), type Stat_t struct, Dev int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Flags uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Gen uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Gid uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Mode uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Mtim Timespec +pkg syscall (openbsd-amd64), type Stat_t struct, Nlink uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-amd64), type Stat_t struct, Rdev int32 +pkg syscall (openbsd-amd64), type Stat_t struct, Size int64 +pkg syscall (openbsd-amd64), type Stat_t struct, Uid uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, X__st_birthtim Timespec +pkg syscall (openbsd-amd64), type Statfs_t struct +pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncreads uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_asyncwrites uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_bavail int64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_bfree uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_blocks uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_bsize uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_favail int64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_ffree uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_files uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_flags uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_fsid Fsid +pkg syscall (openbsd-amd64), type Statfs_t struct, F_fstypename [16]int8 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_iosize uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntfromname [90]int8 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntonname [90]int8 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_namemax uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_owner uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncreads uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_syncwrites uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, Mount_info [160]uint8 +pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64), type SysProcAttr struct, Chroot string +pkg syscall (openbsd-amd64), type SysProcAttr struct, Credential *Credential +pkg syscall (openbsd-amd64), type SysProcAttr struct, Noctty bool +pkg syscall (openbsd-amd64), type SysProcAttr struct, Ptrace bool +pkg syscall (openbsd-amd64), type SysProcAttr struct, Setctty bool +pkg syscall (openbsd-amd64), type SysProcAttr struct, Setpgid bool +pkg syscall (openbsd-amd64), type SysProcAttr struct, Setsid bool +pkg syscall (openbsd-amd64), type Timespec struct, Nsec int64 +pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type Timespec struct, Sec int32 +pkg syscall (openbsd-amd64), type Timeval struct, Sec int64 +pkg syscall (openbsd-amd64), type Timeval struct, Usec int64 +pkg syscall (openbsd-amd64), type WaitStatus uint32 +pkg syscall (openbsd-amd64), var Stderr int +pkg syscall (openbsd-amd64), var Stdin int +pkg syscall (openbsd-amd64), var Stdout int +pkg syscall (openbsd-amd64-cgo), const AF_APPLETALK ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_CCITT ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_CHAOS ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_CNT ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_COIP ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_DATAKIT ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_DECnet ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_DLI ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_E164 ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_ECMA ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_ENCAP ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_HYLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_IMPLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_IPX ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_ISDN ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_ISO ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_KEY ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_LAT ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_LINK ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_LOCAL ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_NATM ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_NS ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_OSI ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_PUP ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_ROUTE ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_SIP ideal-int +pkg syscall (openbsd-amd64-cgo), const AF_SNA ideal-int +pkg syscall (openbsd-amd64-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const ARPHRD_FRELAY ideal-int +pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (openbsd-amd64-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (openbsd-amd64-cgo), const B0 ideal-int +pkg syscall (openbsd-amd64-cgo), const B110 ideal-int +pkg syscall (openbsd-amd64-cgo), const B115200 ideal-int +pkg syscall (openbsd-amd64-cgo), const B1200 ideal-int +pkg syscall (openbsd-amd64-cgo), const B134 ideal-int +pkg syscall (openbsd-amd64-cgo), const B14400 ideal-int +pkg syscall (openbsd-amd64-cgo), const B150 ideal-int +pkg syscall (openbsd-amd64-cgo), const B1800 ideal-int +pkg syscall (openbsd-amd64-cgo), const B19200 ideal-int +pkg syscall (openbsd-amd64-cgo), const B200 ideal-int +pkg syscall (openbsd-amd64-cgo), const B230400 ideal-int +pkg syscall (openbsd-amd64-cgo), const B2400 ideal-int +pkg syscall (openbsd-amd64-cgo), const B28800 ideal-int +pkg syscall (openbsd-amd64-cgo), const B300 ideal-int +pkg syscall (openbsd-amd64-cgo), const B38400 ideal-int +pkg syscall (openbsd-amd64-cgo), const B4800 ideal-int +pkg syscall (openbsd-amd64-cgo), const B50 ideal-int +pkg syscall (openbsd-amd64-cgo), const B57600 ideal-int +pkg syscall (openbsd-amd64-cgo), const B600 ideal-int +pkg syscall (openbsd-amd64-cgo), const B7200 ideal-int +pkg syscall (openbsd-amd64-cgo), const B75 ideal-int +pkg syscall (openbsd-amd64-cgo), const B76800 ideal-int +pkg syscall (openbsd-amd64-cgo), const B9600 ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGBLEN ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGDIRFILT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGDLT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGETIF ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGFILDROP ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGRSIG ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCGSTATS ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCPROMISC ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSBLEN ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSDIRFILT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSDLT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSETF ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSETIF ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSETWF ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSFILDROP ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSRSIG ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (openbsd-amd64-cgo), const BIOCVERSION ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_A ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_ABS ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_ADD ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_ALU ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_AND ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_B ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_IN ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_DIRECTION_OUT ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_DIV ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_H ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_IMM ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_IND ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JA ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JEQ ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JGE ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JGT ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JMP ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_JSET ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_K ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_LD ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_LDX ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_LSH ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MEM ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MISC ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MSH ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_MUL ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_NEG ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_OR ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_RELEASE ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_RET ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_RSH ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_ST ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_STX ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_SUB ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_TAX ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_TXA ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_W ideal-int +pkg syscall (openbsd-amd64-cgo), const BPF_X ideal-int +pkg syscall (openbsd-amd64-cgo), const BRKINT ideal-int +pkg syscall (openbsd-amd64-cgo), const CCR0_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const CFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const CLOCAL ideal-int +pkg syscall (openbsd-amd64-cgo), const CPUID_CFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const CREAD ideal-int +pkg syscall (openbsd-amd64-cgo), const CS5 ideal-int +pkg syscall (openbsd-amd64-cgo), const CS6 ideal-int +pkg syscall (openbsd-amd64-cgo), const CS7 ideal-int +pkg syscall (openbsd-amd64-cgo), const CS8 ideal-int +pkg syscall (openbsd-amd64-cgo), const CSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const CSTART ideal-int +pkg syscall (openbsd-amd64-cgo), const CSTATUS ideal-int +pkg syscall (openbsd-amd64-cgo), const CSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const CSTOPB ideal-int +pkg syscall (openbsd-amd64-cgo), const CSUSP ideal-int +pkg syscall (openbsd-amd64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (openbsd-amd64-cgo), const CTL_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const DIOCOSFPFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_ARCNET ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_AX25 ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_CHAOS ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_EN10MB ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_EN3MB ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_ENC ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_FDDI ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_LOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_NULL ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PFLOG ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PPP ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_ETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_PRONET ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_RAW ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_SLIP ideal-int +pkg syscall (openbsd-amd64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_BLK ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_CHR ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_DIR ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_FIFO ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_LNK ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_REG ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_SOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const EAUTH Errno +pkg syscall (openbsd-amd64-cgo), const EBADRPC Errno +pkg syscall (openbsd-amd64-cgo), const ECHO ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHOCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHOE ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHOK ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHOKE ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHONL ideal-int +pkg syscall (openbsd-amd64-cgo), const ECHOPRT ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_LMA ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_LME ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_NXE ideal-int +pkg syscall (openbsd-amd64-cgo), const EFER_SCE ideal-int +pkg syscall (openbsd-amd64-cgo), const EFTYPE Errno +pkg syscall (openbsd-amd64-cgo), const EIPSEC Errno +pkg syscall (openbsd-amd64-cgo), const ELAST Errno +pkg syscall (openbsd-amd64-cgo), const EMEDIUMTYPE Errno +pkg syscall (openbsd-amd64-cgo), const EMT_TAGOVF ideal-int +pkg syscall (openbsd-amd64-cgo), const EMUL_ENABLED ideal-int +pkg syscall (openbsd-amd64-cgo), const EMUL_NATIVE ideal-int +pkg syscall (openbsd-amd64-cgo), const ENDRUNDISC ideal-int +pkg syscall (openbsd-amd64-cgo), const ENEEDAUTH Errno +pkg syscall (openbsd-amd64-cgo), const ENOATTR Errno +pkg syscall (openbsd-amd64-cgo), const ENOMEDIUM Errno +pkg syscall (openbsd-amd64-cgo), const EPROCLIM Errno +pkg syscall (openbsd-amd64-cgo), const EPROCUNAVAIL Errno +pkg syscall (openbsd-amd64-cgo), const EPROGMISMATCH Errno +pkg syscall (openbsd-amd64-cgo), const EPROGUNAVAIL Errno +pkg syscall (openbsd-amd64-cgo), const ERPCMISMATCH Errno +pkg syscall (openbsd-amd64-cgo), const ETHERMIN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_8023 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AARP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ACCTON ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AEONIC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ALPHA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMBER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AMOEBA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AOE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLO ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APOLLODOMAIN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLETALK ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_APPLITEK ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARGONAUT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ARP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATALK ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATOMIC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ATTSTANFORD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AUTOPHON ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_AXIS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BCLOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_BOFL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CABLETRON ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CHAOS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMDESIGN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COMPUGRAPHIC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_CRONUSVLN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DCA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DDE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DEBNI ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECAM ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECCUST ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDIAG ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDNS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECDTS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECEXPER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLAST ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECLTM ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECMUMPS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DECNETBIOS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DELTACON ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DIDDLE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG1 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DLOG2 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DOGFIGHT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_DSMD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ECMA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ENCRYPT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_ES ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXCELAN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_EXPERDATA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLIP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FLOWCONTROL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_FRARP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_GENDYN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HAYES ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HIPPI_FP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HITACHI ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_HP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IEEEPUPAT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IMLBLDIAG ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPAS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPV6 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPX ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_IPXNEW ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_KALPANA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANBRIDGE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LANPROBE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LAT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LBACK ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LITTLE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LLDP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOGICRAFT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_LOOPBACK ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MATRA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MERIT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MICP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPDL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOPRC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MOTOROLA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_MUMPS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLAIM ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLREQ ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCLRSP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCREQ ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPCRSP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDG ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDGB ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPDLTE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAR ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRAS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPRST ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPSCD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBPVCD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NBS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NCD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NESTAR ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NETBEUI ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NOVELL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSAT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NSCOMPAT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_NTRAILER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_OS9NET ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PACER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PAE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PCS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PLANNING ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PPPOEDISC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PRIMENTS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_PUPAT ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_QINQ ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RACAL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RATIONAL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RAWFR ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RCL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RDP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_RETIX ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_REVARP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SCA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECTRA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SECUREDATA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SGITW ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_BOUNCE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_DIAG ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_NETGAMES ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SG_RESV ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SIMNET ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SLOW ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNA ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SNMP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SONIX ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPIDER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_SPRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_STP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARIS ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TALARISMC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPCOMP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TCPSM ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TEC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TIGAN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRAIL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TRANSETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_TYMSHARE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBBST ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDEBUG ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDIAGLOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBDL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNIU ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_UBNMC ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VALID ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VARIAN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VAXELN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEECO ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VEXP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VGLAB ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINES ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESECHO ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VINESLOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VITAL ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VLTLMAN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VPROD ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_VURESERVED ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WATERLOO ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_WELLFLEET ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X25 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_X75 ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XNSSM ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHERTYPE_XTP ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_ADDR_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_ALIGN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_BE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_CRC_POLY_LE ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_HDR_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_DIX_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_MAX_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_MIN_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_TYPE_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const ETHER_VLAN_ENCAP_LEN ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_AIO ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_PROC ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_READ ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (openbsd-amd64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_ADD ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_CLEAR ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_DELETE ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_DISABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_ENABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_EOF ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_ERROR ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_FLAG1 ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_ONESHOT ideal-int +pkg syscall (openbsd-amd64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const EXTA ideal-int +pkg syscall (openbsd-amd64-cgo), const EXTB ideal-int +pkg syscall (openbsd-amd64-cgo), const EXTPROC ideal-int +pkg syscall (openbsd-amd64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const FD_SETSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const FLUSHO ideal-int +pkg syscall (openbsd-amd64-cgo), const F_DUPFD ideal-int +pkg syscall (openbsd-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const F_GETFD ideal-int +pkg syscall (openbsd-amd64-cgo), const F_GETFL ideal-int +pkg syscall (openbsd-amd64-cgo), const F_GETLK ideal-int +pkg syscall (openbsd-amd64-cgo), const F_GETOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const F_OK ideal-int +pkg syscall (openbsd-amd64-cgo), const F_RDLCK ideal-int +pkg syscall (openbsd-amd64-cgo), const F_SETFD ideal-int +pkg syscall (openbsd-amd64-cgo), const F_SETFL ideal-int +pkg syscall (openbsd-amd64-cgo), const F_SETLK ideal-int +pkg syscall (openbsd-amd64-cgo), const F_SETLKW ideal-int +pkg syscall (openbsd-amd64-cgo), const F_SETOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const F_UNLCK ideal-int +pkg syscall (openbsd-amd64-cgo), const F_WRLCK ideal-int +pkg syscall (openbsd-amd64-cgo), const HUPCL ideal-int +pkg syscall (openbsd-amd64-cgo), const ICANON ideal-int +pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER = 18 +pkg syscall (openbsd-amd64-cgo), const ICMP6_FILTER ideal-int +pkg syscall (openbsd-amd64-cgo), const ICRNL ideal-int +pkg syscall (openbsd-amd64-cgo), const IEXTEN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFAN_ARRIVAL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFAN_DEPARTURE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFA_ROUTE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_CANTCHANGE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_DEBUG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_LINK0 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_LINK1 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_LINK2 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_NOARP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_PROMISC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_RUNNING ideal-int +pkg syscall (openbsd-amd64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (openbsd-amd64-cgo), const IFNAMSIZ ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_1822 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_A12MPPSWITCH ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_AAL2 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_AAL5 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ADSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8023 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_AFLANE8025 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ARAP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ARCNET ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ASYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMDXI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMFUNI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMIMA ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMLOGICAL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMRADIO ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMVCIENDPT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ATMVIRTUAL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_BLUETOOTH ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_BSC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CARP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CCTEMUL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CEPT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CES ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_CNR ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_COFFEE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_COMPOSITELINK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DCN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DLSW ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DOCSCABLEUPSTREAMCHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DS0 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DS0BUNDLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DS1FDL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DS3 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DTM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DUMMY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DVBASILN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DVBASIOUT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ECONET ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ENC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_EON ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_EPLRS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ESCON ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FAITH ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FAST ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FASTETHERFX ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FDDI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FIBRECHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRDLCIENDPT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRELAY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_FRFORWARD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_G703AT2MB ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_G703AT64K ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_GIF ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_GIGABITETHERNET ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_GR303IDT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_GR303RDT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_H323GATEKEEPER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_H323PROXY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HDSL2 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HIPERLAN2 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HIPPI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HOSTPAD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HSSI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_HY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IBM370PARCHAN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80211 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE80212 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IFGSN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IMT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_INFINIBAND ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_INTERLEAVE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IPFORWARD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERATM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IPOVERCLAW ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_IPSWITCH ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISDN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISDNU ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025DTR ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88025FIBER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ISUP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_L3IPVLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_L3IPXVLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LAPB ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LAPD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LAPF ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LINEGROUP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_LOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MFSIGLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MODEM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MPC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MPLSTUNNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MSDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MVL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_MYRINET ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_NFAS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_NSIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_OTHER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_P10 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_P80 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PARA ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PFLOG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PFLOW ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PON155 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PON622 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_POS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PPP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPATM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPBWAP2MP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPCNLS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_PVC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_Q2931 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_QLLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_RADIOMAC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_RADSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_REACHDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_RFC1483 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_RS232 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_RSRB ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SHDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SIPSIG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SIPTG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SLIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SONET ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SONETVT ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SRP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_SS7SIGLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_STACKTOSTACK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_STARLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_T1 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TELINK ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TERMPAD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TR008 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TRANSPHDLC ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_TUNNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_ULTRA ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_USB ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_V11 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_V35 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_V36 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_V37 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VDSL ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VIRTUALTG ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEDID ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEEMFGD ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEENCAP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFGDEANA ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXO ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEFXS ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERATM ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERCABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_VOICEOVERIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X213 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X25 ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X25DDN ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X25HUNTGROUP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X25MLP ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_X25PLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IFT_XETHER ideal-int +pkg syscall (openbsd-amd64-cgo), const IGNBRK ideal-int +pkg syscall (openbsd-amd64-cgo), const IGNCR ideal-int +pkg syscall (openbsd-amd64-cgo), const IGNPAR ideal-int +pkg syscall (openbsd-amd64-cgo), const IMAXBEL ideal-int +pkg syscall (openbsd-amd64-cgo), const INLCR ideal-int +pkg syscall (openbsd-amd64-cgo), const INPCK ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NET ideal-int +pkg syscall (openbsd-amd64-cgo), const IN_RFC3021_NSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_AH ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_CARP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_EON ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MOBILE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PFSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_TP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_AUTH_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_DONTFRAG ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_FAITH ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_MMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_OPTIONS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PATHMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PIPEX ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPATHMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_AUTH_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_DF ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_ESP_NETWORK_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_ESP_TRANS_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_HDRINCL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPCOMP_LEVEL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSECFLOWINFO ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_AUTH ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_CRED ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_LOCAL_ID ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_AUTH ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_CRED ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_IPSEC_REMOTE_ID ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MF ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MINTTL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_MSS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_OFFMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_OPTIONS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_PIPEX ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVDSTPORT ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVIF ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVRTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RECVTTL ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RETOPTS ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RF ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_RTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const ISIG ideal-int +pkg syscall (openbsd-amd64-cgo), const ISTRIP ideal-int +pkg syscall (openbsd-amd64-cgo), const IXANY ideal-int +pkg syscall (openbsd-amd64-cgo), const IXOFF ideal-int +pkg syscall (openbsd-amd64-cgo), const IXON ideal-int +pkg syscall (openbsd-amd64-cgo), const LCNT_OVERLOAD_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const LOCK_EX ideal-int +pkg syscall (openbsd-amd64-cgo), const LOCK_NB ideal-int +pkg syscall (openbsd-amd64-cgo), const LOCK_SH ideal-int +pkg syscall (openbsd-amd64-cgo), const LOCK_UN ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_BCAST ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_EOR ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_MCAST ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_OOB ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_PEEK ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_TRUNC ideal-int +pkg syscall (openbsd-amd64-cgo), const MSG_WAITALL ideal-int +pkg syscall (openbsd-amd64-cgo), const NAME_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_STATS ideal-int +pkg syscall (openbsd-amd64-cgo), const NET_RT_TABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const NOFLSH ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_CHILD ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_DELETE ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_EOF ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_EXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_EXIT ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_FORK ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_LINK ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_RENAME ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_TRACK ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_TRUNCATE ideal-int +pkg syscall (openbsd-amd64-cgo), const NOTE_WRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const OCRNL ideal-int +pkg syscall (openbsd-amd64-cgo), const ONLCR ideal-int +pkg syscall (openbsd-amd64-cgo), const ONLRET ideal-int +pkg syscall (openbsd-amd64-cgo), const ONOCR ideal-int +pkg syscall (openbsd-amd64-cgo), const ONOEOT ideal-int +pkg syscall (openbsd-amd64-cgo), const OPOST ideal-int +pkg syscall (openbsd-amd64-cgo), const O_ACCMODE ideal-int +pkg syscall (openbsd-amd64-cgo), const O_DIRECTORY ideal-int +pkg syscall (openbsd-amd64-cgo), const O_DSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const O_EXLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const O_FSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const O_NDELAY ideal-int +pkg syscall (openbsd-amd64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (openbsd-amd64-cgo), const O_RSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const O_SHLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const PARENB ideal-int +pkg syscall (openbsd-amd64-cgo), const PARMRK ideal-int +pkg syscall (openbsd-amd64-cgo), const PARODD ideal-int +pkg syscall (openbsd-amd64-cgo), const PENDIN ideal-int +pkg syscall (openbsd-amd64-cgo), const PF_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const PMC5_PIPELINE_FLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP = 1 +pkg syscall (openbsd-amd64-cgo), const PRIO_PGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS = 0 +pkg syscall (openbsd-amd64-cgo), const PRIO_PROCESS ideal-int +pkg syscall (openbsd-amd64-cgo), const PRIO_USER = 2 +pkg syscall (openbsd-amd64-cgo), const PRIO_USER ideal-int +pkg syscall (openbsd-amd64-cgo), const PTRACE_CONT ideal-int +pkg syscall (openbsd-amd64-cgo), const PTRACE_KILL ideal-int +pkg syscall (openbsd-amd64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (openbsd-amd64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_BRD ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_DST ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_IFA ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_IFP ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_LABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_SRC ideal-int +pkg syscall (openbsd-amd64-cgo), const RTAX_SRCMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_BRD ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_DST ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_GENMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_IFA ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_IFP ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_LABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_NETMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_SRC ideal-int +pkg syscall (openbsd-amd64-cgo), const RTA_SRCMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_ANNOUNCE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_CLONED ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_CLONING ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_DONE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_FMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_HOST ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_LLINFO ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_MASK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_MPATH ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_MPLS ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_PERMANENT_ARP ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_PROTO3 ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_REJECT ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_SOURCE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_STATIC ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_TUNNEL ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_UP ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_USETRAILERS ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_ADD ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_CHANGE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_DELADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_DELETE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_DESYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_GET ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_IFANNOUNCE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_IFINFO ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_LOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_LOSING ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_MAXSIZE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_MISS ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (openbsd-amd64-cgo), const RTM_VERSION ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_MTU ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_RPIPE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_RTT ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_SPIPE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (openbsd-amd64-cgo), const RT_TABLEID_MAX ideal-int +pkg syscall (openbsd-amd64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (openbsd-amd64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (openbsd-amd64-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (openbsd-amd64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (openbsd-amd64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIGCHLD Signal +pkg syscall (openbsd-amd64-cgo), const SIGCONT Signal +pkg syscall (openbsd-amd64-cgo), const SIGEMT Signal +pkg syscall (openbsd-amd64-cgo), const SIGINFO Signal +pkg syscall (openbsd-amd64-cgo), const SIGIO Signal +pkg syscall (openbsd-amd64-cgo), const SIGIOT Signal +pkg syscall (openbsd-amd64-cgo), const SIGPROF Signal +pkg syscall (openbsd-amd64-cgo), const SIGSTOP Signal +pkg syscall (openbsd-amd64-cgo), const SIGSYS Signal +pkg syscall (openbsd-amd64-cgo), const SIGTHR Signal +pkg syscall (openbsd-amd64-cgo), const SIGTSTP Signal +pkg syscall (openbsd-amd64-cgo), const SIGTTIN Signal +pkg syscall (openbsd-amd64-cgo), const SIGTTOU Signal +pkg syscall (openbsd-amd64-cgo), const SIGURG Signal +pkg syscall (openbsd-amd64-cgo), const SIGUSR1 Signal +pkg syscall (openbsd-amd64-cgo), const SIGUSR2 Signal +pkg syscall (openbsd-amd64-cgo), const SIGVTALRM Signal +pkg syscall (openbsd-amd64-cgo), const SIGWINCH Signal +pkg syscall (openbsd-amd64-cgo), const SIGXCPU Signal +pkg syscall (openbsd-amd64-cgo), const SIGXFSZ Signal +pkg syscall (openbsd-amd64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCAIFGROUP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCATMARK ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADD ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGADDS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGARL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDEL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDELS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGFRL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGCACHE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGFD ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGHT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGIFFLGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGMA ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPARAM ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGPRI ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGRL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGSIFS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGGTO ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGIFS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGRTS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSCACHE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSFD ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSHT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFCOST ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFFLGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSIFPRIO ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSMA ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPRI ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSPROTO ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTO ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSTXHC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCDIFGROUP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETKALIVE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETLABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETPFLOW ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETPFSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFASYNCMAP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDATA ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDESCR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGATTR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGMEMB ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFGROUP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPRIORITY ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFRDOMAIN ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFRTLABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFTIMESLOT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFXFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYRTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGPGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGVH ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCIFGCLONERS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSETKALIVE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSETLABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSETPFLOW ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSETPFSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFASYNCMAP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFDESCR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFGATTR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFPRIORITY ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFRDOMAIN ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFRTLABEL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFTIMESLOT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSIFXFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYRTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSPGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSVH ideal-int +pkg syscall (openbsd-amd64-cgo), const SOCK_RDM ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_BINDANY ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_DEBUG ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_ERROR ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_NETPROC ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_PEERCRED ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_RTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_SPLICE ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_TYPE ideal-int +pkg syscall (openbsd-amd64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ACCESS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ACCT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ADJFREQ ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_BIND ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CHDIR ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CHMOD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CHOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CHROOT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOSE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOSEFROM ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CONNECT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_DUP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_DUP2 ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_EXECVE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_EXIT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FCNTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FHOPEN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FORK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETDTABLECOUNT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETEGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETEUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETFH ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPPID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETRESGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETRESUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETRTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETSID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETTHRID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_IOCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_KILL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_KTRACE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LINK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LINKAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LISTEN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LSEEK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MADVISE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MINCORE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKDIR ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKFIFOAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKNOD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MMAP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MOUNT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MQUERY ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MSGGET ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MSGSND ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MSYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_NFSSVC ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_OBREAK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_OPEN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_OPENAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PIPE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_POLL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PREAD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PREADV ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PROFIL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PTRACE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PWRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_READ ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_READLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_READV ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_REBOOT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_RENAME ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_REVOKE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_RMDIR ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SELECT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SEMGET ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SEMOP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SENDTO ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETEGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETEUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETPGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETREGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETRESGID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETRESUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETREUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETRTABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETSID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SETUID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SHMAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SHMDT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SHMGET ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGACTION ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SOCKET ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_STATFS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SWAPCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SYSARCH ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UNLINK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_VFORK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_WRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_WRITEV ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___GETCWD ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___GET_TCB ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___SEMCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___SET_TCB ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___TFORK ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___THREXIT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___THRSIGDIVERT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS___THRWAKEUP ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofBpfStat ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter = 32 +pkg syscall (openbsd-amd64-cgo), const SizeofICMPv6Filter ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIPMreq ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo = 32 +pkg syscall (openbsd-amd64-cgo), const SizeofIPv6MTUInfo ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIfAnnounceMsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIfData ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofLinger ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofMsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (openbsd-amd64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (openbsd-amd64-cgo), const TCIFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TCIOFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TCOFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MAXBURST ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_MSS ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_NSTATES ideal-int +pkg syscall (openbsd-amd64-cgo), const TCP_SACK_ENABLE ideal-int +pkg syscall (openbsd-amd64-cgo), const TCSAFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCCBRK ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCCDTR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCCONS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCDRAIN ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCEXCL ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCEXT ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CLOCAL ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_CRTSCTS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_MDMBUF ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_PPS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLAG_SOFTCAR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCFLUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGETA ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGETD ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGPGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGTSTAMP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMBIC ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMBIS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMGET ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMODG ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMODS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCMSET ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_CAR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_CD ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_CTS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_DSR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_DTR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_LE ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_RI ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_RNG ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_RTS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_SR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCM_ST ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCNOTTY ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCNXCL ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCOUTQ ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_START ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCREMOTE ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSBRK ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSCTTY ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSDTR ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSETA ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSETAF ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSETAW ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSETD ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSFLAGS ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSIG ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSPGRP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSTART ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSTAT ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSTI ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSTSTAMP ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCUCNTL ideal-int +pkg syscall (openbsd-amd64-cgo), const TOSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const VDISCARD ideal-int +pkg syscall (openbsd-amd64-cgo), const VDSUSP ideal-int +pkg syscall (openbsd-amd64-cgo), const VEOF ideal-int +pkg syscall (openbsd-amd64-cgo), const VEOL ideal-int +pkg syscall (openbsd-amd64-cgo), const VEOL2 ideal-int +pkg syscall (openbsd-amd64-cgo), const VERASE ideal-int +pkg syscall (openbsd-amd64-cgo), const VINTR ideal-int +pkg syscall (openbsd-amd64-cgo), const VKILL ideal-int +pkg syscall (openbsd-amd64-cgo), const VLNEXT ideal-int +pkg syscall (openbsd-amd64-cgo), const VMIN ideal-int +pkg syscall (openbsd-amd64-cgo), const VQUIT ideal-int +pkg syscall (openbsd-amd64-cgo), const VREPRINT ideal-int +pkg syscall (openbsd-amd64-cgo), const VSTART ideal-int +pkg syscall (openbsd-amd64-cgo), const VSTATUS ideal-int +pkg syscall (openbsd-amd64-cgo), const VSTOP ideal-int +pkg syscall (openbsd-amd64-cgo), const VSUSP ideal-int +pkg syscall (openbsd-amd64-cgo), const VTIME ideal-int +pkg syscall (openbsd-amd64-cgo), const VWERASE ideal-int +pkg syscall (openbsd-amd64-cgo), const WALTSIG ideal-int +pkg syscall (openbsd-amd64-cgo), const WCONTINUED ideal-int +pkg syscall (openbsd-amd64-cgo), const WCOREFLAG ideal-int +pkg syscall (openbsd-amd64-cgo), const WNOHANG ideal-int +pkg syscall (openbsd-amd64-cgo), const WSTOPPED ideal-int +pkg syscall (openbsd-amd64-cgo), const WUNTRACED ideal-int +pkg syscall (openbsd-amd64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func Access(string, uint32) error +pkg syscall (openbsd-amd64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (openbsd-amd64-cgo), func Bind(int, Sockaddr) error +pkg syscall (openbsd-amd64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (openbsd-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (openbsd-amd64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (openbsd-amd64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (openbsd-amd64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (openbsd-amd64-cgo), func CheckBpfVersion(int) error +pkg syscall (openbsd-amd64-cgo), func Chflags(string, int) error +pkg syscall (openbsd-amd64-cgo), func Chroot(string) error +pkg syscall (openbsd-amd64-cgo), func Close(int) error +pkg syscall (openbsd-amd64-cgo), func CloseOnExec(int) +pkg syscall (openbsd-amd64-cgo), func CmsgLen(int) int +pkg syscall (openbsd-amd64-cgo), func CmsgSpace(int) int +pkg syscall (openbsd-amd64-cgo), func Connect(int, Sockaddr) error +pkg syscall (openbsd-amd64-cgo), func Dup(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Dup2(int, int) error +pkg syscall (openbsd-amd64-cgo), func Fchdir(int) error +pkg syscall (openbsd-amd64-cgo), func Fchflags(int, int) error +pkg syscall (openbsd-amd64-cgo), func Fchmod(int, uint32) error +pkg syscall (openbsd-amd64-cgo), func Fchown(int, int, int) error +pkg syscall (openbsd-amd64-cgo), func Flock(int, int) error +pkg syscall (openbsd-amd64-cgo), func FlushBpf(int) error +pkg syscall (openbsd-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (openbsd-amd64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (openbsd-amd64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (openbsd-amd64-cgo), func Fsync(int) error +pkg syscall (openbsd-amd64-cgo), func Ftruncate(int, int64) error +pkg syscall (openbsd-amd64-cgo), func Futimes(int, []Timeval) error +pkg syscall (openbsd-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (openbsd-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func Getpgid(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Getpgrp() int +pkg syscall (openbsd-amd64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (openbsd-amd64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (openbsd-amd64-cgo), func Getsid(int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (openbsd-amd64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Issetugid() bool +pkg syscall (openbsd-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (openbsd-amd64-cgo), func Kill(int, Signal) error +pkg syscall (openbsd-amd64-cgo), func Kqueue() (int, error) +pkg syscall (openbsd-amd64-cgo), func Listen(int, int) error +pkg syscall (openbsd-amd64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (openbsd-amd64-cgo), func Mkfifo(string, uint32) error +pkg syscall (openbsd-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (openbsd-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (openbsd-amd64-cgo), func Munmap([]uint8) error +pkg syscall (openbsd-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (openbsd-amd64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (openbsd-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (openbsd-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (openbsd-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (openbsd-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (openbsd-amd64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Pipe([]int) error +pkg syscall (openbsd-amd64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (openbsd-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (openbsd-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (openbsd-amd64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (openbsd-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (openbsd-amd64-cgo), func Revoke(string) error +pkg syscall (openbsd-amd64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (openbsd-amd64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (openbsd-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (openbsd-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (openbsd-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (openbsd-amd64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (openbsd-amd64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (openbsd-amd64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (openbsd-amd64-cgo), func SetBpfInterface(int, string) error +pkg syscall (openbsd-amd64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (openbsd-amd64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (openbsd-amd64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (openbsd-amd64-cgo), func SetNonblock(int, bool) error +pkg syscall (openbsd-amd64-cgo), func Setegid(int) error +pkg syscall (openbsd-amd64-cgo), func Seteuid(int) error +pkg syscall (openbsd-amd64-cgo), func Setgid(int) error +pkg syscall (openbsd-amd64-cgo), func Setgroups([]int) error +pkg syscall (openbsd-amd64-cgo), func Setlogin(string) error +pkg syscall (openbsd-amd64-cgo), func Setpgid(int, int) error +pkg syscall (openbsd-amd64-cgo), func Setpriority(int, int, int) error +pkg syscall (openbsd-amd64-cgo), func Setregid(int, int) error +pkg syscall (openbsd-amd64-cgo), func Setreuid(int, int) error +pkg syscall (openbsd-amd64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (openbsd-amd64-cgo), func Setsid() (int, error) +pkg syscall (openbsd-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (openbsd-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (openbsd-amd64-cgo), func Settimeofday(*Timeval) error +pkg syscall (openbsd-amd64-cgo), func Setuid(int) error +pkg syscall (openbsd-amd64-cgo), func Shutdown(int, int) error +pkg syscall (openbsd-amd64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) +pkg syscall (openbsd-amd64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (openbsd-amd64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (openbsd-amd64-cgo), func Stat(string, *Stat_t) error +pkg syscall (openbsd-amd64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (openbsd-amd64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (openbsd-amd64-cgo), func Sync() error +pkg syscall (openbsd-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (openbsd-amd64-cgo), func Sysctl(string) (string, error) +pkg syscall (openbsd-amd64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (openbsd-amd64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (openbsd-amd64-cgo), func Truncate(string, int64) error +pkg syscall (openbsd-amd64-cgo), func Umask(int) int +pkg syscall (openbsd-amd64-cgo), func UnixRights(...int) []uint8 +pkg syscall (openbsd-amd64-cgo), func Unmount(string, int) error +pkg syscall (openbsd-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (openbsd-amd64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (openbsd-amd64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (openbsd-amd64-cgo), method (*Iovec) SetLen(int) +pkg syscall (openbsd-amd64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-amd64-cgo), type BpfHdr struct, Tstamp BpfTimeval +pkg syscall (openbsd-amd64-cgo), type BpfInsn struct +pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (openbsd-amd64-cgo), type BpfInsn struct, K uint32 +pkg syscall (openbsd-amd64-cgo), type BpfProgram struct +pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (openbsd-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type BpfStat struct +pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Drop uint32 +pkg syscall (openbsd-amd64-cgo), type BpfStat struct, Recv uint32 +pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct +pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Sec uint32 +pkg syscall (openbsd-amd64-cgo), type BpfTimeval struct, Usec uint32 +pkg syscall (openbsd-amd64-cgo), type BpfVersion struct +pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (openbsd-amd64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct +pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (openbsd-amd64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (openbsd-amd64-cgo), type Credential struct +pkg syscall (openbsd-amd64-cgo), type Credential struct, Gid uint32 +pkg syscall (openbsd-amd64-cgo), type Credential struct, Groups []uint32 +pkg syscall (openbsd-amd64-cgo), type Credential struct, Uid uint32 +pkg syscall (openbsd-amd64-cgo), type Dirent struct +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint32 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Name [256]int8 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Namlen uint8 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type FdSet struct +pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (openbsd-amd64-cgo), type Flock_t struct +pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Len int64 +pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Pid int32 +pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Start int64 +pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Type int16 +pkg syscall (openbsd-amd64-cgo), type Flock_t struct, Whence int16 +pkg syscall (openbsd-amd64-cgo), type Fsid struct +pkg syscall (openbsd-amd64-cgo), type Fsid struct, Val [2]int32 +pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct +pkg syscall (openbsd-amd64-cgo), type ICMPv6Filter struct, Filt [8]uint32 +pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct +pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 +pkg syscall (openbsd-amd64-cgo), type IPv6MTUInfo struct, Mtu uint32 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64-cgo), type IfAnnounceMsghdr struct, What uint16 +pkg syscall (openbsd-amd64-cgo), type IfData struct +pkg syscall (openbsd-amd64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Baudrate uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Capabilities uint32 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Collisions uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Ibytes uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Ierrors uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Imcasts uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Ipackets uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Iqdrops uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Lastchange Timeval +pkg syscall (openbsd-amd64-cgo), type IfData struct, Link_state uint8 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Mclpool [7]Mclpool +pkg syscall (openbsd-amd64-cgo), type IfData struct, Metric uint32 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Mtu uint32 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Noproto uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Obytes uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Oerrors uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Omcasts uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Opackets uint64 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad uint32 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type IfData struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64-cgo), type IfMsghdr struct, Xflags int32 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad1 uint8 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Pad2 uint8 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct +pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (openbsd-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct +pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (openbsd-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct +pkg syscall (openbsd-amd64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr +pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct +pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (openbsd-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (openbsd-amd64-cgo), type Iovec struct +pkg syscall (openbsd-amd64-cgo), type Iovec struct, Base *uint8 +pkg syscall (openbsd-amd64-cgo), type Iovec struct, Len uint64 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Filter int16 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Alive uint16 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Cwm uint16 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown uint32 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Hwm uint16 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Lwm uint16 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Flags int32 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Iovlen uint32 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct +pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (openbsd-amd64-cgo), type Rlimit struct +pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (openbsd-amd64-cgo), type Rlimit struct, Max uint64 +pkg syscall (openbsd-amd64-cgo), type RouteMessage struct +pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (openbsd-amd64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (openbsd-amd64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Pksent uint64 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Refcnt uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Fmask int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Hdrlen uint16 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Mpls uint8 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Priority uint8 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Tableid uint16 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Idrss int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Inblock int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Isrss int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Majflt int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Minflt int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nswap int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Oublock int64 +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Stime Timeval +pkg syscall (openbsd-amd64-cgo), type Rusage struct, Utime Timeval +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Data [24]int8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (openbsd-amd64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct +pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (openbsd-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (openbsd-amd64-cgo), type Stat_t struct +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Atim Timespec +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blksize uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ctim Timespec +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Dev int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare0 int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Lspare1 int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mode uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Mtim Timespec +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Rdev int32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Size int64 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, X__st_birthtim Timespec +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncreads uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_asyncwrites uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bavail int64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bfree uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_blocks uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_bsize uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_favail int64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ffree uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_files uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_flags uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fsid Fsid +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_fstypename [16]int8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_iosize uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntfromname [90]int8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntonname [90]int8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_namemax uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_owner uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_spare [3]uint32 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncreads uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_syncwrites uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Mount_info [160]uint8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Nsec int64 +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int32 +pkg syscall (openbsd-amd64-cgo), type Timeval struct, Sec int64 +pkg syscall (openbsd-amd64-cgo), type Timeval struct, Usec int64 +pkg syscall (openbsd-amd64-cgo), type WaitStatus uint32 +pkg syscall (openbsd-amd64-cgo), var Stderr int +pkg syscall (openbsd-amd64-cgo), var Stdin int +pkg syscall (openbsd-amd64-cgo), var Stdout int +pkg syscall (windows-386), const BASE_PROTOCOL = 1 +pkg syscall (windows-386), const BASE_PROTOCOL ideal-int +pkg syscall (windows-386), const ERROR_HANDLE_EOF = 38 +pkg syscall (windows-386), const ERROR_HANDLE_EOF Errno +pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1 +pkg syscall (windows-386), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int +pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2 +pkg syscall (windows-386), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int +pkg syscall (windows-386), const LAYERED_PROTOCOL = 0 +pkg syscall (windows-386), const LAYERED_PROTOCOL ideal-int +pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN = 7 +pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN ideal-int +pkg syscall (windows-386), const NetSetupDomainName = 3 +pkg syscall (windows-386), const NetSetupDomainName ideal-int +pkg syscall (windows-386), const NetSetupUnjoined = 1 +pkg syscall (windows-386), const NetSetupUnjoined ideal-int +pkg syscall (windows-386), const NetSetupUnknownStatus = 0 +pkg syscall (windows-386), const NetSetupUnknownStatus ideal-int +pkg syscall (windows-386), const NetSetupWorkgroupName = 2 +pkg syscall (windows-386), const NetSetupWorkgroupName ideal-int +pkg syscall (windows-386), const PFL_HIDDEN = 4 +pkg syscall (windows-386), const PFL_HIDDEN ideal-int +pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO = 8 +pkg syscall (windows-386), const PFL_MATCHES_PROTOCOL_ZERO ideal-int +pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES = 1 +pkg syscall (windows-386), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int +pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER = 16 +pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER ideal-int +pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY = 2 +pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int +pkg syscall (windows-386), const PROCESS_TERMINATE = 1 +pkg syscall (windows-386), const PROCESS_TERMINATE ideal-int +pkg syscall (windows-386), const WSAEACCES = 10013 +pkg syscall (windows-386), const WSAEACCES Errno +pkg syscall (windows-386), const WSAPROTOCOL_LEN = 255 +pkg syscall (windows-386), const WSAPROTOCOL_LEN ideal-int +pkg syscall (windows-386), const XP1_CONNECTIONLESS = 1 +pkg syscall (windows-386), const XP1_CONNECTIONLESS ideal-int +pkg syscall (windows-386), const XP1_CONNECT_DATA = 128 +pkg syscall (windows-386), const XP1_CONNECT_DATA ideal-int +pkg syscall (windows-386), const XP1_DISCONNECT_DATA = 256 +pkg syscall (windows-386), const XP1_DISCONNECT_DATA ideal-int +pkg syscall (windows-386), const XP1_EXPEDITED_DATA = 64 +pkg syscall (windows-386), const XP1_EXPEDITED_DATA ideal-int +pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE = 32 +pkg syscall (windows-386), const XP1_GRACEFUL_CLOSE ideal-int +pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY = 2 +pkg syscall (windows-386), const XP1_GUARANTEED_DELIVERY ideal-int +pkg syscall (windows-386), const XP1_GUARANTEED_ORDER = 4 +pkg syscall (windows-386), const XP1_GUARANTEED_ORDER ideal-int +pkg syscall (windows-386), const XP1_IFS_HANDLES = 131072 +pkg syscall (windows-386), const XP1_IFS_HANDLES ideal-int +pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED = 8 +pkg syscall (windows-386), const XP1_MESSAGE_ORIENTED ideal-int +pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE = 2048 +pkg syscall (windows-386), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int +pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE = 4096 +pkg syscall (windows-386), const XP1_MULTIPOINT_DATA_PLANE ideal-int +pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE = 262144 +pkg syscall (windows-386), const XP1_PARTIAL_MESSAGE ideal-int +pkg syscall (windows-386), const XP1_PSEUDO_STREAM = 16 +pkg syscall (windows-386), const XP1_PSEUDO_STREAM ideal-int +pkg syscall (windows-386), const XP1_QOS_SUPPORTED = 8192 +pkg syscall (windows-386), const XP1_QOS_SUPPORTED ideal-int +pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP = 524288 +pkg syscall (windows-386), const XP1_SAN_SUPPORT_SDP ideal-int +pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST = 512 +pkg syscall (windows-386), const XP1_SUPPORT_BROADCAST ideal-int +pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT = 1024 +pkg syscall (windows-386), const XP1_SUPPORT_MULTIPOINT ideal-int +pkg syscall (windows-386), const XP1_UNI_RECV = 65536 +pkg syscall (windows-386), const XP1_UNI_RECV ideal-int +pkg syscall (windows-386), const XP1_UNI_SEND = 32768 +pkg syscall (windows-386), const XP1_UNI_SEND ideal-int +pkg syscall (windows-386), func LoadSetFileCompletionNotificationModes() error +pkg syscall (windows-386), func NetGetJoinInformation(*uint16, **uint16, *uint32) error +pkg syscall (windows-386), func SetFileCompletionNotificationModes(Handle, uint8) error +pkg syscall (windows-386), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error) +pkg syscall (windows-386), type IpMaskString struct, String [16]uint8 +pkg syscall (windows-386), type WSAProtocolChain struct +pkg syscall (windows-386), type WSAProtocolChain struct, ChainEntries [7]uint32 +pkg syscall (windows-386), type WSAProtocolChain struct, ChainLen int32 +pkg syscall (windows-386), type WSAProtocolInfo struct +pkg syscall (windows-386), type WSAProtocolInfo struct, AddressFamily int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, CatalogEntryId uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, MaxSockAddr int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, MessageSize uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, MinSockAddr int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, NetworkByteOrder int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, Protocol int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain +pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolMaxOffset int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ProtocolName [256]uint16 +pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderFlags uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderId GUID +pkg syscall (windows-386), type WSAProtocolInfo struct, ProviderReserved uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, SecurityScheme int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags1 uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags2 uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags3 uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, ServiceFlags4 uint32 +pkg syscall (windows-386), type WSAProtocolInfo struct, SocketType int32 +pkg syscall (windows-386), type WSAProtocolInfo struct, Version int32 +pkg syscall (windows-amd64), const BASE_PROTOCOL = 1 +pkg syscall (windows-amd64), const BASE_PROTOCOL ideal-int +pkg syscall (windows-amd64), const ERROR_HANDLE_EOF = 38 +pkg syscall (windows-amd64), const ERROR_HANDLE_EOF Errno +pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1 +pkg syscall (windows-amd64), const FILE_SKIP_COMPLETION_PORT_ON_SUCCESS ideal-int +pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE = 2 +pkg syscall (windows-amd64), const FILE_SKIP_SET_EVENT_ON_HANDLE ideal-int +pkg syscall (windows-amd64), const LAYERED_PROTOCOL = 0 +pkg syscall (windows-amd64), const LAYERED_PROTOCOL ideal-int +pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN = 7 +pkg syscall (windows-amd64), const MAX_PROTOCOL_CHAIN ideal-int +pkg syscall (windows-amd64), const NetSetupDomainName = 3 +pkg syscall (windows-amd64), const NetSetupDomainName ideal-int +pkg syscall (windows-amd64), const NetSetupUnjoined = 1 +pkg syscall (windows-amd64), const NetSetupUnjoined ideal-int +pkg syscall (windows-amd64), const NetSetupUnknownStatus = 0 +pkg syscall (windows-amd64), const NetSetupUnknownStatus ideal-int +pkg syscall (windows-amd64), const NetSetupWorkgroupName = 2 +pkg syscall (windows-amd64), const NetSetupWorkgroupName ideal-int +pkg syscall (windows-amd64), const PFL_HIDDEN = 4 +pkg syscall (windows-amd64), const PFL_HIDDEN ideal-int +pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO = 8 +pkg syscall (windows-amd64), const PFL_MATCHES_PROTOCOL_ZERO ideal-int +pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES = 1 +pkg syscall (windows-amd64), const PFL_MULTIPLE_PROTO_ENTRIES ideal-int +pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER = 16 +pkg syscall (windows-amd64), const PFL_NETWORKDIRECT_PROVIDER ideal-int +pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY = 2 +pkg syscall (windows-amd64), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int +pkg syscall (windows-amd64), const PROCESS_TERMINATE = 1 +pkg syscall (windows-amd64), const PROCESS_TERMINATE ideal-int +pkg syscall (windows-amd64), const WSAEACCES = 10013 +pkg syscall (windows-amd64), const WSAEACCES Errno +pkg syscall (windows-amd64), const WSAPROTOCOL_LEN = 255 +pkg syscall (windows-amd64), const WSAPROTOCOL_LEN ideal-int +pkg syscall (windows-amd64), const XP1_CONNECTIONLESS = 1 +pkg syscall (windows-amd64), const XP1_CONNECTIONLESS ideal-int +pkg syscall (windows-amd64), const XP1_CONNECT_DATA = 128 +pkg syscall (windows-amd64), const XP1_CONNECT_DATA ideal-int +pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA = 256 +pkg syscall (windows-amd64), const XP1_DISCONNECT_DATA ideal-int +pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA = 64 +pkg syscall (windows-amd64), const XP1_EXPEDITED_DATA ideal-int +pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE = 32 +pkg syscall (windows-amd64), const XP1_GRACEFUL_CLOSE ideal-int +pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY = 2 +pkg syscall (windows-amd64), const XP1_GUARANTEED_DELIVERY ideal-int +pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER = 4 +pkg syscall (windows-amd64), const XP1_GUARANTEED_ORDER ideal-int +pkg syscall (windows-amd64), const XP1_IFS_HANDLES = 131072 +pkg syscall (windows-amd64), const XP1_IFS_HANDLES ideal-int +pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED = 8 +pkg syscall (windows-amd64), const XP1_MESSAGE_ORIENTED ideal-int +pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE = 2048 +pkg syscall (windows-amd64), const XP1_MULTIPOINT_CONTROL_PLANE ideal-int +pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE = 4096 +pkg syscall (windows-amd64), const XP1_MULTIPOINT_DATA_PLANE ideal-int +pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE = 262144 +pkg syscall (windows-amd64), const XP1_PARTIAL_MESSAGE ideal-int +pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM = 16 +pkg syscall (windows-amd64), const XP1_PSEUDO_STREAM ideal-int +pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED = 8192 +pkg syscall (windows-amd64), const XP1_QOS_SUPPORTED ideal-int +pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP = 524288 +pkg syscall (windows-amd64), const XP1_SAN_SUPPORT_SDP ideal-int +pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST = 512 +pkg syscall (windows-amd64), const XP1_SUPPORT_BROADCAST ideal-int +pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT = 1024 +pkg syscall (windows-amd64), const XP1_SUPPORT_MULTIPOINT ideal-int +pkg syscall (windows-amd64), const XP1_UNI_RECV = 65536 +pkg syscall (windows-amd64), const XP1_UNI_RECV ideal-int +pkg syscall (windows-amd64), const XP1_UNI_SEND = 32768 +pkg syscall (windows-amd64), const XP1_UNI_SEND ideal-int +pkg syscall (windows-amd64), func LoadSetFileCompletionNotificationModes() error +pkg syscall (windows-amd64), func NetGetJoinInformation(*uint16, **uint16, *uint32) error +pkg syscall (windows-amd64), func SetFileCompletionNotificationModes(Handle, uint8) error +pkg syscall (windows-amd64), func WSAEnumProtocols(*int32, *WSAProtocolInfo, *uint32) (int32, error) +pkg syscall (windows-amd64), type IpMaskString struct, String [16]uint8 +pkg syscall (windows-amd64), type WSAProtocolChain struct +pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainEntries [7]uint32 +pkg syscall (windows-amd64), type WSAProtocolChain struct, ChainLen int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct +pkg syscall (windows-amd64), type WSAProtocolInfo struct, AddressFamily int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, CatalogEntryId uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, MaxSockAddr int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, MessageSize uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, MinSockAddr int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, NetworkByteOrder int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, Protocol int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolChain WSAProtocolChain +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolMaxOffset int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProtocolName [256]uint16 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderFlags uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderId GUID +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ProviderReserved uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, SecurityScheme int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags1 uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags2 uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags3 uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, ServiceFlags4 uint32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, SocketType int32 +pkg syscall (windows-amd64), type WSAProtocolInfo struct, Version int32 +pkg testing, func RegisterCover(Cover) +pkg testing, type Cover struct +pkg testing, type Cover struct, Blocks map[string][]CoverBlock +pkg testing, type Cover struct, Counters map[string][]uint32 +pkg testing, type Cover struct, CoveredPackages string +pkg testing, type Cover struct, Mode string +pkg testing, type CoverBlock struct +pkg testing, type CoverBlock struct, Col0 uint16 +pkg testing, type CoverBlock struct, Col1 uint16 +pkg testing, type CoverBlock struct, Line0 uint32 +pkg testing, type CoverBlock struct, Line1 uint32 +pkg testing, type CoverBlock struct, Stmts uint16 +pkg testing, type TB interface, Error(...interface{}) +pkg testing, type TB interface, Errorf(string, ...interface{}) +pkg testing, type TB interface, Fail() +pkg testing, type TB interface, FailNow() +pkg testing, type TB interface, Failed() bool +pkg testing, type TB interface, Fatal(...interface{}) +pkg testing, type TB interface, Fatalf(string, ...interface{}) +pkg testing, type TB interface, Log(...interface{}) +pkg testing, type TB interface, Logf(string, ...interface{}) +pkg testing, type TB interface, Skip(...interface{}) +pkg testing, type TB interface, SkipNow() +pkg testing, type TB interface, Skipf(string, ...interface{}) +pkg testing, type TB interface, Skipped() bool +pkg testing, type TB interface, unexported methods +pkg text/template, method (Template) Copy() *parse.Tree +pkg text/template/parse, method (*Tree) Copy() *Tree +pkg time, method (*Time) UnmarshalBinary([]uint8) error +pkg time, method (*Time) UnmarshalText([]uint8) error +pkg time, method (Time) MarshalBinary() ([]uint8, error) +pkg time, method (Time) MarshalText() ([]uint8, error) +pkg unicode, func In(int32, ...*RangeTable) bool diff --git a/platform/dbops/binaries/go/go/api/go1.20.txt b/platform/dbops/binaries/go/go/api/go1.20.txt new file mode 100644 index 0000000000000000000000000000000000000000..8deb435a684e38d0867be1012729f8a2d3bb65c6 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.20.txt @@ -0,0 +1,9165 @@ +pkg archive/tar, var ErrInsecurePath error #55356 +pkg archive/zip, var ErrInsecurePath error #55356 +pkg bytes, func Clone([]uint8) []uint8 #45038 +pkg bytes, func CutPrefix([]uint8, []uint8) ([]uint8, bool) #42537 +pkg bytes, func CutSuffix([]uint8, []uint8) ([]uint8, bool) #42537 +pkg context, func Cause(Context) error #51365 +pkg context, func WithCancelCause(Context) (Context, CancelCauseFunc) #51365 +pkg context, type CancelCauseFunc func(error) #51365 +pkg crypto/ecdh, func P256() Curve #52221 +pkg crypto/ecdh, func P384() Curve #52221 +pkg crypto/ecdh, func P521() Curve #52221 +pkg crypto/ecdh, func X25519() Curve #52221 +pkg crypto/ecdh, method (*PrivateKey) Bytes() []uint8 #52221 +pkg crypto/ecdh, method (*PrivateKey) Curve() Curve #52221 +pkg crypto/ecdh, method (*PrivateKey) ECDH(*PublicKey) ([]uint8, error) #52221 +pkg crypto/ecdh, method (*PrivateKey) Equal(crypto.PrivateKey) bool #52221 +pkg crypto/ecdh, method (*PrivateKey) Public() crypto.PublicKey #52221 +pkg crypto/ecdh, method (*PrivateKey) PublicKey() *PublicKey #52221 +pkg crypto/ecdh, method (*PublicKey) Bytes() []uint8 #52221 +pkg crypto/ecdh, method (*PublicKey) Curve() Curve #52221 +pkg crypto/ecdh, method (*PublicKey) Equal(crypto.PublicKey) bool #52221 +pkg crypto/ecdh, type Curve interface, GenerateKey(io.Reader) (*PrivateKey, error) #52221 +pkg crypto/ecdh, type Curve interface, NewPrivateKey([]uint8) (*PrivateKey, error) #52221 +pkg crypto/ecdh, type Curve interface, NewPublicKey([]uint8) (*PublicKey, error) #52221 +pkg crypto/ecdh, type Curve interface, unexported methods #52221 +pkg crypto/ecdh, type PrivateKey struct #52221 +pkg crypto/ecdh, type PublicKey struct #52221 +pkg crypto/ecdsa, method (*PrivateKey) ECDH() (*ecdh.PrivateKey, error) #56088 +pkg crypto/ecdsa, method (*PublicKey) ECDH() (*ecdh.PublicKey, error) #56088 +pkg crypto/ed25519, func VerifyWithOptions(PublicKey, []uint8, []uint8, *Options) error #31804 +pkg crypto/ed25519, method (*Options) HashFunc() crypto.Hash #31804 +pkg crypto/ed25519, type Options struct #31804 +pkg crypto/ed25519, type Options struct, Context string #31804 +pkg crypto/ed25519, type Options struct, Hash crypto.Hash #31804 +pkg crypto/rsa, type OAEPOptions struct, MGFHash crypto.Hash #19974 +pkg crypto/subtle, func XORBytes([]uint8, []uint8, []uint8) int #53021 +pkg crypto/tls, method (*CertificateVerificationError) Error() string #48152 +pkg crypto/tls, method (*CertificateVerificationError) Unwrap() error #48152 +pkg crypto/tls, type CertificateVerificationError struct #48152 +pkg crypto/tls, type CertificateVerificationError struct, Err error #48152 +pkg crypto/tls, type CertificateVerificationError struct, UnverifiedCertificates []*x509.Certificate #48152 +pkg crypto/x509, func SetFallbackRoots(*CertPool) #43958 +pkg debug/elf, const R_LARCH_32_PCREL = 99 #54222 +pkg debug/elf, const R_LARCH_32_PCREL R_LARCH #54222 +pkg debug/elf, const R_LARCH_ABS64_HI12 = 70 #54222 +pkg debug/elf, const R_LARCH_ABS64_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_ABS64_LO20 = 69 #54222 +pkg debug/elf, const R_LARCH_ABS64_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_ABS_HI20 = 67 #54222 +pkg debug/elf, const R_LARCH_ABS_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_ABS_LO12 = 68 #54222 +pkg debug/elf, const R_LARCH_ABS_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_B16 = 64 #54222 +pkg debug/elf, const R_LARCH_B16 R_LARCH #54222 +pkg debug/elf, const R_LARCH_B21 = 65 #54222 +pkg debug/elf, const R_LARCH_B21 R_LARCH #54222 +pkg debug/elf, const R_LARCH_B26 = 66 #54222 +pkg debug/elf, const R_LARCH_B26 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GNU_VTENTRY = 58 #54222 +pkg debug/elf, const R_LARCH_GNU_VTENTRY R_LARCH #54222 +pkg debug/elf, const R_LARCH_GNU_VTINHERIT = 57 #54222 +pkg debug/elf, const R_LARCH_GNU_VTINHERIT R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT64_HI12 = 82 #54222 +pkg debug/elf, const R_LARCH_GOT64_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT64_LO20 = 81 #54222 +pkg debug/elf, const R_LARCH_GOT64_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT64_PC_HI12 = 78 #54222 +pkg debug/elf, const R_LARCH_GOT64_PC_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT64_PC_LO20 = 77 #54222 +pkg debug/elf, const R_LARCH_GOT64_PC_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT_HI20 = 79 #54222 +pkg debug/elf, const R_LARCH_GOT_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT_LO12 = 80 #54222 +pkg debug/elf, const R_LARCH_GOT_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT_PC_HI20 = 75 #54222 +pkg debug/elf, const R_LARCH_GOT_PC_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_GOT_PC_LO12 = 76 #54222 +pkg debug/elf, const R_LARCH_GOT_PC_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_PCALA64_HI12 = 74 #54222 +pkg debug/elf, const R_LARCH_PCALA64_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_PCALA64_LO20 = 73 #54222 +pkg debug/elf, const R_LARCH_PCALA64_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_PCALA_HI20 = 71 #54222 +pkg debug/elf, const R_LARCH_PCALA_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_PCALA_LO12 = 72 #54222 +pkg debug/elf, const R_LARCH_PCALA_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_RELAX = 100 #54222 +pkg debug/elf, const R_LARCH_RELAX R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_GD_HI20 = 98 #54222 +pkg debug/elf, const R_LARCH_TLS_GD_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_GD_PC_HI20 = 97 #54222 +pkg debug/elf, const R_LARCH_TLS_GD_PC_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_HI12 = 94 #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_LO20 = 93 #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_PC_HI12 = 90 #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_PC_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_PC_LO20 = 89 #54222 +pkg debug/elf, const R_LARCH_TLS_IE64_PC_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE_HI20 = 91 #54222 +pkg debug/elf, const R_LARCH_TLS_IE_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE_LO12 = 92 #54222 +pkg debug/elf, const R_LARCH_TLS_IE_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE_PC_HI20 = 87 #54222 +pkg debug/elf, const R_LARCH_TLS_IE_PC_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_IE_PC_LO12 = 88 #54222 +pkg debug/elf, const R_LARCH_TLS_IE_PC_LO12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LD_HI20 = 96 #54222 +pkg debug/elf, const R_LARCH_TLS_LD_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LD_PC_HI20 = 95 #54222 +pkg debug/elf, const R_LARCH_TLS_LD_PC_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LE64_HI12 = 86 #54222 +pkg debug/elf, const R_LARCH_TLS_LE64_HI12 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LE64_LO20 = 85 #54222 +pkg debug/elf, const R_LARCH_TLS_LE64_LO20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LE_HI20 = 83 #54222 +pkg debug/elf, const R_LARCH_TLS_LE_HI20 R_LARCH #54222 +pkg debug/elf, const R_LARCH_TLS_LE_LO12 = 84 #54222 +pkg debug/elf, const R_LARCH_TLS_LE_LO12 R_LARCH #54222 +pkg debug/elf, const R_PPC64_ADDR16_HIGHER34 = 136 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHER34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHERA34 = 137 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHERA34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHEST34 = 138 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHEST34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA34 = 139 #54345 +pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_COPY = 19 #54345 +pkg debug/elf, const R_PPC64_COPY R_PPC64 #54345 +pkg debug/elf, const R_PPC64_D28 = 144 #54345 +pkg debug/elf, const R_PPC64_D28 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_D34 = 128 #54345 +pkg debug/elf, const R_PPC64_D34_HA30 = 131 #54345 +pkg debug/elf, const R_PPC64_D34_HA30 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_D34_HI30 = 130 #54345 +pkg debug/elf, const R_PPC64_D34_HI30 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_D34_LO = 129 #54345 +pkg debug/elf, const R_PPC64_D34_LO R_PPC64 #54345 +pkg debug/elf, const R_PPC64_D34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_DTPREL34 = 147 #54345 +pkg debug/elf, const R_PPC64_DTPREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GLOB_DAT = 20 #54345 +pkg debug/elf, const R_PPC64_GLOB_DAT R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GNU_VTENTRY = 254 #54345 +pkg debug/elf, const R_PPC64_GNU_VTENTRY R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GNU_VTINHERIT = 253 #54345 +pkg debug/elf, const R_PPC64_GNU_VTINHERIT R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GOT_DTPREL_PCREL34 = 151 #54345 +pkg debug/elf, const R_PPC64_GOT_DTPREL_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GOT_PCREL34 = 133 #54345 +pkg debug/elf, const R_PPC64_GOT_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GOT_TLSGD_PCREL34 = 148 #54345 +pkg debug/elf, const R_PPC64_GOT_TLSGD_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GOT_TLSLD_PCREL34 = 149 #54345 +pkg debug/elf, const R_PPC64_GOT_TLSLD_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_GOT_TPREL_PCREL34 = 150 #54345 +pkg debug/elf, const R_PPC64_GOT_TPREL_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PCREL28 = 145 #54345 +pkg debug/elf, const R_PPC64_PCREL28 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PCREL34 = 132 #54345 +pkg debug/elf, const R_PPC64_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PCREL_OPT = 123 #54345 +pkg debug/elf, const R_PPC64_PCREL_OPT R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT16_HA = 31 #54345 +pkg debug/elf, const R_PPC64_PLT16_HA R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT16_HI = 30 #54345 +pkg debug/elf, const R_PPC64_PLT16_HI R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT16_LO = 29 #54345 +pkg debug/elf, const R_PPC64_PLT16_LO R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT32 = 27 #54345 +pkg debug/elf, const R_PPC64_PLT32 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT64 = 45 #54345 +pkg debug/elf, const R_PPC64_PLT64 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTCALL = 120 #54345 +pkg debug/elf, const R_PPC64_PLTCALL_NOTOC = 122 #54345 +pkg debug/elf, const R_PPC64_PLTCALL_NOTOC R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTCALL R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT_PCREL34 = 134 #54345 +pkg debug/elf, const R_PPC64_PLT_PCREL34_NOTOC = 135 #54345 +pkg debug/elf, const R_PPC64_PLT_PCREL34_NOTOC R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLT_PCREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTREL32 = 28 #54345 +pkg debug/elf, const R_PPC64_PLTREL32 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTREL64 = 46 #54345 +pkg debug/elf, const R_PPC64_PLTREL64 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTSEQ = 119 #54345 +pkg debug/elf, const R_PPC64_PLTSEQ_NOTOC = 121 #54345 +pkg debug/elf, const R_PPC64_PLTSEQ_NOTOC R_PPC64 #54345 +pkg debug/elf, const R_PPC64_PLTSEQ R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGH = 240 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHA = 241 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHA R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHER = 242 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHER34 = 140 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHER34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHERA = 243 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHERA34 = 141 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHERA34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHERA R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHER R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHEST = 244 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHEST34 = 142 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHEST34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHESTA = 245 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHESTA34 = 143 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHESTA34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHESTA R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGHEST R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL16_HIGH R_PPC64 #54345 +pkg debug/elf, const R_PPC64_REL30 = 37 #54345 +pkg debug/elf, const R_PPC64_REL30 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_SECTOFF = 33 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_HA = 36 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_HA R_PPC64 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_HI = 35 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_HI R_PPC64 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_LO = 34 #54345 +pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 62 #53356 +pkg debug/elf, const R_PPC64_SECTOFF_LO R_PPC64 #54345 +pkg debug/elf, const R_PPC64_SECTOFF R_PPC64 #54345 +pkg debug/elf, const R_PPC64_TPREL34 = 146 #54345 +pkg debug/elf, const R_PPC64_TPREL34 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_UADDR16 = 25 #54345 +pkg debug/elf, const R_PPC64_UADDR16 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_UADDR32 = 24 #54345 +pkg debug/elf, const R_PPC64_UADDR32 R_PPC64 #54345 +pkg debug/elf, const R_PPC64_UADDR64 = 43 #54345 +pkg debug/elf, const R_PPC64_UADDR64 R_PPC64 #54345 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV128 = 20776 #54251 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV128 ideal-int #54251 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV32 = 20530 #54251 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV32 ideal-int #54251 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 = 20580 #54251 +pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 ideal-int #54251 +pkg encoding/xml, method (*Encoder) Close() error #53346 +pkg errors, func Join(...error) error #53435 +pkg fmt, func FormatString(State, int32) string #51668 +pkg go/ast, type File struct, FileEnd token.Pos #53202 +pkg go/ast, type File struct, FileStart token.Pos #53202 +pkg go/ast, type RangeStmt struct, Range token.Pos #50429 +pkg go/token, method (*FileSet) RemoveFile(*File) #53200 +pkg go/types, func Satisfies(Type, *Interface) bool #56548 +pkg io/fs, var SkipAll error #47209 +pkg io, func NewOffsetWriter(WriterAt, int64) *OffsetWriter #45899 +pkg io, method (*OffsetWriter) Seek(int64, int) (int64, error) #45899 +pkg io, method (*OffsetWriter) WriteAt([]uint8, int64) (int, error) #45899 +pkg io, method (*OffsetWriter) Write([]uint8) (int, error) #45899 +pkg io, type OffsetWriter struct #45899 +pkg math/rand, func Read //deprecated #20661 +pkg math/rand, func Seed //deprecated #56319 +pkg net, const FlagRunning = 32 #53482 +pkg net, const FlagRunning Flags #53482 +pkg net/http, func NewResponseController(ResponseWriter) *ResponseController #54136 +pkg net/http/httputil, method (*ProxyRequest) SetURL(*url.URL) #53002 +pkg net/http/httputil, method (*ProxyRequest) SetXForwarded() #53002 +pkg net/http/httputil, type ProxyRequest struct #53002 +pkg net/http/httputil, type ProxyRequest struct, In *http.Request #53002 +pkg net/http/httputil, type ProxyRequest struct, Out *http.Request #53002 +pkg net/http/httputil, type ReverseProxy struct, Rewrite func(*ProxyRequest) #53002 +pkg net/http, method (*ResponseController) Flush() error #54136 +pkg net/http, method (*ResponseController) Hijack() (net.Conn, *bufio.ReadWriter, error) #54136 +pkg net/http, method (*ResponseController) SetReadDeadline(time.Time) error #54136 +pkg net/http, method (*ResponseController) SetWriteDeadline(time.Time) error #54136 +pkg net/http, type ResponseController struct #54136 +pkg net/http, type Server struct, DisableGeneralOptionsHandler bool #41773 +pkg net/http, type Transport struct, OnProxyConnectResponse func(context.Context, *url.URL, *Request, *Response) error #54299 +pkg net/netip, func IPv6LinkLocalAllRouters() Addr #51766 +pkg net/netip, func IPv6Loopback() Addr #51777 +pkg net, type Dialer struct, ControlContext func(context.Context, string, string, syscall.RawConn) error #55301 +pkg os/exec, type Cmd struct, Cancel func() error #50436 +pkg os/exec, type Cmd struct, WaitDelay time.Duration #50436 +pkg os/exec, var ErrWaitDelay error #50436 +pkg path/filepath, func IsLocal(string) bool #56219 +pkg path/filepath, var SkipAll error #47209 +pkg reflect, method (Value) Comparable() bool #46746 +pkg reflect, method (Value) Equal(Value) bool #46746 +pkg reflect, method (Value) Grow(int) #48000 +pkg reflect, method (Value) SetZero() #52376 +pkg regexp/syntax, const ErrLarge ErrorCode #56041 +pkg regexp/syntax, const ErrLarge = "expression too large" #56041 +pkg runtime/cgo (darwin-amd64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (darwin-arm64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (freebsd-386-cgo), type Incomplete struct #46731 +pkg runtime/cgo (freebsd-amd64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (freebsd-arm-cgo), type Incomplete struct #46731 +pkg runtime/cgo (freebsd-arm64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (linux-386-cgo), type Incomplete struct #46731 +pkg runtime/cgo (linux-amd64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (linux-arm-cgo), type Incomplete struct #46731 +pkg runtime/cgo (netbsd-386-cgo), type Incomplete struct #46731 +pkg runtime/cgo (netbsd-amd64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (netbsd-arm64-cgo), type Incomplete struct #46731 +pkg runtime/cgo (netbsd-arm-cgo), type Incomplete struct #46731 +pkg runtime/cgo (openbsd-386-cgo), type Incomplete struct #46731 +pkg runtime/cgo (openbsd-amd64-cgo), type Incomplete struct #46731 +pkg runtime/coverage, func ClearCounters() error #51430 +pkg runtime/coverage, func WriteCountersDir(string) error #51430 +pkg runtime/coverage, func WriteCounters(io.Writer) error #51430 +pkg runtime/coverage, func WriteMetaDir(string) error #51430 +pkg runtime/coverage, func WriteMeta(io.Writer) error #51430 +pkg strings, func CutPrefix(string, string) (string, bool) #42537 +pkg strings, func CutSuffix(string, string) (string, bool) #42537 +pkg sync, method (*Map) CompareAndDelete(interface{}, interface{}) bool #51972 +pkg sync, method (*Map) CompareAndSwap(interface{}, interface{}, interface{}) bool #51972 +pkg sync, method (*Map) Swap(interface{}, interface{}) (interface{}, bool) #51972 +pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-386-cgo), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-386-cgo), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-386-cgo), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-386-cgo), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-386), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-386), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-386), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-386), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-386), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-386), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-386), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-amd64-cgo), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-amd64), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-amd64), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-amd64), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-amd64), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-amd64), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-amd64), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-arm-cgo), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-arm), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-arm), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-arm), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-arm), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-arm), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-arm), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-arm), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-arm64), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-arm64), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-arm64), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-arm64), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-arm64), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-arm64), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-arm64), const SYS_STATFS = 555 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTAT = 551 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATAT = 552 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_FSTATFS = 556 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_GETDIRENTRIES = 554 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_GETFSSTAT = 557 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT = 559 #53280 +pkg syscall (freebsd-arm64-cgo), const SYS_STATFS = 555 #53280 +pkg syscall (linux-386-cgo), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-386-cgo), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-386-cgo), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-386-cgo), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-386-cgo), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-386-cgo), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-386-cgo), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-386-cgo), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-386-cgo), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-386-cgo), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-386-cgo), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-386-cgo), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg syscall (linux-386), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-386), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-386), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-386), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-386), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-386), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-386), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-386), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-386), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-386), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-386), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-386), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg syscall (linux-amd64-cgo), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-amd64-cgo), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-amd64-cgo), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-amd64-cgo), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-amd64-cgo), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-amd64-cgo), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-amd64-cgo), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-amd64-cgo), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-amd64-cgo), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-amd64-cgo), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg syscall (linux-amd64), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-amd64), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-amd64), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-amd64), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-amd64), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-amd64), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-amd64), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-amd64), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-amd64), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-amd64), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-amd64), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-amd64), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg syscall (linux-arm-cgo), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-arm-cgo), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-arm-cgo), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-arm-cgo), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-arm-cgo), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-arm-cgo), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-arm-cgo), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-arm-cgo), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-arm-cgo), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-arm-cgo), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-arm-cgo), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-arm-cgo), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg syscall (linux-arm), const CLONE_CLEAR_SIGHAND = 4294967296 #51246 +pkg syscall (linux-arm), const CLONE_CLEAR_SIGHAND ideal-int #51246 +pkg syscall (linux-arm), const CLONE_INTO_CGROUP = 8589934592 #51246 +pkg syscall (linux-arm), const CLONE_INTO_CGROUP ideal-int #51246 +pkg syscall (linux-arm), const CLONE_NEWCGROUP = 33554432 #51246 +pkg syscall (linux-arm), const CLONE_NEWCGROUP ideal-int #51246 +pkg syscall (linux-arm), const CLONE_NEWTIME = 128 #51246 +pkg syscall (linux-arm), const CLONE_NEWTIME ideal-int #51246 +pkg syscall (linux-arm), const CLONE_PIDFD = 4096 #51246 +pkg syscall (linux-arm), const CLONE_PIDFD ideal-int #51246 +pkg syscall (linux-arm), type SysProcAttr struct, CgroupFD int #51246 +pkg syscall (linux-arm), type SysProcAttr struct, UseCgroupFD bool #51246 +pkg testing, method (*B) Elapsed() time.Duration #43620 +pkg time, const DateOnly = "2006-01-02" #52746 +pkg time, const DateOnly ideal-string #52746 +pkg time, const DateTime = "2006-01-02 15:04:05" #52746 +pkg time, const DateTime ideal-string #52746 +pkg time, const TimeOnly = "15:04:05" #52746 +pkg time, const TimeOnly ideal-string #52746 +pkg time, method (Time) Compare(Time) int #50770 +pkg unicode/utf16, func AppendRune([]uint16, int32) []uint16 #51896 +# freebsd riscv64 port +pkg log/syslog (freebsd-riscv64), const LOG_ALERT = 1 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_ALERT Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_AUTH = 32 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_AUTH Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_AUTHPRIV = 80 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_AUTHPRIV Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_CRIT = 2 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_CRIT Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_CRON = 72 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_CRON Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_DAEMON = 24 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_DAEMON Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_DEBUG = 7 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_DEBUG Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_EMERG = 0 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_EMERG Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_ERR = 3 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_ERR Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_FTP = 88 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_FTP Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_INFO = 6 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_INFO Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_KERN = 0 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_KERN Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL0 = 128 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL0 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL1 = 136 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL1 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL2 = 144 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL2 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL3 = 152 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL3 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL4 = 160 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL4 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL5 = 168 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL5 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL6 = 176 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL6 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL7 = 184 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LOCAL7 Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LPR = 48 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_LPR Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_MAIL = 16 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_MAIL Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_NEWS = 56 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_NEWS Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_NOTICE = 5 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_NOTICE Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_SYSLOG = 40 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_SYSLOG Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_USER = 8 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_USER Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_UUCP = 64 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_UUCP Priority #53466 +pkg log/syslog (freebsd-riscv64), const LOG_WARNING = 4 #53466 +pkg log/syslog (freebsd-riscv64), const LOG_WARNING Priority #53466 +pkg log/syslog (freebsd-riscv64), func Dial(string, string, Priority, string) (*Writer, error) #53466 +pkg log/syslog (freebsd-riscv64), func New(Priority, string) (*Writer, error) #53466 +pkg log/syslog (freebsd-riscv64), func NewLogger(Priority, int) (*log.Logger, error) #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Alert(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Close() error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Crit(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Debug(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Emerg(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Err(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Info(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Notice(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Warning(string) error #53466 +pkg log/syslog (freebsd-riscv64), method (*Writer) Write([]uint8) (int, error) #53466 +pkg log/syslog (freebsd-riscv64), type Priority int #53466 +pkg log/syslog (freebsd-riscv64), type Writer struct #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_ALERT = 1 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_ALERT Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_AUTH = 32 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_AUTH Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_AUTHPRIV = 80 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_AUTHPRIV Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_CRIT = 2 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_CRIT Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_CRON = 72 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_CRON Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_DAEMON = 24 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_DAEMON Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_DEBUG = 7 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_DEBUG Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_EMERG = 0 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_EMERG Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_ERR = 3 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_ERR Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_FTP = 88 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_FTP Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_INFO = 6 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_INFO Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_KERN = 0 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_KERN Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL0 = 128 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL0 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL1 = 136 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL1 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL2 = 144 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL2 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL3 = 152 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL3 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL4 = 160 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL4 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL5 = 168 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL5 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL6 = 176 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL6 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL7 = 184 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LOCAL7 Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LPR = 48 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_LPR Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_MAIL = 16 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_MAIL Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_NEWS = 56 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_NEWS Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_NOTICE = 5 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_NOTICE Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_SYSLOG = 40 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_SYSLOG Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_USER = 8 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_USER Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_UUCP = 64 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_UUCP Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_WARNING = 4 #53466 +pkg log/syslog (freebsd-riscv64-cgo), const LOG_WARNING Priority #53466 +pkg log/syslog (freebsd-riscv64-cgo), func Dial(string, string, Priority, string) (*Writer, error) #53466 +pkg log/syslog (freebsd-riscv64-cgo), func New(Priority, string) (*Writer, error) #53466 +pkg log/syslog (freebsd-riscv64-cgo), func NewLogger(Priority, int) (*log.Logger, error) #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Alert(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Close() error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Crit(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Debug(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Emerg(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Err(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Info(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Notice(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Warning(string) error #53466 +pkg log/syslog (freebsd-riscv64-cgo), method (*Writer) Write([]uint8) (int, error) #53466 +pkg log/syslog (freebsd-riscv64-cgo), type Priority int #53466 +pkg log/syslog (freebsd-riscv64-cgo), type Writer struct #53466 +pkg math (freebsd-riscv64), const MaxInt = 9223372036854775807 #53466 +pkg math (freebsd-riscv64), const MaxUint = 18446744073709551615 #53466 +pkg math (freebsd-riscv64), const MinInt = -9223372036854775808 #53466 +pkg math (freebsd-riscv64-cgo), const MaxInt = 9223372036854775807 #53466 +pkg math (freebsd-riscv64-cgo), const MaxUint = 18446744073709551615 #53466 +pkg math (freebsd-riscv64-cgo), const MinInt = -9223372036854775808 #53466 +pkg math/bits (freebsd-riscv64), const UintSize = 64 #53466 +pkg math/bits (freebsd-riscv64-cgo), const UintSize = 64 #53466 +pkg os (freebsd-riscv64), const DevNull = "/dev/null" #53466 +pkg os (freebsd-riscv64), const O_APPEND = 8 #53466 +pkg os (freebsd-riscv64), const O_CREATE = 512 #53466 +pkg os (freebsd-riscv64), const O_EXCL = 2048 #53466 +pkg os (freebsd-riscv64), const O_SYNC = 128 #53466 +pkg os (freebsd-riscv64), const O_TRUNC = 1024 #53466 +pkg os (freebsd-riscv64), const PathListSeparator = 58 #53466 +pkg os (freebsd-riscv64), const PathSeparator = 47 #53466 +pkg os (freebsd-riscv64-cgo), const DevNull = "/dev/null" #53466 +pkg os (freebsd-riscv64-cgo), const O_APPEND = 8 #53466 +pkg os (freebsd-riscv64-cgo), const O_CREATE = 512 #53466 +pkg os (freebsd-riscv64-cgo), const O_EXCL = 2048 #53466 +pkg os (freebsd-riscv64-cgo), const O_SYNC = 128 #53466 +pkg os (freebsd-riscv64-cgo), const O_TRUNC = 1024 #53466 +pkg os (freebsd-riscv64-cgo), const PathListSeparator = 58 #53466 +pkg os (freebsd-riscv64-cgo), const PathSeparator = 47 #53466 +pkg path/filepath (freebsd-riscv64), const ListSeparator = 58 #53466 +pkg path/filepath (freebsd-riscv64), const Separator = 47 #53466 +pkg path/filepath (freebsd-riscv64-cgo), const ListSeparator = 58 #53466 +pkg path/filepath (freebsd-riscv64-cgo), const Separator = 47 #53466 +pkg runtime (freebsd-riscv64), const GOARCH = "riscv64" #53466 +pkg runtime (freebsd-riscv64), const GOOS = "freebsd" #53466 +pkg runtime (freebsd-riscv64-cgo), const GOARCH = "riscv64" #53466 +pkg runtime (freebsd-riscv64-cgo), const GOOS = "freebsd" #53466 +pkg runtime/cgo (freebsd-riscv64-cgo), func NewHandle(interface{}) Handle #53466 +pkg runtime/cgo (freebsd-riscv64-cgo), method (Handle) Delete() #53466 +pkg runtime/cgo (freebsd-riscv64-cgo), method (Handle) Value() interface{} #53466 +pkg runtime/cgo (freebsd-riscv64-cgo), type Handle uintptr #53466 +pkg runtime/cgo (freebsd-riscv64-cgo), type Incomplete struct #53466 +pkg strconv (freebsd-riscv64), const IntSize = 64 #53466 +pkg strconv (freebsd-riscv64-cgo), const IntSize = 64 #53466 +pkg syscall (freebsd-riscv64), const AF_APPLETALK = 16 #53466 +pkg syscall (freebsd-riscv64), const AF_APPLETALK ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ARP = 35 #53466 +pkg syscall (freebsd-riscv64), const AF_ARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ATM = 30 #53466 +pkg syscall (freebsd-riscv64), const AF_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_BLUETOOTH = 36 #53466 +pkg syscall (freebsd-riscv64), const AF_BLUETOOTH ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_CCITT = 10 #53466 +pkg syscall (freebsd-riscv64), const AF_CCITT ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_CHAOS = 5 #53466 +pkg syscall (freebsd-riscv64), const AF_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_CNT = 21 #53466 +pkg syscall (freebsd-riscv64), const AF_CNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_COIP = 20 #53466 +pkg syscall (freebsd-riscv64), const AF_COIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_DATAKIT = 9 #53466 +pkg syscall (freebsd-riscv64), const AF_DATAKIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_DECnet = 12 #53466 +pkg syscall (freebsd-riscv64), const AF_DECnet ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_DLI = 13 #53466 +pkg syscall (freebsd-riscv64), const AF_DLI ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_E164 = 26 #53466 +pkg syscall (freebsd-riscv64), const AF_E164 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ECMA = 8 #53466 +pkg syscall (freebsd-riscv64), const AF_ECMA ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_HYLINK = 15 #53466 +pkg syscall (freebsd-riscv64), const AF_HYLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_IEEE80211 = 37 #53466 +pkg syscall (freebsd-riscv64), const AF_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_IMPLINK = 3 #53466 +pkg syscall (freebsd-riscv64), const AF_IMPLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_INET6 = 28 #53466 +pkg syscall (freebsd-riscv64), const AF_INET6_SDP = 42 #53466 +pkg syscall (freebsd-riscv64), const AF_INET6_SDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_INET_SDP = 40 #53466 +pkg syscall (freebsd-riscv64), const AF_INET_SDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_IPX = 23 #53466 +pkg syscall (freebsd-riscv64), const AF_IPX ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ISDN = 26 #53466 +pkg syscall (freebsd-riscv64), const AF_ISDN ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ISO = 7 #53466 +pkg syscall (freebsd-riscv64), const AF_ISO ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_LAT = 14 #53466 +pkg syscall (freebsd-riscv64), const AF_LAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_LINK = 18 #53466 +pkg syscall (freebsd-riscv64), const AF_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_LOCAL = 1 #53466 +pkg syscall (freebsd-riscv64), const AF_LOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_MAX = 42 #53466 +pkg syscall (freebsd-riscv64), const AF_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_NATM = 29 #53466 +pkg syscall (freebsd-riscv64), const AF_NATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_NETBIOS = 6 #53466 +pkg syscall (freebsd-riscv64), const AF_NETBIOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_NETGRAPH = 32 #53466 +pkg syscall (freebsd-riscv64), const AF_NETGRAPH ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_OSI = 7 #53466 +pkg syscall (freebsd-riscv64), const AF_OSI ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_PUP = 4 #53466 +pkg syscall (freebsd-riscv64), const AF_PUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_ROUTE = 17 #53466 +pkg syscall (freebsd-riscv64), const AF_ROUTE ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_SCLUSTER = 34 #53466 +pkg syscall (freebsd-riscv64), const AF_SCLUSTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_SIP = 24 #53466 +pkg syscall (freebsd-riscv64), const AF_SIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_SLOW = 33 #53466 +pkg syscall (freebsd-riscv64), const AF_SLOW ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_SNA = 11 #53466 +pkg syscall (freebsd-riscv64), const AF_SNA ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR00 = 39 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR00 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR01 = 41 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR01 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR02 = 43 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR02 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR03 = 45 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR03 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR04 = 47 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR04 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR05 = 49 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR05 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR06 = 51 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR06 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR07 = 53 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR07 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR08 = 55 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR08 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR09 = 57 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR09 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR10 = 59 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR10 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR11 = 61 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR11 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR12 = 63 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR12 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR13 = 65 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR13 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR14 = 67 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR14 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR15 = 69 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR15 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR16 = 71 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR16 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR17 = 73 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR17 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR18 = 75 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR18 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR19 = 77 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR19 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR20 = 79 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR20 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR21 = 81 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR21 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR22 = 83 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR22 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR23 = 85 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR23 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR24 = 87 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR24 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR25 = 89 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR25 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR26 = 91 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR26 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR27 = 93 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR27 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR28 = 95 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR28 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR29 = 97 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR29 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR30 = 99 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR30 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR31 = 101 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR31 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR32 = 103 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR32 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR33 = 105 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR33 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR34 = 107 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR34 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR35 = 109 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR35 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR36 = 111 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR36 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR37 = 113 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR37 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR38 = 115 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR38 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR39 = 117 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR39 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR40 = 119 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR40 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR41 = 121 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR41 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR42 = 123 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR42 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR43 = 125 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR43 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR44 = 127 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR44 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR45 = 129 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR45 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR46 = 131 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR46 ideal-int #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR47 = 133 #53466 +pkg syscall (freebsd-riscv64), const AF_VENDOR47 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B0 = 0 #53466 +pkg syscall (freebsd-riscv64), const B0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B110 = 110 #53466 +pkg syscall (freebsd-riscv64), const B110 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B115200 = 115200 #53466 +pkg syscall (freebsd-riscv64), const B115200 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B1200 = 1200 #53466 +pkg syscall (freebsd-riscv64), const B1200 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B134 = 134 #53466 +pkg syscall (freebsd-riscv64), const B134 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B14400 = 14400 #53466 +pkg syscall (freebsd-riscv64), const B14400 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B150 = 150 #53466 +pkg syscall (freebsd-riscv64), const B150 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B1800 = 1800 #53466 +pkg syscall (freebsd-riscv64), const B1800 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B19200 = 19200 #53466 +pkg syscall (freebsd-riscv64), const B19200 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B200 = 200 #53466 +pkg syscall (freebsd-riscv64), const B200 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B230400 = 230400 #53466 +pkg syscall (freebsd-riscv64), const B230400 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B2400 = 2400 #53466 +pkg syscall (freebsd-riscv64), const B2400 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B28800 = 28800 #53466 +pkg syscall (freebsd-riscv64), const B28800 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B300 = 300 #53466 +pkg syscall (freebsd-riscv64), const B300 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B38400 = 38400 #53466 +pkg syscall (freebsd-riscv64), const B38400 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B460800 = 460800 #53466 +pkg syscall (freebsd-riscv64), const B460800 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B4800 = 4800 #53466 +pkg syscall (freebsd-riscv64), const B4800 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B50 = 50 #53466 +pkg syscall (freebsd-riscv64), const B50 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B57600 = 57600 #53466 +pkg syscall (freebsd-riscv64), const B57600 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B600 = 600 #53466 +pkg syscall (freebsd-riscv64), const B600 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B7200 = 7200 #53466 +pkg syscall (freebsd-riscv64), const B7200 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B75 = 75 #53466 +pkg syscall (freebsd-riscv64), const B75 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B76800 = 76800 #53466 +pkg syscall (freebsd-riscv64), const B76800 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B921600 = 921600 #53466 +pkg syscall (freebsd-riscv64), const B921600 ideal-int #53466 +pkg syscall (freebsd-riscv64), const B9600 = 9600 #53466 +pkg syscall (freebsd-riscv64), const B9600 ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCFEEDBACK = 2147762812 #53466 +pkg syscall (freebsd-riscv64), const BIOCFEEDBACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCFLUSH = 536887912 #53466 +pkg syscall (freebsd-riscv64), const BIOCFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGBLEN = 1074020966 #53466 +pkg syscall (freebsd-riscv64), const BIOCGBLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGDIRECTION = 1074020982 #53466 +pkg syscall (freebsd-riscv64), const BIOCGDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGDLT = 1074020970 #53466 +pkg syscall (freebsd-riscv64), const BIOCGDLT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGDLTLIST = 3222291065 #53466 +pkg syscall (freebsd-riscv64), const BIOCGDLTLIST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGETBUFMODE = 1074020989 #53466 +pkg syscall (freebsd-riscv64), const BIOCGETBUFMODE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGETIF = 1075855979 #53466 +pkg syscall (freebsd-riscv64), const BIOCGETIF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGETZMAX = 1074283135 #53466 +pkg syscall (freebsd-riscv64), const BIOCGETZMAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGHDRCMPLT = 1074020980 #53466 +pkg syscall (freebsd-riscv64), const BIOCGHDRCMPLT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGRSIG = 1074020978 #53466 +pkg syscall (freebsd-riscv64), const BIOCGRSIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGRTIMEOUT = 1074807406 #53466 +pkg syscall (freebsd-riscv64), const BIOCGRTIMEOUT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGSEESENT = 1074020982 #53466 +pkg syscall (freebsd-riscv64), const BIOCGSEESENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGSTATS = 1074283119 #53466 +pkg syscall (freebsd-riscv64), const BIOCGSTATS ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCGTSTAMP = 1074020995 #53466 +pkg syscall (freebsd-riscv64), const BIOCGTSTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCIMMEDIATE = 2147762800 #53466 +pkg syscall (freebsd-riscv64), const BIOCIMMEDIATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCLOCK = 536887930 #53466 +pkg syscall (freebsd-riscv64), const BIOCLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCPROMISC = 536887913 #53466 +pkg syscall (freebsd-riscv64), const BIOCPROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCROTZBUF = 1075331712 #53466 +pkg syscall (freebsd-riscv64), const BIOCROTZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSBLEN = 3221504614 #53466 +pkg syscall (freebsd-riscv64), const BIOCSBLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSDIRECTION = 2147762807 #53466 +pkg syscall (freebsd-riscv64), const BIOCSDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSDLT = 2147762808 #53466 +pkg syscall (freebsd-riscv64), const BIOCSDLT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETBUFMODE = 2147762814 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETBUFMODE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETF = 2148549223 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETFNR = 2148549250 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETFNR ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETIF = 2149597804 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETIF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETWF = 2148549243 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETWF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSETZBUF = 2149073537 #53466 +pkg syscall (freebsd-riscv64), const BIOCSETZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSHDRCMPLT = 2147762805 #53466 +pkg syscall (freebsd-riscv64), const BIOCSHDRCMPLT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSRSIG = 2147762803 #53466 +pkg syscall (freebsd-riscv64), const BIOCSRSIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSRTIMEOUT = 2148549229 #53466 +pkg syscall (freebsd-riscv64), const BIOCSRTIMEOUT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSSEESENT = 2147762807 #53466 +pkg syscall (freebsd-riscv64), const BIOCSSEESENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCSTSTAMP = 2147762820 #53466 +pkg syscall (freebsd-riscv64), const BIOCSTSTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const BIOCVERSION = 1074020977 #53466 +pkg syscall (freebsd-riscv64), const BIOCVERSION ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_A = 16 #53466 +pkg syscall (freebsd-riscv64), const BPF_A ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_ABS = 32 #53466 +pkg syscall (freebsd-riscv64), const BPF_ABS ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_ADD = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_ALIGNMENT = 8 #53466 +pkg syscall (freebsd-riscv64), const BPF_ALIGNMENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_ALU = 4 #53466 +pkg syscall (freebsd-riscv64), const BPF_ALU ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_AND = 80 #53466 +pkg syscall (freebsd-riscv64), const BPF_AND ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_B = 16 #53466 +pkg syscall (freebsd-riscv64), const BPF_B ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_BUFMODE_BUFFER = 1 #53466 +pkg syscall (freebsd-riscv64), const BPF_BUFMODE_BUFFER ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_BUFMODE_ZBUF = 2 #53466 +pkg syscall (freebsd-riscv64), const BPF_BUFMODE_ZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_DIV = 48 #53466 +pkg syscall (freebsd-riscv64), const BPF_DIV ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_H = 8 #53466 +pkg syscall (freebsd-riscv64), const BPF_H ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_IMM = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_IMM ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_IND = 64 #53466 +pkg syscall (freebsd-riscv64), const BPF_IND ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JA = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_JA ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JEQ = 16 #53466 +pkg syscall (freebsd-riscv64), const BPF_JEQ ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JGE = 48 #53466 +pkg syscall (freebsd-riscv64), const BPF_JGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JGT = 32 #53466 +pkg syscall (freebsd-riscv64), const BPF_JGT ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JMP = 5 #53466 +pkg syscall (freebsd-riscv64), const BPF_JMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_JSET = 64 #53466 +pkg syscall (freebsd-riscv64), const BPF_JSET ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_K = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_K ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_LD = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_LD ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_LDX = 1 #53466 +pkg syscall (freebsd-riscv64), const BPF_LDX ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_LEN = 128 #53466 +pkg syscall (freebsd-riscv64), const BPF_LEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_LSH = 96 #53466 +pkg syscall (freebsd-riscv64), const BPF_LSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MAJOR_VERSION = 1 #53466 +pkg syscall (freebsd-riscv64), const BPF_MAJOR_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MAXBUFSIZE = 524288 #53466 +pkg syscall (freebsd-riscv64), const BPF_MAXBUFSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MAXINSNS = 512 #53466 +pkg syscall (freebsd-riscv64), const BPF_MAXINSNS ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MEM = 96 #53466 +pkg syscall (freebsd-riscv64), const BPF_MEM ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MEMWORDS = 16 #53466 +pkg syscall (freebsd-riscv64), const BPF_MEMWORDS ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MINBUFSIZE = 32 #53466 +pkg syscall (freebsd-riscv64), const BPF_MINBUFSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MINOR_VERSION = 1 #53466 +pkg syscall (freebsd-riscv64), const BPF_MINOR_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MISC = 7 #53466 +pkg syscall (freebsd-riscv64), const BPF_MISC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MSH = 160 #53466 +pkg syscall (freebsd-riscv64), const BPF_MSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_MUL = 32 #53466 +pkg syscall (freebsd-riscv64), const BPF_MUL ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_NEG = 128 #53466 +pkg syscall (freebsd-riscv64), const BPF_NEG ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_OR = 64 #53466 +pkg syscall (freebsd-riscv64), const BPF_OR ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_RELEASE = 199606 #53466 +pkg syscall (freebsd-riscv64), const BPF_RELEASE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_RET = 6 #53466 +pkg syscall (freebsd-riscv64), const BPF_RET ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_RSH = 112 #53466 +pkg syscall (freebsd-riscv64), const BPF_RSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_ST = 2 #53466 +pkg syscall (freebsd-riscv64), const BPF_ST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_STX = 3 #53466 +pkg syscall (freebsd-riscv64), const BPF_STX ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_SUB = 16 #53466 +pkg syscall (freebsd-riscv64), const BPF_SUB ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_TAX = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_TAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_TXA = 128 #53466 +pkg syscall (freebsd-riscv64), const BPF_TXA ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME = 2 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_FAST = 258 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_MONOTONIC = 514 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_MONOTONIC_FAST = 770 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FAST = 256 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FLAG_MASK = 768 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FLAG_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FORMAT_MASK = 3 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_FORMAT_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_FAST = 256 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_MONOTONIC = 512 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MONOTONIC = 512 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MONOTONIC_FAST = 768 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME = 1 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_FAST = 257 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_MONOTONIC = 513 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NONE = 3 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NORMAL = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_T_NORMAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_W = 0 #53466 +pkg syscall (freebsd-riscv64), const BPF_W ideal-int #53466 +pkg syscall (freebsd-riscv64), const BPF_X = 8 #53466 +pkg syscall (freebsd-riscv64), const BPF_X ideal-int #53466 +pkg syscall (freebsd-riscv64), const BRKINT = 2 #53466 +pkg syscall (freebsd-riscv64), const BRKINT ideal-int #53466 +pkg syscall (freebsd-riscv64), const CFLUSH = 15 #53466 +pkg syscall (freebsd-riscv64), const CFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const CLOCAL = 32768 #53466 +pkg syscall (freebsd-riscv64), const CLOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const CREAD = 2048 #53466 +pkg syscall (freebsd-riscv64), const CREAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const CS5 = 0 #53466 +pkg syscall (freebsd-riscv64), const CS5 ideal-int #53466 +pkg syscall (freebsd-riscv64), const CS6 = 256 #53466 +pkg syscall (freebsd-riscv64), const CS6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const CS7 = 512 #53466 +pkg syscall (freebsd-riscv64), const CS7 ideal-int #53466 +pkg syscall (freebsd-riscv64), const CS8 = 768 #53466 +pkg syscall (freebsd-riscv64), const CS8 ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSIZE = 768 #53466 +pkg syscall (freebsd-riscv64), const CSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSTART = 17 #53466 +pkg syscall (freebsd-riscv64), const CSTART ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSTATUS = 20 #53466 +pkg syscall (freebsd-riscv64), const CSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSTOP = 19 #53466 +pkg syscall (freebsd-riscv64), const CSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSTOPB = 1024 #53466 +pkg syscall (freebsd-riscv64), const CSTOPB ideal-int #53466 +pkg syscall (freebsd-riscv64), const CSUSP = 26 #53466 +pkg syscall (freebsd-riscv64), const CSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const CTL_MAXNAME = 24 #53466 +pkg syscall (freebsd-riscv64), const CTL_MAXNAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const CTL_NET = 4 #53466 +pkg syscall (freebsd-riscv64), const CTL_NET ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_A429 = 184 #53466 +pkg syscall (freebsd-riscv64), const DLT_A429 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_A653_ICM = 185 #53466 +pkg syscall (freebsd-riscv64), const DLT_A653_ICM ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_AIRONET_HEADER = 120 #53466 +pkg syscall (freebsd-riscv64), const DLT_AIRONET_HEADER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_AOS = 222 #53466 +pkg syscall (freebsd-riscv64), const DLT_AOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_APPLE_IP_OVER_IEEE1394 = 138 #53466 +pkg syscall (freebsd-riscv64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ARCNET = 7 #53466 +pkg syscall (freebsd-riscv64), const DLT_ARCNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ARCNET_LINUX = 129 #53466 +pkg syscall (freebsd-riscv64), const DLT_ARCNET_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ATM_CLIP = 19 #53466 +pkg syscall (freebsd-riscv64), const DLT_ATM_CLIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ATM_RFC1483 = 11 #53466 +pkg syscall (freebsd-riscv64), const DLT_ATM_RFC1483 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_AURORA = 126 #53466 +pkg syscall (freebsd-riscv64), const DLT_AURORA ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_AX25 = 3 #53466 +pkg syscall (freebsd-riscv64), const DLT_AX25 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_AX25_KISS = 202 #53466 +pkg syscall (freebsd-riscv64), const DLT_AX25_KISS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_BACNET_MS_TP = 165 #53466 +pkg syscall (freebsd-riscv64), const DLT_BACNET_MS_TP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_BLUETOOTH_HCI_H4 = 187 #53466 +pkg syscall (freebsd-riscv64), const DLT_BLUETOOTH_HCI_H4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 #53466 +pkg syscall (freebsd-riscv64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_CAN20B = 190 #53466 +pkg syscall (freebsd-riscv64), const DLT_CAN20B ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_CAN_SOCKETCAN = 227 #53466 +pkg syscall (freebsd-riscv64), const DLT_CAN_SOCKETCAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_CHAOS = 5 #53466 +pkg syscall (freebsd-riscv64), const DLT_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_CHDLC = 104 #53466 +pkg syscall (freebsd-riscv64), const DLT_CHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_CISCO_IOS = 118 #53466 +pkg syscall (freebsd-riscv64), const DLT_CISCO_IOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_C_HDLC = 104 #53466 +pkg syscall (freebsd-riscv64), const DLT_C_HDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_C_HDLC_WITH_DIR = 205 #53466 +pkg syscall (freebsd-riscv64), const DLT_C_HDLC_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_DBUS = 231 #53466 +pkg syscall (freebsd-riscv64), const DLT_DBUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_DECT = 221 #53466 +pkg syscall (freebsd-riscv64), const DLT_DECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_DOCSIS = 143 #53466 +pkg syscall (freebsd-riscv64), const DLT_DOCSIS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_DVB_CI = 235 #53466 +pkg syscall (freebsd-riscv64), const DLT_DVB_CI ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ECONET = 115 #53466 +pkg syscall (freebsd-riscv64), const DLT_ECONET ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_EN10MB = 1 #53466 +pkg syscall (freebsd-riscv64), const DLT_EN10MB ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_EN3MB = 2 #53466 +pkg syscall (freebsd-riscv64), const DLT_EN3MB ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ENC = 109 #53466 +pkg syscall (freebsd-riscv64), const DLT_ENC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF = 197 #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF_ETH = 175 #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF_ETH ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF_POS = 176 #53466 +pkg syscall (freebsd-riscv64), const DLT_ERF_POS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FC_2 = 224 #53466 +pkg syscall (freebsd-riscv64), const DLT_FC_2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FC_2_WITH_FRAME_DELIMS = 225 #53466 +pkg syscall (freebsd-riscv64), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FDDI = 10 #53466 +pkg syscall (freebsd-riscv64), const DLT_FDDI ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FLEXRAY = 210 #53466 +pkg syscall (freebsd-riscv64), const DLT_FLEXRAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FRELAY = 107 #53466 +pkg syscall (freebsd-riscv64), const DLT_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_FRELAY_WITH_DIR = 206 #53466 +pkg syscall (freebsd-riscv64), const DLT_FRELAY_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GCOM_SERIAL = 173 #53466 +pkg syscall (freebsd-riscv64), const DLT_GCOM_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GCOM_T1E1 = 172 #53466 +pkg syscall (freebsd-riscv64), const DLT_GCOM_T1E1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GPF_F = 171 #53466 +pkg syscall (freebsd-riscv64), const DLT_GPF_F ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GPF_T = 170 #53466 +pkg syscall (freebsd-riscv64), const DLT_GPF_T ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GPRS_LLC = 169 #53466 +pkg syscall (freebsd-riscv64), const DLT_GPRS_LLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GSMTAP_ABIS = 218 #53466 +pkg syscall (freebsd-riscv64), const DLT_GSMTAP_ABIS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_GSMTAP_UM = 217 #53466 +pkg syscall (freebsd-riscv64), const DLT_GSMTAP_UM ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_HHDLC = 121 #53466 +pkg syscall (freebsd-riscv64), const DLT_HHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IBM_SN = 146 #53466 +pkg syscall (freebsd-riscv64), const DLT_IBM_SN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IBM_SP = 145 #53466 +pkg syscall (freebsd-riscv64), const DLT_IBM_SP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802 = 6 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11 = 105 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11_RADIO = 127 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11_RADIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11_RADIO_AVS = 163 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_11_RADIO_AVS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4 = 195 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_LINUX = 191 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_NOFCS = 230 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_NOFCS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_NONASK_PHY = 215 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_16_MAC_CPS = 188 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_16_MAC_CPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 #53466 +pkg syscall (freebsd-riscv64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPFILTER = 116 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPMB = 199 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPMB ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPMB_LINUX = 209 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPMB_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPNET = 226 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPOIB = 242 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPOIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPV4 = 228 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPV4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IPV6 = 229 #53466 +pkg syscall (freebsd-riscv64), const DLT_IPV6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_IP_OVER_FC = 122 #53466 +pkg syscall (freebsd-riscv64), const DLT_IP_OVER_FC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM1 = 137 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM2 = 135 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM_CEMIC = 238 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ATM_CEMIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_CHDLC = 181 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_CHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ES = 132 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ES ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ETHER = 178 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_FIBRECHANNEL = 234 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_FIBRECHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_FRELAY = 180 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_GGSN = 133 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_GGSN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ISM = 194 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ISM ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MFR = 134 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MFR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MLFR = 131 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MLFR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MLPPP = 130 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MLPPP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MONITOR = 164 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_MONITOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PIC_PEER = 174 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PIC_PEER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPP = 179 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPPOE = 167 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPPOE ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPPOE_ATM = 168 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_PPPOE_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_SERVICES = 136 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_SERVICES ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_SRX_E2E = 233 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_SRX_E2E ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ST = 200 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_ST ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_VP = 183 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_VP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_VS = 232 #53466 +pkg syscall (freebsd-riscv64), const DLT_JUNIPER_VS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LAPB_WITH_DIR = 207 #53466 +pkg syscall (freebsd-riscv64), const DLT_LAPB_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LAPD = 203 #53466 +pkg syscall (freebsd-riscv64), const DLT_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LIN = 212 #53466 +pkg syscall (freebsd-riscv64), const DLT_LIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_EVDEV = 216 #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_EVDEV ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_IRDA = 144 #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_IRDA ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_LAPD = 177 #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_PPP_WITHDIRECTION = 166 #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_PPP_WITHDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_SLL = 113 #53466 +pkg syscall (freebsd-riscv64), const DLT_LINUX_SLL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LOOP = 108 #53466 +pkg syscall (freebsd-riscv64), const DLT_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_LTALK = 114 #53466 +pkg syscall (freebsd-riscv64), const DLT_LTALK ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MATCHING_MAX = 246 #53466 +pkg syscall (freebsd-riscv64), const DLT_MATCHING_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MATCHING_MIN = 104 #53466 +pkg syscall (freebsd-riscv64), const DLT_MATCHING_MIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MFR = 182 #53466 +pkg syscall (freebsd-riscv64), const DLT_MFR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MOST = 211 #53466 +pkg syscall (freebsd-riscv64), const DLT_MOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MPEG_2_TS = 243 #53466 +pkg syscall (freebsd-riscv64), const DLT_MPEG_2_TS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MPLS = 219 #53466 +pkg syscall (freebsd-riscv64), const DLT_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP2 = 140 #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP2_WITH_PHDR = 139 #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP2_WITH_PHDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP3 = 141 #53466 +pkg syscall (freebsd-riscv64), const DLT_MTP3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_MUX27010 = 236 #53466 +pkg syscall (freebsd-riscv64), const DLT_MUX27010 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NETANALYZER = 240 #53466 +pkg syscall (freebsd-riscv64), const DLT_NETANALYZER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NETANALYZER_TRANSPARENT = 241 #53466 +pkg syscall (freebsd-riscv64), const DLT_NETANALYZER_TRANSPARENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NFC_LLCP = 245 #53466 +pkg syscall (freebsd-riscv64), const DLT_NFC_LLCP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NFLOG = 239 #53466 +pkg syscall (freebsd-riscv64), const DLT_NFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NG40 = 244 #53466 +pkg syscall (freebsd-riscv64), const DLT_NG40 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_NULL = 0 #53466 +pkg syscall (freebsd-riscv64), const DLT_NULL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PCI_EXP = 125 #53466 +pkg syscall (freebsd-riscv64), const DLT_PCI_EXP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PFLOG = 117 #53466 +pkg syscall (freebsd-riscv64), const DLT_PFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PFSYNC = 121 #53466 +pkg syscall (freebsd-riscv64), const DLT_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPI = 192 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPI ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP = 9 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_BSDOS = 16 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_BSDOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_ETHER = 51 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_PPPD = 166 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_PPPD ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_SERIAL = 50 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_WITH_DIR = 204 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_WITH_DIRECTION = 166 #53466 +pkg syscall (freebsd-riscv64), const DLT_PPP_WITH_DIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PRISM_HEADER = 119 #53466 +pkg syscall (freebsd-riscv64), const DLT_PRISM_HEADER ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_PRONET = 4 #53466 +pkg syscall (freebsd-riscv64), const DLT_PRONET ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_RAIF1 = 198 #53466 +pkg syscall (freebsd-riscv64), const DLT_RAIF1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_RAW = 12 #53466 +pkg syscall (freebsd-riscv64), const DLT_RAW ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_RIO = 124 #53466 +pkg syscall (freebsd-riscv64), const DLT_RIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SCCP = 142 #53466 +pkg syscall (freebsd-riscv64), const DLT_SCCP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SITA = 196 #53466 +pkg syscall (freebsd-riscv64), const DLT_SITA ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SLIP = 8 #53466 +pkg syscall (freebsd-riscv64), const DLT_SLIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SLIP_BSDOS = 15 #53466 +pkg syscall (freebsd-riscv64), const DLT_SLIP_BSDOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_STANAG_5066_D_PDU = 237 #53466 +pkg syscall (freebsd-riscv64), const DLT_STANAG_5066_D_PDU ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SUNATM = 123 #53466 +pkg syscall (freebsd-riscv64), const DLT_SUNATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_SYMANTEC_FIREWALL = 99 #53466 +pkg syscall (freebsd-riscv64), const DLT_SYMANTEC_FIREWALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_TZSP = 128 #53466 +pkg syscall (freebsd-riscv64), const DLT_TZSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USB = 186 #53466 +pkg syscall (freebsd-riscv64), const DLT_USB ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USB_LINUX = 189 #53466 +pkg syscall (freebsd-riscv64), const DLT_USB_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USB_LINUX_MMAPPED = 220 #53466 +pkg syscall (freebsd-riscv64), const DLT_USB_LINUX_MMAPPED ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER0 = 147 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER1 = 148 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER10 = 157 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER10 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER11 = 158 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER11 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER12 = 159 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER12 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER13 = 160 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER13 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER14 = 161 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER14 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER15 = 162 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER15 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER2 = 149 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER3 = 150 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER4 = 151 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER5 = 152 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER5 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER6 = 153 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER7 = 154 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER7 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER8 = 155 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER8 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_USER9 = 156 #53466 +pkg syscall (freebsd-riscv64), const DLT_USER9 ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_WIHART = 223 #53466 +pkg syscall (freebsd-riscv64), const DLT_WIHART ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_X2E_SERIAL = 213 #53466 +pkg syscall (freebsd-riscv64), const DLT_X2E_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const DLT_X2E_XORAYA = 214 #53466 +pkg syscall (freebsd-riscv64), const DLT_X2E_XORAYA ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_BLK = 6 #53466 +pkg syscall (freebsd-riscv64), const DT_BLK ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_CHR = 2 #53466 +pkg syscall (freebsd-riscv64), const DT_CHR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_DIR = 4 #53466 +pkg syscall (freebsd-riscv64), const DT_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_FIFO = 1 #53466 +pkg syscall (freebsd-riscv64), const DT_FIFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_LNK = 10 #53466 +pkg syscall (freebsd-riscv64), const DT_LNK ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_REG = 8 #53466 +pkg syscall (freebsd-riscv64), const DT_REG ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_SOCK = 12 #53466 +pkg syscall (freebsd-riscv64), const DT_SOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_UNKNOWN = 0 #53466 +pkg syscall (freebsd-riscv64), const DT_UNKNOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const DT_WHT = 14 #53466 +pkg syscall (freebsd-riscv64), const DT_WHT ideal-int #53466 +pkg syscall (freebsd-riscv64), const E2BIG = 7 #53466 +pkg syscall (freebsd-riscv64), const EACCES = 13 #53466 +pkg syscall (freebsd-riscv64), const EADDRINUSE = 48 #53466 +pkg syscall (freebsd-riscv64), const EADDRNOTAVAIL = 49 #53466 +pkg syscall (freebsd-riscv64), const EAFNOSUPPORT = 47 #53466 +pkg syscall (freebsd-riscv64), const EAGAIN = 35 #53466 +pkg syscall (freebsd-riscv64), const EALREADY = 37 #53466 +pkg syscall (freebsd-riscv64), const EAUTH = 80 #53466 +pkg syscall (freebsd-riscv64), const EAUTH Errno #53466 +pkg syscall (freebsd-riscv64), const EBADF = 9 #53466 +pkg syscall (freebsd-riscv64), const EBADMSG = 89 #53466 +pkg syscall (freebsd-riscv64), const EBADMSG Errno #53466 +pkg syscall (freebsd-riscv64), const EBADRPC = 72 #53466 +pkg syscall (freebsd-riscv64), const EBADRPC Errno #53466 +pkg syscall (freebsd-riscv64), const EBUSY = 16 #53466 +pkg syscall (freebsd-riscv64), const ECANCELED = 85 #53466 +pkg syscall (freebsd-riscv64), const ECAPMODE = 94 #53466 +pkg syscall (freebsd-riscv64), const ECAPMODE Errno #53466 +pkg syscall (freebsd-riscv64), const ECHILD = 10 #53466 +pkg syscall (freebsd-riscv64), const ECHO = 8 #53466 +pkg syscall (freebsd-riscv64), const ECHO ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHOCTL = 64 #53466 +pkg syscall (freebsd-riscv64), const ECHOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHOE = 2 #53466 +pkg syscall (freebsd-riscv64), const ECHOE ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHOK = 4 #53466 +pkg syscall (freebsd-riscv64), const ECHOK ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHOKE = 1 #53466 +pkg syscall (freebsd-riscv64), const ECHOKE ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHONL = 16 #53466 +pkg syscall (freebsd-riscv64), const ECHONL ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECHOPRT = 32 #53466 +pkg syscall (freebsd-riscv64), const ECHOPRT ideal-int #53466 +pkg syscall (freebsd-riscv64), const ECONNABORTED = 53 #53466 +pkg syscall (freebsd-riscv64), const ECONNREFUSED = 61 #53466 +pkg syscall (freebsd-riscv64), const ECONNRESET = 54 #53466 +pkg syscall (freebsd-riscv64), const EDEADLK = 11 #53466 +pkg syscall (freebsd-riscv64), const EDESTADDRREQ = 39 #53466 +pkg syscall (freebsd-riscv64), const EDOM = 33 #53466 +pkg syscall (freebsd-riscv64), const EDOOFUS = 88 #53466 +pkg syscall (freebsd-riscv64), const EDOOFUS Errno #53466 +pkg syscall (freebsd-riscv64), const EDQUOT = 69 #53466 +pkg syscall (freebsd-riscv64), const EEXIST = 17 #53466 +pkg syscall (freebsd-riscv64), const EFAULT = 14 #53466 +pkg syscall (freebsd-riscv64), const EFBIG = 27 #53466 +pkg syscall (freebsd-riscv64), const EFTYPE = 79 #53466 +pkg syscall (freebsd-riscv64), const EFTYPE Errno #53466 +pkg syscall (freebsd-riscv64), const EHOSTDOWN = 64 #53466 +pkg syscall (freebsd-riscv64), const EHOSTUNREACH = 65 #53466 +pkg syscall (freebsd-riscv64), const EIDRM = 82 #53466 +pkg syscall (freebsd-riscv64), const EILSEQ = 86 #53466 +pkg syscall (freebsd-riscv64), const EINPROGRESS = 36 #53466 +pkg syscall (freebsd-riscv64), const EINTR = 4 #53466 +pkg syscall (freebsd-riscv64), const EINVAL = 22 #53466 +pkg syscall (freebsd-riscv64), const EIO = 5 #53466 +pkg syscall (freebsd-riscv64), const EISCONN = 56 #53466 +pkg syscall (freebsd-riscv64), const EISDIR = 21 #53466 +pkg syscall (freebsd-riscv64), const ELAST = 96 #53466 +pkg syscall (freebsd-riscv64), const ELAST Errno #53466 +pkg syscall (freebsd-riscv64), const ELOOP = 62 #53466 +pkg syscall (freebsd-riscv64), const EMFILE = 24 #53466 +pkg syscall (freebsd-riscv64), const EMLINK = 31 #53466 +pkg syscall (freebsd-riscv64), const EMSGSIZE = 40 #53466 +pkg syscall (freebsd-riscv64), const EMULTIHOP = 90 #53466 +pkg syscall (freebsd-riscv64), const EMULTIHOP Errno #53466 +pkg syscall (freebsd-riscv64), const ENAMETOOLONG = 63 #53466 +pkg syscall (freebsd-riscv64), const ENEEDAUTH = 81 #53466 +pkg syscall (freebsd-riscv64), const ENEEDAUTH Errno #53466 +pkg syscall (freebsd-riscv64), const ENETDOWN = 50 #53466 +pkg syscall (freebsd-riscv64), const ENETRESET = 52 #53466 +pkg syscall (freebsd-riscv64), const ENETUNREACH = 51 #53466 +pkg syscall (freebsd-riscv64), const ENFILE = 23 #53466 +pkg syscall (freebsd-riscv64), const ENOATTR = 87 #53466 +pkg syscall (freebsd-riscv64), const ENOATTR Errno #53466 +pkg syscall (freebsd-riscv64), const ENOBUFS = 55 #53466 +pkg syscall (freebsd-riscv64), const ENODEV = 19 #53466 +pkg syscall (freebsd-riscv64), const ENOEXEC = 8 #53466 +pkg syscall (freebsd-riscv64), const ENOLCK = 77 #53466 +pkg syscall (freebsd-riscv64), const ENOLINK = 91 #53466 +pkg syscall (freebsd-riscv64), const ENOLINK Errno #53466 +pkg syscall (freebsd-riscv64), const ENOMEM = 12 #53466 +pkg syscall (freebsd-riscv64), const ENOMSG = 83 #53466 +pkg syscall (freebsd-riscv64), const ENOPROTOOPT = 42 #53466 +pkg syscall (freebsd-riscv64), const ENOSPC = 28 #53466 +pkg syscall (freebsd-riscv64), const ENOSYS = 78 #53466 +pkg syscall (freebsd-riscv64), const ENOTBLK = 15 #53466 +pkg syscall (freebsd-riscv64), const ENOTCAPABLE = 93 #53466 +pkg syscall (freebsd-riscv64), const ENOTCAPABLE Errno #53466 +pkg syscall (freebsd-riscv64), const ENOTCONN = 57 #53466 +pkg syscall (freebsd-riscv64), const ENOTDIR = 20 #53466 +pkg syscall (freebsd-riscv64), const ENOTEMPTY = 66 #53466 +pkg syscall (freebsd-riscv64), const ENOTRECOVERABLE = 95 #53466 +pkg syscall (freebsd-riscv64), const ENOTRECOVERABLE Errno #53466 +pkg syscall (freebsd-riscv64), const ENOTSOCK = 38 #53466 +pkg syscall (freebsd-riscv64), const ENOTSUP = 45 #53466 +pkg syscall (freebsd-riscv64), const ENOTTY = 25 #53466 +pkg syscall (freebsd-riscv64), const ENXIO = 6 #53466 +pkg syscall (freebsd-riscv64), const EOPNOTSUPP = 45 #53466 +pkg syscall (freebsd-riscv64), const EOVERFLOW = 84 #53466 +pkg syscall (freebsd-riscv64), const EOWNERDEAD = 96 #53466 +pkg syscall (freebsd-riscv64), const EOWNERDEAD Errno #53466 +pkg syscall (freebsd-riscv64), const EPERM = 1 #53466 +pkg syscall (freebsd-riscv64), const EPFNOSUPPORT = 46 #53466 +pkg syscall (freebsd-riscv64), const EPIPE = 32 #53466 +pkg syscall (freebsd-riscv64), const EPROCLIM = 67 #53466 +pkg syscall (freebsd-riscv64), const EPROCLIM Errno #53466 +pkg syscall (freebsd-riscv64), const EPROCUNAVAIL = 76 #53466 +pkg syscall (freebsd-riscv64), const EPROCUNAVAIL Errno #53466 +pkg syscall (freebsd-riscv64), const EPROGMISMATCH = 75 #53466 +pkg syscall (freebsd-riscv64), const EPROGMISMATCH Errno #53466 +pkg syscall (freebsd-riscv64), const EPROGUNAVAIL = 74 #53466 +pkg syscall (freebsd-riscv64), const EPROGUNAVAIL Errno #53466 +pkg syscall (freebsd-riscv64), const EPROTO = 92 #53466 +pkg syscall (freebsd-riscv64), const EPROTO Errno #53466 +pkg syscall (freebsd-riscv64), const EPROTONOSUPPORT = 43 #53466 +pkg syscall (freebsd-riscv64), const EPROTOTYPE = 41 #53466 +pkg syscall (freebsd-riscv64), const ERANGE = 34 #53466 +pkg syscall (freebsd-riscv64), const EREMOTE = 71 #53466 +pkg syscall (freebsd-riscv64), const EROFS = 30 #53466 +pkg syscall (freebsd-riscv64), const ERPCMISMATCH = 73 #53466 +pkg syscall (freebsd-riscv64), const ERPCMISMATCH Errno #53466 +pkg syscall (freebsd-riscv64), const ESHUTDOWN = 58 #53466 +pkg syscall (freebsd-riscv64), const ESOCKTNOSUPPORT = 44 #53466 +pkg syscall (freebsd-riscv64), const ESPIPE = 29 #53466 +pkg syscall (freebsd-riscv64), const ESRCH = 3 #53466 +pkg syscall (freebsd-riscv64), const ESTALE = 70 #53466 +pkg syscall (freebsd-riscv64), const ETIMEDOUT = 60 #53466 +pkg syscall (freebsd-riscv64), const ETOOMANYREFS = 59 #53466 +pkg syscall (freebsd-riscv64), const ETXTBSY = 26 #53466 +pkg syscall (freebsd-riscv64), const EUSERS = 68 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_AIO = -3 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_AIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_FS = -9 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_FS ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_LIO = -10 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_LIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_PROC = -5 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_READ = -1 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_SIGNAL = -6 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_SIGNAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_SYSCOUNT = 11 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_SYSCOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_TIMER = -7 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_TIMER ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_USER = -11 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_USER ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_VNODE = -4 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_VNODE ideal-int #53466 +pkg syscall (freebsd-riscv64), const EVFILT_WRITE = -2 #53466 +pkg syscall (freebsd-riscv64), const EVFILT_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_ADD = 1 #53466 +pkg syscall (freebsd-riscv64), const EV_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_CLEAR = 32 #53466 +pkg syscall (freebsd-riscv64), const EV_CLEAR ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_DELETE = 2 #53466 +pkg syscall (freebsd-riscv64), const EV_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_DISABLE = 8 #53466 +pkg syscall (freebsd-riscv64), const EV_DISABLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_DISPATCH = 128 #53466 +pkg syscall (freebsd-riscv64), const EV_DISPATCH ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_DROP = 4096 #53466 +pkg syscall (freebsd-riscv64), const EV_DROP ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_ENABLE = 4 #53466 +pkg syscall (freebsd-riscv64), const EV_ENABLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_EOF = 32768 #53466 +pkg syscall (freebsd-riscv64), const EV_EOF ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_ERROR = 16384 #53466 +pkg syscall (freebsd-riscv64), const EV_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_FLAG1 = 8192 #53466 +pkg syscall (freebsd-riscv64), const EV_FLAG1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_ONESHOT = 16 #53466 +pkg syscall (freebsd-riscv64), const EV_ONESHOT ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_RECEIPT = 64 #53466 +pkg syscall (freebsd-riscv64), const EV_RECEIPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const EV_SYSFLAGS = 61440 #53466 +pkg syscall (freebsd-riscv64), const EV_SYSFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const EWOULDBLOCK = 35 #53466 +pkg syscall (freebsd-riscv64), const EXDEV = 18 #53466 +pkg syscall (freebsd-riscv64), const EXTA = 19200 #53466 +pkg syscall (freebsd-riscv64), const EXTA ideal-int #53466 +pkg syscall (freebsd-riscv64), const EXTB = 38400 #53466 +pkg syscall (freebsd-riscv64), const EXTB ideal-int #53466 +pkg syscall (freebsd-riscv64), const EXTPROC = 2048 #53466 +pkg syscall (freebsd-riscv64), const EXTPROC ideal-int #53466 +pkg syscall (freebsd-riscv64), const FD_CLOEXEC = 1 #53466 +pkg syscall (freebsd-riscv64), const FD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const FD_SETSIZE = 1024 #53466 +pkg syscall (freebsd-riscv64), const FD_SETSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const FLUSHO = 8388608 #53466 +pkg syscall (freebsd-riscv64), const FLUSHO ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_CANCEL = 5 #53466 +pkg syscall (freebsd-riscv64), const F_CANCEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_DUP2FD = 10 #53466 +pkg syscall (freebsd-riscv64), const F_DUP2FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_DUP2FD_CLOEXEC = 18 #53466 +pkg syscall (freebsd-riscv64), const F_DUP2FD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_DUPFD = 0 #53466 +pkg syscall (freebsd-riscv64), const F_DUPFD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_DUPFD_CLOEXEC = 17 #53466 +pkg syscall (freebsd-riscv64), const F_DUPFD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_GETFD = 1 #53466 +pkg syscall (freebsd-riscv64), const F_GETFD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_GETFL = 3 #53466 +pkg syscall (freebsd-riscv64), const F_GETFL ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_GETLK = 11 #53466 +pkg syscall (freebsd-riscv64), const F_GETLK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_GETOWN = 5 #53466 +pkg syscall (freebsd-riscv64), const F_GETOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_OGETLK = 7 #53466 +pkg syscall (freebsd-riscv64), const F_OGETLK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_OK = 0 #53466 +pkg syscall (freebsd-riscv64), const F_OK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_OSETLK = 8 #53466 +pkg syscall (freebsd-riscv64), const F_OSETLK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_OSETLKW = 9 #53466 +pkg syscall (freebsd-riscv64), const F_OSETLKW ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_RDAHEAD = 16 #53466 +pkg syscall (freebsd-riscv64), const F_RDAHEAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_RDLCK = 1 #53466 +pkg syscall (freebsd-riscv64), const F_RDLCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_READAHEAD = 15 #53466 +pkg syscall (freebsd-riscv64), const F_READAHEAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETFD = 2 #53466 +pkg syscall (freebsd-riscv64), const F_SETFD ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETFL = 4 #53466 +pkg syscall (freebsd-riscv64), const F_SETFL ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETLK = 12 #53466 +pkg syscall (freebsd-riscv64), const F_SETLK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETLKW = 13 #53466 +pkg syscall (freebsd-riscv64), const F_SETLKW ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETLK_REMOTE = 14 #53466 +pkg syscall (freebsd-riscv64), const F_SETLK_REMOTE ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_SETOWN = 6 #53466 +pkg syscall (freebsd-riscv64), const F_SETOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_UNLCK = 2 #53466 +pkg syscall (freebsd-riscv64), const F_UNLCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_UNLCKSYS = 4 #53466 +pkg syscall (freebsd-riscv64), const F_UNLCKSYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const F_WRLCK = 3 #53466 +pkg syscall (freebsd-riscv64), const F_WRLCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const HUPCL = 16384 #53466 +pkg syscall (freebsd-riscv64), const HUPCL ideal-int #53466 +pkg syscall (freebsd-riscv64), const ICANON = 256 #53466 +pkg syscall (freebsd-riscv64), const ICANON ideal-int #53466 +pkg syscall (freebsd-riscv64), const ICMP6_FILTER = 18 #53466 +pkg syscall (freebsd-riscv64), const ICMP6_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const ICRNL = 256 #53466 +pkg syscall (freebsd-riscv64), const ICRNL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IEXTEN = 1024 #53466 +pkg syscall (freebsd-riscv64), const IEXTEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFAN_ARRIVAL = 0 #53466 +pkg syscall (freebsd-riscv64), const IFAN_ARRIVAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFAN_DEPARTURE = 1 #53466 +pkg syscall (freebsd-riscv64), const IFAN_DEPARTURE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_ALLMULTI = 512 #53466 +pkg syscall (freebsd-riscv64), const IFF_ALLMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_ALTPHYS = 16384 #53466 +pkg syscall (freebsd-riscv64), const IFF_ALTPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_CANTCHANGE = 2199410 #53466 +pkg syscall (freebsd-riscv64), const IFF_CANTCHANGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_CANTCONFIG = 65536 #53466 +pkg syscall (freebsd-riscv64), const IFF_CANTCONFIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_DEBUG = 4 #53466 +pkg syscall (freebsd-riscv64), const IFF_DEBUG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_DRV_OACTIVE = 1024 #53466 +pkg syscall (freebsd-riscv64), const IFF_DRV_OACTIVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_DRV_RUNNING = 64 #53466 +pkg syscall (freebsd-riscv64), const IFF_DRV_RUNNING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_DYING = 2097152 #53466 +pkg syscall (freebsd-riscv64), const IFF_DYING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK0 = 4096 #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK1 = 8192 #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK2 = 16384 #53466 +pkg syscall (freebsd-riscv64), const IFF_LINK2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_LOOPBACK = 8 #53466 +pkg syscall (freebsd-riscv64), const IFF_MONITOR = 262144 #53466 +pkg syscall (freebsd-riscv64), const IFF_MONITOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_MULTICAST = 32768 #53466 +pkg syscall (freebsd-riscv64), const IFF_NOARP = 128 #53466 +pkg syscall (freebsd-riscv64), const IFF_NOARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_OACTIVE = 1024 #53466 +pkg syscall (freebsd-riscv64), const IFF_OACTIVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_POINTOPOINT = 16 #53466 +pkg syscall (freebsd-riscv64), const IFF_POINTOPOINT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_PPROMISC = 131072 #53466 +pkg syscall (freebsd-riscv64), const IFF_PPROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_PROMISC = 256 #53466 +pkg syscall (freebsd-riscv64), const IFF_PROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_RENAMING = 4194304 #53466 +pkg syscall (freebsd-riscv64), const IFF_RENAMING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_RUNNING = 64 #53466 +pkg syscall (freebsd-riscv64), const IFF_RUNNING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_SIMPLEX = 2048 #53466 +pkg syscall (freebsd-riscv64), const IFF_SIMPLEX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_SMART = 32 #53466 +pkg syscall (freebsd-riscv64), const IFF_SMART ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFF_STATICARP = 524288 #53466 +pkg syscall (freebsd-riscv64), const IFF_STATICARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFNAMSIZ = 16 #53466 +pkg syscall (freebsd-riscv64), const IFNAMSIZ ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_1822 = 2 #53466 +pkg syscall (freebsd-riscv64), const IFT_1822 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_A12MPPSWITCH = 130 #53466 +pkg syscall (freebsd-riscv64), const IFT_A12MPPSWITCH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_AAL2 = 187 #53466 +pkg syscall (freebsd-riscv64), const IFT_AAL2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_AAL5 = 49 #53466 +pkg syscall (freebsd-riscv64), const IFT_AAL5 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ADSL = 94 #53466 +pkg syscall (freebsd-riscv64), const IFT_ADSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_AFLANE8023 = 59 #53466 +pkg syscall (freebsd-riscv64), const IFT_AFLANE8023 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_AFLANE8025 = 60 #53466 +pkg syscall (freebsd-riscv64), const IFT_AFLANE8025 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ARAP = 88 #53466 +pkg syscall (freebsd-riscv64), const IFT_ARAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ARCNET = 35 #53466 +pkg syscall (freebsd-riscv64), const IFT_ARCNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ARCNETPLUS = 36 #53466 +pkg syscall (freebsd-riscv64), const IFT_ARCNETPLUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ASYNC = 84 #53466 +pkg syscall (freebsd-riscv64), const IFT_ASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATM = 37 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMDXI = 105 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMDXI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMFUNI = 106 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMFUNI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMIMA = 107 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMIMA ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMLOGICAL = 80 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMLOGICAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMRADIO = 189 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMRADIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMSUBINTERFACE = 134 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMSUBINTERFACE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMVCIENDPT = 194 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMVCIENDPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMVIRTUAL = 149 #53466 +pkg syscall (freebsd-riscv64), const IFT_ATMVIRTUAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_BGPPOLICYACCOUNTING = 162 #53466 +pkg syscall (freebsd-riscv64), const IFT_BGPPOLICYACCOUNTING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_BRIDGE = 209 #53466 +pkg syscall (freebsd-riscv64), const IFT_BRIDGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_BSC = 83 #53466 +pkg syscall (freebsd-riscv64), const IFT_BSC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CARP = 248 #53466 +pkg syscall (freebsd-riscv64), const IFT_CARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CCTEMUL = 61 #53466 +pkg syscall (freebsd-riscv64), const IFT_CCTEMUL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CEPT = 19 #53466 +pkg syscall (freebsd-riscv64), const IFT_CEPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CES = 133 #53466 +pkg syscall (freebsd-riscv64), const IFT_CES ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CHANNEL = 70 #53466 +pkg syscall (freebsd-riscv64), const IFT_CHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_CNR = 85 #53466 +pkg syscall (freebsd-riscv64), const IFT_CNR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_COFFEE = 132 #53466 +pkg syscall (freebsd-riscv64), const IFT_COFFEE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_COMPOSITELINK = 155 #53466 +pkg syscall (freebsd-riscv64), const IFT_COMPOSITELINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DCN = 141 #53466 +pkg syscall (freebsd-riscv64), const IFT_DCN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DIGITALPOWERLINE = 138 #53466 +pkg syscall (freebsd-riscv64), const IFT_DIGITALPOWERLINE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 #53466 +pkg syscall (freebsd-riscv64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DLSW = 74 #53466 +pkg syscall (freebsd-riscv64), const IFT_DLSW ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEDOWNSTREAM = 128 #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEMACLAYER = 127 #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEUPSTREAM = 129 #53466 +pkg syscall (freebsd-riscv64), const IFT_DOCSCABLEUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DS0 = 81 #53466 +pkg syscall (freebsd-riscv64), const IFT_DS0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DS0BUNDLE = 82 #53466 +pkg syscall (freebsd-riscv64), const IFT_DS0BUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DS1FDL = 170 #53466 +pkg syscall (freebsd-riscv64), const IFT_DS1FDL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DS3 = 30 #53466 +pkg syscall (freebsd-riscv64), const IFT_DS3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DTM = 140 #53466 +pkg syscall (freebsd-riscv64), const IFT_DTM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBASILN = 172 #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBASILN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBASIOUT = 173 #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBASIOUT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCDOWNSTREAM = 147 #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCMACLAYER = 146 #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCUPSTREAM = 148 #53466 +pkg syscall (freebsd-riscv64), const IFT_DVBRCCUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ENC = 244 #53466 +pkg syscall (freebsd-riscv64), const IFT_ENC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_EON = 25 #53466 +pkg syscall (freebsd-riscv64), const IFT_EON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_EPLRS = 87 #53466 +pkg syscall (freebsd-riscv64), const IFT_EPLRS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ESCON = 73 #53466 +pkg syscall (freebsd-riscv64), const IFT_ESCON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ETHER = 6 #53466 +pkg syscall (freebsd-riscv64), const IFT_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FAITH = 242 #53466 +pkg syscall (freebsd-riscv64), const IFT_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FAST = 125 #53466 +pkg syscall (freebsd-riscv64), const IFT_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FASTETHER = 62 #53466 +pkg syscall (freebsd-riscv64), const IFT_FASTETHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FASTETHERFX = 69 #53466 +pkg syscall (freebsd-riscv64), const IFT_FASTETHERFX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FDDI = 15 #53466 +pkg syscall (freebsd-riscv64), const IFT_FDDI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FIBRECHANNEL = 56 #53466 +pkg syscall (freebsd-riscv64), const IFT_FIBRECHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRAMERELAYINTERCONNECT = 58 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRAMERELAYINTERCONNECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRAMERELAYMPI = 92 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRAMERELAYMPI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRDLCIENDPT = 193 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRDLCIENDPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRELAY = 32 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRELAYDCE = 44 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRELAYDCE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRF16MFRBUNDLE = 163 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRF16MFRBUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_FRFORWARD = 158 #53466 +pkg syscall (freebsd-riscv64), const IFT_FRFORWARD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_G703AT2MB = 67 #53466 +pkg syscall (freebsd-riscv64), const IFT_G703AT2MB ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_G703AT64K = 66 #53466 +pkg syscall (freebsd-riscv64), const IFT_G703AT64K ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_GIF = 240 #53466 +pkg syscall (freebsd-riscv64), const IFT_GIF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_GIGABITETHERNET = 117 #53466 +pkg syscall (freebsd-riscv64), const IFT_GIGABITETHERNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_GR303IDT = 178 #53466 +pkg syscall (freebsd-riscv64), const IFT_GR303IDT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_GR303RDT = 177 #53466 +pkg syscall (freebsd-riscv64), const IFT_GR303RDT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_H323GATEKEEPER = 164 #53466 +pkg syscall (freebsd-riscv64), const IFT_H323GATEKEEPER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_H323PROXY = 165 #53466 +pkg syscall (freebsd-riscv64), const IFT_H323PROXY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HDH1822 = 3 #53466 +pkg syscall (freebsd-riscv64), const IFT_HDH1822 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HDLC = 118 #53466 +pkg syscall (freebsd-riscv64), const IFT_HDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HDSL2 = 168 #53466 +pkg syscall (freebsd-riscv64), const IFT_HDSL2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPERLAN2 = 183 #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPERLAN2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPPI = 47 #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPPI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPPIINTERFACE = 57 #53466 +pkg syscall (freebsd-riscv64), const IFT_HIPPIINTERFACE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HOSTPAD = 90 #53466 +pkg syscall (freebsd-riscv64), const IFT_HOSTPAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HSSI = 46 #53466 +pkg syscall (freebsd-riscv64), const IFT_HSSI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_HY = 14 #53466 +pkg syscall (freebsd-riscv64), const IFT_HY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IBM370PARCHAN = 72 #53466 +pkg syscall (freebsd-riscv64), const IFT_IBM370PARCHAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IDSL = 154 #53466 +pkg syscall (freebsd-riscv64), const IFT_IDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE1394 = 144 #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE1394 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE80211 = 71 #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE80212 = 55 #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE80212 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE8023ADLAG = 161 #53466 +pkg syscall (freebsd-riscv64), const IFT_IEEE8023ADLAG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IFGSN = 145 #53466 +pkg syscall (freebsd-riscv64), const IFT_IFGSN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IMT = 190 #53466 +pkg syscall (freebsd-riscv64), const IFT_IMT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_INFINIBAND = 199 #53466 +pkg syscall (freebsd-riscv64), const IFT_INFINIBAND ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_INTERLEAVE = 124 #53466 +pkg syscall (freebsd-riscv64), const IFT_INTERLEAVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IP = 126 #53466 +pkg syscall (freebsd-riscv64), const IFT_IP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPFORWARD = 142 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPFORWARD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERATM = 114 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERCDLC = 109 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERCDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERCLAW = 110 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPOVERCLAW ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPSWITCH = 78 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPSWITCH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_IPXIP = 249 #53466 +pkg syscall (freebsd-riscv64), const IFT_IPXIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDN = 63 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNBASIC = 20 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNBASIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNPRIMARY = 21 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNPRIMARY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNS = 75 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNU = 76 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISDNU ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88022LLC = 41 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88022LLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88023 = 7 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88023 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88024 = 8 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88024 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025 = 9 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025CRFPINT = 98 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025CRFPINT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025DTR = 86 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025DTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025FIBER = 115 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88025FIBER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88026 = 10 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISO88026 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ISUP = 179 #53466 +pkg syscall (freebsd-riscv64), const IFT_ISUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_L2VLAN = 135 #53466 +pkg syscall (freebsd-riscv64), const IFT_L2VLAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_L3IPVLAN = 136 #53466 +pkg syscall (freebsd-riscv64), const IFT_L3IPVLAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_L3IPXVLAN = 137 #53466 +pkg syscall (freebsd-riscv64), const IFT_L3IPXVLAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPB = 16 #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPB ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPD = 77 #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPF = 119 #53466 +pkg syscall (freebsd-riscv64), const IFT_LAPF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_LOCALTALK = 42 #53466 +pkg syscall (freebsd-riscv64), const IFT_LOCALTALK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_LOOP = 24 #53466 +pkg syscall (freebsd-riscv64), const IFT_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MEDIAMAILOVERIP = 139 #53466 +pkg syscall (freebsd-riscv64), const IFT_MEDIAMAILOVERIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MFSIGLINK = 167 #53466 +pkg syscall (freebsd-riscv64), const IFT_MFSIGLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MIOX25 = 38 #53466 +pkg syscall (freebsd-riscv64), const IFT_MIOX25 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MODEM = 48 #53466 +pkg syscall (freebsd-riscv64), const IFT_MODEM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MPC = 113 #53466 +pkg syscall (freebsd-riscv64), const IFT_MPC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MPLS = 166 #53466 +pkg syscall (freebsd-riscv64), const IFT_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MPLSTUNNEL = 150 #53466 +pkg syscall (freebsd-riscv64), const IFT_MPLSTUNNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MSDSL = 143 #53466 +pkg syscall (freebsd-riscv64), const IFT_MSDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MVL = 191 #53466 +pkg syscall (freebsd-riscv64), const IFT_MVL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_MYRINET = 99 #53466 +pkg syscall (freebsd-riscv64), const IFT_MYRINET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_NFAS = 175 #53466 +pkg syscall (freebsd-riscv64), const IFT_NFAS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_NSIP = 27 #53466 +pkg syscall (freebsd-riscv64), const IFT_NSIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_OPTICALCHANNEL = 195 #53466 +pkg syscall (freebsd-riscv64), const IFT_OPTICALCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_OPTICALTRANSPORT = 196 #53466 +pkg syscall (freebsd-riscv64), const IFT_OPTICALTRANSPORT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_OTHER = 1 #53466 +pkg syscall (freebsd-riscv64), const IFT_OTHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_P10 = 12 #53466 +pkg syscall (freebsd-riscv64), const IFT_P10 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_P80 = 13 #53466 +pkg syscall (freebsd-riscv64), const IFT_P80 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PARA = 34 #53466 +pkg syscall (freebsd-riscv64), const IFT_PARA ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PFLOG = 246 #53466 +pkg syscall (freebsd-riscv64), const IFT_PFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PFSYNC = 247 #53466 +pkg syscall (freebsd-riscv64), const IFT_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PLC = 174 #53466 +pkg syscall (freebsd-riscv64), const IFT_PLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_POS = 171 #53466 +pkg syscall (freebsd-riscv64), const IFT_POS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PPP = 23 #53466 +pkg syscall (freebsd-riscv64), const IFT_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PPPMULTILINKBUNDLE = 108 #53466 +pkg syscall (freebsd-riscv64), const IFT_PPPMULTILINKBUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPBWAP2MP = 184 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPBWAP2MP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPCNLS = 89 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPCNLS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSMACLAYER = 180 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPMUX = 54 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPMUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPVIRTUAL = 53 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPVIRTUAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPWIRELESSP2P = 157 #53466 +pkg syscall (freebsd-riscv64), const IFT_PROPWIRELESSP2P ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PTPSERIAL = 22 #53466 +pkg syscall (freebsd-riscv64), const IFT_PTPSERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_PVC = 241 #53466 +pkg syscall (freebsd-riscv64), const IFT_PVC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_QLLC = 68 #53466 +pkg syscall (freebsd-riscv64), const IFT_QLLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_RADIOMAC = 188 #53466 +pkg syscall (freebsd-riscv64), const IFT_RADIOMAC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_RADSL = 95 #53466 +pkg syscall (freebsd-riscv64), const IFT_RADSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_REACHDSL = 192 #53466 +pkg syscall (freebsd-riscv64), const IFT_REACHDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_RFC1483 = 159 #53466 +pkg syscall (freebsd-riscv64), const IFT_RFC1483 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_RS232 = 33 #53466 +pkg syscall (freebsd-riscv64), const IFT_RS232 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_RSRB = 79 #53466 +pkg syscall (freebsd-riscv64), const IFT_RSRB ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SDLC = 17 #53466 +pkg syscall (freebsd-riscv64), const IFT_SDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SDSL = 96 #53466 +pkg syscall (freebsd-riscv64), const IFT_SDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SHDSL = 169 #53466 +pkg syscall (freebsd-riscv64), const IFT_SHDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SIP = 31 #53466 +pkg syscall (freebsd-riscv64), const IFT_SIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SLIP = 28 #53466 +pkg syscall (freebsd-riscv64), const IFT_SLIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SMDSDXI = 43 #53466 +pkg syscall (freebsd-riscv64), const IFT_SMDSDXI ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SMDSICIP = 52 #53466 +pkg syscall (freebsd-riscv64), const IFT_SMDSICIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SONET = 39 #53466 +pkg syscall (freebsd-riscv64), const IFT_SONET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETOVERHEADCHANNEL = 185 #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETOVERHEADCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETPATH = 50 #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETPATH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETVT = 51 #53466 +pkg syscall (freebsd-riscv64), const IFT_SONETVT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SRP = 151 #53466 +pkg syscall (freebsd-riscv64), const IFT_SRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_SS7SIGLINK = 156 #53466 +pkg syscall (freebsd-riscv64), const IFT_SS7SIGLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_STACKTOSTACK = 111 #53466 +pkg syscall (freebsd-riscv64), const IFT_STACKTOSTACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_STARLAN = 11 #53466 +pkg syscall (freebsd-riscv64), const IFT_STARLAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_STF = 215 #53466 +pkg syscall (freebsd-riscv64), const IFT_STF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_T1 = 18 #53466 +pkg syscall (freebsd-riscv64), const IFT_T1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_TDLC = 116 #53466 +pkg syscall (freebsd-riscv64), const IFT_TDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_TERMPAD = 91 #53466 +pkg syscall (freebsd-riscv64), const IFT_TERMPAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_TR008 = 176 #53466 +pkg syscall (freebsd-riscv64), const IFT_TR008 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_TRANSPHDLC = 123 #53466 +pkg syscall (freebsd-riscv64), const IFT_TRANSPHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_TUNNEL = 131 #53466 +pkg syscall (freebsd-riscv64), const IFT_TUNNEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_ULTRA = 29 #53466 +pkg syscall (freebsd-riscv64), const IFT_ULTRA ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_USB = 160 #53466 +pkg syscall (freebsd-riscv64), const IFT_USB ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_V11 = 64 #53466 +pkg syscall (freebsd-riscv64), const IFT_V11 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_V35 = 45 #53466 +pkg syscall (freebsd-riscv64), const IFT_V35 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_V36 = 65 #53466 +pkg syscall (freebsd-riscv64), const IFT_V36 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_V37 = 120 #53466 +pkg syscall (freebsd-riscv64), const IFT_V37 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VDSL = 97 #53466 +pkg syscall (freebsd-riscv64), const IFT_VDSL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VIRTUALIPADDRESS = 112 #53466 +pkg syscall (freebsd-riscv64), const IFT_VIRTUALIPADDRESS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEEM = 100 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEEM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEENCAP = 103 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEENCAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEFXO = 101 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEFXO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEFXS = 102 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEFXS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERATM = 152 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERATM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERFRAMERELAY = 153 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERFRAMERELAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERIP = 104 #53466 +pkg syscall (freebsd-riscv64), const IFT_VOICEOVERIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X213 = 93 #53466 +pkg syscall (freebsd-riscv64), const IFT_X213 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X25 = 5 #53466 +pkg syscall (freebsd-riscv64), const IFT_X25 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X25DDN = 4 #53466 +pkg syscall (freebsd-riscv64), const IFT_X25DDN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X25HUNTGROUP = 122 #53466 +pkg syscall (freebsd-riscv64), const IFT_X25HUNTGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X25MLP = 121 #53466 +pkg syscall (freebsd-riscv64), const IFT_X25MLP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_X25PLE = 40 #53466 +pkg syscall (freebsd-riscv64), const IFT_X25PLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IFT_XETHER = 26 #53466 +pkg syscall (freebsd-riscv64), const IFT_XETHER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IGNBRK = 1 #53466 +pkg syscall (freebsd-riscv64), const IGNBRK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IGNCR = 128 #53466 +pkg syscall (freebsd-riscv64), const IGNCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IGNPAR = 4 #53466 +pkg syscall (freebsd-riscv64), const IGNPAR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IMAXBEL = 8192 #53466 +pkg syscall (freebsd-riscv64), const IMAXBEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const INLCR = 64 #53466 +pkg syscall (freebsd-riscv64), const INLCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const INPCK = 16 #53466 +pkg syscall (freebsd-riscv64), const INPCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_HOST = 16777215 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_MAX = 128 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_NET = 4278190080 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_NET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_NSHIFT = 24 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSA_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_HOST = 65535 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_MAX = 65536 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_NET = 4294901760 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_NET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_NSHIFT = 16 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSB_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_HOST = 255 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_NET = 4294967040 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_NET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_NSHIFT = 8 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSC_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_HOST = 268435455 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_NET = 4026531840 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_NET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_NSHIFT = 28 #53466 +pkg syscall (freebsd-riscv64), const IN_CLASSD_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_LOOPBACKNET = 127 #53466 +pkg syscall (freebsd-riscv64), const IN_LOOPBACKNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IN_RFC3021_MASK = 4294967294 #53466 +pkg syscall (freebsd-riscv64), const IN_RFC3021_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_3PC = 34 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_3PC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ADFS = 68 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ADFS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AH = 51 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AHIP = 61 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AHIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_APES = 99 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_APES ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS = 13 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AX25 = 93 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_AX25 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BHA = 49 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BHA ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BLT = 30 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BLT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BRSATMON = 76 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_BRSATMON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CARP = 112 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CFTP = 62 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CFTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CHAOS = 16 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CMTP = 38 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CMTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CPHB = 73 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CPHB ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CPNX = 72 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_CPNX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DDP = 37 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DGP = 86 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DIVERT = 258 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DIVERT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DONE = 257 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DSTOPTS = 60 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_DSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EGP = 8 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EMCON = 14 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EMCON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ENCAP = 98 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ENCAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EON = 80 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_EON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ESP = 50 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ESP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ETHERIP = 97 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ETHERIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_FRAGMENT = 44 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_FRAGMENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GGP = 3 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GMTP = 100 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GMTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GRE = 47 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_GRE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HELLO = 63 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HELLO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HMP = 20 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HOPOPTS = 0 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_HOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ICMP = 1 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ICMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ICMPV6 = 58 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ICMPV6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDP = 22 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDPR = 35 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDPR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDRP = 45 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IDRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGMP = 2 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGP = 85 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGRP = 88 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IL = 40 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_INLSP = 52 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_INLSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_INP = 32 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_INP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPCOMP = 108 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPCOMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPCV = 71 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPCV ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPEIP = 94 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPEIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPIP = 4 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPPC = 67 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPPC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPV4 = 4 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IPV4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IRTP = 28 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_IRTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_KRYPTOLAN = 65 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_KRYPTOLAN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LARP = 91 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LARP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LEAF1 = 25 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LEAF1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LEAF2 = 26 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_LEAF2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MAX = 256 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MAXID = 52 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MAXID ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MEAS = 19 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MEAS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MH = 135 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MHRP = 48 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MHRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MICP = 95 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MICP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MOBILE = 55 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MOBILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MPLS = 137 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MTP = 92 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MUX = 18 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_MUX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ND = 77 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ND ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NHRP = 54 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NHRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NONE = 59 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NSP = 31 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NVPII = 11 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_NVPII ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_OLD_DIVERT = 254 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_OLD_DIVERT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_OSPFIGP = 89 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_OSPFIGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PFSYNC = 240 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PGM = 113 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PGM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PIGP = 9 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PIGP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PIM = 103 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PIM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PRM = 21 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PRM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PUP = 12 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PVP = 75 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_PVP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RAW = 255 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RAW ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RCCMON = 10 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RCCMON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RDP = 27 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ROUTING = 43 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ROUTING ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RSVP = 46 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RSVP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RVD = 66 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_RVD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SATEXPAK = 64 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SATEXPAK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SATMON = 69 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SATMON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SCCSP = 96 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SCCSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SCTP = 132 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SCTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SDRP = 42 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SDRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SEND = 259 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SEP = 33 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SEP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SKIP = 57 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SKIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SPACER = 32767 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SPACER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SRPC = 90 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SRPC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ST = 7 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_ST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SVMTP = 82 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SVMTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SWIPE = 53 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_SWIPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TCF = 87 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TCF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TLSP = 56 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TLSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TP = 29 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TPXX = 39 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TPXX ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TRUNK1 = 23 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TRUNK1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TRUNK2 = 24 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TRUNK2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TTP = 84 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_TTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VINES = 83 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VINES ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VISA = 70 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VISA ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VMTP = 81 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_VMTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WBEXPAK = 79 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WBEXPAK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WBMON = 78 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WBMON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WSN = 74 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_WSN ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_XNET = 15 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_XNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_XTP = 36 #53466 +pkg syscall (freebsd-riscv64), const IPPROTO_XTP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_AUTOFLOWLABEL = 59 #53466 +pkg syscall (freebsd-riscv64), const IPV6_AUTOFLOWLABEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_BINDANY = 64 #53466 +pkg syscall (freebsd-riscv64), const IPV6_BINDANY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_BINDV6ONLY = 27 #53466 +pkg syscall (freebsd-riscv64), const IPV6_BINDV6ONLY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_CHECKSUM = 26 #53466 +pkg syscall (freebsd-riscv64), const IPV6_CHECKSUM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFAULT_MULTICAST_HOPS = 1 #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFAULT_MULTICAST_LOOP = 1 #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFHLIM = 64 #53466 +pkg syscall (freebsd-riscv64), const IPV6_DEFHLIM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_DONTFRAG = 62 #53466 +pkg syscall (freebsd-riscv64), const IPV6_DONTFRAG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_DSTOPTS = 50 #53466 +pkg syscall (freebsd-riscv64), const IPV6_DSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FAITH = 29 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FLOWINFO_MASK = 4294967055 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FLOWINFO_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FLOWLABEL_MASK = 4294905600 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FLOWLABEL_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FRAGTTL = 120 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FRAGTTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_ADD = 30 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_DEL = 31 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_FLUSH = 32 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_GET = 34 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_ZERO = 33 #53466 +pkg syscall (freebsd-riscv64), const IPV6_FW_ZERO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_HLIMDEC = 1 #53466 +pkg syscall (freebsd-riscv64), const IPV6_HLIMDEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_HOPLIMIT = 47 #53466 +pkg syscall (freebsd-riscv64), const IPV6_HOPLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_HOPOPTS = 49 #53466 +pkg syscall (freebsd-riscv64), const IPV6_HOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_IPSEC_POLICY = 28 #53466 +pkg syscall (freebsd-riscv64), const IPV6_IPSEC_POLICY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_JOIN_GROUP = 12 #53466 +pkg syscall (freebsd-riscv64), const IPV6_LEAVE_GROUP = 13 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXHLIM = 255 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXHLIM ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXOPTHDR = 2048 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXOPTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXPACKET = 65535 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAXPACKET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_GROUP_SRC_FILTER = 512 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_MEMBERSHIPS = 4095 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_SOCK_SRC_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MIN_MEMBERSHIPS = 31 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MIN_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MMTU = 1280 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MMTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MSFILTER = 74 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MSFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_MULTICAST_HOPS = 10 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MULTICAST_IF = 9 #53466 +pkg syscall (freebsd-riscv64), const IPV6_MULTICAST_LOOP = 11 #53466 +pkg syscall (freebsd-riscv64), const IPV6_NEXTHOP = 48 #53466 +pkg syscall (freebsd-riscv64), const IPV6_NEXTHOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PATHMTU = 44 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PATHMTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PKTINFO = 46 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PKTINFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE = 14 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_DEFAULT = 0 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_DEFAULT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_HIGH = 1 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_HIGH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_LOW = 2 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PORTRANGE_LOW ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_PREFER_TEMPADDR = 63 #53466 +pkg syscall (freebsd-riscv64), const IPV6_PREFER_TEMPADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVDSTOPTS = 40 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVDSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVHOPLIMIT = 37 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVHOPLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVHOPOPTS = 39 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVHOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVPATHMTU = 43 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVPATHMTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVPKTINFO = 36 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVPKTINFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVRTHDR = 38 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVRTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVTCLASS = 57 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RECVTCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR = 51 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDRDSTOPTS = 35 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDRDSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_LOOSE = 0 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_LOOSE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_STRICT = 1 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_STRICT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_TYPE_0 = 0 #53466 +pkg syscall (freebsd-riscv64), const IPV6_RTHDR_TYPE_0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_SOCKOPT_RESERVED1 = 3 #53466 +pkg syscall (freebsd-riscv64), const IPV6_SOCKOPT_RESERVED1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_TCLASS = 61 #53466 +pkg syscall (freebsd-riscv64), const IPV6_TCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_UNICAST_HOPS = 4 #53466 +pkg syscall (freebsd-riscv64), const IPV6_USE_MIN_MTU = 42 #53466 +pkg syscall (freebsd-riscv64), const IPV6_USE_MIN_MTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_V6ONLY = 27 #53466 +pkg syscall (freebsd-riscv64), const IPV6_VERSION = 96 #53466 +pkg syscall (freebsd-riscv64), const IPV6_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64), const IPV6_VERSION_MASK = 240 #53466 +pkg syscall (freebsd-riscv64), const IPV6_VERSION_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_ADD_MEMBERSHIP = 12 #53466 +pkg syscall (freebsd-riscv64), const IP_ADD_SOURCE_MEMBERSHIP = 70 #53466 +pkg syscall (freebsd-riscv64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_BINDANY = 24 #53466 +pkg syscall (freebsd-riscv64), const IP_BINDANY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_BLOCK_SOURCE = 72 #53466 +pkg syscall (freebsd-riscv64), const IP_BLOCK_SOURCE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DEFAULT_MULTICAST_LOOP = 1 #53466 +pkg syscall (freebsd-riscv64), const IP_DEFAULT_MULTICAST_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DEFAULT_MULTICAST_TTL = 1 #53466 +pkg syscall (freebsd-riscv64), const IP_DEFAULT_MULTICAST_TTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DF = 16384 #53466 +pkg syscall (freebsd-riscv64), const IP_DF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DONTFRAG = 67 #53466 +pkg syscall (freebsd-riscv64), const IP_DONTFRAG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DROP_MEMBERSHIP = 13 #53466 +pkg syscall (freebsd-riscv64), const IP_DROP_SOURCE_MEMBERSHIP = 71 #53466 +pkg syscall (freebsd-riscv64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET3 = 49 #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_CONFIGURE = 60 #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_CONFIGURE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_DEL = 61 #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_FLUSH = 62 #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_GET = 64 #53466 +pkg syscall (freebsd-riscv64), const IP_DUMMYNET_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FAITH = 22 #53466 +pkg syscall (freebsd-riscv64), const IP_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW3 = 48 #53466 +pkg syscall (freebsd-riscv64), const IP_FW3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_ADD = 50 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_DEL = 51 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_FLUSH = 52 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_GET = 54 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_CFG = 56 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_CFG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_DEL = 57 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_GET_CONFIG = 58 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_GET_CONFIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_GET_LOG = 59 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_NAT_GET_LOG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_RESETLOG = 55 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_RESETLOG ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_ADD = 40 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_DEL = 41 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_FLUSH = 42 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_GETSIZE = 43 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_GETSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_LIST = 44 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_TABLE_LIST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_FW_ZERO = 53 #53466 +pkg syscall (freebsd-riscv64), const IP_FW_ZERO ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_HDRINCL = 2 #53466 +pkg syscall (freebsd-riscv64), const IP_HDRINCL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_IPSEC_POLICY = 21 #53466 +pkg syscall (freebsd-riscv64), const IP_IPSEC_POLICY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAXPACKET = 65535 #53466 +pkg syscall (freebsd-riscv64), const IP_MAXPACKET ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_GROUP_SRC_FILTER = 512 #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_GROUP_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_MEMBERSHIPS = 4095 #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOCK_MUTE_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOCK_MUTE_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOCK_SRC_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOCK_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOURCE_FILTER = 1024 #53466 +pkg syscall (freebsd-riscv64), const IP_MAX_SOURCE_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MF = 8192 #53466 +pkg syscall (freebsd-riscv64), const IP_MF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MINTTL = 66 #53466 +pkg syscall (freebsd-riscv64), const IP_MINTTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MIN_MEMBERSHIPS = 31 #53466 +pkg syscall (freebsd-riscv64), const IP_MIN_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MSFILTER = 74 #53466 +pkg syscall (freebsd-riscv64), const IP_MSFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MSS = 576 #53466 +pkg syscall (freebsd-riscv64), const IP_MSS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_MULTICAST_IF = 9 #53466 +pkg syscall (freebsd-riscv64), const IP_MULTICAST_LOOP = 11 #53466 +pkg syscall (freebsd-riscv64), const IP_MULTICAST_TTL = 10 #53466 +pkg syscall (freebsd-riscv64), const IP_MULTICAST_VIF = 14 #53466 +pkg syscall (freebsd-riscv64), const IP_MULTICAST_VIF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_OFFMASK = 8191 #53466 +pkg syscall (freebsd-riscv64), const IP_OFFMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_ONESBCAST = 23 #53466 +pkg syscall (freebsd-riscv64), const IP_ONESBCAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_OPTIONS = 1 #53466 +pkg syscall (freebsd-riscv64), const IP_OPTIONS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE = 19 #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_DEFAULT = 0 #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_DEFAULT ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_HIGH = 1 #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_HIGH ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_LOW = 2 #53466 +pkg syscall (freebsd-riscv64), const IP_PORTRANGE_LOW ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVDSTADDR = 7 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVIF = 20 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVIF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVOPTS = 5 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVRETOPTS = 6 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVRETOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVTOS = 68 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVTOS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RECVTTL = 65 #53466 +pkg syscall (freebsd-riscv64), const IP_RECVTTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RETOPTS = 8 #53466 +pkg syscall (freebsd-riscv64), const IP_RETOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RF = 32768 #53466 +pkg syscall (freebsd-riscv64), const IP_RF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_OFF = 16 #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_OFF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_ON = 15 #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_ON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_VIF_OFF = 18 #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_VIF_OFF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_VIF_ON = 17 #53466 +pkg syscall (freebsd-riscv64), const IP_RSVP_VIF_ON ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_SENDSRCADDR = 7 #53466 +pkg syscall (freebsd-riscv64), const IP_SENDSRCADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const IP_TOS = 3 #53466 +pkg syscall (freebsd-riscv64), const IP_TTL = 4 #53466 +pkg syscall (freebsd-riscv64), const IP_UNBLOCK_SOURCE = 73 #53466 +pkg syscall (freebsd-riscv64), const IP_UNBLOCK_SOURCE ideal-int #53466 +pkg syscall (freebsd-riscv64), const ISIG = 128 #53466 +pkg syscall (freebsd-riscv64), const ISIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const ISTRIP = 32 #53466 +pkg syscall (freebsd-riscv64), const ISTRIP ideal-int #53466 +pkg syscall (freebsd-riscv64), const IXANY = 2048 #53466 +pkg syscall (freebsd-riscv64), const IXANY ideal-int #53466 +pkg syscall (freebsd-riscv64), const IXOFF = 1024 #53466 +pkg syscall (freebsd-riscv64), const IXOFF ideal-int #53466 +pkg syscall (freebsd-riscv64), const IXON = 512 #53466 +pkg syscall (freebsd-riscv64), const IXON ideal-int #53466 +pkg syscall (freebsd-riscv64), const LOCK_EX = 2 #53466 +pkg syscall (freebsd-riscv64), const LOCK_EX ideal-int #53466 +pkg syscall (freebsd-riscv64), const LOCK_NB = 4 #53466 +pkg syscall (freebsd-riscv64), const LOCK_NB ideal-int #53466 +pkg syscall (freebsd-riscv64), const LOCK_SH = 1 #53466 +pkg syscall (freebsd-riscv64), const LOCK_SH ideal-int #53466 +pkg syscall (freebsd-riscv64), const LOCK_UN = 8 #53466 +pkg syscall (freebsd-riscv64), const LOCK_UN ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_AUTOSYNC = 7 #53466 +pkg syscall (freebsd-riscv64), const MADV_AUTOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_CORE = 9 #53466 +pkg syscall (freebsd-riscv64), const MADV_CORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_DONTNEED = 4 #53466 +pkg syscall (freebsd-riscv64), const MADV_DONTNEED ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_FREE = 5 #53466 +pkg syscall (freebsd-riscv64), const MADV_FREE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_NOCORE = 8 #53466 +pkg syscall (freebsd-riscv64), const MADV_NOCORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_NORMAL = 0 #53466 +pkg syscall (freebsd-riscv64), const MADV_NORMAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_NOSYNC = 6 #53466 +pkg syscall (freebsd-riscv64), const MADV_NOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_PROTECT = 10 #53466 +pkg syscall (freebsd-riscv64), const MADV_PROTECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_RANDOM = 1 #53466 +pkg syscall (freebsd-riscv64), const MADV_RANDOM ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_SEQUENTIAL = 2 #53466 +pkg syscall (freebsd-riscv64), const MADV_SEQUENTIAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const MADV_WILLNEED = 3 #53466 +pkg syscall (freebsd-riscv64), const MADV_WILLNEED ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_32BIT = 524288 #53466 +pkg syscall (freebsd-riscv64), const MAP_32BIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNED_SUPER = 16777216 #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNED_SUPER ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNMENT_MASK = -16777216 #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNMENT_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNMENT_SHIFT = 24 #53466 +pkg syscall (freebsd-riscv64), const MAP_ALIGNMENT_SHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_ANON = 4096 #53466 +pkg syscall (freebsd-riscv64), const MAP_ANON ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_ANONYMOUS = 4096 #53466 +pkg syscall (freebsd-riscv64), const MAP_ANONYMOUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_COPY = 2 #53466 +pkg syscall (freebsd-riscv64), const MAP_COPY ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_FILE = 0 #53466 +pkg syscall (freebsd-riscv64), const MAP_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_FIXED = 16 #53466 +pkg syscall (freebsd-riscv64), const MAP_FIXED ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_HASSEMAPHORE = 512 #53466 +pkg syscall (freebsd-riscv64), const MAP_HASSEMAPHORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_NOCORE = 131072 #53466 +pkg syscall (freebsd-riscv64), const MAP_NOCORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_NORESERVE = 64 #53466 +pkg syscall (freebsd-riscv64), const MAP_NORESERVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_NOSYNC = 2048 #53466 +pkg syscall (freebsd-riscv64), const MAP_NOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_PREFAULT_READ = 262144 #53466 +pkg syscall (freebsd-riscv64), const MAP_PREFAULT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_PRIVATE = 2 #53466 +pkg syscall (freebsd-riscv64), const MAP_PRIVATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_RENAME = 32 #53466 +pkg syscall (freebsd-riscv64), const MAP_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_RESERVED0080 = 128 #53466 +pkg syscall (freebsd-riscv64), const MAP_RESERVED0080 ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_RESERVED0100 = 256 #53466 +pkg syscall (freebsd-riscv64), const MAP_RESERVED0100 ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_SHARED = 1 #53466 +pkg syscall (freebsd-riscv64), const MAP_SHARED ideal-int #53466 +pkg syscall (freebsd-riscv64), const MAP_STACK = 1024 #53466 +pkg syscall (freebsd-riscv64), const MAP_STACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const MCL_CURRENT = 1 #53466 +pkg syscall (freebsd-riscv64), const MCL_CURRENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MCL_FUTURE = 2 #53466 +pkg syscall (freebsd-riscv64), const MCL_FUTURE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_CMSG_CLOEXEC = 262144 #53466 +pkg syscall (freebsd-riscv64), const MSG_CMSG_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_COMPAT = 32768 #53466 +pkg syscall (freebsd-riscv64), const MSG_COMPAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_CTRUNC = 32 #53466 +pkg syscall (freebsd-riscv64), const MSG_CTRUNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_DONTROUTE = 4 #53466 +pkg syscall (freebsd-riscv64), const MSG_DONTROUTE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_DONTWAIT = 128 #53466 +pkg syscall (freebsd-riscv64), const MSG_DONTWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_EOF = 256 #53466 +pkg syscall (freebsd-riscv64), const MSG_EOF ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_EOR = 8 #53466 +pkg syscall (freebsd-riscv64), const MSG_EOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_NBIO = 16384 #53466 +pkg syscall (freebsd-riscv64), const MSG_NBIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_NOSIGNAL = 131072 #53466 +pkg syscall (freebsd-riscv64), const MSG_NOSIGNAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_NOTIFICATION = 8192 #53466 +pkg syscall (freebsd-riscv64), const MSG_NOTIFICATION ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_OOB = 1 #53466 +pkg syscall (freebsd-riscv64), const MSG_OOB ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_PEEK = 2 #53466 +pkg syscall (freebsd-riscv64), const MSG_PEEK ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_TRUNC = 16 #53466 +pkg syscall (freebsd-riscv64), const MSG_TRUNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MSG_WAITALL = 64 #53466 +pkg syscall (freebsd-riscv64), const MSG_WAITALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const MS_ASYNC = 1 #53466 +pkg syscall (freebsd-riscv64), const MS_ASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const MS_INVALIDATE = 2 #53466 +pkg syscall (freebsd-riscv64), const MS_INVALIDATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const MS_SYNC = 0 #53466 +pkg syscall (freebsd-riscv64), const MS_SYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const NAME_MAX = 255 #53466 +pkg syscall (freebsd-riscv64), const NAME_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_DUMP = 1 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_DUMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_FLAGS = 2 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_FLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFLIST = 3 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFLIST ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFLISTL = 5 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFLISTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFMALIST = 4 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_IFMALIST ideal-int #53466 +pkg syscall (freebsd-riscv64), const NET_RT_MAXID = 6 #53466 +pkg syscall (freebsd-riscv64), const NET_RT_MAXID ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOFLSH = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const NOFLSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_ATTRIB = 8 #53466 +pkg syscall (freebsd-riscv64), const NOTE_ATTRIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_CHILD = 4 #53466 +pkg syscall (freebsd-riscv64), const NOTE_CHILD ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_DELETE = 1 #53466 +pkg syscall (freebsd-riscv64), const NOTE_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXEC = 536870912 #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXIT = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXTEND = 4 #53466 +pkg syscall (freebsd-riscv64), const NOTE_EXTEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFAND = 1073741824 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFAND ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFCOPY = 3221225472 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFCOPY ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFCTRLMASK = 3221225472 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFCTRLMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFLAGSMASK = 16777215 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFLAGSMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFNOP = 0 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFNOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FFOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_FORK = 1073741824 #53466 +pkg syscall (freebsd-riscv64), const NOTE_FORK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_LINK = 16 #53466 +pkg syscall (freebsd-riscv64), const NOTE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_LOWAT = 1 #53466 +pkg syscall (freebsd-riscv64), const NOTE_LOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_PCTRLMASK = 4026531840 #53466 +pkg syscall (freebsd-riscv64), const NOTE_PCTRLMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_PDATAMASK = 1048575 #53466 +pkg syscall (freebsd-riscv64), const NOTE_PDATAMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_RENAME = 32 #53466 +pkg syscall (freebsd-riscv64), const NOTE_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_REVOKE = 64 #53466 +pkg syscall (freebsd-riscv64), const NOTE_REVOKE ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRACK = 1 #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRACKERR = 2 #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRACKERR ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRIGGER = 16777216 #53466 +pkg syscall (freebsd-riscv64), const NOTE_TRIGGER ideal-int #53466 +pkg syscall (freebsd-riscv64), const NOTE_WRITE = 2 #53466 +pkg syscall (freebsd-riscv64), const NOTE_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const OCRNL = 16 #53466 +pkg syscall (freebsd-riscv64), const OCRNL ideal-int #53466 +pkg syscall (freebsd-riscv64), const ONLCR = 2 #53466 +pkg syscall (freebsd-riscv64), const ONLCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const ONLRET = 64 #53466 +pkg syscall (freebsd-riscv64), const ONLRET ideal-int #53466 +pkg syscall (freebsd-riscv64), const ONOCR = 32 #53466 +pkg syscall (freebsd-riscv64), const ONOCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const ONOEOT = 8 #53466 +pkg syscall (freebsd-riscv64), const ONOEOT ideal-int #53466 +pkg syscall (freebsd-riscv64), const OPOST = 1 #53466 +pkg syscall (freebsd-riscv64), const OPOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_ACCMODE = 3 #53466 +pkg syscall (freebsd-riscv64), const O_ACCMODE ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_APPEND = 8 #53466 +pkg syscall (freebsd-riscv64), const O_ASYNC = 64 #53466 +pkg syscall (freebsd-riscv64), const O_CLOEXEC = 1048576 #53466 +pkg syscall (freebsd-riscv64), const O_CREAT = 512 #53466 +pkg syscall (freebsd-riscv64), const O_DIRECT = 65536 #53466 +pkg syscall (freebsd-riscv64), const O_DIRECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_DIRECTORY = 131072 #53466 +pkg syscall (freebsd-riscv64), const O_DIRECTORY ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_EXCL = 2048 #53466 +pkg syscall (freebsd-riscv64), const O_EXEC = 262144 #53466 +pkg syscall (freebsd-riscv64), const O_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_EXLOCK = 32 #53466 +pkg syscall (freebsd-riscv64), const O_EXLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_FSYNC = 128 #53466 +pkg syscall (freebsd-riscv64), const O_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_NDELAY = 4 #53466 +pkg syscall (freebsd-riscv64), const O_NDELAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_NOCTTY = 32768 #53466 +pkg syscall (freebsd-riscv64), const O_NOFOLLOW = 256 #53466 +pkg syscall (freebsd-riscv64), const O_NOFOLLOW ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_NONBLOCK = 4 #53466 +pkg syscall (freebsd-riscv64), const O_SHLOCK = 16 #53466 +pkg syscall (freebsd-riscv64), const O_SHLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const O_SYNC = 128 #53466 +pkg syscall (freebsd-riscv64), const O_TRUNC = 1024 #53466 +pkg syscall (freebsd-riscv64), const O_TTY_INIT = 524288 #53466 +pkg syscall (freebsd-riscv64), const O_TTY_INIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const PARENB = 4096 #53466 +pkg syscall (freebsd-riscv64), const PARENB ideal-int #53466 +pkg syscall (freebsd-riscv64), const PARMRK = 8 #53466 +pkg syscall (freebsd-riscv64), const PARMRK ideal-int #53466 +pkg syscall (freebsd-riscv64), const PARODD = 8192 #53466 +pkg syscall (freebsd-riscv64), const PARODD ideal-int #53466 +pkg syscall (freebsd-riscv64), const PENDIN = 536870912 #53466 +pkg syscall (freebsd-riscv64), const PENDIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const PRIO_PGRP = 1 #53466 +pkg syscall (freebsd-riscv64), const PRIO_PGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const PRIO_PROCESS = 0 #53466 +pkg syscall (freebsd-riscv64), const PRIO_PROCESS ideal-int #53466 +pkg syscall (freebsd-riscv64), const PRIO_USER = 2 #53466 +pkg syscall (freebsd-riscv64), const PRIO_USER ideal-int #53466 +pkg syscall (freebsd-riscv64), const PROT_EXEC = 4 #53466 +pkg syscall (freebsd-riscv64), const PROT_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const PROT_NONE = 0 #53466 +pkg syscall (freebsd-riscv64), const PROT_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const PROT_READ = 1 #53466 +pkg syscall (freebsd-riscv64), const PROT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64), const PROT_WRITE = 2 #53466 +pkg syscall (freebsd-riscv64), const PROT_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const PTRACE_CONT = 7 #53466 +pkg syscall (freebsd-riscv64), const PTRACE_CONT ideal-int #53466 +pkg syscall (freebsd-riscv64), const PTRACE_KILL = 8 #53466 +pkg syscall (freebsd-riscv64), const PTRACE_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64), const PTRACE_TRACEME = 0 #53466 +pkg syscall (freebsd-riscv64), const PTRACE_TRACEME ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_AS = 10 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_AS ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_CORE = 4 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_CORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_CPU = 0 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_CPU ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_DATA = 2 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_DATA ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_FSIZE = 1 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_FSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_NOFILE = 8 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_NOFILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_STACK = 3 #53466 +pkg syscall (freebsd-riscv64), const RLIMIT_STACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RLIM_INFINITY = 9223372036854775807 #53466 +pkg syscall (freebsd-riscv64), const RLIM_INFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_AUTHOR = 6 #53466 +pkg syscall (freebsd-riscv64), const RTAX_AUTHOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_BRD = 7 #53466 +pkg syscall (freebsd-riscv64), const RTAX_BRD ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_DST = 0 #53466 +pkg syscall (freebsd-riscv64), const RTAX_DST ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_GATEWAY = 1 #53466 +pkg syscall (freebsd-riscv64), const RTAX_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_GENMASK = 3 #53466 +pkg syscall (freebsd-riscv64), const RTAX_GENMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_IFA = 5 #53466 +pkg syscall (freebsd-riscv64), const RTAX_IFA ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_IFP = 4 #53466 +pkg syscall (freebsd-riscv64), const RTAX_IFP ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_MAX = 8 #53466 +pkg syscall (freebsd-riscv64), const RTAX_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTAX_NETMASK = 2 #53466 +pkg syscall (freebsd-riscv64), const RTAX_NETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_AUTHOR = 64 #53466 +pkg syscall (freebsd-riscv64), const RTA_AUTHOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_BRD = 128 #53466 +pkg syscall (freebsd-riscv64), const RTA_BRD ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_DST = 1 #53466 +pkg syscall (freebsd-riscv64), const RTA_DST ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_GATEWAY = 2 #53466 +pkg syscall (freebsd-riscv64), const RTA_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_GENMASK = 8 #53466 +pkg syscall (freebsd-riscv64), const RTA_GENMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_IFA = 32 #53466 +pkg syscall (freebsd-riscv64), const RTA_IFA ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_IFP = 16 #53466 +pkg syscall (freebsd-riscv64), const RTA_IFP ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTA_NETMASK = 4 #53466 +pkg syscall (freebsd-riscv64), const RTA_NETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_BLACKHOLE = 4096 #53466 +pkg syscall (freebsd-riscv64), const RTF_BLACKHOLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_BROADCAST = 4194304 #53466 +pkg syscall (freebsd-riscv64), const RTF_BROADCAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_DONE = 64 #53466 +pkg syscall (freebsd-riscv64), const RTF_DONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_DYNAMIC = 16 #53466 +pkg syscall (freebsd-riscv64), const RTF_DYNAMIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_FMASK = 268752904 #53466 +pkg syscall (freebsd-riscv64), const RTF_FMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_GATEWAY = 2 #53466 +pkg syscall (freebsd-riscv64), const RTF_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_GWFLAG_COMPAT = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const RTF_GWFLAG_COMPAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_HOST = 4 #53466 +pkg syscall (freebsd-riscv64), const RTF_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_LLDATA = 1024 #53466 +pkg syscall (freebsd-riscv64), const RTF_LLDATA ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_LLINFO = 1024 #53466 +pkg syscall (freebsd-riscv64), const RTF_LLINFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_LOCAL = 2097152 #53466 +pkg syscall (freebsd-riscv64), const RTF_LOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_MODIFIED = 32 #53466 +pkg syscall (freebsd-riscv64), const RTF_MODIFIED ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_MULTICAST = 8388608 #53466 +pkg syscall (freebsd-riscv64), const RTF_MULTICAST ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_PINNED = 1048576 #53466 +pkg syscall (freebsd-riscv64), const RTF_PINNED ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_PRCLONING = 65536 #53466 +pkg syscall (freebsd-riscv64), const RTF_PRCLONING ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO1 = 32768 #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO2 = 16384 #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO3 = 262144 #53466 +pkg syscall (freebsd-riscv64), const RTF_PROTO3 ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_REJECT = 8 #53466 +pkg syscall (freebsd-riscv64), const RTF_REJECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_RNH_LOCKED = 1073741824 #53466 +pkg syscall (freebsd-riscv64), const RTF_RNH_LOCKED ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_STATIC = 2048 #53466 +pkg syscall (freebsd-riscv64), const RTF_STATIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_STICKY = 268435456 #53466 +pkg syscall (freebsd-riscv64), const RTF_STICKY ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_UP = 1 #53466 +pkg syscall (freebsd-riscv64), const RTF_UP ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTF_XRESOLVE = 512 #53466 +pkg syscall (freebsd-riscv64), const RTF_XRESOLVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_ADD = 1 #53466 +pkg syscall (freebsd-riscv64), const RTM_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_CHANGE = 3 #53466 +pkg syscall (freebsd-riscv64), const RTM_CHANGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_DELADDR = 13 #53466 +pkg syscall (freebsd-riscv64), const RTM_DELADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_DELETE = 2 #53466 +pkg syscall (freebsd-riscv64), const RTM_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_DELMADDR = 16 #53466 +pkg syscall (freebsd-riscv64), const RTM_DELMADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_GET = 4 #53466 +pkg syscall (freebsd-riscv64), const RTM_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_IEEE80211 = 18 #53466 +pkg syscall (freebsd-riscv64), const RTM_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_IFANNOUNCE = 17 #53466 +pkg syscall (freebsd-riscv64), const RTM_IFANNOUNCE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_IFINFO = 14 #53466 +pkg syscall (freebsd-riscv64), const RTM_IFINFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_LOCK = 8 #53466 +pkg syscall (freebsd-riscv64), const RTM_LOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_LOSING = 5 #53466 +pkg syscall (freebsd-riscv64), const RTM_LOSING ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_MISS = 7 #53466 +pkg syscall (freebsd-riscv64), const RTM_MISS ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_NEWADDR = 12 #53466 +pkg syscall (freebsd-riscv64), const RTM_NEWADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_NEWMADDR = 15 #53466 +pkg syscall (freebsd-riscv64), const RTM_NEWMADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_OLDADD = 9 #53466 +pkg syscall (freebsd-riscv64), const RTM_OLDADD ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_OLDDEL = 10 #53466 +pkg syscall (freebsd-riscv64), const RTM_OLDDEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_REDIRECT = 6 #53466 +pkg syscall (freebsd-riscv64), const RTM_REDIRECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_RESOLVE = 11 #53466 +pkg syscall (freebsd-riscv64), const RTM_RESOLVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_RTTUNIT = 1000000 #53466 +pkg syscall (freebsd-riscv64), const RTM_RTTUNIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTM_VERSION = 5 #53466 +pkg syscall (freebsd-riscv64), const RTM_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_EXPIRE = 4 #53466 +pkg syscall (freebsd-riscv64), const RTV_EXPIRE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_HOPCOUNT = 2 #53466 +pkg syscall (freebsd-riscv64), const RTV_HOPCOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_MTU = 1 #53466 +pkg syscall (freebsd-riscv64), const RTV_MTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_RPIPE = 8 #53466 +pkg syscall (freebsd-riscv64), const RTV_RPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_RTT = 64 #53466 +pkg syscall (freebsd-riscv64), const RTV_RTT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_RTTVAR = 128 #53466 +pkg syscall (freebsd-riscv64), const RTV_RTTVAR ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_SPIPE = 16 #53466 +pkg syscall (freebsd-riscv64), const RTV_SPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_SSTHRESH = 32 #53466 +pkg syscall (freebsd-riscv64), const RTV_SSTHRESH ideal-int #53466 +pkg syscall (freebsd-riscv64), const RTV_WEIGHT = 256 #53466 +pkg syscall (freebsd-riscv64), const RTV_WEIGHT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RT_CACHING_CONTEXT = 1 #53466 +pkg syscall (freebsd-riscv64), const RT_CACHING_CONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const RT_DEFAULT_FIB = 0 #53466 +pkg syscall (freebsd-riscv64), const RT_DEFAULT_FIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const RT_NORTREF = 2 #53466 +pkg syscall (freebsd-riscv64), const RT_NORTREF ideal-int #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_CHILDREN = -1 #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_CHILDREN ideal-int #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_SELF = 0 #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_SELF ideal-int #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_THREAD = 1 #53466 +pkg syscall (freebsd-riscv64), const RUSAGE_THREAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SCM_BINTIME = 4 #53466 +pkg syscall (freebsd-riscv64), const SCM_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SCM_CREDS = 3 #53466 +pkg syscall (freebsd-riscv64), const SCM_CREDS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SCM_RIGHTS = 1 #53466 +pkg syscall (freebsd-riscv64), const SCM_RIGHTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SCM_TIMESTAMP = 2 #53466 +pkg syscall (freebsd-riscv64), const SCM_TIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIGBUS = 10 #53466 +pkg syscall (freebsd-riscv64), const SIGCHLD = 20 #53466 +pkg syscall (freebsd-riscv64), const SIGCHLD Signal #53466 +pkg syscall (freebsd-riscv64), const SIGCONT = 19 #53466 +pkg syscall (freebsd-riscv64), const SIGCONT Signal #53466 +pkg syscall (freebsd-riscv64), const SIGEMT = 7 #53466 +pkg syscall (freebsd-riscv64), const SIGEMT Signal #53466 +pkg syscall (freebsd-riscv64), const SIGINFO = 29 #53466 +pkg syscall (freebsd-riscv64), const SIGINFO Signal #53466 +pkg syscall (freebsd-riscv64), const SIGIO = 23 #53466 +pkg syscall (freebsd-riscv64), const SIGIO Signal #53466 +pkg syscall (freebsd-riscv64), const SIGIOT = 6 #53466 +pkg syscall (freebsd-riscv64), const SIGIOT Signal #53466 +pkg syscall (freebsd-riscv64), const SIGLIBRT = 33 #53466 +pkg syscall (freebsd-riscv64), const SIGLIBRT Signal #53466 +pkg syscall (freebsd-riscv64), const SIGLWP = 32 #53466 +pkg syscall (freebsd-riscv64), const SIGLWP Signal #53466 +pkg syscall (freebsd-riscv64), const SIGPROF = 27 #53466 +pkg syscall (freebsd-riscv64), const SIGPROF Signal #53466 +pkg syscall (freebsd-riscv64), const SIGSTOP = 17 #53466 +pkg syscall (freebsd-riscv64), const SIGSTOP Signal #53466 +pkg syscall (freebsd-riscv64), const SIGSYS = 12 #53466 +pkg syscall (freebsd-riscv64), const SIGSYS Signal #53466 +pkg syscall (freebsd-riscv64), const SIGTHR = 32 #53466 +pkg syscall (freebsd-riscv64), const SIGTHR Signal #53466 +pkg syscall (freebsd-riscv64), const SIGTSTP = 18 #53466 +pkg syscall (freebsd-riscv64), const SIGTSTP Signal #53466 +pkg syscall (freebsd-riscv64), const SIGTTIN = 21 #53466 +pkg syscall (freebsd-riscv64), const SIGTTIN Signal #53466 +pkg syscall (freebsd-riscv64), const SIGTTOU = 22 #53466 +pkg syscall (freebsd-riscv64), const SIGTTOU Signal #53466 +pkg syscall (freebsd-riscv64), const SIGURG = 16 #53466 +pkg syscall (freebsd-riscv64), const SIGURG Signal #53466 +pkg syscall (freebsd-riscv64), const SIGUSR1 = 30 #53466 +pkg syscall (freebsd-riscv64), const SIGUSR1 Signal #53466 +pkg syscall (freebsd-riscv64), const SIGUSR2 = 31 #53466 +pkg syscall (freebsd-riscv64), const SIGUSR2 Signal #53466 +pkg syscall (freebsd-riscv64), const SIGVTALRM = 26 #53466 +pkg syscall (freebsd-riscv64), const SIGVTALRM Signal #53466 +pkg syscall (freebsd-riscv64), const SIGWINCH = 28 #53466 +pkg syscall (freebsd-riscv64), const SIGWINCH Signal #53466 +pkg syscall (freebsd-riscv64), const SIGXCPU = 24 #53466 +pkg syscall (freebsd-riscv64), const SIGXCPU Signal #53466 +pkg syscall (freebsd-riscv64), const SIGXFSZ = 25 #53466 +pkg syscall (freebsd-riscv64), const SIGXFSZ Signal #53466 +pkg syscall (freebsd-riscv64), const SIOCADDMULTI = 2149607729 #53466 +pkg syscall (freebsd-riscv64), const SIOCADDMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCADDRT = 2151707146 #53466 +pkg syscall (freebsd-riscv64), const SIOCADDRT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCAIFADDR = 2151704858 #53466 +pkg syscall (freebsd-riscv64), const SIOCAIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCAIFGROUP = 2150132103 #53466 +pkg syscall (freebsd-riscv64), const SIOCAIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCALIFADDR = 2165860635 #53466 +pkg syscall (freebsd-riscv64), const SIOCALIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCATMARK = 1074033415 #53466 +pkg syscall (freebsd-riscv64), const SIOCATMARK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDELMULTI = 2149607730 #53466 +pkg syscall (freebsd-riscv64), const SIOCDELMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDELRT = 2151707147 #53466 +pkg syscall (freebsd-riscv64), const SIOCDELRT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFADDR = 2149607705 #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFGROUP = 2150132105 #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFPHYADDR = 2149607753 #53466 +pkg syscall (freebsd-riscv64), const SIOCDIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCDLIFADDR = 2165860637 #53466 +pkg syscall (freebsd-riscv64), const SIOCDLIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGDRVSPEC = 3223873915 #53466 +pkg syscall (freebsd-riscv64), const SIOCGDRVSPEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGETSGCNT = 3223351824 #53466 +pkg syscall (freebsd-riscv64), const SIOCGETSGCNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGETVIFCNT = 3223876111 #53466 +pkg syscall (freebsd-riscv64), const SIOCGETVIFCNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGHIWAT = 1074033409 #53466 +pkg syscall (freebsd-riscv64), const SIOCGHIWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFADDR = 3223349537 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFBRDADDR = 3223349539 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFBRDADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFCAP = 3223349535 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFCAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFCONF = 3222300964 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFCONF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFDESCR = 3223349546 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFDESCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFDSTADDR = 3223349538 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFFIB = 3223349596 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFFIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFFLAGS = 3223349521 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGENERIC = 3223349562 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGENERIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGMEMB = 3223873930 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGMEMB ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGROUP = 3223873928 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFINDEX = 3223349536 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFINDEX ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMAC = 3223349542 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMAC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMEDIA = 3224398136 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMEDIA ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMETRIC = 3223349527 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMETRIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMTU = 3223349555 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFMTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFNETMASK = 3223349541 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFNETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPDSTADDR = 3223349576 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPHYS = 3223349557 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPSRCADDR = 3223349575 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFPSRCADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFSTATUS = 3274795323 #53466 +pkg syscall (freebsd-riscv64), const SIOCGIFSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGLIFADDR = 3239602460 #53466 +pkg syscall (freebsd-riscv64), const SIOCGLIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGLIFPHYADDR = 3239602507 #53466 +pkg syscall (freebsd-riscv64), const SIOCGLIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGLOWAT = 1074033411 #53466 +pkg syscall (freebsd-riscv64), const SIOCGLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGPGRP = 1074033417 #53466 +pkg syscall (freebsd-riscv64), const SIOCGPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGPRIVATE_0 = 3223349584 #53466 +pkg syscall (freebsd-riscv64), const SIOCGPRIVATE_0 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCGPRIVATE_1 = 3223349585 #53466 +pkg syscall (freebsd-riscv64), const SIOCGPRIVATE_1 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCIFCREATE = 3223349626 #53466 +pkg syscall (freebsd-riscv64), const SIOCIFCREATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCIFCREATE2 = 3223349628 #53466 +pkg syscall (freebsd-riscv64), const SIOCIFCREATE2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCIFDESTROY = 2149607801 #53466 +pkg syscall (freebsd-riscv64), const SIOCIFDESTROY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCIFGCLONERS = 3222301048 #53466 +pkg syscall (freebsd-riscv64), const SIOCIFGCLONERS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSDRVSPEC = 2150132091 #53466 +pkg syscall (freebsd-riscv64), const SIOCSDRVSPEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSHIWAT = 2147775232 #53466 +pkg syscall (freebsd-riscv64), const SIOCSHIWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFADDR = 2149607692 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFBRDADDR = 2149607699 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFBRDADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFCAP = 2149607710 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFCAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFDESCR = 2149607721 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFDESCR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFDSTADDR = 2149607694 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFFIB = 2149607773 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFFIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFFLAGS = 2149607696 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFGENERIC = 2149607737 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFGENERIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFLLADDR = 2149607740 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFLLADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMAC = 2149607719 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMAC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMEDIA = 3223349559 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMEDIA ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMETRIC = 2149607704 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMETRIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMTU = 2149607732 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFMTU ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFNAME = 2149607720 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFNAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFNETMASK = 2149607702 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFNETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFPHYADDR = 2151704902 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFPHYS = 2149607734 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFRVNET = 3223349595 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFRVNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFVNET = 3223349594 #53466 +pkg syscall (freebsd-riscv64), const SIOCSIFVNET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSLIFPHYADDR = 2165860682 #53466 +pkg syscall (freebsd-riscv64), const SIOCSLIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSLOWAT = 2147775234 #53466 +pkg syscall (freebsd-riscv64), const SIOCSLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SIOCSPGRP = 2147775240 #53466 +pkg syscall (freebsd-riscv64), const SIOCSPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SOCK_CLOEXEC = 268435456 #53466 +pkg syscall (freebsd-riscv64), const SOCK_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SOCK_MAXADDRLEN = 255 #53466 +pkg syscall (freebsd-riscv64), const SOCK_MAXADDRLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SOCK_NONBLOCK = 536870912 #53466 +pkg syscall (freebsd-riscv64), const SOCK_NONBLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SOCK_RDM = 4 #53466 +pkg syscall (freebsd-riscv64), const SOCK_RDM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SOL_SOCKET = 65535 #53466 +pkg syscall (freebsd-riscv64), const SOMAXCONN = 128 #53466 +pkg syscall (freebsd-riscv64), const SO_ACCEPTCONN = 2 #53466 +pkg syscall (freebsd-riscv64), const SO_ACCEPTCONN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_ACCEPTFILTER = 4096 #53466 +pkg syscall (freebsd-riscv64), const SO_ACCEPTFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_BINTIME = 8192 #53466 +pkg syscall (freebsd-riscv64), const SO_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_BROADCAST = 32 #53466 +pkg syscall (freebsd-riscv64), const SO_DEBUG = 1 #53466 +pkg syscall (freebsd-riscv64), const SO_DEBUG ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_DONTROUTE = 16 #53466 +pkg syscall (freebsd-riscv64), const SO_ERROR = 4103 #53466 +pkg syscall (freebsd-riscv64), const SO_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_KEEPALIVE = 8 #53466 +pkg syscall (freebsd-riscv64), const SO_LABEL = 4105 #53466 +pkg syscall (freebsd-riscv64), const SO_LABEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_LINGER = 128 #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENINCQLEN = 4115 #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENINCQLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENQLEN = 4114 #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENQLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENQLIMIT = 4113 #53466 +pkg syscall (freebsd-riscv64), const SO_LISTENQLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_NOSIGPIPE = 2048 #53466 +pkg syscall (freebsd-riscv64), const SO_NOSIGPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_NO_DDP = 32768 #53466 +pkg syscall (freebsd-riscv64), const SO_NO_DDP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_NO_OFFLOAD = 16384 #53466 +pkg syscall (freebsd-riscv64), const SO_NO_OFFLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_OOBINLINE = 256 #53466 +pkg syscall (freebsd-riscv64), const SO_OOBINLINE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_PEERLABEL = 4112 #53466 +pkg syscall (freebsd-riscv64), const SO_PEERLABEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_PROTOCOL = 4118 #53466 +pkg syscall (freebsd-riscv64), const SO_PROTOCOL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_PROTOTYPE = 4118 #53466 +pkg syscall (freebsd-riscv64), const SO_PROTOTYPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_RCVBUF = 4098 #53466 +pkg syscall (freebsd-riscv64), const SO_RCVLOWAT = 4100 #53466 +pkg syscall (freebsd-riscv64), const SO_RCVLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_RCVTIMEO = 4102 #53466 +pkg syscall (freebsd-riscv64), const SO_RCVTIMEO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_REUSEADDR = 4 #53466 +pkg syscall (freebsd-riscv64), const SO_REUSEPORT = 512 #53466 +pkg syscall (freebsd-riscv64), const SO_REUSEPORT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_SETFIB = 4116 #53466 +pkg syscall (freebsd-riscv64), const SO_SETFIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_SNDBUF = 4097 #53466 +pkg syscall (freebsd-riscv64), const SO_SNDLOWAT = 4099 #53466 +pkg syscall (freebsd-riscv64), const SO_SNDLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_SNDTIMEO = 4101 #53466 +pkg syscall (freebsd-riscv64), const SO_SNDTIMEO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_TIMESTAMP = 1024 #53466 +pkg syscall (freebsd-riscv64), const SO_TIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_TYPE = 4104 #53466 +pkg syscall (freebsd-riscv64), const SO_TYPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_USELOOPBACK = 64 #53466 +pkg syscall (freebsd-riscv64), const SO_USELOOPBACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_USER_COOKIE = 4117 #53466 +pkg syscall (freebsd-riscv64), const SO_USER_COOKIE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SO_VENDOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const SO_VENDOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ABORT2 = 463 #53466 +pkg syscall (freebsd-riscv64), const SYS_ABORT2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCEPT = 30 #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCEPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCEPT4 = 541 #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCEPT4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCESS = 33 #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCESS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCT = 51 #53466 +pkg syscall (freebsd-riscv64), const SYS_ACCT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ADJTIME = 140 #53466 +pkg syscall (freebsd-riscv64), const SYS_ADJTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_CANCEL = 316 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_CANCEL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_ERROR = 317 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_FSYNC = 465 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_MLOCK = 543 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_MLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_READ = 255 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_READ ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_RETURN = 314 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_RETURN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_SUSPEND = 315 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_SUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_WAITCOMPLETE = 359 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_WAITCOMPLETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_WRITE = 256 #53466 +pkg syscall (freebsd-riscv64), const SYS_AIO_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDIT = 445 #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDITCTL = 453 #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDITCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDITON = 446 #53466 +pkg syscall (freebsd-riscv64), const SYS_AUDITON ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_BIND = 104 #53466 +pkg syscall (freebsd-riscv64), const SYS_BIND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_BINDAT = 538 #53466 +pkg syscall (freebsd-riscv64), const SYS_BINDAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_ENTER = 516 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_ENTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_FCNTLS_GET = 537 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_FCNTLS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_FCNTLS_LIMIT = 536 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_FCNTLS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_GETMODE = 517 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_GETMODE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_IOCTLS_GET = 535 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_IOCTLS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_IOCTLS_LIMIT = 534 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_IOCTLS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_RIGHTS_LIMIT = 533 #53466 +pkg syscall (freebsd-riscv64), const SYS_CAP_RIGHTS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHDIR = 12 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHDIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHFLAGS = 34 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHFLAGSAT = 540 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHFLAGSAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHMOD = 15 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHOWN = 16 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CHROOT = 61 #53466 +pkg syscall (freebsd-riscv64), const SYS_CHROOT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETCPUCLOCKID2 = 247 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETRES = 234 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETRES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETTIME = 232 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_NANOSLEEP = 244 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_NANOSLEEP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_SETTIME = 233 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOCK_SETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOSE = 6 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOSE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOSEFROM = 509 #53466 +pkg syscall (freebsd-riscv64), const SYS_CLOSEFROM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CONNECT = 98 #53466 +pkg syscall (freebsd-riscv64), const SYS_CONNECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CONNECTAT = 539 #53466 +pkg syscall (freebsd-riscv64), const SYS_CONNECTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET = 484 #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_GETAFFINITY = 487 #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_GETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_GETID = 486 #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_GETID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_SETAFFINITY = 488 #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_SETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_SETID = 485 #53466 +pkg syscall (freebsd-riscv64), const SYS_CPUSET_SETID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_DUP = 41 #53466 +pkg syscall (freebsd-riscv64), const SYS_DUP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_DUP2 = 90 #53466 +pkg syscall (freebsd-riscv64), const SYS_DUP2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EACCESS = 376 #53466 +pkg syscall (freebsd-riscv64), const SYS_EACCESS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXECVE = 59 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXIT = 1 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTRCTL = 355 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTRCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_FD = 373 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_FILE = 358 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_LINK = 414 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_DELETE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_FD = 372 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_FILE = 357 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_LINK = 413 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_FD = 437 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_FILE = 438 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_LINK = 439 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_LIST_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_FD = 371 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_FILE = 356 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_LINK = 412 #53466 +pkg syscall (freebsd-riscv64), const SYS_EXTATTR_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FACCESSAT = 489 #53466 +pkg syscall (freebsd-riscv64), const SYS_FACCESSAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHDIR = 13 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHDIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHFLAGS = 35 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHMOD = 124 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHMODAT = 490 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHMODAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHOWN = 123 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHOWNAT = 491 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCHOWNAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FCNTL = 92 #53466 +pkg syscall (freebsd-riscv64), const SYS_FCNTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FDATASYNC = 550 #53466 +pkg syscall (freebsd-riscv64), const SYS_FDATASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FEXECVE = 492 #53466 +pkg syscall (freebsd-riscv64), const SYS_FEXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_GETCOUNTER = 241 #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_GETCOUNTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_GETESTIMATE = 243 #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_GETESTIMATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_SETESTIMATE = 242 #53466 +pkg syscall (freebsd-riscv64), const SYS_FFCLOCK_SETESTIMATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FHOPEN = 298 #53466 +pkg syscall (freebsd-riscv64), const SYS_FHOPEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FHSTAT = 299 #53466 +pkg syscall (freebsd-riscv64), const SYS_FHSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FHSTATFS = 398 #53466 +pkg syscall (freebsd-riscv64), const SYS_FHSTATFS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FLOCK = 131 #53466 +pkg syscall (freebsd-riscv64), const SYS_FLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FORK = 2 #53466 +pkg syscall (freebsd-riscv64), const SYS_FORK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FPATHCONF = 192 #53466 +pkg syscall (freebsd-riscv64), const SYS_FPATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTAT = 551 #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTATAT = 552 #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTATAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTATFS = 556 #53466 +pkg syscall (freebsd-riscv64), const SYS_FSTATFS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FSYNC = 95 #53466 +pkg syscall (freebsd-riscv64), const SYS_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FTRUNCATE = 480 #53466 +pkg syscall (freebsd-riscv64), const SYS_FTRUNCATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMENS = 546 #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMENS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMES = 206 #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMESAT = 494 #53466 +pkg syscall (freebsd-riscv64), const SYS_FUTIMESAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUDIT = 449 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUDIT_ADDR = 451 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUDIT_ADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUID = 447 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETAUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETCONTEXT = 421 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDENTS = 272 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDENTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDIRENTRIES = 554 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDIRENTRIES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDTABLESIZE = 89 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETDTABLESIZE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETEGID = 43 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETEGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETEUID = 25 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETEUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETFH = 161 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETFH ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETFSSTAT = 557 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETFSSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETGID = 47 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETGROUPS = 79 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETGROUPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETITIMER = 86 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETITIMER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETLOGIN = 49 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETLOGIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETLOGINCLASS = 523 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETLOGINCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPEERNAME = 31 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPEERNAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPGID = 207 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPGRP = 81 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPID = 20 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPPID = 39 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPPID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPRIORITY = 100 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETPRIORITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRESGID = 361 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRESGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRESUID = 360 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRESUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRLIMIT = 194 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRUSAGE = 117 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETRUSAGE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSID = 310 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSOCKNAME = 32 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSOCKNAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSOCKOPT = 118 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETSOCKOPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETTIMEOFDAY = 116 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETTIMEOFDAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GETUID = 24 #53466 +pkg syscall (freebsd-riscv64), const SYS_GETUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_GSSD_SYSCALL = 505 #53466 +pkg syscall (freebsd-riscv64), const SYS_GSSD_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_IOCTL = 54 #53466 +pkg syscall (freebsd-riscv64), const SYS_IOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_ISSETUGID = 253 #53466 +pkg syscall (freebsd-riscv64), const SYS_ISSETUGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL = 338 #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_ATTACH = 436 #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_ATTACH ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_GET = 506 #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_REMOVE = 508 #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_REMOVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_SET = 507 #53466 +pkg syscall (freebsd-riscv64), const SYS_JAIL_SET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KENV = 390 #53466 +pkg syscall (freebsd-riscv64), const SYS_KENV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KEVENT = 363 #53466 +pkg syscall (freebsd-riscv64), const SYS_KEVENT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KILL = 37 #53466 +pkg syscall (freebsd-riscv64), const SYS_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDFIND = 306 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDFIND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDFIRSTMOD = 309 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDFIRSTMOD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDLOAD = 304 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDNEXT = 307 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDSTAT = 308 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDSYM = 337 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDSYM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDUNLOAD = 305 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDUNLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDUNLOADF = 444 #53466 +pkg syscall (freebsd-riscv64), const SYS_KLDUNLOADF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_NOTIFY = 461 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_NOTIFY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_OPEN = 457 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_SETATTR = 458 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_SETATTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_TIMEDRECEIVE = 459 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_TIMEDRECEIVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_TIMEDSEND = 460 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_TIMEDSEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_UNLINK = 462 #53466 +pkg syscall (freebsd-riscv64), const SYS_KMQ_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KQUEUE = 362 #53466 +pkg syscall (freebsd-riscv64), const SYS_KQUEUE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE = 400 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_DESTROY = 408 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_DESTROY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_GETVALUE = 407 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_GETVALUE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_INIT = 404 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_INIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_OPEN = 405 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_POST = 401 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_POST ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_TIMEDWAIT = 441 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_TIMEDWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_TRYWAIT = 403 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_TRYWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_UNLINK = 406 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_WAIT = 402 #53466 +pkg syscall (freebsd-riscv64), const SYS_KSEM_WAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_CREATE = 235 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_CREATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_DELETE = 236 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_GETOVERRUN = 239 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_GETOVERRUN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_GETTIME = 238 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_SETTIME = 237 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTIMER_SETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_KTRACE = 45 #53466 +pkg syscall (freebsd-riscv64), const SYS_KTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHFLAGS = 391 #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHMOD = 274 #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHOWN = 254 #53466 +pkg syscall (freebsd-riscv64), const SYS_LCHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LGETFH = 160 #53466 +pkg syscall (freebsd-riscv64), const SYS_LGETFH ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LINK = 9 #53466 +pkg syscall (freebsd-riscv64), const SYS_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LINKAT = 495 #53466 +pkg syscall (freebsd-riscv64), const SYS_LINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LIO_LISTIO = 257 #53466 +pkg syscall (freebsd-riscv64), const SYS_LIO_LISTIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LISTEN = 106 #53466 +pkg syscall (freebsd-riscv64), const SYS_LISTEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LPATHCONF = 513 #53466 +pkg syscall (freebsd-riscv64), const SYS_LPATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LSEEK = 478 #53466 +pkg syscall (freebsd-riscv64), const SYS_LSEEK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_LUTIMES = 276 #53466 +pkg syscall (freebsd-riscv64), const SYS_LUTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MAC_SYSCALL = 394 #53466 +pkg syscall (freebsd-riscv64), const SYS_MAC_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MADVISE = 75 #53466 +pkg syscall (freebsd-riscv64), const SYS_MADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MINCORE = 78 #53466 +pkg syscall (freebsd-riscv64), const SYS_MINCORE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MINHERIT = 250 #53466 +pkg syscall (freebsd-riscv64), const SYS_MINHERIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKDIR = 136 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKDIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKDIRAT = 496 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKDIRAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKFIFO = 132 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKFIFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKFIFOAT = 497 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKFIFOAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKNOD = 14 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKNOD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MKNODAT = 559 #53466 +pkg syscall (freebsd-riscv64), const SYS_MKNODAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MLOCK = 203 #53466 +pkg syscall (freebsd-riscv64), const SYS_MLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MLOCKALL = 324 #53466 +pkg syscall (freebsd-riscv64), const SYS_MLOCKALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MMAP = 477 #53466 +pkg syscall (freebsd-riscv64), const SYS_MMAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MODFIND = 303 #53466 +pkg syscall (freebsd-riscv64), const SYS_MODFIND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MODFNEXT = 302 #53466 +pkg syscall (freebsd-riscv64), const SYS_MODFNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MODNEXT = 300 #53466 +pkg syscall (freebsd-riscv64), const SYS_MODNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MODSTAT = 301 #53466 +pkg syscall (freebsd-riscv64), const SYS_MODSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MOUNT = 21 #53466 +pkg syscall (freebsd-riscv64), const SYS_MOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MPROTECT = 74 #53466 +pkg syscall (freebsd-riscv64), const SYS_MPROTECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGCTL = 511 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGGET = 225 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGGET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGRCV = 227 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGRCV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGSND = 226 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGSND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGSYS = 170 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSGSYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MSYNC = 65 #53466 +pkg syscall (freebsd-riscv64), const SYS_MSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNLOCK = 204 #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNLOCKALL = 325 #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNLOCKALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNMAP = 73 #53466 +pkg syscall (freebsd-riscv64), const SYS_MUNMAP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NANOSLEEP = 240 #53466 +pkg syscall (freebsd-riscv64), const SYS_NANOSLEEP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NFSSVC = 155 #53466 +pkg syscall (freebsd-riscv64), const SYS_NFSSVC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NFSTAT = 279 #53466 +pkg syscall (freebsd-riscv64), const SYS_NFSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NLM_SYSCALL = 154 #53466 +pkg syscall (freebsd-riscv64), const SYS_NLM_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NLSTAT = 280 #53466 +pkg syscall (freebsd-riscv64), const SYS_NLSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NMOUNT = 378 #53466 +pkg syscall (freebsd-riscv64), const SYS_NMOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NSTAT = 278 #53466 +pkg syscall (freebsd-riscv64), const SYS_NSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NTP_ADJTIME = 176 #53466 +pkg syscall (freebsd-riscv64), const SYS_NTP_ADJTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NTP_GETTIME = 248 #53466 +pkg syscall (freebsd-riscv64), const SYS_NTP_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY = 548 #53466 +pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY = 549 #53466 +pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_OBREAK = 17 #53466 +pkg syscall (freebsd-riscv64), const SYS_OBREAK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_OPEN = 5 #53466 +pkg syscall (freebsd-riscv64), const SYS_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_OPENAT = 499 #53466 +pkg syscall (freebsd-riscv64), const SYS_OPENAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_OPENBSD_POLL = 252 #53466 +pkg syscall (freebsd-riscv64), const SYS_OPENBSD_POLL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_OVADVISE = 72 #53466 +pkg syscall (freebsd-riscv64), const SYS_OVADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PATHCONF = 191 #53466 +pkg syscall (freebsd-riscv64), const SYS_PATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PDFORK = 518 #53466 +pkg syscall (freebsd-riscv64), const SYS_PDFORK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PDGETPID = 520 #53466 +pkg syscall (freebsd-riscv64), const SYS_PDGETPID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PDKILL = 519 #53466 +pkg syscall (freebsd-riscv64), const SYS_PDKILL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PIPE = 42 #53466 +pkg syscall (freebsd-riscv64), const SYS_PIPE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PIPE2 = 542 #53466 +pkg syscall (freebsd-riscv64), const SYS_PIPE2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_POLL = 209 #53466 +pkg syscall (freebsd-riscv64), const SYS_POLL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_FADVISE = 531 #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_FADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_FALLOCATE = 530 #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_FALLOCATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_OPENPT = 504 #53466 +pkg syscall (freebsd-riscv64), const SYS_POSIX_OPENPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PPOLL = 545 #53466 +pkg syscall (freebsd-riscv64), const SYS_PPOLL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PREAD = 475 #53466 +pkg syscall (freebsd-riscv64), const SYS_PREAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PREADV = 289 #53466 +pkg syscall (freebsd-riscv64), const SYS_PREADV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PROCCTL = 544 #53466 +pkg syscall (freebsd-riscv64), const SYS_PROCCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PROFIL = 44 #53466 +pkg syscall (freebsd-riscv64), const SYS_PROFIL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PSELECT = 522 #53466 +pkg syscall (freebsd-riscv64), const SYS_PSELECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PTRACE = 26 #53466 +pkg syscall (freebsd-riscv64), const SYS_PTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PWRITE = 476 #53466 +pkg syscall (freebsd-riscv64), const SYS_PWRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_PWRITEV = 290 #53466 +pkg syscall (freebsd-riscv64), const SYS_PWRITEV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_QUOTACTL = 148 #53466 +pkg syscall (freebsd-riscv64), const SYS_QUOTACTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_ADD_RULE = 528 #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_ADD_RULE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_LIMITS = 527 #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_LIMITS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_RACCT = 525 #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_RACCT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_RULES = 526 #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_GET_RULES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_REMOVE_RULE = 529 #53466 +pkg syscall (freebsd-riscv64), const SYS_RCTL_REMOVE_RULE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_READ = 3 #53466 +pkg syscall (freebsd-riscv64), const SYS_READ ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_READLINK = 58 #53466 +pkg syscall (freebsd-riscv64), const SYS_READLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_READLINKAT = 500 #53466 +pkg syscall (freebsd-riscv64), const SYS_READLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_READV = 120 #53466 +pkg syscall (freebsd-riscv64), const SYS_READV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_REBOOT = 55 #53466 +pkg syscall (freebsd-riscv64), const SYS_REBOOT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RECVFROM = 29 #53466 +pkg syscall (freebsd-riscv64), const SYS_RECVFROM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RECVMSG = 27 #53466 +pkg syscall (freebsd-riscv64), const SYS_RECVMSG ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RENAME = 128 #53466 +pkg syscall (freebsd-riscv64), const SYS_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RENAMEAT = 501 #53466 +pkg syscall (freebsd-riscv64), const SYS_RENAMEAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_REVOKE = 56 #53466 +pkg syscall (freebsd-riscv64), const SYS_REVOKE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RFORK = 251 #53466 +pkg syscall (freebsd-riscv64), const SYS_RFORK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RMDIR = 137 #53466 +pkg syscall (freebsd-riscv64), const SYS_RMDIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RTPRIO = 166 #53466 +pkg syscall (freebsd-riscv64), const SYS_RTPRIO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_RTPRIO_THREAD = 466 #53466 +pkg syscall (freebsd-riscv64), const SYS_RTPRIO_THREAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SBRK = 69 #53466 +pkg syscall (freebsd-riscv64), const SYS_SBRK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GETPARAM = 328 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GETPARAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GETSCHEDULER = 330 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GETSCHEDULER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GET_PRIORITY_MAX = 332 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GET_PRIORITY_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GET_PRIORITY_MIN = 333 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_GET_PRIORITY_MIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_RR_GET_INTERVAL = 334 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_RR_GET_INTERVAL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_SETPARAM = 327 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_SETPARAM ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_SETSCHEDULER = 329 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_SETSCHEDULER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_YIELD = 331 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCHED_YIELD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_RECVMSG = 474 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_RECVMSG ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_SENDMSG = 472 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_SENDMSG ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_PEELOFF = 471 #53466 +pkg syscall (freebsd-riscv64), const SYS_SCTP_PEELOFF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SELECT = 93 #53466 +pkg syscall (freebsd-riscv64), const SYS_SELECT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMGET = 221 #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMGET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMOP = 222 #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMSYS = 169 #53466 +pkg syscall (freebsd-riscv64), const SYS_SEMSYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDFILE = 393 #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDFILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDMSG = 28 #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDMSG ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDTO = 133 #53466 +pkg syscall (freebsd-riscv64), const SYS_SENDTO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUDIT = 450 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUDIT_ADDR = 452 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUDIT_ADDR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUID = 448 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETAUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETCONTEXT = 422 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETEGID = 182 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETEGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETEUID = 183 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETEUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETFIB = 175 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETFIB ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETGID = 181 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETGROUPS = 80 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETGROUPS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETITIMER = 83 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETITIMER ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETLOGIN = 50 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETLOGIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETLOGINCLASS = 524 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETLOGINCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETPGID = 82 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETPGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETPRIORITY = 96 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETPRIORITY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETREGID = 127 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETREGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRESGID = 312 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRESGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRESUID = 311 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRESUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETREUID = 126 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETREUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRLIMIT = 195 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETRLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETSID = 147 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETSID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETSOCKOPT = 105 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETSOCKOPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETTIMEOFDAY = 122 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETTIMEOFDAY ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SETUID = 23 #53466 +pkg syscall (freebsd-riscv64), const SYS_SETUID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMAT = 228 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMCTL = 512 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMDT = 230 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMDT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMGET = 231 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMGET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMSYS = 171 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHMSYS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHM_OPEN = 482 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHM_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHM_UNLINK = 483 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHM_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SHUTDOWN = 134 #53466 +pkg syscall (freebsd-riscv64), const SYS_SHUTDOWN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGACTION = 416 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGACTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGALTSTACK = 53 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGALTSTACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGPENDING = 343 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGPENDING ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGPROCMASK = 340 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGPROCMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGQUEUE = 456 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGQUEUE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGRETURN = 417 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGRETURN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGSUSPEND = 341 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGSUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGTIMEDWAIT = 345 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGTIMEDWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGWAIT = 429 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGWAITINFO = 346 #53466 +pkg syscall (freebsd-riscv64), const SYS_SIGWAITINFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SOCKET = 97 #53466 +pkg syscall (freebsd-riscv64), const SYS_SOCKET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SOCKETPAIR = 135 #53466 +pkg syscall (freebsd-riscv64), const SYS_SOCKETPAIR ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SSTK = 70 #53466 +pkg syscall (freebsd-riscv64), const SYS_SSTK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_STATFS = 555 #53466 +pkg syscall (freebsd-riscv64), const SYS_STATFS ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPCONTEXT = 423 #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPOFF = 424 #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPOFF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPON = 85 #53466 +pkg syscall (freebsd-riscv64), const SYS_SWAPON ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SYMLINK = 57 #53466 +pkg syscall (freebsd-riscv64), const SYS_SYMLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SYMLINKAT = 502 #53466 +pkg syscall (freebsd-riscv64), const SYS_SYMLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SYNC = 36 #53466 +pkg syscall (freebsd-riscv64), const SYS_SYNC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_SYSARCH = 165 #53466 +pkg syscall (freebsd-riscv64), const SYS_SYSARCH ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_CREATE = 430 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_CREATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_EXIT = 431 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_KILL = 433 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_KILL2 = 481 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_KILL2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_NEW = 455 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_NEW ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SELF = 432 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SELF ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SET_NAME = 464 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SET_NAME ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SUSPEND = 442 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_SUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_WAKE = 443 #53466 +pkg syscall (freebsd-riscv64), const SYS_THR_WAKE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_TRUNCATE = 479 #53466 +pkg syscall (freebsd-riscv64), const SYS_TRUNCATE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UMASK = 60 #53466 +pkg syscall (freebsd-riscv64), const SYS_UMASK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UNDELETE = 205 #53466 +pkg syscall (freebsd-riscv64), const SYS_UNDELETE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UNLINK = 10 #53466 +pkg syscall (freebsd-riscv64), const SYS_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UNLINKAT = 503 #53466 +pkg syscall (freebsd-riscv64), const SYS_UNLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UNMOUNT = 22 #53466 +pkg syscall (freebsd-riscv64), const SYS_UNMOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UTIMENSAT = 547 #53466 +pkg syscall (freebsd-riscv64), const SYS_UTIMENSAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UTIMES = 138 #53466 +pkg syscall (freebsd-riscv64), const SYS_UTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UTRACE = 335 #53466 +pkg syscall (freebsd-riscv64), const SYS_UTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_UUIDGEN = 392 #53466 +pkg syscall (freebsd-riscv64), const SYS_UUIDGEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_VFORK = 66 #53466 +pkg syscall (freebsd-riscv64), const SYS_VFORK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_WAIT4 = 7 #53466 +pkg syscall (freebsd-riscv64), const SYS_WAIT4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_WAIT6 = 532 #53466 +pkg syscall (freebsd-riscv64), const SYS_WAIT6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_WRITE = 4 #53466 +pkg syscall (freebsd-riscv64), const SYS_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_WRITEV = 121 #53466 +pkg syscall (freebsd-riscv64), const SYS_WRITEV ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS_YIELD = 321 #53466 +pkg syscall (freebsd-riscv64), const SYS_YIELD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS__UMTX_OP = 454 #53466 +pkg syscall (freebsd-riscv64), const SYS__UMTX_OP ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_FD = 354 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_FILE = 353 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_LINK = 428 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_ACLCHECK_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_FD = 352 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_FILE = 351 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_LINK = 427 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_DELETE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_FD = 349 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_FILE = 347 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_LINK = 425 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_FD = 350 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_FILE = 348 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_LINK = 426 #53466 +pkg syscall (freebsd-riscv64), const SYS___ACL_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___CAP_RIGHTS_GET = 515 #53466 +pkg syscall (freebsd-riscv64), const SYS___CAP_RIGHTS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___GETCWD = 326 #53466 +pkg syscall (freebsd-riscv64), const SYS___GETCWD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_EXECVE = 415 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_EXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_FD = 386 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_FILE = 387 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_LINK = 410 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_PID = 409 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_PID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_PROC = 384 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_GET_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_FD = 388 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_FILE = 389 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_LINK = 411 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_PROC = 385 #53466 +pkg syscall (freebsd-riscv64), const SYS___MAC_SET_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___SEMCTL = 510 #53466 +pkg syscall (freebsd-riscv64), const SYS___SEMCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___SETUGID = 374 #53466 +pkg syscall (freebsd-riscv64), const SYS___SETUGID ideal-int #53466 +pkg syscall (freebsd-riscv64), const SYS___SYSCTL = 202 #53466 +pkg syscall (freebsd-riscv64), const SYS___SYSCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const S_IFMT = 61440 #53466 +pkg syscall (freebsd-riscv64), const S_IRWXG = 56 #53466 +pkg syscall (freebsd-riscv64), const S_IRWXG ideal-int #53466 +pkg syscall (freebsd-riscv64), const S_IRWXO = 7 #53466 +pkg syscall (freebsd-riscv64), const S_IRWXO ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfHdr = 32 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfHdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfInsn = 8 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfInsn ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfProgram = 16 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfProgram ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfStat = 8 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfStat ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfVersion = 4 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfVersion ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfZbuf = 24 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfZbuf ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfZbufHeader = 32 #53466 +pkg syscall (freebsd-riscv64), const SizeofBpfZbufHeader ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofCmsghdr = 12 #53466 +pkg syscall (freebsd-riscv64), const SizeofCmsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofICMPv6Filter = 32 #53466 +pkg syscall (freebsd-riscv64), const SizeofICMPv6Filter ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIPMreq = 8 #53466 +pkg syscall (freebsd-riscv64), const SizeofIPMreq ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIPMreqn = 12 #53466 +pkg syscall (freebsd-riscv64), const SizeofIPMreqn ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIPv6MTUInfo = 32 #53466 +pkg syscall (freebsd-riscv64), const SizeofIPv6MTUInfo ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIPv6Mreq = 20 #53466 +pkg syscall (freebsd-riscv64), const SizeofIPv6Mreq ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIfAnnounceMsghdr = 24 #53466 +pkg syscall (freebsd-riscv64), const SizeofIfAnnounceMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIfData = 152 #53466 +pkg syscall (freebsd-riscv64), const SizeofIfData ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIfMsghdr = 168 #53466 +pkg syscall (freebsd-riscv64), const SizeofIfMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIfaMsghdr = 20 #53466 +pkg syscall (freebsd-riscv64), const SizeofIfaMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofIfmaMsghdr = 16 #53466 +pkg syscall (freebsd-riscv64), const SizeofIfmaMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofInet6Pktinfo = 20 #53466 +pkg syscall (freebsd-riscv64), const SizeofInet6Pktinfo ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofLinger = 8 #53466 +pkg syscall (freebsd-riscv64), const SizeofLinger ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofMsghdr = 48 #53466 +pkg syscall (freebsd-riscv64), const SizeofMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofRtMetrics = 112 #53466 +pkg syscall (freebsd-riscv64), const SizeofRtMetrics ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofRtMsghdr = 152 #53466 +pkg syscall (freebsd-riscv64), const SizeofRtMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrAny = 108 #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrAny ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrDatalink = 54 #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrDatalink ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrInet4 = 16 #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrInet4 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrInet6 = 28 #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrInet6 ideal-int #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrUnix = 106 #53466 +pkg syscall (freebsd-riscv64), const SizeofSockaddrUnix ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCIFLUSH = 1 #53466 +pkg syscall (freebsd-riscv64), const TCIFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCIOFLUSH = 3 #53466 +pkg syscall (freebsd-riscv64), const TCIOFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCOFLUSH = 2 #53466 +pkg syscall (freebsd-riscv64), const TCOFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_CA_NAME_MAX = 16 #53466 +pkg syscall (freebsd-riscv64), const TCP_CA_NAME_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_CONGESTION = 64 #53466 +pkg syscall (freebsd-riscv64), const TCP_CONGESTION ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_INFO = 32 #53466 +pkg syscall (freebsd-riscv64), const TCP_INFO ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPCNT = 1024 #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPCNT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPIDLE = 256 #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPIDLE ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPINIT = 128 #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPINIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPINTVL = 512 #53466 +pkg syscall (freebsd-riscv64), const TCP_KEEPINTVL ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXBURST = 4 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXBURST ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXHLEN = 60 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXHLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXOLEN = 40 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXOLEN ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXSEG = 2 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXSEG ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXWIN = 65535 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAXWIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAX_SACK = 4 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAX_SACK ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MAX_WINSHIFT = 14 #53466 +pkg syscall (freebsd-riscv64), const TCP_MAX_WINSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MD5SIG = 16 #53466 +pkg syscall (freebsd-riscv64), const TCP_MD5SIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MINMSS = 216 #53466 +pkg syscall (freebsd-riscv64), const TCP_MINMSS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_MSS = 536 #53466 +pkg syscall (freebsd-riscv64), const TCP_MSS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_NOOPT = 8 #53466 +pkg syscall (freebsd-riscv64), const TCP_NOOPT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_NOPUSH = 4 #53466 +pkg syscall (freebsd-riscv64), const TCP_NOPUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCP_VENDOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const TCP_VENDOR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TCSAFLUSH = 2 #53466 +pkg syscall (freebsd-riscv64), const TCSAFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCCBRK = 536900730 #53466 +pkg syscall (freebsd-riscv64), const TIOCCBRK ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCCDTR = 536900728 #53466 +pkg syscall (freebsd-riscv64), const TIOCCDTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCCONS = 2147775586 #53466 +pkg syscall (freebsd-riscv64), const TIOCCONS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCDRAIN = 536900702 #53466 +pkg syscall (freebsd-riscv64), const TIOCDRAIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCEXCL = 536900621 #53466 +pkg syscall (freebsd-riscv64), const TIOCEXCL ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCEXT = 2147775584 #53466 +pkg syscall (freebsd-riscv64), const TIOCEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCFLUSH = 2147775504 #53466 +pkg syscall (freebsd-riscv64), const TIOCFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGDRAINWAIT = 1074033750 #53466 +pkg syscall (freebsd-riscv64), const TIOCGDRAINWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGETA = 1076655123 #53466 +pkg syscall (freebsd-riscv64), const TIOCGETA ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGETD = 1074033690 #53466 +pkg syscall (freebsd-riscv64), const TIOCGETD ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGPGRP = 1074033783 #53466 +pkg syscall (freebsd-riscv64), const TIOCGPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGPTN = 1074033679 #53466 +pkg syscall (freebsd-riscv64), const TIOCGPTN ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGSID = 1074033763 #53466 +pkg syscall (freebsd-riscv64), const TIOCGSID ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCGWINSZ = 1074295912 #53466 +pkg syscall (freebsd-riscv64), const TIOCGWINSZ ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMBIC = 2147775595 #53466 +pkg syscall (freebsd-riscv64), const TIOCMBIC ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMBIS = 2147775596 #53466 +pkg syscall (freebsd-riscv64), const TIOCMBIS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMGDTRWAIT = 1074033754 #53466 +pkg syscall (freebsd-riscv64), const TIOCMGDTRWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMGET = 1074033770 #53466 +pkg syscall (freebsd-riscv64), const TIOCMGET ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMSDTRWAIT = 2147775579 #53466 +pkg syscall (freebsd-riscv64), const TIOCMSDTRWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCMSET = 2147775597 #53466 +pkg syscall (freebsd-riscv64), const TIOCMSET ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CAR = 64 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CAR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CD = 64 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CD ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CTS = 32 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_CTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DCD = 64 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DCD ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DSR = 256 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DSR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DTR = 2 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_DTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_LE = 1 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_LE ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RI = 128 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RI ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RNG = 128 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RNG ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RTS = 4 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_RTS ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_SR = 16 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_SR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCM_ST = 8 #53466 +pkg syscall (freebsd-riscv64), const TIOCM_ST ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCNOTTY = 536900721 #53466 +pkg syscall (freebsd-riscv64), const TIOCNOTTY ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCNXCL = 536900622 #53466 +pkg syscall (freebsd-riscv64), const TIOCNXCL ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCOUTQ = 1074033779 #53466 +pkg syscall (freebsd-riscv64), const TIOCOUTQ ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT = 2147775600 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_DATA = 0 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_DATA ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_DOSTOP = 32 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_DOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_FLUSHREAD = 1 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_FLUSHREAD ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_FLUSHWRITE = 2 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_FLUSHWRITE ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_IOCTL = 64 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_IOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_NOSTOP = 16 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_NOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_START = 8 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_START ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_STOP = 4 #53466 +pkg syscall (freebsd-riscv64), const TIOCPKT_STOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCPTMASTER = 536900636 #53466 +pkg syscall (freebsd-riscv64), const TIOCPTMASTER ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSBRK = 536900731 #53466 +pkg syscall (freebsd-riscv64), const TIOCSBRK ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSCTTY = 536900705 #53466 +pkg syscall (freebsd-riscv64), const TIOCSCTTY ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSDRAINWAIT = 2147775575 #53466 +pkg syscall (freebsd-riscv64), const TIOCSDRAINWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSDTR = 536900729 #53466 +pkg syscall (freebsd-riscv64), const TIOCSDTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSETA = 2150396948 #53466 +pkg syscall (freebsd-riscv64), const TIOCSETA ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSETAF = 2150396950 #53466 +pkg syscall (freebsd-riscv64), const TIOCSETAF ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSETAW = 2150396949 #53466 +pkg syscall (freebsd-riscv64), const TIOCSETAW ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSETD = 2147775515 #53466 +pkg syscall (freebsd-riscv64), const TIOCSETD ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSIG = 537162847 #53466 +pkg syscall (freebsd-riscv64), const TIOCSIG ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSPGRP = 2147775606 #53466 +pkg syscall (freebsd-riscv64), const TIOCSPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSTART = 536900718 #53466 +pkg syscall (freebsd-riscv64), const TIOCSTART ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSTAT = 536900709 #53466 +pkg syscall (freebsd-riscv64), const TIOCSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSTI = 2147578994 #53466 +pkg syscall (freebsd-riscv64), const TIOCSTI ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSTOP = 536900719 #53466 +pkg syscall (freebsd-riscv64), const TIOCSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCSWINSZ = 2148037735 #53466 +pkg syscall (freebsd-riscv64), const TIOCSWINSZ ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCTIMESTAMP = 1074820185 #53466 +pkg syscall (freebsd-riscv64), const TIOCTIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64), const TIOCUCNTL = 2147775590 #53466 +pkg syscall (freebsd-riscv64), const TIOCUCNTL ideal-int #53466 +pkg syscall (freebsd-riscv64), const TOSTOP = 4194304 #53466 +pkg syscall (freebsd-riscv64), const TOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const VDISCARD = 15 #53466 +pkg syscall (freebsd-riscv64), const VDISCARD ideal-int #53466 +pkg syscall (freebsd-riscv64), const VDSUSP = 11 #53466 +pkg syscall (freebsd-riscv64), const VDSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const VEOF = 0 #53466 +pkg syscall (freebsd-riscv64), const VEOF ideal-int #53466 +pkg syscall (freebsd-riscv64), const VEOL = 1 #53466 +pkg syscall (freebsd-riscv64), const VEOL ideal-int #53466 +pkg syscall (freebsd-riscv64), const VEOL2 = 2 #53466 +pkg syscall (freebsd-riscv64), const VEOL2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const VERASE = 3 #53466 +pkg syscall (freebsd-riscv64), const VERASE ideal-int #53466 +pkg syscall (freebsd-riscv64), const VERASE2 = 7 #53466 +pkg syscall (freebsd-riscv64), const VERASE2 ideal-int #53466 +pkg syscall (freebsd-riscv64), const VINTR = 8 #53466 +pkg syscall (freebsd-riscv64), const VINTR ideal-int #53466 +pkg syscall (freebsd-riscv64), const VKILL = 5 #53466 +pkg syscall (freebsd-riscv64), const VKILL ideal-int #53466 +pkg syscall (freebsd-riscv64), const VLNEXT = 14 #53466 +pkg syscall (freebsd-riscv64), const VLNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64), const VMIN = 16 #53466 +pkg syscall (freebsd-riscv64), const VMIN ideal-int #53466 +pkg syscall (freebsd-riscv64), const VQUIT = 9 #53466 +pkg syscall (freebsd-riscv64), const VQUIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const VREPRINT = 6 #53466 +pkg syscall (freebsd-riscv64), const VREPRINT ideal-int #53466 +pkg syscall (freebsd-riscv64), const VSTART = 12 #53466 +pkg syscall (freebsd-riscv64), const VSTART ideal-int #53466 +pkg syscall (freebsd-riscv64), const VSTATUS = 18 #53466 +pkg syscall (freebsd-riscv64), const VSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64), const VSTOP = 13 #53466 +pkg syscall (freebsd-riscv64), const VSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64), const VSUSP = 10 #53466 +pkg syscall (freebsd-riscv64), const VSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64), const VTIME = 17 #53466 +pkg syscall (freebsd-riscv64), const VTIME ideal-int #53466 +pkg syscall (freebsd-riscv64), const VWERASE = 4 #53466 +pkg syscall (freebsd-riscv64), const VWERASE ideal-int #53466 +pkg syscall (freebsd-riscv64), const WCONTINUED = 4 #53466 +pkg syscall (freebsd-riscv64), const WCONTINUED ideal-int #53466 +pkg syscall (freebsd-riscv64), const WCOREFLAG = 128 #53466 +pkg syscall (freebsd-riscv64), const WCOREFLAG ideal-int #53466 +pkg syscall (freebsd-riscv64), const WEXITED = 16 #53466 +pkg syscall (freebsd-riscv64), const WEXITED ideal-int #53466 +pkg syscall (freebsd-riscv64), const WLINUXCLONE = 2147483648 #53466 +pkg syscall (freebsd-riscv64), const WLINUXCLONE ideal-int #53466 +pkg syscall (freebsd-riscv64), const WNOHANG = 1 #53466 +pkg syscall (freebsd-riscv64), const WNOHANG ideal-int #53466 +pkg syscall (freebsd-riscv64), const WNOWAIT = 8 #53466 +pkg syscall (freebsd-riscv64), const WNOWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64), const WSTOPPED = 2 #53466 +pkg syscall (freebsd-riscv64), const WSTOPPED ideal-int #53466 +pkg syscall (freebsd-riscv64), const WTRAPPED = 32 #53466 +pkg syscall (freebsd-riscv64), const WTRAPPED ideal-int #53466 +pkg syscall (freebsd-riscv64), const WUNTRACED = 2 #53466 +pkg syscall (freebsd-riscv64), const WUNTRACED ideal-int #53466 +pkg syscall (freebsd-riscv64), func Accept(int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func Accept4(int, int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func Access(string, uint32) error #53466 +pkg syscall (freebsd-riscv64), func Adjtime(*Timeval, *Timeval) error #53466 +pkg syscall (freebsd-riscv64), func Bind(int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64), func BpfBuflen //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfBuflen(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func BpfDatalink //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfDatalink(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func BpfHeadercmpl //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfHeadercmpl(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func BpfInterface //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfInterface(int, string) (string, error) #53466 +pkg syscall (freebsd-riscv64), func BpfJump //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfJump(int, int, int, int) *BpfInsn #53466 +pkg syscall (freebsd-riscv64), func BpfStats //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfStats(int) (*BpfStat, error) #53466 +pkg syscall (freebsd-riscv64), func BpfStmt //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfStmt(int, int) *BpfInsn #53466 +pkg syscall (freebsd-riscv64), func BpfTimeout //deprecated #53466 +pkg syscall (freebsd-riscv64), func BpfTimeout(int) (*Timeval, error) #53466 +pkg syscall (freebsd-riscv64), func CheckBpfVersion //deprecated #53466 +pkg syscall (freebsd-riscv64), func CheckBpfVersion(int) error #53466 +pkg syscall (freebsd-riscv64), func Chflags(string, int) error #53466 +pkg syscall (freebsd-riscv64), func Chroot(string) error #53466 +pkg syscall (freebsd-riscv64), func Close(int) error #53466 +pkg syscall (freebsd-riscv64), func CloseOnExec(int) #53466 +pkg syscall (freebsd-riscv64), func CmsgLen(int) int #53466 +pkg syscall (freebsd-riscv64), func CmsgSpace(int) int #53466 +pkg syscall (freebsd-riscv64), func Connect(int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64), func Dup(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Dup2(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Fchdir(int) error #53466 +pkg syscall (freebsd-riscv64), func Fchflags(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Fchmod(int, uint32) error #53466 +pkg syscall (freebsd-riscv64), func Fchown(int, int, int) error #53466 +pkg syscall (freebsd-riscv64), func FcntlFlock(uintptr, int, *Flock_t) error #53466 +pkg syscall (freebsd-riscv64), func Flock(int, int) error #53466 +pkg syscall (freebsd-riscv64), func FlushBpf //deprecated #53466 +pkg syscall (freebsd-riscv64), func FlushBpf(int) error #53466 +pkg syscall (freebsd-riscv64), func ForkExec(string, []string, *ProcAttr) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Fpathconf(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Fstat(int, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64), func Fstatat(int, string, *Stat_t, int) error #53466 +pkg syscall (freebsd-riscv64), func Fstatfs(int, *Statfs_t) error #53466 +pkg syscall (freebsd-riscv64), func Fsync(int) error #53466 +pkg syscall (freebsd-riscv64), func Ftruncate(int, int64) error #53466 +pkg syscall (freebsd-riscv64), func Futimes(int, []Timeval) error #53466 +pkg syscall (freebsd-riscv64), func Getdirentries(int, []uint8, *uintptr) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Getdtablesize() int #53466 +pkg syscall (freebsd-riscv64), func Getfsstat([]Statfs_t, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Getpeername(int) (Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func Getpgid(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Getpgrp() int #53466 +pkg syscall (freebsd-riscv64), func Getpriority(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Getrlimit(int, *Rlimit) error #53466 +pkg syscall (freebsd-riscv64), func Getrusage(int, *Rusage) error #53466 +pkg syscall (freebsd-riscv64), func Getsid(int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Getsockname(int) (Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptByte(int, int, int) (uint8, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) #53466 +pkg syscall (freebsd-riscv64), func GetsockoptInt(int, int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Issetugid() bool #53466 +pkg syscall (freebsd-riscv64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Kill(int, Signal) error #53466 +pkg syscall (freebsd-riscv64), func Kqueue() (int, error) #53466 +pkg syscall (freebsd-riscv64), func Listen(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Lstat(string, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64), func Mkfifo(string, uint32) error #53466 +pkg syscall (freebsd-riscv64), func Mknod(string, uint32, uint64) error #53466 +pkg syscall (freebsd-riscv64), func Mmap(int, int64, int, int, int) ([]uint8, error) #53466 +pkg syscall (freebsd-riscv64), func Munmap([]uint8) error #53466 +pkg syscall (freebsd-riscv64), func Nanosleep(*Timespec, *Timespec) error #53466 +pkg syscall (freebsd-riscv64), func Open(string, int, uint32) (int, error) #53466 +pkg syscall (freebsd-riscv64), func ParseDirent([]uint8, int, []string) (int, int, []string) #53466 +pkg syscall (freebsd-riscv64), func ParseRoutingMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) #53466 +pkg syscall (freebsd-riscv64), func ParseRoutingSockaddr //deprecated #53466 +pkg syscall (freebsd-riscv64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) #53466 +pkg syscall (freebsd-riscv64), func ParseUnixRights(*SocketControlMessage) ([]int, error) #53466 +pkg syscall (freebsd-riscv64), func Pathconf(string, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Pipe([]int) error #53466 +pkg syscall (freebsd-riscv64), func Pipe2([]int, int) error #53466 +pkg syscall (freebsd-riscv64), func Pread(int, []uint8, int64) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Pwrite(int, []uint8, int64) (int, error) #53466 +pkg syscall (freebsd-riscv64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64), func Read(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64), func ReadDirent(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64), func Revoke(string) error #53466 +pkg syscall (freebsd-riscv64), func RouteRIB //deprecated #53466 +pkg syscall (freebsd-riscv64), func RouteRIB(int, int) ([]uint8, error) #53466 +pkg syscall (freebsd-riscv64), func Seek(int, int64, int) (int64, error) #53466 +pkg syscall (freebsd-riscv64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error #53466 +pkg syscall (freebsd-riscv64), func Sendfile(int, int, *int64, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error #53466 +pkg syscall (freebsd-riscv64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Sendto(int, []uint8, int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64), func SetBpf //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpf(int, []BpfInsn) error #53466 +pkg syscall (freebsd-riscv64), func SetBpfBuflen //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfBuflen(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func SetBpfDatalink //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfDatalink(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func SetBpfHeadercmpl //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfHeadercmpl(int, int) error #53466 +pkg syscall (freebsd-riscv64), func SetBpfImmediate //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfImmediate(int, int) error #53466 +pkg syscall (freebsd-riscv64), func SetBpfInterface //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfInterface(int, string) error #53466 +pkg syscall (freebsd-riscv64), func SetBpfPromisc //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfPromisc(int, int) error #53466 +pkg syscall (freebsd-riscv64), func SetBpfTimeout //deprecated #53466 +pkg syscall (freebsd-riscv64), func SetBpfTimeout(int, *Timeval) error #53466 +pkg syscall (freebsd-riscv64), func SetKevent(*Kevent_t, int, int, int) #53466 +pkg syscall (freebsd-riscv64), func SetNonblock(int, bool) error #53466 +pkg syscall (freebsd-riscv64), func Setegid(int) error #53466 +pkg syscall (freebsd-riscv64), func Seteuid(int) error #53466 +pkg syscall (freebsd-riscv64), func Setgid(int) error #53466 +pkg syscall (freebsd-riscv64), func Setgroups([]int) error #53466 +pkg syscall (freebsd-riscv64), func Setlogin(string) error #53466 +pkg syscall (freebsd-riscv64), func Setpgid(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Setpriority(int, int, int) error #53466 +pkg syscall (freebsd-riscv64), func Setregid(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Setreuid(int, int) error #53466 +pkg syscall (freebsd-riscv64), func Setrlimit(int, *Rlimit) error #53466 +pkg syscall (freebsd-riscv64), func Setsid() (int, error) #53466 +pkg syscall (freebsd-riscv64), func SetsockoptByte(int, int, int, uint8) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptIPMreq(int, int, int, *IPMreq) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptInt(int, int, int, int) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptLinger(int, int, int, *Linger) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptString(int, int, int, string) error #53466 +pkg syscall (freebsd-riscv64), func SetsockoptTimeval(int, int, int, *Timeval) error #53466 +pkg syscall (freebsd-riscv64), func Settimeofday(*Timeval) error #53466 +pkg syscall (freebsd-riscv64), func Setuid(int) error #53466 +pkg syscall (freebsd-riscv64), func Shutdown(int, int) error #53466 +pkg syscall (freebsd-riscv64), func SlicePtrFromStrings([]string) ([]*uint8, error) #53466 +pkg syscall (freebsd-riscv64), func Socket(int, int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Socketpair(int, int, int) ([2]int, error) #53466 +pkg syscall (freebsd-riscv64), func Stat(string, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64), func Statfs(string, *Statfs_t) error #53466 +pkg syscall (freebsd-riscv64), func StringSlicePtr //deprecated #53466 +pkg syscall (freebsd-riscv64), func StringSlicePtr([]string) []*uint8 #53466 +pkg syscall (freebsd-riscv64), func Sync() error #53466 +pkg syscall (freebsd-riscv64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64), func Sysctl(string) (string, error) #53466 +pkg syscall (freebsd-riscv64), func SysctlUint32(string) (uint32, error) #53466 +pkg syscall (freebsd-riscv64), func TimevalToNsec(Timeval) int64 #53466 +pkg syscall (freebsd-riscv64), func Truncate(string, int64) error #53466 +pkg syscall (freebsd-riscv64), func Umask(int) int #53466 +pkg syscall (freebsd-riscv64), func Undelete(string) error #53466 +pkg syscall (freebsd-riscv64), func UnixRights(...int) []uint8 #53466 +pkg syscall (freebsd-riscv64), func Unmount(string, int) error #53466 +pkg syscall (freebsd-riscv64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) #53466 +pkg syscall (freebsd-riscv64), func Write(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64), method (*Cmsghdr) SetLen(int) #53466 +pkg syscall (freebsd-riscv64), method (*Iovec) SetLen(int) #53466 +pkg syscall (freebsd-riscv64), method (*Msghdr) SetControllen(int) #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct, Caplen uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct, Datalen uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct, Hdrlen uint16 #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct, Pad_cgo_0 [6]uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfHdr struct, Tstamp Timeval #53466 +pkg syscall (freebsd-riscv64), type BpfInsn struct #53466 +pkg syscall (freebsd-riscv64), type BpfInsn struct, Code uint16 #53466 +pkg syscall (freebsd-riscv64), type BpfInsn struct, Jf uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfInsn struct, Jt uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfInsn struct, K uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfProgram struct #53466 +pkg syscall (freebsd-riscv64), type BpfProgram struct, Insns *BpfInsn #53466 +pkg syscall (freebsd-riscv64), type BpfProgram struct, Len uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfProgram struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfStat struct #53466 +pkg syscall (freebsd-riscv64), type BpfStat struct, Drop uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfStat struct, Recv uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfVersion struct #53466 +pkg syscall (freebsd-riscv64), type BpfVersion struct, Major uint16 #53466 +pkg syscall (freebsd-riscv64), type BpfVersion struct, Minor uint16 #53466 +pkg syscall (freebsd-riscv64), type BpfZbuf struct #53466 +pkg syscall (freebsd-riscv64), type BpfZbuf struct, Bufa *uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfZbuf struct, Bufb *uint8 #53466 +pkg syscall (freebsd-riscv64), type BpfZbuf struct, Buflen uint64 #53466 +pkg syscall (freebsd-riscv64), type BpfZbufHeader struct #53466 +pkg syscall (freebsd-riscv64), type BpfZbufHeader struct, Kernel_gen uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfZbufHeader struct, Kernel_len uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfZbufHeader struct, User_gen uint32 #53466 +pkg syscall (freebsd-riscv64), type BpfZbufHeader struct, X_bzh_pad [5]uint32 #53466 +pkg syscall (freebsd-riscv64), type Cmsghdr struct #53466 +pkg syscall (freebsd-riscv64), type Cmsghdr struct, Len uint32 #53466 +pkg syscall (freebsd-riscv64), type Cmsghdr struct, Level int32 #53466 +pkg syscall (freebsd-riscv64), type Cmsghdr struct, Type int32 #53466 +pkg syscall (freebsd-riscv64), type Credential struct #53466 +pkg syscall (freebsd-riscv64), type Credential struct, Gid uint32 #53466 +pkg syscall (freebsd-riscv64), type Credential struct, Groups []uint32 #53466 +pkg syscall (freebsd-riscv64), type Credential struct, NoSetGroups bool #53466 +pkg syscall (freebsd-riscv64), type Credential struct, Uid uint32 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Fileno uint64 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Name [256]int8 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Namlen uint16 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Off int64 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Pad0 uint8 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Pad1 uint16 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Reclen uint16 #53466 +pkg syscall (freebsd-riscv64), type Dirent struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type FdSet struct #53466 +pkg syscall (freebsd-riscv64), type FdSet struct, X__fds_bits [16]uint64 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Len int64 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Pid int32 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Start int64 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Sysid int32 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Type int16 #53466 +pkg syscall (freebsd-riscv64), type Flock_t struct, Whence int16 #53466 +pkg syscall (freebsd-riscv64), type Fsid struct #53466 +pkg syscall (freebsd-riscv64), type Fsid struct, Val [2]int32 #53466 +pkg syscall (freebsd-riscv64), type ICMPv6Filter struct #53466 +pkg syscall (freebsd-riscv64), type ICMPv6Filter struct, Filt [8]uint32 #53466 +pkg syscall (freebsd-riscv64), type IPMreqn struct #53466 +pkg syscall (freebsd-riscv64), type IPMreqn struct, Address [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type IPMreqn struct, Ifindex int32 #53466 +pkg syscall (freebsd-riscv64), type IPMreqn struct, Multiaddr [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type IPv6MTUInfo struct #53466 +pkg syscall (freebsd-riscv64), type IPv6MTUInfo struct, Addr RawSockaddrInet6 #53466 +pkg syscall (freebsd-riscv64), type IPv6MTUInfo struct, Mtu uint32 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, Name [16]int8 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64), type IfAnnounceMsghdr struct, What uint16 #53466 +pkg syscall (freebsd-riscv64), type IfData struct #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Addrlen uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Baudrate uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Collisions uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Datalen uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Epoch int64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Hdrlen uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Hwassist uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Ibytes uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Ierrors uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Imcasts uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Ipackets uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Iqdrops uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Lastchange Timeval #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Link_state uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Metric uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Mtu uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Noproto uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Obytes uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Oerrors uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Omcasts uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Opackets uint64 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Physical uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Spare_char1 uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Spare_char2 uint8 #53466 +pkg syscall (freebsd-riscv64), type IfData struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Data IfData #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type IfMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Metric int32 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type IfaMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type IfmaMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64), type Inet6Pktinfo struct #53466 +pkg syscall (freebsd-riscv64), type Inet6Pktinfo struct, Addr [16]uint8 #53466 +pkg syscall (freebsd-riscv64), type Inet6Pktinfo struct, Ifindex uint32 #53466 +pkg syscall (freebsd-riscv64), type InterfaceAddrMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type InterfaceAddrMessage struct #53466 +pkg syscall (freebsd-riscv64), type InterfaceAddrMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64), type InterfaceAddrMessage struct, Header IfaMsghdr #53466 +pkg syscall (freebsd-riscv64), type InterfaceAnnounceMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type InterfaceAnnounceMessage struct #53466 +pkg syscall (freebsd-riscv64), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr #53466 +pkg syscall (freebsd-riscv64), type InterfaceMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type InterfaceMessage struct #53466 +pkg syscall (freebsd-riscv64), type InterfaceMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64), type InterfaceMessage struct, Header IfMsghdr #53466 +pkg syscall (freebsd-riscv64), type InterfaceMulticastAddrMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type InterfaceMulticastAddrMessage struct #53466 +pkg syscall (freebsd-riscv64), type InterfaceMulticastAddrMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr #53466 +pkg syscall (freebsd-riscv64), type Iovec struct #53466 +pkg syscall (freebsd-riscv64), type Iovec struct, Base *uint8 #53466 +pkg syscall (freebsd-riscv64), type Iovec struct, Len uint64 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Data int64 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Fflags uint32 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Filter int16 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Flags uint16 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Ident uint64 #53466 +pkg syscall (freebsd-riscv64), type Kevent_t struct, Udata *uint8 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Control *uint8 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Controllen uint32 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Iov *Iovec #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Iovlen int32 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Name *uint8 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Namelen uint32 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type Msghdr struct, Pad_cgo_1 [4]uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddr struct, Data [14]int8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddr struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddr struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrAny struct, Pad [92]int8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Alen uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Data [46]int8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Nlen uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Slen uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrInet4 struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrInet4 struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrInet4 struct, Zero [8]int8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrInet6 struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrInet6 struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrUnix struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrUnix struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type RawSockaddrUnix struct, Path [104]int8 #53466 +pkg syscall (freebsd-riscv64), type Rlimit struct #53466 +pkg syscall (freebsd-riscv64), type Rlimit struct, Cur int64 #53466 +pkg syscall (freebsd-riscv64), type Rlimit struct, Max int64 #53466 +pkg syscall (freebsd-riscv64), type RouteMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type RouteMessage struct #53466 +pkg syscall (freebsd-riscv64), type RouteMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64), type RouteMessage struct, Header RtMsghdr #53466 +pkg syscall (freebsd-riscv64), type RoutingMessage //deprecated #53466 +pkg syscall (freebsd-riscv64), type RoutingMessage interface, unexported methods #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Expire uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Filler [3]uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Hopcount uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Locks uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Mtu uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Pksent uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Recvpipe uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Rtt uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Rttvar uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Sendpipe uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Ssthresh uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMetrics struct, Weight uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Errno int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Fmask int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Inits uint64 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Pid int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Rmx RtMetrics #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Seq int32 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type RtMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Idrss int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Inblock int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Isrss int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Ixrss int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Majflt int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Maxrss int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Minflt int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Msgrcv int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Msgsnd int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Nivcsw int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Nsignals int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Nswap int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Nvcsw int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Oublock int64 #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Stime Timeval #53466 +pkg syscall (freebsd-riscv64), type Rusage struct, Utime Timeval #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Alen uint8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Data [46]int8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Nlen uint8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Slen uint8 #53466 +pkg syscall (freebsd-riscv64), type SockaddrDatalink struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64), type SocketControlMessage struct #53466 +pkg syscall (freebsd-riscv64), type SocketControlMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64), type SocketControlMessage struct, Header Cmsghdr #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Atimespec Timespec #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Birthtimespec Timespec #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Blksize int32 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Blocks int64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Ctimespec Timespec #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Dev uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Flags uint32 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Gen uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Gid uint32 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Ino uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Mode uint16 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Mtimespec Timespec #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Nlink uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Padding0 int16 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Padding1 int32 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Rdev uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Size int64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Spare [10]uint64 #53466 +pkg syscall (freebsd-riscv64), type Stat_t struct, Uid uint32 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Asyncreads uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Asyncwrites uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Bavail int64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Bfree uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Blocks uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Bsize uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Charspare [80]int8 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Ffree int64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Files uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Flags uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Fsid Fsid #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Fstypename [16]int8 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Iosize uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Mntfromname [1024]int8 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Mntonname [1024]int8 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Namemax uint32 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Owner uint32 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Spare [10]uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Syncreads uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Syncwrites uint64 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Type uint32 #53466 +pkg syscall (freebsd-riscv64), type Statfs_t struct, Version uint32 #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Chroot string #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Credential *Credential #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Ctty int #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Foreground bool #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Noctty bool #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Pdeathsig Signal #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Pgid int #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Ptrace bool #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Setctty bool #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Setpgid bool #53466 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Setsid bool #53466 +pkg syscall (freebsd-riscv64), type Termios struct #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Cc [20]uint8 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Cflag uint32 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Iflag uint32 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Ispeed uint32 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Lflag uint32 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Oflag uint32 #53466 +pkg syscall (freebsd-riscv64), type Termios struct, Ospeed uint32 #53466 +pkg syscall (freebsd-riscv64), type Timespec struct, Nsec int64 #53466 +pkg syscall (freebsd-riscv64), type Timespec struct, Sec int64 #53466 +pkg syscall (freebsd-riscv64), type Timeval struct, Sec int64 #53466 +pkg syscall (freebsd-riscv64), type Timeval struct, Usec int64 #53466 +pkg syscall (freebsd-riscv64), type WaitStatus uint32 #53466 +pkg syscall (freebsd-riscv64), var Stderr int #53466 +pkg syscall (freebsd-riscv64), var Stdin int #53466 +pkg syscall (freebsd-riscv64), var Stdout int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_APPLETALK = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_APPLETALK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ARP = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ATM = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_BLUETOOTH = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_BLUETOOTH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CCITT = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CCITT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CHAOS = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CNT = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_CNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_COIP = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_COIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DATAKIT = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DATAKIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DECnet = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DECnet ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DLI = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_DLI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_E164 = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_E164 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ECMA = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ECMA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_HYLINK = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_HYLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IEEE80211 = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IMPLINK = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IMPLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_INET6 = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_INET6_SDP = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_INET6_SDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_INET_SDP = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_INET_SDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IPX = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_IPX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ISDN = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ISDN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ISO = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ISO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LAT = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LINK = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LOCAL = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_LOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_MAX = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NATM = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NETBIOS = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NETBIOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NETGRAPH = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_NETGRAPH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_OSI = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_OSI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_PUP = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_PUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ROUTE = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_ROUTE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SCLUSTER = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SCLUSTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SIP = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SLOW = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SLOW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SNA = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_SNA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR00 = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR00 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR01 = 41 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR01 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR02 = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR02 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR03 = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR03 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR04 = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR04 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR05 = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR05 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR06 = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR06 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR07 = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR07 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR08 = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR08 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR09 = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR09 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR10 = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR10 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR11 = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR11 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR12 = 63 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR12 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR13 = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR13 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR14 = 67 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR14 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR15 = 69 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR15 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR16 = 71 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR16 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR17 = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR17 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR18 = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR18 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR19 = 77 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR19 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR20 = 79 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR20 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR21 = 81 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR21 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR22 = 83 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR22 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR23 = 85 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR23 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR24 = 87 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR24 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR25 = 89 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR25 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR26 = 91 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR26 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR27 = 93 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR27 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR28 = 95 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR28 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR29 = 97 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR29 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR30 = 99 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR30 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR31 = 101 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR31 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR32 = 103 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR32 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR33 = 105 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR33 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR34 = 107 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR34 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR35 = 109 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR35 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR36 = 111 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR36 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR37 = 113 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR37 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR38 = 115 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR38 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR39 = 117 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR39 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR40 = 119 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR40 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR41 = 121 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR41 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR42 = 123 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR42 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR43 = 125 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR43 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR44 = 127 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR44 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR45 = 129 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR45 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR46 = 131 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR46 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR47 = 133 #53466 +pkg syscall (freebsd-riscv64-cgo), const AF_VENDOR47 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B0 = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const B0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B110 = 110 #53466 +pkg syscall (freebsd-riscv64-cgo), const B110 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B115200 = 115200 #53466 +pkg syscall (freebsd-riscv64-cgo), const B115200 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B1200 = 1200 #53466 +pkg syscall (freebsd-riscv64-cgo), const B1200 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B134 = 134 #53466 +pkg syscall (freebsd-riscv64-cgo), const B134 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B14400 = 14400 #53466 +pkg syscall (freebsd-riscv64-cgo), const B14400 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B150 = 150 #53466 +pkg syscall (freebsd-riscv64-cgo), const B150 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B1800 = 1800 #53466 +pkg syscall (freebsd-riscv64-cgo), const B1800 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B19200 = 19200 #53466 +pkg syscall (freebsd-riscv64-cgo), const B19200 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B200 = 200 #53466 +pkg syscall (freebsd-riscv64-cgo), const B200 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B230400 = 230400 #53466 +pkg syscall (freebsd-riscv64-cgo), const B230400 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B2400 = 2400 #53466 +pkg syscall (freebsd-riscv64-cgo), const B2400 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B28800 = 28800 #53466 +pkg syscall (freebsd-riscv64-cgo), const B28800 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B300 = 300 #53466 +pkg syscall (freebsd-riscv64-cgo), const B300 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B38400 = 38400 #53466 +pkg syscall (freebsd-riscv64-cgo), const B38400 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B460800 = 460800 #53466 +pkg syscall (freebsd-riscv64-cgo), const B460800 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B4800 = 4800 #53466 +pkg syscall (freebsd-riscv64-cgo), const B4800 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B50 = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const B50 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B57600 = 57600 #53466 +pkg syscall (freebsd-riscv64-cgo), const B57600 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B600 = 600 #53466 +pkg syscall (freebsd-riscv64-cgo), const B600 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B7200 = 7200 #53466 +pkg syscall (freebsd-riscv64-cgo), const B7200 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B75 = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const B75 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B76800 = 76800 #53466 +pkg syscall (freebsd-riscv64-cgo), const B76800 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B921600 = 921600 #53466 +pkg syscall (freebsd-riscv64-cgo), const B921600 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const B9600 = 9600 #53466 +pkg syscall (freebsd-riscv64-cgo), const B9600 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCFEEDBACK = 2147762812 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCFEEDBACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCFLUSH = 536887912 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGBLEN = 1074020966 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGBLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDIRECTION = 1074020982 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDLT = 1074020970 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDLT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDLTLIST = 3222291065 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGDLTLIST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETBUFMODE = 1074020989 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETBUFMODE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETIF = 1075855979 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETIF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETZMAX = 1074283135 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGETZMAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGHDRCMPLT = 1074020980 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGHDRCMPLT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGRSIG = 1074020978 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGRSIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGRTIMEOUT = 1074807406 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGRTIMEOUT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGSEESENT = 1074020982 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGSEESENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGSTATS = 1074283119 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGSTATS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGTSTAMP = 1074020995 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCGTSTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCIMMEDIATE = 2147762800 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCIMMEDIATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCLOCK = 536887930 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCPROMISC = 536887913 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCPROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCROTZBUF = 1075331712 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCROTZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSBLEN = 3221504614 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSBLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSDIRECTION = 2147762807 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSDLT = 2147762808 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSDLT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETBUFMODE = 2147762814 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETBUFMODE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETF = 2148549223 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETFNR = 2148549250 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETFNR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETIF = 2149597804 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETIF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETWF = 2148549243 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETWF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETZBUF = 2149073537 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSETZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSHDRCMPLT = 2147762805 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSHDRCMPLT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSRSIG = 2147762803 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSRSIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSRTIMEOUT = 2148549229 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSRTIMEOUT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSSEESENT = 2147762807 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSSEESENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSTSTAMP = 2147762820 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCSTSTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCVERSION = 1074020977 #53466 +pkg syscall (freebsd-riscv64-cgo), const BIOCVERSION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_A = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_A ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ABS = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ABS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ADD = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ALIGNMENT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ALIGNMENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ALU = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ALU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_AND = 80 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_AND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_B = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_B ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_BUFMODE_BUFFER = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_BUFMODE_BUFFER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_BUFMODE_ZBUF = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_BUFMODE_ZBUF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_DIV = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_DIV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_H = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_H ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_IMM = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_IMM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_IND = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_IND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JA = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JEQ = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JEQ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JGE = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JGT = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JGT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JMP = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JSET = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_JSET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_K = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_K ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LD = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LDX = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LDX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LEN = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LSH = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_LSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAJOR_VERSION = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAJOR_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAXBUFSIZE = 524288 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAXBUFSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAXINSNS = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MAXINSNS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MEM = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MEM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MEMWORDS = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MEMWORDS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MINBUFSIZE = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MINBUFSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MINOR_VERSION = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MINOR_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MISC = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MISC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MSH = 160 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MUL = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_MUL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_NEG = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_NEG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_OR = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_OR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RELEASE = 199606 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RELEASE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RET = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RSH = 112 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_RSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ST = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_ST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_STX = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_STX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_SUB = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_SUB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_TAX = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_TAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_TXA = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_TXA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_FAST = 258 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_MONOTONIC = 514 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST = 770 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_BINTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FAST = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FLAG_MASK = 768 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FLAG_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FORMAT_MASK = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_FORMAT_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_FAST = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_MONOTONIC = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST = 768 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MICROTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MONOTONIC = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MONOTONIC_FAST = 768 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_FAST = 257 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_MONOTONIC = 513 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_MONOTONIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST = 769 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NANOTIME_MONOTONIC_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NONE = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NORMAL = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_T_NORMAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_W = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_W ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_X = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const BPF_X ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const BRKINT = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const BRKINT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CFLUSH = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const CFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CLOCAL = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const CLOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CREAD = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const CREAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CS5 = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const CS5 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CS6 = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const CS6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CS7 = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const CS7 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CS8 = 768 #53466 +pkg syscall (freebsd-riscv64-cgo), const CS8 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSIZE = 768 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTART = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTART ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTATUS = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTOP = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTOPB = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSTOPB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CSUSP = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const CSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CTL_MAXNAME = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const CTL_MAXNAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const CTL_NET = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const CTL_NET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_A429 = 184 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_A429 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_A653_ICM = 185 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_A653_ICM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AIRONET_HEADER = 120 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AIRONET_HEADER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AOS = 222 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ARCNET = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ARCNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ARCNET_LINUX = 129 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ARCNET_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ATM_CLIP = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ATM_CLIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ATM_RFC1483 = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ATM_RFC1483 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AURORA = 126 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AURORA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AX25 = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AX25 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AX25_KISS = 202 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_AX25_KISS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BACNET_MS_TP = 165 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BACNET_MS_TP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CAN20B = 190 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CAN20B ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CAN_SOCKETCAN = 227 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CAN_SOCKETCAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CHAOS = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CHDLC = 104 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CISCO_IOS = 118 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_CISCO_IOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_C_HDLC = 104 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_C_HDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_C_HDLC_WITH_DIR = 205 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_C_HDLC_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DBUS = 231 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DBUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DECT = 221 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DOCSIS = 143 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DOCSIS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DVB_CI = 235 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_DVB_CI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ECONET = 115 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ECONET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_EN10MB = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_EN10MB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_EN3MB = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_EN3MB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ENC = 109 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ENC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF = 197 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF_ETH = 175 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF_ETH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF_POS = 176 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_ERF_POS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FC_2 = 224 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FC_2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS = 225 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FC_2_WITH_FRAME_DELIMS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FDDI = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FDDI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FLEXRAY = 210 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FLEXRAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FRELAY = 107 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FRELAY_WITH_DIR = 206 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_FRELAY_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GCOM_SERIAL = 173 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GCOM_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GCOM_T1E1 = 172 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GCOM_T1E1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPF_F = 171 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPF_F ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPF_T = 170 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPF_T ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPRS_LLC = 169 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GPRS_LLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GSMTAP_ABIS = 218 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GSMTAP_ABIS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GSMTAP_UM = 217 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_GSMTAP_UM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_HHDLC = 121 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_HHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IBM_SN = 146 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IBM_SN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IBM_SP = 145 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IBM_SP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802 = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11 = 105 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11_RADIO = 127 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11_RADIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11_RADIO_AVS = 163 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4 = 195 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_LINUX = 191 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_NOFCS = 230 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_NOFCS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_NONASK_PHY = 215 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_15_4_NONASK_PHY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_16_MAC_CPS = 188 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_16_MAC_CPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO = 193 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPFILTER = 116 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPMB = 199 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPMB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPMB_LINUX = 209 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPMB_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPNET = 226 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPOIB = 242 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPOIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPV4 = 228 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPV4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPV6 = 229 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IPV6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IP_OVER_FC = 122 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_IP_OVER_FC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM1 = 137 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM2 = 135 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM_CEMIC = 238 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ATM_CEMIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_CHDLC = 181 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_CHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ES = 132 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ETHER = 178 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_FIBRECHANNEL = 234 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_FIBRECHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_FRELAY = 180 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_GGSN = 133 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_GGSN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ISM = 194 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ISM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MFR = 134 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MFR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MLFR = 131 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MLFR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MLPPP = 130 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MLPPP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MONITOR = 164 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_MONITOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PIC_PEER = 174 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PIC_PEER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPP = 179 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPPOE = 167 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPPOE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPPOE_ATM = 168 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_SERVICES = 136 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_SERVICES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_SRX_E2E = 233 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_SRX_E2E ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ST = 200 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_ST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_VP = 183 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_VP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_VS = 232 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_JUNIPER_VS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LAPB_WITH_DIR = 207 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LAPB_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LAPD = 203 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LIN = 212 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_EVDEV = 216 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_EVDEV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_IRDA = 144 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_IRDA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_LAPD = 177 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_PPP_WITHDIRECTION = 166 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_PPP_WITHDIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_SLL = 113 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LINUX_SLL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LOOP = 108 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LTALK = 114 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_LTALK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MATCHING_MAX = 246 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MATCHING_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MATCHING_MIN = 104 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MATCHING_MIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MFR = 182 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MFR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MOST = 211 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MPEG_2_TS = 243 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MPEG_2_TS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MPLS = 219 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP2 = 140 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP2_WITH_PHDR = 139 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP2_WITH_PHDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP3 = 141 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MTP3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MUX27010 = 236 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_MUX27010 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NETANALYZER = 240 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NETANALYZER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NETANALYZER_TRANSPARENT = 241 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NETANALYZER_TRANSPARENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NFC_LLCP = 245 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NFC_LLCP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NFLOG = 239 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NG40 = 244 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NG40 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NULL = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_NULL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PCI_EXP = 125 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PCI_EXP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PFLOG = 117 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PFSYNC = 121 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPI = 192 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_BSDOS = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_BSDOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_ETHER = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_PPPD = 166 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_PPPD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_SERIAL = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_WITH_DIR = 204 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_WITH_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_WITH_DIRECTION = 166 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PPP_WITH_DIRECTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PRISM_HEADER = 119 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PRISM_HEADER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PRONET = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_PRONET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RAIF1 = 198 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RAIF1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RAW = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RAW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RIO = 124 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_RIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SCCP = 142 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SCCP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SITA = 196 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SITA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SLIP = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SLIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SLIP_BSDOS = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SLIP_BSDOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_STANAG_5066_D_PDU = 237 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_STANAG_5066_D_PDU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SUNATM = 123 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SUNATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SYMANTEC_FIREWALL = 99 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_SYMANTEC_FIREWALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_TZSP = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_TZSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB = 186 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB_LINUX = 189 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB_LINUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB_LINUX_MMAPPED = 220 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USB_LINUX_MMAPPED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER0 = 147 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER1 = 148 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER10 = 157 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER10 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER11 = 158 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER11 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER12 = 159 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER12 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER13 = 160 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER13 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER14 = 161 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER14 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER15 = 162 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER15 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER2 = 149 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER3 = 150 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER4 = 151 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER5 = 152 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER5 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER6 = 153 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER7 = 154 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER7 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER8 = 155 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER8 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER9 = 156 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_USER9 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_WIHART = 223 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_WIHART ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_X2E_SERIAL = 213 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_X2E_SERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_X2E_XORAYA = 214 #53466 +pkg syscall (freebsd-riscv64-cgo), const DLT_X2E_XORAYA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_BLK = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_BLK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_CHR = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_CHR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_DIR = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_DIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_FIFO = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_FIFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_LNK = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_LNK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_REG = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_REG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_SOCK = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_SOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_UNKNOWN = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_UNKNOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_WHT = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const DT_WHT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const E2BIG = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const EACCES = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const EADDRINUSE = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const EADDRNOTAVAIL = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const EAFNOSUPPORT = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const EAGAIN = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const EALREADY = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const EAUTH = 80 #53466 +pkg syscall (freebsd-riscv64-cgo), const EAUTH Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EBADF = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const EBADMSG = 89 #53466 +pkg syscall (freebsd-riscv64-cgo), const EBADMSG Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EBADRPC = 72 #53466 +pkg syscall (freebsd-riscv64-cgo), const EBADRPC Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EBUSY = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECANCELED = 85 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECAPMODE = 94 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECAPMODE Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHILD = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHO = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOCTL = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOK = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOKE = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOKE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHONL = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHONL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOPRT = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECHOPRT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ECONNABORTED = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECONNREFUSED = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const ECONNRESET = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const EDEADLK = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const EDESTADDRREQ = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const EDOM = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const EDOOFUS = 88 #53466 +pkg syscall (freebsd-riscv64-cgo), const EDOOFUS Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EDQUOT = 69 #53466 +pkg syscall (freebsd-riscv64-cgo), const EEXIST = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const EFAULT = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const EFBIG = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const EFTYPE = 79 #53466 +pkg syscall (freebsd-riscv64-cgo), const EFTYPE Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EHOSTDOWN = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const EHOSTUNREACH = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const EIDRM = 82 #53466 +pkg syscall (freebsd-riscv64-cgo), const EILSEQ = 86 #53466 +pkg syscall (freebsd-riscv64-cgo), const EINPROGRESS = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const EINTR = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const EINVAL = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const EIO = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const EISCONN = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const EISDIR = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const ELAST = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const ELAST Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ELOOP = 62 #53466 +pkg syscall (freebsd-riscv64-cgo), const EMFILE = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const EMLINK = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const EMSGSIZE = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const EMULTIHOP = 90 #53466 +pkg syscall (freebsd-riscv64-cgo), const EMULTIHOP Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENAMETOOLONG = 63 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENEEDAUTH = 81 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENEEDAUTH Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENETDOWN = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENETRESET = 52 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENETUNREACH = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENFILE = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOATTR = 87 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOATTR Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOBUFS = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENODEV = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOEXEC = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOLCK = 77 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOLINK = 91 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOLINK Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOMEM = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOMSG = 83 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOPROTOOPT = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOSPC = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOSYS = 78 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTBLK = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTCAPABLE = 93 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTCAPABLE Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTCONN = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTDIR = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTEMPTY = 66 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTRECOVERABLE = 95 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTRECOVERABLE Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTSOCK = 38 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTSUP = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENOTTY = 25 #53466 +pkg syscall (freebsd-riscv64-cgo), const ENXIO = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const EOPNOTSUPP = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const EOVERFLOW = 84 #53466 +pkg syscall (freebsd-riscv64-cgo), const EOWNERDEAD = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const EOWNERDEAD Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPERM = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPFNOSUPPORT = 46 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPIPE = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROCLIM = 67 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROCLIM Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROCUNAVAIL = 76 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROCUNAVAIL Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROGMISMATCH = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROGMISMATCH Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROGUNAVAIL = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROGUNAVAIL Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROTO = 92 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROTO Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROTONOSUPPORT = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const EPROTOTYPE = 41 #53466 +pkg syscall (freebsd-riscv64-cgo), const ERANGE = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const EREMOTE = 71 #53466 +pkg syscall (freebsd-riscv64-cgo), const EROFS = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const ERPCMISMATCH = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const ERPCMISMATCH Errno #53466 +pkg syscall (freebsd-riscv64-cgo), const ESHUTDOWN = 58 #53466 +pkg syscall (freebsd-riscv64-cgo), const ESOCKTNOSUPPORT = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const ESPIPE = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const ESRCH = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const ESTALE = 70 #53466 +pkg syscall (freebsd-riscv64-cgo), const ETIMEDOUT = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const ETOOMANYREFS = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const ETXTBSY = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const EUSERS = 68 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_AIO = -3 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_AIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_FS = -9 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_FS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_LIO = -10 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_LIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_PROC = -5 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_READ = -1 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_SIGNAL = -6 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_SIGNAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_SYSCOUNT = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_SYSCOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_TIMER = -7 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_TIMER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_USER = -11 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_USER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_VNODE = -4 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_VNODE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_WRITE = -2 #53466 +pkg syscall (freebsd-riscv64-cgo), const EVFILT_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ADD = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_CLEAR = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_CLEAR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DELETE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DISABLE = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DISABLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DISPATCH = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DISPATCH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DROP = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_DROP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ENABLE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ENABLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_EOF = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_EOF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ERROR = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_FLAG1 = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_FLAG1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ONESHOT = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_ONESHOT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_RECEIPT = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_RECEIPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_SYSFLAGS = 61440 #53466 +pkg syscall (freebsd-riscv64-cgo), const EV_SYSFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EWOULDBLOCK = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const EXDEV = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTA = 19200 #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTB = 38400 #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTPROC = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const EXTPROC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const FD_CLOEXEC = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const FD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const FD_SETSIZE = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const FD_SETSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const FLUSHO = 8388608 #53466 +pkg syscall (freebsd-riscv64-cgo), const FLUSHO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_CANCEL = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_CANCEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUP2FD = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUP2FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUP2FD_CLOEXEC = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUP2FD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUPFD = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUPFD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUPFD_CLOEXEC = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_DUPFD_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETFD = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETFD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETFL = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETFL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETLK = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETLK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETOWN = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_GETOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OGETLK = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OGETLK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OK = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OSETLK = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OSETLK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OSETLKW = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_OSETLKW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_RDAHEAD = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_RDAHEAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_RDLCK = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_RDLCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_READAHEAD = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_READAHEAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETFD = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETFD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETFL = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETFL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLK = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLKW = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLKW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLK_REMOTE = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETLK_REMOTE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETOWN = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_SETOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_UNLCK = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_UNLCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_UNLCKSYS = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_UNLCKSYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const F_WRLCK = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const F_WRLCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const HUPCL = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const HUPCL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ICANON = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const ICANON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ICMP6_FILTER = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const ICMP6_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ICRNL = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const ICRNL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IEXTEN = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const IEXTEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFAN_ARRIVAL = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFAN_ARRIVAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFAN_DEPARTURE = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFAN_DEPARTURE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_ALLMULTI = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_ALLMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_ALTPHYS = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_ALTPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_CANTCHANGE = 2199410 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_CANTCHANGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_CANTCONFIG = 65536 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_CANTCONFIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DEBUG = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DEBUG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DRV_OACTIVE = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DRV_OACTIVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DRV_RUNNING = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DRV_RUNNING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DYING = 2097152 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_DYING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK0 = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK1 = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK2 = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LINK2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_LOOPBACK = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_MONITOR = 262144 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_MONITOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_MULTICAST = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_NOARP = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_NOARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_OACTIVE = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_OACTIVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_POINTOPOINT = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_POINTOPOINT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_PPROMISC = 131072 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_PPROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_PROMISC = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_PROMISC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_RENAMING = 4194304 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_RENAMING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_RUNNING = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_RUNNING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_SIMPLEX = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_SIMPLEX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_SMART = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_SMART ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_STATICARP = 524288 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFF_STATICARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFNAMSIZ = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFNAMSIZ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_1822 = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_1822 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_A12MPPSWITCH = 130 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_A12MPPSWITCH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AAL2 = 187 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AAL2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AAL5 = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AAL5 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ADSL = 94 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ADSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AFLANE8023 = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AFLANE8023 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AFLANE8025 = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_AFLANE8025 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARAP = 88 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARCNET = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARCNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARCNETPLUS = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ARCNETPLUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ASYNC = 84 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATM = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMDXI = 105 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMDXI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMFUNI = 106 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMFUNI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMIMA = 107 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMIMA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMLOGICAL = 80 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMLOGICAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMRADIO = 189 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMRADIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMSUBINTERFACE = 134 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMSUBINTERFACE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMVCIENDPT = 194 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMVCIENDPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMVIRTUAL = 149 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ATMVIRTUAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BGPPOLICYACCOUNTING = 162 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BGPPOLICYACCOUNTING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BRIDGE = 209 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BRIDGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BSC = 83 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_BSC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CARP = 248 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CCTEMUL = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CCTEMUL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CEPT = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CEPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CES = 133 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CHANNEL = 70 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CNR = 85 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_CNR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_COFFEE = 132 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_COFFEE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_COMPOSITELINK = 155 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_COMPOSITELINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DCN = 141 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DCN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DIGITALPOWERLINE = 138 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DIGITALPOWERLINE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL = 186 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DLSW = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DLSW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEDOWNSTREAM = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEMACLAYER = 127 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEUPSTREAM = 129 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DOCSCABLEUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS0 = 81 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS0BUNDLE = 82 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS0BUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS1FDL = 170 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS1FDL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS3 = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DS3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DTM = 140 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DTM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBASILN = 172 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBASILN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBASIOUT = 173 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBASIOUT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCDOWNSTREAM = 147 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCMACLAYER = 146 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCUPSTREAM = 148 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_DVBRCCUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ENC = 244 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ENC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_EON = 25 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_EON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_EPLRS = 87 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_EPLRS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ESCON = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ESCON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ETHER = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ETHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FAITH = 242 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FAST = 125 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FASTETHER = 62 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FASTETHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FASTETHERFX = 69 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FASTETHERFX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FDDI = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FDDI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FIBRECHANNEL = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FIBRECHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRAMERELAYINTERCONNECT = 58 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRAMERELAYINTERCONNECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRAMERELAYMPI = 92 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRAMERELAYMPI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRDLCIENDPT = 193 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRDLCIENDPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRELAY = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRELAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRELAYDCE = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRELAYDCE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRF16MFRBUNDLE = 163 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRF16MFRBUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRFORWARD = 158 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_FRFORWARD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_G703AT2MB = 67 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_G703AT2MB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_G703AT64K = 66 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_G703AT64K ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GIF = 240 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GIF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GIGABITETHERNET = 117 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GIGABITETHERNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GR303IDT = 178 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GR303IDT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GR303RDT = 177 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_GR303RDT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_H323GATEKEEPER = 164 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_H323GATEKEEPER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_H323PROXY = 165 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_H323PROXY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDH1822 = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDH1822 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDLC = 118 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDSL2 = 168 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HDSL2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPERLAN2 = 183 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPERLAN2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPPI = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPPI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPPIINTERFACE = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HIPPIINTERFACE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HOSTPAD = 90 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HOSTPAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HSSI = 46 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HSSI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HY = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_HY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IBM370PARCHAN = 72 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IBM370PARCHAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IDSL = 154 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE1394 = 144 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE1394 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE80211 = 71 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE80212 = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE80212 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE8023ADLAG = 161 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IEEE8023ADLAG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IFGSN = 145 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IFGSN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IMT = 190 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IMT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_INFINIBAND = 199 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_INFINIBAND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_INTERLEAVE = 124 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_INTERLEAVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IP = 126 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPFORWARD = 142 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPFORWARD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERATM = 114 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERCDLC = 109 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERCDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERCLAW = 110 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPOVERCLAW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPSWITCH = 78 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPSWITCH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPXIP = 249 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_IPXIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDN = 63 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNBASIC = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNBASIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNPRIMARY = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNPRIMARY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNS = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNU = 76 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISDNU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88022LLC = 41 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88022LLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88023 = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88023 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88024 = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88024 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025 = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025CRFPINT = 98 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025CRFPINT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025DTR = 86 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025DTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025FIBER = 115 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88025FIBER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88026 = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISO88026 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISUP = 179 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ISUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L2VLAN = 135 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L2VLAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L3IPVLAN = 136 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L3IPVLAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L3IPXVLAN = 137 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_L3IPXVLAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPB = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPD = 77 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPF = 119 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LAPF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LOCALTALK = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LOCALTALK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LOOP = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MEDIAMAILOVERIP = 139 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MEDIAMAILOVERIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MFSIGLINK = 167 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MFSIGLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MIOX25 = 38 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MIOX25 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MODEM = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MODEM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPC = 113 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPLS = 166 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPLSTUNNEL = 150 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MPLSTUNNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MSDSL = 143 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MSDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MVL = 191 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MVL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MYRINET = 99 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_MYRINET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_NFAS = 175 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_NFAS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_NSIP = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_NSIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OPTICALCHANNEL = 195 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OPTICALCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OPTICALTRANSPORT = 196 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OPTICALTRANSPORT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OTHER = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_OTHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_P10 = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_P10 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_P80 = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_P80 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PARA = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PARA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PFLOG = 246 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PFLOG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PFSYNC = 247 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PLC = 174 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_POS = 171 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_POS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PPP = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PPP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PPPMULTILINKBUNDLE = 108 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PPPMULTILINKBUNDLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPBWAP2MP = 184 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPBWAP2MP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPCNLS = 89 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPCNLS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM = 181 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER = 180 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM = 182 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPMUX = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPMUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPVIRTUAL = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPVIRTUAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPWIRELESSP2P = 157 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PROPWIRELESSP2P ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PTPSERIAL = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PTPSERIAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PVC = 241 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_PVC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_QLLC = 68 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_QLLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RADIOMAC = 188 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RADIOMAC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RADSL = 95 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RADSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_REACHDSL = 192 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_REACHDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RFC1483 = 159 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RFC1483 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RS232 = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RS232 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RSRB = 79 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_RSRB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SDLC = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SDSL = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SHDSL = 169 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SHDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SIP = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SLIP = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SLIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SMDSDXI = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SMDSDXI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SMDSICIP = 52 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SMDSICIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONET = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETOVERHEADCHANNEL = 185 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETOVERHEADCHANNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETPATH = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETPATH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETVT = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SONETVT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SRP = 151 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SS7SIGLINK = 156 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_SS7SIGLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STACKTOSTACK = 111 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STACKTOSTACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STARLAN = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STARLAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STF = 215 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_STF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_T1 = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_T1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TDLC = 116 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TERMPAD = 91 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TERMPAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TR008 = 176 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TR008 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TRANSPHDLC = 123 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TRANSPHDLC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TUNNEL = 131 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_TUNNEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ULTRA = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_ULTRA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_USB = 160 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_USB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V11 = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V11 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V35 = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V35 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V36 = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V36 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V37 = 120 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_V37 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VDSL = 97 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VDSL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VIRTUALIPADDRESS = 112 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VIRTUALIPADDRESS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEEM = 100 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEEM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEENCAP = 103 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEENCAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEFXO = 101 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEFXO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEFXS = 102 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEFXS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERATM = 152 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERATM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERFRAMERELAY = 153 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERFRAMERELAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERIP = 104 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_VOICEOVERIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X213 = 93 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X213 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25 = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25DDN = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25DDN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25HUNTGROUP = 122 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25HUNTGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25MLP = 121 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25MLP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25PLE = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_X25PLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_XETHER = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const IFT_XETHER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNBRK = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNBRK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNCR = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNPAR = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IGNPAR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IMAXBEL = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const IMAXBEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const INLCR = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const INLCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const INPCK = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const INPCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_HOST = 16777215 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_MAX = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_NET = 4278190080 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_NET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_NSHIFT = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSA_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_HOST = 65535 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_MAX = 65536 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_NET = 4294901760 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_NET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_NSHIFT = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSB_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_HOST = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_NET = 4294967040 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_NET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_NSHIFT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSC_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_HOST = 268435455 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_NET = 4026531840 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_NET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_NSHIFT = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_CLASSD_NSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_LOOPBACKNET = 127 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_LOOPBACKNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_RFC3021_MASK = 4294967294 #53466 +pkg syscall (freebsd-riscv64-cgo), const IN_RFC3021_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_3PC = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_3PC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ADFS = 68 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ADFS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AH = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AHIP = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AHIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_APES = 99 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_APES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ARGUS = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ARGUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AX25 = 93 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_AX25 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BHA = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BHA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BLT = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BLT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BRSATMON = 76 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_BRSATMON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CARP = 112 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CFTP = 62 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CFTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CHAOS = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CHAOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CMTP = 38 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CMTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CPHB = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CPHB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CPNX = 72 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_CPNX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DDP = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DGP = 86 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DIVERT = 258 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DIVERT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DONE = 257 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DSTOPTS = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_DSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EGP = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EMCON = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EMCON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ENCAP = 98 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ENCAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EON = 80 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_EON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ESP = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ESP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ETHERIP = 97 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ETHERIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_FRAGMENT = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_FRAGMENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GGP = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GMTP = 100 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GMTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GRE = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_GRE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HELLO = 63 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HELLO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HMP = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HOPOPTS = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_HOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ICMP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ICMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ICMPV6 = 58 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ICMPV6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDP = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDPR = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDPR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDRP = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IDRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGMP = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGP = 85 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGRP = 88 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IL = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_INLSP = 52 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_INLSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_INP = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_INP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPCOMP = 108 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPCOMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPCV = 71 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPCV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPEIP = 94 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPEIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPIP = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPPC = 67 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPPC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPV4 = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IPV4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IRTP = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_IRTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_KRYPTOLAN = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_KRYPTOLAN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LARP = 91 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LARP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LEAF1 = 25 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LEAF1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LEAF2 = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_LEAF2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MAX = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MAXID = 52 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MAXID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MEAS = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MEAS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MH = 135 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MHRP = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MHRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MICP = 95 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MICP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MOBILE = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MOBILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MPLS = 137 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MPLS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MTP = 92 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MUX = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_MUX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ND = 77 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NHRP = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NHRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NONE = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NSP = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NVPII = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_NVPII ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_OLD_DIVERT = 254 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_OLD_DIVERT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_OSPFIGP = 89 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_OSPFIGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PFSYNC = 240 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PFSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PGM = 113 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PGM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PIGP = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PIGP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PIM = 103 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PIM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PRM = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PRM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PUP = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PVP = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_PVP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RAW = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RAW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RCCMON = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RCCMON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RDP = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ROUTING = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ROUTING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RSVP = 46 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RSVP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RVD = 66 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_RVD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SATEXPAK = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SATEXPAK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SATMON = 69 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SATMON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SCCSP = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SCCSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SCTP = 132 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SCTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SDRP = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SDRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SEND = 259 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SEP = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SEP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SKIP = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SKIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SPACER = 32767 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SPACER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SRPC = 90 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SRPC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ST = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_ST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SVMTP = 82 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SVMTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SWIPE = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_SWIPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TCF = 87 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TCF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TLSP = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TLSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TP = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TPXX = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TPXX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TRUNK1 = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TRUNK1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TRUNK2 = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TRUNK2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TTP = 84 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_TTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VINES = 83 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VINES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VISA = 70 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VISA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VMTP = 81 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_VMTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WBEXPAK = 79 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WBEXPAK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WBMON = 78 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WBMON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WSN = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_WSN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_XNET = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_XNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_XTP = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPPROTO_XTP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_AUTOFLOWLABEL = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_AUTOFLOWLABEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_BINDANY = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_BINDANY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_BINDV6ONLY = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_BINDV6ONLY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_CHECKSUM = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_CHECKSUM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFHLIM = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DEFHLIM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DONTFRAG = 62 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DONTFRAG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DSTOPTS = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_DSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FAITH = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FLOWINFO_MASK = 4294967055 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FLOWINFO_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FLOWLABEL_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FRAGTTL = 120 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FRAGTTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_ADD = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_DEL = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_FLUSH = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_GET = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_ZERO = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_FW_ZERO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HLIMDEC = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HLIMDEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HOPLIMIT = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HOPLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HOPOPTS = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_HOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_IPSEC_POLICY = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_IPSEC_POLICY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_JOIN_GROUP = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_LEAVE_GROUP = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXHLIM = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXHLIM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXOPTHDR = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXOPTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXPACKET = 65535 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAXPACKET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_GROUP_SRC_FILTER = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_MEMBERSHIPS = 4095 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_SOCK_SRC_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MIN_MEMBERSHIPS = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MMTU = 1280 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MMTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MSFILTER = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MSFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MULTICAST_HOPS = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MULTICAST_IF = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_MULTICAST_LOOP = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_NEXTHOP = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_NEXTHOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PATHMTU = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PATHMTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PKTINFO = 46 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PKTINFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_DEFAULT = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_HIGH = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_HIGH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_LOW = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PORTRANGE_LOW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PREFER_TEMPADDR = 63 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_PREFER_TEMPADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVDSTOPTS = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVDSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVHOPLIMIT = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVHOPLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVHOPOPTS = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVHOPOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVPATHMTU = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVPATHMTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVPKTINFO = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVPKTINFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVRTHDR = 38 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVRTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVTCLASS = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RECVTCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDRDSTOPTS = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDRDSTOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_LOOSE = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_LOOSE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_STRICT = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_STRICT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_TYPE_0 = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_SOCKOPT_RESERVED1 = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_TCLASS = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_TCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_UNICAST_HOPS = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_USE_MIN_MTU = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_USE_MIN_MTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_V6ONLY = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_VERSION = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_VERSION_MASK = 240 #53466 +pkg syscall (freebsd-riscv64-cgo), const IPV6_VERSION_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_ADD_MEMBERSHIP = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_ADD_SOURCE_MEMBERSHIP = 70 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_BINDANY = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_BINDANY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_BLOCK_SOURCE = 72 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_BLOCK_SOURCE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DEFAULT_MULTICAST_LOOP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DEFAULT_MULTICAST_TTL = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DF = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DONTFRAG = 67 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DONTFRAG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DROP_MEMBERSHIP = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DROP_SOURCE_MEMBERSHIP = 71 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET3 = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_CONFIGURE = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_DEL = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_FLUSH = 62 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_GET = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_DUMMYNET_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FAITH = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FAITH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW3 = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_ADD = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_DEL = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_FLUSH = 52 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_GET = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_CFG = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_CFG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_DEL = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_GET_CONFIG = 58 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_GET_CONFIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_GET_LOG = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_NAT_GET_LOG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_RESETLOG = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_RESETLOG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_ADD = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_DEL = 41 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_DEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_FLUSH = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_FLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_GETSIZE = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_GETSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_LIST = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_TABLE_LIST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_ZERO = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_FW_ZERO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_HDRINCL = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_HDRINCL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_IPSEC_POLICY = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_IPSEC_POLICY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAXPACKET = 65535 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAXPACKET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_GROUP_SRC_FILTER = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_MEMBERSHIPS = 4095 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOCK_MUTE_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOCK_SRC_FILTER = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOURCE_FILTER = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MAX_SOURCE_FILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MF = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MINTTL = 66 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MINTTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MIN_MEMBERSHIPS = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MIN_MEMBERSHIPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MSFILTER = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MSFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MSS = 576 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MSS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MULTICAST_IF = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MULTICAST_LOOP = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MULTICAST_TTL = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MULTICAST_VIF = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_MULTICAST_VIF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_OFFMASK = 8191 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_OFFMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_ONESBCAST = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_ONESBCAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_OPTIONS = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_OPTIONS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_DEFAULT = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_DEFAULT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_HIGH = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_HIGH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_LOW = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_PORTRANGE_LOW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVDSTADDR = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVIF = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVIF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVOPTS = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVRETOPTS = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVRETOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVTOS = 68 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVTOS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVTTL = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RECVTTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RETOPTS = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RETOPTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RF = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_OFF = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_OFF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_ON = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_ON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_VIF_OFF = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_VIF_OFF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_VIF_ON = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_RSVP_VIF_ON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_SENDSRCADDR = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_SENDSRCADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_TOS = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_TTL = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_UNBLOCK_SOURCE = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const IP_UNBLOCK_SOURCE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ISIG = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const ISIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ISTRIP = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const ISTRIP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IXANY = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const IXANY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IXOFF = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const IXOFF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const IXON = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const IXON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_EX = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_EX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_NB = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_NB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_SH = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_SH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_UN = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const LOCK_UN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_AUTOSYNC = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_AUTOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_CORE = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_CORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_DONTNEED = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_DONTNEED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_FREE = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_FREE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NOCORE = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NOCORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NORMAL = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NORMAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NOSYNC = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_NOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_PROTECT = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_PROTECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_RANDOM = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_RANDOM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_SEQUENTIAL = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_SEQUENTIAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_WILLNEED = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const MADV_WILLNEED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_32BIT = 524288 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_32BIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNED_SUPER = 16777216 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNED_SUPER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNMENT_MASK = -16777216 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNMENT_MASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNMENT_SHIFT = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ANON = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ANON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ANONYMOUS = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_ANONYMOUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_COPY = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_COPY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_FILE = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_FIXED = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_FIXED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_HASSEMAPHORE = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_HASSEMAPHORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NOCORE = 131072 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NOCORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NORESERVE = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NORESERVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NOSYNC = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_NOSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_PREFAULT_READ = 262144 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_PREFAULT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_PRIVATE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_PRIVATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RENAME = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RESERVED0080 = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RESERVED0080 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RESERVED0100 = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_RESERVED0100 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_SHARED = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_SHARED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_STACK = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const MAP_STACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MCL_CURRENT = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const MCL_CURRENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MCL_FUTURE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MCL_FUTURE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_CMSG_CLOEXEC = 262144 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_CMSG_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_COMPAT = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_COMPAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_CTRUNC = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_CTRUNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_DONTROUTE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_DONTROUTE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_DONTWAIT = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_DONTWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_EOF = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_EOF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_EOR = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_EOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NBIO = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NBIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NOSIGNAL = 131072 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NOSIGNAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NOTIFICATION = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_NOTIFICATION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_OOB = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_OOB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_PEEK = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_PEEK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_TRUNC = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_TRUNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_WAITALL = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const MSG_WAITALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_ASYNC = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_ASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_INVALIDATE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_INVALIDATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_SYNC = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const MS_SYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NAME_MAX = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const NAME_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_DUMP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_DUMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_FLAGS = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_FLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFLIST = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFLIST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFLISTL = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFLISTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFMALIST = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_IFMALIST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_MAXID = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const NET_RT_MAXID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOFLSH = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOFLSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_ATTRIB = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_ATTRIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_CHILD = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_CHILD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_DELETE = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXEC = 536870912 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXIT = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXTEND = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_EXTEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFAND = 1073741824 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFAND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFCOPY = 3221225472 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFCOPY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFCTRLMASK = 3221225472 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFCTRLMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFLAGSMASK = 16777215 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFLAGSMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFNOP = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFNOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FFOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FORK = 1073741824 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_FORK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_LINK = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_LOWAT = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_LOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_PCTRLMASK = 4026531840 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_PCTRLMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_PDATAMASK = 1048575 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_PDATAMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_RENAME = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_REVOKE = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_REVOKE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRACK = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRACKERR = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRACKERR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRIGGER = 16777216 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_TRIGGER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_WRITE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const NOTE_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const OCRNL = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const OCRNL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ONLCR = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const ONLCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ONLRET = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const ONLRET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ONOCR = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const ONOCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const ONOEOT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const ONOEOT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const OPOST = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const OPOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_ACCMODE = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_ACCMODE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_APPEND = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_ASYNC = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_CLOEXEC = 1048576 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_CREAT = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_DIRECT = 65536 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_DIRECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_DIRECTORY = 131072 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_DIRECTORY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_EXCL = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_EXEC = 262144 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_EXLOCK = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_EXLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_FSYNC = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NDELAY = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NDELAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NOCTTY = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NOFOLLOW = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NOFOLLOW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_NONBLOCK = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_SHLOCK = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_SHLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const O_SYNC = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_TRUNC = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_TTY_INIT = 524288 #53466 +pkg syscall (freebsd-riscv64-cgo), const O_TTY_INIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PARENB = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const PARENB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PARMRK = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const PARMRK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PARODD = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const PARODD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PENDIN = 536870912 #53466 +pkg syscall (freebsd-riscv64-cgo), const PENDIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_PGRP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_PGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_PROCESS = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_PROCESS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_USER = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const PRIO_USER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_EXEC = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_EXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_NONE = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_NONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_READ = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_READ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_WRITE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const PROT_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_CONT = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_CONT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_KILL = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_TRACEME = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const PTRACE_TRACEME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_AS = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_AS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_CORE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_CORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_CPU = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_CPU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_DATA = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_DATA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_FSIZE = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_FSIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_NOFILE = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_NOFILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_STACK = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIMIT_STACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIM_INFINITY = 9223372036854775807 #53466 +pkg syscall (freebsd-riscv64-cgo), const RLIM_INFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_AUTHOR = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_AUTHOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_BRD = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_BRD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_DST = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_DST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_GATEWAY = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_GENMASK = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_GENMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_IFA = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_IFA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_IFP = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_IFP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_MAX = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_NETMASK = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTAX_NETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_AUTHOR = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_AUTHOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_BRD = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_BRD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_DST = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_DST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_GATEWAY = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_GENMASK = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_GENMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_IFA = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_IFA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_IFP = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_IFP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_NETMASK = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTA_NETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_BLACKHOLE = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_BLACKHOLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_BROADCAST = 4194304 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_BROADCAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_DONE = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_DONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_DYNAMIC = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_DYNAMIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_FMASK = 268752904 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_FMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_GATEWAY = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_GATEWAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_GWFLAG_COMPAT = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_GWFLAG_COMPAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_HOST = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_HOST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LLDATA = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LLDATA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LLINFO = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LLINFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LOCAL = 2097152 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_LOCAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_MODIFIED = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_MODIFIED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_MULTICAST = 8388608 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_MULTICAST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PINNED = 1048576 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PINNED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PRCLONING = 65536 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PRCLONING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO1 = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO2 = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO3 = 262144 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_PROTO3 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_REJECT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_REJECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_RNH_LOCKED = 1073741824 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_RNH_LOCKED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_STATIC = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_STATIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_STICKY = 268435456 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_STICKY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_UP = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_UP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_XRESOLVE = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTF_XRESOLVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_ADD = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_ADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_CHANGE = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_CHANGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELADDR = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELETE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELMADDR = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_DELMADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_GET = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IEEE80211 = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IEEE80211 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IFANNOUNCE = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IFANNOUNCE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IFINFO = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_IFINFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_LOCK = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_LOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_LOSING = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_LOSING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_MISS = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_MISS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_NEWADDR = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_NEWADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_NEWMADDR = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_NEWMADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_OLDADD = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_OLDADD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_OLDDEL = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_OLDDEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_REDIRECT = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_REDIRECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_RESOLVE = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_RESOLVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_RTTUNIT = 1000000 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_RTTUNIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_VERSION = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTM_VERSION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_EXPIRE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_EXPIRE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_HOPCOUNT = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_HOPCOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_MTU = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_MTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RPIPE = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RTT = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RTT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RTTVAR = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_RTTVAR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_SPIPE = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_SPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_SSTHRESH = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_SSTHRESH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_WEIGHT = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const RTV_WEIGHT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_CACHING_CONTEXT = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_CACHING_CONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_DEFAULT_FIB = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_DEFAULT_FIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_NORTREF = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const RT_NORTREF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_CHILDREN = -1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_CHILDREN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_SELF = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_SELF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_THREAD = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const RUSAGE_THREAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_BINTIME = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_CREDS = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_CREDS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_RIGHTS = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_RIGHTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_TIMESTAMP = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const SCM_TIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGBUS = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGCHLD = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGCHLD Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGCONT = 19 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGCONT Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGEMT = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGEMT Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGINFO = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGINFO Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGIO = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGIO Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGIOT = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGIOT Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGLIBRT = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGLIBRT Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGLWP = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGLWP Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGPROF = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGPROF Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGSTOP = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGSTOP Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGSYS = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGSYS Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTHR = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTHR Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTSTP = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTSTP Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTTIN = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTTIN Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTTOU = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGTTOU Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGURG = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGURG Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGUSR1 = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGUSR1 Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGUSR2 = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGUSR2 Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGVTALRM = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGVTALRM Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGWINCH = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGWINCH Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGXCPU = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGXCPU Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGXFSZ = 25 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIGXFSZ Signal #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCADDMULTI = 2149607729 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCADDMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCADDRT = 2151707146 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCADDRT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCAIFADDR = 2151704858 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCAIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCAIFGROUP = 2150132103 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCAIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCALIFADDR = 2165860635 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCALIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCATMARK = 1074033415 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCATMARK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDELMULTI = 2149607730 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDELMULTI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDELRT = 2151707147 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDELRT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFADDR = 2149607705 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFGROUP = 2150132105 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFPHYADDR = 2149607753 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDLIFADDR = 2165860637 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCDLIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGDRVSPEC = 3223873915 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGDRVSPEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGETSGCNT = 3223351824 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGETSGCNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGETVIFCNT = 3223876111 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGETVIFCNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGHIWAT = 1074033409 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGHIWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFADDR = 3223349537 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFBRDADDR = 3223349539 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFBRDADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFCAP = 3223349535 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFCAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFCONF = 3222300964 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFCONF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFDESCR = 3223349546 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFDESCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFDSTADDR = 3223349538 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFFIB = 3223349596 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFFIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFFLAGS = 3223349521 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGENERIC = 3223349562 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGENERIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGMEMB = 3223873930 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGMEMB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGROUP = 3223873928 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFGROUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFINDEX = 3223349536 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFINDEX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMAC = 3223349542 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMAC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMEDIA = 3224398136 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMEDIA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMETRIC = 3223349527 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMETRIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMTU = 3223349555 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFMTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFNETMASK = 3223349541 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFNETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPDSTADDR = 3223349576 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPHYS = 3223349557 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPSRCADDR = 3223349575 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFPSRCADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFSTATUS = 3274795323 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGIFSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLIFADDR = 3239602460 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLIFPHYADDR = 3239602507 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLOWAT = 1074033411 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPGRP = 1074033417 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPRIVATE_0 = 3223349584 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPRIVATE_0 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPRIVATE_1 = 3223349585 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCGPRIVATE_1 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFCREATE = 3223349626 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFCREATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFCREATE2 = 3223349628 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFCREATE2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFDESTROY = 2149607801 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFDESTROY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFGCLONERS = 3222301048 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCIFGCLONERS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSDRVSPEC = 2150132091 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSDRVSPEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSHIWAT = 2147775232 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSHIWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFADDR = 2149607692 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFBRDADDR = 2149607699 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFBRDADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFCAP = 2149607710 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFCAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFDESCR = 2149607721 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFDESCR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFDSTADDR = 2149607694 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFDSTADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFFIB = 2149607773 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFFIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFFLAGS = 2149607696 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFGENERIC = 2149607737 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFGENERIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFLLADDR = 2149607740 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFLLADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMAC = 2149607719 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMAC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMEDIA = 3223349559 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMEDIA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMETRIC = 2149607704 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMETRIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMTU = 2149607732 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFMTU ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFNAME = 2149607720 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFNAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFNETMASK = 2149607702 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFNETMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFPHYADDR = 2151704902 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFPHYS = 2149607734 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFPHYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFRVNET = 3223349595 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFRVNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFVNET = 3223349594 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSIFVNET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSLIFPHYADDR = 2165860682 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSLIFPHYADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSLOWAT = 2147775234 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSPGRP = 2147775240 #53466 +pkg syscall (freebsd-riscv64-cgo), const SIOCSPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_CLOEXEC = 268435456 #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_CLOEXEC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_MAXADDRLEN = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_MAXADDRLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_NONBLOCK = 536870912 #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_NONBLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_RDM = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const SOCK_RDM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SOL_SOCKET = 65535 #53466 +pkg syscall (freebsd-riscv64-cgo), const SOMAXCONN = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ACCEPTCONN = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ACCEPTCONN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ACCEPTFILTER = 4096 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ACCEPTFILTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_BINTIME = 8192 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_BINTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_BROADCAST = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_DEBUG = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_DEBUG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_DONTROUTE = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ERROR = 4103 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_KEEPALIVE = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LABEL = 4105 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LABEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LINGER = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENINCQLEN = 4115 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENINCQLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENQLEN = 4114 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENQLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENQLIMIT = 4113 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_LISTENQLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NOSIGPIPE = 2048 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NOSIGPIPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NO_DDP = 32768 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NO_DDP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NO_OFFLOAD = 16384 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_NO_OFFLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_OOBINLINE = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_OOBINLINE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PEERLABEL = 4112 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PEERLABEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PROTOCOL = 4118 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PROTOCOL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PROTOTYPE = 4118 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_PROTOTYPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_RCVBUF = 4098 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_RCVLOWAT = 4100 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_RCVLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_RCVTIMEO = 4102 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_RCVTIMEO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_REUSEADDR = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_REUSEPORT = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_REUSEPORT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SETFIB = 4116 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SETFIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SNDBUF = 4097 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SNDLOWAT = 4099 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SNDLOWAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SNDTIMEO = 4101 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_SNDTIMEO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_TIMESTAMP = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_TIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_TYPE = 4104 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_TYPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_USELOOPBACK = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_USELOOPBACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_USER_COOKIE = 4117 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_USER_COOKIE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_VENDOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const SO_VENDOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ABORT2 = 463 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ABORT2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCEPT = 30 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCEPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCEPT4 = 541 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCEPT4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCESS = 33 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCESS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCT = 51 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ACCT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ADJTIME = 140 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ADJTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_CANCEL = 316 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_CANCEL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_ERROR = 317 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_ERROR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_FSYNC = 465 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_MLOCK = 543 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_MLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_READ = 255 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_READ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_RETURN = 314 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_RETURN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_SUSPEND = 315 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_SUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_WAITCOMPLETE = 359 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_WAITCOMPLETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_WRITE = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AIO_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDIT = 445 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDITCTL = 453 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDITCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDITON = 446 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_AUDITON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_BIND = 104 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_BIND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_BINDAT = 538 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_BINDAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_ENTER = 516 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_ENTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_FCNTLS_GET = 537 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_FCNTLS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_FCNTLS_LIMIT = 536 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_FCNTLS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_GETMODE = 517 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_GETMODE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_IOCTLS_GET = 535 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_IOCTLS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_IOCTLS_LIMIT = 534 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_IOCTLS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_RIGHTS_LIMIT = 533 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CAP_RIGHTS_LIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHDIR = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHDIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHFLAGS = 34 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHFLAGSAT = 540 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHFLAGSAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHMOD = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHOWN = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHROOT = 61 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CHROOT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 = 247 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETCPUCLOCKID2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETRES = 234 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETRES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETTIME = 232 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_NANOSLEEP = 244 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_NANOSLEEP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_SETTIME = 233 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOCK_SETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOSE = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOSE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOSEFROM = 509 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CLOSEFROM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CONNECT = 98 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CONNECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CONNECTAT = 539 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CONNECTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET = 484 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_GETAFFINITY = 487 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_GETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_GETID = 486 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_GETID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_SETAFFINITY = 488 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_SETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_SETID = 485 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_CPUSET_SETID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_DUP = 41 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_DUP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_DUP2 = 90 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_DUP2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EACCESS = 376 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EACCESS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXECVE = 59 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXIT = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTRCTL = 355 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTRCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_FD = 373 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_FILE = 358 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_LINK = 414 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_FD = 372 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_FILE = 357 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_LINK = 413 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_FD = 437 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_FILE = 438 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_LINK = 439 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_LIST_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_FD = 371 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_FILE = 356 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_LINK = 412 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_EXTATTR_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FACCESSAT = 489 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FACCESSAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHDIR = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHDIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHFLAGS = 35 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHMOD = 124 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHMODAT = 490 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHMODAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHOWN = 123 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHOWNAT = 491 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCHOWNAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCNTL = 92 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FCNTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FDATASYNC = 550 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FDATASYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FEXECVE = 492 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FEXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_GETCOUNTER = 241 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_GETCOUNTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_GETESTIMATE = 243 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_GETESTIMATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_SETESTIMATE = 242 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FFCLOCK_SETESTIMATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHOPEN = 298 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHOPEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHSTAT = 299 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHSTATFS = 398 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FHSTATFS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FLOCK = 131 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FORK = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FORK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FPATHCONF = 192 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FPATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTAT = 551 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTATAT = 552 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTATAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTATFS = 556 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSTATFS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSYNC = 95 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FTRUNCATE = 480 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FTRUNCATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMENS = 546 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMENS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMES = 206 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMESAT = 494 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_FUTIMESAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUDIT = 449 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUDIT_ADDR = 451 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUDIT_ADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUID = 447 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETAUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETCONTEXT = 421 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDENTS = 272 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDENTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDIRENTRIES = 554 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDIRENTRIES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDTABLESIZE = 89 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETDTABLESIZE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETEGID = 43 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETEGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETEUID = 25 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETEUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETFH = 161 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETFH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETFSSTAT = 557 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETFSSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETGID = 47 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETGROUPS = 79 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETGROUPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETITIMER = 86 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETITIMER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETLOGIN = 49 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETLOGIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETLOGINCLASS = 523 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETLOGINCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPEERNAME = 31 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPEERNAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPGID = 207 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPGRP = 81 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPID = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPPID = 39 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPPID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPRIORITY = 100 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETPRIORITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRESGID = 361 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRESGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRESUID = 360 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRESUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRLIMIT = 194 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRUSAGE = 117 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETRUSAGE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSID = 310 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSOCKNAME = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSOCKNAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSOCKOPT = 118 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETSOCKOPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETTIMEOFDAY = 116 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETTIMEOFDAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETUID = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GETUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GSSD_SYSCALL = 505 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_GSSD_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_IOCTL = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_IOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ISSETUGID = 253 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_ISSETUGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL = 338 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_ATTACH = 436 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_ATTACH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_GET = 506 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_REMOVE = 508 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_REMOVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_SET = 507 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_JAIL_SET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KENV = 390 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KENV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KEVENT = 363 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KEVENT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KILL = 37 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDFIND = 306 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDFIND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDFIRSTMOD = 309 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDFIRSTMOD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDLOAD = 304 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDNEXT = 307 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDSTAT = 308 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDSYM = 337 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDSYM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDUNLOAD = 305 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDUNLOAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDUNLOADF = 444 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KLDUNLOADF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_NOTIFY = 461 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_NOTIFY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_OPEN = 457 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_SETATTR = 458 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_SETATTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_TIMEDRECEIVE = 459 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_TIMEDRECEIVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_TIMEDSEND = 460 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_TIMEDSEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_UNLINK = 462 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KMQ_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KQUEUE = 362 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KQUEUE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_CLOSE = 400 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_CLOSE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_DESTROY = 408 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_DESTROY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_GETVALUE = 407 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_GETVALUE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_INIT = 404 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_INIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_OPEN = 405 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_POST = 401 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_POST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_TIMEDWAIT = 441 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_TIMEDWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_TRYWAIT = 403 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_TRYWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_UNLINK = 406 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_WAIT = 402 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KSEM_WAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_CREATE = 235 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_CREATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_DELETE = 236 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_DELETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_GETOVERRUN = 239 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_GETOVERRUN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_GETTIME = 238 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_SETTIME = 237 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTIMER_SETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTRACE = 45 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_KTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHFLAGS = 391 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHFLAGS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHMOD = 274 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHMOD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHOWN = 254 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LCHOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LGETFH = 160 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LGETFH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LINK = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LINKAT = 495 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LIO_LISTIO = 257 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LIO_LISTIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LISTEN = 106 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LISTEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LPATHCONF = 513 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LPATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LSEEK = 478 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LSEEK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LUTIMES = 276 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_LUTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MAC_SYSCALL = 394 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MAC_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MADVISE = 75 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MINCORE = 78 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MINCORE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MINHERIT = 250 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MINHERIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKDIR = 136 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKDIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKDIRAT = 496 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKDIRAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKFIFO = 132 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKFIFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKFIFOAT = 497 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKFIFOAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKNOD = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKNOD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKNODAT = 559 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MKNODAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MLOCK = 203 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MLOCKALL = 324 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MLOCKALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MMAP = 477 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MMAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODFIND = 303 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODFIND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODFNEXT = 302 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODFNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODNEXT = 300 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODSTAT = 301 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MODSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MOUNT = 21 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MPROTECT = 74 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MPROTECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGCTL = 511 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGGET = 225 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGGET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGRCV = 227 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGRCV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGSND = 226 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGSND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGSYS = 170 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSGSYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSYNC = 65 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MSYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNLOCK = 204 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNLOCK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNLOCKALL = 325 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNLOCKALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNMAP = 73 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_MUNMAP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NANOSLEEP = 240 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NANOSLEEP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NFSSVC = 155 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NFSSVC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NFSTAT = 279 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NFSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NLM_SYSCALL = 154 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NLM_SYSCALL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NLSTAT = 280 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NLSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NMOUNT = 378 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NMOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NSTAT = 278 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NTP_ADJTIME = 176 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NTP_ADJTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NTP_GETTIME = 248 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NTP_GETTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NUMA_GETAFFINITY = 548 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NUMA_GETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NUMA_SETAFFINITY = 549 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_NUMA_SETAFFINITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OBREAK = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OBREAK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPEN = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPENAT = 499 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPENAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPENBSD_POLL = 252 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OPENBSD_POLL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OVADVISE = 72 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_OVADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PATHCONF = 191 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PATHCONF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDFORK = 518 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDFORK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDGETPID = 520 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDGETPID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDKILL = 519 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PDKILL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PIPE = 42 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PIPE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PIPE2 = 542 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PIPE2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POLL = 209 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POLL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_FADVISE = 531 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_FADVISE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_FALLOCATE = 530 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_FALLOCATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_OPENPT = 504 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_POSIX_OPENPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PPOLL = 545 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PPOLL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PREAD = 475 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PREAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PREADV = 289 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PREADV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PROCCTL = 544 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PROCCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PROFIL = 44 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PROFIL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PSELECT = 522 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PSELECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PTRACE = 26 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PWRITE = 476 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PWRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PWRITEV = 290 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_PWRITEV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_QUOTACTL = 148 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_QUOTACTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_ADD_RULE = 528 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_ADD_RULE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_LIMITS = 527 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_LIMITS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_RACCT = 525 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_RACCT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_RULES = 526 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_GET_RULES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_REMOVE_RULE = 529 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RCTL_REMOVE_RULE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READ = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READLINK = 58 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READLINKAT = 500 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READV = 120 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_READV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_REBOOT = 55 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_REBOOT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RECVFROM = 29 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RECVFROM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RECVMSG = 27 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RECVMSG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RENAME = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RENAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RENAMEAT = 501 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RENAMEAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_REVOKE = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_REVOKE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RFORK = 251 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RFORK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RMDIR = 137 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RMDIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RTPRIO = 166 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RTPRIO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RTPRIO_THREAD = 466 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_RTPRIO_THREAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SBRK = 69 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SBRK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GETPARAM = 328 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GETPARAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GETSCHEDULER = 330 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GET_PRIORITY_MAX = 332 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GET_PRIORITY_MIN = 333 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_RR_GET_INTERVAL = 334 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_SETPARAM = 327 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_SETPARAM ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_SETSCHEDULER = 329 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_YIELD = 331 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCHED_YIELD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_RECVMSG = 474 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_RECVMSG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_SENDMSG = 472 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_SENDMSG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_PEELOFF = 471 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SCTP_PEELOFF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SELECT = 93 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SELECT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMGET = 221 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMGET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMOP = 222 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMSYS = 169 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SEMSYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDFILE = 393 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDFILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDMSG = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDMSG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDTO = 133 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SENDTO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUDIT = 450 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUDIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUDIT_ADDR = 452 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUDIT_ADDR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUID = 448 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETAUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETCONTEXT = 422 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETEGID = 182 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETEGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETEUID = 183 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETEUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETFIB = 175 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETFIB ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETGID = 181 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETGROUPS = 80 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETGROUPS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETITIMER = 83 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETITIMER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETLOGIN = 50 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETLOGIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETLOGINCLASS = 524 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETLOGINCLASS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETPGID = 82 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETPGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETPRIORITY = 96 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETPRIORITY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETREGID = 127 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETREGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRESGID = 312 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRESGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRESUID = 311 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRESUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETREUID = 126 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETREUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRLIMIT = 195 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETRLIMIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETSID = 147 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETSID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETSOCKOPT = 105 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETSOCKOPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETTIMEOFDAY = 122 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETTIMEOFDAY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETUID = 23 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SETUID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMAT = 228 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMCTL = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMDT = 230 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMDT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMGET = 231 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMGET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMSYS = 171 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHMSYS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHM_OPEN = 482 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHM_OPEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHM_UNLINK = 483 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHM_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHUTDOWN = 134 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SHUTDOWN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGACTION = 416 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGACTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGALTSTACK = 53 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGALTSTACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGPENDING = 343 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGPENDING ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGPROCMASK = 340 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGPROCMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGQUEUE = 456 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGQUEUE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGRETURN = 417 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGRETURN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGSUSPEND = 341 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGSUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGTIMEDWAIT = 345 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGTIMEDWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGWAIT = 429 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGWAITINFO = 346 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SIGWAITINFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SOCKET = 97 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SOCKET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SOCKETPAIR = 135 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SOCKETPAIR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SSTK = 70 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SSTK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_STATFS = 555 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_STATFS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPCONTEXT = 423 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPCONTEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPOFF = 424 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPOFF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPON = 85 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SWAPON ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYMLINK = 57 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYMLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYMLINKAT = 502 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYMLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYNC = 36 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYNC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYSARCH = 165 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_SYSARCH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_CREATE = 430 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_CREATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_EXIT = 431 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_EXIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_KILL = 433 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_KILL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_KILL2 = 481 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_KILL2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_NEW = 455 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_NEW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SELF = 432 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SELF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SET_NAME = 464 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SET_NAME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SUSPEND = 442 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_SUSPEND ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_WAKE = 443 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_THR_WAKE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_TRUNCATE = 479 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_TRUNCATE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UMASK = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UMASK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNDELETE = 205 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNDELETE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNLINK = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNLINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNLINKAT = 503 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNLINKAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNMOUNT = 22 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UNMOUNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTIMENSAT = 547 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTIMENSAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTIMES = 138 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTIMES ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTRACE = 335 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UTRACE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UUIDGEN = 392 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_UUIDGEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_VFORK = 66 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_VFORK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WAIT4 = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WAIT4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WAIT6 = 532 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WAIT6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WRITE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WRITEV = 121 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_WRITEV ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_YIELD = 321 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS_YIELD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS__UMTX_OP = 454 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS__UMTX_OP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_FD = 354 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_FILE = 353 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_LINK = 428 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_ACLCHECK_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_FD = 352 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_FILE = 351 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_LINK = 427 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_DELETE_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_FD = 349 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_FILE = 347 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_LINK = 425 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_FD = 350 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_FILE = 348 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_LINK = 426 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___ACL_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___CAP_RIGHTS_GET = 515 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___CAP_RIGHTS_GET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___GETCWD = 326 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___GETCWD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_EXECVE = 415 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_EXECVE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_FD = 386 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_FILE = 387 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_LINK = 410 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_PID = 409 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_PID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_PROC = 384 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_GET_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_FD = 388 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_FD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_FILE = 389 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_FILE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_LINK = 411 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_LINK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_PROC = 385 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___MAC_SET_PROC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SEMCTL = 510 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SEMCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SETUGID = 374 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SETUGID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SYSCTL = 202 #53466 +pkg syscall (freebsd-riscv64-cgo), const SYS___SYSCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const S_IFMT = 61440 #53466 +pkg syscall (freebsd-riscv64-cgo), const S_IRWXG = 56 #53466 +pkg syscall (freebsd-riscv64-cgo), const S_IRWXG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const S_IRWXO = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const S_IRWXO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfHdr = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfHdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfInsn = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfInsn ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfProgram = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfProgram ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfStat = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfStat ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfVersion = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfVersion ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfZbuf = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfZbuf ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfZbufHeader = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofBpfZbufHeader ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofCmsghdr = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofCmsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofICMPv6Filter = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofICMPv6Filter ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPMreq = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPMreq ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPMreqn = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPMreqn ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPv6MTUInfo = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPv6MTUInfo ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPv6Mreq = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIPv6Mreq ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfAnnounceMsghdr = 24 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfAnnounceMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfData = 152 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfData ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfMsghdr = 168 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfaMsghdr = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfaMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfmaMsghdr = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofIfmaMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofInet6Pktinfo = 20 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofInet6Pktinfo ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofLinger = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofLinger ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofMsghdr = 48 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofRtMetrics = 112 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofRtMetrics ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofRtMsghdr = 152 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofRtMsghdr ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrAny = 108 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrAny ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrDatalink = 54 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrDatalink ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrInet4 = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrInet4 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrInet6 = 28 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrInet6 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrUnix = 106 #53466 +pkg syscall (freebsd-riscv64-cgo), const SizeofSockaddrUnix ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCIFLUSH = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCIFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCIOFLUSH = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCIOFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCOFLUSH = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCOFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_CA_NAME_MAX = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_CA_NAME_MAX ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_CONGESTION = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_CONGESTION ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_INFO = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_INFO ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPCNT = 1024 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPCNT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPIDLE = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPIDLE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPINIT = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPINIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPINTVL = 512 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_KEEPINTVL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXBURST = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXBURST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXHLEN = 60 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXHLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXOLEN = 40 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXOLEN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXSEG = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXSEG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXWIN = 65535 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAXWIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAX_SACK = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAX_SACK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAX_WINSHIFT = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MAX_WINSHIFT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MD5SIG = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MD5SIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MINMSS = 216 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MINMSS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MSS = 536 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_MSS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_NOOPT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_NOOPT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_NOPUSH = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_NOPUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_VENDOR = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCP_VENDOR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TCSAFLUSH = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const TCSAFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCBRK = 536900730 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCBRK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCDTR = 536900728 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCDTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCONS = 2147775586 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCCONS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCDRAIN = 536900702 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCDRAIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCEXCL = 536900621 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCEXCL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCEXT = 2147775584 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCFLUSH = 2147775504 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCFLUSH ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGDRAINWAIT = 1074033750 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGDRAINWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGETA = 1076655123 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGETA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGETD = 1074033690 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGETD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGPGRP = 1074033783 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGPTN = 1074033679 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGPTN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGSID = 1074033763 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGSID ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGWINSZ = 1074295912 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCGWINSZ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMBIC = 2147775595 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMBIC ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMBIS = 2147775596 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMBIS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMGDTRWAIT = 1074033754 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMGDTRWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMGET = 1074033770 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMGET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMSDTRWAIT = 2147775579 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMSDTRWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMSET = 2147775597 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCMSET ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CAR = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CAR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CD = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CTS = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_CTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DCD = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DCD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DSR = 256 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DSR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DTR = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_DTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_LE = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_LE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RI = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RNG = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RNG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RTS = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_RTS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_SR = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_SR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_ST = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCM_ST ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCNOTTY = 536900721 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCNOTTY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCNXCL = 536900622 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCNXCL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCOUTQ = 1074033779 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCOUTQ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT = 2147775600 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_DATA = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_DATA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_DOSTOP = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_DOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_FLUSHREAD = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_FLUSHREAD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_FLUSHWRITE = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_FLUSHWRITE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_IOCTL = 64 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_IOCTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_NOSTOP = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_NOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_START = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_START ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_STOP = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPKT_STOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPTMASTER = 536900636 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCPTMASTER ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSBRK = 536900731 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSBRK ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSCTTY = 536900705 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSCTTY ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSDRAINWAIT = 2147775575 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSDRAINWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSDTR = 536900729 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSDTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETA = 2150396948 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETA ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETAF = 2150396950 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETAF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETAW = 2150396949 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETAW ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETD = 2147775515 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSETD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSIG = 537162847 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSIG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSPGRP = 2147775606 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSPGRP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTART = 536900718 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTART ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTAT = 536900709 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTAT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTI = 2147578994 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTI ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTOP = 536900719 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSWINSZ = 2148037735 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCSWINSZ ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCTIMESTAMP = 1074820185 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCTIMESTAMP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCUCNTL = 2147775590 #53466 +pkg syscall (freebsd-riscv64-cgo), const TIOCUCNTL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const TOSTOP = 4194304 #53466 +pkg syscall (freebsd-riscv64-cgo), const TOSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VDISCARD = 15 #53466 +pkg syscall (freebsd-riscv64-cgo), const VDISCARD ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VDSUSP = 11 #53466 +pkg syscall (freebsd-riscv64-cgo), const VDSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOF = 0 #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOF ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOL = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOL2 = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const VEOL2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VERASE = 3 #53466 +pkg syscall (freebsd-riscv64-cgo), const VERASE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VERASE2 = 7 #53466 +pkg syscall (freebsd-riscv64-cgo), const VERASE2 ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VINTR = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const VINTR ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VKILL = 5 #53466 +pkg syscall (freebsd-riscv64-cgo), const VKILL ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VLNEXT = 14 #53466 +pkg syscall (freebsd-riscv64-cgo), const VLNEXT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VMIN = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const VMIN ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VQUIT = 9 #53466 +pkg syscall (freebsd-riscv64-cgo), const VQUIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VREPRINT = 6 #53466 +pkg syscall (freebsd-riscv64-cgo), const VREPRINT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTART = 12 #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTART ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTATUS = 18 #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTATUS ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTOP = 13 #53466 +pkg syscall (freebsd-riscv64-cgo), const VSTOP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VSUSP = 10 #53466 +pkg syscall (freebsd-riscv64-cgo), const VSUSP ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VTIME = 17 #53466 +pkg syscall (freebsd-riscv64-cgo), const VTIME ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const VWERASE = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const VWERASE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WCONTINUED = 4 #53466 +pkg syscall (freebsd-riscv64-cgo), const WCONTINUED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WCOREFLAG = 128 #53466 +pkg syscall (freebsd-riscv64-cgo), const WCOREFLAG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WEXITED = 16 #53466 +pkg syscall (freebsd-riscv64-cgo), const WEXITED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WLINUXCLONE = 2147483648 #53466 +pkg syscall (freebsd-riscv64-cgo), const WLINUXCLONE ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WNOHANG = 1 #53466 +pkg syscall (freebsd-riscv64-cgo), const WNOHANG ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WNOWAIT = 8 #53466 +pkg syscall (freebsd-riscv64-cgo), const WNOWAIT ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WSTOPPED = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const WSTOPPED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WTRAPPED = 32 #53466 +pkg syscall (freebsd-riscv64-cgo), const WTRAPPED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), const WUNTRACED = 2 #53466 +pkg syscall (freebsd-riscv64-cgo), const WUNTRACED ideal-int #53466 +pkg syscall (freebsd-riscv64-cgo), func Accept(int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Accept4(int, int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Access(string, uint32) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Adjtime(*Timeval, *Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Bind(int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfBuflen //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfBuflen(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfDatalink //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfDatalink(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfHeadercmpl //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfHeadercmpl(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfInterface //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfInterface(int, string) (string, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfJump //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfJump(int, int, int, int) *BpfInsn #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfStats //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfStats(int) (*BpfStat, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfStmt //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfStmt(int, int) *BpfInsn #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfTimeout //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func BpfTimeout(int) (*Timeval, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func CheckBpfVersion //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func CheckBpfVersion(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Chflags(string, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Chroot(string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Close(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func CloseOnExec(int) #53466 +pkg syscall (freebsd-riscv64-cgo), func CmsgLen(int) int #53466 +pkg syscall (freebsd-riscv64-cgo), func CmsgSpace(int) int #53466 +pkg syscall (freebsd-riscv64-cgo), func Connect(int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Dup(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Dup2(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fchdir(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fchflags(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fchmod(int, uint32) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fchown(int, int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Flock(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func FlushBpf //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func FlushBpf(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Fpathconf(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Fstat(int, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fstatat(int, string, *Stat_t, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fstatfs(int, *Statfs_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Fsync(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Ftruncate(int, int64) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Futimes(int, []Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getdtablesize() int #53466 +pkg syscall (freebsd-riscv64-cgo), func Getfsstat([]Statfs_t, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getpeername(int) (Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getpgid(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getpgrp() int #53466 +pkg syscall (freebsd-riscv64-cgo), func Getpriority(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getrlimit(int, *Rlimit) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Getrusage(int, *Rusage) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Getsid(int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Getsockname(int) (Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptByte(int, int, int) (uint8, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptICMPv6Filter(int, int, int) (*ICMPv6Filter, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptIPv6MTUInfo(int, int, int) (*IPv6MTUInfo, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func GetsockoptInt(int, int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Issetugid() bool #53466 +pkg syscall (freebsd-riscv64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Kill(int, Signal) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Kqueue() (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Listen(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Lstat(string, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Mkfifo(string, uint32) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Mknod(string, uint32, uint64) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Munmap([]uint8) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Nanosleep(*Timespec, *Timespec) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Open(string, int, uint32) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseRoutingMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseRoutingSockaddr //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Pathconf(string, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Pipe([]int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Pipe2([]int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Pread(int, []uint8, int64) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Pwrite(int, []uint8, int64) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64-cgo), func Read(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func ReadDirent(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Revoke(string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func RouteRIB //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func RouteRIB(int, int) ([]uint8, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Seek(int, int64, int) (int64, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Sendfile(int, int, *int64, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Sendto(int, []uint8, int, Sockaddr) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpf //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpf(int, []BpfInsn) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfBuflen //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfBuflen(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfDatalink //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfDatalink(int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfHeadercmpl //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfHeadercmpl(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfImmediate //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfImmediate(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfInterface //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfInterface(int, string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfPromisc //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfPromisc(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfTimeout //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func SetBpfTimeout(int, *Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetKevent(*Kevent_t, int, int, int) #53466 +pkg syscall (freebsd-riscv64-cgo), func SetNonblock(int, bool) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setegid(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Seteuid(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setgid(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setgroups([]int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setlogin(string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setpgid(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setpriority(int, int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setregid(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setreuid(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setrlimit(int, *Rlimit) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setsid() (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptByte(int, int, int, uint8) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptICMPv6Filter(int, int, int, *ICMPv6Filter) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptInt(int, int, int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptLinger(int, int, int, *Linger) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptString(int, int, int, string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Settimeofday(*Timeval) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Setuid(int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Shutdown(int, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func SlicePtrFromStrings([]string) ([]*uint8, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Socket(int, int, int) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Socketpair(int, int, int) ([2]int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Stat(string, *Stat_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Statfs(string, *Statfs_t) error #53466 +pkg syscall (freebsd-riscv64-cgo), func StringSlicePtr //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), func StringSlicePtr([]string) []*uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), func Sync() error #53466 +pkg syscall (freebsd-riscv64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466 +pkg syscall (freebsd-riscv64-cgo), func Sysctl(string) (string, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func SysctlUint32(string) (uint32, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func TimevalToNsec(Timeval) int64 #53466 +pkg syscall (freebsd-riscv64-cgo), func Truncate(string, int64) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Umask(int) int #53466 +pkg syscall (freebsd-riscv64-cgo), func Undelete(string) error #53466 +pkg syscall (freebsd-riscv64-cgo), func UnixRights(...int) []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), func Unmount(string, int) error #53466 +pkg syscall (freebsd-riscv64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), func Write(int, []uint8) (int, error) #53466 +pkg syscall (freebsd-riscv64-cgo), method (*Cmsghdr) SetLen(int) #53466 +pkg syscall (freebsd-riscv64-cgo), method (*Iovec) SetLen(int) #53466 +pkg syscall (freebsd-riscv64-cgo), method (*Msghdr) SetControllen(int) #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct, Caplen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct, Datalen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct, Hdrlen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfHdr struct, Tstamp Timeval #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfInsn struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfInsn struct, Code uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfInsn struct, Jf uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfInsn struct, Jt uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfInsn struct, K uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfProgram struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfProgram struct, Insns *BpfInsn #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfProgram struct, Len uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfStat struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfStat struct, Drop uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfStat struct, Recv uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfVersion struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfVersion struct, Major uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfVersion struct, Minor uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbuf struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbuf struct, Bufa *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbuf struct, Bufb *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbuf struct, Buflen uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbufHeader struct #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbufHeader struct, Kernel_gen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbufHeader struct, Kernel_len uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbufHeader struct, User_gen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Cmsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Cmsghdr struct, Len uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Cmsghdr struct, Level int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Cmsghdr struct, Type int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Credential struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Credential struct, Gid uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Credential struct, Groups []uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Credential struct, NoSetGroups bool #53466 +pkg syscall (freebsd-riscv64-cgo), type Credential struct, Uid uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Fileno uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Name [256]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Namlen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Off int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Pad0 uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Pad1 uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Reclen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Dirent struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type FdSet struct #53466 +pkg syscall (freebsd-riscv64-cgo), type FdSet struct, X__fds_bits [16]uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Len int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Pid int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Start int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Sysid int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Type int16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Flock_t struct, Whence int16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Fsid struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Fsid struct, Val [2]int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type ICMPv6Filter struct #53466 +pkg syscall (freebsd-riscv64-cgo), type ICMPv6Filter struct, Filt [8]uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IPMreqn struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IPMreqn struct, Address [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IPMreqn struct, Ifindex int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IPMreqn struct, Multiaddr [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IPv6MTUInfo struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IPv6MTUInfo struct, Addr RawSockaddrInet6 #53466 +pkg syscall (freebsd-riscv64-cgo), type IPv6MTUInfo struct, Mtu uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, Name [16]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfAnnounceMsghdr struct, What uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Addrlen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Baudrate uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Collisions uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Datalen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Epoch int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Hdrlen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Hwassist uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Ibytes uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Ierrors uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Imcasts uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Ipackets uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Iqdrops uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Lastchange Timeval #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Link_state uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Metric uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Mtu uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Noproto uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Obytes uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Oerrors uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Omcasts uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Opackets uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Physical uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Spare_char1 uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Spare_char2 uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfData struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Data IfData #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Metric int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfaMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type IfmaMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Inet6Pktinfo struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Inet6Pktinfo struct, Ifindex uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAddrMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAddrMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAddrMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAnnounceMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAnnounceMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceAnnounceMessage struct, Header IfAnnounceMsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMessage struct, Header IfMsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMulticastAddrMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMulticastAddrMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type Iovec struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Iovec struct, Base *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Iovec struct, Len uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Data int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Fflags uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Filter int16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Flags uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Ident uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Kevent_t struct, Udata *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Control *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Controllen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Iov *Iovec #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Iovlen int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Name *uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Namelen uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddr struct, Data [14]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddr struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddr struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrAny struct, Pad [92]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Alen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Data [46]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Nlen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Slen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrDatalink struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrInet4 struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrInet4 struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrInet6 struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrInet6 struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrUnix struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrUnix struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RawSockaddrUnix struct, Path [104]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rlimit struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Rlimit struct, Cur int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rlimit struct, Max int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RouteMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type RouteMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type RouteMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RouteMessage struct, Header RtMsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type RoutingMessage //deprecated #53466 +pkg syscall (freebsd-riscv64-cgo), type RoutingMessage interface, unexported methods #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Expire uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Filler [3]uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Hopcount uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Locks uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Mtu uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Pksent uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Recvpipe uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Rtt uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Rttvar uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Sendpipe uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Ssthresh uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMetrics struct, Weight uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Addrs int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Errno int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Flags int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Fmask int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Inits uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Msglen uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Pid int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Rmx RtMetrics #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Seq int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type RtMsghdr struct, Version uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Idrss int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Inblock int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Isrss int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Ixrss int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Majflt int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Maxrss int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Minflt int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Msgrcv int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Msgsnd int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Nivcsw int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Nsignals int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Nswap int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Nvcsw int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Oublock int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Stime Timeval #53466 +pkg syscall (freebsd-riscv64-cgo), type Rusage struct, Utime Timeval #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Alen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Data [46]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Family uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Index uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Len uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Nlen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Slen uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SockaddrDatalink struct, Type uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SocketControlMessage struct #53466 +pkg syscall (freebsd-riscv64-cgo), type SocketControlMessage struct, Data []uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type SocketControlMessage struct, Header Cmsghdr #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Atimespec Timespec #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Birthtimespec Timespec #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Blksize int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Blocks int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Ctimespec Timespec #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Dev uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Flags uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Gen uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Gid uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Ino uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Mode uint16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Mtimespec Timespec #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Nlink uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Padding0 int16 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Padding1 int32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Rdev uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Size int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Spare [10]uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Stat_t struct, Uid uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Asyncreads uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Asyncwrites uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Bavail int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Bfree uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Blocks uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Bsize uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Charspare [80]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Ffree int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Files uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Flags uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Fsid Fsid #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Fstypename [16]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Iosize uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Mntfromname [1024]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Mntonname [1024]int8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Namemax uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Owner uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Spare [10]uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Syncreads uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Syncwrites uint64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Type uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Statfs_t struct, Version uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Chroot string #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Credential *Credential #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Ctty int #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Foreground bool #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Noctty bool #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Pdeathsig Signal #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Pgid int #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Ptrace bool #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Setctty bool #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Setpgid bool #53466 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Setsid bool #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Cc [20]uint8 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Cflag uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Iflag uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Ispeed uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Lflag uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Oflag uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Termios struct, Ospeed uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), type Timespec struct, Nsec int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Timespec struct, Sec int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Timeval struct, Sec int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type Timeval struct, Usec int64 #53466 +pkg syscall (freebsd-riscv64-cgo), type WaitStatus uint32 #53466 +pkg syscall (freebsd-riscv64-cgo), var Stderr int #53466 +pkg syscall (freebsd-riscv64-cgo), var Stdin int #53466 +pkg syscall (freebsd-riscv64-cgo), var Stdout int #53466 diff --git a/platform/dbops/binaries/go/go/api/go1.21.txt b/platform/dbops/binaries/go/go/api/go1.21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc5fda56b54ab3e1422dc4a8feb335a2f49f2e5 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.21.txt @@ -0,0 +1,426 @@ +pkg bytes, func ContainsFunc([]uint8, func(int32) bool) bool #54386 +pkg bytes, method (*Buffer) AvailableBuffer() []uint8 #53685 +pkg bytes, method (*Buffer) Available() int #53685 +pkg cmp, func Compare[$0 Ordered]($0, $0) int #59488 +pkg cmp, func Less[$0 Ordered]($0, $0) bool #59488 +pkg cmp, type Ordered interface {} #59488 +pkg context, func AfterFunc(Context, func()) func() bool #57928 +pkg context, func WithDeadlineCause(Context, time.Time, error) (Context, CancelFunc) #56661 +pkg context, func WithoutCancel(Context) Context #40221 +pkg context, func WithTimeoutCause(Context, time.Duration, error) (Context, CancelFunc) #56661 +pkg crypto/elliptic, func GenerateKey //deprecated #52221 +pkg crypto/elliptic, func Marshal //deprecated #52221 +pkg crypto/elliptic, func Unmarshal //deprecated #52221 +pkg crypto/elliptic, method (*CurveParams) Add //deprecated #34648 +pkg crypto/elliptic, method (*CurveParams) Double //deprecated #34648 +pkg crypto/elliptic, method (*CurveParams) IsOnCurve //deprecated #34648 +pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult //deprecated #34648 +pkg crypto/elliptic, method (*CurveParams) ScalarMult //deprecated #34648 +pkg crypto/elliptic, type Curve interface, Add //deprecated #52221 +pkg crypto/elliptic, type Curve interface, Double //deprecated #52221 +pkg crypto/elliptic, type Curve interface, IsOnCurve //deprecated #52221 +pkg crypto/elliptic, type Curve interface, ScalarBaseMult //deprecated #52221 +pkg crypto/elliptic, type Curve interface, ScalarMult //deprecated #52221 +pkg crypto/rsa, func GenerateMultiPrimeKey //deprecated #56921 +pkg crypto/rsa, type PrecomputedValues struct, CRTValues //deprecated #56921 +pkg crypto/tls, const QUICEncryptionLevelApplication = 3 #44886 +pkg crypto/tls, const QUICEncryptionLevelApplication QUICEncryptionLevel #44886 +pkg crypto/tls, const QUICEncryptionLevelEarly = 1 #60107 +pkg crypto/tls, const QUICEncryptionLevelEarly QUICEncryptionLevel #60107 +pkg crypto/tls, const QUICEncryptionLevelHandshake = 2 #44886 +pkg crypto/tls, const QUICEncryptionLevelHandshake QUICEncryptionLevel #44886 +pkg crypto/tls, const QUICEncryptionLevelInitial = 0 #44886 +pkg crypto/tls, const QUICEncryptionLevelInitial QUICEncryptionLevel #44886 +pkg crypto/tls, const QUICHandshakeDone = 7 #44886 +pkg crypto/tls, const QUICHandshakeDone QUICEventKind #44886 +pkg crypto/tls, const QUICNoEvent = 0 #44886 +pkg crypto/tls, const QUICNoEvent QUICEventKind #44886 +pkg crypto/tls, const QUICRejectedEarlyData = 6 #60107 +pkg crypto/tls, const QUICRejectedEarlyData QUICEventKind #60107 +pkg crypto/tls, const QUICSetReadSecret = 1 #44886 +pkg crypto/tls, const QUICSetReadSecret QUICEventKind #44886 +pkg crypto/tls, const QUICSetWriteSecret = 2 #44886 +pkg crypto/tls, const QUICSetWriteSecret QUICEventKind #44886 +pkg crypto/tls, const QUICTransportParameters = 4 #44886 +pkg crypto/tls, const QUICTransportParameters QUICEventKind #44886 +pkg crypto/tls, const QUICTransportParametersRequired = 5 #44886 +pkg crypto/tls, const QUICTransportParametersRequired QUICEventKind #44886 +pkg crypto/tls, const QUICWriteData = 3 #44886 +pkg crypto/tls, const QUICWriteData QUICEventKind #44886 +pkg crypto/tls, func NewResumptionState([]uint8, *SessionState) (*ClientSessionState, error) #60105 +pkg crypto/tls, func ParseSessionState([]uint8) (*SessionState, error) #60105 +pkg crypto/tls, func QUICClient(*QUICConfig) *QUICConn #44886 +pkg crypto/tls, func QUICServer(*QUICConfig) *QUICConn #44886 +pkg crypto/tls, func VersionName(uint16) string #46308 +pkg crypto/tls, method (AlertError) Error() string #44886 +pkg crypto/tls, method (*ClientSessionState) ResumptionState() ([]uint8, *SessionState, error) #60105 +pkg crypto/tls, method (*Config) DecryptTicket([]uint8, ConnectionState) (*SessionState, error) #60105 +pkg crypto/tls, method (*Config) EncryptTicket(ConnectionState, *SessionState) ([]uint8, error) #60105 +pkg crypto/tls, method (*QUICConn) Close() error #44886 +pkg crypto/tls, method (*QUICConn) ConnectionState() ConnectionState #44886 +pkg crypto/tls, method (*QUICConn) HandleData(QUICEncryptionLevel, []uint8) error #44886 +pkg crypto/tls, method (*QUICConn) NextEvent() QUICEvent #44886 +pkg crypto/tls, method (*QUICConn) SendSessionTicket(QUICSessionTicketOptions) error #60107 +pkg crypto/tls, type QUICSessionTicketOptions struct #60107 +pkg crypto/tls, type QUICSessionTicketOptions struct, EarlyData bool #60107 +pkg crypto/tls, method (*QUICConn) SetTransportParameters([]uint8) #44886 +pkg crypto/tls, method (*QUICConn) Start(context.Context) error #44886 +pkg crypto/tls, method (QUICEncryptionLevel) String() string #44886 +pkg crypto/tls, method (*SessionState) Bytes() ([]uint8, error) #60105 +pkg crypto/tls, type AlertError uint8 #44886 +pkg crypto/tls, type Config struct, UnwrapSession func([]uint8, ConnectionState) (*SessionState, error) #60105 +pkg crypto/tls, type Config struct, WrapSession func(ConnectionState, *SessionState) ([]uint8, error) #60105 +pkg crypto/tls, type QUICConfig struct #44886 +pkg crypto/tls, type QUICConfig struct, TLSConfig *Config #44886 +pkg crypto/tls, type QUICConn struct #44886 +pkg crypto/tls, type QUICEncryptionLevel int #44886 +pkg crypto/tls, type QUICEventKind int #44886 +pkg crypto/tls, type QUICEvent struct #44886 +pkg crypto/tls, type QUICEvent struct, Data []uint8 #44886 +pkg crypto/tls, type QUICEvent struct, Kind QUICEventKind #44886 +pkg crypto/tls, type QUICEvent struct, Level QUICEncryptionLevel #44886 +pkg crypto/tls, type QUICEvent struct, Suite uint16 #44886 +pkg crypto/tls, type SessionState struct #60105 +pkg crypto/tls, type SessionState struct, EarlyData bool #60107 +pkg crypto/tls, type SessionState struct, Extra [][]uint8 #60539 +pkg crypto/x509, type RevocationListEntry struct #53573 +pkg crypto/x509, type RevocationListEntry struct, Extensions []pkix.Extension #53573 +pkg crypto/x509, type RevocationListEntry struct, ExtraExtensions []pkix.Extension #53573 +pkg crypto/x509, type RevocationListEntry struct, Raw []uint8 #53573 +pkg crypto/x509, type RevocationListEntry struct, ReasonCode int #53573 +pkg crypto/x509, type RevocationListEntry struct, RevocationTime time.Time #53573 +pkg crypto/x509, type RevocationListEntry struct, SerialNumber *big.Int #53573 +pkg crypto/x509, type RevocationList struct, RevokedCertificateEntries []RevocationListEntry #53573 +pkg crypto/x509, type RevocationList struct, RevokedCertificates //deprecated #53573 +pkg debug/elf, const COMPRESS_ZSTD = 2 #55107 +pkg debug/elf, const COMPRESS_ZSTD CompressionType #55107 +pkg debug/elf, const DF_1_CONFALT = 8192 #56887 +pkg debug/elf, const DF_1_CONFALT DynFlag1 #56887 +pkg debug/elf, const DF_1_DIRECT = 256 #56887 +pkg debug/elf, const DF_1_DIRECT DynFlag1 #56887 +pkg debug/elf, const DF_1_DISPRELDNE = 32768 #56887 +pkg debug/elf, const DF_1_DISPRELDNE DynFlag1 #56887 +pkg debug/elf, const DF_1_DISPRELPND = 65536 #56887 +pkg debug/elf, const DF_1_DISPRELPND DynFlag1 #56887 +pkg debug/elf, const DF_1_EDITED = 2097152 #56887 +pkg debug/elf, const DF_1_EDITED DynFlag1 #56887 +pkg debug/elf, const DF_1_ENDFILTEE = 16384 #56887 +pkg debug/elf, const DF_1_ENDFILTEE DynFlag1 #56887 +pkg debug/elf, const DF_1_GLOBAL = 2 #56887 +pkg debug/elf, const DF_1_GLOBAL DynFlag1 #56887 +pkg debug/elf, const DF_1_GLOBAUDIT = 16777216 #56887 +pkg debug/elf, const DF_1_GLOBAUDIT DynFlag1 #56887 +pkg debug/elf, const DF_1_GROUP = 4 #56887 +pkg debug/elf, const DF_1_GROUP DynFlag1 #56887 +pkg debug/elf, const DF_1_IGNMULDEF = 262144 #56887 +pkg debug/elf, const DF_1_IGNMULDEF DynFlag1 #56887 +pkg debug/elf, const DF_1_INITFIRST = 32 #56887 +pkg debug/elf, const DF_1_INITFIRST DynFlag1 #56887 +pkg debug/elf, const DF_1_INTERPOSE = 1024 #56887 +pkg debug/elf, const DF_1_INTERPOSE DynFlag1 #56887 +pkg debug/elf, const DF_1_KMOD = 268435456 #56887 +pkg debug/elf, const DF_1_KMOD DynFlag1 #56887 +pkg debug/elf, const DF_1_LOADFLTR = 16 #56887 +pkg debug/elf, const DF_1_LOADFLTR DynFlag1 #56887 +pkg debug/elf, const DF_1_NOCOMMON = 1073741824 #56887 +pkg debug/elf, const DF_1_NOCOMMON DynFlag1 #56887 +pkg debug/elf, const DF_1_NODEFLIB = 2048 #56887 +pkg debug/elf, const DF_1_NODEFLIB DynFlag1 #56887 +pkg debug/elf, const DF_1_NODELETE = 8 #56887 +pkg debug/elf, const DF_1_NODELETE DynFlag1 #56887 +pkg debug/elf, const DF_1_NODIRECT = 131072 #56887 +pkg debug/elf, const DF_1_NODIRECT DynFlag1 #56887 +pkg debug/elf, const DF_1_NODUMP = 4096 #56887 +pkg debug/elf, const DF_1_NODUMP DynFlag1 #56887 +pkg debug/elf, const DF_1_NOHDR = 1048576 #56887 +pkg debug/elf, const DF_1_NOHDR DynFlag1 #56887 +pkg debug/elf, const DF_1_NOKSYMS = 524288 #56887 +pkg debug/elf, const DF_1_NOKSYMS DynFlag1 #56887 +pkg debug/elf, const DF_1_NOOPEN = 64 #56887 +pkg debug/elf, const DF_1_NOOPEN DynFlag1 #56887 +pkg debug/elf, const DF_1_NORELOC = 4194304 #56887 +pkg debug/elf, const DF_1_NORELOC DynFlag1 #56887 +pkg debug/elf, const DF_1_NOW = 1 #56887 +pkg debug/elf, const DF_1_NOW DynFlag1 #56887 +pkg debug/elf, const DF_1_ORIGIN = 128 #56887 +pkg debug/elf, const DF_1_ORIGIN DynFlag1 #56887 +pkg debug/elf, const DF_1_PIE = 134217728 #56887 +pkg debug/elf, const DF_1_PIE DynFlag1 #56887 +pkg debug/elf, const DF_1_SINGLETON = 33554432 #56887 +pkg debug/elf, const DF_1_SINGLETON DynFlag1 #56887 +pkg debug/elf, const DF_1_STUB = 67108864 #56887 +pkg debug/elf, const DF_1_STUB DynFlag1 #56887 +pkg debug/elf, const DF_1_SYMINTPOSE = 8388608 #56887 +pkg debug/elf, const DF_1_SYMINTPOSE DynFlag1 #56887 +pkg debug/elf, const DF_1_TRANS = 512 #56887 +pkg debug/elf, const DF_1_TRANS DynFlag1 #56887 +pkg debug/elf, const DF_1_WEAKFILTER = 536870912 #56887 +pkg debug/elf, const DF_1_WEAKFILTER DynFlag1 #56887 +pkg debug/elf, const R_PPC64_REL24_P9NOTOC = 124 #60348 +pkg debug/elf, const R_PPC64_REL24_P9NOTOC R_PPC64 #60348 +pkg debug/elf, method (DynFlag1) GoString() string #56887 +pkg debug/elf, method (DynFlag1) String() string #56887 +pkg debug/elf, method (*File) DynValue(DynTag) ([]uint64, error) #56892 +pkg debug/elf, type DynFlag1 uint32 #56887 +pkg encoding/binary, var NativeEndian nativeEndian #57237 +pkg errors, var ErrUnsupported error #41198 +pkg flag, func BoolFunc(string, string, func(string) error) #53747 +pkg flag, method (*FlagSet) BoolFunc(string, string, func(string) error) #53747 +pkg go/ast, func IsGenerated(*File) bool #28089 +pkg go/ast, func NewPackage //deprecated #52463 +pkg go/ast, type File struct, GoVersion string #59033 +pkg go/ast, type Importer //deprecated #52463 +pkg go/ast, type Object //deprecated #52463 +pkg go/ast, type Package //deprecated #52463 +pkg go/ast, type Scope //deprecated #52463 +pkg go/build/constraint, func GoVersion(Expr) string #59033 +pkg go/build, type Directive struct #56986 +pkg go/build, type Directive struct, Pos token.Position #56986 +pkg go/build, type Directive struct, Text string #56986 +pkg go/build, type Package struct, Directives []Directive #56986 +pkg go/build, type Package struct, TestDirectives []Directive #56986 +pkg go/build, type Package struct, XTestDirectives []Directive #56986 +pkg go/token, method (*File) Lines() []int #57708 +pkg go/types, method (*Package) GoVersion() string #61175 +pkg html/template, const ErrJSTemplate = 12 #59584 +pkg html/template, const ErrJSTemplate ErrorCode #59584 +pkg io/fs, func FormatDirEntry(DirEntry) string #54451 +pkg io/fs, func FormatFileInfo(FileInfo) string #54451 +pkg log/slog, const KindAny = 0 #56345 +pkg log/slog, const KindAny Kind #56345 +pkg log/slog, const KindBool = 1 #56345 +pkg log/slog, const KindBool Kind #56345 +pkg log/slog, const KindDuration = 2 #56345 +pkg log/slog, const KindDuration Kind #56345 +pkg log/slog, const KindFloat64 = 3 #56345 +pkg log/slog, const KindFloat64 Kind #56345 +pkg log/slog, const KindGroup = 8 #56345 +pkg log/slog, const KindGroup Kind #56345 +pkg log/slog, const KindInt64 = 4 #56345 +pkg log/slog, const KindInt64 Kind #56345 +pkg log/slog, const KindLogValuer = 9 #56345 +pkg log/slog, const KindLogValuer Kind #56345 +pkg log/slog, const KindString = 5 #56345 +pkg log/slog, const KindString Kind #56345 +pkg log/slog, const KindTime = 6 #56345 +pkg log/slog, const KindTime Kind #56345 +pkg log/slog, const KindUint64 = 7 #56345 +pkg log/slog, const KindUint64 Kind #56345 +pkg log/slog, const LevelDebug = -4 #56345 +pkg log/slog, const LevelDebug Level #56345 +pkg log/slog, const LevelError = 8 #56345 +pkg log/slog, const LevelError Level #56345 +pkg log/slog, const LevelInfo = 0 #56345 +pkg log/slog, const LevelInfo Level #56345 +pkg log/slog, const LevelKey ideal-string #56345 +pkg log/slog, const LevelKey = "level" #56345 +pkg log/slog, const LevelWarn = 4 #56345 +pkg log/slog, const LevelWarn Level #56345 +pkg log/slog, const MessageKey ideal-string #56345 +pkg log/slog, const MessageKey = "msg" #56345 +pkg log/slog, const SourceKey ideal-string #56345 +pkg log/slog, const SourceKey = "source" #56345 +pkg log/slog, const TimeKey ideal-string #56345 +pkg log/slog, const TimeKey = "time" #56345 +pkg log/slog, func Any(string, interface{}) Attr #56345 +pkg log/slog, func AnyValue(interface{}) Value #56345 +pkg log/slog, func Bool(string, bool) Attr #56345 +pkg log/slog, func BoolValue(bool) Value #56345 +pkg log/slog, func DebugContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, func Debug(string, ...interface{}) #56345 +pkg log/slog, func Default() *Logger #56345 +pkg log/slog, func Duration(string, time.Duration) Attr #56345 +pkg log/slog, func DurationValue(time.Duration) Value #56345 +pkg log/slog, func ErrorContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, func Error(string, ...interface{}) #56345 +pkg log/slog, func Float64(string, float64) Attr #56345 +pkg log/slog, func Float64Value(float64) Value #56345 +pkg log/slog, func Group(string, ...interface{}) Attr #59204 +pkg log/slog, func GroupValue(...Attr) Value #56345 +pkg log/slog, func InfoContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, func Info(string, ...interface{}) #56345 +pkg log/slog, func Int64(string, int64) Attr #56345 +pkg log/slog, func Int64Value(int64) Value #56345 +pkg log/slog, func Int(string, int) Attr #56345 +pkg log/slog, func IntValue(int) Value #56345 +pkg log/slog, func LogAttrs(context.Context, Level, string, ...Attr) #56345 +pkg log/slog, func Log(context.Context, Level, string, ...interface{}) #56345 +pkg log/slog, func New(Handler) *Logger #56345 +pkg log/slog, func NewJSONHandler(io.Writer, *HandlerOptions) *JSONHandler #59339 +pkg log/slog, func NewLogLogger(Handler, Level) *log.Logger #56345 +pkg log/slog, func NewRecord(time.Time, Level, string, uintptr) Record #56345 +pkg log/slog, func NewTextHandler(io.Writer, *HandlerOptions) *TextHandler #59339 +pkg log/slog, func SetDefault(*Logger) #56345 +pkg log/slog, func String(string, string) Attr #56345 +pkg log/slog, func StringValue(string) Value #56345 +pkg log/slog, func Time(string, time.Time) Attr #56345 +pkg log/slog, func TimeValue(time.Time) Value #56345 +pkg log/slog, func Uint64(string, uint64) Attr #56345 +pkg log/slog, func Uint64Value(uint64) Value #56345 +pkg log/slog, func WarnContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, func Warn(string, ...interface{}) #56345 +pkg log/slog, func With(...interface{}) *Logger #56345 +pkg log/slog, method (Attr) Equal(Attr) bool #56345 +pkg log/slog, method (Attr) String() string #56345 +pkg log/slog, method (*JSONHandler) Enabled(context.Context, Level) bool #56345 +pkg log/slog, method (*JSONHandler) Handle(context.Context, Record) error #56345 +pkg log/slog, method (*JSONHandler) WithAttrs([]Attr) Handler #56345 +pkg log/slog, method (*JSONHandler) WithGroup(string) Handler #56345 +pkg log/slog, method (Kind) String() string #56345 +pkg log/slog, method (Level) Level() Level #56345 +pkg log/slog, method (Level) MarshalJSON() ([]uint8, error) #56345 +pkg log/slog, method (Level) MarshalText() ([]uint8, error) #56345 +pkg log/slog, method (Level) String() string #56345 +pkg log/slog, method (*Level) UnmarshalJSON([]uint8) error #56345 +pkg log/slog, method (*Level) UnmarshalText([]uint8) error #56345 +pkg log/slog, method (*LevelVar) Level() Level #56345 +pkg log/slog, method (*LevelVar) MarshalText() ([]uint8, error) #56345 +pkg log/slog, method (*LevelVar) Set(Level) #56345 +pkg log/slog, method (*LevelVar) String() string #56345 +pkg log/slog, method (*LevelVar) UnmarshalText([]uint8) error #56345 +pkg log/slog, method (*Logger) DebugContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, method (*Logger) Debug(string, ...interface{}) #56345 +pkg log/slog, method (*Logger) Enabled(context.Context, Level) bool #56345 +pkg log/slog, method (*Logger) ErrorContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, method (*Logger) Error(string, ...interface{}) #56345 +pkg log/slog, method (*Logger) Handler() Handler #56345 +pkg log/slog, method (*Logger) InfoContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, method (*Logger) Info(string, ...interface{}) #56345 +pkg log/slog, method (*Logger) LogAttrs(context.Context, Level, string, ...Attr) #56345 +pkg log/slog, method (*Logger) Log(context.Context, Level, string, ...interface{}) #56345 +pkg log/slog, method (*Logger) WarnContext(context.Context, string, ...interface{}) #61200 +pkg log/slog, method (*Logger) Warn(string, ...interface{}) #56345 +pkg log/slog, method (*Logger) WithGroup(string) *Logger #56345 +pkg log/slog, method (*Logger) With(...interface{}) *Logger #56345 +pkg log/slog, method (*Record) AddAttrs(...Attr) #56345 +pkg log/slog, method (*Record) Add(...interface{}) #56345 +pkg log/slog, method (Record) Attrs(func(Attr) bool) #59060 +pkg log/slog, method (Record) Clone() Record #56345 +pkg log/slog, method (Record) NumAttrs() int #56345 +pkg log/slog, method (*TextHandler) Enabled(context.Context, Level) bool #56345 +pkg log/slog, method (*TextHandler) Handle(context.Context, Record) error #56345 +pkg log/slog, method (*TextHandler) WithAttrs([]Attr) Handler #56345 +pkg log/slog, method (*TextHandler) WithGroup(string) Handler #56345 +pkg log/slog, method (Value) Any() interface{} #56345 +pkg log/slog, method (Value) Bool() bool #56345 +pkg log/slog, method (Value) Duration() time.Duration #56345 +pkg log/slog, method (Value) Equal(Value) bool #56345 +pkg log/slog, method (Value) Float64() float64 #56345 +pkg log/slog, method (Value) Group() []Attr #56345 +pkg log/slog, method (Value) Int64() int64 #56345 +pkg log/slog, method (Value) Kind() Kind #56345 +pkg log/slog, method (Value) LogValuer() LogValuer #56345 +pkg log/slog, method (Value) Resolve() Value #56345 +pkg log/slog, method (Value) String() string #56345 +pkg log/slog, method (Value) Time() time.Time #56345 +pkg log/slog, method (Value) Uint64() uint64 #56345 +pkg log/slog, type Attr struct #56345 +pkg log/slog, type Attr struct, Key string #56345 +pkg log/slog, type Attr struct, Value Value #56345 +pkg log/slog, type Handler interface, Enabled(context.Context, Level) bool #56345 +pkg log/slog, type Handler interface { Enabled, Handle, WithAttrs, WithGroup } #56345 +pkg log/slog, type Handler interface, Handle(context.Context, Record) error #56345 +pkg log/slog, type Handler interface, WithAttrs([]Attr) Handler #56345 +pkg log/slog, type Handler interface, WithGroup(string) Handler #56345 +pkg log/slog, type HandlerOptions struct #56345 +pkg log/slog, type HandlerOptions struct, AddSource bool #56345 +pkg log/slog, type HandlerOptions struct, Level Leveler #56345 +pkg log/slog, type HandlerOptions struct, ReplaceAttr func([]string, Attr) Attr #56345 +pkg log/slog, type JSONHandler struct #56345 +pkg log/slog, type Kind int #56345 +pkg log/slog, type Leveler interface { Level } #56345 +pkg log/slog, type Leveler interface, Level() Level #56345 +pkg log/slog, type Level int #56345 +pkg log/slog, type LevelVar struct #56345 +pkg log/slog, type Logger struct #56345 +pkg log/slog, type LogValuer interface { LogValue } #56345 +pkg log/slog, type LogValuer interface, LogValue() Value #56345 +pkg log/slog, type Record struct #56345 +pkg log/slog, type Record struct, Level Level #56345 +pkg log/slog, type Record struct, Message string #56345 +pkg log/slog, type Record struct, PC uintptr #56345 +pkg log/slog, type Record struct, Time time.Time #56345 +pkg log/slog, type Source struct #59280 +pkg log/slog, type Source struct, File string #59280 +pkg log/slog, type Source struct, Function string #59280 +pkg log/slog, type Source struct, Line int #59280 +pkg log/slog, type TextHandler struct #56345 +pkg log/slog, type Value struct #56345 +pkg maps, func Clone[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0) $0 #57436 +pkg maps, func Copy[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$3 }, $2 comparable, $3 interface{}]($0, $1) #57436 +pkg maps, func DeleteFunc[$0 interface{ ~map[$1]$2 }, $1 comparable, $2 interface{}]($0, func($1, $2) bool) #57436 +pkg maps, func Equal[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$3 }, $2 comparable, $3 comparable]($0, $1) bool #57436 +pkg maps, func EqualFunc[$0 interface{ ~map[$2]$3 }, $1 interface{ ~map[$2]$4 }, $2 comparable, $3 interface{}, $4 interface{}]($0, $1, func($3, $4) bool) bool #57436 +pkg math/big, method (*Int) Float64() (float64, Accuracy) #56984 +pkg net/http, method (*ProtocolError) Is(error) bool #41198 +pkg net/http, method (*ResponseController) EnableFullDuplex() error #57786 +pkg net/http, var ErrSchemeMismatch error #44855 +pkg net, method (*Dialer) MultipathTCP() bool #56539 +pkg net, method (*Dialer) SetMultipathTCP(bool) #56539 +pkg net, method (*ListenConfig) MultipathTCP() bool #56539 +pkg net, method (*ListenConfig) SetMultipathTCP(bool) #56539 +pkg net, method (*TCPConn) MultipathTCP() (bool, error) #59166 +pkg reflect, method (Value) Clear() #55002 +pkg reflect, type SliceHeader //deprecated #56906 +pkg reflect, type StringHeader //deprecated #56906 +pkg regexp, method (*Regexp) MarshalText() ([]uint8, error) #46159 +pkg regexp, method (*Regexp) UnmarshalText([]uint8) error #46159 +pkg runtime, method (*PanicNilError) Error() string #25448 +pkg runtime, method (*PanicNilError) RuntimeError() #25448 +pkg runtime, method (*Pinner) Pin(interface{}) #46787 +pkg runtime, method (*Pinner) Unpin() #46787 +pkg runtime, type PanicNilError struct #25448 +pkg runtime, type Pinner struct #46787 +pkg slices, func BinarySearch[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $1) (int, bool) #60091 +pkg slices, func BinarySearchFunc[$0 interface{ ~[]$1 }, $1 interface{}, $2 interface{}]($0, $2, func($1, $2) int) (int, bool) #60091 +pkg slices, func Clip[$0 interface{ ~[]$1 }, $1 interface{}]($0) $0 #57433 +pkg slices, func Clone[$0 interface{ ~[]$1 }, $1 interface{}]($0) $0 #57433 +pkg slices, func Compact[$0 interface{ ~[]$1 }, $1 comparable]($0) $0 #57433 +pkg slices, func CompactFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) bool) $0 #57433 +pkg slices, func Compare[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $0) int #60091 +pkg slices, func CompareFunc[$0 interface{ ~[]$2 }, $1 interface{ ~[]$3 }, $2 interface{}, $3 interface{}]($0, $1, func($2, $3) int) int #60091 +pkg slices, func Contains[$0 interface{ ~[]$1 }, $1 comparable]($0, $1) bool #57433 +pkg slices, func ContainsFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) bool #57433 +pkg slices, func Delete[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, int) $0 #57433 +pkg slices, func DeleteFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) $0 #54768 +pkg slices, func Equal[$0 interface{ ~[]$1 }, $1 comparable]($0, $0) bool #57433 +pkg slices, func EqualFunc[$0 interface{ ~[]$2 }, $1 interface{ ~[]$3 }, $2 interface{}, $3 interface{}]($0, $1, func($2, $3) bool) bool #57433 +pkg slices, func Grow[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) $0 #57433 +pkg slices, func Index[$0 interface{ ~[]$1 }, $1 comparable]($0, $1) int #57433 +pkg slices, func IndexFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1) bool) int #57433 +pkg slices, func Insert[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, ...$1) $0 #57433 +pkg slices, func IsSorted[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) bool #60091 +pkg slices, func IsSortedFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) bool #60091 +pkg slices, func Max[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091 +pkg slices, func MaxFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091 +pkg slices, func Min[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091 +pkg slices, func MinFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091 +pkg slices, func Replace[$0 interface{ ~[]$1 }, $1 interface{}]($0, int, int, ...$1) $0 #57433 +pkg slices, func Reverse[$0 interface{ ~[]$1 }, $1 interface{}]($0) #58565 +pkg slices, func Sort[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) #60091 +pkg slices, func SortFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) #60091 +pkg slices, func SortStableFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) #60091 +pkg strings, func ContainsFunc(string, func(int32) bool) bool #54386 +pkg sync, func OnceFunc(func()) func() #56102 +pkg sync, func OnceValue[$0 interface{}](func() $0) func() $0 #56102 +pkg sync, func OnceValues[$0 interface{}, $1 interface{}](func() ($0, $1)) func() ($0, $1) #56102 +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-386), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-amd64), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-arm64-cgo), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-arm64), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-arm), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-riscv64-cgo), type SysProcAttr struct, Jail int #46259 +pkg syscall (freebsd-riscv64), type SysProcAttr struct, Jail int #46259 +pkg testing, func Testing() bool #52600 +pkg testing/slogtest, func TestHandler(slog.Handler, func() []map[string]interface{}) error #56345 +pkg unicode, const Version = "15.0.0" #55079 +pkg unicode, var Cypro_Minoan *RangeTable #55079 +pkg unicode, var Kawi *RangeTable #55079 +pkg unicode, var Nag_Mundari *RangeTable #55079 +pkg unicode, var Old_Uyghur *RangeTable #55079 +pkg unicode, var Tangsa *RangeTable #55079 +pkg unicode, var Toto *RangeTable #55079 +pkg unicode, var Vithkuqi *RangeTable #55079 diff --git a/platform/dbops/binaries/go/go/api/go1.22.txt b/platform/dbops/binaries/go/go/api/go1.22.txt new file mode 100644 index 0000000000000000000000000000000000000000..55f21857bc5d642e2f468b4322ce5f8a411fe172 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.22.txt @@ -0,0 +1,135 @@ +pkg archive/tar, method (*Writer) AddFS(fs.FS) error #58000 +pkg archive/zip, method (*Writer) AddFS(fs.FS) error #54898 +pkg cmp, func Or[$0 comparable](...$0) $0 #60204 +pkg crypto/x509, func OIDFromInts([]uint64) (OID, error) #60665 +pkg crypto/x509, method (*CertPool) AddCertWithConstraint(*Certificate, func([]*Certificate) error) #57178 +pkg crypto/x509, method (OID) Equal(OID) bool #60665 +pkg crypto/x509, method (OID) EqualASN1OID(asn1.ObjectIdentifier) bool #60665 +pkg crypto/x509, method (OID) String() string #60665 +pkg crypto/x509, type Certificate struct, Policies []OID #60665 +pkg crypto/x509, type OID struct #60665 +pkg database/sql, method (*Null[$0]) Scan(interface{}) error #60370 +pkg database/sql, method (Null[$0]) Value() (driver.Value, error) #60370 +pkg database/sql, type Null[$0 interface{}] struct #60370 +pkg database/sql, type Null[$0 interface{}] struct, V $0 #60370 +pkg database/sql, type Null[$0 interface{}] struct, Valid bool #60370 +pkg debug/elf, const R_LARCH_64_PCREL = 109 #63725 +pkg debug/elf, const R_LARCH_64_PCREL R_LARCH #63725 +pkg debug/elf, const R_LARCH_ADD6 = 105 #63725 +pkg debug/elf, const R_LARCH_ADD6 R_LARCH #63725 +pkg debug/elf, const R_LARCH_ADD_ULEB128 = 107 #63725 +pkg debug/elf, const R_LARCH_ADD_ULEB128 R_LARCH #63725 +pkg debug/elf, const R_LARCH_ALIGN = 102 #63725 +pkg debug/elf, const R_LARCH_ALIGN R_LARCH #63725 +pkg debug/elf, const R_LARCH_CFA = 104 #63725 +pkg debug/elf, const R_LARCH_CFA R_LARCH #63725 +pkg debug/elf, const R_LARCH_DELETE = 101 #63725 +pkg debug/elf, const R_LARCH_DELETE R_LARCH #63725 +pkg debug/elf, const R_LARCH_PCREL20_S2 = 103 #63725 +pkg debug/elf, const R_LARCH_PCREL20_S2 R_LARCH #63725 +pkg debug/elf, const R_LARCH_SUB6 = 106 #63725 +pkg debug/elf, const R_LARCH_SUB6 R_LARCH #63725 +pkg debug/elf, const R_LARCH_SUB_ULEB128 = 108 #63725 +pkg debug/elf, const R_LARCH_SUB_ULEB128 R_LARCH #63725 +pkg debug/elf, const R_MIPS_PC32 = 248 #61974 +pkg debug/elf, const R_MIPS_PC32 R_MIPS #61974 +pkg encoding/base32, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693 +pkg encoding/base32, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693 +pkg encoding/base64, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693 +pkg encoding/base64, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693 +pkg encoding/hex, func AppendDecode([]uint8, []uint8) ([]uint8, error) #53693 +pkg encoding/hex, func AppendEncode([]uint8, []uint8) []uint8 #53693 +pkg go/ast, func NewPackage //deprecated #52463 +pkg go/ast, func Unparen(Expr) Expr #60061 +pkg go/ast, type Importer //deprecated #52463 +pkg go/ast, type Object //deprecated #52463 +pkg go/ast, type Package //deprecated #52463 +pkg go/ast, type Scope //deprecated #52463 +pkg go/types, func NewAlias(*TypeName, Type) *Alias #63223 +pkg go/types, func Unalias(Type) Type #63223 +pkg go/types, method (*Alias) Obj() *TypeName #63223 +pkg go/types, method (*Alias) String() string #63223 +pkg go/types, method (*Alias) Underlying() Type #63223 +pkg go/types, method (*Info) PkgNameOf(*ast.ImportSpec) *PkgName #62037 +pkg go/types, method (Checker) PkgNameOf(*ast.ImportSpec) *PkgName #62037 +pkg go/types, type Alias struct #63223 +pkg go/types, type Info struct, FileVersions map[*ast.File]string #62605 +pkg go/version, func Compare(string, string) int #62039 +pkg go/version, func IsValid(string) bool #62039 +pkg go/version, func Lang(string) string #62039 +pkg html/template, const ErrJSTemplate //deprecated #61619 +pkg io, method (*SectionReader) Outer() (ReaderAt, int64, int64) #61870 +pkg log/slog, func SetLogLoggerLevel(Level) Level #62418 +pkg math/big, method (*Rat) FloatPrec() (int, bool) #50489 +pkg math/rand/v2, func ExpFloat64() float64 #61716 +pkg math/rand/v2, func Float32() float32 #61716 +pkg math/rand/v2, func Float64() float64 #61716 +pkg math/rand/v2, func Int() int #61716 +pkg math/rand/v2, func Int32() int32 #61716 +pkg math/rand/v2, func Int32N(int32) int32 #61716 +pkg math/rand/v2, func Int64() int64 #61716 +pkg math/rand/v2, func Int64N(int64) int64 #61716 +pkg math/rand/v2, func IntN(int) int #61716 +pkg math/rand/v2, func N[$0 intType]($0) $0 #61716 +pkg math/rand/v2, func New(Source) *Rand #61716 +pkg math/rand/v2, func NewChaCha8([32]uint8) *ChaCha8 #61716 +pkg math/rand/v2, func NewPCG(uint64, uint64) *PCG #61716 +pkg math/rand/v2, func NewZipf(*Rand, float64, float64, uint64) *Zipf #61716 +pkg math/rand/v2, func NormFloat64() float64 #61716 +pkg math/rand/v2, func Perm(int) []int #61716 +pkg math/rand/v2, func Shuffle(int, func(int, int)) #61716 +pkg math/rand/v2, func Uint32() uint32 #61716 +pkg math/rand/v2, func Uint32N(uint32) uint32 #61716 +pkg math/rand/v2, func Uint64() uint64 #61716 +pkg math/rand/v2, func Uint64N(uint64) uint64 #61716 +pkg math/rand/v2, func UintN(uint) uint #61716 +pkg math/rand/v2, method (*ChaCha8) MarshalBinary() ([]uint8, error) #61716 +pkg math/rand/v2, method (*ChaCha8) Seed([32]uint8) #61716 +pkg math/rand/v2, method (*ChaCha8) Uint64() uint64 #61716 +pkg math/rand/v2, method (*ChaCha8) UnmarshalBinary([]uint8) error #61716 +pkg math/rand/v2, method (*PCG) MarshalBinary() ([]uint8, error) #61716 +pkg math/rand/v2, method (*PCG) Seed(uint64, uint64) #61716 +pkg math/rand/v2, method (*PCG) Uint64() uint64 #61716 +pkg math/rand/v2, method (*PCG) UnmarshalBinary([]uint8) error #61716 +pkg math/rand/v2, method (*Rand) ExpFloat64() float64 #61716 +pkg math/rand/v2, method (*Rand) Float32() float32 #61716 +pkg math/rand/v2, method (*Rand) Float64() float64 #61716 +pkg math/rand/v2, method (*Rand) Int() int #61716 +pkg math/rand/v2, method (*Rand) Int32() int32 #61716 +pkg math/rand/v2, method (*Rand) Int32N(int32) int32 #61716 +pkg math/rand/v2, method (*Rand) Int64() int64 #61716 +pkg math/rand/v2, method (*Rand) Int64N(int64) int64 #61716 +pkg math/rand/v2, method (*Rand) IntN(int) int #61716 +pkg math/rand/v2, method (*Rand) NormFloat64() float64 #61716 +pkg math/rand/v2, method (*Rand) Perm(int) []int #61716 +pkg math/rand/v2, method (*Rand) Shuffle(int, func(int, int)) #61716 +pkg math/rand/v2, method (*Rand) Uint32() uint32 #61716 +pkg math/rand/v2, method (*Rand) Uint32N(uint32) uint32 #61716 +pkg math/rand/v2, method (*Rand) Uint64() uint64 #61716 +pkg math/rand/v2, method (*Rand) Uint64N(uint64) uint64 #61716 +pkg math/rand/v2, method (*Rand) UintN(uint) uint #61716 +pkg math/rand/v2, method (*Zipf) Uint64() uint64 #61716 +pkg math/rand/v2, type ChaCha8 struct #61716 +pkg math/rand/v2, type PCG struct #61716 +pkg math/rand/v2, type Rand struct #61716 +pkg math/rand/v2, type Source interface { Uint64 } #61716 +pkg math/rand/v2, type Source interface, Uint64() uint64 #61716 +pkg math/rand/v2, type Zipf struct #61716 +pkg net, method (*TCPConn) WriteTo(io.Writer) (int64, error) #58808 +pkg net/http, func FileServerFS(fs.FS) Handler #51971 +pkg net/http, func NewFileTransportFS(fs.FS) RoundTripper #51971 +pkg net/http, func ServeFileFS(ResponseWriter, *Request, fs.FS, string) #51971 +pkg net/http, method (*Request) PathValue(string) string #61410 +pkg net/http, method (*Request) SetPathValue(string, string) #61410 +pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642 +pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808 +pkg reflect, func PtrTo //deprecated #59599 +pkg reflect, func TypeFor[$0 interface{}]() Type #60088 +pkg slices, func Concat[$0 interface{ ~[]$1 }, $1 interface{}](...$0) $0 #56353 +pkg syscall (linux-386), type SysProcAttr struct, PidFD *int #51246 +pkg syscall (linux-386-cgo), type SysProcAttr struct, PidFD *int #51246 +pkg syscall (linux-amd64), type SysProcAttr struct, PidFD *int #51246 +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, PidFD *int #51246 +pkg syscall (linux-arm), type SysProcAttr struct, PidFD *int #51246 +pkg syscall (linux-arm-cgo), type SysProcAttr struct, PidFD *int #51246 +pkg testing/slogtest, func Run(*testing.T, func(*testing.T) slog.Handler, func(*testing.T) map[string]interface{}) #61758 diff --git a/platform/dbops/binaries/go/go/api/go1.3.txt b/platform/dbops/binaries/go/go/api/go1.3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0474277c495d637354696790f16b79c8b14fe537 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.3.txt @@ -0,0 +1,2053 @@ +pkg archive/tar, const TypeGNUSparse = 83 +pkg archive/tar, const TypeGNUSparse ideal-char +pkg archive/tar, type Header struct, Xattrs map[string]string +pkg compress/gzip, method (*Reader) Reset(io.Reader) error +pkg crypto/tls, const CurveP256 = 23 +pkg crypto/tls, const CurveP256 CurveID +pkg crypto/tls, const CurveP384 = 24 +pkg crypto/tls, const CurveP384 CurveID +pkg crypto/tls, const CurveP521 = 25 +pkg crypto/tls, const CurveP521 CurveID +pkg crypto/tls, func DialWithDialer(*net.Dialer, string, string, *Config) (*Conn, error) +pkg crypto/tls, func NewLRUClientSessionCache(int) ClientSessionCache +pkg crypto/tls, type ClientSessionCache interface { Get, Put } +pkg crypto/tls, type ClientSessionCache interface, Get(string) (*ClientSessionState, bool) +pkg crypto/tls, type ClientSessionCache interface, Put(string, *ClientSessionState) +pkg crypto/tls, type ClientSessionState struct +pkg crypto/tls, type Config struct, ClientSessionCache ClientSessionCache +pkg crypto/tls, type Config struct, CurvePreferences []CurveID +pkg crypto/tls, type ConnectionState struct, Version uint16 +pkg crypto/tls, type CurveID uint16 +pkg crypto/x509, func CreateCertificateRequest(io.Reader, *CertificateRequest, interface{}) ([]uint8, error) +pkg crypto/x509, func ParseCertificateRequest([]uint8) (*CertificateRequest, error) +pkg crypto/x509, type CertificateRequest struct +pkg crypto/x509, type CertificateRequest struct, Attributes []pkix.AttributeTypeAndValueSET +pkg crypto/x509, type CertificateRequest struct, DNSNames []string +pkg crypto/x509, type CertificateRequest struct, EmailAddresses []string +pkg crypto/x509, type CertificateRequest struct, Extensions []pkix.Extension +pkg crypto/x509, type CertificateRequest struct, ExtraExtensions []pkix.Extension +pkg crypto/x509, type CertificateRequest struct, IPAddresses []net.IP +pkg crypto/x509, type CertificateRequest struct, PublicKey interface{} +pkg crypto/x509, type CertificateRequest struct, PublicKeyAlgorithm PublicKeyAlgorithm +pkg crypto/x509, type CertificateRequest struct, Raw []uint8 +pkg crypto/x509, type CertificateRequest struct, RawSubject []uint8 +pkg crypto/x509, type CertificateRequest struct, RawSubjectPublicKeyInfo []uint8 +pkg crypto/x509, type CertificateRequest struct, RawTBSCertificateRequest []uint8 +pkg crypto/x509, type CertificateRequest struct, Signature []uint8 +pkg crypto/x509, type CertificateRequest struct, SignatureAlgorithm SignatureAlgorithm +pkg crypto/x509, type CertificateRequest struct, Subject pkix.Name +pkg crypto/x509, type CertificateRequest struct, Version int +pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct +pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct, Type asn1.ObjectIdentifier +pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct, Value [][]AttributeTypeAndValue +pkg debug/dwarf, const TagCondition = 63 +pkg debug/dwarf, const TagCondition Tag +pkg debug/dwarf, const TagRvalueReferenceType = 66 +pkg debug/dwarf, const TagRvalueReferenceType Tag +pkg debug/dwarf, const TagSharedType = 64 +pkg debug/dwarf, const TagSharedType Tag +pkg debug/dwarf, const TagTemplateAlias = 67 +pkg debug/dwarf, const TagTemplateAlias Tag +pkg debug/dwarf, const TagTypeUnit = 65 +pkg debug/dwarf, const TagTypeUnit Tag +pkg debug/dwarf, method (*Data) AddTypes(string, []uint8) error +pkg debug/macho, const CpuArm = 12 +pkg debug/macho, const CpuArm Cpu +pkg debug/macho, const CpuPpc = 18 +pkg debug/macho, const CpuPpc Cpu +pkg debug/macho, const CpuPpc64 = 16777234 +pkg debug/macho, const CpuPpc64 Cpu +pkg debug/macho, const MagicFat = 3405691582 +pkg debug/macho, const MagicFat uint32 +pkg debug/macho, const TypeBundle = 8 +pkg debug/macho, const TypeBundle Type +pkg debug/macho, const TypeDylib = 6 +pkg debug/macho, const TypeDylib Type +pkg debug/macho, func NewFatFile(io.ReaderAt) (*FatFile, error) +pkg debug/macho, func OpenFat(string) (*FatFile, error) +pkg debug/macho, method (*FatFile) Close() error +pkg debug/macho, method (FatArch) Close() error +pkg debug/macho, method (FatArch) DWARF() (*dwarf.Data, error) +pkg debug/macho, method (FatArch) ImportedLibraries() ([]string, error) +pkg debug/macho, method (FatArch) ImportedSymbols() ([]string, error) +pkg debug/macho, method (FatArch) Section(string) *Section +pkg debug/macho, method (FatArch) Segment(string) *Segment +pkg debug/macho, type FatArch struct +pkg debug/macho, type FatArch struct, embedded *File +pkg debug/macho, type FatArch struct, embedded FatArchHeader +pkg debug/macho, type FatArchHeader struct +pkg debug/macho, type FatArchHeader struct, Align uint32 +pkg debug/macho, type FatArchHeader struct, Cpu Cpu +pkg debug/macho, type FatArchHeader struct, Offset uint32 +pkg debug/macho, type FatArchHeader struct, Size uint32 +pkg debug/macho, type FatArchHeader struct, SubCpu uint32 +pkg debug/macho, type FatFile struct +pkg debug/macho, type FatFile struct, Arches []FatArch +pkg debug/macho, type FatFile struct, Magic uint32 +pkg debug/macho, var ErrNotFat *FormatError +pkg debug/pe, type DataDirectory struct +pkg debug/pe, type DataDirectory struct, Size uint32 +pkg debug/pe, type DataDirectory struct, VirtualAddress uint32 +pkg debug/pe, type File struct, OptionalHeader interface{} +pkg debug/pe, type OptionalHeader32 struct +pkg debug/pe, type OptionalHeader32 struct, AddressOfEntryPoint uint32 +pkg debug/pe, type OptionalHeader32 struct, BaseOfCode uint32 +pkg debug/pe, type OptionalHeader32 struct, BaseOfData uint32 +pkg debug/pe, type OptionalHeader32 struct, CheckSum uint32 +pkg debug/pe, type OptionalHeader32 struct, DataDirectory [16]DataDirectory +pkg debug/pe, type OptionalHeader32 struct, DllCharacteristics uint16 +pkg debug/pe, type OptionalHeader32 struct, FileAlignment uint32 +pkg debug/pe, type OptionalHeader32 struct, ImageBase uint32 +pkg debug/pe, type OptionalHeader32 struct, LoaderFlags uint32 +pkg debug/pe, type OptionalHeader32 struct, Magic uint16 +pkg debug/pe, type OptionalHeader32 struct, MajorImageVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, MajorLinkerVersion uint8 +pkg debug/pe, type OptionalHeader32 struct, MajorOperatingSystemVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, MajorSubsystemVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, MinorImageVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, MinorLinkerVersion uint8 +pkg debug/pe, type OptionalHeader32 struct, MinorOperatingSystemVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, MinorSubsystemVersion uint16 +pkg debug/pe, type OptionalHeader32 struct, NumberOfRvaAndSizes uint32 +pkg debug/pe, type OptionalHeader32 struct, SectionAlignment uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfCode uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfHeaders uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfHeapCommit uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfHeapReserve uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfImage uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfInitializedData uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfStackCommit uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfStackReserve uint32 +pkg debug/pe, type OptionalHeader32 struct, SizeOfUninitializedData uint32 +pkg debug/pe, type OptionalHeader32 struct, Subsystem uint16 +pkg debug/pe, type OptionalHeader32 struct, Win32VersionValue uint32 +pkg debug/pe, type OptionalHeader64 struct +pkg debug/pe, type OptionalHeader64 struct, AddressOfEntryPoint uint32 +pkg debug/pe, type OptionalHeader64 struct, BaseOfCode uint32 +pkg debug/pe, type OptionalHeader64 struct, CheckSum uint32 +pkg debug/pe, type OptionalHeader64 struct, DataDirectory [16]DataDirectory +pkg debug/pe, type OptionalHeader64 struct, DllCharacteristics uint16 +pkg debug/pe, type OptionalHeader64 struct, FileAlignment uint32 +pkg debug/pe, type OptionalHeader64 struct, ImageBase uint64 +pkg debug/pe, type OptionalHeader64 struct, LoaderFlags uint32 +pkg debug/pe, type OptionalHeader64 struct, Magic uint16 +pkg debug/pe, type OptionalHeader64 struct, MajorImageVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, MajorLinkerVersion uint8 +pkg debug/pe, type OptionalHeader64 struct, MajorOperatingSystemVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, MajorSubsystemVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, MinorImageVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, MinorLinkerVersion uint8 +pkg debug/pe, type OptionalHeader64 struct, MinorOperatingSystemVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, MinorSubsystemVersion uint16 +pkg debug/pe, type OptionalHeader64 struct, NumberOfRvaAndSizes uint32 +pkg debug/pe, type OptionalHeader64 struct, SectionAlignment uint32 +pkg debug/pe, type OptionalHeader64 struct, SizeOfCode uint32 +pkg debug/pe, type OptionalHeader64 struct, SizeOfHeaders uint32 +pkg debug/pe, type OptionalHeader64 struct, SizeOfHeapCommit uint64 +pkg debug/pe, type OptionalHeader64 struct, SizeOfHeapReserve uint64 +pkg debug/pe, type OptionalHeader64 struct, SizeOfImage uint32 +pkg debug/pe, type OptionalHeader64 struct, SizeOfInitializedData uint32 +pkg debug/pe, type OptionalHeader64 struct, SizeOfStackCommit uint64 +pkg debug/pe, type OptionalHeader64 struct, SizeOfStackReserve uint64 +pkg debug/pe, type OptionalHeader64 struct, SizeOfUninitializedData uint32 +pkg debug/pe, type OptionalHeader64 struct, Subsystem uint16 +pkg debug/pe, type OptionalHeader64 struct, Win32VersionValue uint32 +pkg debug/plan9obj, const Magic386 = 491 +pkg debug/plan9obj, const Magic386 ideal-int +pkg debug/plan9obj, const Magic64 = 32768 +pkg debug/plan9obj, const Magic64 ideal-int +pkg debug/plan9obj, const MagicAMD64 = 35479 +pkg debug/plan9obj, const MagicAMD64 ideal-int +pkg debug/plan9obj, const MagicARM = 1607 +pkg debug/plan9obj, const MagicARM ideal-int +pkg debug/plan9obj, func NewFile(io.ReaderAt) (*File, error) +pkg debug/plan9obj, func Open(string) (*File, error) +pkg debug/plan9obj, method (*File) Close() error +pkg debug/plan9obj, method (*File) Section(string) *Section +pkg debug/plan9obj, method (*File) Symbols() ([]Sym, error) +pkg debug/plan9obj, method (*Section) Data() ([]uint8, error) +pkg debug/plan9obj, method (*Section) Open() io.ReadSeeker +pkg debug/plan9obj, method (Section) ReadAt([]uint8, int64) (int, error) +pkg debug/plan9obj, type File struct +pkg debug/plan9obj, type File struct, Sections []*Section +pkg debug/plan9obj, type File struct, embedded FileHeader +pkg debug/plan9obj, type FileHeader struct +pkg debug/plan9obj, type FileHeader struct, Bss uint32 +pkg debug/plan9obj, type FileHeader struct, Entry uint64 +pkg debug/plan9obj, type FileHeader struct, Magic uint32 +pkg debug/plan9obj, type FileHeader struct, PtrSize int +pkg debug/plan9obj, type Section struct +pkg debug/plan9obj, type Section struct, embedded SectionHeader +pkg debug/plan9obj, type Section struct, embedded io.ReaderAt +pkg debug/plan9obj, type SectionHeader struct +pkg debug/plan9obj, type SectionHeader struct, Name string +pkg debug/plan9obj, type SectionHeader struct, Offset uint32 +pkg debug/plan9obj, type SectionHeader struct, Size uint32 +pkg debug/plan9obj, type Sym struct +pkg debug/plan9obj, type Sym struct, Name string +pkg debug/plan9obj, type Sym struct, Type int32 +pkg debug/plan9obj, type Sym struct, Value uint64 +pkg encoding/asn1, method (ObjectIdentifier) String() string +pkg go/build, type Package struct, MFiles []string +pkg math/big, method (*Int) MarshalText() ([]uint8, error) +pkg math/big, method (*Int) UnmarshalText([]uint8) error +pkg math/big, method (*Rat) MarshalText() ([]uint8, error) +pkg math/big, method (*Rat) UnmarshalText([]uint8) error +pkg net, type Dialer struct, KeepAlive time.Duration +pkg net/http, const StateActive = 1 +pkg net/http, const StateActive ConnState +pkg net/http, const StateClosed = 4 +pkg net/http, const StateClosed ConnState +pkg net/http, const StateHijacked = 3 +pkg net/http, const StateHijacked ConnState +pkg net/http, const StateIdle = 2 +pkg net/http, const StateIdle ConnState +pkg net/http, const StateNew = 0 +pkg net/http, const StateNew ConnState +pkg net/http, method (*Server) SetKeepAlivesEnabled(bool) +pkg net/http, method (ConnState) String() string +pkg net/http, type Client struct, Timeout time.Duration +pkg net/http, type ConnState int +pkg net/http, type Response struct, TLS *tls.ConnectionState +pkg net/http, type Server struct, ConnState func(net.Conn, ConnState) +pkg net/http, type Server struct, ErrorLog *log.Logger +pkg net/http, type Transport struct, TLSHandshakeTimeout time.Duration +pkg regexp/syntax, method (*Inst) MatchRunePos(int32) int +pkg regexp/syntax, method (InstOp) String() string +pkg runtime/debug, func SetPanicOnFault(bool) bool +pkg runtime/debug, func WriteHeapDump(uintptr) +pkg sync, method (*Pool) Get() interface{} +pkg sync, method (*Pool) Put(interface{}) +pkg sync, type Pool struct +pkg sync, type Pool struct, New func() interface{} +pkg syscall (darwin-386), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-386), func Mlock([]uint8) error +pkg syscall (darwin-386), func Mlockall(int) error +pkg syscall (darwin-386), func Mprotect([]uint8, int) error +pkg syscall (darwin-386), func Munlock([]uint8) error +pkg syscall (darwin-386), func Munlockall() error +pkg syscall (darwin-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (darwin-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-386-cgo), func Mlock([]uint8) error +pkg syscall (darwin-386-cgo), func Mlockall(int) error +pkg syscall (darwin-386-cgo), func Mprotect([]uint8, int) error +pkg syscall (darwin-386-cgo), func Munlock([]uint8) error +pkg syscall (darwin-386-cgo), func Munlockall() error +pkg syscall (darwin-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (darwin-amd64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-amd64), func Mlock([]uint8) error +pkg syscall (darwin-amd64), func Mlockall(int) error +pkg syscall (darwin-amd64), func Mprotect([]uint8, int) error +pkg syscall (darwin-amd64), func Munlock([]uint8) error +pkg syscall (darwin-amd64), func Munlockall() error +pkg syscall (darwin-amd64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (darwin-amd64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (darwin-amd64-cgo), func Mlock([]uint8) error +pkg syscall (darwin-amd64-cgo), func Mlockall(int) error +pkg syscall (darwin-amd64-cgo), func Mprotect([]uint8, int) error +pkg syscall (darwin-amd64-cgo), func Munlock([]uint8) error +pkg syscall (darwin-amd64-cgo), func Munlockall() error +pkg syscall (darwin-amd64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-386), const AF_INET6_SDP = 42 +pkg syscall (freebsd-386), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-386), const AF_INET_SDP = 40 +pkg syscall (freebsd-386), const AF_INET_SDP ideal-int +pkg syscall (freebsd-386), const AF_MAX = 42 +pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-386), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-386), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-386), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-386), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-386), const DLT_NG40 = 244 +pkg syscall (freebsd-386), const DLT_NG40 ideal-int +pkg syscall (freebsd-386), const ELAST = 96 +pkg syscall (freebsd-386), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-386), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-386), const EOWNERDEAD = 96 +pkg syscall (freebsd-386), const EOWNERDEAD Errno +pkg syscall (freebsd-386), const EV_DROP = 4096 +pkg syscall (freebsd-386), const EV_DROP ideal-int +pkg syscall (freebsd-386), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-386), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-386), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-386), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-386), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-386), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-386), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-386), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-386), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-386), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-386), const NAME_MAX = 255 +pkg syscall (freebsd-386), const NAME_MAX ideal-int +pkg syscall (freebsd-386), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-386), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-386), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-386), const RT_NORTREF = 2 +pkg syscall (freebsd-386), const RT_NORTREF ideal-int +pkg syscall (freebsd-386), const SIGLIBRT = 33 +pkg syscall (freebsd-386), const SIGLIBRT Signal +pkg syscall (freebsd-386), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-386), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-386), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-386), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-386), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-386), const SO_VENDOR ideal-int +pkg syscall (freebsd-386), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-386), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-386), const SYS_BINDAT = 538 +pkg syscall (freebsd-386), const SYS_BINDAT ideal-int +pkg syscall (freebsd-386), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-386), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-386), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-386), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-386), const SYS_PIPE2 = 542 +pkg syscall (freebsd-386), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-386), const SYS_PROCCTL = 544 +pkg syscall (freebsd-386), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-386), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-386), const TCP_VENDOR ideal-int +pkg syscall (freebsd-386), const WEXITED = 16 +pkg syscall (freebsd-386), const WEXITED ideal-int +pkg syscall (freebsd-386), const WTRAPPED = 32 +pkg syscall (freebsd-386), const WTRAPPED ideal-int +pkg syscall (freebsd-386), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-386), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-386), type Termios struct +pkg syscall (freebsd-386), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-386), type Termios struct, Cflag uint32 +pkg syscall (freebsd-386), type Termios struct, Iflag uint32 +pkg syscall (freebsd-386), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-386), type Termios struct, Lflag uint32 +pkg syscall (freebsd-386), type Termios struct, Oflag uint32 +pkg syscall (freebsd-386), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-386-cgo), const AF_INET6_SDP = 42 +pkg syscall (freebsd-386-cgo), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-386-cgo), const AF_INET_SDP = 40 +pkg syscall (freebsd-386-cgo), const AF_INET_SDP ideal-int +pkg syscall (freebsd-386-cgo), const AF_MAX = 42 +pkg syscall (freebsd-386-cgo), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-386-cgo), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-386-cgo), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-386-cgo), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-386-cgo), const DLT_NG40 = 244 +pkg syscall (freebsd-386-cgo), const DLT_NG40 ideal-int +pkg syscall (freebsd-386-cgo), const ELAST = 96 +pkg syscall (freebsd-386-cgo), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-386-cgo), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-386-cgo), const EOWNERDEAD = 96 +pkg syscall (freebsd-386-cgo), const EOWNERDEAD Errno +pkg syscall (freebsd-386-cgo), const EV_DROP = 4096 +pkg syscall (freebsd-386-cgo), const EV_DROP ideal-int +pkg syscall (freebsd-386-cgo), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-386-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-386-cgo), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-386-cgo), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-386-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-386-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-386-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-386-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-386-cgo), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-386-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-386-cgo), const NAME_MAX = 255 +pkg syscall (freebsd-386-cgo), const NAME_MAX ideal-int +pkg syscall (freebsd-386-cgo), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-386-cgo), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-386-cgo), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-386-cgo), const RT_NORTREF = 2 +pkg syscall (freebsd-386-cgo), const RT_NORTREF ideal-int +pkg syscall (freebsd-386-cgo), const SIGLIBRT = 33 +pkg syscall (freebsd-386-cgo), const SIGLIBRT Signal +pkg syscall (freebsd-386-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-386-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-386-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-386-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-386-cgo), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-386-cgo), const SO_VENDOR ideal-int +pkg syscall (freebsd-386-cgo), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-386-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_BINDAT = 538 +pkg syscall (freebsd-386-cgo), const SYS_BINDAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-386-cgo), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-386-cgo), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PIPE2 = 542 +pkg syscall (freebsd-386-cgo), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-386-cgo), const SYS_PROCCTL = 544 +pkg syscall (freebsd-386-cgo), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-386-cgo), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-386-cgo), const TCP_VENDOR ideal-int +pkg syscall (freebsd-386-cgo), const WEXITED = 16 +pkg syscall (freebsd-386-cgo), const WEXITED ideal-int +pkg syscall (freebsd-386-cgo), const WTRAPPED = 32 +pkg syscall (freebsd-386-cgo), const WTRAPPED ideal-int +pkg syscall (freebsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-386-cgo), type Termios struct +pkg syscall (freebsd-386-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-386-cgo), type Termios struct, Cflag uint32 +pkg syscall (freebsd-386-cgo), type Termios struct, Iflag uint32 +pkg syscall (freebsd-386-cgo), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-386-cgo), type Termios struct, Lflag uint32 +pkg syscall (freebsd-386-cgo), type Termios struct, Oflag uint32 +pkg syscall (freebsd-386-cgo), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-amd64), const AF_INET6_SDP = 42 +pkg syscall (freebsd-amd64), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-amd64), const AF_INET_SDP = 40 +pkg syscall (freebsd-amd64), const AF_INET_SDP ideal-int +pkg syscall (freebsd-amd64), const AF_MAX = 42 +pkg syscall (freebsd-amd64), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-amd64), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-amd64), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-amd64), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-amd64), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-amd64), const DLT_NG40 = 244 +pkg syscall (freebsd-amd64), const DLT_NG40 ideal-int +pkg syscall (freebsd-amd64), const ELAST = 96 +pkg syscall (freebsd-amd64), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-amd64), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-amd64), const EOWNERDEAD = 96 +pkg syscall (freebsd-amd64), const EOWNERDEAD Errno +pkg syscall (freebsd-amd64), const EV_DROP = 4096 +pkg syscall (freebsd-amd64), const EV_DROP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-amd64), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-amd64), const MAP_32BIT = 524288 +pkg syscall (freebsd-amd64), const MAP_32BIT ideal-int +pkg syscall (freebsd-amd64), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-amd64), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-amd64), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-amd64), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-amd64), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-amd64), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-amd64), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-amd64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-amd64), const NAME_MAX = 255 +pkg syscall (freebsd-amd64), const NAME_MAX ideal-int +pkg syscall (freebsd-amd64), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-amd64), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-amd64), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-amd64), const RT_NORTREF = 2 +pkg syscall (freebsd-amd64), const RT_NORTREF ideal-int +pkg syscall (freebsd-amd64), const SIGLIBRT = 33 +pkg syscall (freebsd-amd64), const SIGLIBRT Signal +pkg syscall (freebsd-amd64), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-amd64), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-amd64), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-amd64), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-amd64), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-amd64), const SO_VENDOR ideal-int +pkg syscall (freebsd-amd64), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-amd64), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-amd64), const SYS_BINDAT = 538 +pkg syscall (freebsd-amd64), const SYS_BINDAT ideal-int +pkg syscall (freebsd-amd64), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-amd64), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-amd64), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-amd64), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_PIPE2 = 542 +pkg syscall (freebsd-amd64), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-amd64), const SYS_PROCCTL = 544 +pkg syscall (freebsd-amd64), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-amd64), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-amd64), const TCP_VENDOR ideal-int +pkg syscall (freebsd-amd64), const WEXITED = 16 +pkg syscall (freebsd-amd64), const WEXITED ideal-int +pkg syscall (freebsd-amd64), const WTRAPPED = 32 +pkg syscall (freebsd-amd64), const WTRAPPED ideal-int +pkg syscall (freebsd-amd64), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-amd64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-amd64), type Termios struct +pkg syscall (freebsd-amd64), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-amd64), type Termios struct, Cflag uint32 +pkg syscall (freebsd-amd64), type Termios struct, Iflag uint32 +pkg syscall (freebsd-amd64), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-amd64), type Termios struct, Lflag uint32 +pkg syscall (freebsd-amd64), type Termios struct, Oflag uint32 +pkg syscall (freebsd-amd64), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-amd64-cgo), const AF_INET6_SDP = 42 +pkg syscall (freebsd-amd64-cgo), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_INET_SDP = 40 +pkg syscall (freebsd-amd64-cgo), const AF_INET_SDP ideal-int +pkg syscall (freebsd-amd64-cgo), const AF_MAX = 42 +pkg syscall (freebsd-amd64-cgo), const DLT_MATCHING_MAX = 246 +pkg syscall (freebsd-amd64-cgo), const DLT_MPEG_2_TS = 243 +pkg syscall (freebsd-amd64-cgo), const DLT_MPEG_2_TS ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NFC_LLCP = 245 +pkg syscall (freebsd-amd64-cgo), const DLT_NFC_LLCP ideal-int +pkg syscall (freebsd-amd64-cgo), const DLT_NG40 = 244 +pkg syscall (freebsd-amd64-cgo), const DLT_NG40 ideal-int +pkg syscall (freebsd-amd64-cgo), const ELAST = 96 +pkg syscall (freebsd-amd64-cgo), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-amd64-cgo), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-amd64-cgo), const EOWNERDEAD = 96 +pkg syscall (freebsd-amd64-cgo), const EOWNERDEAD Errno +pkg syscall (freebsd-amd64-cgo), const EV_DROP = 4096 +pkg syscall (freebsd-amd64-cgo), const EV_DROP ideal-int +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MPLS = 137 +pkg syscall (freebsd-amd64-cgo), const IPPROTO_MPLS ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_32BIT = 524288 +pkg syscall (freebsd-amd64-cgo), const MAP_32BIT ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-amd64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-amd64-cgo), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const NAME_MAX = 255 +pkg syscall (freebsd-amd64-cgo), const NAME_MAX ideal-int +pkg syscall (freebsd-amd64-cgo), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-amd64-cgo), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-amd64-cgo), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-amd64-cgo), const RT_NORTREF = 2 +pkg syscall (freebsd-amd64-cgo), const RT_NORTREF ideal-int +pkg syscall (freebsd-amd64-cgo), const SIGLIBRT = 33 +pkg syscall (freebsd-amd64-cgo), const SIGLIBRT Signal +pkg syscall (freebsd-amd64-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-amd64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-amd64-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-amd64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-amd64-cgo), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-amd64-cgo), const SO_VENDOR ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-amd64-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_BINDAT = 538 +pkg syscall (freebsd-amd64-cgo), const SYS_BINDAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-amd64-cgo), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-amd64-cgo), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PIPE2 = 542 +pkg syscall (freebsd-amd64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-amd64-cgo), const SYS_PROCCTL = 544 +pkg syscall (freebsd-amd64-cgo), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-amd64-cgo), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-amd64-cgo), const TCP_VENDOR ideal-int +pkg syscall (freebsd-amd64-cgo), const WEXITED = 16 +pkg syscall (freebsd-amd64-cgo), const WEXITED ideal-int +pkg syscall (freebsd-amd64-cgo), const WTRAPPED = 32 +pkg syscall (freebsd-amd64-cgo), const WTRAPPED ideal-int +pkg syscall (freebsd-amd64-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-amd64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-amd64-cgo), type Termios struct +pkg syscall (freebsd-amd64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Cflag uint32 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Iflag uint32 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Lflag uint32 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Oflag uint32 +pkg syscall (freebsd-amd64-cgo), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-arm), const AF_INET6_SDP = 42 +pkg syscall (freebsd-arm), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-arm), const AF_INET_SDP = 40 +pkg syscall (freebsd-arm), const AF_INET_SDP ideal-int +pkg syscall (freebsd-arm), const AF_MAX = 42 +pkg syscall (freebsd-arm), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-arm), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-arm), const ELAST = 96 +pkg syscall (freebsd-arm), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-arm), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-arm), const EOWNERDEAD = 96 +pkg syscall (freebsd-arm), const EOWNERDEAD Errno +pkg syscall (freebsd-arm), const EV_DROP = 4096 +pkg syscall (freebsd-arm), const EV_DROP ideal-int +pkg syscall (freebsd-arm), const IFT_CARP = 248 +pkg syscall (freebsd-arm), const IFT_CARP ideal-int +pkg syscall (freebsd-arm), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-arm), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-arm), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-arm), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-arm), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-arm), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-arm), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-arm), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-arm), const NAME_MAX = 255 +pkg syscall (freebsd-arm), const NAME_MAX ideal-int +pkg syscall (freebsd-arm), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-arm), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-arm), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-arm), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-arm), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-arm), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-arm), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-arm), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-arm), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-arm), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-arm), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-arm), const SO_VENDOR ideal-int +pkg syscall (freebsd-arm), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-arm), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-arm), const SYS_BINDAT = 538 +pkg syscall (freebsd-arm), const SYS_BINDAT ideal-int +pkg syscall (freebsd-arm), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-arm), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-arm), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-arm), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-arm), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-arm), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-arm), const SYS_PIPE2 = 542 +pkg syscall (freebsd-arm), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-arm), const SYS_PROCCTL = 544 +pkg syscall (freebsd-arm), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-arm), const SizeofBpfHdr = 32 +pkg syscall (freebsd-arm), const SizeofIfData = 96 +pkg syscall (freebsd-arm), const SizeofIfMsghdr = 112 +pkg syscall (freebsd-arm), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-arm), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-arm), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-arm), const TCP_VENDOR ideal-int +pkg syscall (freebsd-arm), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-arm), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm), func Fchflags(int, int) error +pkg syscall (freebsd-arm), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-arm), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-arm), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-arm), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm), type IfData struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm), type Termios struct +pkg syscall (freebsd-arm), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-arm), type Termios struct, Cflag uint32 +pkg syscall (freebsd-arm), type Termios struct, Iflag uint32 +pkg syscall (freebsd-arm), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-arm), type Termios struct, Lflag uint32 +pkg syscall (freebsd-arm), type Termios struct, Oflag uint32 +pkg syscall (freebsd-arm), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-arm), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), const AF_INET6_SDP = 42 +pkg syscall (freebsd-arm-cgo), const AF_INET6_SDP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_INET_SDP = 40 +pkg syscall (freebsd-arm-cgo), const AF_INET_SDP ideal-int +pkg syscall (freebsd-arm-cgo), const AF_MAX = 42 +pkg syscall (freebsd-arm-cgo), const BIOCGRTIMEOUT = 1074807406 +pkg syscall (freebsd-arm-cgo), const BIOCSRTIMEOUT = 2148549229 +pkg syscall (freebsd-arm-cgo), const ELAST = 96 +pkg syscall (freebsd-arm-cgo), const ENOTRECOVERABLE = 95 +pkg syscall (freebsd-arm-cgo), const ENOTRECOVERABLE Errno +pkg syscall (freebsd-arm-cgo), const EOWNERDEAD = 96 +pkg syscall (freebsd-arm-cgo), const EOWNERDEAD Errno +pkg syscall (freebsd-arm-cgo), const EV_DROP = 4096 +pkg syscall (freebsd-arm-cgo), const EV_DROP ideal-int +pkg syscall (freebsd-arm-cgo), const IFT_CARP = 248 +pkg syscall (freebsd-arm-cgo), const IFT_CARP ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNED_SUPER = 16777216 +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNED_SUPER ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (freebsd-arm-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (freebsd-arm-cgo), const MSG_CMSG_CLOEXEC = 262144 +pkg syscall (freebsd-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (freebsd-arm-cgo), const NAME_MAX = 255 +pkg syscall (freebsd-arm-cgo), const NAME_MAX ideal-int +pkg syscall (freebsd-arm-cgo), const O_CLOEXEC = 1048576 +pkg syscall (freebsd-arm-cgo), const RTF_GWFLAG_COMPAT = 2147483648 +pkg syscall (freebsd-arm-cgo), const RTF_GWFLAG_COMPAT ideal-int +pkg syscall (freebsd-arm-cgo), const SIOCAIFADDR = 2151704858 +pkg syscall (freebsd-arm-cgo), const SIOCGIFSTATUS = 3274795323 +pkg syscall (freebsd-arm-cgo), const SIOCSIFPHYADDR = 2151704902 +pkg syscall (freebsd-arm-cgo), const SOCK_CLOEXEC = 268435456 +pkg syscall (freebsd-arm-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (freebsd-arm-cgo), const SOCK_NONBLOCK = 536870912 +pkg syscall (freebsd-arm-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (freebsd-arm-cgo), const SO_VENDOR = 2147483648 +pkg syscall (freebsd-arm-cgo), const SO_VENDOR ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT4 = 541 +pkg syscall (freebsd-arm-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_BINDAT = 538 +pkg syscall (freebsd-arm-cgo), const SYS_BINDAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETRIGHTS = 515 +pkg syscall (freebsd-arm-cgo), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGSAT = 540 +pkg syscall (freebsd-arm-cgo), const SYS_CHFLAGSAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_CONNECTAT = 539 +pkg syscall (freebsd-arm-cgo), const SYS_CONNECTAT ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PIPE2 = 542 +pkg syscall (freebsd-arm-cgo), const SYS_PIPE2 ideal-int +pkg syscall (freebsd-arm-cgo), const SYS_PROCCTL = 544 +pkg syscall (freebsd-arm-cgo), const SYS_PROCCTL ideal-int +pkg syscall (freebsd-arm-cgo), const SizeofBpfHdr = 32 +pkg syscall (freebsd-arm-cgo), const SizeofIfData = 96 +pkg syscall (freebsd-arm-cgo), const SizeofIfMsghdr = 112 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrDatalink = 54 +pkg syscall (freebsd-arm-cgo), const SizeofSockaddrUnix = 106 +pkg syscall (freebsd-arm-cgo), const TCP_VENDOR = 2147483648 +pkg syscall (freebsd-arm-cgo), const TCP_VENDOR ideal-int +pkg syscall (freebsd-arm-cgo), const TIOCTIMESTAMP = 1074820185 +pkg syscall (freebsd-arm-cgo), func Accept4(int, int) (int, Sockaddr, error) +pkg syscall (freebsd-arm-cgo), func Fchflags(int, int) error +pkg syscall (freebsd-arm-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (freebsd-arm-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (freebsd-arm-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-arm-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), type IfData struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), type Termios struct +pkg syscall (freebsd-arm-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (freebsd-arm-cgo), type Termios struct, Cflag uint32 +pkg syscall (freebsd-arm-cgo), type Termios struct, Iflag uint32 +pkg syscall (freebsd-arm-cgo), type Termios struct, Ispeed uint32 +pkg syscall (freebsd-arm-cgo), type Termios struct, Lflag uint32 +pkg syscall (freebsd-arm-cgo), type Termios struct, Oflag uint32 +pkg syscall (freebsd-arm-cgo), type Termios struct, Ospeed uint32 +pkg syscall (freebsd-arm-cgo), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-arm-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-386), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-386), type Flock_t struct +pkg syscall (linux-386), type Flock_t struct, Len int64 +pkg syscall (linux-386), type Flock_t struct, Pid int32 +pkg syscall (linux-386), type Flock_t struct, Start int64 +pkg syscall (linux-386), type Flock_t struct, Type int16 +pkg syscall (linux-386), type Flock_t struct, Whence int16 +pkg syscall (linux-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-386-cgo), type Flock_t struct +pkg syscall (linux-386-cgo), type Flock_t struct, Len int64 +pkg syscall (linux-386-cgo), type Flock_t struct, Pid int32 +pkg syscall (linux-386-cgo), type Flock_t struct, Start int64 +pkg syscall (linux-386-cgo), type Flock_t struct, Type int16 +pkg syscall (linux-386-cgo), type Flock_t struct, Whence int16 +pkg syscall (linux-amd64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-amd64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-amd64), type Flock_t struct +pkg syscall (linux-amd64), type Flock_t struct, Len int64 +pkg syscall (linux-amd64), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64), type Flock_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64), type Flock_t struct, Pid int32 +pkg syscall (linux-amd64), type Flock_t struct, Start int64 +pkg syscall (linux-amd64), type Flock_t struct, Type int16 +pkg syscall (linux-amd64), type Flock_t struct, Whence int16 +pkg syscall (linux-amd64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-amd64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-amd64-cgo), type Flock_t struct +pkg syscall (linux-amd64-cgo), type Flock_t struct, Len int64 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Pid int32 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Start int64 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Type int16 +pkg syscall (linux-amd64-cgo), type Flock_t struct, Whence int16 +pkg syscall (linux-arm), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-arm), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-arm), type Flock_t struct +pkg syscall (linux-arm), type Flock_t struct, Len int64 +pkg syscall (linux-arm), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-arm), type Flock_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-arm), type Flock_t struct, Pid int32 +pkg syscall (linux-arm), type Flock_t struct, Start int64 +pkg syscall (linux-arm), type Flock_t struct, Type int16 +pkg syscall (linux-arm), type Flock_t struct, Whence int16 +pkg syscall (linux-arm-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (linux-arm-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (linux-arm-cgo), type Flock_t struct +pkg syscall (linux-arm-cgo), type Flock_t struct, Len int64 +pkg syscall (linux-arm-cgo), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-arm-cgo), type Flock_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-arm-cgo), type Flock_t struct, Pid int32 +pkg syscall (linux-arm-cgo), type Flock_t struct, Start int64 +pkg syscall (linux-arm-cgo), type Flock_t struct, Type int16 +pkg syscall (linux-arm-cgo), type Flock_t struct, Whence int16 +pkg syscall (netbsd-386), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-386), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-386), const CLONE_FILES = 1024 +pkg syscall (netbsd-386), const CLONE_FILES ideal-int +pkg syscall (netbsd-386), const CLONE_FS = 512 +pkg syscall (netbsd-386), const CLONE_FS ideal-int +pkg syscall (netbsd-386), const CLONE_PID = 4096 +pkg syscall (netbsd-386), const CLONE_PID ideal-int +pkg syscall (netbsd-386), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-386), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-386), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-386), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-386), const CLONE_VFORK = 16384 +pkg syscall (netbsd-386), const CLONE_VFORK ideal-int +pkg syscall (netbsd-386), const CLONE_VM = 256 +pkg syscall (netbsd-386), const CLONE_VM ideal-int +pkg syscall (netbsd-386), const MADV_DONTNEED = 4 +pkg syscall (netbsd-386), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-386), const MADV_FREE = 6 +pkg syscall (netbsd-386), const MADV_FREE ideal-int +pkg syscall (netbsd-386), const MADV_NORMAL = 0 +pkg syscall (netbsd-386), const MADV_NORMAL ideal-int +pkg syscall (netbsd-386), const MADV_RANDOM = 1 +pkg syscall (netbsd-386), const MADV_RANDOM ideal-int +pkg syscall (netbsd-386), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-386), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-386), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-386), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-386), const MADV_WILLNEED = 3 +pkg syscall (netbsd-386), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-386), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-386), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-386), const MAP_ANON = 4096 +pkg syscall (netbsd-386), const MAP_ANON ideal-int +pkg syscall (netbsd-386), const MAP_FILE = 0 +pkg syscall (netbsd-386), const MAP_FILE ideal-int +pkg syscall (netbsd-386), const MAP_FIXED = 16 +pkg syscall (netbsd-386), const MAP_FIXED ideal-int +pkg syscall (netbsd-386), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-386), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT = 128 +pkg syscall (netbsd-386), const MAP_INHERIT ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-386), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-386), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-386), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-386), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-386), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-386), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-386), const MAP_NORESERVE = 64 +pkg syscall (netbsd-386), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-386), const MAP_PRIVATE = 2 +pkg syscall (netbsd-386), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-386), const MAP_RENAME = 32 +pkg syscall (netbsd-386), const MAP_RENAME ideal-int +pkg syscall (netbsd-386), const MAP_SHARED = 1 +pkg syscall (netbsd-386), const MAP_SHARED ideal-int +pkg syscall (netbsd-386), const MAP_STACK = 8192 +pkg syscall (netbsd-386), const MAP_STACK ideal-int +pkg syscall (netbsd-386), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-386), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-386), const MAP_WIRED = 2048 +pkg syscall (netbsd-386), const MAP_WIRED ideal-int +pkg syscall (netbsd-386), const MCL_CURRENT = 1 +pkg syscall (netbsd-386), const MCL_CURRENT ideal-int +pkg syscall (netbsd-386), const MCL_FUTURE = 2 +pkg syscall (netbsd-386), const MCL_FUTURE ideal-int +pkg syscall (netbsd-386), const MS_ASYNC = 1 +pkg syscall (netbsd-386), const MS_ASYNC ideal-int +pkg syscall (netbsd-386), const MS_INVALIDATE = 2 +pkg syscall (netbsd-386), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-386), const MS_SYNC = 4 +pkg syscall (netbsd-386), const MS_SYNC ideal-int +pkg syscall (netbsd-386), const PROT_EXEC = 4 +pkg syscall (netbsd-386), const PROT_EXEC ideal-int +pkg syscall (netbsd-386), const PROT_NONE = 0 +pkg syscall (netbsd-386), const PROT_NONE ideal-int +pkg syscall (netbsd-386), const PROT_READ = 1 +pkg syscall (netbsd-386), const PROT_READ ideal-int +pkg syscall (netbsd-386), const PROT_WRITE = 2 +pkg syscall (netbsd-386), const PROT_WRITE ideal-int +pkg syscall (netbsd-386), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-386), type Termios struct +pkg syscall (netbsd-386), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-386), type Termios struct, Cflag uint32 +pkg syscall (netbsd-386), type Termios struct, Iflag uint32 +pkg syscall (netbsd-386), type Termios struct, Ispeed int32 +pkg syscall (netbsd-386), type Termios struct, Lflag uint32 +pkg syscall (netbsd-386), type Termios struct, Oflag uint32 +pkg syscall (netbsd-386), type Termios struct, Ospeed int32 +pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_FILES = 1024 +pkg syscall (netbsd-386-cgo), const CLONE_FILES ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_FS = 512 +pkg syscall (netbsd-386-cgo), const CLONE_FS ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_PID = 4096 +pkg syscall (netbsd-386-cgo), const CLONE_PID ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-386-cgo), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-386-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_VFORK = 16384 +pkg syscall (netbsd-386-cgo), const CLONE_VFORK ideal-int +pkg syscall (netbsd-386-cgo), const CLONE_VM = 256 +pkg syscall (netbsd-386-cgo), const CLONE_VM ideal-int +pkg syscall (netbsd-386-cgo), const MADV_DONTNEED = 4 +pkg syscall (netbsd-386-cgo), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-386-cgo), const MADV_FREE = 6 +pkg syscall (netbsd-386-cgo), const MADV_FREE ideal-int +pkg syscall (netbsd-386-cgo), const MADV_NORMAL = 0 +pkg syscall (netbsd-386-cgo), const MADV_NORMAL ideal-int +pkg syscall (netbsd-386-cgo), const MADV_RANDOM = 1 +pkg syscall (netbsd-386-cgo), const MADV_RANDOM ideal-int +pkg syscall (netbsd-386-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-386-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-386-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-386-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-386-cgo), const MADV_WILLNEED = 3 +pkg syscall (netbsd-386-cgo), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-386-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-386-cgo), const MAP_ANON = 4096 +pkg syscall (netbsd-386-cgo), const MAP_ANON ideal-int +pkg syscall (netbsd-386-cgo), const MAP_FILE = 0 +pkg syscall (netbsd-386-cgo), const MAP_FILE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_FIXED = 16 +pkg syscall (netbsd-386-cgo), const MAP_FIXED ideal-int +pkg syscall (netbsd-386-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-386-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT = 128 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-386-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_NORESERVE = 64 +pkg syscall (netbsd-386-cgo), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_PRIVATE = 2 +pkg syscall (netbsd-386-cgo), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-386-cgo), const MAP_RENAME = 32 +pkg syscall (netbsd-386-cgo), const MAP_RENAME ideal-int +pkg syscall (netbsd-386-cgo), const MAP_SHARED = 1 +pkg syscall (netbsd-386-cgo), const MAP_SHARED ideal-int +pkg syscall (netbsd-386-cgo), const MAP_STACK = 8192 +pkg syscall (netbsd-386-cgo), const MAP_STACK ideal-int +pkg syscall (netbsd-386-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-386-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-386-cgo), const MAP_WIRED = 2048 +pkg syscall (netbsd-386-cgo), const MAP_WIRED ideal-int +pkg syscall (netbsd-386-cgo), const MCL_CURRENT = 1 +pkg syscall (netbsd-386-cgo), const MCL_CURRENT ideal-int +pkg syscall (netbsd-386-cgo), const MCL_FUTURE = 2 +pkg syscall (netbsd-386-cgo), const MCL_FUTURE ideal-int +pkg syscall (netbsd-386-cgo), const MS_ASYNC = 1 +pkg syscall (netbsd-386-cgo), const MS_ASYNC ideal-int +pkg syscall (netbsd-386-cgo), const MS_INVALIDATE = 2 +pkg syscall (netbsd-386-cgo), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-386-cgo), const MS_SYNC = 4 +pkg syscall (netbsd-386-cgo), const MS_SYNC ideal-int +pkg syscall (netbsd-386-cgo), const PROT_EXEC = 4 +pkg syscall (netbsd-386-cgo), const PROT_EXEC ideal-int +pkg syscall (netbsd-386-cgo), const PROT_NONE = 0 +pkg syscall (netbsd-386-cgo), const PROT_NONE ideal-int +pkg syscall (netbsd-386-cgo), const PROT_READ = 1 +pkg syscall (netbsd-386-cgo), const PROT_READ ideal-int +pkg syscall (netbsd-386-cgo), const PROT_WRITE = 2 +pkg syscall (netbsd-386-cgo), const PROT_WRITE ideal-int +pkg syscall (netbsd-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-386-cgo), type Termios struct +pkg syscall (netbsd-386-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-386-cgo), type Termios struct, Cflag uint32 +pkg syscall (netbsd-386-cgo), type Termios struct, Iflag uint32 +pkg syscall (netbsd-386-cgo), type Termios struct, Ispeed int32 +pkg syscall (netbsd-386-cgo), type Termios struct, Lflag uint32 +pkg syscall (netbsd-386-cgo), type Termios struct, Oflag uint32 +pkg syscall (netbsd-386-cgo), type Termios struct, Ospeed int32 +pkg syscall (netbsd-amd64), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-amd64), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-amd64), const CLONE_FILES = 1024 +pkg syscall (netbsd-amd64), const CLONE_FILES ideal-int +pkg syscall (netbsd-amd64), const CLONE_FS = 512 +pkg syscall (netbsd-amd64), const CLONE_FS ideal-int +pkg syscall (netbsd-amd64), const CLONE_PID = 4096 +pkg syscall (netbsd-amd64), const CLONE_PID ideal-int +pkg syscall (netbsd-amd64), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-amd64), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-amd64), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-amd64), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-amd64), const CLONE_VFORK = 16384 +pkg syscall (netbsd-amd64), const CLONE_VFORK ideal-int +pkg syscall (netbsd-amd64), const CLONE_VM = 256 +pkg syscall (netbsd-amd64), const CLONE_VM ideal-int +pkg syscall (netbsd-amd64), const MADV_DONTNEED = 4 +pkg syscall (netbsd-amd64), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-amd64), const MADV_FREE = 6 +pkg syscall (netbsd-amd64), const MADV_FREE ideal-int +pkg syscall (netbsd-amd64), const MADV_NORMAL = 0 +pkg syscall (netbsd-amd64), const MADV_NORMAL ideal-int +pkg syscall (netbsd-amd64), const MADV_RANDOM = 1 +pkg syscall (netbsd-amd64), const MADV_RANDOM ideal-int +pkg syscall (netbsd-amd64), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-amd64), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-amd64), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-amd64), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-amd64), const MADV_WILLNEED = 3 +pkg syscall (netbsd-amd64), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-amd64), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-amd64), const MAP_ANON = 4096 +pkg syscall (netbsd-amd64), const MAP_ANON ideal-int +pkg syscall (netbsd-amd64), const MAP_FILE = 0 +pkg syscall (netbsd-amd64), const MAP_FILE ideal-int +pkg syscall (netbsd-amd64), const MAP_FIXED = 16 +pkg syscall (netbsd-amd64), const MAP_FIXED ideal-int +pkg syscall (netbsd-amd64), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-amd64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT = 128 +pkg syscall (netbsd-amd64), const MAP_INHERIT ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-amd64), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-amd64), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-amd64), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-amd64), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-amd64), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-amd64), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-amd64), const MAP_NORESERVE = 64 +pkg syscall (netbsd-amd64), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-amd64), const MAP_PRIVATE = 2 +pkg syscall (netbsd-amd64), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-amd64), const MAP_RENAME = 32 +pkg syscall (netbsd-amd64), const MAP_RENAME ideal-int +pkg syscall (netbsd-amd64), const MAP_SHARED = 1 +pkg syscall (netbsd-amd64), const MAP_SHARED ideal-int +pkg syscall (netbsd-amd64), const MAP_STACK = 8192 +pkg syscall (netbsd-amd64), const MAP_STACK ideal-int +pkg syscall (netbsd-amd64), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-amd64), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-amd64), const MAP_WIRED = 2048 +pkg syscall (netbsd-amd64), const MAP_WIRED ideal-int +pkg syscall (netbsd-amd64), const MCL_CURRENT = 1 +pkg syscall (netbsd-amd64), const MCL_CURRENT ideal-int +pkg syscall (netbsd-amd64), const MCL_FUTURE = 2 +pkg syscall (netbsd-amd64), const MCL_FUTURE ideal-int +pkg syscall (netbsd-amd64), const MS_ASYNC = 1 +pkg syscall (netbsd-amd64), const MS_ASYNC ideal-int +pkg syscall (netbsd-amd64), const MS_INVALIDATE = 2 +pkg syscall (netbsd-amd64), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-amd64), const MS_SYNC = 4 +pkg syscall (netbsd-amd64), const MS_SYNC ideal-int +pkg syscall (netbsd-amd64), const PROT_EXEC = 4 +pkg syscall (netbsd-amd64), const PROT_EXEC ideal-int +pkg syscall (netbsd-amd64), const PROT_NONE = 0 +pkg syscall (netbsd-amd64), const PROT_NONE ideal-int +pkg syscall (netbsd-amd64), const PROT_READ = 1 +pkg syscall (netbsd-amd64), const PROT_READ ideal-int +pkg syscall (netbsd-amd64), const PROT_WRITE = 2 +pkg syscall (netbsd-amd64), const PROT_WRITE ideal-int +pkg syscall (netbsd-amd64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-amd64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-amd64), type Termios struct +pkg syscall (netbsd-amd64), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-amd64), type Termios struct, Cflag uint32 +pkg syscall (netbsd-amd64), type Termios struct, Iflag uint32 +pkg syscall (netbsd-amd64), type Termios struct, Ispeed int32 +pkg syscall (netbsd-amd64), type Termios struct, Lflag uint32 +pkg syscall (netbsd-amd64), type Termios struct, Oflag uint32 +pkg syscall (netbsd-amd64), type Termios struct, Ospeed int32 +pkg syscall (netbsd-amd64-cgo), const CLONE_CSIGNAL = 255 +pkg syscall (netbsd-amd64-cgo), const CLONE_CSIGNAL ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_FILES = 1024 +pkg syscall (netbsd-amd64-cgo), const CLONE_FILES ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_FS = 512 +pkg syscall (netbsd-amd64-cgo), const CLONE_FS ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_PID = 4096 +pkg syscall (netbsd-amd64-cgo), const CLONE_PID ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_PTRACE = 8192 +pkg syscall (netbsd-amd64-cgo), const CLONE_PTRACE ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_SIGHAND = 2048 +pkg syscall (netbsd-amd64-cgo), const CLONE_SIGHAND ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_VFORK = 16384 +pkg syscall (netbsd-amd64-cgo), const CLONE_VFORK ideal-int +pkg syscall (netbsd-amd64-cgo), const CLONE_VM = 256 +pkg syscall (netbsd-amd64-cgo), const CLONE_VM ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_DONTNEED = 4 +pkg syscall (netbsd-amd64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_FREE = 6 +pkg syscall (netbsd-amd64-cgo), const MADV_FREE ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_NORMAL = 0 +pkg syscall (netbsd-amd64-cgo), const MADV_NORMAL ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_RANDOM = 1 +pkg syscall (netbsd-amd64-cgo), const MADV_RANDOM ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-amd64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-amd64-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-amd64-cgo), const MADV_WILLNEED = 3 +pkg syscall (netbsd-amd64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-amd64-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_ANON = 4096 +pkg syscall (netbsd-amd64-cgo), const MAP_ANON ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_FILE = 0 +pkg syscall (netbsd-amd64-cgo), const MAP_FILE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_FIXED = 16 +pkg syscall (netbsd-amd64-cgo), const MAP_FIXED ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-amd64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT = 128 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-amd64-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_NORESERVE = 64 +pkg syscall (netbsd-amd64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_PRIVATE = 2 +pkg syscall (netbsd-amd64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_RENAME = 32 +pkg syscall (netbsd-amd64-cgo), const MAP_RENAME ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_SHARED = 1 +pkg syscall (netbsd-amd64-cgo), const MAP_SHARED ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_STACK = 8192 +pkg syscall (netbsd-amd64-cgo), const MAP_STACK ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-amd64-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-amd64-cgo), const MAP_WIRED = 2048 +pkg syscall (netbsd-amd64-cgo), const MAP_WIRED ideal-int +pkg syscall (netbsd-amd64-cgo), const MCL_CURRENT = 1 +pkg syscall (netbsd-amd64-cgo), const MCL_CURRENT ideal-int +pkg syscall (netbsd-amd64-cgo), const MCL_FUTURE = 2 +pkg syscall (netbsd-amd64-cgo), const MCL_FUTURE ideal-int +pkg syscall (netbsd-amd64-cgo), const MS_ASYNC = 1 +pkg syscall (netbsd-amd64-cgo), const MS_ASYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const MS_INVALIDATE = 2 +pkg syscall (netbsd-amd64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (netbsd-amd64-cgo), const MS_SYNC = 4 +pkg syscall (netbsd-amd64-cgo), const MS_SYNC ideal-int +pkg syscall (netbsd-amd64-cgo), const PROT_EXEC = 4 +pkg syscall (netbsd-amd64-cgo), const PROT_EXEC ideal-int +pkg syscall (netbsd-amd64-cgo), const PROT_NONE = 0 +pkg syscall (netbsd-amd64-cgo), const PROT_NONE ideal-int +pkg syscall (netbsd-amd64-cgo), const PROT_READ = 1 +pkg syscall (netbsd-amd64-cgo), const PROT_READ ideal-int +pkg syscall (netbsd-amd64-cgo), const PROT_WRITE = 2 +pkg syscall (netbsd-amd64-cgo), const PROT_WRITE ideal-int +pkg syscall (netbsd-amd64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-amd64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-amd64-cgo), type Termios struct +pkg syscall (netbsd-amd64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Cflag uint32 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Iflag uint32 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Ispeed int32 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Lflag uint32 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Oflag uint32 +pkg syscall (netbsd-amd64-cgo), type Termios struct, Ospeed int32 +pkg syscall (netbsd-arm), const MADV_DONTNEED = 4 +pkg syscall (netbsd-arm), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-arm), const MADV_FREE = 6 +pkg syscall (netbsd-arm), const MADV_FREE ideal-int +pkg syscall (netbsd-arm), const MADV_NORMAL = 0 +pkg syscall (netbsd-arm), const MADV_NORMAL ideal-int +pkg syscall (netbsd-arm), const MADV_RANDOM = 1 +pkg syscall (netbsd-arm), const MADV_RANDOM ideal-int +pkg syscall (netbsd-arm), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-arm), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-arm), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-arm), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-arm), const MADV_WILLNEED = 3 +pkg syscall (netbsd-arm), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-arm), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-arm), const MAP_ANON = 4096 +pkg syscall (netbsd-arm), const MAP_ANON ideal-int +pkg syscall (netbsd-arm), const MAP_FILE = 0 +pkg syscall (netbsd-arm), const MAP_FILE ideal-int +pkg syscall (netbsd-arm), const MAP_FIXED = 16 +pkg syscall (netbsd-arm), const MAP_FIXED ideal-int +pkg syscall (netbsd-arm), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-arm), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT = 128 +pkg syscall (netbsd-arm), const MAP_INHERIT ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-arm), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-arm), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-arm), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-arm), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-arm), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-arm), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-arm), const MAP_NORESERVE = 64 +pkg syscall (netbsd-arm), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-arm), const MAP_PRIVATE = 2 +pkg syscall (netbsd-arm), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-arm), const MAP_RENAME = 32 +pkg syscall (netbsd-arm), const MAP_RENAME ideal-int +pkg syscall (netbsd-arm), const MAP_SHARED = 1 +pkg syscall (netbsd-arm), const MAP_SHARED ideal-int +pkg syscall (netbsd-arm), const MAP_STACK = 8192 +pkg syscall (netbsd-arm), const MAP_STACK ideal-int +pkg syscall (netbsd-arm), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-arm), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-arm), const MAP_WIRED = 2048 +pkg syscall (netbsd-arm), const MAP_WIRED ideal-int +pkg syscall (netbsd-arm), const PROT_EXEC = 4 +pkg syscall (netbsd-arm), const PROT_EXEC ideal-int +pkg syscall (netbsd-arm), const PROT_NONE = 0 +pkg syscall (netbsd-arm), const PROT_NONE ideal-int +pkg syscall (netbsd-arm), const PROT_READ = 1 +pkg syscall (netbsd-arm), const PROT_READ ideal-int +pkg syscall (netbsd-arm), const PROT_WRITE = 2 +pkg syscall (netbsd-arm), const PROT_WRITE ideal-int +pkg syscall (netbsd-arm), const SizeofIfData = 136 +pkg syscall (netbsd-arm), func Fchflags(int, int) error +pkg syscall (netbsd-arm), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-arm), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-arm), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-arm), type Termios struct +pkg syscall (netbsd-arm), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-arm), type Termios struct, Cflag uint32 +pkg syscall (netbsd-arm), type Termios struct, Iflag uint32 +pkg syscall (netbsd-arm), type Termios struct, Ispeed int32 +pkg syscall (netbsd-arm), type Termios struct, Lflag uint32 +pkg syscall (netbsd-arm), type Termios struct, Oflag uint32 +pkg syscall (netbsd-arm), type Termios struct, Ospeed int32 +pkg syscall (netbsd-arm), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm-cgo), const MADV_DONTNEED = 4 +pkg syscall (netbsd-arm-cgo), const MADV_DONTNEED ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_FREE = 6 +pkg syscall (netbsd-arm-cgo), const MADV_FREE ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_NORMAL = 0 +pkg syscall (netbsd-arm-cgo), const MADV_NORMAL ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_RANDOM = 1 +pkg syscall (netbsd-arm-cgo), const MADV_RANDOM ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (netbsd-arm-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (netbsd-arm-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (netbsd-arm-cgo), const MADV_WILLNEED = 3 +pkg syscall (netbsd-arm-cgo), const MADV_WILLNEED ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_16MB = 402653184 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_16MB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_1TB = 671088640 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_1TB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_256TB = 805306368 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_256TB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_4GB = 536870912 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_4GB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_64KB = 268435456 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_64KB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_64PB = 939524096 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_64PB ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_MASK = -16777216 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_MASK ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_SHIFT = 24 +pkg syscall (netbsd-arm-cgo), const MAP_ALIGNMENT_SHIFT ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_ANON = 4096 +pkg syscall (netbsd-arm-cgo), const MAP_ANON ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_FILE = 0 +pkg syscall (netbsd-arm-cgo), const MAP_FILE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_FIXED = 16 +pkg syscall (netbsd-arm-cgo), const MAP_FIXED ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (netbsd-arm-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT = 128 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_DEFAULT = 1 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_DEFAULT ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (netbsd-arm-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_NORESERVE = 64 +pkg syscall (netbsd-arm-cgo), const MAP_NORESERVE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_PRIVATE = 2 +pkg syscall (netbsd-arm-cgo), const MAP_PRIVATE ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_RENAME = 32 +pkg syscall (netbsd-arm-cgo), const MAP_RENAME ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_SHARED = 1 +pkg syscall (netbsd-arm-cgo), const MAP_SHARED ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_STACK = 8192 +pkg syscall (netbsd-arm-cgo), const MAP_STACK ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (netbsd-arm-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (netbsd-arm-cgo), const MAP_WIRED = 2048 +pkg syscall (netbsd-arm-cgo), const MAP_WIRED ideal-int +pkg syscall (netbsd-arm-cgo), const PROT_EXEC = 4 +pkg syscall (netbsd-arm-cgo), const PROT_EXEC ideal-int +pkg syscall (netbsd-arm-cgo), const PROT_NONE = 0 +pkg syscall (netbsd-arm-cgo), const PROT_NONE ideal-int +pkg syscall (netbsd-arm-cgo), const PROT_READ = 1 +pkg syscall (netbsd-arm-cgo), const PROT_READ ideal-int +pkg syscall (netbsd-arm-cgo), const PROT_WRITE = 2 +pkg syscall (netbsd-arm-cgo), const PROT_WRITE ideal-int +pkg syscall (netbsd-arm-cgo), const SizeofIfData = 136 +pkg syscall (netbsd-arm-cgo), func Fchflags(int, int) error +pkg syscall (netbsd-arm-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (netbsd-arm-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (netbsd-arm-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (netbsd-arm-cgo), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (netbsd-arm-cgo), type Termios struct +pkg syscall (netbsd-arm-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (netbsd-arm-cgo), type Termios struct, Cflag uint32 +pkg syscall (netbsd-arm-cgo), type Termios struct, Iflag uint32 +pkg syscall (netbsd-arm-cgo), type Termios struct, Ispeed int32 +pkg syscall (netbsd-arm-cgo), type Termios struct, Lflag uint32 +pkg syscall (netbsd-arm-cgo), type Termios struct, Oflag uint32 +pkg syscall (netbsd-arm-cgo), type Termios struct, Ospeed int32 +pkg syscall (netbsd-arm-cgo), type Timespec struct, Pad_cgo_0 [4]uint8 +pkg syscall (netbsd-arm-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-386), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (openbsd-386), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (openbsd-386), const IPPROTO_DIVERT_INIT = 2 +pkg syscall (openbsd-386), const IPPROTO_DIVERT_INIT ideal-int +pkg syscall (openbsd-386), const IPPROTO_DIVERT_RESP = 1 +pkg syscall (openbsd-386), const IPPROTO_DIVERT_RESP ideal-int +pkg syscall (openbsd-386), const IPV6_RECVDSTPORT = 64 +pkg syscall (openbsd-386), const IPV6_RECVDSTPORT ideal-int +pkg syscall (openbsd-386), const IP_DIVERTFL = 4130 +pkg syscall (openbsd-386), const IP_DIVERTFL ideal-int +pkg syscall (openbsd-386), const MADV_DONTNEED = 4 +pkg syscall (openbsd-386), const MADV_DONTNEED ideal-int +pkg syscall (openbsd-386), const MADV_FREE = 6 +pkg syscall (openbsd-386), const MADV_FREE ideal-int +pkg syscall (openbsd-386), const MADV_NORMAL = 0 +pkg syscall (openbsd-386), const MADV_NORMAL ideal-int +pkg syscall (openbsd-386), const MADV_RANDOM = 1 +pkg syscall (openbsd-386), const MADV_RANDOM ideal-int +pkg syscall (openbsd-386), const MADV_SEQUENTIAL = 2 +pkg syscall (openbsd-386), const MADV_SEQUENTIAL ideal-int +pkg syscall (openbsd-386), const MADV_SPACEAVAIL = 5 +pkg syscall (openbsd-386), const MADV_SPACEAVAIL ideal-int +pkg syscall (openbsd-386), const MADV_WILLNEED = 3 +pkg syscall (openbsd-386), const MADV_WILLNEED ideal-int +pkg syscall (openbsd-386), const MAP_ANON = 4096 +pkg syscall (openbsd-386), const MAP_ANON ideal-int +pkg syscall (openbsd-386), const MAP_COPY = 4 +pkg syscall (openbsd-386), const MAP_COPY ideal-int +pkg syscall (openbsd-386), const MAP_FILE = 0 +pkg syscall (openbsd-386), const MAP_FILE ideal-int +pkg syscall (openbsd-386), const MAP_FIXED = 16 +pkg syscall (openbsd-386), const MAP_FIXED ideal-int +pkg syscall (openbsd-386), const MAP_FLAGMASK = 8183 +pkg syscall (openbsd-386), const MAP_FLAGMASK ideal-int +pkg syscall (openbsd-386), const MAP_HASSEMAPHORE = 512 +pkg syscall (openbsd-386), const MAP_HASSEMAPHORE ideal-int +pkg syscall (openbsd-386), const MAP_INHERIT = 128 +pkg syscall (openbsd-386), const MAP_INHERIT ideal-int +pkg syscall (openbsd-386), const MAP_INHERIT_COPY = 1 +pkg syscall (openbsd-386), const MAP_INHERIT_COPY ideal-int +pkg syscall (openbsd-386), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (openbsd-386), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (openbsd-386), const MAP_INHERIT_NONE = 2 +pkg syscall (openbsd-386), const MAP_INHERIT_NONE ideal-int +pkg syscall (openbsd-386), const MAP_INHERIT_SHARE = 0 +pkg syscall (openbsd-386), const MAP_INHERIT_SHARE ideal-int +pkg syscall (openbsd-386), const MAP_NOEXTEND = 256 +pkg syscall (openbsd-386), const MAP_NOEXTEND ideal-int +pkg syscall (openbsd-386), const MAP_NORESERVE = 64 +pkg syscall (openbsd-386), const MAP_NORESERVE ideal-int +pkg syscall (openbsd-386), const MAP_PRIVATE = 2 +pkg syscall (openbsd-386), const MAP_PRIVATE ideal-int +pkg syscall (openbsd-386), const MAP_RENAME = 32 +pkg syscall (openbsd-386), const MAP_RENAME ideal-int +pkg syscall (openbsd-386), const MAP_SHARED = 1 +pkg syscall (openbsd-386), const MAP_SHARED ideal-int +pkg syscall (openbsd-386), const MAP_TRYFIXED = 1024 +pkg syscall (openbsd-386), const MAP_TRYFIXED ideal-int +pkg syscall (openbsd-386), const MCL_CURRENT = 1 +pkg syscall (openbsd-386), const MCL_CURRENT ideal-int +pkg syscall (openbsd-386), const MCL_FUTURE = 2 +pkg syscall (openbsd-386), const MCL_FUTURE ideal-int +pkg syscall (openbsd-386), const MS_ASYNC = 1 +pkg syscall (openbsd-386), const MS_ASYNC ideal-int +pkg syscall (openbsd-386), const MS_INVALIDATE = 4 +pkg syscall (openbsd-386), const MS_INVALIDATE ideal-int +pkg syscall (openbsd-386), const MS_SYNC = 2 +pkg syscall (openbsd-386), const MS_SYNC ideal-int +pkg syscall (openbsd-386), const PROT_EXEC = 4 +pkg syscall (openbsd-386), const PROT_EXEC ideal-int +pkg syscall (openbsd-386), const PROT_NONE = 0 +pkg syscall (openbsd-386), const PROT_NONE ideal-int +pkg syscall (openbsd-386), const PROT_READ = 1 +pkg syscall (openbsd-386), const PROT_READ ideal-int +pkg syscall (openbsd-386), const PROT_WRITE = 2 +pkg syscall (openbsd-386), const PROT_WRITE ideal-int +pkg syscall (openbsd-386), const RTF_FMASK = 1112072 +pkg syscall (openbsd-386), const RTM_VERSION = 5 +pkg syscall (openbsd-386), const SIOCBRDGDADDR = 2166909255 +pkg syscall (openbsd-386), const SIOCBRDGGPARAM = 3225184600 +pkg syscall (openbsd-386), const SIOCBRDGSADDR = 3240651076 +pkg syscall (openbsd-386), const SIOCGETVLAN = 3223349648 +pkg syscall (openbsd-386), const SIOCGETVLAN ideal-int +pkg syscall (openbsd-386), const SIOCGIFHARDMTU = 3223349669 +pkg syscall (openbsd-386), const SIOCGIFHARDMTU ideal-int +pkg syscall (openbsd-386), const SIOCGLIFPHYTTL = 3223349673 +pkg syscall (openbsd-386), const SIOCGLIFPHYTTL ideal-int +pkg syscall (openbsd-386), const SIOCGSPPPPARAMS = 3223349652 +pkg syscall (openbsd-386), const SIOCGSPPPPARAMS ideal-int +pkg syscall (openbsd-386), const SIOCGVNETID = 3223349671 +pkg syscall (openbsd-386), const SIOCGVNETID ideal-int +pkg syscall (openbsd-386), const SIOCSETVLAN = 2149607823 +pkg syscall (openbsd-386), const SIOCSETVLAN ideal-int +pkg syscall (openbsd-386), const SIOCSLIFPHYTTL = 2149607848 +pkg syscall (openbsd-386), const SIOCSLIFPHYTTL ideal-int +pkg syscall (openbsd-386), const SIOCSSPPPPARAMS = 2149607827 +pkg syscall (openbsd-386), const SIOCSSPPPPARAMS ideal-int +pkg syscall (openbsd-386), const SIOCSVNETID = 2149607846 +pkg syscall (openbsd-386), const SIOCSVNETID ideal-int +pkg syscall (openbsd-386), const SYS_CLOCK_GETRES = 89 +pkg syscall (openbsd-386), const SYS_CLOCK_GETTIME = 87 +pkg syscall (openbsd-386), const SYS_CLOCK_SETTIME = 88 +pkg syscall (openbsd-386), const SYS_FHSTATFS = 65 +pkg syscall (openbsd-386), const SYS_FSTAT = 53 +pkg syscall (openbsd-386), const SYS_FSTATAT = 42 +pkg syscall (openbsd-386), const SYS_FSTATFS = 64 +pkg syscall (openbsd-386), const SYS_FUTIMENS = 85 +pkg syscall (openbsd-386), const SYS_FUTIMES = 77 +pkg syscall (openbsd-386), const SYS_GETDENTS = 99 +pkg syscall (openbsd-386), const SYS_GETDENTS ideal-int +pkg syscall (openbsd-386), const SYS_GETFSSTAT = 62 +pkg syscall (openbsd-386), const SYS_GETITIMER = 70 +pkg syscall (openbsd-386), const SYS_GETRUSAGE = 19 +pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 67 +pkg syscall (openbsd-386), const SYS_KEVENT = 72 +pkg syscall (openbsd-386), const SYS_LSTAT = 40 +pkg syscall (openbsd-386), const SYS_NANOSLEEP = 91 +pkg syscall (openbsd-386), const SYS_PPOLL = 109 +pkg syscall (openbsd-386), const SYS_PPOLL ideal-int +pkg syscall (openbsd-386), const SYS_PSELECT = 110 +pkg syscall (openbsd-386), const SYS_PSELECT ideal-int +pkg syscall (openbsd-386), const SYS_SELECT = 71 +pkg syscall (openbsd-386), const SYS_SETITIMER = 69 +pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY = 68 +pkg syscall (openbsd-386), const SYS_STAT = 38 +pkg syscall (openbsd-386), const SYS_STATFS = 63 +pkg syscall (openbsd-386), const SYS_UTIMENSAT = 84 +pkg syscall (openbsd-386), const SYS_UTIMES = 76 +pkg syscall (openbsd-386), const SYS_UTRACE = 209 +pkg syscall (openbsd-386), const SYS_UTRACE ideal-int +pkg syscall (openbsd-386), const SYS_WAIT4 = 11 +pkg syscall (openbsd-386), const SYS___THRSLEEP = 94 +pkg syscall (openbsd-386), const SizeofIfData = 212 +pkg syscall (openbsd-386), const SizeofIfMsghdr = 236 +pkg syscall (openbsd-386), const SizeofRtMetrics = 56 +pkg syscall (openbsd-386), const SizeofRtMsghdr = 96 +pkg syscall (openbsd-386), const TCP_NOPUSH = 16 +pkg syscall (openbsd-386), const TCP_NOPUSH ideal-int +pkg syscall (openbsd-386), const TIOCGSID = 1074033763 +pkg syscall (openbsd-386), const TIOCGSID ideal-int +pkg syscall (openbsd-386), const TIOCGTSTAMP = 1074558043 +pkg syscall (openbsd-386), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (openbsd-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (openbsd-386), type Dirent struct, Fileno uint64 +pkg syscall (openbsd-386), type Dirent struct, Off int64 +pkg syscall (openbsd-386), type Dirent struct, X__d_padding [4]uint8 +pkg syscall (openbsd-386), type FdSet struct, Bits [32]uint32 +pkg syscall (openbsd-386), type Kevent_t struct, Data int64 +pkg syscall (openbsd-386), type Mclpool struct, Grown int32 +pkg syscall (openbsd-386), type RtMetrics struct, Expire int64 +pkg syscall (openbsd-386), type RtMetrics struct, Pad uint32 +pkg syscall (openbsd-386), type Stat_t struct, Ino uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint64 +pkg syscall (openbsd-386), type Statfs_t struct, F_mntfromspec [90]int8 +pkg syscall (openbsd-386), type Statfs_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-386), type Termios struct +pkg syscall (openbsd-386), type Termios struct, Cc [20]uint8 +pkg syscall (openbsd-386), type Termios struct, Cflag uint32 +pkg syscall (openbsd-386), type Termios struct, Iflag uint32 +pkg syscall (openbsd-386), type Termios struct, Ispeed int32 +pkg syscall (openbsd-386), type Termios struct, Lflag uint32 +pkg syscall (openbsd-386), type Termios struct, Oflag uint32 +pkg syscall (openbsd-386), type Termios struct, Ospeed int32 +pkg syscall (openbsd-386), type Timespec struct, Sec int64 +pkg syscall (openbsd-386), type Timeval struct, Sec int64 +pkg syscall (openbsd-386-cgo), const BIOCGRTIMEOUT = 1074545262 +pkg syscall (openbsd-386-cgo), const BIOCSRTIMEOUT = 2148287085 +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT_INIT = 2 +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT_INIT ideal-int +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT_RESP = 1 +pkg syscall (openbsd-386-cgo), const IPPROTO_DIVERT_RESP ideal-int +pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTPORT = 64 +pkg syscall (openbsd-386-cgo), const IPV6_RECVDSTPORT ideal-int +pkg syscall (openbsd-386-cgo), const IP_DIVERTFL = 4130 +pkg syscall (openbsd-386-cgo), const IP_DIVERTFL ideal-int +pkg syscall (openbsd-386-cgo), const MADV_DONTNEED = 4 +pkg syscall (openbsd-386-cgo), const MADV_DONTNEED ideal-int +pkg syscall (openbsd-386-cgo), const MADV_FREE = 6 +pkg syscall (openbsd-386-cgo), const MADV_FREE ideal-int +pkg syscall (openbsd-386-cgo), const MADV_NORMAL = 0 +pkg syscall (openbsd-386-cgo), const MADV_NORMAL ideal-int +pkg syscall (openbsd-386-cgo), const MADV_RANDOM = 1 +pkg syscall (openbsd-386-cgo), const MADV_RANDOM ideal-int +pkg syscall (openbsd-386-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (openbsd-386-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (openbsd-386-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (openbsd-386-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (openbsd-386-cgo), const MADV_WILLNEED = 3 +pkg syscall (openbsd-386-cgo), const MADV_WILLNEED ideal-int +pkg syscall (openbsd-386-cgo), const MAP_ANON = 4096 +pkg syscall (openbsd-386-cgo), const MAP_ANON ideal-int +pkg syscall (openbsd-386-cgo), const MAP_COPY = 4 +pkg syscall (openbsd-386-cgo), const MAP_COPY ideal-int +pkg syscall (openbsd-386-cgo), const MAP_FILE = 0 +pkg syscall (openbsd-386-cgo), const MAP_FILE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_FIXED = 16 +pkg syscall (openbsd-386-cgo), const MAP_FIXED ideal-int +pkg syscall (openbsd-386-cgo), const MAP_FLAGMASK = 8183 +pkg syscall (openbsd-386-cgo), const MAP_FLAGMASK ideal-int +pkg syscall (openbsd-386-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (openbsd-386-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_INHERIT = 128 +pkg syscall (openbsd-386-cgo), const MAP_INHERIT ideal-int +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (openbsd-386-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_NOEXTEND = 256 +pkg syscall (openbsd-386-cgo), const MAP_NOEXTEND ideal-int +pkg syscall (openbsd-386-cgo), const MAP_NORESERVE = 64 +pkg syscall (openbsd-386-cgo), const MAP_NORESERVE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_PRIVATE = 2 +pkg syscall (openbsd-386-cgo), const MAP_PRIVATE ideal-int +pkg syscall (openbsd-386-cgo), const MAP_RENAME = 32 +pkg syscall (openbsd-386-cgo), const MAP_RENAME ideal-int +pkg syscall (openbsd-386-cgo), const MAP_SHARED = 1 +pkg syscall (openbsd-386-cgo), const MAP_SHARED ideal-int +pkg syscall (openbsd-386-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (openbsd-386-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (openbsd-386-cgo), const MCL_CURRENT = 1 +pkg syscall (openbsd-386-cgo), const MCL_CURRENT ideal-int +pkg syscall (openbsd-386-cgo), const MCL_FUTURE = 2 +pkg syscall (openbsd-386-cgo), const MCL_FUTURE ideal-int +pkg syscall (openbsd-386-cgo), const MS_ASYNC = 1 +pkg syscall (openbsd-386-cgo), const MS_ASYNC ideal-int +pkg syscall (openbsd-386-cgo), const MS_INVALIDATE = 4 +pkg syscall (openbsd-386-cgo), const MS_INVALIDATE ideal-int +pkg syscall (openbsd-386-cgo), const MS_SYNC = 2 +pkg syscall (openbsd-386-cgo), const MS_SYNC ideal-int +pkg syscall (openbsd-386-cgo), const PROT_EXEC = 4 +pkg syscall (openbsd-386-cgo), const PROT_EXEC ideal-int +pkg syscall (openbsd-386-cgo), const PROT_NONE = 0 +pkg syscall (openbsd-386-cgo), const PROT_NONE ideal-int +pkg syscall (openbsd-386-cgo), const PROT_READ = 1 +pkg syscall (openbsd-386-cgo), const PROT_READ ideal-int +pkg syscall (openbsd-386-cgo), const PROT_WRITE = 2 +pkg syscall (openbsd-386-cgo), const PROT_WRITE ideal-int +pkg syscall (openbsd-386-cgo), const RTF_FMASK = 1112072 +pkg syscall (openbsd-386-cgo), const RTM_VERSION = 5 +pkg syscall (openbsd-386-cgo), const SIOCBRDGDADDR = 2166909255 +pkg syscall (openbsd-386-cgo), const SIOCBRDGGPARAM = 3225184600 +pkg syscall (openbsd-386-cgo), const SIOCBRDGSADDR = 3240651076 +pkg syscall (openbsd-386-cgo), const SIOCGETVLAN = 3223349648 +pkg syscall (openbsd-386-cgo), const SIOCGETVLAN ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGIFHARDMTU = 3223349669 +pkg syscall (openbsd-386-cgo), const SIOCGIFHARDMTU ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYTTL = 3223349673 +pkg syscall (openbsd-386-cgo), const SIOCGLIFPHYTTL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGSPPPPARAMS = 3223349652 +pkg syscall (openbsd-386-cgo), const SIOCGSPPPPARAMS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCGVNETID = 3223349671 +pkg syscall (openbsd-386-cgo), const SIOCGVNETID ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSETVLAN = 2149607823 +pkg syscall (openbsd-386-cgo), const SIOCSETVLAN ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYTTL = 2149607848 +pkg syscall (openbsd-386-cgo), const SIOCSLIFPHYTTL ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSSPPPPARAMS = 2149607827 +pkg syscall (openbsd-386-cgo), const SIOCSSPPPPARAMS ideal-int +pkg syscall (openbsd-386-cgo), const SIOCSVNETID = 2149607846 +pkg syscall (openbsd-386-cgo), const SIOCSVNETID ideal-int +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETRES = 89 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_GETTIME = 87 +pkg syscall (openbsd-386-cgo), const SYS_CLOCK_SETTIME = 88 +pkg syscall (openbsd-386-cgo), const SYS_FHSTATFS = 65 +pkg syscall (openbsd-386-cgo), const SYS_FSTAT = 53 +pkg syscall (openbsd-386-cgo), const SYS_FSTATAT = 42 +pkg syscall (openbsd-386-cgo), const SYS_FSTATFS = 64 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMENS = 85 +pkg syscall (openbsd-386-cgo), const SYS_FUTIMES = 77 +pkg syscall (openbsd-386-cgo), const SYS_GETDENTS = 99 +pkg syscall (openbsd-386-cgo), const SYS_GETDENTS ideal-int +pkg syscall (openbsd-386-cgo), const SYS_GETFSSTAT = 62 +pkg syscall (openbsd-386-cgo), const SYS_GETITIMER = 70 +pkg syscall (openbsd-386-cgo), const SYS_GETRUSAGE = 19 +pkg syscall (openbsd-386-cgo), const SYS_GETTIMEOFDAY = 67 +pkg syscall (openbsd-386-cgo), const SYS_KEVENT = 72 +pkg syscall (openbsd-386-cgo), const SYS_LSTAT = 40 +pkg syscall (openbsd-386-cgo), const SYS_NANOSLEEP = 91 +pkg syscall (openbsd-386-cgo), const SYS_PPOLL = 109 +pkg syscall (openbsd-386-cgo), const SYS_PPOLL ideal-int +pkg syscall (openbsd-386-cgo), const SYS_PSELECT = 110 +pkg syscall (openbsd-386-cgo), const SYS_PSELECT ideal-int +pkg syscall (openbsd-386-cgo), const SYS_SELECT = 71 +pkg syscall (openbsd-386-cgo), const SYS_SETITIMER = 69 +pkg syscall (openbsd-386-cgo), const SYS_SETTIMEOFDAY = 68 +pkg syscall (openbsd-386-cgo), const SYS_STAT = 38 +pkg syscall (openbsd-386-cgo), const SYS_STATFS = 63 +pkg syscall (openbsd-386-cgo), const SYS_UTIMENSAT = 84 +pkg syscall (openbsd-386-cgo), const SYS_UTIMES = 76 +pkg syscall (openbsd-386-cgo), const SYS_UTRACE = 209 +pkg syscall (openbsd-386-cgo), const SYS_UTRACE ideal-int +pkg syscall (openbsd-386-cgo), const SYS_WAIT4 = 11 +pkg syscall (openbsd-386-cgo), const SYS___THRSLEEP = 94 +pkg syscall (openbsd-386-cgo), const SizeofIfData = 212 +pkg syscall (openbsd-386-cgo), const SizeofIfMsghdr = 236 +pkg syscall (openbsd-386-cgo), const SizeofRtMetrics = 56 +pkg syscall (openbsd-386-cgo), const SizeofRtMsghdr = 96 +pkg syscall (openbsd-386-cgo), const TCP_NOPUSH = 16 +pkg syscall (openbsd-386-cgo), const TCP_NOPUSH ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGSID = 1074033763 +pkg syscall (openbsd-386-cgo), const TIOCGSID ideal-int +pkg syscall (openbsd-386-cgo), const TIOCGTSTAMP = 1074558043 +pkg syscall (openbsd-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (openbsd-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (openbsd-386-cgo), type Dirent struct, Fileno uint64 +pkg syscall (openbsd-386-cgo), type Dirent struct, Off int64 +pkg syscall (openbsd-386-cgo), type Dirent struct, X__d_padding [4]uint8 +pkg syscall (openbsd-386-cgo), type FdSet struct, Bits [32]uint32 +pkg syscall (openbsd-386-cgo), type Kevent_t struct, Data int64 +pkg syscall (openbsd-386-cgo), type Mclpool struct, Grown int32 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Expire int64 +pkg syscall (openbsd-386-cgo), type RtMetrics struct, Pad uint32 +pkg syscall (openbsd-386-cgo), type Stat_t struct, Ino uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_ctime uint64 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, F_mntfromspec [90]int8 +pkg syscall (openbsd-386-cgo), type Statfs_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (openbsd-386-cgo), type Termios struct +pkg syscall (openbsd-386-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (openbsd-386-cgo), type Termios struct, Cflag uint32 +pkg syscall (openbsd-386-cgo), type Termios struct, Iflag uint32 +pkg syscall (openbsd-386-cgo), type Termios struct, Ispeed int32 +pkg syscall (openbsd-386-cgo), type Termios struct, Lflag uint32 +pkg syscall (openbsd-386-cgo), type Termios struct, Oflag uint32 +pkg syscall (openbsd-386-cgo), type Termios struct, Ospeed int32 +pkg syscall (openbsd-386-cgo), type Timespec struct, Sec int64 +pkg syscall (openbsd-386-cgo), type Timeval struct, Sec int64 +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT_INIT = 2 +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT_INIT ideal-int +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT_RESP = 1 +pkg syscall (openbsd-amd64), const IPPROTO_DIVERT_RESP ideal-int +pkg syscall (openbsd-amd64), const IPV6_RECVDSTPORT = 64 +pkg syscall (openbsd-amd64), const IPV6_RECVDSTPORT ideal-int +pkg syscall (openbsd-amd64), const IP_DIVERTFL = 4130 +pkg syscall (openbsd-amd64), const IP_DIVERTFL ideal-int +pkg syscall (openbsd-amd64), const MADV_DONTNEED = 4 +pkg syscall (openbsd-amd64), const MADV_DONTNEED ideal-int +pkg syscall (openbsd-amd64), const MADV_FREE = 6 +pkg syscall (openbsd-amd64), const MADV_FREE ideal-int +pkg syscall (openbsd-amd64), const MADV_NORMAL = 0 +pkg syscall (openbsd-amd64), const MADV_NORMAL ideal-int +pkg syscall (openbsd-amd64), const MADV_RANDOM = 1 +pkg syscall (openbsd-amd64), const MADV_RANDOM ideal-int +pkg syscall (openbsd-amd64), const MADV_SEQUENTIAL = 2 +pkg syscall (openbsd-amd64), const MADV_SEQUENTIAL ideal-int +pkg syscall (openbsd-amd64), const MADV_SPACEAVAIL = 5 +pkg syscall (openbsd-amd64), const MADV_SPACEAVAIL ideal-int +pkg syscall (openbsd-amd64), const MADV_WILLNEED = 3 +pkg syscall (openbsd-amd64), const MADV_WILLNEED ideal-int +pkg syscall (openbsd-amd64), const MAP_ANON = 4096 +pkg syscall (openbsd-amd64), const MAP_ANON ideal-int +pkg syscall (openbsd-amd64), const MAP_COPY = 4 +pkg syscall (openbsd-amd64), const MAP_COPY ideal-int +pkg syscall (openbsd-amd64), const MAP_FILE = 0 +pkg syscall (openbsd-amd64), const MAP_FILE ideal-int +pkg syscall (openbsd-amd64), const MAP_FIXED = 16 +pkg syscall (openbsd-amd64), const MAP_FIXED ideal-int +pkg syscall (openbsd-amd64), const MAP_FLAGMASK = 8183 +pkg syscall (openbsd-amd64), const MAP_FLAGMASK ideal-int +pkg syscall (openbsd-amd64), const MAP_HASSEMAPHORE = 512 +pkg syscall (openbsd-amd64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (openbsd-amd64), const MAP_INHERIT = 128 +pkg syscall (openbsd-amd64), const MAP_INHERIT ideal-int +pkg syscall (openbsd-amd64), const MAP_INHERIT_COPY = 1 +pkg syscall (openbsd-amd64), const MAP_INHERIT_COPY ideal-int +pkg syscall (openbsd-amd64), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (openbsd-amd64), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (openbsd-amd64), const MAP_INHERIT_NONE = 2 +pkg syscall (openbsd-amd64), const MAP_INHERIT_NONE ideal-int +pkg syscall (openbsd-amd64), const MAP_INHERIT_SHARE = 0 +pkg syscall (openbsd-amd64), const MAP_INHERIT_SHARE ideal-int +pkg syscall (openbsd-amd64), const MAP_NOEXTEND = 256 +pkg syscall (openbsd-amd64), const MAP_NOEXTEND ideal-int +pkg syscall (openbsd-amd64), const MAP_NORESERVE = 64 +pkg syscall (openbsd-amd64), const MAP_NORESERVE ideal-int +pkg syscall (openbsd-amd64), const MAP_PRIVATE = 2 +pkg syscall (openbsd-amd64), const MAP_PRIVATE ideal-int +pkg syscall (openbsd-amd64), const MAP_RENAME = 32 +pkg syscall (openbsd-amd64), const MAP_RENAME ideal-int +pkg syscall (openbsd-amd64), const MAP_SHARED = 1 +pkg syscall (openbsd-amd64), const MAP_SHARED ideal-int +pkg syscall (openbsd-amd64), const MAP_TRYFIXED = 1024 +pkg syscall (openbsd-amd64), const MAP_TRYFIXED ideal-int +pkg syscall (openbsd-amd64), const MCL_CURRENT = 1 +pkg syscall (openbsd-amd64), const MCL_CURRENT ideal-int +pkg syscall (openbsd-amd64), const MCL_FUTURE = 2 +pkg syscall (openbsd-amd64), const MCL_FUTURE ideal-int +pkg syscall (openbsd-amd64), const MS_ASYNC = 1 +pkg syscall (openbsd-amd64), const MS_ASYNC ideal-int +pkg syscall (openbsd-amd64), const MS_INVALIDATE = 4 +pkg syscall (openbsd-amd64), const MS_INVALIDATE ideal-int +pkg syscall (openbsd-amd64), const MS_SYNC = 2 +pkg syscall (openbsd-amd64), const MS_SYNC ideal-int +pkg syscall (openbsd-amd64), const PROT_EXEC = 4 +pkg syscall (openbsd-amd64), const PROT_EXEC ideal-int +pkg syscall (openbsd-amd64), const PROT_NONE = 0 +pkg syscall (openbsd-amd64), const PROT_NONE ideal-int +pkg syscall (openbsd-amd64), const PROT_READ = 1 +pkg syscall (openbsd-amd64), const PROT_READ ideal-int +pkg syscall (openbsd-amd64), const PROT_WRITE = 2 +pkg syscall (openbsd-amd64), const PROT_WRITE ideal-int +pkg syscall (openbsd-amd64), const RTF_FMASK = 1112072 +pkg syscall (openbsd-amd64), const RTM_VERSION = 5 +pkg syscall (openbsd-amd64), const SIOCBRDGDADDR = 2166909255 +pkg syscall (openbsd-amd64), const SIOCBRDGSADDR = 3240651076 +pkg syscall (openbsd-amd64), const SIOCGETVLAN = 3223349648 +pkg syscall (openbsd-amd64), const SIOCGETVLAN ideal-int +pkg syscall (openbsd-amd64), const SIOCGIFHARDMTU = 3223349669 +pkg syscall (openbsd-amd64), const SIOCGIFHARDMTU ideal-int +pkg syscall (openbsd-amd64), const SIOCGLIFPHYTTL = 3223349673 +pkg syscall (openbsd-amd64), const SIOCGLIFPHYTTL ideal-int +pkg syscall (openbsd-amd64), const SIOCGSPPPPARAMS = 3223349652 +pkg syscall (openbsd-amd64), const SIOCGSPPPPARAMS ideal-int +pkg syscall (openbsd-amd64), const SIOCGVNETID = 3223349671 +pkg syscall (openbsd-amd64), const SIOCGVNETID ideal-int +pkg syscall (openbsd-amd64), const SIOCSETVLAN = 2149607823 +pkg syscall (openbsd-amd64), const SIOCSETVLAN ideal-int +pkg syscall (openbsd-amd64), const SIOCSLIFPHYTTL = 2149607848 +pkg syscall (openbsd-amd64), const SIOCSLIFPHYTTL ideal-int +pkg syscall (openbsd-amd64), const SIOCSSPPPPARAMS = 2149607827 +pkg syscall (openbsd-amd64), const SIOCSSPPPPARAMS ideal-int +pkg syscall (openbsd-amd64), const SIOCSVNETID = 2149607846 +pkg syscall (openbsd-amd64), const SIOCSVNETID ideal-int +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETRES = 89 +pkg syscall (openbsd-amd64), const SYS_CLOCK_GETTIME = 87 +pkg syscall (openbsd-amd64), const SYS_CLOCK_SETTIME = 88 +pkg syscall (openbsd-amd64), const SYS_FHSTATFS = 65 +pkg syscall (openbsd-amd64), const SYS_FSTAT = 53 +pkg syscall (openbsd-amd64), const SYS_FSTATAT = 42 +pkg syscall (openbsd-amd64), const SYS_FSTATFS = 64 +pkg syscall (openbsd-amd64), const SYS_FUTIMENS = 85 +pkg syscall (openbsd-amd64), const SYS_FUTIMES = 77 +pkg syscall (openbsd-amd64), const SYS_GETDENTS = 99 +pkg syscall (openbsd-amd64), const SYS_GETDENTS ideal-int +pkg syscall (openbsd-amd64), const SYS_GETFSSTAT = 62 +pkg syscall (openbsd-amd64), const SYS_GETITIMER = 70 +pkg syscall (openbsd-amd64), const SYS_GETRUSAGE = 19 +pkg syscall (openbsd-amd64), const SYS_GETTIMEOFDAY = 67 +pkg syscall (openbsd-amd64), const SYS_KEVENT = 72 +pkg syscall (openbsd-amd64), const SYS_LSTAT = 40 +pkg syscall (openbsd-amd64), const SYS_NANOSLEEP = 91 +pkg syscall (openbsd-amd64), const SYS_PPOLL = 109 +pkg syscall (openbsd-amd64), const SYS_PPOLL ideal-int +pkg syscall (openbsd-amd64), const SYS_PSELECT = 110 +pkg syscall (openbsd-amd64), const SYS_PSELECT ideal-int +pkg syscall (openbsd-amd64), const SYS_SELECT = 71 +pkg syscall (openbsd-amd64), const SYS_SETITIMER = 69 +pkg syscall (openbsd-amd64), const SYS_SETTIMEOFDAY = 68 +pkg syscall (openbsd-amd64), const SYS_STAT = 38 +pkg syscall (openbsd-amd64), const SYS_STATFS = 63 +pkg syscall (openbsd-amd64), const SYS_UTIMENSAT = 84 +pkg syscall (openbsd-amd64), const SYS_UTIMES = 76 +pkg syscall (openbsd-amd64), const SYS_UTRACE = 209 +pkg syscall (openbsd-amd64), const SYS_UTRACE ideal-int +pkg syscall (openbsd-amd64), const SYS_WAIT4 = 11 +pkg syscall (openbsd-amd64), const SYS___THRSLEEP = 94 +pkg syscall (openbsd-amd64), const SizeofRtMetrics = 56 +pkg syscall (openbsd-amd64), const SizeofRtMsghdr = 96 +pkg syscall (openbsd-amd64), const TCP_NOPUSH = 16 +pkg syscall (openbsd-amd64), const TCP_NOPUSH ideal-int +pkg syscall (openbsd-amd64), const TIOCGSID = 1074033763 +pkg syscall (openbsd-amd64), const TIOCGSID ideal-int +pkg syscall (openbsd-amd64), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (openbsd-amd64), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint64 +pkg syscall (openbsd-amd64), type Dirent struct, Off int64 +pkg syscall (openbsd-amd64), type Dirent struct, X__d_padding [4]uint8 +pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]uint32 +pkg syscall (openbsd-amd64), type Kevent_t struct, Data int64 +pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint64 +pkg syscall (openbsd-amd64), type Mclpool struct, Grown int32 +pkg syscall (openbsd-amd64), type RtMetrics struct, Expire int64 +pkg syscall (openbsd-amd64), type RtMetrics struct, Pad uint32 +pkg syscall (openbsd-amd64), type Stat_t struct, Ino uint64 +pkg syscall (openbsd-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint64 +pkg syscall (openbsd-amd64), type Statfs_t struct, F_mntfromspec [90]int8 +pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [2]uint8 +pkg syscall (openbsd-amd64), type Termios struct +pkg syscall (openbsd-amd64), type Termios struct, Cc [20]uint8 +pkg syscall (openbsd-amd64), type Termios struct, Cflag uint32 +pkg syscall (openbsd-amd64), type Termios struct, Iflag uint32 +pkg syscall (openbsd-amd64), type Termios struct, Ispeed int32 +pkg syscall (openbsd-amd64), type Termios struct, Lflag uint32 +pkg syscall (openbsd-amd64), type Termios struct, Oflag uint32 +pkg syscall (openbsd-amd64), type Termios struct, Ospeed int32 +pkg syscall (openbsd-amd64), type Timespec struct, Sec int64 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT_INIT = 2 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT_INIT ideal-int +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT_RESP = 1 +pkg syscall (openbsd-amd64-cgo), const IPPROTO_DIVERT_RESP ideal-int +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTPORT = 64 +pkg syscall (openbsd-amd64-cgo), const IPV6_RECVDSTPORT ideal-int +pkg syscall (openbsd-amd64-cgo), const IP_DIVERTFL = 4130 +pkg syscall (openbsd-amd64-cgo), const IP_DIVERTFL ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_DONTNEED = 4 +pkg syscall (openbsd-amd64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_FREE = 6 +pkg syscall (openbsd-amd64-cgo), const MADV_FREE ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_NORMAL = 0 +pkg syscall (openbsd-amd64-cgo), const MADV_NORMAL ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_RANDOM = 1 +pkg syscall (openbsd-amd64-cgo), const MADV_RANDOM ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_SEQUENTIAL = 2 +pkg syscall (openbsd-amd64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_SPACEAVAIL = 5 +pkg syscall (openbsd-amd64-cgo), const MADV_SPACEAVAIL ideal-int +pkg syscall (openbsd-amd64-cgo), const MADV_WILLNEED = 3 +pkg syscall (openbsd-amd64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_ANON = 4096 +pkg syscall (openbsd-amd64-cgo), const MAP_ANON ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_COPY = 4 +pkg syscall (openbsd-amd64-cgo), const MAP_COPY ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_FILE = 0 +pkg syscall (openbsd-amd64-cgo), const MAP_FILE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_FIXED = 16 +pkg syscall (openbsd-amd64-cgo), const MAP_FIXED ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_FLAGMASK = 8183 +pkg syscall (openbsd-amd64-cgo), const MAP_FLAGMASK ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_HASSEMAPHORE = 512 +pkg syscall (openbsd-amd64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT = 128 +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_COPY = 1 +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_COPY ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_DONATE_COPY = 3 +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_DONATE_COPY ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_NONE = 2 +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_NONE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_SHARE = 0 +pkg syscall (openbsd-amd64-cgo), const MAP_INHERIT_SHARE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_NOEXTEND = 256 +pkg syscall (openbsd-amd64-cgo), const MAP_NOEXTEND ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_NORESERVE = 64 +pkg syscall (openbsd-amd64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_PRIVATE = 2 +pkg syscall (openbsd-amd64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_RENAME = 32 +pkg syscall (openbsd-amd64-cgo), const MAP_RENAME ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_SHARED = 1 +pkg syscall (openbsd-amd64-cgo), const MAP_SHARED ideal-int +pkg syscall (openbsd-amd64-cgo), const MAP_TRYFIXED = 1024 +pkg syscall (openbsd-amd64-cgo), const MAP_TRYFIXED ideal-int +pkg syscall (openbsd-amd64-cgo), const MCL_CURRENT = 1 +pkg syscall (openbsd-amd64-cgo), const MCL_CURRENT ideal-int +pkg syscall (openbsd-amd64-cgo), const MCL_FUTURE = 2 +pkg syscall (openbsd-amd64-cgo), const MCL_FUTURE ideal-int +pkg syscall (openbsd-amd64-cgo), const MS_ASYNC = 1 +pkg syscall (openbsd-amd64-cgo), const MS_ASYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const MS_INVALIDATE = 4 +pkg syscall (openbsd-amd64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (openbsd-amd64-cgo), const MS_SYNC = 2 +pkg syscall (openbsd-amd64-cgo), const MS_SYNC ideal-int +pkg syscall (openbsd-amd64-cgo), const PROT_EXEC = 4 +pkg syscall (openbsd-amd64-cgo), const PROT_EXEC ideal-int +pkg syscall (openbsd-amd64-cgo), const PROT_NONE = 0 +pkg syscall (openbsd-amd64-cgo), const PROT_NONE ideal-int +pkg syscall (openbsd-amd64-cgo), const PROT_READ = 1 +pkg syscall (openbsd-amd64-cgo), const PROT_READ ideal-int +pkg syscall (openbsd-amd64-cgo), const PROT_WRITE = 2 +pkg syscall (openbsd-amd64-cgo), const PROT_WRITE ideal-int +pkg syscall (openbsd-amd64-cgo), const RTF_FMASK = 1112072 +pkg syscall (openbsd-amd64-cgo), const RTM_VERSION = 5 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGDADDR = 2166909255 +pkg syscall (openbsd-amd64-cgo), const SIOCBRDGSADDR = 3240651076 +pkg syscall (openbsd-amd64-cgo), const SIOCGETVLAN = 3223349648 +pkg syscall (openbsd-amd64-cgo), const SIOCGETVLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGIFHARDMTU = 3223349669 +pkg syscall (openbsd-amd64-cgo), const SIOCGIFHARDMTU ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYTTL = 3223349673 +pkg syscall (openbsd-amd64-cgo), const SIOCGLIFPHYTTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGSPPPPARAMS = 3223349652 +pkg syscall (openbsd-amd64-cgo), const SIOCGSPPPPARAMS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCGVNETID = 3223349671 +pkg syscall (openbsd-amd64-cgo), const SIOCGVNETID ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSETVLAN = 2149607823 +pkg syscall (openbsd-amd64-cgo), const SIOCSETVLAN ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYTTL = 2149607848 +pkg syscall (openbsd-amd64-cgo), const SIOCSLIFPHYTTL ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSSPPPPARAMS = 2149607827 +pkg syscall (openbsd-amd64-cgo), const SIOCSSPPPPARAMS ideal-int +pkg syscall (openbsd-amd64-cgo), const SIOCSVNETID = 2149607846 +pkg syscall (openbsd-amd64-cgo), const SIOCSVNETID ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETRES = 89 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_GETTIME = 87 +pkg syscall (openbsd-amd64-cgo), const SYS_CLOCK_SETTIME = 88 +pkg syscall (openbsd-amd64-cgo), const SYS_FHSTATFS = 65 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTAT = 53 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATAT = 42 +pkg syscall (openbsd-amd64-cgo), const SYS_FSTATFS = 64 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMENS = 85 +pkg syscall (openbsd-amd64-cgo), const SYS_FUTIMES = 77 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDENTS = 99 +pkg syscall (openbsd-amd64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_GETFSSTAT = 62 +pkg syscall (openbsd-amd64-cgo), const SYS_GETITIMER = 70 +pkg syscall (openbsd-amd64-cgo), const SYS_GETRUSAGE = 19 +pkg syscall (openbsd-amd64-cgo), const SYS_GETTIMEOFDAY = 67 +pkg syscall (openbsd-amd64-cgo), const SYS_KEVENT = 72 +pkg syscall (openbsd-amd64-cgo), const SYS_LSTAT = 40 +pkg syscall (openbsd-amd64-cgo), const SYS_NANOSLEEP = 91 +pkg syscall (openbsd-amd64-cgo), const SYS_PPOLL = 109 +pkg syscall (openbsd-amd64-cgo), const SYS_PPOLL ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_PSELECT = 110 +pkg syscall (openbsd-amd64-cgo), const SYS_PSELECT ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_SELECT = 71 +pkg syscall (openbsd-amd64-cgo), const SYS_SETITIMER = 69 +pkg syscall (openbsd-amd64-cgo), const SYS_SETTIMEOFDAY = 68 +pkg syscall (openbsd-amd64-cgo), const SYS_STAT = 38 +pkg syscall (openbsd-amd64-cgo), const SYS_STATFS = 63 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMENSAT = 84 +pkg syscall (openbsd-amd64-cgo), const SYS_UTIMES = 76 +pkg syscall (openbsd-amd64-cgo), const SYS_UTRACE = 209 +pkg syscall (openbsd-amd64-cgo), const SYS_UTRACE ideal-int +pkg syscall (openbsd-amd64-cgo), const SYS_WAIT4 = 11 +pkg syscall (openbsd-amd64-cgo), const SYS___THRSLEEP = 94 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMetrics = 56 +pkg syscall (openbsd-amd64-cgo), const SizeofRtMsghdr = 96 +pkg syscall (openbsd-amd64-cgo), const TCP_NOPUSH = 16 +pkg syscall (openbsd-amd64-cgo), const TCP_NOPUSH ideal-int +pkg syscall (openbsd-amd64-cgo), const TIOCGSID = 1074033763 +pkg syscall (openbsd-amd64-cgo), const TIOCGSID ideal-int +pkg syscall (openbsd-amd64-cgo), func FcntlFlock(uintptr, int, *Flock_t) error +pkg syscall (openbsd-amd64-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error) +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Fileno uint64 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, Off int64 +pkg syscall (openbsd-amd64-cgo), type Dirent struct, X__d_padding [4]uint8 +pkg syscall (openbsd-amd64-cgo), type FdSet struct, Bits [32]uint32 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Data int64 +pkg syscall (openbsd-amd64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (openbsd-amd64-cgo), type Mclpool struct, Grown int32 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Expire int64 +pkg syscall (openbsd-amd64-cgo), type RtMetrics struct, Pad uint32 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (openbsd-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_ctime uint64 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, F_mntfromspec [90]int8 +pkg syscall (openbsd-amd64-cgo), type Statfs_t struct, Pad_cgo_1 [2]uint8 +pkg syscall (openbsd-amd64-cgo), type Termios struct +pkg syscall (openbsd-amd64-cgo), type Termios struct, Cc [20]uint8 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Cflag uint32 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Iflag uint32 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Ispeed int32 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Lflag uint32 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Oflag uint32 +pkg syscall (openbsd-amd64-cgo), type Termios struct, Ospeed int32 +pkg syscall (openbsd-amd64-cgo), type Timespec struct, Sec int64 +pkg syscall (windows-386), const ERROR_MORE_DATA = 234 +pkg syscall (windows-386), const ERROR_MORE_DATA Errno +pkg syscall (windows-386), const ERROR_NETNAME_DELETED = 64 +pkg syscall (windows-386), const ERROR_NETNAME_DELETED Errno +pkg syscall (windows-386), const IOC_VENDOR = 402653184 +pkg syscall (windows-386), const IOC_VENDOR ideal-int +pkg syscall (windows-386), const SIO_KEEPALIVE_VALS = 2550136836 +pkg syscall (windows-386), const SIO_KEEPALIVE_VALS ideal-int +pkg syscall (windows-386), const WSAECONNRESET = 10054 +pkg syscall (windows-386), const WSAECONNRESET Errno +pkg syscall (windows-386), func NewCallbackCDecl(interface{}) uintptr +pkg syscall (windows-386), type TCPKeepalive struct +pkg syscall (windows-386), type TCPKeepalive struct, Interval uint32 +pkg syscall (windows-386), type TCPKeepalive struct, OnOff uint32 +pkg syscall (windows-386), type TCPKeepalive struct, Time uint32 +pkg syscall (windows-amd64), const ERROR_MORE_DATA = 234 +pkg syscall (windows-amd64), const ERROR_MORE_DATA Errno +pkg syscall (windows-amd64), const ERROR_NETNAME_DELETED = 64 +pkg syscall (windows-amd64), const ERROR_NETNAME_DELETED Errno +pkg syscall (windows-amd64), const IOC_VENDOR = 402653184 +pkg syscall (windows-amd64), const IOC_VENDOR ideal-int +pkg syscall (windows-amd64), const SIO_KEEPALIVE_VALS = 2550136836 +pkg syscall (windows-amd64), const SIO_KEEPALIVE_VALS ideal-int +pkg syscall (windows-amd64), const WSAECONNRESET = 10054 +pkg syscall (windows-amd64), const WSAECONNRESET Errno +pkg syscall (windows-amd64), func NewCallbackCDecl(interface{}) uintptr +pkg syscall (windows-amd64), type TCPKeepalive struct +pkg syscall (windows-amd64), type TCPKeepalive struct, Interval uint32 +pkg syscall (windows-amd64), type TCPKeepalive struct, OnOff uint32 +pkg syscall (windows-amd64), type TCPKeepalive struct, Time uint32 +pkg testing, method (*B) RunParallel(func(*PB)) +pkg testing, method (*B) SetParallelism(int) +pkg testing, method (*PB) Next() bool +pkg testing, type PB struct +pkg unicode, const Version = "6.3.0" diff --git a/platform/dbops/binaries/go/go/api/go1.4.txt b/platform/dbops/binaries/go/go/api/go1.4.txt new file mode 100644 index 0000000000000000000000000000000000000000..08cb17f86932c896f5895a31a21703147510ab73 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.4.txt @@ -0,0 +1,604 @@ +# CL 134210043 archive/zip: add Writer.Flush, Brad Fitzpatrick +pkg archive/zip, method (*Writer) Flush() error + +# CL 97140043 compress/flate: add Reset() to allow reusing large buffers to compress multiple buffers, James Robinson +pkg compress/flate, type Resetter interface { Reset } +pkg compress/flate, type Resetter interface, Reset(io.Reader, []uint8) error +pkg compress/zlib, type Resetter interface { Reset } +pkg compress/zlib, type Resetter interface, Reset(io.Reader, []uint8) error + +# CL 159120044 compress/gzip: allow stopping at end of first stream, Russ Cox +pkg compress/gzip, method (*Reader) Multistream(bool) + +# CL 138800043 crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum., David Leon Gil +pkg crypto, const SHA3_224 = 10 +pkg crypto, const SHA3_224 Hash +pkg crypto, const SHA3_256 = 11 +pkg crypto, const SHA3_256 Hash +pkg crypto, const SHA3_384 = 12 +pkg crypto, const SHA3_384 Hash +pkg crypto, const SHA3_512 = 13 +pkg crypto, const SHA3_512 Hash + +# CL 114680043 crypto: add Signer, Adam Langley +pkg crypto, method (Hash) HashFunc() Hash +pkg crypto, type Signer interface { Public, Sign } +pkg crypto, type Signer interface, Public() PublicKey +pkg crypto, type Signer interface, Sign(io.Reader, []uint8, SignerOpts) ([]uint8, error) +pkg crypto, type SignerOpts interface { HashFunc } +pkg crypto, type SignerOpts interface, HashFunc() Hash +pkg crypto/ecdsa, method (*PrivateKey) Public() crypto.PublicKey +pkg crypto/ecdsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error) +pkg crypto/rsa, method (*PSSOptions) HashFunc() crypto.Hash +pkg crypto/rsa, method (*PrivateKey) Public() crypto.PublicKey +pkg crypto/rsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error) +pkg crypto/rsa, type PSSOptions struct, Hash crypto.Hash + +# CL 157090043 crypto/tls: support TLS_FALLBACK_SCSV as a server., Adam Langley +pkg crypto/tls, const TLS_FALLBACK_SCSV = 22016 +pkg crypto/tls, const TLS_FALLBACK_SCSV uint16 + +# CL 107400043 crypto/tls: Added dynamic alternative to NameToCertificate map for SNI, Percy Wegmann +pkg crypto/tls, type ClientHelloInfo struct +pkg crypto/tls, type ClientHelloInfo struct, CipherSuites []uint16 +pkg crypto/tls, type ClientHelloInfo struct, ServerName string +pkg crypto/tls, type ClientHelloInfo struct, SupportedCurves []CurveID +pkg crypto/tls, type ClientHelloInfo struct, SupportedPoints []uint8 +pkg crypto/tls, type Config struct, GetCertificate func(*ClientHelloInfo) (*Certificate, error) +pkg crypto/tls, type ConnectionState struct, TLSUnique []uint8 + +# CL 153420045 crypto/x509: continue to recognise MaxPathLen of zero as "no value"., Adam Langley +pkg crypto/x509, type Certificate struct, MaxPathLenZero bool + +# CL 158950043 database/sql: add Drivers, returning list of registered drivers, Russ Cox +pkg database/sql, func Drivers() []string + +# CL 117280043 debug/dwarf: fix Reader panic on DW_TAG_unspecified_type, Derek Parker +pkg debug/dwarf, method (*UnspecifiedType) Basic() *BasicType +pkg debug/dwarf, method (*UnspecifiedType) Common() *CommonType +pkg debug/dwarf, method (*UnspecifiedType) Size() int64 +pkg debug/dwarf, method (*UnspecifiedType) String() string +pkg debug/dwarf, type UnspecifiedType struct +pkg debug/dwarf, type UnspecifiedType struct, embedded BasicType + +# CL 132000043 debug/elf: support arm64 relocations, Michael Hudson-Doyle +pkg debug/elf, const EM_AARCH64 = 183 +pkg debug/elf, const EM_AARCH64 Machine +pkg debug/elf, const R_AARCH64_ABS16 = 259 +pkg debug/elf, const R_AARCH64_ABS16 R_AARCH64 +pkg debug/elf, const R_AARCH64_ABS32 = 258 +pkg debug/elf, const R_AARCH64_ABS32 R_AARCH64 +pkg debug/elf, const R_AARCH64_ABS64 = 257 +pkg debug/elf, const R_AARCH64_ABS64 R_AARCH64 +pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC = 277 +pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE = 311 +pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE R_AARCH64 +pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 = 274 +pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 R_AARCH64 +pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 = 275 +pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64 +pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC = 276 +pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_CALL26 = 283 +pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64 +pkg debug/elf, const R_AARCH64_CONDBR19 = 280 +pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64 +pkg debug/elf, const R_AARCH64_COPY = 1024 +pkg debug/elf, const R_AARCH64_COPY R_AARCH64 +pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025 +pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64 +pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309 +pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_IRELATIVE = 1032 +pkg debug/elf, const R_AARCH64_IRELATIVE R_AARCH64 +pkg debug/elf, const R_AARCH64_JUMP26 = 282 +pkg debug/elf, const R_AARCH64_JUMP26 R_AARCH64 +pkg debug/elf, const R_AARCH64_JUMP_SLOT = 1026 +pkg debug/elf, const R_AARCH64_JUMP_SLOT R_AARCH64 +pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC = 312 +pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC = 299 +pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC = 284 +pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC = 285 +pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC = 286 +pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC = 278 +pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_LD_PREL_LO19 = 273 +pkg debug/elf, const R_AARCH64_LD_PREL_LO19 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 = 270 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 = 271 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 = 272 +pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 = 263 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC = 264 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 = 265 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC = 266 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 = 267 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC = 268 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 = 269 +pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 R_AARCH64 +pkg debug/elf, const R_AARCH64_NONE = 0 +pkg debug/elf, const R_AARCH64_NONE R_AARCH64 +pkg debug/elf, const R_AARCH64_NULL = 256 +pkg debug/elf, const R_AARCH64_NULL R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ABS16 = 2 +pkg debug/elf, const R_AARCH64_P32_ABS16 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ABS32 = 1 +pkg debug/elf, const R_AARCH64_P32_ABS32 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC = 12 +pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE = 26 +pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 = 10 +pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 = 11 +pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_CALL26 = 21 +pkg debug/elf, const R_AARCH64_P32_CALL26 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_CONDBR19 = 19 +pkg debug/elf, const R_AARCH64_P32_CONDBR19 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_COPY = 180 +pkg debug/elf, const R_AARCH64_P32_COPY R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_GLOB_DAT = 181 +pkg debug/elf, const R_AARCH64_P32_GLOB_DAT R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 = 25 +pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_IRELATIVE = 188 +pkg debug/elf, const R_AARCH64_P32_IRELATIVE R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_JUMP26 = 20 +pkg debug/elf, const R_AARCH64_P32_JUMP26 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT = 182 +pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC = 27 +pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC = 17 +pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC = 14 +pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC = 15 +pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC = 16 +pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC = 13 +pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 = 9 +pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 = 8 +pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 = 5 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC = 6 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 = 7 +pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_PREL16 = 4 +pkg debug/elf, const R_AARCH64_P32_PREL16 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_PREL32 = 3 +pkg debug/elf, const R_AARCH64_P32_PREL32 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_RELATIVE = 183 +pkg debug/elf, const R_AARCH64_P32_RELATIVE R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC = 187 +pkg debug/elf, const R_AARCH64_P32_TLSDESC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC = 126 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 = 124 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 = 123 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL = 127 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC = 125 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 = 122 +pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC = 82 +pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 = 81 +pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 = 103 +pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC = 104 +pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 = 105 +pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 = 109 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 = 110 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC = 111 +pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 = 107 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC = 108 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 = 106 +pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD = 184 +pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL = 185 +pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TLS_TPREL = 186 +pkg debug/elf, const R_AARCH64_P32_TLS_TPREL R_AARCH64 +pkg debug/elf, const R_AARCH64_P32_TSTBR14 = 18 +pkg debug/elf, const R_AARCH64_P32_TSTBR14 R_AARCH64 +pkg debug/elf, const R_AARCH64_PREL16 = 262 +pkg debug/elf, const R_AARCH64_PREL16 R_AARCH64 +pkg debug/elf, const R_AARCH64_PREL32 = 261 +pkg debug/elf, const R_AARCH64_PREL32 R_AARCH64 +pkg debug/elf, const R_AARCH64_PREL64 = 260 +pkg debug/elf, const R_AARCH64_PREL64 R_AARCH64 +pkg debug/elf, const R_AARCH64_RELATIVE = 1027 +pkg debug/elf, const R_AARCH64_RELATIVE R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC = 1031 +pkg debug/elf, const R_AARCH64_TLSDESC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_ADD = 568 +pkg debug/elf, const R_AARCH64_TLSDESC_ADD R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC = 564 +pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 = 562 +pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 = 561 +pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_CALL = 569 +pkg debug/elf, const R_AARCH64_TLSDESC_CALL R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC = 563 +pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_LDR = 567 +pkg debug/elf, const R_AARCH64_TLSDESC_LDR R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 = 560 +pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC = 566 +pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 = 565 +pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC = 514 +pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 = 513 +pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 541 +pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 542 +pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 543 +pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 540 +pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 539 +pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 = 549 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 = 550 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 551 +pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 = 547 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 548 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 = 545 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 546 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC R_AARCH64 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 = 544 +pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 = 1028 +pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLS_DTPREL64 = 1029 +pkg debug/elf, const R_AARCH64_TLS_DTPREL64 R_AARCH64 +pkg debug/elf, const R_AARCH64_TLS_TPREL64 = 1030 +pkg debug/elf, const R_AARCH64_TLS_TPREL64 R_AARCH64 +pkg debug/elf, const R_AARCH64_TSTBR14 = 279 +pkg debug/elf, const R_AARCH64_TSTBR14 R_AARCH64 +pkg debug/elf, method (R_AARCH64) GoString() string +pkg debug/elf, method (R_AARCH64) String() string +pkg debug/elf, type R_AARCH64 int + +# CL 107530043 debug/elf: add (*File).DynamicSymbols, ErrNoSymbols, and tests for (*File).Symbols and (*File).DynamicSymbols, and formalize symbol order., Pietro Gagliardi +pkg debug/elf, method (*File) DynamicSymbols() ([]Symbol, error) +pkg debug/elf, var ErrNoSymbols error + +# CL 106460044 debug/plan9obj, cmd/addr2line: on Plan 9 use a.out header, Aram Hăvărneanu +pkg debug/plan9obj, type FileHeader struct, HdrSize uint64 +pkg debug/plan9obj, type FileHeader struct, LoadAddress uint64 + +# CL 122960043 encoding/xml: add InputOffset method to Decoder, Russ Cox +pkg encoding/xml, method (*Decoder) InputOffset() int64 + +# CL 124940043 cmd/go, go/build: implement import comment checking, Russ Cox +pkg go/build, const ImportComment = 4 +pkg go/build, const ImportComment ImportMode +pkg go/build, type Package struct, ImportComment string + +# CL 155050043 go/build: Return MultiplePackageError on importing a dir containing multiple packages, Jens Frederich +pkg go/build, method (*MultiplePackageError) Error() string +pkg go/build, type MultiplePackageError struct +pkg go/build, type MultiplePackageError struct, Dir string +pkg go/build, type MultiplePackageError struct, Files []string +pkg go/build, type MultiplePackageError struct, Packages []string + +# CL 135110044 go/token: implement PositionFor accessors, Robert Griesemer +pkg go/token, method (*File) PositionFor(Pos, bool) Position +pkg go/token, method (*FileSet) PositionFor(Pos, bool) Position + +# CL 109000049 image: add RGBAAt, Gray16At, etc., ChaiShushan +pkg image, method (*Alpha) AlphaAt(int, int) color.Alpha +pkg image, method (*Alpha16) Alpha16At(int, int) color.Alpha16 +pkg image, method (*Gray) GrayAt(int, int) color.Gray +pkg image, method (*Gray16) Gray16At(int, int) color.Gray16 +pkg image, method (*NRGBA) NRGBAAt(int, int) color.NRGBA +pkg image, method (*NRGBA64) NRGBA64At(int, int) color.NRGBA64 +pkg image, method (*RGBA) RGBAAt(int, int) color.RGBA +pkg image, method (*RGBA64) RGBA64At(int, int) color.RGBA64 +pkg image, method (*YCbCr) YCbCrAt(int, int) color.YCbCr + +# CL 129190043 png: make the encoder configurable, Jeff R. Allen +pkg image/png, const BestCompression = -3 +pkg image/png, const BestCompression CompressionLevel +pkg image/png, const BestSpeed = -2 +pkg image/png, const BestSpeed CompressionLevel +pkg image/png, const DefaultCompression = 0 +pkg image/png, const DefaultCompression CompressionLevel +pkg image/png, const NoCompression = -1 +pkg image/png, const NoCompression CompressionLevel +pkg image/png, method (*Encoder) Encode(io.Writer, image.Image) error +pkg image/png, type CompressionLevel int +pkg image/png, type Encoder struct +pkg image/png, type Encoder struct, CompressionLevel CompressionLevel + +# CL 101750048 math: implement Nextafter32, Robert Griesemer +pkg math, func Nextafter32(float32, float32) float32 + +# CL 93550043 math/big: implement Rat.Float32, Robert Griesemer +pkg math/big, method (*Rat) Float32() (float32, bool) + +# CL 76540043 net/http: add BasicAuth method to *http.Request, Kelsey Hightower +pkg net/http, method (*Request) BasicAuth() (string, string, bool) + +# CL 137940043 net/http: add Transport.DialTLS hook, Brad Fitzpatrick +pkg net/http, type Transport struct, DialTLS func(string, string) (net.Conn, error) + +# CL 132750043 net/http/httputil: Pass a Logger to ReverseProxy, allowing the user to control logging., Mark Theunissen +pkg net/http/httputil, type ReverseProxy struct, ErrorLog *log.Logger + +# CL 148370043 os, syscall: add Unsetenv, Brad Fitzpatrick +pkg os, func Unsetenv(string) error +pkg syscall, func Unsetenv(string) error + +# CL 144020043 reflect: add Type.Comparable, Russ Cox +pkg reflect, type Type interface, Comparable() bool + +# CL 153670043 runtime: add PauseEnd array to MemStats and GCStats, Jens Frederich +pkg runtime, type MemStats struct, PauseEnd [256]uint64 +pkg runtime/debug, type GCStats struct, PauseEnd []time.Time + +# CL 136710045 sync/atomic: add Value, Dmitriy Vyukov +pkg sync/atomic, method (*Value) Load() interface{} +pkg sync/atomic, method (*Value) Store(interface{}) +pkg sync/atomic, type Value struct + +# CL 126190043 syscall: support UID/GID map files for Linux user namespaces, Mrunal Patel +pkg syscall (linux-386), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-386), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-386), type SysProcIDMap struct +pkg syscall (linux-386), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-386), type SysProcIDMap struct, HostID int +pkg syscall (linux-386), type SysProcIDMap struct, Size int +pkg syscall (linux-386-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-386-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-386-cgo), type SysProcIDMap struct +pkg syscall (linux-386-cgo), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-386-cgo), type SysProcIDMap struct, HostID int +pkg syscall (linux-386-cgo), type SysProcIDMap struct, Size int +pkg syscall (linux-amd64), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-amd64), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-amd64), type SysProcIDMap struct +pkg syscall (linux-amd64), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-amd64), type SysProcIDMap struct, HostID int +pkg syscall (linux-amd64), type SysProcIDMap struct, Size int +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-amd64-cgo), type SysProcIDMap struct +pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, HostID int +pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, Size int +pkg syscall (linux-arm), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-arm), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-arm), type SysProcIDMap struct +pkg syscall (linux-arm), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-arm), type SysProcIDMap struct, HostID int +pkg syscall (linux-arm), type SysProcIDMap struct, Size int +pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap +pkg syscall (linux-arm-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap +pkg syscall (linux-arm-cgo), type SysProcIDMap struct +pkg syscall (linux-arm-cgo), type SysProcIDMap struct, ContainerID int +pkg syscall (linux-arm-cgo), type SysProcIDMap struct, HostID int +pkg syscall (linux-arm-cgo), type SysProcIDMap struct, Size int + +# CL 122200043 net: fix CNAME resolving on Windows, Egon Elbre +pkg syscall (windows-386), const DNS_INFO_NO_RECORDS = 9501 +pkg syscall (windows-386), const DNS_INFO_NO_RECORDS ideal-int +pkg syscall (windows-386), const DnsSectionAdditional = 3 +pkg syscall (windows-386), const DnsSectionAdditional ideal-int +pkg syscall (windows-386), const DnsSectionAnswer = 1 +pkg syscall (windows-386), const DnsSectionAnswer ideal-int +pkg syscall (windows-386), const DnsSectionAuthority = 2 +pkg syscall (windows-386), const DnsSectionAuthority ideal-int +pkg syscall (windows-386), const DnsSectionQuestion = 0 +pkg syscall (windows-386), const DnsSectionQuestion ideal-int +pkg syscall (windows-386), func DnsNameCompare(*uint16, *uint16) bool +pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS = 9501 +pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS ideal-int +pkg syscall (windows-amd64), const DnsSectionAdditional = 3 +pkg syscall (windows-amd64), const DnsSectionAdditional ideal-int +pkg syscall (windows-amd64), const DnsSectionAnswer = 1 +pkg syscall (windows-amd64), const DnsSectionAnswer ideal-int +pkg syscall (windows-amd64), const DnsSectionAuthority = 2 +pkg syscall (windows-amd64), const DnsSectionAuthority ideal-int +pkg syscall (windows-amd64), const DnsSectionQuestion = 0 +pkg syscall (windows-amd64), const DnsSectionQuestion ideal-int +pkg syscall (windows-amd64), func DnsNameCompare(*uint16, *uint16) bool + +# CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel +pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314 +pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno +pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314 +pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno + +# CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel +pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT = 1024 +pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int +pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152 +pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int +pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT = 589992 +pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT ideal-int +pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK = 2684354572 +pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK ideal-int +pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384 +pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int +pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1 +pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int +pkg syscall (windows-386), func CreateHardLink(*uint16, *uint16, uintptr) error +pkg syscall (windows-386), func CreateSymbolicLink(*uint16, *uint16, uint32) error +pkg syscall (windows-386), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error +pkg syscall (windows-386), func LoadCreateSymbolicLink() error +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT = 1024 +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int +pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152 +pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int +pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT = 589992 +pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT ideal-int +pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK = 2684354572 +pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK ideal-int +pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384 +pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int +pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1 +pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int +pkg syscall (windows-amd64), func CreateHardLink(*uint16, *uint16, uintptr) error +pkg syscall (windows-amd64), func CreateSymbolicLink(*uint16, *uint16, uint32) error +pkg syscall (windows-amd64), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error +pkg syscall (windows-amd64), func LoadCreateSymbolicLink() error + +# CL 149510043 net: disable SIO_UDP_CONNRESET behavior on windows., Ron Hashimoto +pkg syscall (windows-386), const SIO_UDP_CONNRESET = 2550136844 +pkg syscall (windows-386), const SIO_UDP_CONNRESET ideal-int +pkg syscall (windows-amd64), const SIO_UDP_CONNRESET = 2550136844 +pkg syscall (windows-amd64), const SIO_UDP_CONNRESET ideal-int + +# CL 102320044 syscall: implement syscall.Getppid() on Windows, Alan Shreve +pkg syscall (windows-386), const TH32CS_INHERIT = 2147483648 +pkg syscall (windows-386), const TH32CS_INHERIT ideal-int +pkg syscall (windows-386), const TH32CS_SNAPALL = 15 +pkg syscall (windows-386), const TH32CS_SNAPALL ideal-int +pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST = 1 +pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST ideal-int +pkg syscall (windows-386), const TH32CS_SNAPMODULE = 8 +pkg syscall (windows-386), const TH32CS_SNAPMODULE ideal-int +pkg syscall (windows-386), const TH32CS_SNAPMODULE32 = 16 +pkg syscall (windows-386), const TH32CS_SNAPMODULE32 ideal-int +pkg syscall (windows-386), const TH32CS_SNAPPROCESS = 2 +pkg syscall (windows-386), const TH32CS_SNAPPROCESS ideal-int +pkg syscall (windows-386), const TH32CS_SNAPTHREAD = 4 +pkg syscall (windows-386), const TH32CS_SNAPTHREAD ideal-int +pkg syscall (windows-386), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error) +pkg syscall (windows-386), func Process32First(Handle, *ProcessEntry32) error +pkg syscall (windows-386), func Process32Next(Handle, *ProcessEntry32) error +pkg syscall (windows-386), type ProcessEntry32 struct +pkg syscall (windows-386), type ProcessEntry32 struct, DefaultHeapID uintptr +pkg syscall (windows-386), type ProcessEntry32 struct, ExeFile [260]uint16 +pkg syscall (windows-386), type ProcessEntry32 struct, Flags uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, ModuleID uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32 +pkg syscall (windows-386), type ProcessEntry32 struct, ProcessID uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, Size uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, Threads uint32 +pkg syscall (windows-386), type ProcessEntry32 struct, Usage uint32 +pkg syscall (windows-amd64), const TH32CS_INHERIT = 2147483648 +pkg syscall (windows-amd64), const TH32CS_INHERIT ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPALL = 15 +pkg syscall (windows-amd64), const TH32CS_SNAPALL ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST = 1 +pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPMODULE = 8 +pkg syscall (windows-amd64), const TH32CS_SNAPMODULE ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 = 16 +pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS = 2 +pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS ideal-int +pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD = 4 +pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD ideal-int +pkg syscall (windows-amd64), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error) +pkg syscall (windows-amd64), func Process32First(Handle, *ProcessEntry32) error +pkg syscall (windows-amd64), func Process32Next(Handle, *ProcessEntry32) error +pkg syscall (windows-amd64), type ProcessEntry32 struct +pkg syscall (windows-amd64), type ProcessEntry32 struct, DefaultHeapID uintptr +pkg syscall (windows-amd64), type ProcessEntry32 struct, ExeFile [260]uint16 +pkg syscall (windows-amd64), type ProcessEntry32 struct, Flags uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, ModuleID uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, ParentProcessID uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, PriClassBase int32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, ProcessID uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, Size uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, Threads uint32 +pkg syscall (windows-amd64), type ProcessEntry32 struct, Usage uint32 + +# CL 127740043 os: make SameFile handle paths like c:a.txt properly, Alex Brainman +pkg syscall (windows-386), func FullPath(string) (string, error) +pkg syscall (windows-amd64), func FullPath(string) (string, error) + +# CL 98150043 testing: add Coverage function, Russ Cox +pkg testing, func Coverage() float64 + +# CL 148770043 cmd/go, testing: add TestMain support, Russ Cox +pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M +pkg testing, method (*M) Run() int +pkg testing, type M struct + +# CL 108030044 text/scanner: provide facility for custom identifiers, Robert Griesemer +pkg text/scanner, type Scanner struct, IsIdentRune func(int32, int) bool + +# CL 130620043 text/template: add back pointer to Nodes for better error generation, Rob Pike +pkg text/template/parse, type DotNode struct, embedded NodeType +pkg text/template/parse, type NilNode struct, embedded NodeType +pkg text/template/parse, method (*BranchNode) Copy() Node +pkg text/template/parse, method (*IdentifierNode) SetTree(*Tree) *IdentifierNode +pkg html/template, type Error struct, Node parse.Node + +# CL 127470043 unicode: strconv: regexp: Upgrade to Unicode 7.0.0., Marcel van Lohuizen +pkg unicode, const Version = "7.0.0" +pkg unicode, var Bassa_Vah *RangeTable +pkg unicode, var Caucasian_Albanian *RangeTable +pkg unicode, var Duployan *RangeTable +pkg unicode, var Elbasan *RangeTable +pkg unicode, var Grantha *RangeTable +pkg unicode, var Khojki *RangeTable +pkg unicode, var Khudawadi *RangeTable +pkg unicode, var Linear_A *RangeTable +pkg unicode, var Mahajani *RangeTable +pkg unicode, var Manichaean *RangeTable +pkg unicode, var Mende_Kikakui *RangeTable +pkg unicode, var Modi *RangeTable +pkg unicode, var Mro *RangeTable +pkg unicode, var Nabataean *RangeTable +pkg unicode, var Old_North_Arabian *RangeTable +pkg unicode, var Old_Permic *RangeTable +pkg unicode, var Pahawh_Hmong *RangeTable +pkg unicode, var Palmyrene *RangeTable +pkg unicode, var Pau_Cin_Hau *RangeTable +pkg unicode, var Psalter_Pahlavi *RangeTable +pkg unicode, var Siddham *RangeTable +pkg unicode, var Tirhuta *RangeTable +pkg unicode, var Warang_Citi *RangeTable diff --git a/platform/dbops/binaries/go/go/api/go1.5.txt b/platform/dbops/binaries/go/go/api/go1.5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9cf7970755a40b4564423bd048dd0a06aff9739 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.5.txt @@ -0,0 +1,975 @@ +pkg archive/zip, method (*Writer) SetOffset(int64) +pkg bufio, method (*Reader) Discard(int) (int, error) +pkg bufio, method (ReadWriter) Discard(int) (int, error) +pkg bytes, func LastIndexByte([]uint8, uint8) int +pkg bytes, method (*Buffer) Cap() int +pkg bytes, method (*Reader) Size() int64 +pkg crypto, const SHA512_224 = 14 +pkg crypto, const SHA512_224 Hash +pkg crypto, const SHA512_256 = 15 +pkg crypto, const SHA512_256 Hash +pkg crypto, type Decrypter interface { Decrypt, Public } +pkg crypto, type Decrypter interface, Decrypt(io.Reader, []uint8, DecrypterOpts) ([]uint8, error) +pkg crypto, type Decrypter interface, Public() PublicKey +pkg crypto, type DecrypterOpts interface {} +pkg crypto/cipher, func NewGCMWithNonceSize(Block, int) (AEAD, error) +pkg crypto/elliptic, type CurveParams struct, Name string +pkg crypto/rsa, method (*PrivateKey) Decrypt(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error) +pkg crypto/rsa, type OAEPOptions struct +pkg crypto/rsa, type OAEPOptions struct, Hash crypto.Hash +pkg crypto/rsa, type OAEPOptions struct, Label []uint8 +pkg crypto/rsa, type PKCS1v15DecryptOptions struct +pkg crypto/rsa, type PKCS1v15DecryptOptions struct, SessionKeyLen int +pkg crypto/sha512, const Size224 = 28 +pkg crypto/sha512, const Size224 ideal-int +pkg crypto/sha512, const Size256 = 32 +pkg crypto/sha512, const Size256 ideal-int +pkg crypto/sha512, func New512_224() hash.Hash +pkg crypto/sha512, func New512_256() hash.Hash +pkg crypto/sha512, func Sum512_224([]uint8) [28]uint8 +pkg crypto/sha512, func Sum512_256([]uint8) [32]uint8 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 49196 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 = 49200 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 uint16 +pkg crypto/tls, method (*Config) SetSessionTicketKeys([][32]uint8) +pkg crypto/tls, type Certificate struct, SignedCertificateTimestamps [][]uint8 +pkg crypto/tls, type ConnectionState struct, OCSPResponse []uint8 +pkg crypto/tls, type ConnectionState struct, SignedCertificateTimestamps [][]uint8 +pkg crypto/x509, method (*CertificateRequest) CheckSignature() error +pkg crypto/x509, type Certificate struct, UnhandledCriticalExtensions []asn1.ObjectIdentifier +pkg crypto/x509/pkix, type Name struct, ExtraNames []AttributeTypeAndValue +pkg database/sql, method (*DB) Stats() DBStats +pkg database/sql, type DBStats struct +pkg database/sql, type DBStats struct, OpenConnections int +pkg debug/dwarf, const ClassAddress = 1 +pkg debug/dwarf, const ClassAddress Class +pkg debug/dwarf, const ClassBlock = 2 +pkg debug/dwarf, const ClassBlock Class +pkg debug/dwarf, const ClassConstant = 3 +pkg debug/dwarf, const ClassConstant Class +pkg debug/dwarf, const ClassExprLoc = 4 +pkg debug/dwarf, const ClassExprLoc Class +pkg debug/dwarf, const ClassFlag = 5 +pkg debug/dwarf, const ClassFlag Class +pkg debug/dwarf, const ClassLinePtr = 6 +pkg debug/dwarf, const ClassLinePtr Class +pkg debug/dwarf, const ClassLocListPtr = 7 +pkg debug/dwarf, const ClassLocListPtr Class +pkg debug/dwarf, const ClassMacPtr = 8 +pkg debug/dwarf, const ClassMacPtr Class +pkg debug/dwarf, const ClassRangeListPtr = 9 +pkg debug/dwarf, const ClassRangeListPtr Class +pkg debug/dwarf, const ClassReference = 10 +pkg debug/dwarf, const ClassReference Class +pkg debug/dwarf, const ClassReferenceAlt = 13 +pkg debug/dwarf, const ClassReferenceAlt Class +pkg debug/dwarf, const ClassReferenceSig = 11 +pkg debug/dwarf, const ClassReferenceSig Class +pkg debug/dwarf, const ClassString = 12 +pkg debug/dwarf, const ClassString Class +pkg debug/dwarf, const ClassStringAlt = 14 +pkg debug/dwarf, const ClassStringAlt Class +pkg debug/dwarf, method (*Data) LineReader(*Entry) (*LineReader, error) +pkg debug/dwarf, method (*Entry) AttrField(Attr) *Field +pkg debug/dwarf, method (*LineReader) Next(*LineEntry) error +pkg debug/dwarf, method (*LineReader) Reset() +pkg debug/dwarf, method (*LineReader) Seek(LineReaderPos) +pkg debug/dwarf, method (*LineReader) SeekPC(uint64, *LineEntry) error +pkg debug/dwarf, method (*LineReader) Tell() LineReaderPos +pkg debug/dwarf, method (*Reader) AddressSize() int +pkg debug/dwarf, method (Class) GoString() string +pkg debug/dwarf, method (Class) String() string +pkg debug/dwarf, type Class int +pkg debug/dwarf, type Field struct, Class Class +pkg debug/dwarf, type LineEntry struct +pkg debug/dwarf, type LineEntry struct, Address uint64 +pkg debug/dwarf, type LineEntry struct, BasicBlock bool +pkg debug/dwarf, type LineEntry struct, Column int +pkg debug/dwarf, type LineEntry struct, Discriminator int +pkg debug/dwarf, type LineEntry struct, EndSequence bool +pkg debug/dwarf, type LineEntry struct, EpilogueBegin bool +pkg debug/dwarf, type LineEntry struct, File *LineFile +pkg debug/dwarf, type LineEntry struct, ISA int +pkg debug/dwarf, type LineEntry struct, IsStmt bool +pkg debug/dwarf, type LineEntry struct, Line int +pkg debug/dwarf, type LineEntry struct, OpIndex int +pkg debug/dwarf, type LineEntry struct, PrologueEnd bool +pkg debug/dwarf, type LineFile struct +pkg debug/dwarf, type LineFile struct, Length int +pkg debug/dwarf, type LineFile struct, Mtime uint64 +pkg debug/dwarf, type LineFile struct, Name string +pkg debug/dwarf, type LineReader struct +pkg debug/dwarf, type LineReaderPos struct +pkg debug/dwarf, var ErrUnknownPC error +pkg debug/elf, const R_PPC64_ADDR14 = 7 +pkg debug/elf, const R_PPC64_ADDR14 R_PPC64 +pkg debug/elf, const R_PPC64_ADDR14_BRNTAKEN = 9 +pkg debug/elf, const R_PPC64_ADDR14_BRNTAKEN R_PPC64 +pkg debug/elf, const R_PPC64_ADDR14_BRTAKEN = 8 +pkg debug/elf, const R_PPC64_ADDR14_BRTAKEN R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16 = 3 +pkg debug/elf, const R_PPC64_ADDR16 R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_DS = 56 +pkg debug/elf, const R_PPC64_ADDR16_DS R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HA = 6 +pkg debug/elf, const R_PPC64_ADDR16_HA R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HI = 5 +pkg debug/elf, const R_PPC64_ADDR16_HI R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HIGHER = 39 +pkg debug/elf, const R_PPC64_ADDR16_HIGHER R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HIGHERA = 40 +pkg debug/elf, const R_PPC64_ADDR16_HIGHERA R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HIGHEST = 41 +pkg debug/elf, const R_PPC64_ADDR16_HIGHEST R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA = 42 +pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_LO = 4 +pkg debug/elf, const R_PPC64_ADDR16_LO R_PPC64 +pkg debug/elf, const R_PPC64_ADDR16_LO_DS = 57 +pkg debug/elf, const R_PPC64_ADDR16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_ADDR24 = 2 +pkg debug/elf, const R_PPC64_ADDR24 R_PPC64 +pkg debug/elf, const R_PPC64_ADDR32 = 1 +pkg debug/elf, const R_PPC64_ADDR32 R_PPC64 +pkg debug/elf, const R_PPC64_ADDR64 = 38 +pkg debug/elf, const R_PPC64_ADDR64 R_PPC64 +pkg debug/elf, const R_PPC64_DTPMOD64 = 68 +pkg debug/elf, const R_PPC64_DTPMOD64 R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16 = 74 +pkg debug/elf, const R_PPC64_DTPREL16 R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_DS = 101 +pkg debug/elf, const R_PPC64_DTPREL16_DS R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HA = 77 +pkg debug/elf, const R_PPC64_DTPREL16_HA R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HI = 76 +pkg debug/elf, const R_PPC64_DTPREL16_HI R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHER = 103 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHER R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHERA = 104 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHERA R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHEST = 105 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHEST R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHESTA = 106 +pkg debug/elf, const R_PPC64_DTPREL16_HIGHESTA R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_LO = 75 +pkg debug/elf, const R_PPC64_DTPREL16_LO R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL16_LO_DS = 102 +pkg debug/elf, const R_PPC64_DTPREL16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_DTPREL64 = 78 +pkg debug/elf, const R_PPC64_DTPREL64 R_PPC64 +pkg debug/elf, const R_PPC64_GOT16 = 14 +pkg debug/elf, const R_PPC64_GOT16 R_PPC64 +pkg debug/elf, const R_PPC64_GOT16_DS = 58 +pkg debug/elf, const R_PPC64_GOT16_DS R_PPC64 +pkg debug/elf, const R_PPC64_GOT16_HA = 17 +pkg debug/elf, const R_PPC64_GOT16_HA R_PPC64 +pkg debug/elf, const R_PPC64_GOT16_HI = 16 +pkg debug/elf, const R_PPC64_GOT16_HI R_PPC64 +pkg debug/elf, const R_PPC64_GOT16_LO = 15 +pkg debug/elf, const R_PPC64_GOT16_LO R_PPC64 +pkg debug/elf, const R_PPC64_GOT16_LO_DS = 59 +pkg debug/elf, const R_PPC64_GOT16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_DS = 91 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_DS R_PPC64 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_HA = 94 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_HA R_PPC64 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_HI = 93 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_HI R_PPC64 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_LO_DS = 92 +pkg debug/elf, const R_PPC64_GOT_DTPREL16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSGD16 = 79 +pkg debug/elf, const R_PPC64_GOT_TLSGD16 R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_HA = 82 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_HA R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_HI = 81 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_HI R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_LO = 80 +pkg debug/elf, const R_PPC64_GOT_TLSGD16_LO R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSLD16 = 83 +pkg debug/elf, const R_PPC64_GOT_TLSLD16 R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_HA = 86 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_HA R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI = 85 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO = 84 +pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TPREL16_DS = 87 +pkg debug/elf, const R_PPC64_GOT_TPREL16_DS R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TPREL16_HA = 90 +pkg debug/elf, const R_PPC64_GOT_TPREL16_HA R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TPREL16_HI = 89 +pkg debug/elf, const R_PPC64_GOT_TPREL16_HI R_PPC64 +pkg debug/elf, const R_PPC64_GOT_TPREL16_LO_DS = 88 +pkg debug/elf, const R_PPC64_GOT_TPREL16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_JMP_SLOT = 21 +pkg debug/elf, const R_PPC64_JMP_SLOT R_PPC64 +pkg debug/elf, const R_PPC64_NONE = 0 +pkg debug/elf, const R_PPC64_NONE R_PPC64 +pkg debug/elf, const R_PPC64_REL14 = 11 +pkg debug/elf, const R_PPC64_REL14 R_PPC64 +pkg debug/elf, const R_PPC64_REL14_BRNTAKEN = 13 +pkg debug/elf, const R_PPC64_REL14_BRNTAKEN R_PPC64 +pkg debug/elf, const R_PPC64_REL14_BRTAKEN = 12 +pkg debug/elf, const R_PPC64_REL14_BRTAKEN R_PPC64 +pkg debug/elf, const R_PPC64_REL16 = 249 +pkg debug/elf, const R_PPC64_REL16 R_PPC64 +pkg debug/elf, const R_PPC64_REL16_HA = 252 +pkg debug/elf, const R_PPC64_REL16_HA R_PPC64 +pkg debug/elf, const R_PPC64_REL16_HI = 251 +pkg debug/elf, const R_PPC64_REL16_HI R_PPC64 +pkg debug/elf, const R_PPC64_REL16_LO = 250 +pkg debug/elf, const R_PPC64_REL16_LO R_PPC64 +pkg debug/elf, const R_PPC64_REL24 = 10 +pkg debug/elf, const R_PPC64_REL24 R_PPC64 +pkg debug/elf, const R_PPC64_REL32 = 26 +pkg debug/elf, const R_PPC64_REL32 R_PPC64 +pkg debug/elf, const R_PPC64_REL64 = 44 +pkg debug/elf, const R_PPC64_REL64 R_PPC64 +pkg debug/elf, const R_PPC64_TLS = 67 +pkg debug/elf, const R_PPC64_TLS R_PPC64 +pkg debug/elf, const R_PPC64_TLSGD = 107 +pkg debug/elf, const R_PPC64_TLSGD R_PPC64 +pkg debug/elf, const R_PPC64_TLSLD = 108 +pkg debug/elf, const R_PPC64_TLSLD R_PPC64 +pkg debug/elf, const R_PPC64_TOC = 51 +pkg debug/elf, const R_PPC64_TOC R_PPC64 +pkg debug/elf, const R_PPC64_TOC16 = 47 +pkg debug/elf, const R_PPC64_TOC16 R_PPC64 +pkg debug/elf, const R_PPC64_TOC16_DS = 63 +pkg debug/elf, const R_PPC64_TOC16_DS R_PPC64 +pkg debug/elf, const R_PPC64_TOC16_HA = 50 +pkg debug/elf, const R_PPC64_TOC16_HA R_PPC64 +pkg debug/elf, const R_PPC64_TOC16_HI = 49 +pkg debug/elf, const R_PPC64_TOC16_HI R_PPC64 +pkg debug/elf, const R_PPC64_TOC16_LO = 48 +pkg debug/elf, const R_PPC64_TOC16_LO R_PPC64 +pkg debug/elf, const R_PPC64_TOC16_LO_DS = 64 +pkg debug/elf, const R_PPC64_TOC16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16 = 69 +pkg debug/elf, const R_PPC64_TPREL16 R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_DS = 95 +pkg debug/elf, const R_PPC64_TPREL16_DS R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HA = 72 +pkg debug/elf, const R_PPC64_TPREL16_HA R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HI = 71 +pkg debug/elf, const R_PPC64_TPREL16_HI R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGHER = 97 +pkg debug/elf, const R_PPC64_TPREL16_HIGHER R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGHERA = 98 +pkg debug/elf, const R_PPC64_TPREL16_HIGHERA R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGHEST = 99 +pkg debug/elf, const R_PPC64_TPREL16_HIGHEST R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_HIGHESTA = 100 +pkg debug/elf, const R_PPC64_TPREL16_HIGHESTA R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_LO = 70 +pkg debug/elf, const R_PPC64_TPREL16_LO R_PPC64 +pkg debug/elf, const R_PPC64_TPREL16_LO_DS = 96 +pkg debug/elf, const R_PPC64_TPREL16_LO_DS R_PPC64 +pkg debug/elf, const R_PPC64_TPREL64 = 73 +pkg debug/elf, const R_PPC64_TPREL64 R_PPC64 +pkg debug/elf, method (R_PPC64) GoString() string +pkg debug/elf, method (R_PPC64) String() string +pkg debug/elf, type R_PPC64 int +pkg encoding/base64, const NoPadding = -1 +pkg encoding/base64, const NoPadding int32 +pkg encoding/base64, const StdPadding = 61 +pkg encoding/base64, const StdPadding int32 +pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding +pkg encoding/base64, var RawStdEncoding *Encoding +pkg encoding/base64, var RawURLEncoding *Encoding +pkg encoding/json, method (*Decoder) More() bool +pkg encoding/json, method (*Decoder) Token() (Token, error) +pkg encoding/json, method (Delim) String() string +pkg encoding/json, type Delim int32 +pkg encoding/json, type Token interface {} +pkg encoding/json, type UnmarshalTypeError struct, Offset int64 +pkg flag, func UnquoteUsage(*Flag) (string, string) +pkg go/ast, type EmptyStmt struct, Implicit bool +pkg go/build, type Package struct, PkgTargetRoot string +pkg go/constant, const Bool = 1 +pkg go/constant, const Bool Kind +pkg go/constant, const Complex = 5 +pkg go/constant, const Complex Kind +pkg go/constant, const Float = 4 +pkg go/constant, const Float Kind +pkg go/constant, const Int = 3 +pkg go/constant, const Int Kind +pkg go/constant, const String = 2 +pkg go/constant, const String Kind +pkg go/constant, const Unknown = 0 +pkg go/constant, const Unknown Kind +pkg go/constant, func BinaryOp(Value, token.Token, Value) Value +pkg go/constant, func BitLen(Value) int +pkg go/constant, func BoolVal(Value) bool +pkg go/constant, func Bytes(Value) []uint8 +pkg go/constant, func Compare(Value, token.Token, Value) bool +pkg go/constant, func Denom(Value) Value +pkg go/constant, func Float32Val(Value) (float32, bool) +pkg go/constant, func Float64Val(Value) (float64, bool) +pkg go/constant, func Imag(Value) Value +pkg go/constant, func Int64Val(Value) (int64, bool) +pkg go/constant, func MakeBool(bool) Value +pkg go/constant, func MakeFloat64(float64) Value +pkg go/constant, func MakeFromBytes([]uint8) Value +pkg go/constant, func MakeFromLiteral(string, token.Token, uint) Value +pkg go/constant, func MakeImag(Value) Value +pkg go/constant, func MakeInt64(int64) Value +pkg go/constant, func MakeString(string) Value +pkg go/constant, func MakeUint64(uint64) Value +pkg go/constant, func MakeUnknown() Value +pkg go/constant, func Num(Value) Value +pkg go/constant, func Real(Value) Value +pkg go/constant, func Shift(Value, token.Token, uint) Value +pkg go/constant, func Sign(Value) int +pkg go/constant, func StringVal(Value) string +pkg go/constant, func Uint64Val(Value) (uint64, bool) +pkg go/constant, func UnaryOp(token.Token, Value, uint) Value +pkg go/constant, type Kind int +pkg go/constant, type Value interface, Kind() Kind +pkg go/constant, type Value interface, String() string +pkg go/constant, type Value interface, unexported methods +pkg go/importer, func Default() types.Importer +pkg go/importer, func For(string, Lookup) types.Importer +pkg go/importer, type Lookup func(string) (io.ReadCloser, error) +pkg go/parser, func ParseExprFrom(*token.FileSet, string, interface{}, Mode) (ast.Expr, error) +pkg go/types, const Bool = 1 +pkg go/types, const Bool BasicKind +pkg go/types, const Byte = 8 +pkg go/types, const Byte BasicKind +pkg go/types, const Complex128 = 16 +pkg go/types, const Complex128 BasicKind +pkg go/types, const Complex64 = 15 +pkg go/types, const Complex64 BasicKind +pkg go/types, const FieldVal = 0 +pkg go/types, const FieldVal SelectionKind +pkg go/types, const Float32 = 13 +pkg go/types, const Float32 BasicKind +pkg go/types, const Float64 = 14 +pkg go/types, const Float64 BasicKind +pkg go/types, const Int = 2 +pkg go/types, const Int BasicKind +pkg go/types, const Int16 = 4 +pkg go/types, const Int16 BasicKind +pkg go/types, const Int32 = 5 +pkg go/types, const Int32 BasicKind +pkg go/types, const Int64 = 6 +pkg go/types, const Int64 BasicKind +pkg go/types, const Int8 = 3 +pkg go/types, const Int8 BasicKind +pkg go/types, const Invalid = 0 +pkg go/types, const Invalid BasicKind +pkg go/types, const IsBoolean = 1 +pkg go/types, const IsBoolean BasicInfo +pkg go/types, const IsComplex = 16 +pkg go/types, const IsComplex BasicInfo +pkg go/types, const IsConstType = 59 +pkg go/types, const IsConstType BasicInfo +pkg go/types, const IsFloat = 8 +pkg go/types, const IsFloat BasicInfo +pkg go/types, const IsInteger = 2 +pkg go/types, const IsInteger BasicInfo +pkg go/types, const IsNumeric = 26 +pkg go/types, const IsNumeric BasicInfo +pkg go/types, const IsOrdered = 42 +pkg go/types, const IsOrdered BasicInfo +pkg go/types, const IsString = 32 +pkg go/types, const IsString BasicInfo +pkg go/types, const IsUnsigned = 4 +pkg go/types, const IsUnsigned BasicInfo +pkg go/types, const IsUntyped = 64 +pkg go/types, const IsUntyped BasicInfo +pkg go/types, const MethodExpr = 2 +pkg go/types, const MethodExpr SelectionKind +pkg go/types, const MethodVal = 1 +pkg go/types, const MethodVal SelectionKind +pkg go/types, const RecvOnly = 2 +pkg go/types, const RecvOnly ChanDir +pkg go/types, const Rune = 5 +pkg go/types, const Rune BasicKind +pkg go/types, const SendOnly = 1 +pkg go/types, const SendOnly ChanDir +pkg go/types, const SendRecv = 0 +pkg go/types, const SendRecv ChanDir +pkg go/types, const String = 17 +pkg go/types, const String BasicKind +pkg go/types, const Uint = 7 +pkg go/types, const Uint BasicKind +pkg go/types, const Uint16 = 9 +pkg go/types, const Uint16 BasicKind +pkg go/types, const Uint32 = 10 +pkg go/types, const Uint32 BasicKind +pkg go/types, const Uint64 = 11 +pkg go/types, const Uint64 BasicKind +pkg go/types, const Uint8 = 8 +pkg go/types, const Uint8 BasicKind +pkg go/types, const Uintptr = 12 +pkg go/types, const Uintptr BasicKind +pkg go/types, const UnsafePointer = 18 +pkg go/types, const UnsafePointer BasicKind +pkg go/types, const UntypedBool = 19 +pkg go/types, const UntypedBool BasicKind +pkg go/types, const UntypedComplex = 23 +pkg go/types, const UntypedComplex BasicKind +pkg go/types, const UntypedFloat = 22 +pkg go/types, const UntypedFloat BasicKind +pkg go/types, const UntypedInt = 20 +pkg go/types, const UntypedInt BasicKind +pkg go/types, const UntypedNil = 25 +pkg go/types, const UntypedNil BasicKind +pkg go/types, const UntypedRune = 21 +pkg go/types, const UntypedRune BasicKind +pkg go/types, const UntypedString = 24 +pkg go/types, const UntypedString BasicKind +pkg go/types, func AssertableTo(*Interface, Type) bool +pkg go/types, func AssignableTo(Type, Type) bool +pkg go/types, func Comparable(Type) bool +pkg go/types, func ConvertibleTo(Type, Type) bool +pkg go/types, func DefPredeclaredTestFuncs() +pkg go/types, func Eval(*token.FileSet, *Package, token.Pos, string) (TypeAndValue, error) +pkg go/types, func ExprString(ast.Expr) string +pkg go/types, func Id(*Package, string) string +pkg go/types, func Identical(Type, Type) bool +pkg go/types, func Implements(Type, *Interface) bool +pkg go/types, func IsInterface(Type) bool +pkg go/types, func LookupFieldOrMethod(Type, bool, *Package, string) (Object, []int, bool) +pkg go/types, func MissingMethod(Type, *Interface, bool) (*Func, bool) +pkg go/types, func NewArray(Type, int64) *Array +pkg go/types, func NewChan(ChanDir, Type) *Chan +pkg go/types, func NewChecker(*Config, *token.FileSet, *Package, *Info) *Checker +pkg go/types, func NewConst(token.Pos, *Package, string, Type, constant.Value) *Const +pkg go/types, func NewField(token.Pos, *Package, string, Type, bool) *Var +pkg go/types, func NewFunc(token.Pos, *Package, string, *Signature) *Func +pkg go/types, func NewInterface([]*Func, []*Named) *Interface +pkg go/types, func NewLabel(token.Pos, *Package, string) *Label +pkg go/types, func NewMap(Type, Type) *Map +pkg go/types, func NewMethodSet(Type) *MethodSet +pkg go/types, func NewNamed(*TypeName, Type, []*Func) *Named +pkg go/types, func NewPackage(string, string) *Package +pkg go/types, func NewParam(token.Pos, *Package, string, Type) *Var +pkg go/types, func NewPkgName(token.Pos, *Package, string, *Package) *PkgName +pkg go/types, func NewPointer(Type) *Pointer +pkg go/types, func NewScope(*Scope, token.Pos, token.Pos, string) *Scope +pkg go/types, func NewSignature(*Var, *Tuple, *Tuple, bool) *Signature +pkg go/types, func NewSlice(Type) *Slice +pkg go/types, func NewStruct([]*Var, []string) *Struct +pkg go/types, func NewTuple(...*Var) *Tuple +pkg go/types, func NewTypeName(token.Pos, *Package, string, Type) *TypeName +pkg go/types, func NewVar(token.Pos, *Package, string, Type) *Var +pkg go/types, func ObjectString(Object, Qualifier) string +pkg go/types, func RelativeTo(*Package) Qualifier +pkg go/types, func SelectionString(*Selection, Qualifier) string +pkg go/types, func TypeString(Type, Qualifier) string +pkg go/types, func WriteExpr(*bytes.Buffer, ast.Expr) +pkg go/types, func WriteSignature(*bytes.Buffer, *Signature, Qualifier) +pkg go/types, func WriteType(*bytes.Buffer, Type, Qualifier) +pkg go/types, method (*Array) Elem() Type +pkg go/types, method (*Array) Len() int64 +pkg go/types, method (*Array) String() string +pkg go/types, method (*Array) Underlying() Type +pkg go/types, method (*Basic) Info() BasicInfo +pkg go/types, method (*Basic) Kind() BasicKind +pkg go/types, method (*Basic) Name() string +pkg go/types, method (*Basic) String() string +pkg go/types, method (*Basic) Underlying() Type +pkg go/types, method (*Builtin) Exported() bool +pkg go/types, method (*Builtin) Id() string +pkg go/types, method (*Builtin) Name() string +pkg go/types, method (*Builtin) Parent() *Scope +pkg go/types, method (*Builtin) Pkg() *Package +pkg go/types, method (*Builtin) Pos() token.Pos +pkg go/types, method (*Builtin) String() string +pkg go/types, method (*Builtin) Type() Type +pkg go/types, method (*Chan) Dir() ChanDir +pkg go/types, method (*Chan) Elem() Type +pkg go/types, method (*Chan) String() string +pkg go/types, method (*Chan) Underlying() Type +pkg go/types, method (*Checker) Files([]*ast.File) error +pkg go/types, method (*Config) Check(string, *token.FileSet, []*ast.File, *Info) (*Package, error) +pkg go/types, method (*Const) Exported() bool +pkg go/types, method (*Const) Id() string +pkg go/types, method (*Const) Name() string +pkg go/types, method (*Const) Parent() *Scope +pkg go/types, method (*Const) Pkg() *Package +pkg go/types, method (*Const) Pos() token.Pos +pkg go/types, method (*Const) String() string +pkg go/types, method (*Const) Type() Type +pkg go/types, method (*Const) Val() constant.Value +pkg go/types, method (*Func) Exported() bool +pkg go/types, method (*Func) FullName() string +pkg go/types, method (*Func) Id() string +pkg go/types, method (*Func) Name() string +pkg go/types, method (*Func) Parent() *Scope +pkg go/types, method (*Func) Pkg() *Package +pkg go/types, method (*Func) Pos() token.Pos +pkg go/types, method (*Func) Scope() *Scope +pkg go/types, method (*Func) String() string +pkg go/types, method (*Func) Type() Type +pkg go/types, method (*Info) ObjectOf(*ast.Ident) Object +pkg go/types, method (*Info) TypeOf(ast.Expr) Type +pkg go/types, method (*Initializer) String() string +pkg go/types, method (*Interface) Complete() *Interface +pkg go/types, method (*Interface) Embedded(int) *Named +pkg go/types, method (*Interface) Empty() bool +pkg go/types, method (*Interface) ExplicitMethod(int) *Func +pkg go/types, method (*Interface) Method(int) *Func +pkg go/types, method (*Interface) NumEmbeddeds() int +pkg go/types, method (*Interface) NumExplicitMethods() int +pkg go/types, method (*Interface) NumMethods() int +pkg go/types, method (*Interface) String() string +pkg go/types, method (*Interface) Underlying() Type +pkg go/types, method (*Label) Exported() bool +pkg go/types, method (*Label) Id() string +pkg go/types, method (*Label) Name() string +pkg go/types, method (*Label) Parent() *Scope +pkg go/types, method (*Label) Pkg() *Package +pkg go/types, method (*Label) Pos() token.Pos +pkg go/types, method (*Label) String() string +pkg go/types, method (*Label) Type() Type +pkg go/types, method (*Map) Elem() Type +pkg go/types, method (*Map) Key() Type +pkg go/types, method (*Map) String() string +pkg go/types, method (*Map) Underlying() Type +pkg go/types, method (*MethodSet) At(int) *Selection +pkg go/types, method (*MethodSet) Len() int +pkg go/types, method (*MethodSet) Lookup(*Package, string) *Selection +pkg go/types, method (*MethodSet) String() string +pkg go/types, method (*Named) AddMethod(*Func) +pkg go/types, method (*Named) Method(int) *Func +pkg go/types, method (*Named) NumMethods() int +pkg go/types, method (*Named) Obj() *TypeName +pkg go/types, method (*Named) SetUnderlying(Type) +pkg go/types, method (*Named) String() string +pkg go/types, method (*Named) Underlying() Type +pkg go/types, method (*Nil) Exported() bool +pkg go/types, method (*Nil) Id() string +pkg go/types, method (*Nil) Name() string +pkg go/types, method (*Nil) Parent() *Scope +pkg go/types, method (*Nil) Pkg() *Package +pkg go/types, method (*Nil) Pos() token.Pos +pkg go/types, method (*Nil) String() string +pkg go/types, method (*Nil) Type() Type +pkg go/types, method (*Package) Complete() bool +pkg go/types, method (*Package) Imports() []*Package +pkg go/types, method (*Package) MarkComplete() +pkg go/types, method (*Package) Name() string +pkg go/types, method (*Package) Path() string +pkg go/types, method (*Package) Scope() *Scope +pkg go/types, method (*Package) SetImports([]*Package) +pkg go/types, method (*Package) String() string +pkg go/types, method (*PkgName) Exported() bool +pkg go/types, method (*PkgName) Id() string +pkg go/types, method (*PkgName) Imported() *Package +pkg go/types, method (*PkgName) Name() string +pkg go/types, method (*PkgName) Parent() *Scope +pkg go/types, method (*PkgName) Pkg() *Package +pkg go/types, method (*PkgName) Pos() token.Pos +pkg go/types, method (*PkgName) String() string +pkg go/types, method (*PkgName) Type() Type +pkg go/types, method (*Pointer) Elem() Type +pkg go/types, method (*Pointer) String() string +pkg go/types, method (*Pointer) Underlying() Type +pkg go/types, method (*Scope) Child(int) *Scope +pkg go/types, method (*Scope) Contains(token.Pos) bool +pkg go/types, method (*Scope) End() token.Pos +pkg go/types, method (*Scope) Innermost(token.Pos) *Scope +pkg go/types, method (*Scope) Insert(Object) Object +pkg go/types, method (*Scope) Len() int +pkg go/types, method (*Scope) Lookup(string) Object +pkg go/types, method (*Scope) LookupParent(string, token.Pos) (*Scope, Object) +pkg go/types, method (*Scope) Names() []string +pkg go/types, method (*Scope) NumChildren() int +pkg go/types, method (*Scope) Parent() *Scope +pkg go/types, method (*Scope) Pos() token.Pos +pkg go/types, method (*Scope) String() string +pkg go/types, method (*Scope) WriteTo(io.Writer, int, bool) +pkg go/types, method (*Selection) Index() []int +pkg go/types, method (*Selection) Indirect() bool +pkg go/types, method (*Selection) Kind() SelectionKind +pkg go/types, method (*Selection) Obj() Object +pkg go/types, method (*Selection) Recv() Type +pkg go/types, method (*Selection) String() string +pkg go/types, method (*Selection) Type() Type +pkg go/types, method (*Signature) Params() *Tuple +pkg go/types, method (*Signature) Recv() *Var +pkg go/types, method (*Signature) Results() *Tuple +pkg go/types, method (*Signature) String() string +pkg go/types, method (*Signature) Underlying() Type +pkg go/types, method (*Signature) Variadic() bool +pkg go/types, method (*Slice) Elem() Type +pkg go/types, method (*Slice) String() string +pkg go/types, method (*Slice) Underlying() Type +pkg go/types, method (*StdSizes) Alignof(Type) int64 +pkg go/types, method (*StdSizes) Offsetsof([]*Var) []int64 +pkg go/types, method (*StdSizes) Sizeof(Type) int64 +pkg go/types, method (*Struct) Field(int) *Var +pkg go/types, method (*Struct) NumFields() int +pkg go/types, method (*Struct) String() string +pkg go/types, method (*Struct) Tag(int) string +pkg go/types, method (*Struct) Underlying() Type +pkg go/types, method (*Tuple) At(int) *Var +pkg go/types, method (*Tuple) Len() int +pkg go/types, method (*Tuple) String() string +pkg go/types, method (*Tuple) Underlying() Type +pkg go/types, method (*TypeName) Exported() bool +pkg go/types, method (*TypeName) Id() string +pkg go/types, method (*TypeName) Name() string +pkg go/types, method (*TypeName) Parent() *Scope +pkg go/types, method (*TypeName) Pkg() *Package +pkg go/types, method (*TypeName) Pos() token.Pos +pkg go/types, method (*TypeName) String() string +pkg go/types, method (*TypeName) Type() Type +pkg go/types, method (*Var) Anonymous() bool +pkg go/types, method (*Var) Exported() bool +pkg go/types, method (*Var) Id() string +pkg go/types, method (*Var) IsField() bool +pkg go/types, method (*Var) Name() string +pkg go/types, method (*Var) Parent() *Scope +pkg go/types, method (*Var) Pkg() *Package +pkg go/types, method (*Var) Pos() token.Pos +pkg go/types, method (*Var) String() string +pkg go/types, method (*Var) Type() Type +pkg go/types, method (Checker) ObjectOf(*ast.Ident) Object +pkg go/types, method (Checker) TypeOf(ast.Expr) Type +pkg go/types, method (Error) Error() string +pkg go/types, method (TypeAndValue) Addressable() bool +pkg go/types, method (TypeAndValue) Assignable() bool +pkg go/types, method (TypeAndValue) HasOk() bool +pkg go/types, method (TypeAndValue) IsBuiltin() bool +pkg go/types, method (TypeAndValue) IsNil() bool +pkg go/types, method (TypeAndValue) IsType() bool +pkg go/types, method (TypeAndValue) IsValue() bool +pkg go/types, method (TypeAndValue) IsVoid() bool +pkg go/types, type Array struct +pkg go/types, type Basic struct +pkg go/types, type BasicInfo int +pkg go/types, type BasicKind int +pkg go/types, type Builtin struct +pkg go/types, type Chan struct +pkg go/types, type ChanDir int +pkg go/types, type Checker struct +pkg go/types, type Checker struct, embedded *Info +pkg go/types, type Config struct +pkg go/types, type Config struct, DisableUnusedImportCheck bool +pkg go/types, type Config struct, Error func(error) +pkg go/types, type Config struct, FakeImportC bool +pkg go/types, type Config struct, IgnoreFuncBodies bool +pkg go/types, type Config struct, Importer Importer +pkg go/types, type Config struct, Sizes Sizes +pkg go/types, type Const struct +pkg go/types, type Error struct +pkg go/types, type Error struct, Fset *token.FileSet +pkg go/types, type Error struct, Msg string +pkg go/types, type Error struct, Pos token.Pos +pkg go/types, type Error struct, Soft bool +pkg go/types, type Func struct +pkg go/types, type Importer interface { Import } +pkg go/types, type Importer interface, Import(string) (*Package, error) +pkg go/types, type Info struct +pkg go/types, type Info struct, Defs map[*ast.Ident]Object +pkg go/types, type Info struct, Implicits map[ast.Node]Object +pkg go/types, type Info struct, InitOrder []*Initializer +pkg go/types, type Info struct, Scopes map[ast.Node]*Scope +pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection +pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue +pkg go/types, type Info struct, Uses map[*ast.Ident]Object +pkg go/types, type Initializer struct +pkg go/types, type Initializer struct, Lhs []*Var +pkg go/types, type Initializer struct, Rhs ast.Expr +pkg go/types, type Interface struct +pkg go/types, type Label struct +pkg go/types, type Map struct +pkg go/types, type MethodSet struct +pkg go/types, type Named struct +pkg go/types, type Nil struct +pkg go/types, type Object interface, Exported() bool +pkg go/types, type Object interface, Id() string +pkg go/types, type Object interface, Name() string +pkg go/types, type Object interface, Parent() *Scope +pkg go/types, type Object interface, Pkg() *Package +pkg go/types, type Object interface, Pos() token.Pos +pkg go/types, type Object interface, String() string +pkg go/types, type Object interface, Type() Type +pkg go/types, type Object interface, unexported methods +pkg go/types, type Package struct +pkg go/types, type PkgName struct +pkg go/types, type Pointer struct +pkg go/types, type Qualifier func(*Package) string +pkg go/types, type Scope struct +pkg go/types, type Selection struct +pkg go/types, type SelectionKind int +pkg go/types, type Signature struct +pkg go/types, type Sizes interface { Alignof, Offsetsof, Sizeof } +pkg go/types, type Sizes interface, Alignof(Type) int64 +pkg go/types, type Sizes interface, Offsetsof([]*Var) []int64 +pkg go/types, type Sizes interface, Sizeof(Type) int64 +pkg go/types, type Slice struct +pkg go/types, type StdSizes struct +pkg go/types, type StdSizes struct, MaxAlign int64 +pkg go/types, type StdSizes struct, WordSize int64 +pkg go/types, type Struct struct +pkg go/types, type Tuple struct +pkg go/types, type Type interface { String, Underlying } +pkg go/types, type Type interface, String() string +pkg go/types, type Type interface, Underlying() Type +pkg go/types, type TypeAndValue struct +pkg go/types, type TypeAndValue struct, Type Type +pkg go/types, type TypeAndValue struct, Value constant.Value +pkg go/types, type TypeName struct +pkg go/types, type Var struct +pkg go/types, var Typ []*Basic +pkg go/types, var Universe *Scope +pkg go/types, var Unsafe *Package +pkg html/template, method (*Template) Option(...string) *Template +pkg image, const YCbCrSubsampleRatio410 = 5 +pkg image, const YCbCrSubsampleRatio410 YCbCrSubsampleRatio +pkg image, const YCbCrSubsampleRatio411 = 4 +pkg image, const YCbCrSubsampleRatio411 YCbCrSubsampleRatio +pkg image, func NewCMYK(Rectangle) *CMYK +pkg image, method (*CMYK) At(int, int) color.Color +pkg image, method (*CMYK) Bounds() Rectangle +pkg image, method (*CMYK) CMYKAt(int, int) color.CMYK +pkg image, method (*CMYK) ColorModel() color.Model +pkg image, method (*CMYK) Opaque() bool +pkg image, method (*CMYK) PixOffset(int, int) int +pkg image, method (*CMYK) Set(int, int, color.Color) +pkg image, method (*CMYK) SetCMYK(int, int, color.CMYK) +pkg image, method (*CMYK) SubImage(Rectangle) Image +pkg image, method (Rectangle) At(int, int) color.Color +pkg image, method (Rectangle) Bounds() Rectangle +pkg image, method (Rectangle) ColorModel() color.Model +pkg image, type CMYK struct +pkg image, type CMYK struct, Pix []uint8 +pkg image, type CMYK struct, Rect Rectangle +pkg image, type CMYK struct, Stride int +pkg image/color, func CMYKToRGB(uint8, uint8, uint8, uint8) (uint8, uint8, uint8) +pkg image/color, func RGBToCMYK(uint8, uint8, uint8) (uint8, uint8, uint8, uint8) +pkg image/color, method (CMYK) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, type CMYK struct +pkg image/color, type CMYK struct, C uint8 +pkg image/color, type CMYK struct, K uint8 +pkg image/color, type CMYK struct, M uint8 +pkg image/color, type CMYK struct, Y uint8 +pkg image/color, var CMYKModel Model +pkg image/gif, const DisposalBackground = 2 +pkg image/gif, const DisposalBackground ideal-int +pkg image/gif, const DisposalNone = 1 +pkg image/gif, const DisposalNone ideal-int +pkg image/gif, const DisposalPrevious = 3 +pkg image/gif, const DisposalPrevious ideal-int +pkg image/gif, type GIF struct, BackgroundIndex uint8 +pkg image/gif, type GIF struct, Config image.Config +pkg image/gif, type GIF struct, Disposal []uint8 +pkg io, func CopyBuffer(Writer, Reader, []uint8) (int64, error) +pkg log, const LUTC = 32 +pkg log, const LUTC ideal-int +pkg log, func Output(int, string) error +pkg log, method (*Logger) SetOutput(io.Writer) +pkg math/big, const Above = 1 +pkg math/big, const Above Accuracy +pkg math/big, const AwayFromZero = 3 +pkg math/big, const AwayFromZero RoundingMode +pkg math/big, const Below = -1 +pkg math/big, const Below Accuracy +pkg math/big, const Exact = 0 +pkg math/big, const Exact Accuracy +pkg math/big, const MaxExp = 2147483647 +pkg math/big, const MaxExp ideal-int +pkg math/big, const MaxPrec = 4294967295 +pkg math/big, const MaxPrec ideal-int +pkg math/big, const MinExp = -2147483648 +pkg math/big, const MinExp ideal-int +pkg math/big, const ToNearestAway = 1 +pkg math/big, const ToNearestAway RoundingMode +pkg math/big, const ToNearestEven = 0 +pkg math/big, const ToNearestEven RoundingMode +pkg math/big, const ToNegativeInf = 4 +pkg math/big, const ToNegativeInf RoundingMode +pkg math/big, const ToPositiveInf = 5 +pkg math/big, const ToPositiveInf RoundingMode +pkg math/big, const ToZero = 2 +pkg math/big, const ToZero RoundingMode +pkg math/big, func Jacobi(*Int, *Int) int +pkg math/big, func NewFloat(float64) *Float +pkg math/big, func ParseFloat(string, int, uint, RoundingMode) (*Float, int, error) +pkg math/big, method (*Float) Abs(*Float) *Float +pkg math/big, method (*Float) Acc() Accuracy +pkg math/big, method (*Float) Add(*Float, *Float) *Float +pkg math/big, method (*Float) Append([]uint8, uint8, int) []uint8 +pkg math/big, method (*Float) Cmp(*Float) int +pkg math/big, method (*Float) Copy(*Float) *Float +pkg math/big, method (*Float) Float32() (float32, Accuracy) +pkg math/big, method (*Float) Float64() (float64, Accuracy) +pkg math/big, method (*Float) Format(fmt.State, int32) +pkg math/big, method (*Float) Int(*Int) (*Int, Accuracy) +pkg math/big, method (*Float) Int64() (int64, Accuracy) +pkg math/big, method (*Float) IsInf() bool +pkg math/big, method (*Float) IsInt() bool +pkg math/big, method (*Float) MantExp(*Float) int +pkg math/big, method (*Float) MinPrec() uint +pkg math/big, method (*Float) Mode() RoundingMode +pkg math/big, method (*Float) Mul(*Float, *Float) *Float +pkg math/big, method (*Float) Neg(*Float) *Float +pkg math/big, method (*Float) Parse(string, int) (*Float, int, error) +pkg math/big, method (*Float) Prec() uint +pkg math/big, method (*Float) Quo(*Float, *Float) *Float +pkg math/big, method (*Float) Rat(*Rat) (*Rat, Accuracy) +pkg math/big, method (*Float) Set(*Float) *Float +pkg math/big, method (*Float) SetFloat64(float64) *Float +pkg math/big, method (*Float) SetInf(bool) *Float +pkg math/big, method (*Float) SetInt(*Int) *Float +pkg math/big, method (*Float) SetInt64(int64) *Float +pkg math/big, method (*Float) SetMantExp(*Float, int) *Float +pkg math/big, method (*Float) SetMode(RoundingMode) *Float +pkg math/big, method (*Float) SetPrec(uint) *Float +pkg math/big, method (*Float) SetRat(*Rat) *Float +pkg math/big, method (*Float) SetString(string) (*Float, bool) +pkg math/big, method (*Float) SetUint64(uint64) *Float +pkg math/big, method (*Float) Sign() int +pkg math/big, method (*Float) Signbit() bool +pkg math/big, method (*Float) String() string +pkg math/big, method (*Float) Sub(*Float, *Float) *Float +pkg math/big, method (*Float) Text(uint8, int) string +pkg math/big, method (*Float) Uint64() (uint64, Accuracy) +pkg math/big, method (*Int) ModSqrt(*Int, *Int) *Int +pkg math/big, method (Accuracy) String() string +pkg math/big, method (ErrNaN) Error() string +pkg math/big, method (RoundingMode) String() string +pkg math/big, type Accuracy int8 +pkg math/big, type ErrNaN struct +pkg math/big, type Float struct +pkg math/big, type RoundingMode uint8 +pkg mime, const BEncoding = 98 +pkg mime, const BEncoding WordEncoder +pkg mime, const QEncoding = 113 +pkg mime, const QEncoding WordEncoder +pkg mime, func ExtensionsByType(string) ([]string, error) +pkg mime, method (*WordDecoder) Decode(string) (string, error) +pkg mime, method (*WordDecoder) DecodeHeader(string) (string, error) +pkg mime, method (WordEncoder) Encode(string, string) string +pkg mime, type WordDecoder struct +pkg mime, type WordDecoder struct, CharsetReader func(string, io.Reader) (io.Reader, error) +pkg mime, type WordEncoder uint8 +pkg mime/quotedprintable, func NewReader(io.Reader) *Reader +pkg mime/quotedprintable, func NewWriter(io.Writer) *Writer +pkg mime/quotedprintable, method (*Reader) Read([]uint8) (int, error) +pkg mime/quotedprintable, method (*Writer) Close() error +pkg mime/quotedprintable, method (*Writer) Write([]uint8) (int, error) +pkg mime/quotedprintable, type Reader struct +pkg mime/quotedprintable, type Writer struct +pkg mime/quotedprintable, type Writer struct, Binary bool +pkg net, type Dialer struct, FallbackDelay time.Duration +pkg net, type OpError struct, Source Addr +pkg net/http, type Request struct, Cancel <-chan struct +pkg net/http/fcgi, var ErrConnClosed error +pkg net/http/fcgi, var ErrRequestAborted error +pkg net/http/pprof, func Trace(http.ResponseWriter, *http.Request) +pkg net/mail, method (*AddressParser) Parse(string) (*Address, error) +pkg net/mail, method (*AddressParser) ParseList(string) ([]*Address, error) +pkg net/mail, type AddressParser struct +pkg net/mail, type AddressParser struct, WordDecoder *mime.WordDecoder +pkg net/smtp, method (*Client) TLSConnectionState() (tls.ConnectionState, bool) +pkg net/url, method (*URL) EscapedPath() string +pkg net/url, type URL struct, RawPath string +pkg os, func LookupEnv(string) (string, bool) +pkg os/signal, func Ignore(...os.Signal) +pkg os/signal, func Reset(...os.Signal) +pkg reflect, func ArrayOf(int, Type) Type +pkg reflect, func FuncOf([]Type, []Type, bool) Type +pkg runtime, func ReadTrace() []uint8 +pkg runtime, func StartTrace() error +pkg runtime, func StopTrace() +pkg runtime, type MemStats struct, GCCPUFraction float64 +pkg runtime/trace, func Start(io.Writer) error +pkg runtime/trace, func Stop() +pkg strings, func Compare(string, string) int +pkg strings, func LastIndexByte(string, uint8) int +pkg strings, method (*Reader) Size() int64 +pkg syscall (darwin-386), type SysProcAttr struct, Ctty int +pkg syscall (darwin-386), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-386), type SysProcAttr struct, Pgid int +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Ctty int +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Pgid int +pkg syscall (darwin-amd64), type SysProcAttr struct, Ctty int +pkg syscall (darwin-amd64), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-amd64), type SysProcAttr struct, Pgid int +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-386), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-386), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-386), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-386-cgo), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-amd64), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-amd64), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-amd64), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-amd64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-arm), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-arm), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-arm), type SysProcAttr struct, Pgid int +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Ctty int +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (freebsd-arm-cgo), type SysProcAttr struct, Pgid int +pkg syscall (linux-386), type SysProcAttr struct, Foreground bool +pkg syscall (linux-386), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-386), type SysProcAttr struct, Pgid int +pkg syscall (linux-386-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, Pgid int +pkg syscall (linux-amd64), type SysProcAttr struct, Foreground bool +pkg syscall (linux-amd64), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-amd64), type SysProcAttr struct, Pgid int +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (linux-arm), type SysProcAttr struct, Foreground bool +pkg syscall (linux-arm), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-arm), type SysProcAttr struct, Pgid int +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappingsEnableSetgroups bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-386), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-386), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-386), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-386-cgo), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-amd64), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-amd64), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-amd64), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-amd64-cgo), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-arm), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-arm), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-arm), type SysProcAttr struct, Pgid int +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Ctty int +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (netbsd-arm-cgo), type SysProcAttr struct, Pgid int +pkg syscall (openbsd-386), type SysProcAttr struct, Ctty int +pkg syscall (openbsd-386), type SysProcAttr struct, Foreground bool +pkg syscall (openbsd-386), type SysProcAttr struct, Pgid int +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Ctty int +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (openbsd-386-cgo), type SysProcAttr struct, Pgid int +pkg syscall (openbsd-amd64), type SysProcAttr struct, Ctty int +pkg syscall (openbsd-amd64), type SysProcAttr struct, Foreground bool +pkg syscall (openbsd-amd64), type SysProcAttr struct, Pgid int +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Ctty int +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Foreground bool +pkg syscall (openbsd-amd64-cgo), type SysProcAttr struct, Pgid int +pkg text/template, method (*Template) DefinedTemplates() string +pkg text/template, method (*Template) Option(...string) *Template +pkg time, method (Time) AppendFormat([]uint8, string) []uint8 +pkg unicode, const Version = "8.0.0" +pkg unicode, var Ahom *RangeTable +pkg unicode, var Anatolian_Hieroglyphs *RangeTable +pkg unicode, var Hatran *RangeTable +pkg unicode, var Multani *RangeTable +pkg unicode, var Old_Hungarian *RangeTable +pkg unicode, var SignWriting *RangeTable diff --git a/platform/dbops/binaries/go/go/api/go1.6.txt b/platform/dbops/binaries/go/go/api/go1.6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d63efd07059ded3698c2519908541f4f1de5ba73 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.6.txt @@ -0,0 +1,275 @@ +pkg archive/zip, method (*ReadCloser) RegisterDecompressor(uint16, Decompressor) +pkg archive/zip, method (*Reader) RegisterDecompressor(uint16, Decompressor) +pkg archive/zip, method (*Writer) RegisterCompressor(uint16, Compressor) +pkg bufio, method (*Scanner) Buffer([]uint8, int) +pkg bufio, var ErrFinalToken error +pkg crypto/tls, const TLS_RSA_WITH_AES_128_GCM_SHA256 = 156 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_GCM_SHA256 uint16 +pkg crypto/tls, const TLS_RSA_WITH_AES_256_GCM_SHA384 = 157 +pkg crypto/tls, const TLS_RSA_WITH_AES_256_GCM_SHA384 uint16 +pkg crypto/tls, method (RecordHeaderError) Error() string +pkg crypto/tls, type RecordHeaderError struct +pkg crypto/tls, type RecordHeaderError struct, Msg string +pkg crypto/tls, type RecordHeaderError struct, RecordHeader [5]uint8 +pkg crypto/x509, method (InsecureAlgorithmError) Error() string +pkg crypto/x509, method (SignatureAlgorithm) String() string +pkg crypto/x509, type InsecureAlgorithmError int +pkg database/sql, method (*DB) SetConnMaxLifetime(time.Duration) +pkg debug/dwarf, const ClassUnknown = 0 +pkg debug/dwarf, const ClassUnknown Class +pkg debug/elf, const COMPRESS_HIOS = 1879048191 +pkg debug/elf, const COMPRESS_HIOS CompressionType +pkg debug/elf, const COMPRESS_HIPROC = 2147483647 +pkg debug/elf, const COMPRESS_HIPROC CompressionType +pkg debug/elf, const COMPRESS_LOOS = 1610612736 +pkg debug/elf, const COMPRESS_LOOS CompressionType +pkg debug/elf, const COMPRESS_LOPROC = 1879048192 +pkg debug/elf, const COMPRESS_LOPROC CompressionType +pkg debug/elf, const COMPRESS_ZLIB = 1 +pkg debug/elf, const COMPRESS_ZLIB CompressionType +pkg debug/elf, const R_MIPS_16 = 1 +pkg debug/elf, const R_MIPS_16 R_MIPS +pkg debug/elf, const R_MIPS_26 = 4 +pkg debug/elf, const R_MIPS_26 R_MIPS +pkg debug/elf, const R_MIPS_32 = 2 +pkg debug/elf, const R_MIPS_32 R_MIPS +pkg debug/elf, const R_MIPS_64 = 18 +pkg debug/elf, const R_MIPS_64 R_MIPS +pkg debug/elf, const R_MIPS_ADD_IMMEDIATE = 34 +pkg debug/elf, const R_MIPS_ADD_IMMEDIATE R_MIPS +pkg debug/elf, const R_MIPS_CALL16 = 11 +pkg debug/elf, const R_MIPS_CALL16 R_MIPS +pkg debug/elf, const R_MIPS_CALL_HI16 = 30 +pkg debug/elf, const R_MIPS_CALL_HI16 R_MIPS +pkg debug/elf, const R_MIPS_CALL_LO16 = 31 +pkg debug/elf, const R_MIPS_CALL_LO16 R_MIPS +pkg debug/elf, const R_MIPS_DELETE = 27 +pkg debug/elf, const R_MIPS_DELETE R_MIPS +pkg debug/elf, const R_MIPS_GOT16 = 9 +pkg debug/elf, const R_MIPS_GOT16 R_MIPS +pkg debug/elf, const R_MIPS_GOT_DISP = 19 +pkg debug/elf, const R_MIPS_GOT_DISP R_MIPS +pkg debug/elf, const R_MIPS_GOT_HI16 = 22 +pkg debug/elf, const R_MIPS_GOT_HI16 R_MIPS +pkg debug/elf, const R_MIPS_GOT_LO16 = 23 +pkg debug/elf, const R_MIPS_GOT_LO16 R_MIPS +pkg debug/elf, const R_MIPS_GOT_OFST = 21 +pkg debug/elf, const R_MIPS_GOT_OFST R_MIPS +pkg debug/elf, const R_MIPS_GOT_PAGE = 20 +pkg debug/elf, const R_MIPS_GOT_PAGE R_MIPS +pkg debug/elf, const R_MIPS_GPREL16 = 7 +pkg debug/elf, const R_MIPS_GPREL16 R_MIPS +pkg debug/elf, const R_MIPS_GPREL32 = 12 +pkg debug/elf, const R_MIPS_GPREL32 R_MIPS +pkg debug/elf, const R_MIPS_HI16 = 5 +pkg debug/elf, const R_MIPS_HI16 R_MIPS +pkg debug/elf, const R_MIPS_HIGHER = 28 +pkg debug/elf, const R_MIPS_HIGHER R_MIPS +pkg debug/elf, const R_MIPS_HIGHEST = 29 +pkg debug/elf, const R_MIPS_HIGHEST R_MIPS +pkg debug/elf, const R_MIPS_INSERT_A = 25 +pkg debug/elf, const R_MIPS_INSERT_A R_MIPS +pkg debug/elf, const R_MIPS_INSERT_B = 26 +pkg debug/elf, const R_MIPS_INSERT_B R_MIPS +pkg debug/elf, const R_MIPS_JALR = 37 +pkg debug/elf, const R_MIPS_JALR R_MIPS +pkg debug/elf, const R_MIPS_LITERAL = 8 +pkg debug/elf, const R_MIPS_LITERAL R_MIPS +pkg debug/elf, const R_MIPS_LO16 = 6 +pkg debug/elf, const R_MIPS_LO16 R_MIPS +pkg debug/elf, const R_MIPS_NONE = 0 +pkg debug/elf, const R_MIPS_NONE R_MIPS +pkg debug/elf, const R_MIPS_PC16 = 10 +pkg debug/elf, const R_MIPS_PC16 R_MIPS +pkg debug/elf, const R_MIPS_PJUMP = 35 +pkg debug/elf, const R_MIPS_PJUMP R_MIPS +pkg debug/elf, const R_MIPS_REL16 = 33 +pkg debug/elf, const R_MIPS_REL16 R_MIPS +pkg debug/elf, const R_MIPS_REL32 = 3 +pkg debug/elf, const R_MIPS_REL32 R_MIPS +pkg debug/elf, const R_MIPS_RELGOT = 36 +pkg debug/elf, const R_MIPS_RELGOT R_MIPS +pkg debug/elf, const R_MIPS_SCN_DISP = 32 +pkg debug/elf, const R_MIPS_SCN_DISP R_MIPS +pkg debug/elf, const R_MIPS_SHIFT5 = 16 +pkg debug/elf, const R_MIPS_SHIFT5 R_MIPS +pkg debug/elf, const R_MIPS_SHIFT6 = 17 +pkg debug/elf, const R_MIPS_SHIFT6 R_MIPS +pkg debug/elf, const R_MIPS_SUB = 24 +pkg debug/elf, const R_MIPS_SUB R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPMOD32 = 38 +pkg debug/elf, const R_MIPS_TLS_DTPMOD32 R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPMOD64 = 40 +pkg debug/elf, const R_MIPS_TLS_DTPMOD64 R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPREL32 = 39 +pkg debug/elf, const R_MIPS_TLS_DTPREL32 R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPREL64 = 41 +pkg debug/elf, const R_MIPS_TLS_DTPREL64 R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 = 44 +pkg debug/elf, const R_MIPS_TLS_DTPREL_HI16 R_MIPS +pkg debug/elf, const R_MIPS_TLS_DTPREL_LO16 = 45 +pkg debug/elf, const R_MIPS_TLS_DTPREL_LO16 R_MIPS +pkg debug/elf, const R_MIPS_TLS_GD = 42 +pkg debug/elf, const R_MIPS_TLS_GD R_MIPS +pkg debug/elf, const R_MIPS_TLS_GOTTPREL = 46 +pkg debug/elf, const R_MIPS_TLS_GOTTPREL R_MIPS +pkg debug/elf, const R_MIPS_TLS_LDM = 43 +pkg debug/elf, const R_MIPS_TLS_LDM R_MIPS +pkg debug/elf, const R_MIPS_TLS_TPREL32 = 47 +pkg debug/elf, const R_MIPS_TLS_TPREL32 R_MIPS +pkg debug/elf, const R_MIPS_TLS_TPREL64 = 48 +pkg debug/elf, const R_MIPS_TLS_TPREL64 R_MIPS +pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 = 49 +pkg debug/elf, const R_MIPS_TLS_TPREL_HI16 R_MIPS +pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 = 50 +pkg debug/elf, const R_MIPS_TLS_TPREL_LO16 R_MIPS +pkg debug/elf, const SHF_COMPRESSED = 2048 +pkg debug/elf, const SHF_COMPRESSED SectionFlag +pkg debug/elf, method (CompressionType) GoString() string +pkg debug/elf, method (CompressionType) String() string +pkg debug/elf, method (R_MIPS) GoString() string +pkg debug/elf, method (R_MIPS) String() string +pkg debug/elf, type Chdr32 struct +pkg debug/elf, type Chdr32 struct, Addralign uint32 +pkg debug/elf, type Chdr32 struct, Size uint32 +pkg debug/elf, type Chdr32 struct, Type uint32 +pkg debug/elf, type Chdr64 struct +pkg debug/elf, type Chdr64 struct, Addralign uint64 +pkg debug/elf, type Chdr64 struct, Size uint64 +pkg debug/elf, type Chdr64 struct, Type uint32 +pkg debug/elf, type CompressionType int +pkg debug/elf, type R_MIPS int +pkg debug/elf, type SectionHeader struct, FileSize uint64 +pkg encoding/asn1, const ClassApplication = 1 +pkg encoding/asn1, const ClassApplication ideal-int +pkg encoding/asn1, const ClassContextSpecific = 2 +pkg encoding/asn1, const ClassContextSpecific ideal-int +pkg encoding/asn1, const ClassPrivate = 3 +pkg encoding/asn1, const ClassPrivate ideal-int +pkg encoding/asn1, const ClassUniversal = 0 +pkg encoding/asn1, const ClassUniversal ideal-int +pkg encoding/asn1, const TagBitString = 3 +pkg encoding/asn1, const TagBitString ideal-int +pkg encoding/asn1, const TagBoolean = 1 +pkg encoding/asn1, const TagBoolean ideal-int +pkg encoding/asn1, const TagEnum = 10 +pkg encoding/asn1, const TagEnum ideal-int +pkg encoding/asn1, const TagGeneralString = 27 +pkg encoding/asn1, const TagGeneralString ideal-int +pkg encoding/asn1, const TagGeneralizedTime = 24 +pkg encoding/asn1, const TagGeneralizedTime ideal-int +pkg encoding/asn1, const TagIA5String = 22 +pkg encoding/asn1, const TagIA5String ideal-int +pkg encoding/asn1, const TagInteger = 2 +pkg encoding/asn1, const TagInteger ideal-int +pkg encoding/asn1, const TagOID = 6 +pkg encoding/asn1, const TagOID ideal-int +pkg encoding/asn1, const TagOctetString = 4 +pkg encoding/asn1, const TagOctetString ideal-int +pkg encoding/asn1, const TagPrintableString = 19 +pkg encoding/asn1, const TagPrintableString ideal-int +pkg encoding/asn1, const TagSequence = 16 +pkg encoding/asn1, const TagSequence ideal-int +pkg encoding/asn1, const TagSet = 17 +pkg encoding/asn1, const TagSet ideal-int +pkg encoding/asn1, const TagT61String = 20 +pkg encoding/asn1, const TagT61String ideal-int +pkg encoding/asn1, const TagUTCTime = 23 +pkg encoding/asn1, const TagUTCTime ideal-int +pkg encoding/asn1, const TagUTF8String = 12 +pkg encoding/asn1, const TagUTF8String ideal-int +pkg go/build, const IgnoreVendor = 8 +pkg go/build, const IgnoreVendor ImportMode +pkg go/build, type Package struct, InvalidGoFiles []string +pkg go/constant, func ToComplex(Value) Value +pkg go/constant, func ToFloat(Value) Value +pkg go/constant, func ToInt(Value) Value +pkg go/constant, type Value interface, ExactString() string +pkg go/types, method (*Package) SetName(string) +pkg go/types, type ImportMode int +pkg go/types, type ImporterFrom interface { Import, ImportFrom } +pkg go/types, type ImporterFrom interface, Import(string) (*Package, error) +pkg go/types, type ImporterFrom interface, ImportFrom(string, string, ImportMode) (*Package, error) +pkg html/template, func IsTrue(interface{}) (bool, bool) +pkg html/template, method (*Template) DefinedTemplates() string +pkg image, func NewNYCbCrA(Rectangle, YCbCrSubsampleRatio) *NYCbCrA +pkg image, method (*NYCbCrA) AOffset(int, int) int +pkg image, method (*NYCbCrA) At(int, int) color.Color +pkg image, method (*NYCbCrA) Bounds() Rectangle +pkg image, method (*NYCbCrA) COffset(int, int) int +pkg image, method (*NYCbCrA) ColorModel() color.Model +pkg image, method (*NYCbCrA) NYCbCrAAt(int, int) color.NYCbCrA +pkg image, method (*NYCbCrA) Opaque() bool +pkg image, method (*NYCbCrA) SubImage(Rectangle) Image +pkg image, method (*NYCbCrA) YCbCrAt(int, int) color.YCbCr +pkg image, method (*NYCbCrA) YOffset(int, int) int +pkg image, type NYCbCrA struct +pkg image, type NYCbCrA struct, A []uint8 +pkg image, type NYCbCrA struct, AStride int +pkg image, type NYCbCrA struct, embedded YCbCr +pkg image/color, method (NYCbCrA) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, type NYCbCrA struct +pkg image/color, type NYCbCrA struct, A uint8 +pkg image/color, type NYCbCrA struct, embedded YCbCr +pkg image/color, var NYCbCrAModel Model +pkg math/big, method (*Float) MarshalText() ([]uint8, error) +pkg math/big, method (*Float) UnmarshalText([]uint8) error +pkg math/big, method (*Int) Append([]uint8, int) []uint8 +pkg math/big, method (*Int) Text(int) string +pkg math/rand, func Read([]uint8) (int, error) +pkg math/rand, method (*Rand) Read([]uint8) (int, error) +pkg net, type DNSError struct, IsTemporary bool +pkg net, type Dialer struct, Cancel <-chan struct +pkg net/http, const MethodConnect = "CONNECT" +pkg net/http, const MethodConnect ideal-string +pkg net/http, const MethodDelete = "DELETE" +pkg net/http, const MethodDelete ideal-string +pkg net/http, const MethodGet = "GET" +pkg net/http, const MethodGet ideal-string +pkg net/http, const MethodHead = "HEAD" +pkg net/http, const MethodHead ideal-string +pkg net/http, const MethodOptions = "OPTIONS" +pkg net/http, const MethodOptions ideal-string +pkg net/http, const MethodPatch = "PATCH" +pkg net/http, const MethodPatch ideal-string +pkg net/http, const MethodPost = "POST" +pkg net/http, const MethodPost ideal-string +pkg net/http, const MethodPut = "PUT" +pkg net/http, const MethodPut ideal-string +pkg net/http, const MethodTrace = "TRACE" +pkg net/http, const MethodTrace ideal-string +pkg net/http, const StatusNetworkAuthenticationRequired = 511 +pkg net/http, const StatusNetworkAuthenticationRequired ideal-int +pkg net/http, const StatusPreconditionRequired = 428 +pkg net/http, const StatusPreconditionRequired ideal-int +pkg net/http, const StatusRequestHeaderFieldsTooLarge = 431 +pkg net/http, const StatusRequestHeaderFieldsTooLarge ideal-int +pkg net/http, const StatusTooManyRequests = 429 +pkg net/http, const StatusTooManyRequests ideal-int +pkg net/http, const StatusUnavailableForLegalReasons = 451 +pkg net/http, const StatusUnavailableForLegalReasons ideal-int +pkg net/http, type Transport struct, ExpectContinueTimeout time.Duration +pkg net/http, type Transport struct, TLSNextProto map[string]func(string, *tls.Conn) RoundTripper +pkg net/http, var ErrSkipAltProtocol error +pkg net/http/httptest, method (*ResponseRecorder) WriteString(string) (int, error) +pkg net/http/httputil, type BufferPool interface { Get, Put } +pkg net/http/httputil, type BufferPool interface, Get() []uint8 +pkg net/http/httputil, type BufferPool interface, Put([]uint8) +pkg net/http/httputil, type ReverseProxy struct, BufferPool BufferPool +pkg net/url, method (*Error) Temporary() bool +pkg net/url, method (*Error) Timeout() bool +pkg net/url, method (InvalidHostError) Error() string +pkg net/url, type InvalidHostError string +pkg os/exec, type ExitError struct, Stderr []uint8 +pkg regexp, method (*Regexp) Copy() *Regexp +pkg runtime/debug, func SetTraceback(string) +pkg strconv, func AppendQuoteRuneToGraphic([]uint8, int32) []uint8 +pkg strconv, func AppendQuoteToGraphic([]uint8, string) []uint8 +pkg strconv, func IsGraphic(int32) bool +pkg strconv, func QuoteRuneToGraphic(int32) string +pkg strconv, func QuoteToGraphic(string) string +pkg text/template, func IsTrue(interface{}) (bool, bool) +pkg text/template, method (ExecError) Error() string +pkg text/template, type ExecError struct +pkg text/template, type ExecError struct, Err error +pkg text/template, type ExecError struct, Name string diff --git a/platform/dbops/binaries/go/go/api/go1.7.txt b/platform/dbops/binaries/go/go/api/go1.7.txt new file mode 100644 index 0000000000000000000000000000000000000000..52cc04246137541f9dc912041eff17219b703c76 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.7.txt @@ -0,0 +1,285 @@ +pkg bytes, func ContainsAny([]uint8, string) bool +pkg bytes, func ContainsRune([]uint8, int32) bool +pkg bytes, method (*Reader) Reset([]uint8) +pkg compress/flate, const HuffmanOnly = -2 +pkg compress/flate, const HuffmanOnly ideal-int +pkg context, func Background() Context +pkg context, func TODO() Context +pkg context, func WithCancel(Context) (Context, CancelFunc) +pkg context, func WithDeadline(Context, time.Time) (Context, CancelFunc) +pkg context, func WithTimeout(Context, time.Duration) (Context, CancelFunc) +pkg context, func WithValue(Context, interface{}, interface{}) Context +pkg context, type CancelFunc func() +pkg context, type Context interface { Deadline, Done, Err, Value } +pkg context, type Context interface, Deadline() (time.Time, bool) +pkg context, type Context interface, Done() <-chan struct +pkg context, type Context interface, Err() error +pkg context, type Context interface, Value(interface{}) interface{} +pkg context, var Canceled error +pkg context, var DeadlineExceeded error +pkg crypto/tls, const RenegotiateFreelyAsClient = 2 +pkg crypto/tls, const RenegotiateFreelyAsClient RenegotiationSupport +pkg crypto/tls, const RenegotiateNever = 0 +pkg crypto/tls, const RenegotiateNever RenegotiationSupport +pkg crypto/tls, const RenegotiateOnceAsClient = 1 +pkg crypto/tls, const RenegotiateOnceAsClient RenegotiationSupport +pkg crypto/tls, type Config struct, DynamicRecordSizingDisabled bool +pkg crypto/tls, type Config struct, Renegotiation RenegotiationSupport +pkg crypto/tls, type RenegotiationSupport int +pkg crypto/x509, func SystemCertPool() (*CertPool, error) +pkg crypto/x509, type SystemRootsError struct, Err error +pkg debug/dwarf, method (*Data) Ranges(*Entry) ([][2]uint64, error) +pkg debug/dwarf, method (*Reader) SeekPC(uint64) (*Entry, error) +pkg debug/elf, const R_390_12 = 2 +pkg debug/elf, const R_390_12 R_390 +pkg debug/elf, const R_390_16 = 3 +pkg debug/elf, const R_390_16 R_390 +pkg debug/elf, const R_390_20 = 57 +pkg debug/elf, const R_390_20 R_390 +pkg debug/elf, const R_390_32 = 4 +pkg debug/elf, const R_390_32 R_390 +pkg debug/elf, const R_390_64 = 22 +pkg debug/elf, const R_390_64 R_390 +pkg debug/elf, const R_390_8 = 1 +pkg debug/elf, const R_390_8 R_390 +pkg debug/elf, const R_390_COPY = 9 +pkg debug/elf, const R_390_COPY R_390 +pkg debug/elf, const R_390_GLOB_DAT = 10 +pkg debug/elf, const R_390_GLOB_DAT R_390 +pkg debug/elf, const R_390_GOT12 = 6 +pkg debug/elf, const R_390_GOT12 R_390 +pkg debug/elf, const R_390_GOT16 = 15 +pkg debug/elf, const R_390_GOT16 R_390 +pkg debug/elf, const R_390_GOT20 = 58 +pkg debug/elf, const R_390_GOT20 R_390 +pkg debug/elf, const R_390_GOT32 = 7 +pkg debug/elf, const R_390_GOT32 R_390 +pkg debug/elf, const R_390_GOT64 = 24 +pkg debug/elf, const R_390_GOT64 R_390 +pkg debug/elf, const R_390_GOTENT = 26 +pkg debug/elf, const R_390_GOTENT R_390 +pkg debug/elf, const R_390_GOTOFF = 13 +pkg debug/elf, const R_390_GOTOFF R_390 +pkg debug/elf, const R_390_GOTOFF16 = 27 +pkg debug/elf, const R_390_GOTOFF16 R_390 +pkg debug/elf, const R_390_GOTOFF64 = 28 +pkg debug/elf, const R_390_GOTOFF64 R_390 +pkg debug/elf, const R_390_GOTPC = 14 +pkg debug/elf, const R_390_GOTPC R_390 +pkg debug/elf, const R_390_GOTPCDBL = 21 +pkg debug/elf, const R_390_GOTPCDBL R_390 +pkg debug/elf, const R_390_GOTPLT12 = 29 +pkg debug/elf, const R_390_GOTPLT12 R_390 +pkg debug/elf, const R_390_GOTPLT16 = 30 +pkg debug/elf, const R_390_GOTPLT16 R_390 +pkg debug/elf, const R_390_GOTPLT20 = 59 +pkg debug/elf, const R_390_GOTPLT20 R_390 +pkg debug/elf, const R_390_GOTPLT32 = 31 +pkg debug/elf, const R_390_GOTPLT32 R_390 +pkg debug/elf, const R_390_GOTPLT64 = 32 +pkg debug/elf, const R_390_GOTPLT64 R_390 +pkg debug/elf, const R_390_GOTPLTENT = 33 +pkg debug/elf, const R_390_GOTPLTENT R_390 +pkg debug/elf, const R_390_GOTPLTOFF16 = 34 +pkg debug/elf, const R_390_GOTPLTOFF16 R_390 +pkg debug/elf, const R_390_GOTPLTOFF32 = 35 +pkg debug/elf, const R_390_GOTPLTOFF32 R_390 +pkg debug/elf, const R_390_GOTPLTOFF64 = 36 +pkg debug/elf, const R_390_GOTPLTOFF64 R_390 +pkg debug/elf, const R_390_JMP_SLOT = 11 +pkg debug/elf, const R_390_JMP_SLOT R_390 +pkg debug/elf, const R_390_NONE = 0 +pkg debug/elf, const R_390_NONE R_390 +pkg debug/elf, const R_390_PC16 = 16 +pkg debug/elf, const R_390_PC16 R_390 +pkg debug/elf, const R_390_PC16DBL = 17 +pkg debug/elf, const R_390_PC16DBL R_390 +pkg debug/elf, const R_390_PC32 = 5 +pkg debug/elf, const R_390_PC32 R_390 +pkg debug/elf, const R_390_PC32DBL = 19 +pkg debug/elf, const R_390_PC32DBL R_390 +pkg debug/elf, const R_390_PC64 = 23 +pkg debug/elf, const R_390_PC64 R_390 +pkg debug/elf, const R_390_PLT16DBL = 18 +pkg debug/elf, const R_390_PLT16DBL R_390 +pkg debug/elf, const R_390_PLT32 = 8 +pkg debug/elf, const R_390_PLT32 R_390 +pkg debug/elf, const R_390_PLT32DBL = 20 +pkg debug/elf, const R_390_PLT32DBL R_390 +pkg debug/elf, const R_390_PLT64 = 25 +pkg debug/elf, const R_390_PLT64 R_390 +pkg debug/elf, const R_390_RELATIVE = 12 +pkg debug/elf, const R_390_RELATIVE R_390 +pkg debug/elf, const R_390_TLS_DTPMOD = 54 +pkg debug/elf, const R_390_TLS_DTPMOD R_390 +pkg debug/elf, const R_390_TLS_DTPOFF = 55 +pkg debug/elf, const R_390_TLS_DTPOFF R_390 +pkg debug/elf, const R_390_TLS_GD32 = 40 +pkg debug/elf, const R_390_TLS_GD32 R_390 +pkg debug/elf, const R_390_TLS_GD64 = 41 +pkg debug/elf, const R_390_TLS_GD64 R_390 +pkg debug/elf, const R_390_TLS_GDCALL = 38 +pkg debug/elf, const R_390_TLS_GDCALL R_390 +pkg debug/elf, const R_390_TLS_GOTIE12 = 42 +pkg debug/elf, const R_390_TLS_GOTIE12 R_390 +pkg debug/elf, const R_390_TLS_GOTIE20 = 60 +pkg debug/elf, const R_390_TLS_GOTIE20 R_390 +pkg debug/elf, const R_390_TLS_GOTIE32 = 43 +pkg debug/elf, const R_390_TLS_GOTIE32 R_390 +pkg debug/elf, const R_390_TLS_GOTIE64 = 44 +pkg debug/elf, const R_390_TLS_GOTIE64 R_390 +pkg debug/elf, const R_390_TLS_IE32 = 47 +pkg debug/elf, const R_390_TLS_IE32 R_390 +pkg debug/elf, const R_390_TLS_IE64 = 48 +pkg debug/elf, const R_390_TLS_IE64 R_390 +pkg debug/elf, const R_390_TLS_IEENT = 49 +pkg debug/elf, const R_390_TLS_IEENT R_390 +pkg debug/elf, const R_390_TLS_LDCALL = 39 +pkg debug/elf, const R_390_TLS_LDCALL R_390 +pkg debug/elf, const R_390_TLS_LDM32 = 45 +pkg debug/elf, const R_390_TLS_LDM32 R_390 +pkg debug/elf, const R_390_TLS_LDM64 = 46 +pkg debug/elf, const R_390_TLS_LDM64 R_390 +pkg debug/elf, const R_390_TLS_LDO32 = 52 +pkg debug/elf, const R_390_TLS_LDO32 R_390 +pkg debug/elf, const R_390_TLS_LDO64 = 53 +pkg debug/elf, const R_390_TLS_LDO64 R_390 +pkg debug/elf, const R_390_TLS_LE32 = 50 +pkg debug/elf, const R_390_TLS_LE32 R_390 +pkg debug/elf, const R_390_TLS_LE64 = 51 +pkg debug/elf, const R_390_TLS_LE64 R_390 +pkg debug/elf, const R_390_TLS_LOAD = 37 +pkg debug/elf, const R_390_TLS_LOAD R_390 +pkg debug/elf, const R_390_TLS_TPOFF = 56 +pkg debug/elf, const R_390_TLS_TPOFF R_390 +pkg debug/elf, method (R_390) GoString() string +pkg debug/elf, method (R_390) String() string +pkg debug/elf, type R_390 int +pkg encoding/json, method (*Encoder) SetEscapeHTML(bool) +pkg encoding/json, method (*Encoder) SetIndent(string, string) +pkg go/build, type Package struct, BinaryOnly bool +pkg go/build, type Package struct, CgoFFLAGS []string +pkg go/build, type Package struct, FFiles []string +pkg go/doc, type Example struct, Unordered bool +pkg io, const SeekCurrent = 1 +pkg io, const SeekCurrent ideal-int +pkg io, const SeekEnd = 2 +pkg io, const SeekEnd ideal-int +pkg io, const SeekStart = 0 +pkg io, const SeekStart ideal-int +pkg math/big, method (*Float) GobDecode([]uint8) error +pkg math/big, method (*Float) GobEncode() ([]uint8, error) +pkg net, method (*Dialer) DialContext(context.Context, string, string) (Conn, error) +pkg net/http, const StatusAlreadyReported = 208 +pkg net/http, const StatusAlreadyReported ideal-int +pkg net/http, const StatusFailedDependency = 424 +pkg net/http, const StatusFailedDependency ideal-int +pkg net/http, const StatusIMUsed = 226 +pkg net/http, const StatusIMUsed ideal-int +pkg net/http, const StatusInsufficientStorage = 507 +pkg net/http, const StatusInsufficientStorage ideal-int +pkg net/http, const StatusLocked = 423 +pkg net/http, const StatusLocked ideal-int +pkg net/http, const StatusLoopDetected = 508 +pkg net/http, const StatusLoopDetected ideal-int +pkg net/http, const StatusMultiStatus = 207 +pkg net/http, const StatusMultiStatus ideal-int +pkg net/http, const StatusNotExtended = 510 +pkg net/http, const StatusNotExtended ideal-int +pkg net/http, const StatusPermanentRedirect = 308 +pkg net/http, const StatusPermanentRedirect ideal-int +pkg net/http, const StatusProcessing = 102 +pkg net/http, const StatusProcessing ideal-int +pkg net/http, const StatusUnprocessableEntity = 422 +pkg net/http, const StatusUnprocessableEntity ideal-int +pkg net/http, const StatusUpgradeRequired = 426 +pkg net/http, const StatusUpgradeRequired ideal-int +pkg net/http, const StatusVariantAlsoNegotiates = 506 +pkg net/http, const StatusVariantAlsoNegotiates ideal-int +pkg net/http, method (*Request) Context() context.Context +pkg net/http, method (*Request) WithContext(context.Context) *Request +pkg net/http, type Request struct, Response *Response +pkg net/http, type Response struct, Uncompressed bool +pkg net/http, type Transport struct, DialContext func(context.Context, string, string) (net.Conn, error) +pkg net/http, type Transport struct, IdleConnTimeout time.Duration +pkg net/http, type Transport struct, MaxIdleConns int +pkg net/http, type Transport struct, MaxResponseHeaderBytes int64 +pkg net/http, var ErrUseLastResponse error +pkg net/http, var LocalAddrContextKey *contextKey +pkg net/http, var ServerContextKey *contextKey +pkg net/http/cgi, type Handler struct, Stderr io.Writer +pkg net/http/httptest, func NewRequest(string, string, io.Reader) *http.Request +pkg net/http/httptest, method (*ResponseRecorder) Result() *http.Response +pkg net/http/httptrace, func ContextClientTrace(context.Context) *ClientTrace +pkg net/http/httptrace, func WithClientTrace(context.Context, *ClientTrace) context.Context +pkg net/http/httptrace, type ClientTrace struct +pkg net/http/httptrace, type ClientTrace struct, ConnectDone func(string, string, error) +pkg net/http/httptrace, type ClientTrace struct, ConnectStart func(string, string) +pkg net/http/httptrace, type ClientTrace struct, DNSDone func(DNSDoneInfo) +pkg net/http/httptrace, type ClientTrace struct, DNSStart func(DNSStartInfo) +pkg net/http/httptrace, type ClientTrace struct, GetConn func(string) +pkg net/http/httptrace, type ClientTrace struct, Got100Continue func() +pkg net/http/httptrace, type ClientTrace struct, GotConn func(GotConnInfo) +pkg net/http/httptrace, type ClientTrace struct, GotFirstResponseByte func() +pkg net/http/httptrace, type ClientTrace struct, PutIdleConn func(error) +pkg net/http/httptrace, type ClientTrace struct, Wait100Continue func() +pkg net/http/httptrace, type ClientTrace struct, WroteHeaders func() +pkg net/http/httptrace, type ClientTrace struct, WroteRequest func(WroteRequestInfo) +pkg net/http/httptrace, type DNSDoneInfo struct +pkg net/http/httptrace, type DNSDoneInfo struct, Addrs []net.IPAddr +pkg net/http/httptrace, type DNSDoneInfo struct, Coalesced bool +pkg net/http/httptrace, type DNSDoneInfo struct, Err error +pkg net/http/httptrace, type DNSStartInfo struct +pkg net/http/httptrace, type DNSStartInfo struct, Host string +pkg net/http/httptrace, type GotConnInfo struct +pkg net/http/httptrace, type GotConnInfo struct, Conn net.Conn +pkg net/http/httptrace, type GotConnInfo struct, IdleTime time.Duration +pkg net/http/httptrace, type GotConnInfo struct, Reused bool +pkg net/http/httptrace, type GotConnInfo struct, WasIdle bool +pkg net/http/httptrace, type WroteRequestInfo struct +pkg net/http/httptrace, type WroteRequestInfo struct, Err error +pkg net/url, type URL struct, ForceQuery bool +pkg os/exec, func CommandContext(context.Context, string, ...string) *Cmd +pkg os/user, func LookupGroup(string) (*Group, error) +pkg os/user, func LookupGroupId(string) (*Group, error) +pkg os/user, method (*User) GroupIds() ([]string, error) +pkg os/user, method (UnknownGroupError) Error() string +pkg os/user, method (UnknownGroupIdError) Error() string +pkg os/user, type Group struct +pkg os/user, type Group struct, Gid string +pkg os/user, type Group struct, Name string +pkg os/user, type UnknownGroupError string +pkg os/user, type UnknownGroupIdError string +pkg reflect, func StructOf([]StructField) Type +pkg reflect, method (StructTag) Lookup(string) (string, bool) +pkg runtime, func CallersFrames([]uintptr) *Frames +pkg runtime, func KeepAlive(interface{}) +pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) +pkg runtime, method (*Frames) Next() (Frame, bool) +pkg runtime, type Frame struct +pkg runtime, type Frame struct, Entry uintptr +pkg runtime, type Frame struct, File string +pkg runtime, type Frame struct, Func *Func +pkg runtime, type Frame struct, Function string +pkg runtime, type Frame struct, Line int +pkg runtime, type Frame struct, PC uintptr +pkg runtime, type Frames struct +pkg strings, method (*Reader) Reset(string) +pkg syscall (linux-386), type SysProcAttr struct, Unshareflags uintptr +pkg syscall (linux-386-cgo), type SysProcAttr struct, Unshareflags uintptr +pkg syscall (linux-amd64), type SysProcAttr struct, Unshareflags uintptr +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Unshareflags uintptr +pkg syscall (linux-arm), type SysProcAttr struct, Unshareflags uintptr +pkg syscall (linux-arm-cgo), type SysProcAttr struct, Unshareflags uintptr +pkg testing, method (*B) Run(string, func(*B)) bool +pkg testing, method (*T) Run(string, func(*T)) bool +pkg testing, type InternalExample struct, Unordered bool +pkg unicode, const Version = "9.0.0" +pkg unicode, var Adlam *RangeTable +pkg unicode, var Bhaiksuki *RangeTable +pkg unicode, var Marchen *RangeTable +pkg unicode, var Newa *RangeTable +pkg unicode, var Osage *RangeTable +pkg unicode, var Prepended_Concatenation_Mark *RangeTable +pkg unicode, var Sentence_Terminal *RangeTable +pkg unicode, var Tangut *RangeTable diff --git a/platform/dbops/binaries/go/go/api/go1.8.txt b/platform/dbops/binaries/go/go/api/go1.8.txt new file mode 100644 index 0000000000000000000000000000000000000000..fca7e03c9f999b37bb14926ea93080fdb729b4b7 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.8.txt @@ -0,0 +1,261 @@ +pkg compress/gzip, const HuffmanOnly = -2 +pkg compress/gzip, const HuffmanOnly ideal-int +pkg compress/zlib, const HuffmanOnly = -2 +pkg compress/zlib, const HuffmanOnly ideal-int +pkg crypto/tls, const ECDSAWithP256AndSHA256 = 1027 +pkg crypto/tls, const ECDSAWithP256AndSHA256 SignatureScheme +pkg crypto/tls, const ECDSAWithP384AndSHA384 = 1283 +pkg crypto/tls, const ECDSAWithP384AndSHA384 SignatureScheme +pkg crypto/tls, const ECDSAWithP521AndSHA512 = 1539 +pkg crypto/tls, const ECDSAWithP521AndSHA512 SignatureScheme +pkg crypto/tls, const PKCS1WithSHA1 = 513 +pkg crypto/tls, const PKCS1WithSHA1 SignatureScheme +pkg crypto/tls, const PKCS1WithSHA256 = 1025 +pkg crypto/tls, const PKCS1WithSHA256 SignatureScheme +pkg crypto/tls, const PKCS1WithSHA384 = 1281 +pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme +pkg crypto/tls, const PKCS1WithSHA512 = 1537 +pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme +pkg crypto/tls, const PSSWithSHA256 = 2052 +pkg crypto/tls, const PSSWithSHA256 SignatureScheme +pkg crypto/tls, const PSSWithSHA384 = 2053 +pkg crypto/tls, const PSSWithSHA384 SignatureScheme +pkg crypto/tls, const PSSWithSHA512 = 2054 +pkg crypto/tls, const PSSWithSHA512 SignatureScheme +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 49187 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 = 52393 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 49191 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 = 52392 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 uint16 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 = 60 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const X25519 = 29 +pkg crypto/tls, const X25519 CurveID +pkg crypto/tls, method (*Config) Clone() *Config +pkg crypto/tls, method (*Conn) CloseWrite() error +pkg crypto/tls, type CertificateRequestInfo struct +pkg crypto/tls, type CertificateRequestInfo struct, AcceptableCAs [][]uint8 +pkg crypto/tls, type CertificateRequestInfo struct, SignatureSchemes []SignatureScheme +pkg crypto/tls, type ClientHelloInfo struct, Conn net.Conn +pkg crypto/tls, type ClientHelloInfo struct, SignatureSchemes []SignatureScheme +pkg crypto/tls, type ClientHelloInfo struct, SupportedProtos []string +pkg crypto/tls, type ClientHelloInfo struct, SupportedVersions []uint16 +pkg crypto/tls, type Config struct, GetClientCertificate func(*CertificateRequestInfo) (*Certificate, error) +pkg crypto/tls, type Config struct, GetConfigForClient func(*ClientHelloInfo) (*Config, error) +pkg crypto/tls, type Config struct, KeyLogWriter io.Writer +pkg crypto/tls, type Config struct, VerifyPeerCertificate func([][]uint8, [][]*x509.Certificate) error +pkg crypto/tls, type SignatureScheme uint16 +pkg crypto/x509, const NameMismatch = 5 +pkg crypto/x509, const NameMismatch InvalidReason +pkg crypto/x509, const SHA256WithRSAPSS = 13 +pkg crypto/x509, const SHA256WithRSAPSS SignatureAlgorithm +pkg crypto/x509, const SHA384WithRSAPSS = 14 +pkg crypto/x509, const SHA384WithRSAPSS SignatureAlgorithm +pkg crypto/x509, const SHA512WithRSAPSS = 15 +pkg crypto/x509, const SHA512WithRSAPSS SignatureAlgorithm +pkg crypto/x509, type UnknownAuthorityError struct, Cert *Certificate +pkg database/sql, const LevelDefault = 0 +pkg database/sql, const LevelDefault IsolationLevel +pkg database/sql, const LevelLinearizable = 7 +pkg database/sql, const LevelLinearizable IsolationLevel +pkg database/sql, const LevelReadCommitted = 2 +pkg database/sql, const LevelReadCommitted IsolationLevel +pkg database/sql, const LevelReadUncommitted = 1 +pkg database/sql, const LevelReadUncommitted IsolationLevel +pkg database/sql, const LevelRepeatableRead = 4 +pkg database/sql, const LevelRepeatableRead IsolationLevel +pkg database/sql, const LevelSerializable = 6 +pkg database/sql, const LevelSerializable IsolationLevel +pkg database/sql, const LevelSnapshot = 5 +pkg database/sql, const LevelSnapshot IsolationLevel +pkg database/sql, const LevelWriteCommitted = 3 +pkg database/sql, const LevelWriteCommitted IsolationLevel +pkg database/sql/driver, type ConnBeginTx interface { BeginTx } +pkg database/sql/driver, type ConnBeginTx interface, BeginTx(context.Context, TxOptions) (Tx, error) +pkg database/sql/driver, type ConnPrepareContext interface { PrepareContext } +pkg database/sql/driver, type ConnPrepareContext interface, PrepareContext(context.Context, string) (Stmt, error) +pkg database/sql/driver, type ExecerContext interface { ExecContext } +pkg database/sql/driver, type ExecerContext interface, ExecContext(context.Context, string, []NamedValue) (Result, error) +pkg database/sql/driver, type IsolationLevel int +pkg database/sql/driver, type NamedValue struct +pkg database/sql/driver, type NamedValue struct, Name string +pkg database/sql/driver, type NamedValue struct, Ordinal int +pkg database/sql/driver, type NamedValue struct, Value Value +pkg database/sql/driver, type Pinger interface { Ping } +pkg database/sql/driver, type Pinger interface, Ping(context.Context) error +pkg database/sql/driver, type QueryerContext interface { QueryContext } +pkg database/sql/driver, type QueryerContext interface, QueryContext(context.Context, string, []NamedValue) (Rows, error) +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface { Close, ColumnTypeDatabaseTypeName, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Close() error +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, ColumnTypeDatabaseTypeName(int) string +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeLength interface { Close, ColumnTypeLength, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeLength interface, Close() error +pkg database/sql/driver, type RowsColumnTypeLength interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeLength interface, ColumnTypeLength(int) (int64, bool) +pkg database/sql/driver, type RowsColumnTypeLength interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeNullable interface { Close, ColumnTypeNullable, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeNullable interface, Close() error +pkg database/sql/driver, type RowsColumnTypeNullable interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeNullable interface, ColumnTypeNullable(int) (bool, bool) +pkg database/sql/driver, type RowsColumnTypeNullable interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface { Close, ColumnTypePrecisionScale, Columns, Next } +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Close() error +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, ColumnTypePrecisionScale(int) (int64, int64, bool) +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeScanType interface { Close, ColumnTypeScanType, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeScanType interface, Close() error +pkg database/sql/driver, type RowsColumnTypeScanType interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeScanType interface, ColumnTypeScanType(int) reflect.Type +pkg database/sql/driver, type RowsColumnTypeScanType interface, Next([]Value) error +pkg database/sql/driver, type RowsNextResultSet interface { Close, Columns, HasNextResultSet, Next, NextResultSet } +pkg database/sql/driver, type RowsNextResultSet interface, Close() error +pkg database/sql/driver, type RowsNextResultSet interface, Columns() []string +pkg database/sql/driver, type RowsNextResultSet interface, HasNextResultSet() bool +pkg database/sql/driver, type RowsNextResultSet interface, NextResultSet() error +pkg database/sql/driver, type RowsNextResultSet interface, Next([]Value) error +pkg database/sql/driver, type StmtExecContext interface { ExecContext } +pkg database/sql/driver, type StmtExecContext interface, ExecContext(context.Context, []NamedValue) (Result, error) +pkg database/sql/driver, type StmtQueryContext interface { QueryContext } +pkg database/sql/driver, type StmtQueryContext interface, QueryContext(context.Context, []NamedValue) (Rows, error) +pkg database/sql/driver, type TxOptions struct +pkg database/sql/driver, type TxOptions struct, Isolation IsolationLevel +pkg database/sql/driver, type TxOptions struct, ReadOnly bool +pkg database/sql, func Named(string, interface{}) NamedArg +pkg database/sql, method (*ColumnType) DatabaseTypeName() string +pkg database/sql, method (*ColumnType) DecimalSize() (int64, int64, bool) +pkg database/sql, method (*ColumnType) Length() (int64, bool) +pkg database/sql, method (*ColumnType) Name() string +pkg database/sql, method (*ColumnType) Nullable() (bool, bool) +pkg database/sql, method (*ColumnType) ScanType() reflect.Type +pkg database/sql, method (*DB) BeginTx(context.Context, *TxOptions) (*Tx, error) +pkg database/sql, method (*DB) ExecContext(context.Context, string, ...interface{}) (Result, error) +pkg database/sql, method (*DB) PingContext(context.Context) error +pkg database/sql, method (*DB) PrepareContext(context.Context, string) (*Stmt, error) +pkg database/sql, method (*DB) QueryContext(context.Context, string, ...interface{}) (*Rows, error) +pkg database/sql, method (*DB) QueryRowContext(context.Context, string, ...interface{}) *Row +pkg database/sql, method (*Rows) ColumnTypes() ([]*ColumnType, error) +pkg database/sql, method (*Rows) NextResultSet() bool +pkg database/sql, method (*Stmt) ExecContext(context.Context, ...interface{}) (Result, error) +pkg database/sql, method (*Stmt) QueryContext(context.Context, ...interface{}) (*Rows, error) +pkg database/sql, method (*Stmt) QueryRowContext(context.Context, ...interface{}) *Row +pkg database/sql, method (*Tx) ExecContext(context.Context, string, ...interface{}) (Result, error) +pkg database/sql, method (*Tx) PrepareContext(context.Context, string) (*Stmt, error) +pkg database/sql, method (*Tx) QueryContext(context.Context, string, ...interface{}) (*Rows, error) +pkg database/sql, method (*Tx) QueryRowContext(context.Context, string, ...interface{}) *Row +pkg database/sql, method (*Tx) StmtContext(context.Context, *Stmt) *Stmt +pkg database/sql, type ColumnType struct +pkg database/sql, type IsolationLevel int +pkg database/sql, type NamedArg struct +pkg database/sql, type NamedArg struct, Name string +pkg database/sql, type NamedArg struct, Value interface{} +pkg database/sql, type TxOptions struct +pkg database/sql, type TxOptions struct, Isolation IsolationLevel +pkg database/sql, type TxOptions struct, ReadOnly bool +pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error) +pkg debug/pe, method (StringTable) String(uint32) (string, error) +pkg debug/pe, type File struct, COFFSymbols []COFFSymbol +pkg debug/pe, type File struct, StringTable StringTable +pkg debug/pe, type Reloc struct +pkg debug/pe, type Reloc struct, SymbolTableIndex uint32 +pkg debug/pe, type Reloc struct, Type uint16 +pkg debug/pe, type Reloc struct, VirtualAddress uint32 +pkg debug/pe, type Section struct, Relocs []Reloc +pkg debug/pe, type StringTable []uint8 +pkg encoding/base64, method (Encoding) Strict() *Encoding +pkg encoding/json, method (RawMessage) MarshalJSON() ([]uint8, error) +pkg encoding/json, type UnmarshalTypeError struct, Field string +pkg encoding/json, type UnmarshalTypeError struct, Struct string +pkg expvar, func Handler() http.Handler +pkg expvar, method (*Float) Value() float64 +pkg expvar, method (Func) Value() interface{} +pkg expvar, method (*Int) Value() int64 +pkg expvar, method (*String) Value() string +pkg go/doc, func IsPredeclared(string) bool +pkg go/types, func Default(Type) Type +pkg go/types, func IdenticalIgnoreTags(Type, Type) bool +pkg math/big, method (*Float) Scan(fmt.ScanState, int32) error +pkg math/big, method (*Int) Sqrt(*Int) *Int +pkg math/rand, func Uint64() uint64 +pkg math/rand, method (*Rand) Uint64() uint64 +pkg math/rand, type Source64 interface, Int63() int64 +pkg math/rand, type Source64 interface { Int63, Seed, Uint64 } +pkg math/rand, type Source64 interface, Seed(int64) +pkg math/rand, type Source64 interface, Uint64() uint64 +pkg net/http, const TrailerPrefix ideal-string +pkg net/http, const TrailerPrefix = "Trailer:" +pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeDone func(tls.ConnectionState, error) +pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func() +pkg net/http/httputil, type ReverseProxy struct, ModifyResponse func(*http.Response) error +pkg net/http, method (*Server) Close() error +pkg net/http, method (*Server) Shutdown(context.Context) error +pkg net/http, type Pusher interface { Push } +pkg net/http, type Pusher interface, Push(string, *PushOptions) error +pkg net/http, type PushOptions struct +pkg net/http, type PushOptions struct, Header Header +pkg net/http, type PushOptions struct, Method string +pkg net/http, type Request struct, GetBody func() (io.ReadCloser, error) +pkg net/http, type Server struct, IdleTimeout time.Duration +pkg net/http, type Server struct, ReadHeaderTimeout time.Duration +pkg net/http, type Transport struct, ProxyConnectHeader Header +pkg net/http, var ErrAbortHandler error +pkg net/http, var ErrServerClosed error +pkg net/http, var NoBody noBody +pkg net/mail, func ParseDate(string) (time.Time, error) +pkg net, method (*Buffers) Read([]uint8) (int, error) +pkg net, method (*Buffers) WriteTo(io.Writer) (int64, error) +pkg net, method (*Resolver) LookupAddr(context.Context, string) ([]string, error) +pkg net, method (*Resolver) LookupCNAME(context.Context, string) (string, error) +pkg net, method (*Resolver) LookupHost(context.Context, string) ([]string, error) +pkg net, method (*Resolver) LookupIPAddr(context.Context, string) ([]IPAddr, error) +pkg net, method (*Resolver) LookupMX(context.Context, string) ([]*MX, error) +pkg net, method (*Resolver) LookupNS(context.Context, string) ([]*NS, error) +pkg net, method (*Resolver) LookupPort(context.Context, string, string) (int, error) +pkg net, method (*Resolver) LookupSRV(context.Context, string, string, string) (string, []*SRV, error) +pkg net, method (*Resolver) LookupTXT(context.Context, string) ([]string, error) +pkg net, method (*UnixListener) SetUnlinkOnClose(bool) +pkg net, type Buffers [][]uint8 +pkg net, type Dialer struct, Resolver *Resolver +pkg net, type Resolver struct +pkg net, type Resolver struct, PreferGo bool +pkg net/url, func PathEscape(string) string +pkg net/url, func PathUnescape(string) (string, error) +pkg net/url, method (*URL) Hostname() string +pkg net/url, method (*URL) MarshalBinary() ([]uint8, error) +pkg net/url, method (*URL) Port() string +pkg net/url, method (*URL) UnmarshalBinary([]uint8) error +pkg net, var DefaultResolver *Resolver +pkg os, func Executable() (string, error) +pkg os, var ErrClosed error +pkg plugin, func Open(string) (*Plugin, error) +pkg plugin, method (*Plugin) Lookup(string) (Symbol, error) +pkg plugin, type Plugin struct +pkg plugin, type Symbol interface {} +pkg reflect, func Swapper(interface{}) func(int, int) +pkg runtime, func MutexProfile([]BlockProfileRecord) (int, bool) +pkg runtime, func SetMutexProfileFraction(int) int +pkg runtime, type MemStats struct, NumForcedGC uint32 +pkg sort, func Slice(interface{}, func(int, int) bool) +pkg sort, func SliceIsSorted(interface{}, func(int, int) bool) bool +pkg sort, func SliceStable(interface{}, func(int, int) bool) +pkg syscall (linux-arm-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-arm), func TimevalToNsec(Timeval) int64 +pkg syscall (openbsd-386), const SYS_KILL = 122 +pkg syscall (openbsd-386-cgo), const SYS_KILL = 122 +pkg syscall (openbsd-amd64), const SYS_KILL = 122 +pkg syscall (openbsd-amd64-cgo), const SYS_KILL = 122 +pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY = 145 +pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY Errno +pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY = 145 +pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno +pkg testing, func CoverMode() string +pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M +pkg testing, method (*B) Name() string +pkg testing, method (*T) Name() string +pkg testing, type TB interface, Name() string +pkg time, func Until(Time) Duration diff --git a/platform/dbops/binaries/go/go/api/go1.9.txt b/platform/dbops/binaries/go/go/api/go1.9.txt new file mode 100644 index 0000000000000000000000000000000000000000..87fae57920d2f6bcbec78ffe79913639bd7c6252 --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.9.txt @@ -0,0 +1,196 @@ +pkg crypto, const BLAKE2b_256 = 17 +pkg crypto, const BLAKE2b_256 Hash +pkg crypto, const BLAKE2b_384 = 18 +pkg crypto, const BLAKE2b_384 Hash +pkg crypto, const BLAKE2b_512 = 19 +pkg crypto, const BLAKE2b_512 Hash +pkg crypto, const BLAKE2s_256 = 16 +pkg crypto, const BLAKE2s_256 Hash +pkg crypto/x509, type Certificate struct, ExcludedDNSDomains []string +pkg database/sql, method (*Conn) BeginTx(context.Context, *TxOptions) (*Tx, error) +pkg database/sql, method (*Conn) Close() error +pkg database/sql, method (*Conn) ExecContext(context.Context, string, ...interface{}) (Result, error) +pkg database/sql, method (*Conn) PingContext(context.Context) error +pkg database/sql, method (*Conn) PrepareContext(context.Context, string) (*Stmt, error) +pkg database/sql, method (*Conn) QueryContext(context.Context, string, ...interface{}) (*Rows, error) +pkg database/sql, method (*Conn) QueryRowContext(context.Context, string, ...interface{}) *Row +pkg database/sql, method (*DB) Conn(context.Context) (*Conn, error) +pkg database/sql, type Conn struct +pkg database/sql, type Out struct +pkg database/sql, type Out struct, Dest interface{} +pkg database/sql, type Out struct, In bool +pkg database/sql, var ErrConnDone error +pkg database/sql/driver, type NamedValueChecker interface { CheckNamedValue } +pkg database/sql/driver, type NamedValueChecker interface, CheckNamedValue(*NamedValue) error +pkg database/sql/driver, var ErrRemoveArgument error +pkg encoding/asn1, const TagNull = 5 +pkg encoding/asn1, const TagNull ideal-int +pkg encoding/asn1, var NullBytes []uint8 +pkg encoding/asn1, var NullRawValue RawValue +pkg encoding/base32, const NoPadding = -1 +pkg encoding/base32, const NoPadding int32 +pkg encoding/base32, const StdPadding = 61 +pkg encoding/base32, const StdPadding int32 +pkg encoding/base32, method (Encoding) WithPadding(int32) *Encoding +pkg encoding/csv, type Reader struct, ReuseRecord bool +pkg encoding/json, func Valid([]uint8) bool +pkg go/ast, type TypeSpec struct, Assign token.Pos +pkg go/types, func SizesFor(string, string) Sizes +pkg go/types, method (*TypeName) IsAlias() bool +pkg hash/fnv, func New128() hash.Hash +pkg hash/fnv, func New128a() hash.Hash +pkg html/template, const ErrPredefinedEscaper = 11 +pkg html/template, const ErrPredefinedEscaper ErrorCode +pkg image/png, type Encoder struct, BufferPool EncoderBufferPool +pkg image/png, type EncoderBuffer struct +pkg image/png, type EncoderBufferPool interface { Get, Put } +pkg image/png, type EncoderBufferPool interface, Get() *EncoderBuffer +pkg image/png, type EncoderBufferPool interface, Put(*EncoderBuffer) +pkg math/big, method (*Int) IsInt64() bool +pkg math/big, method (*Int) IsUint64() bool +pkg math/big, type Word uint +pkg math/bits (darwin-amd64), const UintSize = 64 +pkg math/bits (darwin-amd64-cgo), const UintSize = 64 +pkg math/bits (freebsd-386), const UintSize = 32 +pkg math/bits (freebsd-386-cgo), const UintSize = 32 +pkg math/bits (freebsd-amd64), const UintSize = 64 +pkg math/bits (freebsd-amd64-cgo), const UintSize = 64 +pkg math/bits (freebsd-arm), const UintSize = 32 +pkg math/bits (freebsd-arm-cgo), const UintSize = 32 +pkg math/bits (linux-386), const UintSize = 32 +pkg math/bits (linux-386-cgo), const UintSize = 32 +pkg math/bits (linux-amd64), const UintSize = 64 +pkg math/bits (linux-amd64-cgo), const UintSize = 64 +pkg math/bits (linux-arm), const UintSize = 32 +pkg math/bits (linux-arm-cgo), const UintSize = 32 +pkg math/bits (netbsd-386), const UintSize = 32 +pkg math/bits (netbsd-386-cgo), const UintSize = 32 +pkg math/bits (netbsd-amd64), const UintSize = 64 +pkg math/bits (netbsd-amd64-cgo), const UintSize = 64 +pkg math/bits (netbsd-arm), const UintSize = 32 +pkg math/bits (netbsd-arm-cgo), const UintSize = 32 +pkg math/bits (netbsd-arm64), const UintSize = 64 +pkg math/bits (netbsd-arm64-cgo), const UintSize = 64 +pkg math/bits (openbsd-386), const UintSize = 32 +pkg math/bits (openbsd-386-cgo), const UintSize = 32 +pkg math/bits (openbsd-amd64), const UintSize = 64 +pkg math/bits (openbsd-amd64-cgo), const UintSize = 64 +pkg math/bits (windows-386), const UintSize = 32 +pkg math/bits (windows-amd64), const UintSize = 64 +pkg math/bits, const UintSize ideal-int +pkg math/bits, func LeadingZeros(uint) int +pkg math/bits, func LeadingZeros16(uint16) int +pkg math/bits, func LeadingZeros32(uint32) int +pkg math/bits, func LeadingZeros64(uint64) int +pkg math/bits, func LeadingZeros8(uint8) int +pkg math/bits, func Len(uint) int +pkg math/bits, func Len16(uint16) int +pkg math/bits, func Len32(uint32) int +pkg math/bits, func Len64(uint64) int +pkg math/bits, func Len8(uint8) int +pkg math/bits, func OnesCount(uint) int +pkg math/bits, func OnesCount16(uint16) int +pkg math/bits, func OnesCount32(uint32) int +pkg math/bits, func OnesCount64(uint64) int +pkg math/bits, func OnesCount8(uint8) int +pkg math/bits, func Reverse(uint) uint +pkg math/bits, func Reverse16(uint16) uint16 +pkg math/bits, func Reverse32(uint32) uint32 +pkg math/bits, func Reverse64(uint64) uint64 +pkg math/bits, func Reverse8(uint8) uint8 +pkg math/bits, func ReverseBytes(uint) uint +pkg math/bits, func ReverseBytes16(uint16) uint16 +pkg math/bits, func ReverseBytes32(uint32) uint32 +pkg math/bits, func ReverseBytes64(uint64) uint64 +pkg math/bits, func RotateLeft(uint, int) uint +pkg math/bits, func RotateLeft16(uint16, int) uint16 +pkg math/bits, func RotateLeft32(uint32, int) uint32 +pkg math/bits, func RotateLeft64(uint64, int) uint64 +pkg math/bits, func RotateLeft8(uint8, int) uint8 +pkg math/bits, func TrailingZeros(uint) int +pkg math/bits, func TrailingZeros16(uint16) int +pkg math/bits, func TrailingZeros32(uint32) int +pkg math/bits, func TrailingZeros64(uint64) int +pkg math/bits, func TrailingZeros8(uint8) int +pkg mime, var ErrInvalidMediaParameter error +pkg mime/multipart, type FileHeader struct, Size int64 +pkg mime/multipart, var ErrMessageTooLarge error +pkg net, method (*IPConn) SyscallConn() (syscall.RawConn, error) +pkg net, method (*TCPConn) SyscallConn() (syscall.RawConn, error) +pkg net, method (*UDPConn) SyscallConn() (syscall.RawConn, error) +pkg net, method (*UnixConn) SyscallConn() (syscall.RawConn, error) +pkg net, type Resolver struct, Dial func(context.Context, string, string) (Conn, error) +pkg net, type Resolver struct, StrictErrors bool +pkg net/http, func ServeTLS(net.Listener, Handler, string, string) error +pkg net/http, method (*Server) RegisterOnShutdown(func()) +pkg net/http, method (*Server) ServeTLS(net.Listener, string, string) error +pkg net/http/fcgi, func ProcessEnv(*http.Request) map[string]string +pkg net/http/httptest, method (*Server) Certificate() *x509.Certificate +pkg net/http/httptest, method (*Server) Client() *http.Client +pkg reflect, func MakeMapWithSize(Type, int) Value +pkg runtime/pprof, func Do(context.Context, LabelSet, func(context.Context)) +pkg runtime/pprof, func ForLabels(context.Context, func(string, string) bool) +pkg runtime/pprof, func Label(context.Context, string) (string, bool) +pkg runtime/pprof, func Labels(...string) LabelSet +pkg runtime/pprof, func SetGoroutineLabels(context.Context) +pkg runtime/pprof, func WithLabels(context.Context, LabelSet) context.Context +pkg runtime/pprof, type LabelSet struct +pkg sync, method (*Map) Delete(interface{}) +pkg sync, method (*Map) Load(interface{}) (interface{}, bool) +pkg sync, method (*Map) LoadOrStore(interface{}, interface{}) (interface{}, bool) +pkg sync, method (*Map) Range(func(interface{}, interface{}) bool) +pkg sync, method (*Map) Store(interface{}, interface{}) +pkg sync, type Map struct +pkg syscall (darwin-386-cgo), type Credential struct, NoSetGroups bool +pkg syscall (darwin-386), type Credential struct, NoSetGroups bool +pkg syscall (darwin-amd64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (darwin-amd64), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-386-cgo), func Pipe2([]int, int) error +pkg syscall (freebsd-386-cgo), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-386), func Pipe2([]int, int) error +pkg syscall (freebsd-386), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-amd64-cgo), func Pipe2([]int, int) error +pkg syscall (freebsd-amd64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-amd64), func Pipe2([]int, int) error +pkg syscall (freebsd-amd64), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-arm-cgo), func Pipe2([]int, int) error +pkg syscall (freebsd-arm-cgo), type Credential struct, NoSetGroups bool +pkg syscall (freebsd-arm), func Pipe2([]int, int) error +pkg syscall (freebsd-arm), type Credential struct, NoSetGroups bool +pkg syscall (linux-386-cgo), type Credential struct, NoSetGroups bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (linux-386), type Credential struct, NoSetGroups bool +pkg syscall (linux-386), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (linux-amd64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (linux-amd64), type Credential struct, NoSetGroups bool +pkg syscall (linux-amd64), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (linux-arm-cgo), type Credential struct, NoSetGroups bool +pkg syscall (linux-arm-cgo), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (linux-arm), type Credential struct, NoSetGroups bool +pkg syscall (linux-arm), type SysProcAttr struct, AmbientCaps []uintptr +pkg syscall (netbsd-386-cgo), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-386), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-amd64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-amd64), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-arm-cgo), type Credential struct, NoSetGroups bool +pkg syscall (netbsd-arm), type Credential struct, NoSetGroups bool +pkg syscall (openbsd-386-cgo), type Credential struct, NoSetGroups bool +pkg syscall (openbsd-386), type Credential struct, NoSetGroups bool +pkg syscall (openbsd-amd64-cgo), type Credential struct, NoSetGroups bool +pkg syscall (openbsd-amd64), type Credential struct, NoSetGroups bool +pkg syscall (windows-386), const WSAECONNABORTED = 10053 +pkg syscall (windows-386), const WSAECONNABORTED Errno +pkg syscall (windows-amd64), const WSAECONNABORTED = 10053 +pkg syscall (windows-amd64), const WSAECONNABORTED Errno +pkg syscall, type Conn interface { SyscallConn } +pkg syscall, type Conn interface, SyscallConn() (RawConn, error) +pkg syscall, type RawConn interface { Control, Read, Write } +pkg syscall, type RawConn interface, Control(func(uintptr)) error +pkg syscall, type RawConn interface, Read(func(uintptr) bool) error +pkg syscall, type RawConn interface, Write(func(uintptr) bool) error +pkg testing, method (*B) Helper() +pkg testing, method (*T) Helper() +pkg testing, type TB interface, Helper() +pkg time, method (Duration) Round(Duration) Duration +pkg time, method (Duration) Truncate(Duration) Duration diff --git a/platform/dbops/binaries/go/go/api/go1.txt b/platform/dbops/binaries/go/go/api/go1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e3dea5a372525191ed651a6d46be0a924b7d3ab --- /dev/null +++ b/platform/dbops/binaries/go/go/api/go1.txt @@ -0,0 +1,30871 @@ +pkg archive/tar, const TypeBlock ideal-char +pkg archive/tar, const TypeChar ideal-char +pkg archive/tar, const TypeCont ideal-char +pkg archive/tar, const TypeDir ideal-char +pkg archive/tar, const TypeFifo ideal-char +pkg archive/tar, const TypeLink ideal-char +pkg archive/tar, const TypeReg ideal-char +pkg archive/tar, const TypeRegA ideal-char +pkg archive/tar, const TypeSymlink ideal-char +pkg archive/tar, const TypeXGlobalHeader ideal-char +pkg archive/tar, const TypeXHeader ideal-char +pkg archive/tar, func NewReader(io.Reader) *Reader +pkg archive/tar, func NewWriter(io.Writer) *Writer +pkg archive/tar, method (*Reader) Next() (*Header, error) +pkg archive/tar, method (*Reader) Read([]uint8) (int, error) +pkg archive/tar, method (*Writer) Close() error +pkg archive/tar, method (*Writer) Flush() error +pkg archive/tar, method (*Writer) Write([]uint8) (int, error) +pkg archive/tar, method (*Writer) WriteHeader(*Header) error +pkg archive/tar, type Header struct +pkg archive/tar, type Header struct, AccessTime time.Time +pkg archive/tar, type Header struct, ChangeTime time.Time +pkg archive/tar, type Header struct, Devmajor int64 +pkg archive/tar, type Header struct, Devminor int64 +pkg archive/tar, type Header struct, Gid int +pkg archive/tar, type Header struct, Gname string +pkg archive/tar, type Header struct, Linkname string +pkg archive/tar, type Header struct, ModTime time.Time +pkg archive/tar, type Header struct, Mode int64 +pkg archive/tar, type Header struct, Name string +pkg archive/tar, type Header struct, Size int64 +pkg archive/tar, type Header struct, Typeflag uint8 +pkg archive/tar, type Header struct, Uid int +pkg archive/tar, type Header struct, Uname string +pkg archive/tar, type Reader struct +pkg archive/tar, type Writer struct +pkg archive/tar, var ErrFieldTooLong error +pkg archive/tar, var ErrHeader error +pkg archive/tar, var ErrWriteAfterClose error +pkg archive/tar, var ErrWriteTooLong error +pkg archive/zip, const Deflate uint16 +pkg archive/zip, const Store uint16 +pkg archive/zip, func FileInfoHeader(os.FileInfo) (*FileHeader, error) +pkg archive/zip, func NewReader(io.ReaderAt, int64) (*Reader, error) +pkg archive/zip, func NewWriter(io.Writer) *Writer +pkg archive/zip, func OpenReader(string) (*ReadCloser, error) +pkg archive/zip, method (*File) FileInfo() os.FileInfo +pkg archive/zip, method (*File) ModTime() time.Time +pkg archive/zip, method (*File) Mode() os.FileMode +pkg archive/zip, method (*File) Open() (io.ReadCloser, error) +pkg archive/zip, method (*File) SetModTime(time.Time) +pkg archive/zip, method (*File) SetMode(os.FileMode) +pkg archive/zip, method (*FileHeader) FileInfo() os.FileInfo +pkg archive/zip, method (*FileHeader) ModTime() time.Time +pkg archive/zip, method (*FileHeader) Mode() os.FileMode +pkg archive/zip, method (*FileHeader) SetModTime(time.Time) +pkg archive/zip, method (*FileHeader) SetMode(os.FileMode) +pkg archive/zip, method (*ReadCloser) Close() error +pkg archive/zip, method (*Writer) Close() error +pkg archive/zip, method (*Writer) Create(string) (io.Writer, error) +pkg archive/zip, method (*Writer) CreateHeader(*FileHeader) (io.Writer, error) +pkg archive/zip, type File struct +pkg archive/zip, type File struct, embedded FileHeader +pkg archive/zip, type FileHeader struct +pkg archive/zip, type FileHeader struct, CRC32 uint32 +pkg archive/zip, type FileHeader struct, Comment string +pkg archive/zip, type FileHeader struct, CompressedSize uint32 +pkg archive/zip, type FileHeader struct, CreatorVersion uint16 +pkg archive/zip, type FileHeader struct, ExternalAttrs uint32 +pkg archive/zip, type FileHeader struct, Extra []uint8 +pkg archive/zip, type FileHeader struct, Flags uint16 +pkg archive/zip, type FileHeader struct, Method uint16 +pkg archive/zip, type FileHeader struct, ModifiedDate uint16 +pkg archive/zip, type FileHeader struct, ModifiedTime uint16 +pkg archive/zip, type FileHeader struct, Name string +pkg archive/zip, type FileHeader struct, ReaderVersion uint16 +pkg archive/zip, type FileHeader struct, UncompressedSize uint32 +pkg archive/zip, type ReadCloser struct +pkg archive/zip, type ReadCloser struct, embedded Reader +pkg archive/zip, type Reader struct +pkg archive/zip, type Reader struct, Comment string +pkg archive/zip, type Reader struct, File []*File +pkg archive/zip, type Writer struct +pkg archive/zip, var ErrAlgorithm error +pkg archive/zip, var ErrChecksum error +pkg archive/zip, var ErrFormat error +pkg bufio, func NewReadWriter(*Reader, *Writer) *ReadWriter +pkg bufio, func NewReader(io.Reader) *Reader +pkg bufio, func NewReaderSize(io.Reader, int) *Reader +pkg bufio, func NewWriter(io.Writer) *Writer +pkg bufio, func NewWriterSize(io.Writer, int) *Writer +pkg bufio, method (*Reader) Buffered() int +pkg bufio, method (*Reader) Peek(int) ([]uint8, error) +pkg bufio, method (*Reader) Read([]uint8) (int, error) +pkg bufio, method (*Reader) ReadByte() (uint8, error) +pkg bufio, method (*Reader) ReadBytes(uint8) ([]uint8, error) +pkg bufio, method (*Reader) ReadLine() ([]uint8, bool, error) +pkg bufio, method (*Reader) ReadRune() (int32, int, error) +pkg bufio, method (*Reader) ReadSlice(uint8) ([]uint8, error) +pkg bufio, method (*Reader) ReadString(uint8) (string, error) +pkg bufio, method (*Reader) UnreadByte() error +pkg bufio, method (*Reader) UnreadRune() error +pkg bufio, method (*Writer) Available() int +pkg bufio, method (*Writer) Buffered() int +pkg bufio, method (*Writer) Flush() error +pkg bufio, method (*Writer) Write([]uint8) (int, error) +pkg bufio, method (*Writer) WriteByte(uint8) error +pkg bufio, method (*Writer) WriteRune(int32) (int, error) +pkg bufio, method (*Writer) WriteString(string) (int, error) +pkg bufio, method (ReadWriter) Available() int +pkg bufio, method (ReadWriter) Flush() error +pkg bufio, method (ReadWriter) Peek(int) ([]uint8, error) +pkg bufio, method (ReadWriter) Read([]uint8) (int, error) +pkg bufio, method (ReadWriter) ReadByte() (uint8, error) +pkg bufio, method (ReadWriter) ReadBytes(uint8) ([]uint8, error) +pkg bufio, method (ReadWriter) ReadLine() ([]uint8, bool, error) +pkg bufio, method (ReadWriter) ReadRune() (int32, int, error) +pkg bufio, method (ReadWriter) ReadSlice(uint8) ([]uint8, error) +pkg bufio, method (ReadWriter) ReadString(uint8) (string, error) +pkg bufio, method (ReadWriter) UnreadByte() error +pkg bufio, method (ReadWriter) UnreadRune() error +pkg bufio, method (ReadWriter) Write([]uint8) (int, error) +pkg bufio, method (ReadWriter) WriteByte(uint8) error +pkg bufio, method (ReadWriter) WriteRune(int32) (int, error) +pkg bufio, method (ReadWriter) WriteString(string) (int, error) +pkg bufio, type ReadWriter struct +pkg bufio, type ReadWriter struct, embedded *Reader +pkg bufio, type ReadWriter struct, embedded *Writer +pkg bufio, type Reader struct +pkg bufio, type Writer struct +pkg bufio, var ErrBufferFull error +pkg bufio, var ErrInvalidUnreadByte error +pkg bufio, var ErrInvalidUnreadRune error +pkg bufio, var ErrNegativeCount error +pkg bytes, const MinRead ideal-int +pkg bytes, func Compare([]uint8, []uint8) int +pkg bytes, func Contains([]uint8, []uint8) bool +pkg bytes, func Count([]uint8, []uint8) int +pkg bytes, func Equal([]uint8, []uint8) bool +pkg bytes, func EqualFold([]uint8, []uint8) bool +pkg bytes, func Fields([]uint8) [][]uint8 +pkg bytes, func FieldsFunc([]uint8, func(int32) bool) [][]uint8 +pkg bytes, func HasPrefix([]uint8, []uint8) bool +pkg bytes, func HasSuffix([]uint8, []uint8) bool +pkg bytes, func Index([]uint8, []uint8) int +pkg bytes, func IndexAny([]uint8, string) int +pkg bytes, func IndexByte([]uint8, uint8) int +pkg bytes, func IndexFunc([]uint8, func(int32) bool) int +pkg bytes, func IndexRune([]uint8, int32) int +pkg bytes, func Join([][]uint8, []uint8) []uint8 +pkg bytes, func LastIndex([]uint8, []uint8) int +pkg bytes, func LastIndexAny([]uint8, string) int +pkg bytes, func LastIndexFunc([]uint8, func(int32) bool) int +pkg bytes, func Map(func(int32) int32, []uint8) []uint8 +pkg bytes, func NewBuffer([]uint8) *Buffer +pkg bytes, func NewBufferString(string) *Buffer +pkg bytes, func NewReader([]uint8) *Reader +pkg bytes, func Repeat([]uint8, int) []uint8 +pkg bytes, func Replace([]uint8, []uint8, []uint8, int) []uint8 +pkg bytes, func Runes([]uint8) []int32 +pkg bytes, func Split([]uint8, []uint8) [][]uint8 +pkg bytes, func SplitAfter([]uint8, []uint8) [][]uint8 +pkg bytes, func SplitAfterN([]uint8, []uint8, int) [][]uint8 +pkg bytes, func SplitN([]uint8, []uint8, int) [][]uint8 +pkg bytes, func Title([]uint8) []uint8 +pkg bytes, func ToLower([]uint8) []uint8 +pkg bytes, func ToLowerSpecial(unicode.SpecialCase, []uint8) []uint8 +pkg bytes, func ToTitle([]uint8) []uint8 +pkg bytes, func ToTitleSpecial(unicode.SpecialCase, []uint8) []uint8 +pkg bytes, func ToUpper([]uint8) []uint8 +pkg bytes, func ToUpperSpecial(unicode.SpecialCase, []uint8) []uint8 +pkg bytes, func Trim([]uint8, string) []uint8 +pkg bytes, func TrimFunc([]uint8, func(int32) bool) []uint8 +pkg bytes, func TrimLeft([]uint8, string) []uint8 +pkg bytes, func TrimLeftFunc([]uint8, func(int32) bool) []uint8 +pkg bytes, func TrimRight([]uint8, string) []uint8 +pkg bytes, func TrimRightFunc([]uint8, func(int32) bool) []uint8 +pkg bytes, func TrimSpace([]uint8) []uint8 +pkg bytes, method (*Buffer) Bytes() []uint8 +pkg bytes, method (*Buffer) Len() int +pkg bytes, method (*Buffer) Next(int) []uint8 +pkg bytes, method (*Buffer) Read([]uint8) (int, error) +pkg bytes, method (*Buffer) ReadByte() (uint8, error) +pkg bytes, method (*Buffer) ReadBytes(uint8) ([]uint8, error) +pkg bytes, method (*Buffer) ReadFrom(io.Reader) (int64, error) +pkg bytes, method (*Buffer) ReadRune() (int32, int, error) +pkg bytes, method (*Buffer) ReadString(uint8) (string, error) +pkg bytes, method (*Buffer) Reset() +pkg bytes, method (*Buffer) String() string +pkg bytes, method (*Buffer) Truncate(int) +pkg bytes, method (*Buffer) UnreadByte() error +pkg bytes, method (*Buffer) UnreadRune() error +pkg bytes, method (*Buffer) Write([]uint8) (int, error) +pkg bytes, method (*Buffer) WriteByte(uint8) error +pkg bytes, method (*Buffer) WriteRune(int32) (int, error) +pkg bytes, method (*Buffer) WriteString(string) (int, error) +pkg bytes, method (*Buffer) WriteTo(io.Writer) (int64, error) +pkg bytes, method (*Reader) Len() int +pkg bytes, method (*Reader) Read([]uint8) (int, error) +pkg bytes, method (*Reader) ReadAt([]uint8, int64) (int, error) +pkg bytes, method (*Reader) ReadByte() (uint8, error) +pkg bytes, method (*Reader) ReadRune() (int32, int, error) +pkg bytes, method (*Reader) Seek(int64, int) (int64, error) +pkg bytes, method (*Reader) UnreadByte() error +pkg bytes, method (*Reader) UnreadRune() error +pkg bytes, type Buffer struct +pkg bytes, type Reader struct +pkg bytes, var ErrTooLarge error +pkg compress/bzip2, func NewReader(io.Reader) io.Reader +pkg compress/bzip2, method (StructuralError) Error() string +pkg compress/bzip2, type StructuralError string +pkg compress/flate, const BestCompression ideal-int +pkg compress/flate, const BestSpeed ideal-int +pkg compress/flate, const DefaultCompression ideal-int +pkg compress/flate, const NoCompression ideal-int +pkg compress/flate, func NewReader(io.Reader) io.ReadCloser +pkg compress/flate, func NewReaderDict(io.Reader, []uint8) io.ReadCloser +pkg compress/flate, func NewWriter(io.Writer, int) (*Writer, error) +pkg compress/flate, func NewWriterDict(io.Writer, int, []uint8) (*Writer, error) +pkg compress/flate, method (*ReadError) Error() string +pkg compress/flate, method (*WriteError) Error() string +pkg compress/flate, method (*Writer) Close() error +pkg compress/flate, method (*Writer) Flush() error +pkg compress/flate, method (*Writer) Write([]uint8) (int, error) +pkg compress/flate, method (CorruptInputError) Error() string +pkg compress/flate, method (InternalError) Error() string +pkg compress/flate, type CorruptInputError int64 +pkg compress/flate, type InternalError string +pkg compress/flate, type ReadError struct +pkg compress/flate, type ReadError struct, Err error +pkg compress/flate, type ReadError struct, Offset int64 +pkg compress/flate, type Reader interface { Read, ReadByte } +pkg compress/flate, type Reader interface, Read([]uint8) (int, error) +pkg compress/flate, type Reader interface, ReadByte() (uint8, error) +pkg compress/flate, type WriteError struct +pkg compress/flate, type WriteError struct, Err error +pkg compress/flate, type WriteError struct, Offset int64 +pkg compress/flate, type Writer struct +pkg compress/gzip, const BestCompression ideal-int +pkg compress/gzip, const BestSpeed ideal-int +pkg compress/gzip, const DefaultCompression ideal-int +pkg compress/gzip, const NoCompression ideal-int +pkg compress/gzip, func NewReader(io.Reader) (*Reader, error) +pkg compress/gzip, func NewWriter(io.Writer) *Writer +pkg compress/gzip, func NewWriterLevel(io.Writer, int) (*Writer, error) +pkg compress/gzip, method (*Reader) Close() error +pkg compress/gzip, method (*Reader) Read([]uint8) (int, error) +pkg compress/gzip, method (*Writer) Close() error +pkg compress/gzip, method (*Writer) Write([]uint8) (int, error) +pkg compress/gzip, type Header struct +pkg compress/gzip, type Header struct, Comment string +pkg compress/gzip, type Header struct, Extra []uint8 +pkg compress/gzip, type Header struct, ModTime time.Time +pkg compress/gzip, type Header struct, Name string +pkg compress/gzip, type Header struct, OS uint8 +pkg compress/gzip, type Reader struct +pkg compress/gzip, type Reader struct, embedded Header +pkg compress/gzip, type Writer struct +pkg compress/gzip, type Writer struct, embedded Header +pkg compress/gzip, var ErrChecksum error +pkg compress/gzip, var ErrHeader error +pkg compress/lzw, const LSB Order +pkg compress/lzw, const MSB Order +pkg compress/lzw, func NewReader(io.Reader, Order, int) io.ReadCloser +pkg compress/lzw, func NewWriter(io.Writer, Order, int) io.WriteCloser +pkg compress/lzw, type Order int +pkg compress/zlib, const BestCompression ideal-int +pkg compress/zlib, const BestSpeed ideal-int +pkg compress/zlib, const DefaultCompression ideal-int +pkg compress/zlib, const NoCompression ideal-int +pkg compress/zlib, func NewReader(io.Reader) (io.ReadCloser, error) +pkg compress/zlib, func NewReaderDict(io.Reader, []uint8) (io.ReadCloser, error) +pkg compress/zlib, func NewWriter(io.Writer) *Writer +pkg compress/zlib, func NewWriterLevel(io.Writer, int) (*Writer, error) +pkg compress/zlib, func NewWriterLevelDict(io.Writer, int, []uint8) (*Writer, error) +pkg compress/zlib, method (*Writer) Close() error +pkg compress/zlib, method (*Writer) Flush() error +pkg compress/zlib, method (*Writer) Write([]uint8) (int, error) +pkg compress/zlib, type Writer struct +pkg compress/zlib, var ErrChecksum error +pkg compress/zlib, var ErrDictionary error +pkg compress/zlib, var ErrHeader error +pkg container/heap, func Init(Interface) +pkg container/heap, func Pop(Interface) interface{} +pkg container/heap, func Push(Interface, interface{}) +pkg container/heap, func Remove(Interface, int) interface{} +pkg container/heap, type Interface interface { Len, Less, Pop, Push, Swap } +pkg container/heap, type Interface interface, Len() int +pkg container/heap, type Interface interface, Less(int, int) bool +pkg container/heap, type Interface interface, Pop() interface{} +pkg container/heap, type Interface interface, Push(interface{}) +pkg container/heap, type Interface interface, Swap(int, int) +pkg container/list, func New() *List +pkg container/list, method (*Element) Next() *Element +pkg container/list, method (*Element) Prev() *Element +pkg container/list, method (*List) Back() *Element +pkg container/list, method (*List) Front() *Element +pkg container/list, method (*List) Init() *List +pkg container/list, method (*List) InsertAfter(interface{}, *Element) *Element +pkg container/list, method (*List) InsertBefore(interface{}, *Element) *Element +pkg container/list, method (*List) Len() int +pkg container/list, method (*List) MoveToBack(*Element) +pkg container/list, method (*List) MoveToFront(*Element) +pkg container/list, method (*List) PushBack(interface{}) *Element +pkg container/list, method (*List) PushBackList(*List) +pkg container/list, method (*List) PushFront(interface{}) *Element +pkg container/list, method (*List) PushFrontList(*List) +pkg container/list, method (*List) Remove(*Element) interface{} +pkg container/list, type Element struct +pkg container/list, type Element struct, Value interface{} +pkg container/list, type List struct +pkg container/ring, func New(int) *Ring +pkg container/ring, method (*Ring) Do(func(interface{})) +pkg container/ring, method (*Ring) Len() int +pkg container/ring, method (*Ring) Link(*Ring) *Ring +pkg container/ring, method (*Ring) Move(int) *Ring +pkg container/ring, method (*Ring) Next() *Ring +pkg container/ring, method (*Ring) Prev() *Ring +pkg container/ring, method (*Ring) Unlink(int) *Ring +pkg container/ring, type Ring struct +pkg container/ring, type Ring struct, Value interface{} +pkg crypto, const MD4 Hash +pkg crypto, const MD5 Hash +pkg crypto, const MD5SHA1 Hash +pkg crypto, const RIPEMD160 Hash +pkg crypto, const SHA1 Hash +pkg crypto, const SHA224 Hash +pkg crypto, const SHA256 Hash +pkg crypto, const SHA384 Hash +pkg crypto, const SHA512 Hash +pkg crypto, func RegisterHash(Hash, func() hash.Hash) +pkg crypto, method (Hash) Available() bool +pkg crypto, method (Hash) New() hash.Hash +pkg crypto, method (Hash) Size() int +pkg crypto, type Hash uint +pkg crypto, type PrivateKey interface {} +pkg crypto/aes, const BlockSize ideal-int +pkg crypto/aes, func NewCipher([]uint8) (cipher.Block, error) +pkg crypto/aes, method (KeySizeError) Error() string +pkg crypto/aes, type KeySizeError int +pkg crypto/cipher, func NewCBCDecrypter(Block, []uint8) BlockMode +pkg crypto/cipher, func NewCBCEncrypter(Block, []uint8) BlockMode +pkg crypto/cipher, func NewCFBDecrypter(Block, []uint8) Stream +pkg crypto/cipher, func NewCFBEncrypter(Block, []uint8) Stream +pkg crypto/cipher, func NewCTR(Block, []uint8) Stream +pkg crypto/cipher, func NewOFB(Block, []uint8) Stream +pkg crypto/cipher, method (StreamReader) Read([]uint8) (int, error) +pkg crypto/cipher, method (StreamWriter) Close() error +pkg crypto/cipher, method (StreamWriter) Write([]uint8) (int, error) +pkg crypto/cipher, type Block interface { BlockSize, Decrypt, Encrypt } +pkg crypto/cipher, type Block interface, BlockSize() int +pkg crypto/cipher, type Block interface, Decrypt([]uint8, []uint8) +pkg crypto/cipher, type Block interface, Encrypt([]uint8, []uint8) +pkg crypto/cipher, type BlockMode interface { BlockSize, CryptBlocks } +pkg crypto/cipher, type BlockMode interface, BlockSize() int +pkg crypto/cipher, type BlockMode interface, CryptBlocks([]uint8, []uint8) +pkg crypto/cipher, type Stream interface { XORKeyStream } +pkg crypto/cipher, type Stream interface, XORKeyStream([]uint8, []uint8) +pkg crypto/cipher, type StreamReader struct +pkg crypto/cipher, type StreamReader struct, R io.Reader +pkg crypto/cipher, type StreamReader struct, S Stream +pkg crypto/cipher, type StreamWriter struct +pkg crypto/cipher, type StreamWriter struct, Err error +pkg crypto/cipher, type StreamWriter struct, S Stream +pkg crypto/cipher, type StreamWriter struct, W io.Writer +pkg crypto/des, const BlockSize ideal-int +pkg crypto/des, func NewCipher([]uint8) (cipher.Block, error) +pkg crypto/des, func NewTripleDESCipher([]uint8) (cipher.Block, error) +pkg crypto/des, method (KeySizeError) Error() string +pkg crypto/des, type KeySizeError int +pkg crypto/dsa, const L1024N160 ParameterSizes +pkg crypto/dsa, const L2048N224 ParameterSizes +pkg crypto/dsa, const L2048N256 ParameterSizes +pkg crypto/dsa, const L3072N256 ParameterSizes +pkg crypto/dsa, func GenerateKey(*PrivateKey, io.Reader) error +pkg crypto/dsa, func GenerateParameters(*Parameters, io.Reader, ParameterSizes) error +pkg crypto/dsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error) +pkg crypto/dsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool +pkg crypto/dsa, type ParameterSizes int +pkg crypto/dsa, type Parameters struct +pkg crypto/dsa, type Parameters struct, G *big.Int +pkg crypto/dsa, type Parameters struct, P *big.Int +pkg crypto/dsa, type Parameters struct, Q *big.Int +pkg crypto/dsa, type PrivateKey struct +pkg crypto/dsa, type PrivateKey struct, X *big.Int +pkg crypto/dsa, type PrivateKey struct, embedded PublicKey +pkg crypto/dsa, type PublicKey struct +pkg crypto/dsa, type PublicKey struct, Y *big.Int +pkg crypto/dsa, type PublicKey struct, embedded Parameters +pkg crypto/dsa, var ErrInvalidPublicKey error +pkg crypto/ecdsa, func GenerateKey(elliptic.Curve, io.Reader) (*PrivateKey, error) +pkg crypto/ecdsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error) +pkg crypto/ecdsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool +pkg crypto/ecdsa, method (PrivateKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PrivateKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PrivateKey) IsOnCurve(*big.Int, *big.Int) bool +pkg crypto/ecdsa, method (PrivateKey) Params() *elliptic.CurveParams +pkg crypto/ecdsa, method (PrivateKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PrivateKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PublicKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PublicKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PublicKey) IsOnCurve(*big.Int, *big.Int) bool +pkg crypto/ecdsa, method (PublicKey) Params() *elliptic.CurveParams +pkg crypto/ecdsa, method (PublicKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int) +pkg crypto/ecdsa, method (PublicKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int) +pkg crypto/ecdsa, type PrivateKey struct +pkg crypto/ecdsa, type PrivateKey struct, D *big.Int +pkg crypto/ecdsa, type PrivateKey struct, embedded PublicKey +pkg crypto/ecdsa, type PublicKey struct +pkg crypto/ecdsa, type PublicKey struct, X *big.Int +pkg crypto/ecdsa, type PublicKey struct, Y *big.Int +pkg crypto/ecdsa, type PublicKey struct, embedded elliptic.Curve +pkg crypto/elliptic, func GenerateKey(Curve, io.Reader) ([]uint8, *big.Int, *big.Int, error) +pkg crypto/elliptic, func Marshal(Curve, *big.Int, *big.Int) []uint8 +pkg crypto/elliptic, func P224() Curve +pkg crypto/elliptic, func P256() Curve +pkg crypto/elliptic, func P384() Curve +pkg crypto/elliptic, func P521() Curve +pkg crypto/elliptic, func Unmarshal(Curve, []uint8) (*big.Int, *big.Int) +pkg crypto/elliptic, method (*CurveParams) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/elliptic, method (*CurveParams) Double(*big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/elliptic, method (*CurveParams) IsOnCurve(*big.Int, *big.Int) bool +pkg crypto/elliptic, method (*CurveParams) Params() *CurveParams +pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult([]uint8) (*big.Int, *big.Int) +pkg crypto/elliptic, method (*CurveParams) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int) +pkg crypto/elliptic, type Curve interface { Add, Double, IsOnCurve, Params, ScalarBaseMult, ScalarMult } +pkg crypto/elliptic, type Curve interface, Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/elliptic, type Curve interface, Double(*big.Int, *big.Int) (*big.Int, *big.Int) +pkg crypto/elliptic, type Curve interface, IsOnCurve(*big.Int, *big.Int) bool +pkg crypto/elliptic, type Curve interface, Params() *CurveParams +pkg crypto/elliptic, type Curve interface, ScalarBaseMult([]uint8) (*big.Int, *big.Int) +pkg crypto/elliptic, type Curve interface, ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int) +pkg crypto/elliptic, type CurveParams struct +pkg crypto/elliptic, type CurveParams struct, B *big.Int +pkg crypto/elliptic, type CurveParams struct, BitSize int +pkg crypto/elliptic, type CurveParams struct, Gx *big.Int +pkg crypto/elliptic, type CurveParams struct, Gy *big.Int +pkg crypto/elliptic, type CurveParams struct, N *big.Int +pkg crypto/elliptic, type CurveParams struct, P *big.Int +pkg crypto/hmac, func New(func() hash.Hash, []uint8) hash.Hash +pkg crypto/md5, const BlockSize ideal-int +pkg crypto/md5, const Size ideal-int +pkg crypto/md5, func New() hash.Hash +pkg crypto/rand, func Int(io.Reader, *big.Int) (*big.Int, error) +pkg crypto/rand, func Prime(io.Reader, int) (*big.Int, error) +pkg crypto/rand, func Read([]uint8) (int, error) +pkg crypto/rand, var Reader io.Reader +pkg crypto/rc4, func NewCipher([]uint8) (*Cipher, error) +pkg crypto/rc4, method (*Cipher) Reset() +pkg crypto/rc4, method (*Cipher) XORKeyStream([]uint8, []uint8) +pkg crypto/rc4, method (KeySizeError) Error() string +pkg crypto/rc4, type Cipher struct +pkg crypto/rc4, type KeySizeError int +pkg crypto/rsa, func DecryptOAEP(hash.Hash, io.Reader, *PrivateKey, []uint8, []uint8) ([]uint8, error) +pkg crypto/rsa, func DecryptPKCS1v15(io.Reader, *PrivateKey, []uint8) ([]uint8, error) +pkg crypto/rsa, func DecryptPKCS1v15SessionKey(io.Reader, *PrivateKey, []uint8, []uint8) error +pkg crypto/rsa, func EncryptOAEP(hash.Hash, io.Reader, *PublicKey, []uint8, []uint8) ([]uint8, error) +pkg crypto/rsa, func EncryptPKCS1v15(io.Reader, *PublicKey, []uint8) ([]uint8, error) +pkg crypto/rsa, func GenerateKey(io.Reader, int) (*PrivateKey, error) +pkg crypto/rsa, func GenerateMultiPrimeKey(io.Reader, int, int) (*PrivateKey, error) +pkg crypto/rsa, func SignPKCS1v15(io.Reader, *PrivateKey, crypto.Hash, []uint8) ([]uint8, error) +pkg crypto/rsa, func VerifyPKCS1v15(*PublicKey, crypto.Hash, []uint8, []uint8) error +pkg crypto/rsa, method (*PrivateKey) Precompute() +pkg crypto/rsa, method (*PrivateKey) Validate() error +pkg crypto/rsa, type CRTValue struct +pkg crypto/rsa, type CRTValue struct, Coeff *big.Int +pkg crypto/rsa, type CRTValue struct, Exp *big.Int +pkg crypto/rsa, type CRTValue struct, R *big.Int +pkg crypto/rsa, type PrecomputedValues struct +pkg crypto/rsa, type PrecomputedValues struct, CRTValues []CRTValue +pkg crypto/rsa, type PrecomputedValues struct, Dp *big.Int +pkg crypto/rsa, type PrecomputedValues struct, Dq *big.Int +pkg crypto/rsa, type PrecomputedValues struct, Qinv *big.Int +pkg crypto/rsa, type PrivateKey struct +pkg crypto/rsa, type PrivateKey struct, D *big.Int +pkg crypto/rsa, type PrivateKey struct, Precomputed PrecomputedValues +pkg crypto/rsa, type PrivateKey struct, Primes []*big.Int +pkg crypto/rsa, type PrivateKey struct, embedded PublicKey +pkg crypto/rsa, type PublicKey struct +pkg crypto/rsa, type PublicKey struct, E int +pkg crypto/rsa, type PublicKey struct, N *big.Int +pkg crypto/rsa, var ErrDecryption error +pkg crypto/rsa, var ErrMessageTooLong error +pkg crypto/rsa, var ErrVerification error +pkg crypto/sha1, const BlockSize ideal-int +pkg crypto/sha1, const Size ideal-int +pkg crypto/sha1, func New() hash.Hash +pkg crypto/sha256, const BlockSize ideal-int +pkg crypto/sha256, const Size ideal-int +pkg crypto/sha256, const Size224 ideal-int +pkg crypto/sha256, func New() hash.Hash +pkg crypto/sha256, func New224() hash.Hash +pkg crypto/sha512, const BlockSize ideal-int +pkg crypto/sha512, const Size ideal-int +pkg crypto/sha512, const Size384 ideal-int +pkg crypto/sha512, func New() hash.Hash +pkg crypto/sha512, func New384() hash.Hash +pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int +pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int +pkg crypto/subtle, func ConstantTimeCopy(int, []uint8, []uint8) +pkg crypto/subtle, func ConstantTimeEq(int32, int32) int +pkg crypto/subtle, func ConstantTimeSelect(int, int, int) int +pkg crypto/tls, const NoClientCert ClientAuthType +pkg crypto/tls, const RequestClientCert ClientAuthType +pkg crypto/tls, const RequireAndVerifyClientCert ClientAuthType +pkg crypto/tls, const RequireAnyClientCert ClientAuthType +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_RC4_128_SHA uint16 +pkg crypto/tls, const TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA uint16 +pkg crypto/tls, const TLS_RSA_WITH_RC4_128_SHA uint16 +pkg crypto/tls, const VerifyClientCertIfGiven ClientAuthType +pkg crypto/tls, func Client(net.Conn, *Config) *Conn +pkg crypto/tls, func Dial(string, string, *Config) (*Conn, error) +pkg crypto/tls, func Listen(string, string, *Config) (net.Listener, error) +pkg crypto/tls, func LoadX509KeyPair(string, string) (Certificate, error) +pkg crypto/tls, func NewListener(net.Listener, *Config) net.Listener +pkg crypto/tls, func Server(net.Conn, *Config) *Conn +pkg crypto/tls, func X509KeyPair([]uint8, []uint8) (Certificate, error) +pkg crypto/tls, method (*Config) BuildNameToCertificate() +pkg crypto/tls, method (*Conn) Close() error +pkg crypto/tls, method (*Conn) ConnectionState() ConnectionState +pkg crypto/tls, method (*Conn) Handshake() error +pkg crypto/tls, method (*Conn) LocalAddr() net.Addr +pkg crypto/tls, method (*Conn) OCSPResponse() []uint8 +pkg crypto/tls, method (*Conn) Read([]uint8) (int, error) +pkg crypto/tls, method (*Conn) RemoteAddr() net.Addr +pkg crypto/tls, method (*Conn) SetDeadline(time.Time) error +pkg crypto/tls, method (*Conn) SetReadDeadline(time.Time) error +pkg crypto/tls, method (*Conn) SetWriteDeadline(time.Time) error +pkg crypto/tls, method (*Conn) VerifyHostname(string) error +pkg crypto/tls, method (*Conn) Write([]uint8) (int, error) +pkg crypto/tls, type Certificate struct +pkg crypto/tls, type Certificate struct, Certificate [][]uint8 +pkg crypto/tls, type Certificate struct, Leaf *x509.Certificate +pkg crypto/tls, type Certificate struct, OCSPStaple []uint8 +pkg crypto/tls, type Certificate struct, PrivateKey crypto.PrivateKey +pkg crypto/tls, type ClientAuthType int +pkg crypto/tls, type Config struct +pkg crypto/tls, type Config struct, Certificates []Certificate +pkg crypto/tls, type Config struct, CipherSuites []uint16 +pkg crypto/tls, type Config struct, ClientAuth ClientAuthType +pkg crypto/tls, type Config struct, ClientCAs *x509.CertPool +pkg crypto/tls, type Config struct, InsecureSkipVerify bool +pkg crypto/tls, type Config struct, NameToCertificate map[string]*Certificate +pkg crypto/tls, type Config struct, NextProtos []string +pkg crypto/tls, type Config struct, Rand io.Reader +pkg crypto/tls, type Config struct, RootCAs *x509.CertPool +pkg crypto/tls, type Config struct, ServerName string +pkg crypto/tls, type Config struct, Time func() time.Time +pkg crypto/tls, type Conn struct +pkg crypto/tls, type ConnectionState struct +pkg crypto/tls, type ConnectionState struct, CipherSuite uint16 +pkg crypto/tls, type ConnectionState struct, HandshakeComplete bool +pkg crypto/tls, type ConnectionState struct, NegotiatedProtocol string +pkg crypto/tls, type ConnectionState struct, NegotiatedProtocolIsMutual bool +pkg crypto/tls, type ConnectionState struct, PeerCertificates []*x509.Certificate +pkg crypto/tls, type ConnectionState struct, ServerName string +pkg crypto/tls, type ConnectionState struct, VerifiedChains [][]*x509.Certificate +pkg crypto/x509, const CANotAuthorizedForThisName InvalidReason +pkg crypto/x509, const DSA PublicKeyAlgorithm +pkg crypto/x509, const DSAWithSHA1 SignatureAlgorithm +pkg crypto/x509, const DSAWithSHA256 SignatureAlgorithm +pkg crypto/x509, const Expired InvalidReason +pkg crypto/x509, const ExtKeyUsageAny ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageClientAuth ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageCodeSigning ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageEmailProtection ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageOCSPSigning ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageServerAuth ExtKeyUsage +pkg crypto/x509, const ExtKeyUsageTimeStamping ExtKeyUsage +pkg crypto/x509, const KeyUsageCRLSign KeyUsage +pkg crypto/x509, const KeyUsageCertSign KeyUsage +pkg crypto/x509, const KeyUsageContentCommitment KeyUsage +pkg crypto/x509, const KeyUsageDataEncipherment KeyUsage +pkg crypto/x509, const KeyUsageDecipherOnly KeyUsage +pkg crypto/x509, const KeyUsageDigitalSignature KeyUsage +pkg crypto/x509, const KeyUsageEncipherOnly KeyUsage +pkg crypto/x509, const KeyUsageKeyAgreement KeyUsage +pkg crypto/x509, const KeyUsageKeyEncipherment KeyUsage +pkg crypto/x509, const MD2WithRSA SignatureAlgorithm +pkg crypto/x509, const MD5WithRSA SignatureAlgorithm +pkg crypto/x509, const NotAuthorizedToSign InvalidReason +pkg crypto/x509, const RSA PublicKeyAlgorithm +pkg crypto/x509, const SHA1WithRSA SignatureAlgorithm +pkg crypto/x509, const SHA256WithRSA SignatureAlgorithm +pkg crypto/x509, const SHA384WithRSA SignatureAlgorithm +pkg crypto/x509, const SHA512WithRSA SignatureAlgorithm +pkg crypto/x509, const TooManyIntermediates InvalidReason +pkg crypto/x509, const UnknownPublicKeyAlgorithm PublicKeyAlgorithm +pkg crypto/x509, const UnknownSignatureAlgorithm SignatureAlgorithm +pkg crypto/x509, func CreateCertificate(io.Reader, *Certificate, *Certificate, interface{}, interface{}) ([]uint8, error) +pkg crypto/x509, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []uint8 +pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]uint8, error) +pkg crypto/x509, func NewCertPool() *CertPool +pkg crypto/x509, func ParseCRL([]uint8) (*pkix.CertificateList, error) +pkg crypto/x509, func ParseCertificate([]uint8) (*Certificate, error) +pkg crypto/x509, func ParseCertificates([]uint8) ([]*Certificate, error) +pkg crypto/x509, func ParseDERCRL([]uint8) (*pkix.CertificateList, error) +pkg crypto/x509, func ParsePKCS1PrivateKey([]uint8) (*rsa.PrivateKey, error) +pkg crypto/x509, func ParsePKCS8PrivateKey([]uint8) (interface{}, error) +pkg crypto/x509, func ParsePKIXPublicKey([]uint8) (interface{}, error) +pkg crypto/x509, method (*CertPool) AddCert(*Certificate) +pkg crypto/x509, method (*CertPool) AppendCertsFromPEM([]uint8) bool +pkg crypto/x509, method (*CertPool) Subjects() [][]uint8 +pkg crypto/x509, method (*Certificate) CheckCRLSignature(*pkix.CertificateList) error +pkg crypto/x509, method (*Certificate) CheckSignature(SignatureAlgorithm, []uint8, []uint8) error +pkg crypto/x509, method (*Certificate) CheckSignatureFrom(*Certificate) error +pkg crypto/x509, method (*Certificate) CreateCRL(io.Reader, interface{}, []pkix.RevokedCertificate, time.Time, time.Time) ([]uint8, error) +pkg crypto/x509, method (*Certificate) Equal(*Certificate) bool +pkg crypto/x509, method (*Certificate) Verify(VerifyOptions) ([][]*Certificate, error) +pkg crypto/x509, method (*Certificate) VerifyHostname(string) error +pkg crypto/x509, method (CertificateInvalidError) Error() string +pkg crypto/x509, method (ConstraintViolationError) Error() string +pkg crypto/x509, method (HostnameError) Error() string +pkg crypto/x509, method (UnhandledCriticalExtension) Error() string +pkg crypto/x509, method (UnknownAuthorityError) Error() string +pkg crypto/x509, type CertPool struct +pkg crypto/x509, type Certificate struct +pkg crypto/x509, type Certificate struct, AuthorityKeyId []uint8 +pkg crypto/x509, type Certificate struct, BasicConstraintsValid bool +pkg crypto/x509, type Certificate struct, DNSNames []string +pkg crypto/x509, type Certificate struct, EmailAddresses []string +pkg crypto/x509, type Certificate struct, ExtKeyUsage []ExtKeyUsage +pkg crypto/x509, type Certificate struct, IsCA bool +pkg crypto/x509, type Certificate struct, Issuer pkix.Name +pkg crypto/x509, type Certificate struct, KeyUsage KeyUsage +pkg crypto/x509, type Certificate struct, MaxPathLen int +pkg crypto/x509, type Certificate struct, NotAfter time.Time +pkg crypto/x509, type Certificate struct, NotBefore time.Time +pkg crypto/x509, type Certificate struct, PermittedDNSDomains []string +pkg crypto/x509, type Certificate struct, PermittedDNSDomainsCritical bool +pkg crypto/x509, type Certificate struct, PolicyIdentifiers []asn1.ObjectIdentifier +pkg crypto/x509, type Certificate struct, PublicKey interface{} +pkg crypto/x509, type Certificate struct, PublicKeyAlgorithm PublicKeyAlgorithm +pkg crypto/x509, type Certificate struct, Raw []uint8 +pkg crypto/x509, type Certificate struct, RawIssuer []uint8 +pkg crypto/x509, type Certificate struct, RawSubject []uint8 +pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []uint8 +pkg crypto/x509, type Certificate struct, RawTBSCertificate []uint8 +pkg crypto/x509, type Certificate struct, SerialNumber *big.Int +pkg crypto/x509, type Certificate struct, Signature []uint8 +pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm +pkg crypto/x509, type Certificate struct, Subject pkix.Name +pkg crypto/x509, type Certificate struct, SubjectKeyId []uint8 +pkg crypto/x509, type Certificate struct, UnknownExtKeyUsage []asn1.ObjectIdentifier +pkg crypto/x509, type Certificate struct, Version int +pkg crypto/x509, type CertificateInvalidError struct +pkg crypto/x509, type CertificateInvalidError struct, Cert *Certificate +pkg crypto/x509, type CertificateInvalidError struct, Reason InvalidReason +pkg crypto/x509, type ConstraintViolationError struct +pkg crypto/x509, type ExtKeyUsage int +pkg crypto/x509, type HostnameError struct +pkg crypto/x509, type HostnameError struct, Certificate *Certificate +pkg crypto/x509, type HostnameError struct, Host string +pkg crypto/x509, type InvalidReason int +pkg crypto/x509, type KeyUsage int +pkg crypto/x509, type PublicKeyAlgorithm int +pkg crypto/x509, type SignatureAlgorithm int +pkg crypto/x509, type UnhandledCriticalExtension struct +pkg crypto/x509, type UnknownAuthorityError struct +pkg crypto/x509, type VerifyOptions struct +pkg crypto/x509, type VerifyOptions struct, CurrentTime time.Time +pkg crypto/x509, type VerifyOptions struct, DNSName string +pkg crypto/x509, type VerifyOptions struct, Intermediates *CertPool +pkg crypto/x509, type VerifyOptions struct, Roots *CertPool +pkg crypto/x509, var ErrUnsupportedAlgorithm error +pkg crypto/x509/pkix, method (*CertificateList) HasExpired(time.Time) bool +pkg crypto/x509/pkix, method (*Name) FillFromRDNSequence(*RDNSequence) +pkg crypto/x509/pkix, method (Name) ToRDNSequence() RDNSequence +pkg crypto/x509/pkix, type AlgorithmIdentifier struct +pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Algorithm asn1.ObjectIdentifier +pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Parameters asn1.RawValue +pkg crypto/x509/pkix, type AttributeTypeAndValue struct +pkg crypto/x509/pkix, type AttributeTypeAndValue struct, Type asn1.ObjectIdentifier +pkg crypto/x509/pkix, type AttributeTypeAndValue struct, Value interface{} +pkg crypto/x509/pkix, type CertificateList struct +pkg crypto/x509/pkix, type CertificateList struct, SignatureAlgorithm AlgorithmIdentifier +pkg crypto/x509/pkix, type CertificateList struct, SignatureValue asn1.BitString +pkg crypto/x509/pkix, type CertificateList struct, TBSCertList TBSCertificateList +pkg crypto/x509/pkix, type Extension struct +pkg crypto/x509/pkix, type Extension struct, Critical bool +pkg crypto/x509/pkix, type Extension struct, Id asn1.ObjectIdentifier +pkg crypto/x509/pkix, type Extension struct, Value []uint8 +pkg crypto/x509/pkix, type Name struct +pkg crypto/x509/pkix, type Name struct, CommonName string +pkg crypto/x509/pkix, type Name struct, Country []string +pkg crypto/x509/pkix, type Name struct, Locality []string +pkg crypto/x509/pkix, type Name struct, Names []AttributeTypeAndValue +pkg crypto/x509/pkix, type Name struct, Organization []string +pkg crypto/x509/pkix, type Name struct, OrganizationalUnit []string +pkg crypto/x509/pkix, type Name struct, PostalCode []string +pkg crypto/x509/pkix, type Name struct, Province []string +pkg crypto/x509/pkix, type Name struct, SerialNumber string +pkg crypto/x509/pkix, type Name struct, StreetAddress []string +pkg crypto/x509/pkix, type RDNSequence []RelativeDistinguishedNameSET +pkg crypto/x509/pkix, type RelativeDistinguishedNameSET []AttributeTypeAndValue +pkg crypto/x509/pkix, type RevokedCertificate struct +pkg crypto/x509/pkix, type RevokedCertificate struct, Extensions []Extension +pkg crypto/x509/pkix, type RevokedCertificate struct, RevocationTime time.Time +pkg crypto/x509/pkix, type RevokedCertificate struct, SerialNumber *big.Int +pkg crypto/x509/pkix, type TBSCertificateList struct +pkg crypto/x509/pkix, type TBSCertificateList struct, Extensions []Extension +pkg crypto/x509/pkix, type TBSCertificateList struct, Issuer RDNSequence +pkg crypto/x509/pkix, type TBSCertificateList struct, NextUpdate time.Time +pkg crypto/x509/pkix, type TBSCertificateList struct, Raw asn1.RawContent +pkg crypto/x509/pkix, type TBSCertificateList struct, RevokedCertificates []RevokedCertificate +pkg crypto/x509/pkix, type TBSCertificateList struct, Signature AlgorithmIdentifier +pkg crypto/x509/pkix, type TBSCertificateList struct, ThisUpdate time.Time +pkg crypto/x509/pkix, type TBSCertificateList struct, Version int +pkg database/sql, func Open(string, string) (*DB, error) +pkg database/sql, func Register(string, driver.Driver) +pkg database/sql, method (*DB) Begin() (*Tx, error) +pkg database/sql, method (*DB) Close() error +pkg database/sql, method (*DB) Driver() driver.Driver +pkg database/sql, method (*DB) Exec(string, ...interface{}) (Result, error) +pkg database/sql, method (*DB) Prepare(string) (*Stmt, error) +pkg database/sql, method (*DB) Query(string, ...interface{}) (*Rows, error) +pkg database/sql, method (*DB) QueryRow(string, ...interface{}) *Row +pkg database/sql, method (*NullBool) Scan(interface{}) error +pkg database/sql, method (*NullFloat64) Scan(interface{}) error +pkg database/sql, method (*NullInt64) Scan(interface{}) error +pkg database/sql, method (*NullString) Scan(interface{}) error +pkg database/sql, method (*Row) Scan(...interface{}) error +pkg database/sql, method (*Rows) Close() error +pkg database/sql, method (*Rows) Columns() ([]string, error) +pkg database/sql, method (*Rows) Err() error +pkg database/sql, method (*Rows) Next() bool +pkg database/sql, method (*Rows) Scan(...interface{}) error +pkg database/sql, method (*Stmt) Close() error +pkg database/sql, method (*Stmt) Exec(...interface{}) (Result, error) +pkg database/sql, method (*Stmt) Query(...interface{}) (*Rows, error) +pkg database/sql, method (*Stmt) QueryRow(...interface{}) *Row +pkg database/sql, method (*Tx) Commit() error +pkg database/sql, method (*Tx) Exec(string, ...interface{}) (Result, error) +pkg database/sql, method (*Tx) Prepare(string) (*Stmt, error) +pkg database/sql, method (*Tx) Query(string, ...interface{}) (*Rows, error) +pkg database/sql, method (*Tx) QueryRow(string, ...interface{}) *Row +pkg database/sql, method (*Tx) Rollback() error +pkg database/sql, method (*Tx) Stmt(*Stmt) *Stmt +pkg database/sql, method (NullBool) Value() (driver.Value, error) +pkg database/sql, method (NullFloat64) Value() (driver.Value, error) +pkg database/sql, method (NullInt64) Value() (driver.Value, error) +pkg database/sql, method (NullString) Value() (driver.Value, error) +pkg database/sql, type DB struct +pkg database/sql, type NullBool struct +pkg database/sql, type NullBool struct, Bool bool +pkg database/sql, type NullBool struct, Valid bool +pkg database/sql, type NullFloat64 struct +pkg database/sql, type NullFloat64 struct, Float64 float64 +pkg database/sql, type NullFloat64 struct, Valid bool +pkg database/sql, type NullInt64 struct +pkg database/sql, type NullInt64 struct, Int64 int64 +pkg database/sql, type NullInt64 struct, Valid bool +pkg database/sql, type NullString struct +pkg database/sql, type NullString struct, String string +pkg database/sql, type NullString struct, Valid bool +pkg database/sql, type RawBytes []uint8 +pkg database/sql, type Result interface { LastInsertId, RowsAffected } +pkg database/sql, type Result interface, LastInsertId() (int64, error) +pkg database/sql, type Result interface, RowsAffected() (int64, error) +pkg database/sql, type Row struct +pkg database/sql, type Rows struct +pkg database/sql, type Scanner interface { Scan } +pkg database/sql, type Scanner interface, Scan(interface{}) error +pkg database/sql, type Stmt struct +pkg database/sql, type Tx struct +pkg database/sql, var ErrNoRows error +pkg database/sql, var ErrTxDone error +pkg database/sql/driver, func IsScanValue(interface{}) bool +pkg database/sql/driver, func IsValue(interface{}) bool +pkg database/sql/driver, method (NotNull) ConvertValue(interface{}) (Value, error) +pkg database/sql/driver, method (Null) ConvertValue(interface{}) (Value, error) +pkg database/sql/driver, method (RowsAffected) LastInsertId() (int64, error) +pkg database/sql/driver, method (RowsAffected) RowsAffected() (int64, error) +pkg database/sql/driver, type ColumnConverter interface { ColumnConverter } +pkg database/sql/driver, type ColumnConverter interface, ColumnConverter(int) ValueConverter +pkg database/sql/driver, type Conn interface { Begin, Close, Prepare } +pkg database/sql/driver, type Conn interface, Begin() (Tx, error) +pkg database/sql/driver, type Conn interface, Close() error +pkg database/sql/driver, type Conn interface, Prepare(string) (Stmt, error) +pkg database/sql/driver, type Driver interface { Open } +pkg database/sql/driver, type Driver interface, Open(string) (Conn, error) +pkg database/sql/driver, type Execer interface { Exec } +pkg database/sql/driver, type Execer interface, Exec(string, []Value) (Result, error) +pkg database/sql/driver, type NotNull struct +pkg database/sql/driver, type NotNull struct, Converter ValueConverter +pkg database/sql/driver, type Null struct +pkg database/sql/driver, type Null struct, Converter ValueConverter +pkg database/sql/driver, type Result interface { LastInsertId, RowsAffected } +pkg database/sql/driver, type Result interface, LastInsertId() (int64, error) +pkg database/sql/driver, type Result interface, RowsAffected() (int64, error) +pkg database/sql/driver, type Rows interface { Close, Columns, Next } +pkg database/sql/driver, type Rows interface, Close() error +pkg database/sql/driver, type Rows interface, Columns() []string +pkg database/sql/driver, type Rows interface, Next([]Value) error +pkg database/sql/driver, type RowsAffected int64 +pkg database/sql/driver, type Stmt interface { Close, Exec, NumInput, Query } +pkg database/sql/driver, type Stmt interface, Close() error +pkg database/sql/driver, type Stmt interface, Exec([]Value) (Result, error) +pkg database/sql/driver, type Stmt interface, NumInput() int +pkg database/sql/driver, type Stmt interface, Query([]Value) (Rows, error) +pkg database/sql/driver, type Tx interface { Commit, Rollback } +pkg database/sql/driver, type Tx interface, Commit() error +pkg database/sql/driver, type Tx interface, Rollback() error +pkg database/sql/driver, type Value interface {} +pkg database/sql/driver, type ValueConverter interface { ConvertValue } +pkg database/sql/driver, type ValueConverter interface, ConvertValue(interface{}) (Value, error) +pkg database/sql/driver, type Valuer interface { Value } +pkg database/sql/driver, type Valuer interface, Value() (Value, error) +pkg database/sql/driver, var Bool boolType +pkg database/sql/driver, var DefaultParameterConverter defaultConverter +pkg database/sql/driver, var ErrBadConn error +pkg database/sql/driver, var ErrSkip error +pkg database/sql/driver, var Int32 int32Type +pkg database/sql/driver, var ResultNoRows noRows +pkg database/sql/driver, var String stringType +pkg debug/dwarf, const AttrAbstractOrigin Attr +pkg debug/dwarf, const AttrAccessibility Attr +pkg debug/dwarf, const AttrAddrClass Attr +pkg debug/dwarf, const AttrAllocated Attr +pkg debug/dwarf, const AttrArtificial Attr +pkg debug/dwarf, const AttrAssociated Attr +pkg debug/dwarf, const AttrBaseTypes Attr +pkg debug/dwarf, const AttrBitOffset Attr +pkg debug/dwarf, const AttrBitSize Attr +pkg debug/dwarf, const AttrByteSize Attr +pkg debug/dwarf, const AttrCallColumn Attr +pkg debug/dwarf, const AttrCallFile Attr +pkg debug/dwarf, const AttrCallLine Attr +pkg debug/dwarf, const AttrCalling Attr +pkg debug/dwarf, const AttrCommonRef Attr +pkg debug/dwarf, const AttrCompDir Attr +pkg debug/dwarf, const AttrConstValue Attr +pkg debug/dwarf, const AttrContainingType Attr +pkg debug/dwarf, const AttrCount Attr +pkg debug/dwarf, const AttrDataLocation Attr +pkg debug/dwarf, const AttrDataMemberLoc Attr +pkg debug/dwarf, const AttrDeclColumn Attr +pkg debug/dwarf, const AttrDeclFile Attr +pkg debug/dwarf, const AttrDeclLine Attr +pkg debug/dwarf, const AttrDeclaration Attr +pkg debug/dwarf, const AttrDefaultValue Attr +pkg debug/dwarf, const AttrDescription Attr +pkg debug/dwarf, const AttrDiscr Attr +pkg debug/dwarf, const AttrDiscrList Attr +pkg debug/dwarf, const AttrDiscrValue Attr +pkg debug/dwarf, const AttrEncoding Attr +pkg debug/dwarf, const AttrEntrypc Attr +pkg debug/dwarf, const AttrExtension Attr +pkg debug/dwarf, const AttrExternal Attr +pkg debug/dwarf, const AttrFrameBase Attr +pkg debug/dwarf, const AttrFriend Attr +pkg debug/dwarf, const AttrHighpc Attr +pkg debug/dwarf, const AttrIdentifierCase Attr +pkg debug/dwarf, const AttrImport Attr +pkg debug/dwarf, const AttrInline Attr +pkg debug/dwarf, const AttrIsOptional Attr +pkg debug/dwarf, const AttrLanguage Attr +pkg debug/dwarf, const AttrLocation Attr +pkg debug/dwarf, const AttrLowerBound Attr +pkg debug/dwarf, const AttrLowpc Attr +pkg debug/dwarf, const AttrMacroInfo Attr +pkg debug/dwarf, const AttrName Attr +pkg debug/dwarf, const AttrNamelistItem Attr +pkg debug/dwarf, const AttrOrdering Attr +pkg debug/dwarf, const AttrPriority Attr +pkg debug/dwarf, const AttrProducer Attr +pkg debug/dwarf, const AttrPrototyped Attr +pkg debug/dwarf, const AttrRanges Attr +pkg debug/dwarf, const AttrReturnAddr Attr +pkg debug/dwarf, const AttrSegment Attr +pkg debug/dwarf, const AttrSibling Attr +pkg debug/dwarf, const AttrSpecification Attr +pkg debug/dwarf, const AttrStartScope Attr +pkg debug/dwarf, const AttrStaticLink Attr +pkg debug/dwarf, const AttrStmtList Attr +pkg debug/dwarf, const AttrStride Attr +pkg debug/dwarf, const AttrStrideSize Attr +pkg debug/dwarf, const AttrStringLength Attr +pkg debug/dwarf, const AttrTrampoline Attr +pkg debug/dwarf, const AttrType Attr +pkg debug/dwarf, const AttrUpperBound Attr +pkg debug/dwarf, const AttrUseLocation Attr +pkg debug/dwarf, const AttrUseUTF8 Attr +pkg debug/dwarf, const AttrVarParam Attr +pkg debug/dwarf, const AttrVirtuality Attr +pkg debug/dwarf, const AttrVisibility Attr +pkg debug/dwarf, const AttrVtableElemLoc Attr +pkg debug/dwarf, const TagAccessDeclaration Tag +pkg debug/dwarf, const TagArrayType Tag +pkg debug/dwarf, const TagBaseType Tag +pkg debug/dwarf, const TagCatchDwarfBlock Tag +pkg debug/dwarf, const TagClassType Tag +pkg debug/dwarf, const TagCommonDwarfBlock Tag +pkg debug/dwarf, const TagCommonInclusion Tag +pkg debug/dwarf, const TagCompileUnit Tag +pkg debug/dwarf, const TagConstType Tag +pkg debug/dwarf, const TagConstant Tag +pkg debug/dwarf, const TagDwarfProcedure Tag +pkg debug/dwarf, const TagEntryPoint Tag +pkg debug/dwarf, const TagEnumerationType Tag +pkg debug/dwarf, const TagEnumerator Tag +pkg debug/dwarf, const TagFileType Tag +pkg debug/dwarf, const TagFormalParameter Tag +pkg debug/dwarf, const TagFriend Tag +pkg debug/dwarf, const TagImportedDeclaration Tag +pkg debug/dwarf, const TagImportedModule Tag +pkg debug/dwarf, const TagImportedUnit Tag +pkg debug/dwarf, const TagInheritance Tag +pkg debug/dwarf, const TagInlinedSubroutine Tag +pkg debug/dwarf, const TagInterfaceType Tag +pkg debug/dwarf, const TagLabel Tag +pkg debug/dwarf, const TagLexDwarfBlock Tag +pkg debug/dwarf, const TagMember Tag +pkg debug/dwarf, const TagModule Tag +pkg debug/dwarf, const TagMutableType Tag +pkg debug/dwarf, const TagNamelist Tag +pkg debug/dwarf, const TagNamelistItem Tag +pkg debug/dwarf, const TagNamespace Tag +pkg debug/dwarf, const TagPackedType Tag +pkg debug/dwarf, const TagPartialUnit Tag +pkg debug/dwarf, const TagPointerType Tag +pkg debug/dwarf, const TagPtrToMemberType Tag +pkg debug/dwarf, const TagReferenceType Tag +pkg debug/dwarf, const TagRestrictType Tag +pkg debug/dwarf, const TagSetType Tag +pkg debug/dwarf, const TagStringType Tag +pkg debug/dwarf, const TagStructType Tag +pkg debug/dwarf, const TagSubprogram Tag +pkg debug/dwarf, const TagSubrangeType Tag +pkg debug/dwarf, const TagSubroutineType Tag +pkg debug/dwarf, const TagTemplateTypeParameter Tag +pkg debug/dwarf, const TagTemplateValueParameter Tag +pkg debug/dwarf, const TagThrownType Tag +pkg debug/dwarf, const TagTryDwarfBlock Tag +pkg debug/dwarf, const TagTypedef Tag +pkg debug/dwarf, const TagUnionType Tag +pkg debug/dwarf, const TagUnspecifiedParameters Tag +pkg debug/dwarf, const TagUnspecifiedType Tag +pkg debug/dwarf, const TagVariable Tag +pkg debug/dwarf, const TagVariant Tag +pkg debug/dwarf, const TagVariantPart Tag +pkg debug/dwarf, const TagVolatileType Tag +pkg debug/dwarf, const TagWithStmt Tag +pkg debug/dwarf, func New([]uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8) (*Data, error) +pkg debug/dwarf, method (*AddrType) Basic() *BasicType +pkg debug/dwarf, method (*AddrType) Common() *CommonType +pkg debug/dwarf, method (*AddrType) Size() int64 +pkg debug/dwarf, method (*AddrType) String() string +pkg debug/dwarf, method (*ArrayType) Common() *CommonType +pkg debug/dwarf, method (*ArrayType) Size() int64 +pkg debug/dwarf, method (*ArrayType) String() string +pkg debug/dwarf, method (*BasicType) Basic() *BasicType +pkg debug/dwarf, method (*BasicType) Common() *CommonType +pkg debug/dwarf, method (*BasicType) Size() int64 +pkg debug/dwarf, method (*BasicType) String() string +pkg debug/dwarf, method (*BoolType) Basic() *BasicType +pkg debug/dwarf, method (*BoolType) Common() *CommonType +pkg debug/dwarf, method (*BoolType) Size() int64 +pkg debug/dwarf, method (*BoolType) String() string +pkg debug/dwarf, method (*CharType) Basic() *BasicType +pkg debug/dwarf, method (*CharType) Common() *CommonType +pkg debug/dwarf, method (*CharType) Size() int64 +pkg debug/dwarf, method (*CharType) String() string +pkg debug/dwarf, method (*CommonType) Common() *CommonType +pkg debug/dwarf, method (*CommonType) Size() int64 +pkg debug/dwarf, method (*ComplexType) Basic() *BasicType +pkg debug/dwarf, method (*ComplexType) Common() *CommonType +pkg debug/dwarf, method (*ComplexType) Size() int64 +pkg debug/dwarf, method (*ComplexType) String() string +pkg debug/dwarf, method (*Data) Reader() *Reader +pkg debug/dwarf, method (*Data) Type(Offset) (Type, error) +pkg debug/dwarf, method (*DotDotDotType) Common() *CommonType +pkg debug/dwarf, method (*DotDotDotType) Size() int64 +pkg debug/dwarf, method (*DotDotDotType) String() string +pkg debug/dwarf, method (*Entry) Val(Attr) interface{} +pkg debug/dwarf, method (*EnumType) Common() *CommonType +pkg debug/dwarf, method (*EnumType) Size() int64 +pkg debug/dwarf, method (*EnumType) String() string +pkg debug/dwarf, method (*FloatType) Basic() *BasicType +pkg debug/dwarf, method (*FloatType) Common() *CommonType +pkg debug/dwarf, method (*FloatType) Size() int64 +pkg debug/dwarf, method (*FloatType) String() string +pkg debug/dwarf, method (*FuncType) Common() *CommonType +pkg debug/dwarf, method (*FuncType) Size() int64 +pkg debug/dwarf, method (*FuncType) String() string +pkg debug/dwarf, method (*IntType) Basic() *BasicType +pkg debug/dwarf, method (*IntType) Common() *CommonType +pkg debug/dwarf, method (*IntType) Size() int64 +pkg debug/dwarf, method (*IntType) String() string +pkg debug/dwarf, method (*PtrType) Common() *CommonType +pkg debug/dwarf, method (*PtrType) Size() int64 +pkg debug/dwarf, method (*PtrType) String() string +pkg debug/dwarf, method (*QualType) Common() *CommonType +pkg debug/dwarf, method (*QualType) Size() int64 +pkg debug/dwarf, method (*QualType) String() string +pkg debug/dwarf, method (*Reader) Next() (*Entry, error) +pkg debug/dwarf, method (*Reader) Seek(Offset) +pkg debug/dwarf, method (*Reader) SkipChildren() +pkg debug/dwarf, method (*StructType) Common() *CommonType +pkg debug/dwarf, method (*StructType) Defn() string +pkg debug/dwarf, method (*StructType) Size() int64 +pkg debug/dwarf, method (*StructType) String() string +pkg debug/dwarf, method (*TypedefType) Common() *CommonType +pkg debug/dwarf, method (*TypedefType) Size() int64 +pkg debug/dwarf, method (*TypedefType) String() string +pkg debug/dwarf, method (*UcharType) Basic() *BasicType +pkg debug/dwarf, method (*UcharType) Common() *CommonType +pkg debug/dwarf, method (*UcharType) Size() int64 +pkg debug/dwarf, method (*UcharType) String() string +pkg debug/dwarf, method (*UintType) Basic() *BasicType +pkg debug/dwarf, method (*UintType) Common() *CommonType +pkg debug/dwarf, method (*UintType) Size() int64 +pkg debug/dwarf, method (*UintType) String() string +pkg debug/dwarf, method (*VoidType) Common() *CommonType +pkg debug/dwarf, method (*VoidType) Size() int64 +pkg debug/dwarf, method (*VoidType) String() string +pkg debug/dwarf, method (Attr) GoString() string +pkg debug/dwarf, method (Attr) String() string +pkg debug/dwarf, method (DecodeError) Error() string +pkg debug/dwarf, method (Tag) GoString() string +pkg debug/dwarf, method (Tag) String() string +pkg debug/dwarf, type AddrType struct +pkg debug/dwarf, type AddrType struct, embedded BasicType +pkg debug/dwarf, type ArrayType struct +pkg debug/dwarf, type ArrayType struct, Count int64 +pkg debug/dwarf, type ArrayType struct, StrideBitSize int64 +pkg debug/dwarf, type ArrayType struct, Type Type +pkg debug/dwarf, type ArrayType struct, embedded CommonType +pkg debug/dwarf, type Attr uint32 +pkg debug/dwarf, type BasicType struct +pkg debug/dwarf, type BasicType struct, BitOffset int64 +pkg debug/dwarf, type BasicType struct, BitSize int64 +pkg debug/dwarf, type BasicType struct, embedded CommonType +pkg debug/dwarf, type BoolType struct +pkg debug/dwarf, type BoolType struct, embedded BasicType +pkg debug/dwarf, type CharType struct +pkg debug/dwarf, type CharType struct, embedded BasicType +pkg debug/dwarf, type CommonType struct +pkg debug/dwarf, type CommonType struct, ByteSize int64 +pkg debug/dwarf, type CommonType struct, Name string +pkg debug/dwarf, type ComplexType struct +pkg debug/dwarf, type ComplexType struct, embedded BasicType +pkg debug/dwarf, type Data struct +pkg debug/dwarf, type DecodeError struct +pkg debug/dwarf, type DecodeError struct, Err string +pkg debug/dwarf, type DecodeError struct, Name string +pkg debug/dwarf, type DecodeError struct, Offset Offset +pkg debug/dwarf, type DotDotDotType struct +pkg debug/dwarf, type DotDotDotType struct, embedded CommonType +pkg debug/dwarf, type Entry struct +pkg debug/dwarf, type Entry struct, Children bool +pkg debug/dwarf, type Entry struct, Field []Field +pkg debug/dwarf, type Entry struct, Offset Offset +pkg debug/dwarf, type Entry struct, Tag Tag +pkg debug/dwarf, type EnumType struct +pkg debug/dwarf, type EnumType struct, EnumName string +pkg debug/dwarf, type EnumType struct, Val []*EnumValue +pkg debug/dwarf, type EnumType struct, embedded CommonType +pkg debug/dwarf, type EnumValue struct +pkg debug/dwarf, type EnumValue struct, Name string +pkg debug/dwarf, type EnumValue struct, Val int64 +pkg debug/dwarf, type Field struct +pkg debug/dwarf, type Field struct, Attr Attr +pkg debug/dwarf, type Field struct, Val interface{} +pkg debug/dwarf, type FloatType struct +pkg debug/dwarf, type FloatType struct, embedded BasicType +pkg debug/dwarf, type FuncType struct +pkg debug/dwarf, type FuncType struct, ParamType []Type +pkg debug/dwarf, type FuncType struct, ReturnType Type +pkg debug/dwarf, type FuncType struct, embedded CommonType +pkg debug/dwarf, type IntType struct +pkg debug/dwarf, type IntType struct, embedded BasicType +pkg debug/dwarf, type Offset uint32 +pkg debug/dwarf, type PtrType struct +pkg debug/dwarf, type PtrType struct, Type Type +pkg debug/dwarf, type PtrType struct, embedded CommonType +pkg debug/dwarf, type QualType struct +pkg debug/dwarf, type QualType struct, Qual string +pkg debug/dwarf, type QualType struct, Type Type +pkg debug/dwarf, type QualType struct, embedded CommonType +pkg debug/dwarf, type Reader struct +pkg debug/dwarf, type StructField struct +pkg debug/dwarf, type StructField struct, BitOffset int64 +pkg debug/dwarf, type StructField struct, BitSize int64 +pkg debug/dwarf, type StructField struct, ByteOffset int64 +pkg debug/dwarf, type StructField struct, ByteSize int64 +pkg debug/dwarf, type StructField struct, Name string +pkg debug/dwarf, type StructField struct, Type Type +pkg debug/dwarf, type StructType struct +pkg debug/dwarf, type StructType struct, Field []*StructField +pkg debug/dwarf, type StructType struct, Incomplete bool +pkg debug/dwarf, type StructType struct, Kind string +pkg debug/dwarf, type StructType struct, StructName string +pkg debug/dwarf, type StructType struct, embedded CommonType +pkg debug/dwarf, type Tag uint32 +pkg debug/dwarf, type Type interface { Common, Size, String } +pkg debug/dwarf, type Type interface, Common() *CommonType +pkg debug/dwarf, type Type interface, Size() int64 +pkg debug/dwarf, type Type interface, String() string +pkg debug/dwarf, type TypedefType struct +pkg debug/dwarf, type TypedefType struct, Type Type +pkg debug/dwarf, type TypedefType struct, embedded CommonType +pkg debug/dwarf, type UcharType struct +pkg debug/dwarf, type UcharType struct, embedded BasicType +pkg debug/dwarf, type UintType struct +pkg debug/dwarf, type UintType struct, embedded BasicType +pkg debug/dwarf, type VoidType struct +pkg debug/dwarf, type VoidType struct, embedded CommonType +pkg debug/elf, const ARM_MAGIC_TRAMP_NUMBER ideal-int +pkg debug/elf, const DF_BIND_NOW DynFlag +pkg debug/elf, const DF_ORIGIN DynFlag +pkg debug/elf, const DF_STATIC_TLS DynFlag +pkg debug/elf, const DF_SYMBOLIC DynFlag +pkg debug/elf, const DF_TEXTREL DynFlag +pkg debug/elf, const DT_BIND_NOW DynTag +pkg debug/elf, const DT_DEBUG DynTag +pkg debug/elf, const DT_ENCODING DynTag +pkg debug/elf, const DT_FINI DynTag +pkg debug/elf, const DT_FINI_ARRAY DynTag +pkg debug/elf, const DT_FINI_ARRAYSZ DynTag +pkg debug/elf, const DT_FLAGS DynTag +pkg debug/elf, const DT_HASH DynTag +pkg debug/elf, const DT_HIOS DynTag +pkg debug/elf, const DT_HIPROC DynTag +pkg debug/elf, const DT_INIT DynTag +pkg debug/elf, const DT_INIT_ARRAY DynTag +pkg debug/elf, const DT_INIT_ARRAYSZ DynTag +pkg debug/elf, const DT_JMPREL DynTag +pkg debug/elf, const DT_LOOS DynTag +pkg debug/elf, const DT_LOPROC DynTag +pkg debug/elf, const DT_NEEDED DynTag +pkg debug/elf, const DT_NULL DynTag +pkg debug/elf, const DT_PLTGOT DynTag +pkg debug/elf, const DT_PLTREL DynTag +pkg debug/elf, const DT_PLTRELSZ DynTag +pkg debug/elf, const DT_PREINIT_ARRAY DynTag +pkg debug/elf, const DT_PREINIT_ARRAYSZ DynTag +pkg debug/elf, const DT_REL DynTag +pkg debug/elf, const DT_RELA DynTag +pkg debug/elf, const DT_RELAENT DynTag +pkg debug/elf, const DT_RELASZ DynTag +pkg debug/elf, const DT_RELENT DynTag +pkg debug/elf, const DT_RELSZ DynTag +pkg debug/elf, const DT_RPATH DynTag +pkg debug/elf, const DT_RUNPATH DynTag +pkg debug/elf, const DT_SONAME DynTag +pkg debug/elf, const DT_STRSZ DynTag +pkg debug/elf, const DT_STRTAB DynTag +pkg debug/elf, const DT_SYMBOLIC DynTag +pkg debug/elf, const DT_SYMENT DynTag +pkg debug/elf, const DT_SYMTAB DynTag +pkg debug/elf, const DT_TEXTREL DynTag +pkg debug/elf, const DT_VERNEED DynTag +pkg debug/elf, const DT_VERNEEDNUM DynTag +pkg debug/elf, const DT_VERSYM DynTag +pkg debug/elf, const EI_ABIVERSION ideal-int +pkg debug/elf, const EI_CLASS ideal-int +pkg debug/elf, const EI_DATA ideal-int +pkg debug/elf, const EI_NIDENT ideal-int +pkg debug/elf, const EI_OSABI ideal-int +pkg debug/elf, const EI_PAD ideal-int +pkg debug/elf, const EI_VERSION ideal-int +pkg debug/elf, const ELFCLASS32 Class +pkg debug/elf, const ELFCLASS64 Class +pkg debug/elf, const ELFCLASSNONE Class +pkg debug/elf, const ELFDATA2LSB Data +pkg debug/elf, const ELFDATA2MSB Data +pkg debug/elf, const ELFDATANONE Data +pkg debug/elf, const ELFMAG ideal-string +pkg debug/elf, const ELFOSABI_86OPEN OSABI +pkg debug/elf, const ELFOSABI_AIX OSABI +pkg debug/elf, const ELFOSABI_ARM OSABI +pkg debug/elf, const ELFOSABI_FREEBSD OSABI +pkg debug/elf, const ELFOSABI_HPUX OSABI +pkg debug/elf, const ELFOSABI_HURD OSABI +pkg debug/elf, const ELFOSABI_IRIX OSABI +pkg debug/elf, const ELFOSABI_LINUX OSABI +pkg debug/elf, const ELFOSABI_MODESTO OSABI +pkg debug/elf, const ELFOSABI_NETBSD OSABI +pkg debug/elf, const ELFOSABI_NONE OSABI +pkg debug/elf, const ELFOSABI_NSK OSABI +pkg debug/elf, const ELFOSABI_OPENBSD OSABI +pkg debug/elf, const ELFOSABI_OPENVMS OSABI +pkg debug/elf, const ELFOSABI_SOLARIS OSABI +pkg debug/elf, const ELFOSABI_STANDALONE OSABI +pkg debug/elf, const ELFOSABI_TRU64 OSABI +pkg debug/elf, const EM_386 Machine +pkg debug/elf, const EM_486 Machine +pkg debug/elf, const EM_68HC12 Machine +pkg debug/elf, const EM_68K Machine +pkg debug/elf, const EM_860 Machine +pkg debug/elf, const EM_88K Machine +pkg debug/elf, const EM_960 Machine +pkg debug/elf, const EM_ALPHA Machine +pkg debug/elf, const EM_ALPHA_STD Machine +pkg debug/elf, const EM_ARC Machine +pkg debug/elf, const EM_ARM Machine +pkg debug/elf, const EM_COLDFIRE Machine +pkg debug/elf, const EM_FR20 Machine +pkg debug/elf, const EM_H8S Machine +pkg debug/elf, const EM_H8_300 Machine +pkg debug/elf, const EM_H8_300H Machine +pkg debug/elf, const EM_H8_500 Machine +pkg debug/elf, const EM_IA_64 Machine +pkg debug/elf, const EM_M32 Machine +pkg debug/elf, const EM_ME16 Machine +pkg debug/elf, const EM_MIPS Machine +pkg debug/elf, const EM_MIPS_RS3_LE Machine +pkg debug/elf, const EM_MIPS_RS4_BE Machine +pkg debug/elf, const EM_MIPS_X Machine +pkg debug/elf, const EM_MMA Machine +pkg debug/elf, const EM_NCPU Machine +pkg debug/elf, const EM_NDR1 Machine +pkg debug/elf, const EM_NONE Machine +pkg debug/elf, const EM_PARISC Machine +pkg debug/elf, const EM_PCP Machine +pkg debug/elf, const EM_PPC Machine +pkg debug/elf, const EM_PPC64 Machine +pkg debug/elf, const EM_RCE Machine +pkg debug/elf, const EM_RH32 Machine +pkg debug/elf, const EM_S370 Machine +pkg debug/elf, const EM_S390 Machine +pkg debug/elf, const EM_SH Machine +pkg debug/elf, const EM_SPARC Machine +pkg debug/elf, const EM_SPARC32PLUS Machine +pkg debug/elf, const EM_SPARCV9 Machine +pkg debug/elf, const EM_ST100 Machine +pkg debug/elf, const EM_STARCORE Machine +pkg debug/elf, const EM_TINYJ Machine +pkg debug/elf, const EM_TRICORE Machine +pkg debug/elf, const EM_V800 Machine +pkg debug/elf, const EM_VPP500 Machine +pkg debug/elf, const EM_X86_64 Machine +pkg debug/elf, const ET_CORE Type +pkg debug/elf, const ET_DYN Type +pkg debug/elf, const ET_EXEC Type +pkg debug/elf, const ET_HIOS Type +pkg debug/elf, const ET_HIPROC Type +pkg debug/elf, const ET_LOOS Type +pkg debug/elf, const ET_LOPROC Type +pkg debug/elf, const ET_NONE Type +pkg debug/elf, const ET_REL Type +pkg debug/elf, const EV_CURRENT Version +pkg debug/elf, const EV_NONE Version +pkg debug/elf, const NT_FPREGSET NType +pkg debug/elf, const NT_PRPSINFO NType +pkg debug/elf, const NT_PRSTATUS NType +pkg debug/elf, const PF_MASKOS ProgFlag +pkg debug/elf, const PF_MASKPROC ProgFlag +pkg debug/elf, const PF_R ProgFlag +pkg debug/elf, const PF_W ProgFlag +pkg debug/elf, const PF_X ProgFlag +pkg debug/elf, const PT_DYNAMIC ProgType +pkg debug/elf, const PT_HIOS ProgType +pkg debug/elf, const PT_HIPROC ProgType +pkg debug/elf, const PT_INTERP ProgType +pkg debug/elf, const PT_LOAD ProgType +pkg debug/elf, const PT_LOOS ProgType +pkg debug/elf, const PT_LOPROC ProgType +pkg debug/elf, const PT_NOTE ProgType +pkg debug/elf, const PT_NULL ProgType +pkg debug/elf, const PT_PHDR ProgType +pkg debug/elf, const PT_SHLIB ProgType +pkg debug/elf, const PT_TLS ProgType +pkg debug/elf, const R_386_32 R_386 +pkg debug/elf, const R_386_COPY R_386 +pkg debug/elf, const R_386_GLOB_DAT R_386 +pkg debug/elf, const R_386_GOT32 R_386 +pkg debug/elf, const R_386_GOTOFF R_386 +pkg debug/elf, const R_386_GOTPC R_386 +pkg debug/elf, const R_386_JMP_SLOT R_386 +pkg debug/elf, const R_386_NONE R_386 +pkg debug/elf, const R_386_PC32 R_386 +pkg debug/elf, const R_386_PLT32 R_386 +pkg debug/elf, const R_386_RELATIVE R_386 +pkg debug/elf, const R_386_TLS_DTPMOD32 R_386 +pkg debug/elf, const R_386_TLS_DTPOFF32 R_386 +pkg debug/elf, const R_386_TLS_GD R_386 +pkg debug/elf, const R_386_TLS_GD_32 R_386 +pkg debug/elf, const R_386_TLS_GD_CALL R_386 +pkg debug/elf, const R_386_TLS_GD_POP R_386 +pkg debug/elf, const R_386_TLS_GD_PUSH R_386 +pkg debug/elf, const R_386_TLS_GOTIE R_386 +pkg debug/elf, const R_386_TLS_IE R_386 +pkg debug/elf, const R_386_TLS_IE_32 R_386 +pkg debug/elf, const R_386_TLS_LDM R_386 +pkg debug/elf, const R_386_TLS_LDM_32 R_386 +pkg debug/elf, const R_386_TLS_LDM_CALL R_386 +pkg debug/elf, const R_386_TLS_LDM_POP R_386 +pkg debug/elf, const R_386_TLS_LDM_PUSH R_386 +pkg debug/elf, const R_386_TLS_LDO_32 R_386 +pkg debug/elf, const R_386_TLS_LE R_386 +pkg debug/elf, const R_386_TLS_LE_32 R_386 +pkg debug/elf, const R_386_TLS_TPOFF R_386 +pkg debug/elf, const R_386_TLS_TPOFF32 R_386 +pkg debug/elf, const R_ALPHA_BRADDR R_ALPHA +pkg debug/elf, const R_ALPHA_COPY R_ALPHA +pkg debug/elf, const R_ALPHA_GLOB_DAT R_ALPHA +pkg debug/elf, const R_ALPHA_GPDISP R_ALPHA +pkg debug/elf, const R_ALPHA_GPREL32 R_ALPHA +pkg debug/elf, const R_ALPHA_GPRELHIGH R_ALPHA +pkg debug/elf, const R_ALPHA_GPRELLOW R_ALPHA +pkg debug/elf, const R_ALPHA_GPVALUE R_ALPHA +pkg debug/elf, const R_ALPHA_HINT R_ALPHA +pkg debug/elf, const R_ALPHA_IMMED_BR_HI32 R_ALPHA +pkg debug/elf, const R_ALPHA_IMMED_GP_16 R_ALPHA +pkg debug/elf, const R_ALPHA_IMMED_GP_HI32 R_ALPHA +pkg debug/elf, const R_ALPHA_IMMED_LO32 R_ALPHA +pkg debug/elf, const R_ALPHA_IMMED_SCN_HI32 R_ALPHA +pkg debug/elf, const R_ALPHA_JMP_SLOT R_ALPHA +pkg debug/elf, const R_ALPHA_LITERAL R_ALPHA +pkg debug/elf, const R_ALPHA_LITUSE R_ALPHA +pkg debug/elf, const R_ALPHA_NONE R_ALPHA +pkg debug/elf, const R_ALPHA_OP_PRSHIFT R_ALPHA +pkg debug/elf, const R_ALPHA_OP_PSUB R_ALPHA +pkg debug/elf, const R_ALPHA_OP_PUSH R_ALPHA +pkg debug/elf, const R_ALPHA_OP_STORE R_ALPHA +pkg debug/elf, const R_ALPHA_REFLONG R_ALPHA +pkg debug/elf, const R_ALPHA_REFQUAD R_ALPHA +pkg debug/elf, const R_ALPHA_RELATIVE R_ALPHA +pkg debug/elf, const R_ALPHA_SREL16 R_ALPHA +pkg debug/elf, const R_ALPHA_SREL32 R_ALPHA +pkg debug/elf, const R_ALPHA_SREL64 R_ALPHA +pkg debug/elf, const R_ARM_ABS12 R_ARM +pkg debug/elf, const R_ARM_ABS16 R_ARM +pkg debug/elf, const R_ARM_ABS32 R_ARM +pkg debug/elf, const R_ARM_ABS8 R_ARM +pkg debug/elf, const R_ARM_AMP_VCALL9 R_ARM +pkg debug/elf, const R_ARM_COPY R_ARM +pkg debug/elf, const R_ARM_GLOB_DAT R_ARM +pkg debug/elf, const R_ARM_GNU_VTENTRY R_ARM +pkg debug/elf, const R_ARM_GNU_VTINHERIT R_ARM +pkg debug/elf, const R_ARM_GOT32 R_ARM +pkg debug/elf, const R_ARM_GOTOFF R_ARM +pkg debug/elf, const R_ARM_GOTPC R_ARM +pkg debug/elf, const R_ARM_JUMP_SLOT R_ARM +pkg debug/elf, const R_ARM_NONE R_ARM +pkg debug/elf, const R_ARM_PC13 R_ARM +pkg debug/elf, const R_ARM_PC24 R_ARM +pkg debug/elf, const R_ARM_PLT32 R_ARM +pkg debug/elf, const R_ARM_RABS32 R_ARM +pkg debug/elf, const R_ARM_RBASE R_ARM +pkg debug/elf, const R_ARM_REL32 R_ARM +pkg debug/elf, const R_ARM_RELATIVE R_ARM +pkg debug/elf, const R_ARM_RPC24 R_ARM +pkg debug/elf, const R_ARM_RREL32 R_ARM +pkg debug/elf, const R_ARM_RSBREL32 R_ARM +pkg debug/elf, const R_ARM_SBREL32 R_ARM +pkg debug/elf, const R_ARM_SWI24 R_ARM +pkg debug/elf, const R_ARM_THM_ABS5 R_ARM +pkg debug/elf, const R_ARM_THM_PC22 R_ARM +pkg debug/elf, const R_ARM_THM_PC8 R_ARM +pkg debug/elf, const R_ARM_THM_RPC22 R_ARM +pkg debug/elf, const R_ARM_THM_SWI8 R_ARM +pkg debug/elf, const R_ARM_THM_XPC22 R_ARM +pkg debug/elf, const R_ARM_XPC25 R_ARM +pkg debug/elf, const R_PPC_ADDR14 R_PPC +pkg debug/elf, const R_PPC_ADDR14_BRNTAKEN R_PPC +pkg debug/elf, const R_PPC_ADDR14_BRTAKEN R_PPC +pkg debug/elf, const R_PPC_ADDR16 R_PPC +pkg debug/elf, const R_PPC_ADDR16_HA R_PPC +pkg debug/elf, const R_PPC_ADDR16_HI R_PPC +pkg debug/elf, const R_PPC_ADDR16_LO R_PPC +pkg debug/elf, const R_PPC_ADDR24 R_PPC +pkg debug/elf, const R_PPC_ADDR32 R_PPC +pkg debug/elf, const R_PPC_COPY R_PPC +pkg debug/elf, const R_PPC_DTPMOD32 R_PPC +pkg debug/elf, const R_PPC_DTPREL16 R_PPC +pkg debug/elf, const R_PPC_DTPREL16_HA R_PPC +pkg debug/elf, const R_PPC_DTPREL16_HI R_PPC +pkg debug/elf, const R_PPC_DTPREL16_LO R_PPC +pkg debug/elf, const R_PPC_DTPREL32 R_PPC +pkg debug/elf, const R_PPC_EMB_BIT_FLD R_PPC +pkg debug/elf, const R_PPC_EMB_MRKREF R_PPC +pkg debug/elf, const R_PPC_EMB_NADDR16 R_PPC +pkg debug/elf, const R_PPC_EMB_NADDR16_HA R_PPC +pkg debug/elf, const R_PPC_EMB_NADDR16_HI R_PPC +pkg debug/elf, const R_PPC_EMB_NADDR16_LO R_PPC +pkg debug/elf, const R_PPC_EMB_NADDR32 R_PPC +pkg debug/elf, const R_PPC_EMB_RELSDA R_PPC +pkg debug/elf, const R_PPC_EMB_RELSEC16 R_PPC +pkg debug/elf, const R_PPC_EMB_RELST_HA R_PPC +pkg debug/elf, const R_PPC_EMB_RELST_HI R_PPC +pkg debug/elf, const R_PPC_EMB_RELST_LO R_PPC +pkg debug/elf, const R_PPC_EMB_SDA21 R_PPC +pkg debug/elf, const R_PPC_EMB_SDA2I16 R_PPC +pkg debug/elf, const R_PPC_EMB_SDA2REL R_PPC +pkg debug/elf, const R_PPC_EMB_SDAI16 R_PPC +pkg debug/elf, const R_PPC_GLOB_DAT R_PPC +pkg debug/elf, const R_PPC_GOT16 R_PPC +pkg debug/elf, const R_PPC_GOT16_HA R_PPC +pkg debug/elf, const R_PPC_GOT16_HI R_PPC +pkg debug/elf, const R_PPC_GOT16_LO R_PPC +pkg debug/elf, const R_PPC_GOT_TLSGD16 R_PPC +pkg debug/elf, const R_PPC_GOT_TLSGD16_HA R_PPC +pkg debug/elf, const R_PPC_GOT_TLSGD16_HI R_PPC +pkg debug/elf, const R_PPC_GOT_TLSGD16_LO R_PPC +pkg debug/elf, const R_PPC_GOT_TLSLD16 R_PPC +pkg debug/elf, const R_PPC_GOT_TLSLD16_HA R_PPC +pkg debug/elf, const R_PPC_GOT_TLSLD16_HI R_PPC +pkg debug/elf, const R_PPC_GOT_TLSLD16_LO R_PPC +pkg debug/elf, const R_PPC_GOT_TPREL16 R_PPC +pkg debug/elf, const R_PPC_GOT_TPREL16_HA R_PPC +pkg debug/elf, const R_PPC_GOT_TPREL16_HI R_PPC +pkg debug/elf, const R_PPC_GOT_TPREL16_LO R_PPC +pkg debug/elf, const R_PPC_JMP_SLOT R_PPC +pkg debug/elf, const R_PPC_LOCAL24PC R_PPC +pkg debug/elf, const R_PPC_NONE R_PPC +pkg debug/elf, const R_PPC_PLT16_HA R_PPC +pkg debug/elf, const R_PPC_PLT16_HI R_PPC +pkg debug/elf, const R_PPC_PLT16_LO R_PPC +pkg debug/elf, const R_PPC_PLT32 R_PPC +pkg debug/elf, const R_PPC_PLTREL24 R_PPC +pkg debug/elf, const R_PPC_PLTREL32 R_PPC +pkg debug/elf, const R_PPC_REL14 R_PPC +pkg debug/elf, const R_PPC_REL14_BRNTAKEN R_PPC +pkg debug/elf, const R_PPC_REL14_BRTAKEN R_PPC +pkg debug/elf, const R_PPC_REL24 R_PPC +pkg debug/elf, const R_PPC_REL32 R_PPC +pkg debug/elf, const R_PPC_RELATIVE R_PPC +pkg debug/elf, const R_PPC_SDAREL16 R_PPC +pkg debug/elf, const R_PPC_SECTOFF R_PPC +pkg debug/elf, const R_PPC_SECTOFF_HA R_PPC +pkg debug/elf, const R_PPC_SECTOFF_HI R_PPC +pkg debug/elf, const R_PPC_SECTOFF_LO R_PPC +pkg debug/elf, const R_PPC_TLS R_PPC +pkg debug/elf, const R_PPC_TPREL16 R_PPC +pkg debug/elf, const R_PPC_TPREL16_HA R_PPC +pkg debug/elf, const R_PPC_TPREL16_HI R_PPC +pkg debug/elf, const R_PPC_TPREL16_LO R_PPC +pkg debug/elf, const R_PPC_TPREL32 R_PPC +pkg debug/elf, const R_PPC_UADDR16 R_PPC +pkg debug/elf, const R_PPC_UADDR32 R_PPC +pkg debug/elf, const R_SPARC_10 R_SPARC +pkg debug/elf, const R_SPARC_11 R_SPARC +pkg debug/elf, const R_SPARC_13 R_SPARC +pkg debug/elf, const R_SPARC_16 R_SPARC +pkg debug/elf, const R_SPARC_22 R_SPARC +pkg debug/elf, const R_SPARC_32 R_SPARC +pkg debug/elf, const R_SPARC_5 R_SPARC +pkg debug/elf, const R_SPARC_6 R_SPARC +pkg debug/elf, const R_SPARC_64 R_SPARC +pkg debug/elf, const R_SPARC_7 R_SPARC +pkg debug/elf, const R_SPARC_8 R_SPARC +pkg debug/elf, const R_SPARC_COPY R_SPARC +pkg debug/elf, const R_SPARC_DISP16 R_SPARC +pkg debug/elf, const R_SPARC_DISP32 R_SPARC +pkg debug/elf, const R_SPARC_DISP64 R_SPARC +pkg debug/elf, const R_SPARC_DISP8 R_SPARC +pkg debug/elf, const R_SPARC_GLOB_DAT R_SPARC +pkg debug/elf, const R_SPARC_GLOB_JMP R_SPARC +pkg debug/elf, const R_SPARC_GOT10 R_SPARC +pkg debug/elf, const R_SPARC_GOT13 R_SPARC +pkg debug/elf, const R_SPARC_GOT22 R_SPARC +pkg debug/elf, const R_SPARC_H44 R_SPARC +pkg debug/elf, const R_SPARC_HH22 R_SPARC +pkg debug/elf, const R_SPARC_HI22 R_SPARC +pkg debug/elf, const R_SPARC_HIPLT22 R_SPARC +pkg debug/elf, const R_SPARC_HIX22 R_SPARC +pkg debug/elf, const R_SPARC_HM10 R_SPARC +pkg debug/elf, const R_SPARC_JMP_SLOT R_SPARC +pkg debug/elf, const R_SPARC_L44 R_SPARC +pkg debug/elf, const R_SPARC_LM22 R_SPARC +pkg debug/elf, const R_SPARC_LO10 R_SPARC +pkg debug/elf, const R_SPARC_LOPLT10 R_SPARC +pkg debug/elf, const R_SPARC_LOX10 R_SPARC +pkg debug/elf, const R_SPARC_M44 R_SPARC +pkg debug/elf, const R_SPARC_NONE R_SPARC +pkg debug/elf, const R_SPARC_OLO10 R_SPARC +pkg debug/elf, const R_SPARC_PC10 R_SPARC +pkg debug/elf, const R_SPARC_PC22 R_SPARC +pkg debug/elf, const R_SPARC_PCPLT10 R_SPARC +pkg debug/elf, const R_SPARC_PCPLT22 R_SPARC +pkg debug/elf, const R_SPARC_PCPLT32 R_SPARC +pkg debug/elf, const R_SPARC_PC_HH22 R_SPARC +pkg debug/elf, const R_SPARC_PC_HM10 R_SPARC +pkg debug/elf, const R_SPARC_PC_LM22 R_SPARC +pkg debug/elf, const R_SPARC_PLT32 R_SPARC +pkg debug/elf, const R_SPARC_PLT64 R_SPARC +pkg debug/elf, const R_SPARC_REGISTER R_SPARC +pkg debug/elf, const R_SPARC_RELATIVE R_SPARC +pkg debug/elf, const R_SPARC_UA16 R_SPARC +pkg debug/elf, const R_SPARC_UA32 R_SPARC +pkg debug/elf, const R_SPARC_UA64 R_SPARC +pkg debug/elf, const R_SPARC_WDISP16 R_SPARC +pkg debug/elf, const R_SPARC_WDISP19 R_SPARC +pkg debug/elf, const R_SPARC_WDISP22 R_SPARC +pkg debug/elf, const R_SPARC_WDISP30 R_SPARC +pkg debug/elf, const R_SPARC_WPLT30 R_SPARC +pkg debug/elf, const R_X86_64_16 R_X86_64 +pkg debug/elf, const R_X86_64_32 R_X86_64 +pkg debug/elf, const R_X86_64_32S R_X86_64 +pkg debug/elf, const R_X86_64_64 R_X86_64 +pkg debug/elf, const R_X86_64_8 R_X86_64 +pkg debug/elf, const R_X86_64_COPY R_X86_64 +pkg debug/elf, const R_X86_64_DTPMOD64 R_X86_64 +pkg debug/elf, const R_X86_64_DTPOFF32 R_X86_64 +pkg debug/elf, const R_X86_64_DTPOFF64 R_X86_64 +pkg debug/elf, const R_X86_64_GLOB_DAT R_X86_64 +pkg debug/elf, const R_X86_64_GOT32 R_X86_64 +pkg debug/elf, const R_X86_64_GOTPCREL R_X86_64 +pkg debug/elf, const R_X86_64_GOTTPOFF R_X86_64 +pkg debug/elf, const R_X86_64_JMP_SLOT R_X86_64 +pkg debug/elf, const R_X86_64_NONE R_X86_64 +pkg debug/elf, const R_X86_64_PC16 R_X86_64 +pkg debug/elf, const R_X86_64_PC32 R_X86_64 +pkg debug/elf, const R_X86_64_PC8 R_X86_64 +pkg debug/elf, const R_X86_64_PLT32 R_X86_64 +pkg debug/elf, const R_X86_64_RELATIVE R_X86_64 +pkg debug/elf, const R_X86_64_TLSGD R_X86_64 +pkg debug/elf, const R_X86_64_TLSLD R_X86_64 +pkg debug/elf, const R_X86_64_TPOFF32 R_X86_64 +pkg debug/elf, const R_X86_64_TPOFF64 R_X86_64 +pkg debug/elf, const SHF_ALLOC SectionFlag +pkg debug/elf, const SHF_EXECINSTR SectionFlag +pkg debug/elf, const SHF_GROUP SectionFlag +pkg debug/elf, const SHF_INFO_LINK SectionFlag +pkg debug/elf, const SHF_LINK_ORDER SectionFlag +pkg debug/elf, const SHF_MASKOS SectionFlag +pkg debug/elf, const SHF_MASKPROC SectionFlag +pkg debug/elf, const SHF_MERGE SectionFlag +pkg debug/elf, const SHF_OS_NONCONFORMING SectionFlag +pkg debug/elf, const SHF_STRINGS SectionFlag +pkg debug/elf, const SHF_TLS SectionFlag +pkg debug/elf, const SHF_WRITE SectionFlag +pkg debug/elf, const SHN_ABS SectionIndex +pkg debug/elf, const SHN_COMMON SectionIndex +pkg debug/elf, const SHN_HIOS SectionIndex +pkg debug/elf, const SHN_HIPROC SectionIndex +pkg debug/elf, const SHN_HIRESERVE SectionIndex +pkg debug/elf, const SHN_LOOS SectionIndex +pkg debug/elf, const SHN_LOPROC SectionIndex +pkg debug/elf, const SHN_LORESERVE SectionIndex +pkg debug/elf, const SHN_UNDEF SectionIndex +pkg debug/elf, const SHN_XINDEX SectionIndex +pkg debug/elf, const SHT_DYNAMIC SectionType +pkg debug/elf, const SHT_DYNSYM SectionType +pkg debug/elf, const SHT_FINI_ARRAY SectionType +pkg debug/elf, const SHT_GNU_ATTRIBUTES SectionType +pkg debug/elf, const SHT_GNU_HASH SectionType +pkg debug/elf, const SHT_GNU_LIBLIST SectionType +pkg debug/elf, const SHT_GNU_VERDEF SectionType +pkg debug/elf, const SHT_GNU_VERNEED SectionType +pkg debug/elf, const SHT_GNU_VERSYM SectionType +pkg debug/elf, const SHT_GROUP SectionType +pkg debug/elf, const SHT_HASH SectionType +pkg debug/elf, const SHT_HIOS SectionType +pkg debug/elf, const SHT_HIPROC SectionType +pkg debug/elf, const SHT_HIUSER SectionType +pkg debug/elf, const SHT_INIT_ARRAY SectionType +pkg debug/elf, const SHT_LOOS SectionType +pkg debug/elf, const SHT_LOPROC SectionType +pkg debug/elf, const SHT_LOUSER SectionType +pkg debug/elf, const SHT_NOBITS SectionType +pkg debug/elf, const SHT_NOTE SectionType +pkg debug/elf, const SHT_NULL SectionType +pkg debug/elf, const SHT_PREINIT_ARRAY SectionType +pkg debug/elf, const SHT_PROGBITS SectionType +pkg debug/elf, const SHT_REL SectionType +pkg debug/elf, const SHT_RELA SectionType +pkg debug/elf, const SHT_SHLIB SectionType +pkg debug/elf, const SHT_STRTAB SectionType +pkg debug/elf, const SHT_SYMTAB SectionType +pkg debug/elf, const SHT_SYMTAB_SHNDX SectionType +pkg debug/elf, const STB_GLOBAL SymBind +pkg debug/elf, const STB_HIOS SymBind +pkg debug/elf, const STB_HIPROC SymBind +pkg debug/elf, const STB_LOCAL SymBind +pkg debug/elf, const STB_LOOS SymBind +pkg debug/elf, const STB_LOPROC SymBind +pkg debug/elf, const STB_WEAK SymBind +pkg debug/elf, const STT_COMMON SymType +pkg debug/elf, const STT_FILE SymType +pkg debug/elf, const STT_FUNC SymType +pkg debug/elf, const STT_HIOS SymType +pkg debug/elf, const STT_HIPROC SymType +pkg debug/elf, const STT_LOOS SymType +pkg debug/elf, const STT_LOPROC SymType +pkg debug/elf, const STT_NOTYPE SymType +pkg debug/elf, const STT_OBJECT SymType +pkg debug/elf, const STT_SECTION SymType +pkg debug/elf, const STT_TLS SymType +pkg debug/elf, const STV_DEFAULT SymVis +pkg debug/elf, const STV_HIDDEN SymVis +pkg debug/elf, const STV_INTERNAL SymVis +pkg debug/elf, const STV_PROTECTED SymVis +pkg debug/elf, const Sym32Size ideal-int +pkg debug/elf, const Sym64Size ideal-int +pkg debug/elf, func NewFile(io.ReaderAt) (*File, error) +pkg debug/elf, func Open(string) (*File, error) +pkg debug/elf, func R_INFO(uint32, uint32) uint64 +pkg debug/elf, func R_INFO32(uint32, uint32) uint32 +pkg debug/elf, func R_SYM32(uint32) uint32 +pkg debug/elf, func R_SYM64(uint64) uint32 +pkg debug/elf, func R_TYPE32(uint32) uint32 +pkg debug/elf, func R_TYPE64(uint64) uint32 +pkg debug/elf, func ST_BIND(uint8) SymBind +pkg debug/elf, func ST_INFO(SymBind, SymType) uint8 +pkg debug/elf, func ST_TYPE(uint8) SymType +pkg debug/elf, func ST_VISIBILITY(uint8) SymVis +pkg debug/elf, method (*File) Close() error +pkg debug/elf, method (*File) DWARF() (*dwarf.Data, error) +pkg debug/elf, method (*File) ImportedLibraries() ([]string, error) +pkg debug/elf, method (*File) ImportedSymbols() ([]ImportedSymbol, error) +pkg debug/elf, method (*File) Section(string) *Section +pkg debug/elf, method (*File) SectionByType(SectionType) *Section +pkg debug/elf, method (*File) Symbols() ([]Symbol, error) +pkg debug/elf, method (*FormatError) Error() string +pkg debug/elf, method (*Prog) Open() io.ReadSeeker +pkg debug/elf, method (*Section) Data() ([]uint8, error) +pkg debug/elf, method (*Section) Open() io.ReadSeeker +pkg debug/elf, method (Class) GoString() string +pkg debug/elf, method (Class) String() string +pkg debug/elf, method (Data) GoString() string +pkg debug/elf, method (Data) String() string +pkg debug/elf, method (DynFlag) GoString() string +pkg debug/elf, method (DynFlag) String() string +pkg debug/elf, method (DynTag) GoString() string +pkg debug/elf, method (DynTag) String() string +pkg debug/elf, method (Machine) GoString() string +pkg debug/elf, method (Machine) String() string +pkg debug/elf, method (NType) GoString() string +pkg debug/elf, method (NType) String() string +pkg debug/elf, method (OSABI) GoString() string +pkg debug/elf, method (OSABI) String() string +pkg debug/elf, method (Prog) ReadAt([]uint8, int64) (int, error) +pkg debug/elf, method (ProgFlag) GoString() string +pkg debug/elf, method (ProgFlag) String() string +pkg debug/elf, method (ProgType) GoString() string +pkg debug/elf, method (ProgType) String() string +pkg debug/elf, method (R_386) GoString() string +pkg debug/elf, method (R_386) String() string +pkg debug/elf, method (R_ALPHA) GoString() string +pkg debug/elf, method (R_ALPHA) String() string +pkg debug/elf, method (R_ARM) GoString() string +pkg debug/elf, method (R_ARM) String() string +pkg debug/elf, method (R_PPC) GoString() string +pkg debug/elf, method (R_PPC) String() string +pkg debug/elf, method (R_SPARC) GoString() string +pkg debug/elf, method (R_SPARC) String() string +pkg debug/elf, method (R_X86_64) GoString() string +pkg debug/elf, method (R_X86_64) String() string +pkg debug/elf, method (Section) ReadAt([]uint8, int64) (int, error) +pkg debug/elf, method (SectionFlag) GoString() string +pkg debug/elf, method (SectionFlag) String() string +pkg debug/elf, method (SectionIndex) GoString() string +pkg debug/elf, method (SectionIndex) String() string +pkg debug/elf, method (SectionType) GoString() string +pkg debug/elf, method (SectionType) String() string +pkg debug/elf, method (SymBind) GoString() string +pkg debug/elf, method (SymBind) String() string +pkg debug/elf, method (SymType) GoString() string +pkg debug/elf, method (SymType) String() string +pkg debug/elf, method (SymVis) GoString() string +pkg debug/elf, method (SymVis) String() string +pkg debug/elf, method (Type) GoString() string +pkg debug/elf, method (Type) String() string +pkg debug/elf, method (Version) GoString() string +pkg debug/elf, method (Version) String() string +pkg debug/elf, type Class uint8 +pkg debug/elf, type Data uint8 +pkg debug/elf, type Dyn32 struct +pkg debug/elf, type Dyn32 struct, Tag int32 +pkg debug/elf, type Dyn32 struct, Val uint32 +pkg debug/elf, type Dyn64 struct +pkg debug/elf, type Dyn64 struct, Tag int64 +pkg debug/elf, type Dyn64 struct, Val uint64 +pkg debug/elf, type DynFlag int +pkg debug/elf, type DynTag int +pkg debug/elf, type File struct +pkg debug/elf, type File struct, Progs []*Prog +pkg debug/elf, type File struct, Sections []*Section +pkg debug/elf, type File struct, embedded FileHeader +pkg debug/elf, type FileHeader struct +pkg debug/elf, type FileHeader struct, ABIVersion uint8 +pkg debug/elf, type FileHeader struct, ByteOrder binary.ByteOrder +pkg debug/elf, type FileHeader struct, Class Class +pkg debug/elf, type FileHeader struct, Data Data +pkg debug/elf, type FileHeader struct, Machine Machine +pkg debug/elf, type FileHeader struct, OSABI OSABI +pkg debug/elf, type FileHeader struct, Type Type +pkg debug/elf, type FileHeader struct, Version Version +pkg debug/elf, type FormatError struct +pkg debug/elf, type Header32 struct +pkg debug/elf, type Header32 struct, Ehsize uint16 +pkg debug/elf, type Header32 struct, Entry uint32 +pkg debug/elf, type Header32 struct, Flags uint32 +pkg debug/elf, type Header32 struct, Ident [16]uint8 +pkg debug/elf, type Header32 struct, Machine uint16 +pkg debug/elf, type Header32 struct, Phentsize uint16 +pkg debug/elf, type Header32 struct, Phnum uint16 +pkg debug/elf, type Header32 struct, Phoff uint32 +pkg debug/elf, type Header32 struct, Shentsize uint16 +pkg debug/elf, type Header32 struct, Shnum uint16 +pkg debug/elf, type Header32 struct, Shoff uint32 +pkg debug/elf, type Header32 struct, Shstrndx uint16 +pkg debug/elf, type Header32 struct, Type uint16 +pkg debug/elf, type Header32 struct, Version uint32 +pkg debug/elf, type Header64 struct +pkg debug/elf, type Header64 struct, Ehsize uint16 +pkg debug/elf, type Header64 struct, Entry uint64 +pkg debug/elf, type Header64 struct, Flags uint32 +pkg debug/elf, type Header64 struct, Ident [16]uint8 +pkg debug/elf, type Header64 struct, Machine uint16 +pkg debug/elf, type Header64 struct, Phentsize uint16 +pkg debug/elf, type Header64 struct, Phnum uint16 +pkg debug/elf, type Header64 struct, Phoff uint64 +pkg debug/elf, type Header64 struct, Shentsize uint16 +pkg debug/elf, type Header64 struct, Shnum uint16 +pkg debug/elf, type Header64 struct, Shoff uint64 +pkg debug/elf, type Header64 struct, Shstrndx uint16 +pkg debug/elf, type Header64 struct, Type uint16 +pkg debug/elf, type Header64 struct, Version uint32 +pkg debug/elf, type ImportedSymbol struct +pkg debug/elf, type ImportedSymbol struct, Library string +pkg debug/elf, type ImportedSymbol struct, Name string +pkg debug/elf, type ImportedSymbol struct, Version string +pkg debug/elf, type Machine uint16 +pkg debug/elf, type NType int +pkg debug/elf, type OSABI uint8 +pkg debug/elf, type Prog struct +pkg debug/elf, type Prog struct, embedded ProgHeader +pkg debug/elf, type Prog struct, embedded io.ReaderAt +pkg debug/elf, type Prog32 struct +pkg debug/elf, type Prog32 struct, Align uint32 +pkg debug/elf, type Prog32 struct, Filesz uint32 +pkg debug/elf, type Prog32 struct, Flags uint32 +pkg debug/elf, type Prog32 struct, Memsz uint32 +pkg debug/elf, type Prog32 struct, Off uint32 +pkg debug/elf, type Prog32 struct, Paddr uint32 +pkg debug/elf, type Prog32 struct, Type uint32 +pkg debug/elf, type Prog32 struct, Vaddr uint32 +pkg debug/elf, type Prog64 struct +pkg debug/elf, type Prog64 struct, Align uint64 +pkg debug/elf, type Prog64 struct, Filesz uint64 +pkg debug/elf, type Prog64 struct, Flags uint32 +pkg debug/elf, type Prog64 struct, Memsz uint64 +pkg debug/elf, type Prog64 struct, Off uint64 +pkg debug/elf, type Prog64 struct, Paddr uint64 +pkg debug/elf, type Prog64 struct, Type uint32 +pkg debug/elf, type Prog64 struct, Vaddr uint64 +pkg debug/elf, type ProgFlag uint32 +pkg debug/elf, type ProgHeader struct +pkg debug/elf, type ProgHeader struct, Align uint64 +pkg debug/elf, type ProgHeader struct, Filesz uint64 +pkg debug/elf, type ProgHeader struct, Flags ProgFlag +pkg debug/elf, type ProgHeader struct, Memsz uint64 +pkg debug/elf, type ProgHeader struct, Off uint64 +pkg debug/elf, type ProgHeader struct, Paddr uint64 +pkg debug/elf, type ProgHeader struct, Type ProgType +pkg debug/elf, type ProgHeader struct, Vaddr uint64 +pkg debug/elf, type ProgType int +pkg debug/elf, type R_386 int +pkg debug/elf, type R_ALPHA int +pkg debug/elf, type R_ARM int +pkg debug/elf, type R_PPC int +pkg debug/elf, type R_SPARC int +pkg debug/elf, type R_X86_64 int +pkg debug/elf, type Rel32 struct +pkg debug/elf, type Rel32 struct, Info uint32 +pkg debug/elf, type Rel32 struct, Off uint32 +pkg debug/elf, type Rel64 struct +pkg debug/elf, type Rel64 struct, Info uint64 +pkg debug/elf, type Rel64 struct, Off uint64 +pkg debug/elf, type Rela32 struct +pkg debug/elf, type Rela32 struct, Addend int32 +pkg debug/elf, type Rela32 struct, Info uint32 +pkg debug/elf, type Rela32 struct, Off uint32 +pkg debug/elf, type Rela64 struct +pkg debug/elf, type Rela64 struct, Addend int64 +pkg debug/elf, type Rela64 struct, Info uint64 +pkg debug/elf, type Rela64 struct, Off uint64 +pkg debug/elf, type Section struct +pkg debug/elf, type Section struct, embedded SectionHeader +pkg debug/elf, type Section struct, embedded io.ReaderAt +pkg debug/elf, type Section32 struct +pkg debug/elf, type Section32 struct, Addr uint32 +pkg debug/elf, type Section32 struct, Addralign uint32 +pkg debug/elf, type Section32 struct, Entsize uint32 +pkg debug/elf, type Section32 struct, Flags uint32 +pkg debug/elf, type Section32 struct, Info uint32 +pkg debug/elf, type Section32 struct, Link uint32 +pkg debug/elf, type Section32 struct, Name uint32 +pkg debug/elf, type Section32 struct, Off uint32 +pkg debug/elf, type Section32 struct, Size uint32 +pkg debug/elf, type Section32 struct, Type uint32 +pkg debug/elf, type Section64 struct +pkg debug/elf, type Section64 struct, Addr uint64 +pkg debug/elf, type Section64 struct, Addralign uint64 +pkg debug/elf, type Section64 struct, Entsize uint64 +pkg debug/elf, type Section64 struct, Flags uint64 +pkg debug/elf, type Section64 struct, Info uint32 +pkg debug/elf, type Section64 struct, Link uint32 +pkg debug/elf, type Section64 struct, Name uint32 +pkg debug/elf, type Section64 struct, Off uint64 +pkg debug/elf, type Section64 struct, Size uint64 +pkg debug/elf, type Section64 struct, Type uint32 +pkg debug/elf, type SectionFlag uint32 +pkg debug/elf, type SectionHeader struct +pkg debug/elf, type SectionHeader struct, Addr uint64 +pkg debug/elf, type SectionHeader struct, Addralign uint64 +pkg debug/elf, type SectionHeader struct, Entsize uint64 +pkg debug/elf, type SectionHeader struct, Flags SectionFlag +pkg debug/elf, type SectionHeader struct, Info uint32 +pkg debug/elf, type SectionHeader struct, Link uint32 +pkg debug/elf, type SectionHeader struct, Name string +pkg debug/elf, type SectionHeader struct, Offset uint64 +pkg debug/elf, type SectionHeader struct, Size uint64 +pkg debug/elf, type SectionHeader struct, Type SectionType +pkg debug/elf, type SectionIndex int +pkg debug/elf, type SectionType uint32 +pkg debug/elf, type Sym32 struct +pkg debug/elf, type Sym32 struct, Info uint8 +pkg debug/elf, type Sym32 struct, Name uint32 +pkg debug/elf, type Sym32 struct, Other uint8 +pkg debug/elf, type Sym32 struct, Shndx uint16 +pkg debug/elf, type Sym32 struct, Size uint32 +pkg debug/elf, type Sym32 struct, Value uint32 +pkg debug/elf, type Sym64 struct +pkg debug/elf, type Sym64 struct, Info uint8 +pkg debug/elf, type Sym64 struct, Name uint32 +pkg debug/elf, type Sym64 struct, Other uint8 +pkg debug/elf, type Sym64 struct, Shndx uint16 +pkg debug/elf, type Sym64 struct, Size uint64 +pkg debug/elf, type Sym64 struct, Value uint64 +pkg debug/elf, type SymBind int +pkg debug/elf, type SymType int +pkg debug/elf, type SymVis int +pkg debug/elf, type Symbol struct +pkg debug/elf, type Symbol struct, Info uint8 +pkg debug/elf, type Symbol struct, Name string +pkg debug/elf, type Symbol struct, Other uint8 +pkg debug/elf, type Symbol struct, Section SectionIndex +pkg debug/elf, type Symbol struct, Size uint64 +pkg debug/elf, type Symbol struct, Value uint64 +pkg debug/elf, type Type uint16 +pkg debug/elf, type Version uint8 +pkg debug/gosym, func NewLineTable([]uint8, uint64) *LineTable +pkg debug/gosym, func NewTable([]uint8, *LineTable) (*Table, error) +pkg debug/gosym, method (*DecodingError) Error() string +pkg debug/gosym, method (*LineTable) LineToPC(int, uint64) uint64 +pkg debug/gosym, method (*LineTable) PCToLine(uint64) int +pkg debug/gosym, method (*Sym) BaseName() string +pkg debug/gosym, method (*Sym) PackageName() string +pkg debug/gosym, method (*Sym) ReceiverName() string +pkg debug/gosym, method (*Sym) Static() bool +pkg debug/gosym, method (*Table) LineToPC(string, int) (uint64, *Func, error) +pkg debug/gosym, method (*Table) LookupFunc(string) *Func +pkg debug/gosym, method (*Table) LookupSym(string) *Sym +pkg debug/gosym, method (*Table) PCToFunc(uint64) *Func +pkg debug/gosym, method (*Table) PCToLine(uint64) (string, int, *Func) +pkg debug/gosym, method (*Table) SymByAddr(uint64) *Sym +pkg debug/gosym, method (*UnknownLineError) Error() string +pkg debug/gosym, method (Func) BaseName() string +pkg debug/gosym, method (Func) PackageName() string +pkg debug/gosym, method (Func) ReceiverName() string +pkg debug/gosym, method (Func) Static() bool +pkg debug/gosym, method (UnknownFileError) Error() string +pkg debug/gosym, type DecodingError struct +pkg debug/gosym, type Func struct +pkg debug/gosym, type Func struct, End uint64 +pkg debug/gosym, type Func struct, Entry uint64 +pkg debug/gosym, type Func struct, FrameSize int +pkg debug/gosym, type Func struct, LineTable *LineTable +pkg debug/gosym, type Func struct, Locals []*Sym +pkg debug/gosym, type Func struct, Obj *Obj +pkg debug/gosym, type Func struct, Params []*Sym +pkg debug/gosym, type Func struct, embedded *Sym +pkg debug/gosym, type LineTable struct +pkg debug/gosym, type LineTable struct, Data []uint8 +pkg debug/gosym, type LineTable struct, Line int +pkg debug/gosym, type LineTable struct, PC uint64 +pkg debug/gosym, type Obj struct +pkg debug/gosym, type Obj struct, Funcs []Func +pkg debug/gosym, type Obj struct, Paths []Sym +pkg debug/gosym, type Sym struct +pkg debug/gosym, type Sym struct, Func *Func +pkg debug/gosym, type Sym struct, GoType uint64 +pkg debug/gosym, type Sym struct, Name string +pkg debug/gosym, type Sym struct, Type uint8 +pkg debug/gosym, type Sym struct, Value uint64 +pkg debug/gosym, type Table struct +pkg debug/gosym, type Table struct, Files map[string]*Obj +pkg debug/gosym, type Table struct, Funcs []Func +pkg debug/gosym, type Table struct, Objs []Obj +pkg debug/gosym, type Table struct, Syms []Sym +pkg debug/gosym, type UnknownFileError string +pkg debug/gosym, type UnknownLineError struct +pkg debug/gosym, type UnknownLineError struct, File string +pkg debug/gosym, type UnknownLineError struct, Line int +pkg debug/macho, const Cpu386 Cpu +pkg debug/macho, const CpuAmd64 Cpu +pkg debug/macho, const LoadCmdDylib LoadCmd +pkg debug/macho, const LoadCmdDylinker LoadCmd +pkg debug/macho, const LoadCmdDysymtab LoadCmd +pkg debug/macho, const LoadCmdSegment LoadCmd +pkg debug/macho, const LoadCmdSegment64 LoadCmd +pkg debug/macho, const LoadCmdSymtab LoadCmd +pkg debug/macho, const LoadCmdThread LoadCmd +pkg debug/macho, const LoadCmdUnixThread LoadCmd +pkg debug/macho, const Magic32 uint32 +pkg debug/macho, const Magic64 uint32 +pkg debug/macho, const TypeExec Type +pkg debug/macho, const TypeObj Type +pkg debug/macho, func NewFile(io.ReaderAt) (*File, error) +pkg debug/macho, func Open(string) (*File, error) +pkg debug/macho, method (*File) Close() error +pkg debug/macho, method (*File) DWARF() (*dwarf.Data, error) +pkg debug/macho, method (*File) ImportedLibraries() ([]string, error) +pkg debug/macho, method (*File) ImportedSymbols() ([]string, error) +pkg debug/macho, method (*File) Section(string) *Section +pkg debug/macho, method (*File) Segment(string) *Segment +pkg debug/macho, method (*FormatError) Error() string +pkg debug/macho, method (*Section) Data() ([]uint8, error) +pkg debug/macho, method (*Section) Open() io.ReadSeeker +pkg debug/macho, method (*Segment) Data() ([]uint8, error) +pkg debug/macho, method (*Segment) Open() io.ReadSeeker +pkg debug/macho, method (Cpu) GoString() string +pkg debug/macho, method (Cpu) String() string +pkg debug/macho, method (Dylib) Raw() []uint8 +pkg debug/macho, method (Dysymtab) Raw() []uint8 +pkg debug/macho, method (LoadBytes) Raw() []uint8 +pkg debug/macho, method (LoadCmd) GoString() string +pkg debug/macho, method (LoadCmd) String() string +pkg debug/macho, method (Section) ReadAt([]uint8, int64) (int, error) +pkg debug/macho, method (Segment) Raw() []uint8 +pkg debug/macho, method (Segment) ReadAt([]uint8, int64) (int, error) +pkg debug/macho, method (Symtab) Raw() []uint8 +pkg debug/macho, type Cpu uint32 +pkg debug/macho, type Dylib struct +pkg debug/macho, type Dylib struct, CompatVersion uint32 +pkg debug/macho, type Dylib struct, CurrentVersion uint32 +pkg debug/macho, type Dylib struct, Name string +pkg debug/macho, type Dylib struct, Time uint32 +pkg debug/macho, type Dylib struct, embedded LoadBytes +pkg debug/macho, type DylibCmd struct +pkg debug/macho, type DylibCmd struct, Cmd LoadCmd +pkg debug/macho, type DylibCmd struct, CompatVersion uint32 +pkg debug/macho, type DylibCmd struct, CurrentVersion uint32 +pkg debug/macho, type DylibCmd struct, Len uint32 +pkg debug/macho, type DylibCmd struct, Name uint32 +pkg debug/macho, type DylibCmd struct, Time uint32 +pkg debug/macho, type Dysymtab struct +pkg debug/macho, type Dysymtab struct, IndirectSyms []uint32 +pkg debug/macho, type Dysymtab struct, embedded DysymtabCmd +pkg debug/macho, type Dysymtab struct, embedded LoadBytes +pkg debug/macho, type DysymtabCmd struct +pkg debug/macho, type DysymtabCmd struct, Cmd LoadCmd +pkg debug/macho, type DysymtabCmd struct, Extrefsymoff uint32 +pkg debug/macho, type DysymtabCmd struct, Extreloff uint32 +pkg debug/macho, type DysymtabCmd struct, Iextdefsym uint32 +pkg debug/macho, type DysymtabCmd struct, Ilocalsym uint32 +pkg debug/macho, type DysymtabCmd struct, Indirectsymoff uint32 +pkg debug/macho, type DysymtabCmd struct, Iundefsym uint32 +pkg debug/macho, type DysymtabCmd struct, Len uint32 +pkg debug/macho, type DysymtabCmd struct, Locreloff uint32 +pkg debug/macho, type DysymtabCmd struct, Modtaboff uint32 +pkg debug/macho, type DysymtabCmd struct, Nextdefsym uint32 +pkg debug/macho, type DysymtabCmd struct, Nextrefsyms uint32 +pkg debug/macho, type DysymtabCmd struct, Nextrel uint32 +pkg debug/macho, type DysymtabCmd struct, Nindirectsyms uint32 +pkg debug/macho, type DysymtabCmd struct, Nlocalsym uint32 +pkg debug/macho, type DysymtabCmd struct, Nlocrel uint32 +pkg debug/macho, type DysymtabCmd struct, Nmodtab uint32 +pkg debug/macho, type DysymtabCmd struct, Ntoc uint32 +pkg debug/macho, type DysymtabCmd struct, Nundefsym uint32 +pkg debug/macho, type DysymtabCmd struct, Tocoffset uint32 +pkg debug/macho, type File struct +pkg debug/macho, type File struct, ByteOrder binary.ByteOrder +pkg debug/macho, type File struct, Dysymtab *Dysymtab +pkg debug/macho, type File struct, Loads []Load +pkg debug/macho, type File struct, Sections []*Section +pkg debug/macho, type File struct, Symtab *Symtab +pkg debug/macho, type File struct, embedded FileHeader +pkg debug/macho, type FileHeader struct +pkg debug/macho, type FileHeader struct, Cmdsz uint32 +pkg debug/macho, type FileHeader struct, Cpu Cpu +pkg debug/macho, type FileHeader struct, Flags uint32 +pkg debug/macho, type FileHeader struct, Magic uint32 +pkg debug/macho, type FileHeader struct, Ncmd uint32 +pkg debug/macho, type FileHeader struct, SubCpu uint32 +pkg debug/macho, type FileHeader struct, Type Type +pkg debug/macho, type FormatError struct +pkg debug/macho, type Load interface { Raw } +pkg debug/macho, type Load interface, Raw() []uint8 +pkg debug/macho, type LoadBytes []uint8 +pkg debug/macho, type LoadCmd uint32 +pkg debug/macho, type Nlist32 struct +pkg debug/macho, type Nlist32 struct, Desc uint16 +pkg debug/macho, type Nlist32 struct, Name uint32 +pkg debug/macho, type Nlist32 struct, Sect uint8 +pkg debug/macho, type Nlist32 struct, Type uint8 +pkg debug/macho, type Nlist32 struct, Value uint32 +pkg debug/macho, type Nlist64 struct +pkg debug/macho, type Nlist64 struct, Desc uint16 +pkg debug/macho, type Nlist64 struct, Name uint32 +pkg debug/macho, type Nlist64 struct, Sect uint8 +pkg debug/macho, type Nlist64 struct, Type uint8 +pkg debug/macho, type Nlist64 struct, Value uint64 +pkg debug/macho, type Regs386 struct +pkg debug/macho, type Regs386 struct, AX uint32 +pkg debug/macho, type Regs386 struct, BP uint32 +pkg debug/macho, type Regs386 struct, BX uint32 +pkg debug/macho, type Regs386 struct, CS uint32 +pkg debug/macho, type Regs386 struct, CX uint32 +pkg debug/macho, type Regs386 struct, DI uint32 +pkg debug/macho, type Regs386 struct, DS uint32 +pkg debug/macho, type Regs386 struct, DX uint32 +pkg debug/macho, type Regs386 struct, ES uint32 +pkg debug/macho, type Regs386 struct, FLAGS uint32 +pkg debug/macho, type Regs386 struct, FS uint32 +pkg debug/macho, type Regs386 struct, GS uint32 +pkg debug/macho, type Regs386 struct, IP uint32 +pkg debug/macho, type Regs386 struct, SI uint32 +pkg debug/macho, type Regs386 struct, SP uint32 +pkg debug/macho, type Regs386 struct, SS uint32 +pkg debug/macho, type RegsAMD64 struct +pkg debug/macho, type RegsAMD64 struct, AX uint64 +pkg debug/macho, type RegsAMD64 struct, BP uint64 +pkg debug/macho, type RegsAMD64 struct, BX uint64 +pkg debug/macho, type RegsAMD64 struct, CS uint64 +pkg debug/macho, type RegsAMD64 struct, CX uint64 +pkg debug/macho, type RegsAMD64 struct, DI uint64 +pkg debug/macho, type RegsAMD64 struct, DX uint64 +pkg debug/macho, type RegsAMD64 struct, FLAGS uint64 +pkg debug/macho, type RegsAMD64 struct, FS uint64 +pkg debug/macho, type RegsAMD64 struct, GS uint64 +pkg debug/macho, type RegsAMD64 struct, IP uint64 +pkg debug/macho, type RegsAMD64 struct, R10 uint64 +pkg debug/macho, type RegsAMD64 struct, R11 uint64 +pkg debug/macho, type RegsAMD64 struct, R12 uint64 +pkg debug/macho, type RegsAMD64 struct, R13 uint64 +pkg debug/macho, type RegsAMD64 struct, R14 uint64 +pkg debug/macho, type RegsAMD64 struct, R15 uint64 +pkg debug/macho, type RegsAMD64 struct, R8 uint64 +pkg debug/macho, type RegsAMD64 struct, R9 uint64 +pkg debug/macho, type RegsAMD64 struct, SI uint64 +pkg debug/macho, type RegsAMD64 struct, SP uint64 +pkg debug/macho, type Section struct +pkg debug/macho, type Section struct, embedded SectionHeader +pkg debug/macho, type Section struct, embedded io.ReaderAt +pkg debug/macho, type Section32 struct +pkg debug/macho, type Section32 struct, Addr uint32 +pkg debug/macho, type Section32 struct, Align uint32 +pkg debug/macho, type Section32 struct, Flags uint32 +pkg debug/macho, type Section32 struct, Name [16]uint8 +pkg debug/macho, type Section32 struct, Nreloc uint32 +pkg debug/macho, type Section32 struct, Offset uint32 +pkg debug/macho, type Section32 struct, Reloff uint32 +pkg debug/macho, type Section32 struct, Reserve1 uint32 +pkg debug/macho, type Section32 struct, Reserve2 uint32 +pkg debug/macho, type Section32 struct, Seg [16]uint8 +pkg debug/macho, type Section32 struct, Size uint32 +pkg debug/macho, type Section64 struct +pkg debug/macho, type Section64 struct, Addr uint64 +pkg debug/macho, type Section64 struct, Align uint32 +pkg debug/macho, type Section64 struct, Flags uint32 +pkg debug/macho, type Section64 struct, Name [16]uint8 +pkg debug/macho, type Section64 struct, Nreloc uint32 +pkg debug/macho, type Section64 struct, Offset uint32 +pkg debug/macho, type Section64 struct, Reloff uint32 +pkg debug/macho, type Section64 struct, Reserve1 uint32 +pkg debug/macho, type Section64 struct, Reserve2 uint32 +pkg debug/macho, type Section64 struct, Reserve3 uint32 +pkg debug/macho, type Section64 struct, Seg [16]uint8 +pkg debug/macho, type Section64 struct, Size uint64 +pkg debug/macho, type SectionHeader struct +pkg debug/macho, type SectionHeader struct, Addr uint64 +pkg debug/macho, type SectionHeader struct, Align uint32 +pkg debug/macho, type SectionHeader struct, Flags uint32 +pkg debug/macho, type SectionHeader struct, Name string +pkg debug/macho, type SectionHeader struct, Nreloc uint32 +pkg debug/macho, type SectionHeader struct, Offset uint32 +pkg debug/macho, type SectionHeader struct, Reloff uint32 +pkg debug/macho, type SectionHeader struct, Seg string +pkg debug/macho, type SectionHeader struct, Size uint64 +pkg debug/macho, type Segment struct +pkg debug/macho, type Segment struct, embedded LoadBytes +pkg debug/macho, type Segment struct, embedded SegmentHeader +pkg debug/macho, type Segment struct, embedded io.ReaderAt +pkg debug/macho, type Segment32 struct +pkg debug/macho, type Segment32 struct, Addr uint32 +pkg debug/macho, type Segment32 struct, Cmd LoadCmd +pkg debug/macho, type Segment32 struct, Filesz uint32 +pkg debug/macho, type Segment32 struct, Flag uint32 +pkg debug/macho, type Segment32 struct, Len uint32 +pkg debug/macho, type Segment32 struct, Maxprot uint32 +pkg debug/macho, type Segment32 struct, Memsz uint32 +pkg debug/macho, type Segment32 struct, Name [16]uint8 +pkg debug/macho, type Segment32 struct, Nsect uint32 +pkg debug/macho, type Segment32 struct, Offset uint32 +pkg debug/macho, type Segment32 struct, Prot uint32 +pkg debug/macho, type Segment64 struct +pkg debug/macho, type Segment64 struct, Addr uint64 +pkg debug/macho, type Segment64 struct, Cmd LoadCmd +pkg debug/macho, type Segment64 struct, Filesz uint64 +pkg debug/macho, type Segment64 struct, Flag uint32 +pkg debug/macho, type Segment64 struct, Len uint32 +pkg debug/macho, type Segment64 struct, Maxprot uint32 +pkg debug/macho, type Segment64 struct, Memsz uint64 +pkg debug/macho, type Segment64 struct, Name [16]uint8 +pkg debug/macho, type Segment64 struct, Nsect uint32 +pkg debug/macho, type Segment64 struct, Offset uint64 +pkg debug/macho, type Segment64 struct, Prot uint32 +pkg debug/macho, type SegmentHeader struct +pkg debug/macho, type SegmentHeader struct, Addr uint64 +pkg debug/macho, type SegmentHeader struct, Cmd LoadCmd +pkg debug/macho, type SegmentHeader struct, Filesz uint64 +pkg debug/macho, type SegmentHeader struct, Flag uint32 +pkg debug/macho, type SegmentHeader struct, Len uint32 +pkg debug/macho, type SegmentHeader struct, Maxprot uint32 +pkg debug/macho, type SegmentHeader struct, Memsz uint64 +pkg debug/macho, type SegmentHeader struct, Name string +pkg debug/macho, type SegmentHeader struct, Nsect uint32 +pkg debug/macho, type SegmentHeader struct, Offset uint64 +pkg debug/macho, type SegmentHeader struct, Prot uint32 +pkg debug/macho, type Symbol struct +pkg debug/macho, type Symbol struct, Desc uint16 +pkg debug/macho, type Symbol struct, Name string +pkg debug/macho, type Symbol struct, Sect uint8 +pkg debug/macho, type Symbol struct, Type uint8 +pkg debug/macho, type Symbol struct, Value uint64 +pkg debug/macho, type Symtab struct +pkg debug/macho, type Symtab struct, Syms []Symbol +pkg debug/macho, type Symtab struct, embedded LoadBytes +pkg debug/macho, type Symtab struct, embedded SymtabCmd +pkg debug/macho, type SymtabCmd struct +pkg debug/macho, type SymtabCmd struct, Cmd LoadCmd +pkg debug/macho, type SymtabCmd struct, Len uint32 +pkg debug/macho, type SymtabCmd struct, Nsyms uint32 +pkg debug/macho, type SymtabCmd struct, Stroff uint32 +pkg debug/macho, type SymtabCmd struct, Strsize uint32 +pkg debug/macho, type SymtabCmd struct, Symoff uint32 +pkg debug/macho, type Thread struct +pkg debug/macho, type Thread struct, Cmd LoadCmd +pkg debug/macho, type Thread struct, Data []uint32 +pkg debug/macho, type Thread struct, Len uint32 +pkg debug/macho, type Thread struct, Type uint32 +pkg debug/macho, type Type uint32 +pkg debug/pe, const IMAGE_FILE_MACHINE_AM33 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_AMD64 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_ARM ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_EBC ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_I386 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_IA64 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_M32R ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPS16 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU16 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPC ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPCFP ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_R4000 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_SH3 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_SH3DSP ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_SH4 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_SH5 ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_THUMB ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_UNKNOWN ideal-int +pkg debug/pe, const IMAGE_FILE_MACHINE_WCEMIPSV2 ideal-int +pkg debug/pe, func NewFile(io.ReaderAt) (*File, error) +pkg debug/pe, func Open(string) (*File, error) +pkg debug/pe, method (*File) Close() error +pkg debug/pe, method (*File) DWARF() (*dwarf.Data, error) +pkg debug/pe, method (*File) ImportedLibraries() ([]string, error) +pkg debug/pe, method (*File) ImportedSymbols() ([]string, error) +pkg debug/pe, method (*File) Section(string) *Section +pkg debug/pe, method (*FormatError) Error() string +pkg debug/pe, method (*Section) Data() ([]uint8, error) +pkg debug/pe, method (*Section) Open() io.ReadSeeker +pkg debug/pe, method (Section) ReadAt([]uint8, int64) (int, error) +pkg debug/pe, type File struct +pkg debug/pe, type File struct, Sections []*Section +pkg debug/pe, type File struct, embedded FileHeader +pkg debug/pe, type FileHeader struct +pkg debug/pe, type FileHeader struct, Characteristics uint16 +pkg debug/pe, type FileHeader struct, Machine uint16 +pkg debug/pe, type FileHeader struct, NumberOfSections uint16 +pkg debug/pe, type FileHeader struct, NumberOfSymbols uint32 +pkg debug/pe, type FileHeader struct, PointerToSymbolTable uint32 +pkg debug/pe, type FileHeader struct, SizeOfOptionalHeader uint16 +pkg debug/pe, type FileHeader struct, TimeDateStamp uint32 +pkg debug/pe, type FormatError struct +pkg debug/pe, type ImportDirectory struct +pkg debug/pe, type ImportDirectory struct, FirstThunk uint32 +pkg debug/pe, type ImportDirectory struct, ForwarderChain uint32 +pkg debug/pe, type ImportDirectory struct, Name uint32 +pkg debug/pe, type ImportDirectory struct, OriginalFirstThunk uint32 +pkg debug/pe, type ImportDirectory struct, TimeDateStamp uint32 +pkg debug/pe, type Section struct +pkg debug/pe, type Section struct, embedded SectionHeader +pkg debug/pe, type Section struct, embedded io.ReaderAt +pkg debug/pe, type SectionHeader struct +pkg debug/pe, type SectionHeader struct, Characteristics uint32 +pkg debug/pe, type SectionHeader struct, Name string +pkg debug/pe, type SectionHeader struct, NumberOfLineNumbers uint16 +pkg debug/pe, type SectionHeader struct, NumberOfRelocations uint16 +pkg debug/pe, type SectionHeader struct, Offset uint32 +pkg debug/pe, type SectionHeader struct, PointerToLineNumbers uint32 +pkg debug/pe, type SectionHeader struct, PointerToRelocations uint32 +pkg debug/pe, type SectionHeader struct, Size uint32 +pkg debug/pe, type SectionHeader struct, VirtualAddress uint32 +pkg debug/pe, type SectionHeader struct, VirtualSize uint32 +pkg debug/pe, type SectionHeader32 struct +pkg debug/pe, type SectionHeader32 struct, Characteristics uint32 +pkg debug/pe, type SectionHeader32 struct, Name [8]uint8 +pkg debug/pe, type SectionHeader32 struct, NumberOfLineNumbers uint16 +pkg debug/pe, type SectionHeader32 struct, NumberOfRelocations uint16 +pkg debug/pe, type SectionHeader32 struct, PointerToLineNumbers uint32 +pkg debug/pe, type SectionHeader32 struct, PointerToRawData uint32 +pkg debug/pe, type SectionHeader32 struct, PointerToRelocations uint32 +pkg debug/pe, type SectionHeader32 struct, SizeOfRawData uint32 +pkg debug/pe, type SectionHeader32 struct, VirtualAddress uint32 +pkg debug/pe, type SectionHeader32 struct, VirtualSize uint32 +pkg encoding/ascii85, func Decode([]uint8, []uint8, bool) (int, int, error) +pkg encoding/ascii85, func Encode([]uint8, []uint8) int +pkg encoding/ascii85, func MaxEncodedLen(int) int +pkg encoding/ascii85, func NewDecoder(io.Reader) io.Reader +pkg encoding/ascii85, func NewEncoder(io.Writer) io.WriteCloser +pkg encoding/ascii85, method (CorruptInputError) Error() string +pkg encoding/ascii85, type CorruptInputError int64 +pkg encoding/asn1, func Marshal(interface{}) ([]uint8, error) +pkg encoding/asn1, func Unmarshal([]uint8, interface{}) ([]uint8, error) +pkg encoding/asn1, func UnmarshalWithParams([]uint8, interface{}, string) ([]uint8, error) +pkg encoding/asn1, method (BitString) At(int) int +pkg encoding/asn1, method (BitString) RightAlign() []uint8 +pkg encoding/asn1, method (ObjectIdentifier) Equal(ObjectIdentifier) bool +pkg encoding/asn1, method (StructuralError) Error() string +pkg encoding/asn1, method (SyntaxError) Error() string +pkg encoding/asn1, type BitString struct +pkg encoding/asn1, type BitString struct, BitLength int +pkg encoding/asn1, type BitString struct, Bytes []uint8 +pkg encoding/asn1, type Enumerated int +pkg encoding/asn1, type Flag bool +pkg encoding/asn1, type ObjectIdentifier []int +pkg encoding/asn1, type RawContent []uint8 +pkg encoding/asn1, type RawValue struct +pkg encoding/asn1, type RawValue struct, Bytes []uint8 +pkg encoding/asn1, type RawValue struct, Class int +pkg encoding/asn1, type RawValue struct, FullBytes []uint8 +pkg encoding/asn1, type RawValue struct, IsCompound bool +pkg encoding/asn1, type RawValue struct, Tag int +pkg encoding/asn1, type StructuralError struct +pkg encoding/asn1, type StructuralError struct, Msg string +pkg encoding/asn1, type SyntaxError struct +pkg encoding/asn1, type SyntaxError struct, Msg string +pkg encoding/base32, func NewDecoder(*Encoding, io.Reader) io.Reader +pkg encoding/base32, func NewEncoder(*Encoding, io.Writer) io.WriteCloser +pkg encoding/base32, func NewEncoding(string) *Encoding +pkg encoding/base32, method (*Encoding) Decode([]uint8, []uint8) (int, error) +pkg encoding/base32, method (*Encoding) DecodeString(string) ([]uint8, error) +pkg encoding/base32, method (*Encoding) DecodedLen(int) int +pkg encoding/base32, method (*Encoding) Encode([]uint8, []uint8) +pkg encoding/base32, method (*Encoding) EncodeToString([]uint8) string +pkg encoding/base32, method (*Encoding) EncodedLen(int) int +pkg encoding/base32, method (CorruptInputError) Error() string +pkg encoding/base32, type CorruptInputError int64 +pkg encoding/base32, type Encoding struct +pkg encoding/base32, var HexEncoding *Encoding +pkg encoding/base32, var StdEncoding *Encoding +pkg encoding/base64, func NewDecoder(*Encoding, io.Reader) io.Reader +pkg encoding/base64, func NewEncoder(*Encoding, io.Writer) io.WriteCloser +pkg encoding/base64, func NewEncoding(string) *Encoding +pkg encoding/base64, method (*Encoding) Decode([]uint8, []uint8) (int, error) +pkg encoding/base64, method (*Encoding) DecodeString(string) ([]uint8, error) +pkg encoding/base64, method (*Encoding) DecodedLen(int) int +pkg encoding/base64, method (*Encoding) Encode([]uint8, []uint8) +pkg encoding/base64, method (*Encoding) EncodeToString([]uint8) string +pkg encoding/base64, method (*Encoding) EncodedLen(int) int +pkg encoding/base64, method (CorruptInputError) Error() string +pkg encoding/base64, type CorruptInputError int64 +pkg encoding/base64, type Encoding struct +pkg encoding/base64, var StdEncoding *Encoding +pkg encoding/base64, var URLEncoding *Encoding +pkg encoding/binary, const MaxVarintLen16 ideal-int +pkg encoding/binary, const MaxVarintLen32 ideal-int +pkg encoding/binary, const MaxVarintLen64 ideal-int +pkg encoding/binary, func PutUvarint([]uint8, uint64) int +pkg encoding/binary, func PutVarint([]uint8, int64) int +pkg encoding/binary, func Read(io.Reader, ByteOrder, interface{}) error +pkg encoding/binary, func ReadUvarint(io.ByteReader) (uint64, error) +pkg encoding/binary, func ReadVarint(io.ByteReader) (int64, error) +pkg encoding/binary, func Size(interface{}) int +pkg encoding/binary, func Uvarint([]uint8) (uint64, int) +pkg encoding/binary, func Varint([]uint8) (int64, int) +pkg encoding/binary, func Write(io.Writer, ByteOrder, interface{}) error +pkg encoding/binary, type ByteOrder interface { PutUint16, PutUint32, PutUint64, String, Uint16, Uint32, Uint64 } +pkg encoding/binary, type ByteOrder interface, PutUint16([]uint8, uint16) +pkg encoding/binary, type ByteOrder interface, PutUint32([]uint8, uint32) +pkg encoding/binary, type ByteOrder interface, PutUint64([]uint8, uint64) +pkg encoding/binary, type ByteOrder interface, String() string +pkg encoding/binary, type ByteOrder interface, Uint16([]uint8) uint16 +pkg encoding/binary, type ByteOrder interface, Uint32([]uint8) uint32 +pkg encoding/binary, type ByteOrder interface, Uint64([]uint8) uint64 +pkg encoding/binary, var BigEndian bigEndian +pkg encoding/binary, var LittleEndian littleEndian +pkg encoding/csv, func NewReader(io.Reader) *Reader +pkg encoding/csv, func NewWriter(io.Writer) *Writer +pkg encoding/csv, method (*ParseError) Error() string +pkg encoding/csv, method (*Reader) Read() ([]string, error) +pkg encoding/csv, method (*Reader) ReadAll() ([][]string, error) +pkg encoding/csv, method (*Writer) Flush() +pkg encoding/csv, method (*Writer) Write([]string) error +pkg encoding/csv, method (*Writer) WriteAll([][]string) error +pkg encoding/csv, type ParseError struct +pkg encoding/csv, type ParseError struct, Column int +pkg encoding/csv, type ParseError struct, Err error +pkg encoding/csv, type ParseError struct, Line int +pkg encoding/csv, type Reader struct +pkg encoding/csv, type Reader struct, Comma int32 +pkg encoding/csv, type Reader struct, Comment int32 +pkg encoding/csv, type Reader struct, FieldsPerRecord int +pkg encoding/csv, type Reader struct, LazyQuotes bool +pkg encoding/csv, type Reader struct, TrailingComma bool +pkg encoding/csv, type Reader struct, TrimLeadingSpace bool +pkg encoding/csv, type Writer struct +pkg encoding/csv, type Writer struct, Comma int32 +pkg encoding/csv, type Writer struct, UseCRLF bool +pkg encoding/csv, var ErrBareQuote error +pkg encoding/csv, var ErrFieldCount error +pkg encoding/csv, var ErrQuote error +pkg encoding/csv, var ErrTrailingComma error +pkg encoding/gob, func NewDecoder(io.Reader) *Decoder +pkg encoding/gob, func NewEncoder(io.Writer) *Encoder +pkg encoding/gob, func Register(interface{}) +pkg encoding/gob, func RegisterName(string, interface{}) +pkg encoding/gob, method (*Decoder) Decode(interface{}) error +pkg encoding/gob, method (*Decoder) DecodeValue(reflect.Value) error +pkg encoding/gob, method (*Encoder) Encode(interface{}) error +pkg encoding/gob, method (*Encoder) EncodeValue(reflect.Value) error +pkg encoding/gob, type CommonType struct +pkg encoding/gob, type CommonType struct, Id typeId +pkg encoding/gob, type CommonType struct, Name string +pkg encoding/gob, type Decoder struct +pkg encoding/gob, type Encoder struct +pkg encoding/gob, type GobDecoder interface { GobDecode } +pkg encoding/gob, type GobDecoder interface, GobDecode([]uint8) error +pkg encoding/gob, type GobEncoder interface { GobEncode } +pkg encoding/gob, type GobEncoder interface, GobEncode() ([]uint8, error) +pkg encoding/hex, func Decode([]uint8, []uint8) (int, error) +pkg encoding/hex, func DecodeString(string) ([]uint8, error) +pkg encoding/hex, func DecodedLen(int) int +pkg encoding/hex, func Dump([]uint8) string +pkg encoding/hex, func Dumper(io.Writer) io.WriteCloser +pkg encoding/hex, func Encode([]uint8, []uint8) int +pkg encoding/hex, func EncodeToString([]uint8) string +pkg encoding/hex, func EncodedLen(int) int +pkg encoding/hex, method (InvalidByteError) Error() string +pkg encoding/hex, type InvalidByteError uint8 +pkg encoding/hex, var ErrLength error +pkg encoding/json, func Compact(*bytes.Buffer, []uint8) error +pkg encoding/json, func HTMLEscape(*bytes.Buffer, []uint8) +pkg encoding/json, func Indent(*bytes.Buffer, []uint8, string, string) error +pkg encoding/json, func Marshal(interface{}) ([]uint8, error) +pkg encoding/json, func MarshalIndent(interface{}, string, string) ([]uint8, error) +pkg encoding/json, func NewDecoder(io.Reader) *Decoder +pkg encoding/json, func NewEncoder(io.Writer) *Encoder +pkg encoding/json, func Unmarshal([]uint8, interface{}) error +pkg encoding/json, method (*Decoder) Decode(interface{}) error +pkg encoding/json, method (*Encoder) Encode(interface{}) error +pkg encoding/json, method (*InvalidUTF8Error) Error() string +pkg encoding/json, method (*InvalidUnmarshalError) Error() string +pkg encoding/json, method (*MarshalerError) Error() string +pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error) +pkg encoding/json, method (*RawMessage) UnmarshalJSON([]uint8) error +pkg encoding/json, method (*SyntaxError) Error() string +pkg encoding/json, method (*UnmarshalFieldError) Error() string +pkg encoding/json, method (*UnmarshalTypeError) Error() string +pkg encoding/json, method (*UnsupportedTypeError) Error() string +pkg encoding/json, method (*UnsupportedValueError) Error() string +pkg encoding/json, type Decoder struct +pkg encoding/json, type Encoder struct +pkg encoding/json, type InvalidUTF8Error struct +pkg encoding/json, type InvalidUTF8Error struct, S string +pkg encoding/json, type InvalidUnmarshalError struct +pkg encoding/json, type InvalidUnmarshalError struct, Type reflect.Type +pkg encoding/json, type Marshaler interface { MarshalJSON } +pkg encoding/json, type Marshaler interface, MarshalJSON() ([]uint8, error) +pkg encoding/json, type MarshalerError struct +pkg encoding/json, type MarshalerError struct, Err error +pkg encoding/json, type MarshalerError struct, Type reflect.Type +pkg encoding/json, type RawMessage []uint8 +pkg encoding/json, type SyntaxError struct +pkg encoding/json, type SyntaxError struct, Offset int64 +pkg encoding/json, type UnmarshalFieldError struct +pkg encoding/json, type UnmarshalFieldError struct, Field reflect.StructField +pkg encoding/json, type UnmarshalFieldError struct, Key string +pkg encoding/json, type UnmarshalFieldError struct, Type reflect.Type +pkg encoding/json, type UnmarshalTypeError struct +pkg encoding/json, type UnmarshalTypeError struct, Type reflect.Type +pkg encoding/json, type UnmarshalTypeError struct, Value string +pkg encoding/json, type Unmarshaler interface { UnmarshalJSON } +pkg encoding/json, type Unmarshaler interface, UnmarshalJSON([]uint8) error +pkg encoding/json, type UnsupportedTypeError struct +pkg encoding/json, type UnsupportedTypeError struct, Type reflect.Type +pkg encoding/json, type UnsupportedValueError struct +pkg encoding/json, type UnsupportedValueError struct, Str string +pkg encoding/json, type UnsupportedValueError struct, Value reflect.Value +pkg encoding/pem, func Decode([]uint8) (*Block, []uint8) +pkg encoding/pem, func Encode(io.Writer, *Block) error +pkg encoding/pem, func EncodeToMemory(*Block) []uint8 +pkg encoding/pem, type Block struct +pkg encoding/pem, type Block struct, Bytes []uint8 +pkg encoding/pem, type Block struct, Headers map[string]string +pkg encoding/pem, type Block struct, Type string +pkg encoding/xml, const Header ideal-string +pkg encoding/xml, func CopyToken(Token) Token +pkg encoding/xml, func Escape(io.Writer, []uint8) +pkg encoding/xml, func Marshal(interface{}) ([]uint8, error) +pkg encoding/xml, func MarshalIndent(interface{}, string, string) ([]uint8, error) +pkg encoding/xml, func NewDecoder(io.Reader) *Decoder +pkg encoding/xml, func NewEncoder(io.Writer) *Encoder +pkg encoding/xml, func Unmarshal([]uint8, interface{}) error +pkg encoding/xml, method (*Decoder) Decode(interface{}) error +pkg encoding/xml, method (*Decoder) DecodeElement(interface{}, *StartElement) error +pkg encoding/xml, method (*Decoder) RawToken() (Token, error) +pkg encoding/xml, method (*Decoder) Skip() error +pkg encoding/xml, method (*Decoder) Token() (Token, error) +pkg encoding/xml, method (*Encoder) Encode(interface{}) error +pkg encoding/xml, method (*SyntaxError) Error() string +pkg encoding/xml, method (*TagPathError) Error() string +pkg encoding/xml, method (*UnsupportedTypeError) Error() string +pkg encoding/xml, method (CharData) Copy() CharData +pkg encoding/xml, method (Comment) Copy() Comment +pkg encoding/xml, method (Directive) Copy() Directive +pkg encoding/xml, method (ProcInst) Copy() ProcInst +pkg encoding/xml, method (StartElement) Copy() StartElement +pkg encoding/xml, method (UnmarshalError) Error() string +pkg encoding/xml, type Attr struct +pkg encoding/xml, type Attr struct, Name Name +pkg encoding/xml, type Attr struct, Value string +pkg encoding/xml, type CharData []uint8 +pkg encoding/xml, type Comment []uint8 +pkg encoding/xml, type Decoder struct +pkg encoding/xml, type Decoder struct, AutoClose []string +pkg encoding/xml, type Decoder struct, CharsetReader func(string, io.Reader) (io.Reader, error) +pkg encoding/xml, type Decoder struct, Entity map[string]string +pkg encoding/xml, type Decoder struct, Strict bool +pkg encoding/xml, type Directive []uint8 +pkg encoding/xml, type Encoder struct +pkg encoding/xml, type EndElement struct +pkg encoding/xml, type EndElement struct, Name Name +pkg encoding/xml, type Name struct +pkg encoding/xml, type Name struct, Local string +pkg encoding/xml, type Name struct, Space string +pkg encoding/xml, type ProcInst struct +pkg encoding/xml, type ProcInst struct, Inst []uint8 +pkg encoding/xml, type ProcInst struct, Target string +pkg encoding/xml, type StartElement struct +pkg encoding/xml, type StartElement struct, Attr []Attr +pkg encoding/xml, type StartElement struct, Name Name +pkg encoding/xml, type SyntaxError struct +pkg encoding/xml, type SyntaxError struct, Line int +pkg encoding/xml, type SyntaxError struct, Msg string +pkg encoding/xml, type TagPathError struct +pkg encoding/xml, type TagPathError struct, Field1 string +pkg encoding/xml, type TagPathError struct, Field2 string +pkg encoding/xml, type TagPathError struct, Struct reflect.Type +pkg encoding/xml, type TagPathError struct, Tag1 string +pkg encoding/xml, type TagPathError struct, Tag2 string +pkg encoding/xml, type Token interface {} +pkg encoding/xml, type UnmarshalError string +pkg encoding/xml, type UnsupportedTypeError struct +pkg encoding/xml, type UnsupportedTypeError struct, Type reflect.Type +pkg encoding/xml, var HTMLAutoClose []string +pkg encoding/xml, var HTMLEntity map[string]string +pkg errors, func New(string) error +pkg expvar, func Do(func(KeyValue)) +pkg expvar, func Get(string) Var +pkg expvar, func NewFloat(string) *Float +pkg expvar, func NewInt(string) *Int +pkg expvar, func NewMap(string) *Map +pkg expvar, func NewString(string) *String +pkg expvar, func Publish(string, Var) +pkg expvar, method (*Float) Add(float64) +pkg expvar, method (*Float) Set(float64) +pkg expvar, method (*Float) String() string +pkg expvar, method (*Int) Add(int64) +pkg expvar, method (*Int) Set(int64) +pkg expvar, method (*Int) String() string +pkg expvar, method (*Map) Add(string, int64) +pkg expvar, method (*Map) AddFloat(string, float64) +pkg expvar, method (*Map) Do(func(KeyValue)) +pkg expvar, method (*Map) Get(string) Var +pkg expvar, method (*Map) Init() *Map +pkg expvar, method (*Map) Set(string, Var) +pkg expvar, method (*Map) String() string +pkg expvar, method (*String) Set(string) +pkg expvar, method (*String) String() string +pkg expvar, method (Func) String() string +pkg expvar, type Float struct +pkg expvar, type Func func() interface{} +pkg expvar, type Int struct +pkg expvar, type KeyValue struct +pkg expvar, type KeyValue struct, Key string +pkg expvar, type KeyValue struct, Value Var +pkg expvar, type Map struct +pkg expvar, type String struct +pkg expvar, type Var interface { String } +pkg expvar, type Var interface, String() string +pkg flag, const ContinueOnError ErrorHandling +pkg flag, const ExitOnError ErrorHandling +pkg flag, const PanicOnError ErrorHandling +pkg flag, func Arg(int) string +pkg flag, func Args() []string +pkg flag, func Bool(string, bool, string) *bool +pkg flag, func BoolVar(*bool, string, bool, string) +pkg flag, func Duration(string, time.Duration, string) *time.Duration +pkg flag, func DurationVar(*time.Duration, string, time.Duration, string) +pkg flag, func Float64(string, float64, string) *float64 +pkg flag, func Float64Var(*float64, string, float64, string) +pkg flag, func Int(string, int, string) *int +pkg flag, func Int64(string, int64, string) *int64 +pkg flag, func Int64Var(*int64, string, int64, string) +pkg flag, func IntVar(*int, string, int, string) +pkg flag, func Lookup(string) *Flag +pkg flag, func NArg() int +pkg flag, func NFlag() int +pkg flag, func NewFlagSet(string, ErrorHandling) *FlagSet +pkg flag, func Parse() +pkg flag, func Parsed() bool +pkg flag, func PrintDefaults() +pkg flag, func Set(string, string) error +pkg flag, func String(string, string, string) *string +pkg flag, func StringVar(*string, string, string, string) +pkg flag, func Uint(string, uint, string) *uint +pkg flag, func Uint64(string, uint64, string) *uint64 +pkg flag, func Uint64Var(*uint64, string, uint64, string) +pkg flag, func UintVar(*uint, string, uint, string) +pkg flag, func Var(Value, string, string) +pkg flag, func Visit(func(*Flag)) +pkg flag, func VisitAll(func(*Flag)) +pkg flag, method (*FlagSet) Arg(int) string +pkg flag, method (*FlagSet) Args() []string +pkg flag, method (*FlagSet) Bool(string, bool, string) *bool +pkg flag, method (*FlagSet) BoolVar(*bool, string, bool, string) +pkg flag, method (*FlagSet) Duration(string, time.Duration, string) *time.Duration +pkg flag, method (*FlagSet) DurationVar(*time.Duration, string, time.Duration, string) +pkg flag, method (*FlagSet) Float64(string, float64, string) *float64 +pkg flag, method (*FlagSet) Float64Var(*float64, string, float64, string) +pkg flag, method (*FlagSet) Init(string, ErrorHandling) +pkg flag, method (*FlagSet) Int(string, int, string) *int +pkg flag, method (*FlagSet) Int64(string, int64, string) *int64 +pkg flag, method (*FlagSet) Int64Var(*int64, string, int64, string) +pkg flag, method (*FlagSet) IntVar(*int, string, int, string) +pkg flag, method (*FlagSet) Lookup(string) *Flag +pkg flag, method (*FlagSet) NArg() int +pkg flag, method (*FlagSet) NFlag() int +pkg flag, method (*FlagSet) Parse([]string) error +pkg flag, method (*FlagSet) Parsed() bool +pkg flag, method (*FlagSet) PrintDefaults() +pkg flag, method (*FlagSet) Set(string, string) error +pkg flag, method (*FlagSet) SetOutput(io.Writer) +pkg flag, method (*FlagSet) String(string, string, string) *string +pkg flag, method (*FlagSet) StringVar(*string, string, string, string) +pkg flag, method (*FlagSet) Uint(string, uint, string) *uint +pkg flag, method (*FlagSet) Uint64(string, uint64, string) *uint64 +pkg flag, method (*FlagSet) Uint64Var(*uint64, string, uint64, string) +pkg flag, method (*FlagSet) UintVar(*uint, string, uint, string) +pkg flag, method (*FlagSet) Var(Value, string, string) +pkg flag, method (*FlagSet) Visit(func(*Flag)) +pkg flag, method (*FlagSet) VisitAll(func(*Flag)) +pkg flag, type ErrorHandling int +pkg flag, type Flag struct +pkg flag, type Flag struct, DefValue string +pkg flag, type Flag struct, Name string +pkg flag, type Flag struct, Usage string +pkg flag, type Flag struct, Value Value +pkg flag, type FlagSet struct +pkg flag, type FlagSet struct, Usage func() +pkg flag, type Value interface { Set, String } +pkg flag, type Value interface, Set(string) error +pkg flag, type Value interface, String() string +pkg flag, var ErrHelp error +pkg flag, var Usage func() +pkg fmt, func Errorf(string, ...interface{}) error +pkg fmt, func Fprint(io.Writer, ...interface{}) (int, error) +pkg fmt, func Fprintf(io.Writer, string, ...interface{}) (int, error) +pkg fmt, func Fprintln(io.Writer, ...interface{}) (int, error) +pkg fmt, func Fscan(io.Reader, ...interface{}) (int, error) +pkg fmt, func Fscanf(io.Reader, string, ...interface{}) (int, error) +pkg fmt, func Fscanln(io.Reader, ...interface{}) (int, error) +pkg fmt, func Print(...interface{}) (int, error) +pkg fmt, func Printf(string, ...interface{}) (int, error) +pkg fmt, func Println(...interface{}) (int, error) +pkg fmt, func Scan(...interface{}) (int, error) +pkg fmt, func Scanf(string, ...interface{}) (int, error) +pkg fmt, func Scanln(...interface{}) (int, error) +pkg fmt, func Sprint(...interface{}) string +pkg fmt, func Sprintf(string, ...interface{}) string +pkg fmt, func Sprintln(...interface{}) string +pkg fmt, func Sscan(string, ...interface{}) (int, error) +pkg fmt, func Sscanf(string, string, ...interface{}) (int, error) +pkg fmt, func Sscanln(string, ...interface{}) (int, error) +pkg fmt, type Formatter interface { Format } +pkg fmt, type Formatter interface, Format(State, int32) +pkg fmt, type GoStringer interface { GoString } +pkg fmt, type GoStringer interface, GoString() string +pkg fmt, type ScanState interface { Read, ReadRune, SkipSpace, Token, UnreadRune, Width } +pkg fmt, type ScanState interface, Read([]uint8) (int, error) +pkg fmt, type ScanState interface, ReadRune() (int32, int, error) +pkg fmt, type ScanState interface, SkipSpace() +pkg fmt, type ScanState interface, Token(bool, func(int32) bool) ([]uint8, error) +pkg fmt, type ScanState interface, UnreadRune() error +pkg fmt, type ScanState interface, Width() (int, bool) +pkg fmt, type Scanner interface { Scan } +pkg fmt, type Scanner interface, Scan(ScanState, int32) error +pkg fmt, type State interface { Flag, Precision, Width, Write } +pkg fmt, type State interface, Flag(int) bool +pkg fmt, type State interface, Precision() (int, bool) +pkg fmt, type State interface, Width() (int, bool) +pkg fmt, type State interface, Write([]uint8) (int, error) +pkg fmt, type Stringer interface { String } +pkg fmt, type Stringer interface, String() string +pkg go/ast, const Bad ObjKind +pkg go/ast, const Con ObjKind +pkg go/ast, const FilterFuncDuplicates MergeMode +pkg go/ast, const FilterImportDuplicates MergeMode +pkg go/ast, const FilterUnassociatedComments MergeMode +pkg go/ast, const Fun ObjKind +pkg go/ast, const Lbl ObjKind +pkg go/ast, const Pkg ObjKind +pkg go/ast, const RECV ChanDir +pkg go/ast, const SEND ChanDir +pkg go/ast, const Typ ObjKind +pkg go/ast, const Var ObjKind +pkg go/ast, func FileExports(*File) bool +pkg go/ast, func FilterDecl(Decl, Filter) bool +pkg go/ast, func FilterFile(*File, Filter) bool +pkg go/ast, func FilterPackage(*Package, Filter) bool +pkg go/ast, func Fprint(io.Writer, *token.FileSet, interface{}, FieldFilter) error +pkg go/ast, func Inspect(Node, func(Node) bool) +pkg go/ast, func IsExported(string) bool +pkg go/ast, func MergePackageFiles(*Package, MergeMode) *File +pkg go/ast, func NewIdent(string) *Ident +pkg go/ast, func NewObj(ObjKind, string) *Object +pkg go/ast, func NewPackage(*token.FileSet, map[string]*File, Importer, *Scope) (*Package, error) +pkg go/ast, func NewScope(*Scope) *Scope +pkg go/ast, func NotNilFilter(string, reflect.Value) bool +pkg go/ast, func PackageExports(*Package) bool +pkg go/ast, func Print(*token.FileSet, interface{}) error +pkg go/ast, func SortImports(*token.FileSet, *File) +pkg go/ast, func Walk(Visitor, Node) +pkg go/ast, method (*ArrayType) End() token.Pos +pkg go/ast, method (*ArrayType) Pos() token.Pos +pkg go/ast, method (*AssignStmt) End() token.Pos +pkg go/ast, method (*AssignStmt) Pos() token.Pos +pkg go/ast, method (*BadDecl) End() token.Pos +pkg go/ast, method (*BadDecl) Pos() token.Pos +pkg go/ast, method (*BadExpr) End() token.Pos +pkg go/ast, method (*BadExpr) Pos() token.Pos +pkg go/ast, method (*BadStmt) End() token.Pos +pkg go/ast, method (*BadStmt) Pos() token.Pos +pkg go/ast, method (*BasicLit) End() token.Pos +pkg go/ast, method (*BasicLit) Pos() token.Pos +pkg go/ast, method (*BinaryExpr) End() token.Pos +pkg go/ast, method (*BinaryExpr) Pos() token.Pos +pkg go/ast, method (*BlockStmt) End() token.Pos +pkg go/ast, method (*BlockStmt) Pos() token.Pos +pkg go/ast, method (*BranchStmt) End() token.Pos +pkg go/ast, method (*BranchStmt) Pos() token.Pos +pkg go/ast, method (*CallExpr) End() token.Pos +pkg go/ast, method (*CallExpr) Pos() token.Pos +pkg go/ast, method (*CaseClause) End() token.Pos +pkg go/ast, method (*CaseClause) Pos() token.Pos +pkg go/ast, method (*ChanType) End() token.Pos +pkg go/ast, method (*ChanType) Pos() token.Pos +pkg go/ast, method (*CommClause) End() token.Pos +pkg go/ast, method (*CommClause) Pos() token.Pos +pkg go/ast, method (*Comment) End() token.Pos +pkg go/ast, method (*Comment) Pos() token.Pos +pkg go/ast, method (*CommentGroup) End() token.Pos +pkg go/ast, method (*CommentGroup) Pos() token.Pos +pkg go/ast, method (*CommentGroup) Text() string +pkg go/ast, method (*CompositeLit) End() token.Pos +pkg go/ast, method (*CompositeLit) Pos() token.Pos +pkg go/ast, method (*DeclStmt) End() token.Pos +pkg go/ast, method (*DeclStmt) Pos() token.Pos +pkg go/ast, method (*DeferStmt) End() token.Pos +pkg go/ast, method (*DeferStmt) Pos() token.Pos +pkg go/ast, method (*Ellipsis) End() token.Pos +pkg go/ast, method (*Ellipsis) Pos() token.Pos +pkg go/ast, method (*EmptyStmt) End() token.Pos +pkg go/ast, method (*EmptyStmt) Pos() token.Pos +pkg go/ast, method (*ExprStmt) End() token.Pos +pkg go/ast, method (*ExprStmt) Pos() token.Pos +pkg go/ast, method (*Field) End() token.Pos +pkg go/ast, method (*Field) Pos() token.Pos +pkg go/ast, method (*FieldList) End() token.Pos +pkg go/ast, method (*FieldList) NumFields() int +pkg go/ast, method (*FieldList) Pos() token.Pos +pkg go/ast, method (*File) End() token.Pos +pkg go/ast, method (*File) Pos() token.Pos +pkg go/ast, method (*ForStmt) End() token.Pos +pkg go/ast, method (*ForStmt) Pos() token.Pos +pkg go/ast, method (*FuncDecl) End() token.Pos +pkg go/ast, method (*FuncDecl) Pos() token.Pos +pkg go/ast, method (*FuncLit) End() token.Pos +pkg go/ast, method (*FuncLit) Pos() token.Pos +pkg go/ast, method (*FuncType) End() token.Pos +pkg go/ast, method (*FuncType) Pos() token.Pos +pkg go/ast, method (*GenDecl) End() token.Pos +pkg go/ast, method (*GenDecl) Pos() token.Pos +pkg go/ast, method (*GoStmt) End() token.Pos +pkg go/ast, method (*GoStmt) Pos() token.Pos +pkg go/ast, method (*Ident) End() token.Pos +pkg go/ast, method (*Ident) IsExported() bool +pkg go/ast, method (*Ident) Pos() token.Pos +pkg go/ast, method (*Ident) String() string +pkg go/ast, method (*IfStmt) End() token.Pos +pkg go/ast, method (*IfStmt) Pos() token.Pos +pkg go/ast, method (*ImportSpec) End() token.Pos +pkg go/ast, method (*ImportSpec) Pos() token.Pos +pkg go/ast, method (*IncDecStmt) End() token.Pos +pkg go/ast, method (*IncDecStmt) Pos() token.Pos +pkg go/ast, method (*IndexExpr) End() token.Pos +pkg go/ast, method (*IndexExpr) Pos() token.Pos +pkg go/ast, method (*InterfaceType) End() token.Pos +pkg go/ast, method (*InterfaceType) Pos() token.Pos +pkg go/ast, method (*KeyValueExpr) End() token.Pos +pkg go/ast, method (*KeyValueExpr) Pos() token.Pos +pkg go/ast, method (*LabeledStmt) End() token.Pos +pkg go/ast, method (*LabeledStmt) Pos() token.Pos +pkg go/ast, method (*MapType) End() token.Pos +pkg go/ast, method (*MapType) Pos() token.Pos +pkg go/ast, method (*Object) Pos() token.Pos +pkg go/ast, method (*Package) End() token.Pos +pkg go/ast, method (*Package) Pos() token.Pos +pkg go/ast, method (*ParenExpr) End() token.Pos +pkg go/ast, method (*ParenExpr) Pos() token.Pos +pkg go/ast, method (*RangeStmt) End() token.Pos +pkg go/ast, method (*RangeStmt) Pos() token.Pos +pkg go/ast, method (*ReturnStmt) End() token.Pos +pkg go/ast, method (*ReturnStmt) Pos() token.Pos +pkg go/ast, method (*Scope) Insert(*Object) *Object +pkg go/ast, method (*Scope) Lookup(string) *Object +pkg go/ast, method (*Scope) String() string +pkg go/ast, method (*SelectStmt) End() token.Pos +pkg go/ast, method (*SelectStmt) Pos() token.Pos +pkg go/ast, method (*SelectorExpr) End() token.Pos +pkg go/ast, method (*SelectorExpr) Pos() token.Pos +pkg go/ast, method (*SendStmt) End() token.Pos +pkg go/ast, method (*SendStmt) Pos() token.Pos +pkg go/ast, method (*SliceExpr) End() token.Pos +pkg go/ast, method (*SliceExpr) Pos() token.Pos +pkg go/ast, method (*StarExpr) End() token.Pos +pkg go/ast, method (*StarExpr) Pos() token.Pos +pkg go/ast, method (*StructType) End() token.Pos +pkg go/ast, method (*StructType) Pos() token.Pos +pkg go/ast, method (*SwitchStmt) End() token.Pos +pkg go/ast, method (*SwitchStmt) Pos() token.Pos +pkg go/ast, method (*TypeAssertExpr) End() token.Pos +pkg go/ast, method (*TypeAssertExpr) Pos() token.Pos +pkg go/ast, method (*TypeSpec) End() token.Pos +pkg go/ast, method (*TypeSpec) Pos() token.Pos +pkg go/ast, method (*TypeSwitchStmt) End() token.Pos +pkg go/ast, method (*TypeSwitchStmt) Pos() token.Pos +pkg go/ast, method (*UnaryExpr) End() token.Pos +pkg go/ast, method (*UnaryExpr) Pos() token.Pos +pkg go/ast, method (*ValueSpec) End() token.Pos +pkg go/ast, method (*ValueSpec) Pos() token.Pos +pkg go/ast, method (ObjKind) String() string +pkg go/ast, type ArrayType struct +pkg go/ast, type ArrayType struct, Elt Expr +pkg go/ast, type ArrayType struct, Lbrack token.Pos +pkg go/ast, type ArrayType struct, Len Expr +pkg go/ast, type AssignStmt struct +pkg go/ast, type AssignStmt struct, Lhs []Expr +pkg go/ast, type AssignStmt struct, Rhs []Expr +pkg go/ast, type AssignStmt struct, Tok token.Token +pkg go/ast, type AssignStmt struct, TokPos token.Pos +pkg go/ast, type BadDecl struct +pkg go/ast, type BadDecl struct, From token.Pos +pkg go/ast, type BadDecl struct, To token.Pos +pkg go/ast, type BadExpr struct +pkg go/ast, type BadExpr struct, From token.Pos +pkg go/ast, type BadExpr struct, To token.Pos +pkg go/ast, type BadStmt struct +pkg go/ast, type BadStmt struct, From token.Pos +pkg go/ast, type BadStmt struct, To token.Pos +pkg go/ast, type BasicLit struct +pkg go/ast, type BasicLit struct, Kind token.Token +pkg go/ast, type BasicLit struct, Value string +pkg go/ast, type BasicLit struct, ValuePos token.Pos +pkg go/ast, type BinaryExpr struct +pkg go/ast, type BinaryExpr struct, Op token.Token +pkg go/ast, type BinaryExpr struct, OpPos token.Pos +pkg go/ast, type BinaryExpr struct, X Expr +pkg go/ast, type BinaryExpr struct, Y Expr +pkg go/ast, type BlockStmt struct +pkg go/ast, type BlockStmt struct, Lbrace token.Pos +pkg go/ast, type BlockStmt struct, List []Stmt +pkg go/ast, type BlockStmt struct, Rbrace token.Pos +pkg go/ast, type BranchStmt struct +pkg go/ast, type BranchStmt struct, Label *Ident +pkg go/ast, type BranchStmt struct, Tok token.Token +pkg go/ast, type BranchStmt struct, TokPos token.Pos +pkg go/ast, type CallExpr struct +pkg go/ast, type CallExpr struct, Args []Expr +pkg go/ast, type CallExpr struct, Ellipsis token.Pos +pkg go/ast, type CallExpr struct, Fun Expr +pkg go/ast, type CallExpr struct, Lparen token.Pos +pkg go/ast, type CallExpr struct, Rparen token.Pos +pkg go/ast, type CaseClause struct +pkg go/ast, type CaseClause struct, Body []Stmt +pkg go/ast, type CaseClause struct, Case token.Pos +pkg go/ast, type CaseClause struct, Colon token.Pos +pkg go/ast, type CaseClause struct, List []Expr +pkg go/ast, type ChanDir int +pkg go/ast, type ChanType struct +pkg go/ast, type ChanType struct, Begin token.Pos +pkg go/ast, type ChanType struct, Dir ChanDir +pkg go/ast, type ChanType struct, Value Expr +pkg go/ast, type CommClause struct +pkg go/ast, type CommClause struct, Body []Stmt +pkg go/ast, type CommClause struct, Case token.Pos +pkg go/ast, type CommClause struct, Colon token.Pos +pkg go/ast, type CommClause struct, Comm Stmt +pkg go/ast, type Comment struct +pkg go/ast, type Comment struct, Slash token.Pos +pkg go/ast, type Comment struct, Text string +pkg go/ast, type CommentGroup struct +pkg go/ast, type CommentGroup struct, List []*Comment +pkg go/ast, type CompositeLit struct +pkg go/ast, type CompositeLit struct, Elts []Expr +pkg go/ast, type CompositeLit struct, Lbrace token.Pos +pkg go/ast, type CompositeLit struct, Rbrace token.Pos +pkg go/ast, type CompositeLit struct, Type Expr +pkg go/ast, type Decl interface, End() token.Pos +pkg go/ast, type Decl interface, Pos() token.Pos +pkg go/ast, type Decl interface, unexported methods +pkg go/ast, type DeclStmt struct +pkg go/ast, type DeclStmt struct, Decl Decl +pkg go/ast, type DeferStmt struct +pkg go/ast, type DeferStmt struct, Call *CallExpr +pkg go/ast, type DeferStmt struct, Defer token.Pos +pkg go/ast, type Ellipsis struct +pkg go/ast, type Ellipsis struct, Ellipsis token.Pos +pkg go/ast, type Ellipsis struct, Elt Expr +pkg go/ast, type EmptyStmt struct +pkg go/ast, type EmptyStmt struct, Semicolon token.Pos +pkg go/ast, type Expr interface, End() token.Pos +pkg go/ast, type Expr interface, Pos() token.Pos +pkg go/ast, type Expr interface, unexported methods +pkg go/ast, type ExprStmt struct +pkg go/ast, type ExprStmt struct, X Expr +pkg go/ast, type Field struct +pkg go/ast, type Field struct, Comment *CommentGroup +pkg go/ast, type Field struct, Doc *CommentGroup +pkg go/ast, type Field struct, Names []*Ident +pkg go/ast, type Field struct, Tag *BasicLit +pkg go/ast, type Field struct, Type Expr +pkg go/ast, type FieldFilter func(string, reflect.Value) bool +pkg go/ast, type FieldList struct +pkg go/ast, type FieldList struct, Closing token.Pos +pkg go/ast, type FieldList struct, List []*Field +pkg go/ast, type FieldList struct, Opening token.Pos +pkg go/ast, type File struct +pkg go/ast, type File struct, Comments []*CommentGroup +pkg go/ast, type File struct, Decls []Decl +pkg go/ast, type File struct, Doc *CommentGroup +pkg go/ast, type File struct, Imports []*ImportSpec +pkg go/ast, type File struct, Name *Ident +pkg go/ast, type File struct, Package token.Pos +pkg go/ast, type File struct, Scope *Scope +pkg go/ast, type File struct, Unresolved []*Ident +pkg go/ast, type Filter func(string) bool +pkg go/ast, type ForStmt struct +pkg go/ast, type ForStmt struct, Body *BlockStmt +pkg go/ast, type ForStmt struct, Cond Expr +pkg go/ast, type ForStmt struct, For token.Pos +pkg go/ast, type ForStmt struct, Init Stmt +pkg go/ast, type ForStmt struct, Post Stmt +pkg go/ast, type FuncDecl struct +pkg go/ast, type FuncDecl struct, Body *BlockStmt +pkg go/ast, type FuncDecl struct, Doc *CommentGroup +pkg go/ast, type FuncDecl struct, Name *Ident +pkg go/ast, type FuncDecl struct, Recv *FieldList +pkg go/ast, type FuncDecl struct, Type *FuncType +pkg go/ast, type FuncLit struct +pkg go/ast, type FuncLit struct, Body *BlockStmt +pkg go/ast, type FuncLit struct, Type *FuncType +pkg go/ast, type FuncType struct +pkg go/ast, type FuncType struct, Func token.Pos +pkg go/ast, type FuncType struct, Params *FieldList +pkg go/ast, type FuncType struct, Results *FieldList +pkg go/ast, type GenDecl struct +pkg go/ast, type GenDecl struct, Doc *CommentGroup +pkg go/ast, type GenDecl struct, Lparen token.Pos +pkg go/ast, type GenDecl struct, Rparen token.Pos +pkg go/ast, type GenDecl struct, Specs []Spec +pkg go/ast, type GenDecl struct, Tok token.Token +pkg go/ast, type GenDecl struct, TokPos token.Pos +pkg go/ast, type GoStmt struct +pkg go/ast, type GoStmt struct, Call *CallExpr +pkg go/ast, type GoStmt struct, Go token.Pos +pkg go/ast, type Ident struct +pkg go/ast, type Ident struct, Name string +pkg go/ast, type Ident struct, NamePos token.Pos +pkg go/ast, type Ident struct, Obj *Object +pkg go/ast, type IfStmt struct +pkg go/ast, type IfStmt struct, Body *BlockStmt +pkg go/ast, type IfStmt struct, Cond Expr +pkg go/ast, type IfStmt struct, Else Stmt +pkg go/ast, type IfStmt struct, If token.Pos +pkg go/ast, type IfStmt struct, Init Stmt +pkg go/ast, type ImportSpec struct +pkg go/ast, type ImportSpec struct, Comment *CommentGroup +pkg go/ast, type ImportSpec struct, Doc *CommentGroup +pkg go/ast, type ImportSpec struct, EndPos token.Pos +pkg go/ast, type ImportSpec struct, Name *Ident +pkg go/ast, type ImportSpec struct, Path *BasicLit +pkg go/ast, type Importer func(map[string]*Object, string) (*Object, error) +pkg go/ast, type IncDecStmt struct +pkg go/ast, type IncDecStmt struct, Tok token.Token +pkg go/ast, type IncDecStmt struct, TokPos token.Pos +pkg go/ast, type IncDecStmt struct, X Expr +pkg go/ast, type IndexExpr struct +pkg go/ast, type IndexExpr struct, Index Expr +pkg go/ast, type IndexExpr struct, Lbrack token.Pos +pkg go/ast, type IndexExpr struct, Rbrack token.Pos +pkg go/ast, type IndexExpr struct, X Expr +pkg go/ast, type InterfaceType struct +pkg go/ast, type InterfaceType struct, Incomplete bool +pkg go/ast, type InterfaceType struct, Interface token.Pos +pkg go/ast, type InterfaceType struct, Methods *FieldList +pkg go/ast, type KeyValueExpr struct +pkg go/ast, type KeyValueExpr struct, Colon token.Pos +pkg go/ast, type KeyValueExpr struct, Key Expr +pkg go/ast, type KeyValueExpr struct, Value Expr +pkg go/ast, type LabeledStmt struct +pkg go/ast, type LabeledStmt struct, Colon token.Pos +pkg go/ast, type LabeledStmt struct, Label *Ident +pkg go/ast, type LabeledStmt struct, Stmt Stmt +pkg go/ast, type MapType struct +pkg go/ast, type MapType struct, Key Expr +pkg go/ast, type MapType struct, Map token.Pos +pkg go/ast, type MapType struct, Value Expr +pkg go/ast, type MergeMode uint +pkg go/ast, type Node interface { End, Pos } +pkg go/ast, type Node interface, End() token.Pos +pkg go/ast, type Node interface, Pos() token.Pos +pkg go/ast, type ObjKind int +pkg go/ast, type Object struct +pkg go/ast, type Object struct, Data interface{} +pkg go/ast, type Object struct, Decl interface{} +pkg go/ast, type Object struct, Kind ObjKind +pkg go/ast, type Object struct, Name string +pkg go/ast, type Object struct, Type interface{} +pkg go/ast, type Package struct +pkg go/ast, type Package struct, Files map[string]*File +pkg go/ast, type Package struct, Imports map[string]*Object +pkg go/ast, type Package struct, Name string +pkg go/ast, type Package struct, Scope *Scope +pkg go/ast, type ParenExpr struct +pkg go/ast, type ParenExpr struct, Lparen token.Pos +pkg go/ast, type ParenExpr struct, Rparen token.Pos +pkg go/ast, type ParenExpr struct, X Expr +pkg go/ast, type RangeStmt struct +pkg go/ast, type RangeStmt struct, Body *BlockStmt +pkg go/ast, type RangeStmt struct, For token.Pos +pkg go/ast, type RangeStmt struct, Key Expr +pkg go/ast, type RangeStmt struct, Tok token.Token +pkg go/ast, type RangeStmt struct, TokPos token.Pos +pkg go/ast, type RangeStmt struct, Value Expr +pkg go/ast, type RangeStmt struct, X Expr +pkg go/ast, type ReturnStmt struct +pkg go/ast, type ReturnStmt struct, Results []Expr +pkg go/ast, type ReturnStmt struct, Return token.Pos +pkg go/ast, type Scope struct +pkg go/ast, type Scope struct, Objects map[string]*Object +pkg go/ast, type Scope struct, Outer *Scope +pkg go/ast, type SelectStmt struct +pkg go/ast, type SelectStmt struct, Body *BlockStmt +pkg go/ast, type SelectStmt struct, Select token.Pos +pkg go/ast, type SelectorExpr struct +pkg go/ast, type SelectorExpr struct, Sel *Ident +pkg go/ast, type SelectorExpr struct, X Expr +pkg go/ast, type SendStmt struct +pkg go/ast, type SendStmt struct, Arrow token.Pos +pkg go/ast, type SendStmt struct, Chan Expr +pkg go/ast, type SendStmt struct, Value Expr +pkg go/ast, type SliceExpr struct +pkg go/ast, type SliceExpr struct, High Expr +pkg go/ast, type SliceExpr struct, Lbrack token.Pos +pkg go/ast, type SliceExpr struct, Low Expr +pkg go/ast, type SliceExpr struct, Rbrack token.Pos +pkg go/ast, type SliceExpr struct, X Expr +pkg go/ast, type Spec interface, End() token.Pos +pkg go/ast, type Spec interface, Pos() token.Pos +pkg go/ast, type Spec interface, unexported methods +pkg go/ast, type StarExpr struct +pkg go/ast, type StarExpr struct, Star token.Pos +pkg go/ast, type StarExpr struct, X Expr +pkg go/ast, type Stmt interface, End() token.Pos +pkg go/ast, type Stmt interface, Pos() token.Pos +pkg go/ast, type Stmt interface, unexported methods +pkg go/ast, type StructType struct +pkg go/ast, type StructType struct, Fields *FieldList +pkg go/ast, type StructType struct, Incomplete bool +pkg go/ast, type StructType struct, Struct token.Pos +pkg go/ast, type SwitchStmt struct +pkg go/ast, type SwitchStmt struct, Body *BlockStmt +pkg go/ast, type SwitchStmt struct, Init Stmt +pkg go/ast, type SwitchStmt struct, Switch token.Pos +pkg go/ast, type SwitchStmt struct, Tag Expr +pkg go/ast, type TypeAssertExpr struct +pkg go/ast, type TypeAssertExpr struct, Type Expr +pkg go/ast, type TypeAssertExpr struct, X Expr +pkg go/ast, type TypeSpec struct +pkg go/ast, type TypeSpec struct, Comment *CommentGroup +pkg go/ast, type TypeSpec struct, Doc *CommentGroup +pkg go/ast, type TypeSpec struct, Name *Ident +pkg go/ast, type TypeSpec struct, Type Expr +pkg go/ast, type TypeSwitchStmt struct +pkg go/ast, type TypeSwitchStmt struct, Assign Stmt +pkg go/ast, type TypeSwitchStmt struct, Body *BlockStmt +pkg go/ast, type TypeSwitchStmt struct, Init Stmt +pkg go/ast, type TypeSwitchStmt struct, Switch token.Pos +pkg go/ast, type UnaryExpr struct +pkg go/ast, type UnaryExpr struct, Op token.Token +pkg go/ast, type UnaryExpr struct, OpPos token.Pos +pkg go/ast, type UnaryExpr struct, X Expr +pkg go/ast, type ValueSpec struct +pkg go/ast, type ValueSpec struct, Comment *CommentGroup +pkg go/ast, type ValueSpec struct, Doc *CommentGroup +pkg go/ast, type ValueSpec struct, Names []*Ident +pkg go/ast, type ValueSpec struct, Type Expr +pkg go/ast, type ValueSpec struct, Values []Expr +pkg go/ast, type Visitor interface { Visit } +pkg go/ast, type Visitor interface, Visit(Node) Visitor +pkg go/build, const AllowBinary ImportMode +pkg go/build, const FindOnly ImportMode +pkg go/build, func ArchChar(string) (string, error) +pkg go/build, func Import(string, string, ImportMode) (*Package, error) +pkg go/build, func ImportDir(string, ImportMode) (*Package, error) +pkg go/build, func IsLocalImport(string) bool +pkg go/build, method (*Context) Import(string, string, ImportMode) (*Package, error) +pkg go/build, method (*Context) ImportDir(string, ImportMode) (*Package, error) +pkg go/build, method (*Context) SrcDirs() []string +pkg go/build, method (*NoGoError) Error() string +pkg go/build, method (*Package) IsCommand() bool +pkg go/build, type Context struct +pkg go/build, type Context struct, BuildTags []string +pkg go/build, type Context struct, CgoEnabled bool +pkg go/build, type Context struct, Compiler string +pkg go/build, type Context struct, GOARCH string +pkg go/build, type Context struct, GOOS string +pkg go/build, type Context struct, GOPATH string +pkg go/build, type Context struct, GOROOT string +pkg go/build, type Context struct, HasSubdir func(string, string) (string, bool) +pkg go/build, type Context struct, IsAbsPath func(string) bool +pkg go/build, type Context struct, IsDir func(string) bool +pkg go/build, type Context struct, JoinPath func(...string) string +pkg go/build, type Context struct, OpenFile func(string) (io.ReadCloser, error) +pkg go/build, type Context struct, ReadDir func(string) ([]os.FileInfo, error) +pkg go/build, type Context struct, SplitPathList func(string) []string +pkg go/build, type Context struct, UseAllFiles bool +pkg go/build, type ImportMode uint +pkg go/build, type NoGoError struct +pkg go/build, type NoGoError struct, Dir string +pkg go/build, type Package struct +pkg go/build, type Package struct, BinDir string +pkg go/build, type Package struct, CFiles []string +pkg go/build, type Package struct, CgoCFLAGS []string +pkg go/build, type Package struct, CgoFiles []string +pkg go/build, type Package struct, CgoLDFLAGS []string +pkg go/build, type Package struct, CgoPkgConfig []string +pkg go/build, type Package struct, Dir string +pkg go/build, type Package struct, Doc string +pkg go/build, type Package struct, GoFiles []string +pkg go/build, type Package struct, Goroot bool +pkg go/build, type Package struct, HFiles []string +pkg go/build, type Package struct, ImportPath string +pkg go/build, type Package struct, ImportPos map[string][]token.Position +pkg go/build, type Package struct, Imports []string +pkg go/build, type Package struct, Name string +pkg go/build, type Package struct, PkgObj string +pkg go/build, type Package struct, PkgRoot string +pkg go/build, type Package struct, Root string +pkg go/build, type Package struct, SFiles []string +pkg go/build, type Package struct, SrcRoot string +pkg go/build, type Package struct, SysoFiles []string +pkg go/build, type Package struct, TestGoFiles []string +pkg go/build, type Package struct, TestImportPos map[string][]token.Position +pkg go/build, type Package struct, TestImports []string +pkg go/build, type Package struct, XTestGoFiles []string +pkg go/build, type Package struct, XTestImportPos map[string][]token.Position +pkg go/build, type Package struct, XTestImports []string +pkg go/build, var Default Context +pkg go/build, var ToolDir string +pkg go/doc, const AllDecls Mode +pkg go/doc, const AllMethods Mode +pkg go/doc, func Examples(...*ast.File) []*Example +pkg go/doc, func New(*ast.Package, string, Mode) *Package +pkg go/doc, func Synopsis(string) string +pkg go/doc, func ToHTML(io.Writer, string, map[string]string) +pkg go/doc, func ToText(io.Writer, string, string, string, int) +pkg go/doc, method (*Package) Filter(Filter) +pkg go/doc, type Example struct +pkg go/doc, type Example struct, Code ast.Node +pkg go/doc, type Example struct, Comments []*ast.CommentGroup +pkg go/doc, type Example struct, Doc string +pkg go/doc, type Example struct, Name string +pkg go/doc, type Example struct, Output string +pkg go/doc, type Filter func(string) bool +pkg go/doc, type Func struct +pkg go/doc, type Func struct, Decl *ast.FuncDecl +pkg go/doc, type Func struct, Doc string +pkg go/doc, type Func struct, Level int +pkg go/doc, type Func struct, Name string +pkg go/doc, type Func struct, Orig string +pkg go/doc, type Func struct, Recv string +pkg go/doc, type Mode int +pkg go/doc, type Package struct +pkg go/doc, type Package struct, Bugs []string +pkg go/doc, type Package struct, Consts []*Value +pkg go/doc, type Package struct, Doc string +pkg go/doc, type Package struct, Filenames []string +pkg go/doc, type Package struct, Funcs []*Func +pkg go/doc, type Package struct, ImportPath string +pkg go/doc, type Package struct, Imports []string +pkg go/doc, type Package struct, Name string +pkg go/doc, type Package struct, Types []*Type +pkg go/doc, type Package struct, Vars []*Value +pkg go/doc, type Type struct +pkg go/doc, type Type struct, Consts []*Value +pkg go/doc, type Type struct, Decl *ast.GenDecl +pkg go/doc, type Type struct, Doc string +pkg go/doc, type Type struct, Funcs []*Func +pkg go/doc, type Type struct, Methods []*Func +pkg go/doc, type Type struct, Name string +pkg go/doc, type Type struct, Vars []*Value +pkg go/doc, type Value struct +pkg go/doc, type Value struct, Decl *ast.GenDecl +pkg go/doc, type Value struct, Doc string +pkg go/doc, type Value struct, Names []string +pkg go/parser, const DeclarationErrors Mode +pkg go/parser, const ImportsOnly Mode +pkg go/parser, const PackageClauseOnly Mode +pkg go/parser, const ParseComments Mode +pkg go/parser, const SpuriousErrors Mode +pkg go/parser, const Trace Mode +pkg go/parser, func ParseDir(*token.FileSet, string, func(os.FileInfo) bool, Mode) (map[string]*ast.Package, error) +pkg go/parser, func ParseExpr(string) (ast.Expr, error) +pkg go/parser, func ParseFile(*token.FileSet, string, interface{}, Mode) (*ast.File, error) +pkg go/parser, type Mode uint +pkg go/printer, const RawFormat Mode +pkg go/printer, const SourcePos Mode +pkg go/printer, const TabIndent Mode +pkg go/printer, const UseSpaces Mode +pkg go/printer, func Fprint(io.Writer, *token.FileSet, interface{}) error +pkg go/printer, method (*Config) Fprint(io.Writer, *token.FileSet, interface{}) error +pkg go/printer, type CommentedNode struct +pkg go/printer, type CommentedNode struct, Comments []*ast.CommentGroup +pkg go/printer, type CommentedNode struct, Node interface{} +pkg go/printer, type Config struct +pkg go/printer, type Config struct, Mode Mode +pkg go/printer, type Config struct, Tabwidth int +pkg go/printer, type Mode uint +pkg go/scanner, const ScanComments Mode +pkg go/scanner, func PrintError(io.Writer, error) +pkg go/scanner, method (*ErrorList) Add(token.Position, string) +pkg go/scanner, method (*ErrorList) RemoveMultiples() +pkg go/scanner, method (*ErrorList) Reset() +pkg go/scanner, method (*Scanner) Init(*token.File, []uint8, ErrorHandler, Mode) +pkg go/scanner, method (*Scanner) Scan() (token.Pos, token.Token, string) +pkg go/scanner, method (Error) Error() string +pkg go/scanner, method (ErrorList) Err() error +pkg go/scanner, method (ErrorList) Error() string +pkg go/scanner, method (ErrorList) Len() int +pkg go/scanner, method (ErrorList) Less(int, int) bool +pkg go/scanner, method (ErrorList) Sort() +pkg go/scanner, method (ErrorList) Swap(int, int) +pkg go/scanner, type Error struct +pkg go/scanner, type Error struct, Msg string +pkg go/scanner, type Error struct, Pos token.Position +pkg go/scanner, type ErrorHandler func(token.Position, string) +pkg go/scanner, type ErrorList []*Error +pkg go/scanner, type Mode uint +pkg go/scanner, type Scanner struct +pkg go/scanner, type Scanner struct, ErrorCount int +pkg go/token, const ADD Token +pkg go/token, const ADD_ASSIGN Token +pkg go/token, const AND Token +pkg go/token, const AND_ASSIGN Token +pkg go/token, const AND_NOT Token +pkg go/token, const AND_NOT_ASSIGN Token +pkg go/token, const ARROW Token +pkg go/token, const ASSIGN Token +pkg go/token, const BREAK Token +pkg go/token, const CASE Token +pkg go/token, const CHAN Token +pkg go/token, const CHAR Token +pkg go/token, const COLON Token +pkg go/token, const COMMA Token +pkg go/token, const COMMENT Token +pkg go/token, const CONST Token +pkg go/token, const CONTINUE Token +pkg go/token, const DEC Token +pkg go/token, const DEFAULT Token +pkg go/token, const DEFER Token +pkg go/token, const DEFINE Token +pkg go/token, const ELLIPSIS Token +pkg go/token, const ELSE Token +pkg go/token, const EOF Token +pkg go/token, const EQL Token +pkg go/token, const FALLTHROUGH Token +pkg go/token, const FLOAT Token +pkg go/token, const FOR Token +pkg go/token, const FUNC Token +pkg go/token, const GEQ Token +pkg go/token, const GO Token +pkg go/token, const GOTO Token +pkg go/token, const GTR Token +pkg go/token, const HighestPrec ideal-int +pkg go/token, const IDENT Token +pkg go/token, const IF Token +pkg go/token, const ILLEGAL Token +pkg go/token, const IMAG Token +pkg go/token, const IMPORT Token +pkg go/token, const INC Token +pkg go/token, const INT Token +pkg go/token, const INTERFACE Token +pkg go/token, const LAND Token +pkg go/token, const LBRACE Token +pkg go/token, const LBRACK Token +pkg go/token, const LEQ Token +pkg go/token, const LOR Token +pkg go/token, const LPAREN Token +pkg go/token, const LSS Token +pkg go/token, const LowestPrec ideal-int +pkg go/token, const MAP Token +pkg go/token, const MUL Token +pkg go/token, const MUL_ASSIGN Token +pkg go/token, const NEQ Token +pkg go/token, const NOT Token +pkg go/token, const NoPos Pos +pkg go/token, const OR Token +pkg go/token, const OR_ASSIGN Token +pkg go/token, const PACKAGE Token +pkg go/token, const PERIOD Token +pkg go/token, const QUO Token +pkg go/token, const QUO_ASSIGN Token +pkg go/token, const RANGE Token +pkg go/token, const RBRACE Token +pkg go/token, const RBRACK Token +pkg go/token, const REM Token +pkg go/token, const REM_ASSIGN Token +pkg go/token, const RETURN Token +pkg go/token, const RPAREN Token +pkg go/token, const SELECT Token +pkg go/token, const SEMICOLON Token +pkg go/token, const SHL Token +pkg go/token, const SHL_ASSIGN Token +pkg go/token, const SHR Token +pkg go/token, const SHR_ASSIGN Token +pkg go/token, const STRING Token +pkg go/token, const STRUCT Token +pkg go/token, const SUB Token +pkg go/token, const SUB_ASSIGN Token +pkg go/token, const SWITCH Token +pkg go/token, const TYPE Token +pkg go/token, const UnaryPrec ideal-int +pkg go/token, const VAR Token +pkg go/token, const XOR Token +pkg go/token, const XOR_ASSIGN Token +pkg go/token, func Lookup(string) Token +pkg go/token, func NewFileSet() *FileSet +pkg go/token, method (*File) AddLine(int) +pkg go/token, method (*File) AddLineInfo(int, string, int) +pkg go/token, method (*File) Base() int +pkg go/token, method (*File) Line(Pos) int +pkg go/token, method (*File) LineCount() int +pkg go/token, method (*File) Name() string +pkg go/token, method (*File) Offset(Pos) int +pkg go/token, method (*File) Pos(int) Pos +pkg go/token, method (*File) Position(Pos) Position +pkg go/token, method (*File) SetLines([]int) bool +pkg go/token, method (*File) SetLinesForContent([]uint8) +pkg go/token, method (*File) Size() int +pkg go/token, method (*FileSet) AddFile(string, int, int) *File +pkg go/token, method (*FileSet) Base() int +pkg go/token, method (*FileSet) File(Pos) *File +pkg go/token, method (*FileSet) Iterate(func(*File) bool) +pkg go/token, method (*FileSet) Position(Pos) Position +pkg go/token, method (*FileSet) Read(func(interface{}) error) error +pkg go/token, method (*FileSet) Write(func(interface{}) error) error +pkg go/token, method (*Position) IsValid() bool +pkg go/token, method (Pos) IsValid() bool +pkg go/token, method (Position) String() string +pkg go/token, method (Token) IsKeyword() bool +pkg go/token, method (Token) IsLiteral() bool +pkg go/token, method (Token) IsOperator() bool +pkg go/token, method (Token) Precedence() int +pkg go/token, method (Token) String() string +pkg go/token, type File struct +pkg go/token, type FileSet struct +pkg go/token, type Pos int +pkg go/token, type Position struct +pkg go/token, type Position struct, Column int +pkg go/token, type Position struct, Filename string +pkg go/token, type Position struct, Line int +pkg go/token, type Position struct, Offset int +pkg go/token, type Token int +pkg hash, type Hash interface { BlockSize, Reset, Size, Sum, Write } +pkg hash, type Hash interface, BlockSize() int +pkg hash, type Hash interface, Reset() +pkg hash, type Hash interface, Size() int +pkg hash, type Hash interface, Sum([]uint8) []uint8 +pkg hash, type Hash interface, Write([]uint8) (int, error) +pkg hash, type Hash32 interface { BlockSize, Reset, Size, Sum, Sum32, Write } +pkg hash, type Hash32 interface, BlockSize() int +pkg hash, type Hash32 interface, Reset() +pkg hash, type Hash32 interface, Size() int +pkg hash, type Hash32 interface, Sum([]uint8) []uint8 +pkg hash, type Hash32 interface, Sum32() uint32 +pkg hash, type Hash32 interface, Write([]uint8) (int, error) +pkg hash, type Hash64 interface { BlockSize, Reset, Size, Sum, Sum64, Write } +pkg hash, type Hash64 interface, BlockSize() int +pkg hash, type Hash64 interface, Reset() +pkg hash, type Hash64 interface, Size() int +pkg hash, type Hash64 interface, Sum([]uint8) []uint8 +pkg hash, type Hash64 interface, Sum64() uint64 +pkg hash, type Hash64 interface, Write([]uint8) (int, error) +pkg hash/adler32, const Size ideal-int +pkg hash/adler32, func Checksum([]uint8) uint32 +pkg hash/adler32, func New() hash.Hash32 +pkg hash/crc32, const Castagnoli ideal-int +pkg hash/crc32, const IEEE ideal-int +pkg hash/crc32, const Koopman ideal-int +pkg hash/crc32, const Size ideal-int +pkg hash/crc32, func Checksum([]uint8, *Table) uint32 +pkg hash/crc32, func ChecksumIEEE([]uint8) uint32 +pkg hash/crc32, func MakeTable(uint32) *Table +pkg hash/crc32, func New(*Table) hash.Hash32 +pkg hash/crc32, func NewIEEE() hash.Hash32 +pkg hash/crc32, func Update(uint32, *Table, []uint8) uint32 +pkg hash/crc32, type Table [256]uint32 +pkg hash/crc32, var IEEETable *Table +pkg hash/crc64, const ECMA ideal-int +pkg hash/crc64, const ISO ideal-int +pkg hash/crc64, const Size ideal-int +pkg hash/crc64, func Checksum([]uint8, *Table) uint64 +pkg hash/crc64, func MakeTable(uint64) *Table +pkg hash/crc64, func New(*Table) hash.Hash64 +pkg hash/crc64, func Update(uint64, *Table, []uint8) uint64 +pkg hash/crc64, type Table [256]uint64 +pkg hash/fnv, func New32() hash.Hash32 +pkg hash/fnv, func New32a() hash.Hash32 +pkg hash/fnv, func New64() hash.Hash64 +pkg hash/fnv, func New64a() hash.Hash64 +pkg html, func EscapeString(string) string +pkg html, func UnescapeString(string) string +pkg html/template, const ErrAmbigContext ErrorCode +pkg html/template, const ErrBadHTML ErrorCode +pkg html/template, const ErrBranchEnd ErrorCode +pkg html/template, const ErrEndContext ErrorCode +pkg html/template, const ErrNoSuchTemplate ErrorCode +pkg html/template, const ErrOutputContext ErrorCode +pkg html/template, const ErrPartialCharset ErrorCode +pkg html/template, const ErrPartialEscape ErrorCode +pkg html/template, const ErrRangeLoopReentry ErrorCode +pkg html/template, const ErrSlashAmbig ErrorCode +pkg html/template, const OK ErrorCode +pkg html/template, func HTMLEscape(io.Writer, []uint8) +pkg html/template, func HTMLEscapeString(string) string +pkg html/template, func HTMLEscaper(...interface{}) string +pkg html/template, func JSEscape(io.Writer, []uint8) +pkg html/template, func JSEscapeString(string) string +pkg html/template, func JSEscaper(...interface{}) string +pkg html/template, func Must(*Template, error) *Template +pkg html/template, func New(string) *Template +pkg html/template, func ParseFiles(...string) (*Template, error) +pkg html/template, func ParseGlob(string) (*Template, error) +pkg html/template, func URLQueryEscaper(...interface{}) string +pkg html/template, method (*Error) Error() string +pkg html/template, method (*Template) AddParseTree(string, *parse.Tree) (*Template, error) +pkg html/template, method (*Template) Clone() (*Template, error) +pkg html/template, method (*Template) Delims(string, string) *Template +pkg html/template, method (*Template) Execute(io.Writer, interface{}) error +pkg html/template, method (*Template) ExecuteTemplate(io.Writer, string, interface{}) error +pkg html/template, method (*Template) Funcs(FuncMap) *Template +pkg html/template, method (*Template) Lookup(string) *Template +pkg html/template, method (*Template) Name() string +pkg html/template, method (*Template) New(string) *Template +pkg html/template, method (*Template) Parse(string) (*Template, error) +pkg html/template, method (*Template) ParseFiles(...string) (*Template, error) +pkg html/template, method (*Template) ParseGlob(string) (*Template, error) +pkg html/template, method (*Template) Templates() []*Template +pkg html/template, type CSS string +pkg html/template, type Error struct +pkg html/template, type Error struct, Description string +pkg html/template, type Error struct, ErrorCode ErrorCode +pkg html/template, type Error struct, Line int +pkg html/template, type Error struct, Name string +pkg html/template, type ErrorCode int +pkg html/template, type FuncMap map[string]interface{} +pkg html/template, type HTML string +pkg html/template, type HTMLAttr string +pkg html/template, type JS string +pkg html/template, type JSStr string +pkg html/template, type Template struct +pkg html/template, type URL string +pkg image, const YCbCrSubsampleRatio420 YCbCrSubsampleRatio +pkg image, const YCbCrSubsampleRatio422 YCbCrSubsampleRatio +pkg image, const YCbCrSubsampleRatio444 YCbCrSubsampleRatio +pkg image, func Decode(io.Reader) (Image, string, error) +pkg image, func DecodeConfig(io.Reader) (Config, string, error) +pkg image, func NewAlpha(Rectangle) *Alpha +pkg image, func NewAlpha16(Rectangle) *Alpha16 +pkg image, func NewGray(Rectangle) *Gray +pkg image, func NewGray16(Rectangle) *Gray16 +pkg image, func NewNRGBA(Rectangle) *NRGBA +pkg image, func NewNRGBA64(Rectangle) *NRGBA64 +pkg image, func NewPaletted(Rectangle, color.Palette) *Paletted +pkg image, func NewRGBA(Rectangle) *RGBA +pkg image, func NewRGBA64(Rectangle) *RGBA64 +pkg image, func NewUniform(color.Color) *Uniform +pkg image, func NewYCbCr(Rectangle, YCbCrSubsampleRatio) *YCbCr +pkg image, func Pt(int, int) Point +pkg image, func Rect(int, int, int, int) Rectangle +pkg image, func RegisterFormat(string, string, func(io.Reader) (Image, error), func(io.Reader) (Config, error)) +pkg image, method (*Alpha) At(int, int) color.Color +pkg image, method (*Alpha) Bounds() Rectangle +pkg image, method (*Alpha) ColorModel() color.Model +pkg image, method (*Alpha) Opaque() bool +pkg image, method (*Alpha) PixOffset(int, int) int +pkg image, method (*Alpha) Set(int, int, color.Color) +pkg image, method (*Alpha) SetAlpha(int, int, color.Alpha) +pkg image, method (*Alpha) SubImage(Rectangle) Image +pkg image, method (*Alpha16) At(int, int) color.Color +pkg image, method (*Alpha16) Bounds() Rectangle +pkg image, method (*Alpha16) ColorModel() color.Model +pkg image, method (*Alpha16) Opaque() bool +pkg image, method (*Alpha16) PixOffset(int, int) int +pkg image, method (*Alpha16) Set(int, int, color.Color) +pkg image, method (*Alpha16) SetAlpha16(int, int, color.Alpha16) +pkg image, method (*Alpha16) SubImage(Rectangle) Image +pkg image, method (*Gray) At(int, int) color.Color +pkg image, method (*Gray) Bounds() Rectangle +pkg image, method (*Gray) ColorModel() color.Model +pkg image, method (*Gray) Opaque() bool +pkg image, method (*Gray) PixOffset(int, int) int +pkg image, method (*Gray) Set(int, int, color.Color) +pkg image, method (*Gray) SetGray(int, int, color.Gray) +pkg image, method (*Gray) SubImage(Rectangle) Image +pkg image, method (*Gray16) At(int, int) color.Color +pkg image, method (*Gray16) Bounds() Rectangle +pkg image, method (*Gray16) ColorModel() color.Model +pkg image, method (*Gray16) Opaque() bool +pkg image, method (*Gray16) PixOffset(int, int) int +pkg image, method (*Gray16) Set(int, int, color.Color) +pkg image, method (*Gray16) SetGray16(int, int, color.Gray16) +pkg image, method (*Gray16) SubImage(Rectangle) Image +pkg image, method (*NRGBA) At(int, int) color.Color +pkg image, method (*NRGBA) Bounds() Rectangle +pkg image, method (*NRGBA) ColorModel() color.Model +pkg image, method (*NRGBA) Opaque() bool +pkg image, method (*NRGBA) PixOffset(int, int) int +pkg image, method (*NRGBA) Set(int, int, color.Color) +pkg image, method (*NRGBA) SetNRGBA(int, int, color.NRGBA) +pkg image, method (*NRGBA) SubImage(Rectangle) Image +pkg image, method (*NRGBA64) At(int, int) color.Color +pkg image, method (*NRGBA64) Bounds() Rectangle +pkg image, method (*NRGBA64) ColorModel() color.Model +pkg image, method (*NRGBA64) Opaque() bool +pkg image, method (*NRGBA64) PixOffset(int, int) int +pkg image, method (*NRGBA64) Set(int, int, color.Color) +pkg image, method (*NRGBA64) SetNRGBA64(int, int, color.NRGBA64) +pkg image, method (*NRGBA64) SubImage(Rectangle) Image +pkg image, method (*Paletted) At(int, int) color.Color +pkg image, method (*Paletted) Bounds() Rectangle +pkg image, method (*Paletted) ColorIndexAt(int, int) uint8 +pkg image, method (*Paletted) ColorModel() color.Model +pkg image, method (*Paletted) Opaque() bool +pkg image, method (*Paletted) PixOffset(int, int) int +pkg image, method (*Paletted) Set(int, int, color.Color) +pkg image, method (*Paletted) SetColorIndex(int, int, uint8) +pkg image, method (*Paletted) SubImage(Rectangle) Image +pkg image, method (*RGBA) At(int, int) color.Color +pkg image, method (*RGBA) Bounds() Rectangle +pkg image, method (*RGBA) ColorModel() color.Model +pkg image, method (*RGBA) Opaque() bool +pkg image, method (*RGBA) PixOffset(int, int) int +pkg image, method (*RGBA) Set(int, int, color.Color) +pkg image, method (*RGBA) SetRGBA(int, int, color.RGBA) +pkg image, method (*RGBA) SubImage(Rectangle) Image +pkg image, method (*RGBA64) At(int, int) color.Color +pkg image, method (*RGBA64) Bounds() Rectangle +pkg image, method (*RGBA64) ColorModel() color.Model +pkg image, method (*RGBA64) Opaque() bool +pkg image, method (*RGBA64) PixOffset(int, int) int +pkg image, method (*RGBA64) Set(int, int, color.Color) +pkg image, method (*RGBA64) SetRGBA64(int, int, color.RGBA64) +pkg image, method (*RGBA64) SubImage(Rectangle) Image +pkg image, method (*Uniform) At(int, int) color.Color +pkg image, method (*Uniform) Bounds() Rectangle +pkg image, method (*Uniform) ColorModel() color.Model +pkg image, method (*Uniform) Convert(color.Color) color.Color +pkg image, method (*Uniform) Opaque() bool +pkg image, method (*Uniform) RGBA() (uint32, uint32, uint32, uint32) +pkg image, method (*YCbCr) At(int, int) color.Color +pkg image, method (*YCbCr) Bounds() Rectangle +pkg image, method (*YCbCr) COffset(int, int) int +pkg image, method (*YCbCr) ColorModel() color.Model +pkg image, method (*YCbCr) Opaque() bool +pkg image, method (*YCbCr) SubImage(Rectangle) Image +pkg image, method (*YCbCr) YOffset(int, int) int +pkg image, method (Point) Add(Point) Point +pkg image, method (Point) Div(int) Point +pkg image, method (Point) Eq(Point) bool +pkg image, method (Point) In(Rectangle) bool +pkg image, method (Point) Mod(Rectangle) Point +pkg image, method (Point) Mul(int) Point +pkg image, method (Point) String() string +pkg image, method (Point) Sub(Point) Point +pkg image, method (Rectangle) Add(Point) Rectangle +pkg image, method (Rectangle) Canon() Rectangle +pkg image, method (Rectangle) Dx() int +pkg image, method (Rectangle) Dy() int +pkg image, method (Rectangle) Empty() bool +pkg image, method (Rectangle) Eq(Rectangle) bool +pkg image, method (Rectangle) In(Rectangle) bool +pkg image, method (Rectangle) Inset(int) Rectangle +pkg image, method (Rectangle) Intersect(Rectangle) Rectangle +pkg image, method (Rectangle) Overlaps(Rectangle) bool +pkg image, method (Rectangle) Size() Point +pkg image, method (Rectangle) String() string +pkg image, method (Rectangle) Sub(Point) Rectangle +pkg image, method (Rectangle) Union(Rectangle) Rectangle +pkg image, method (YCbCrSubsampleRatio) String() string +pkg image, type Alpha struct +pkg image, type Alpha struct, Pix []uint8 +pkg image, type Alpha struct, Rect Rectangle +pkg image, type Alpha struct, Stride int +pkg image, type Alpha16 struct +pkg image, type Alpha16 struct, Pix []uint8 +pkg image, type Alpha16 struct, Rect Rectangle +pkg image, type Alpha16 struct, Stride int +pkg image, type Config struct +pkg image, type Config struct, ColorModel color.Model +pkg image, type Config struct, Height int +pkg image, type Config struct, Width int +pkg image, type Gray struct +pkg image, type Gray struct, Pix []uint8 +pkg image, type Gray struct, Rect Rectangle +pkg image, type Gray struct, Stride int +pkg image, type Gray16 struct +pkg image, type Gray16 struct, Pix []uint8 +pkg image, type Gray16 struct, Rect Rectangle +pkg image, type Gray16 struct, Stride int +pkg image, type Image interface { At, Bounds, ColorModel } +pkg image, type Image interface, At(int, int) color.Color +pkg image, type Image interface, Bounds() Rectangle +pkg image, type Image interface, ColorModel() color.Model +pkg image, type NRGBA struct +pkg image, type NRGBA struct, Pix []uint8 +pkg image, type NRGBA struct, Rect Rectangle +pkg image, type NRGBA struct, Stride int +pkg image, type NRGBA64 struct +pkg image, type NRGBA64 struct, Pix []uint8 +pkg image, type NRGBA64 struct, Rect Rectangle +pkg image, type NRGBA64 struct, Stride int +pkg image, type Paletted struct +pkg image, type Paletted struct, Palette color.Palette +pkg image, type Paletted struct, Pix []uint8 +pkg image, type Paletted struct, Rect Rectangle +pkg image, type Paletted struct, Stride int +pkg image, type PalettedImage interface { At, Bounds, ColorIndexAt, ColorModel } +pkg image, type PalettedImage interface, At(int, int) color.Color +pkg image, type PalettedImage interface, Bounds() Rectangle +pkg image, type PalettedImage interface, ColorIndexAt(int, int) uint8 +pkg image, type PalettedImage interface, ColorModel() color.Model +pkg image, type Point struct +pkg image, type Point struct, X int +pkg image, type Point struct, Y int +pkg image, type RGBA struct +pkg image, type RGBA struct, Pix []uint8 +pkg image, type RGBA struct, Rect Rectangle +pkg image, type RGBA struct, Stride int +pkg image, type RGBA64 struct +pkg image, type RGBA64 struct, Pix []uint8 +pkg image, type RGBA64 struct, Rect Rectangle +pkg image, type RGBA64 struct, Stride int +pkg image, type Rectangle struct +pkg image, type Rectangle struct, Max Point +pkg image, type Rectangle struct, Min Point +pkg image, type Uniform struct +pkg image, type Uniform struct, C color.Color +pkg image, type YCbCr struct +pkg image, type YCbCr struct, CStride int +pkg image, type YCbCr struct, Cb []uint8 +pkg image, type YCbCr struct, Cr []uint8 +pkg image, type YCbCr struct, Rect Rectangle +pkg image, type YCbCr struct, SubsampleRatio YCbCrSubsampleRatio +pkg image, type YCbCr struct, Y []uint8 +pkg image, type YCbCr struct, YStride int +pkg image, type YCbCrSubsampleRatio int +pkg image, var Black *Uniform +pkg image, var ErrFormat error +pkg image, var Opaque *Uniform +pkg image, var Transparent *Uniform +pkg image, var White *Uniform +pkg image, var ZP Point +pkg image, var ZR Rectangle +pkg image/color, func ModelFunc(func(Color) Color) Model +pkg image/color, func RGBToYCbCr(uint8, uint8, uint8) (uint8, uint8, uint8) +pkg image/color, func YCbCrToRGB(uint8, uint8, uint8) (uint8, uint8, uint8) +pkg image/color, method (Alpha) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (Alpha16) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (Gray) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (Gray16) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (NRGBA) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (NRGBA64) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (Palette) Convert(Color) Color +pkg image/color, method (Palette) Index(Color) int +pkg image/color, method (RGBA) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (RGBA64) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, method (YCbCr) RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, type Alpha struct +pkg image/color, type Alpha struct, A uint8 +pkg image/color, type Alpha16 struct +pkg image/color, type Alpha16 struct, A uint16 +pkg image/color, type Color interface { RGBA } +pkg image/color, type Color interface, RGBA() (uint32, uint32, uint32, uint32) +pkg image/color, type Gray struct +pkg image/color, type Gray struct, Y uint8 +pkg image/color, type Gray16 struct +pkg image/color, type Gray16 struct, Y uint16 +pkg image/color, type Model interface { Convert } +pkg image/color, type Model interface, Convert(Color) Color +pkg image/color, type NRGBA struct +pkg image/color, type NRGBA struct, A uint8 +pkg image/color, type NRGBA struct, B uint8 +pkg image/color, type NRGBA struct, G uint8 +pkg image/color, type NRGBA struct, R uint8 +pkg image/color, type NRGBA64 struct +pkg image/color, type NRGBA64 struct, A uint16 +pkg image/color, type NRGBA64 struct, B uint16 +pkg image/color, type NRGBA64 struct, G uint16 +pkg image/color, type NRGBA64 struct, R uint16 +pkg image/color, type Palette []Color +pkg image/color, type RGBA struct +pkg image/color, type RGBA struct, A uint8 +pkg image/color, type RGBA struct, B uint8 +pkg image/color, type RGBA struct, G uint8 +pkg image/color, type RGBA struct, R uint8 +pkg image/color, type RGBA64 struct +pkg image/color, type RGBA64 struct, A uint16 +pkg image/color, type RGBA64 struct, B uint16 +pkg image/color, type RGBA64 struct, G uint16 +pkg image/color, type RGBA64 struct, R uint16 +pkg image/color, type YCbCr struct +pkg image/color, type YCbCr struct, Cb uint8 +pkg image/color, type YCbCr struct, Cr uint8 +pkg image/color, type YCbCr struct, Y uint8 +pkg image/color, var Alpha16Model Model +pkg image/color, var AlphaModel Model +pkg image/color, var Black Gray16 +pkg image/color, var Gray16Model Model +pkg image/color, var GrayModel Model +pkg image/color, var NRGBA64Model Model +pkg image/color, var NRGBAModel Model +pkg image/color, var Opaque Alpha16 +pkg image/color, var RGBA64Model Model +pkg image/color, var RGBAModel Model +pkg image/color, var Transparent Alpha16 +pkg image/color, var White Gray16 +pkg image/color, var YCbCrModel Model +pkg image/draw, const Over Op +pkg image/draw, const Src Op +pkg image/draw, func Draw(Image, image.Rectangle, image.Image, image.Point, Op) +pkg image/draw, func DrawMask(Image, image.Rectangle, image.Image, image.Point, image.Image, image.Point, Op) +pkg image/draw, type Image interface { At, Bounds, ColorModel, Set } +pkg image/draw, type Image interface, At(int, int) color.Color +pkg image/draw, type Image interface, Bounds() image.Rectangle +pkg image/draw, type Image interface, ColorModel() color.Model +pkg image/draw, type Image interface, Set(int, int, color.Color) +pkg image/draw, type Op int +pkg image/gif, func Decode(io.Reader) (image.Image, error) +pkg image/gif, func DecodeAll(io.Reader) (*GIF, error) +pkg image/gif, func DecodeConfig(io.Reader) (image.Config, error) +pkg image/gif, type GIF struct +pkg image/gif, type GIF struct, Delay []int +pkg image/gif, type GIF struct, Image []*image.Paletted +pkg image/gif, type GIF struct, LoopCount int +pkg image/jpeg, const DefaultQuality ideal-int +pkg image/jpeg, func Decode(io.Reader) (image.Image, error) +pkg image/jpeg, func DecodeConfig(io.Reader) (image.Config, error) +pkg image/jpeg, func Encode(io.Writer, image.Image, *Options) error +pkg image/jpeg, method (FormatError) Error() string +pkg image/jpeg, method (UnsupportedError) Error() string +pkg image/jpeg, type FormatError string +pkg image/jpeg, type Options struct +pkg image/jpeg, type Options struct, Quality int +pkg image/jpeg, type Reader interface { Read, ReadByte } +pkg image/jpeg, type Reader interface, Read([]uint8) (int, error) +pkg image/jpeg, type Reader interface, ReadByte() (uint8, error) +pkg image/jpeg, type UnsupportedError string +pkg image/png, func Decode(io.Reader) (image.Image, error) +pkg image/png, func DecodeConfig(io.Reader) (image.Config, error) +pkg image/png, func Encode(io.Writer, image.Image) error +pkg image/png, method (FormatError) Error() string +pkg image/png, method (UnsupportedError) Error() string +pkg image/png, type FormatError string +pkg image/png, type UnsupportedError string +pkg index/suffixarray, func New([]uint8) *Index +pkg index/suffixarray, method (*Index) Bytes() []uint8 +pkg index/suffixarray, method (*Index) FindAllIndex(*regexp.Regexp, int) [][]int +pkg index/suffixarray, method (*Index) Lookup([]uint8, int) []int +pkg index/suffixarray, method (*Index) Read(io.Reader) error +pkg index/suffixarray, method (*Index) Write(io.Writer) error +pkg index/suffixarray, type Index struct +pkg io, func Copy(Writer, Reader) (int64, error) +pkg io, func CopyN(Writer, Reader, int64) (int64, error) +pkg io, func LimitReader(Reader, int64) Reader +pkg io, func MultiReader(...Reader) Reader +pkg io, func MultiWriter(...Writer) Writer +pkg io, func NewSectionReader(ReaderAt, int64, int64) *SectionReader +pkg io, func Pipe() (*PipeReader, *PipeWriter) +pkg io, func ReadAtLeast(Reader, []uint8, int) (int, error) +pkg io, func ReadFull(Reader, []uint8) (int, error) +pkg io, func TeeReader(Reader, Writer) Reader +pkg io, func WriteString(Writer, string) (int, error) +pkg io, method (*LimitedReader) Read([]uint8) (int, error) +pkg io, method (*PipeReader) Close() error +pkg io, method (*PipeReader) CloseWithError(error) error +pkg io, method (*PipeReader) Read([]uint8) (int, error) +pkg io, method (*PipeWriter) Close() error +pkg io, method (*PipeWriter) CloseWithError(error) error +pkg io, method (*PipeWriter) Write([]uint8) (int, error) +pkg io, method (*SectionReader) Read([]uint8) (int, error) +pkg io, method (*SectionReader) ReadAt([]uint8, int64) (int, error) +pkg io, method (*SectionReader) Seek(int64, int) (int64, error) +pkg io, method (*SectionReader) Size() int64 +pkg io, type ByteReader interface { ReadByte } +pkg io, type ByteReader interface, ReadByte() (uint8, error) +pkg io, type ByteScanner interface { ReadByte, UnreadByte } +pkg io, type ByteScanner interface, ReadByte() (uint8, error) +pkg io, type ByteScanner interface, UnreadByte() error +pkg io, type Closer interface { Close } +pkg io, type Closer interface, Close() error +pkg io, type LimitedReader struct +pkg io, type LimitedReader struct, N int64 +pkg io, type LimitedReader struct, R Reader +pkg io, type PipeReader struct +pkg io, type PipeWriter struct +pkg io, type ReadCloser interface { Close, Read } +pkg io, type ReadCloser interface, Close() error +pkg io, type ReadCloser interface, Read([]uint8) (int, error) +pkg io, type ReadSeeker interface { Read, Seek } +pkg io, type ReadSeeker interface, Read([]uint8) (int, error) +pkg io, type ReadSeeker interface, Seek(int64, int) (int64, error) +pkg io, type ReadWriteCloser interface { Close, Read, Write } +pkg io, type ReadWriteCloser interface, Close() error +pkg io, type ReadWriteCloser interface, Read([]uint8) (int, error) +pkg io, type ReadWriteCloser interface, Write([]uint8) (int, error) +pkg io, type ReadWriteSeeker interface { Read, Seek, Write } +pkg io, type ReadWriteSeeker interface, Read([]uint8) (int, error) +pkg io, type ReadWriteSeeker interface, Seek(int64, int) (int64, error) +pkg io, type ReadWriteSeeker interface, Write([]uint8) (int, error) +pkg io, type ReadWriter interface { Read, Write } +pkg io, type ReadWriter interface, Read([]uint8) (int, error) +pkg io, type ReadWriter interface, Write([]uint8) (int, error) +pkg io, type Reader interface { Read } +pkg io, type Reader interface, Read([]uint8) (int, error) +pkg io, type ReaderAt interface { ReadAt } +pkg io, type ReaderAt interface, ReadAt([]uint8, int64) (int, error) +pkg io, type ReaderFrom interface { ReadFrom } +pkg io, type ReaderFrom interface, ReadFrom(Reader) (int64, error) +pkg io, type RuneReader interface { ReadRune } +pkg io, type RuneReader interface, ReadRune() (int32, int, error) +pkg io, type RuneScanner interface { ReadRune, UnreadRune } +pkg io, type RuneScanner interface, ReadRune() (int32, int, error) +pkg io, type RuneScanner interface, UnreadRune() error +pkg io, type SectionReader struct +pkg io, type Seeker interface { Seek } +pkg io, type Seeker interface, Seek(int64, int) (int64, error) +pkg io, type WriteCloser interface { Close, Write } +pkg io, type WriteCloser interface, Close() error +pkg io, type WriteCloser interface, Write([]uint8) (int, error) +pkg io, type WriteSeeker interface { Seek, Write } +pkg io, type WriteSeeker interface, Seek(int64, int) (int64, error) +pkg io, type WriteSeeker interface, Write([]uint8) (int, error) +pkg io, type Writer interface { Write } +pkg io, type Writer interface, Write([]uint8) (int, error) +pkg io, type WriterAt interface { WriteAt } +pkg io, type WriterAt interface, WriteAt([]uint8, int64) (int, error) +pkg io, type WriterTo interface { WriteTo } +pkg io, type WriterTo interface, WriteTo(Writer) (int64, error) +pkg io, var EOF error +pkg io, var ErrClosedPipe error +pkg io, var ErrShortBuffer error +pkg io, var ErrShortWrite error +pkg io, var ErrUnexpectedEOF error +pkg io/ioutil, func NopCloser(io.Reader) io.ReadCloser +pkg io/ioutil, func ReadAll(io.Reader) ([]uint8, error) +pkg io/ioutil, func ReadDir(string) ([]os.FileInfo, error) +pkg io/ioutil, func ReadFile(string) ([]uint8, error) +pkg io/ioutil, func TempDir(string, string) (string, error) +pkg io/ioutil, func TempFile(string, string) (*os.File, error) +pkg io/ioutil, func WriteFile(string, []uint8, os.FileMode) error +pkg io/ioutil, var Discard io.Writer +pkg log, const Ldate ideal-int +pkg log, const Llongfile ideal-int +pkg log, const Lmicroseconds ideal-int +pkg log, const Lshortfile ideal-int +pkg log, const LstdFlags ideal-int +pkg log, const Ltime ideal-int +pkg log, func Fatal(...interface{}) +pkg log, func Fatalf(string, ...interface{}) +pkg log, func Fatalln(...interface{}) +pkg log, func Flags() int +pkg log, func New(io.Writer, string, int) *Logger +pkg log, func Panic(...interface{}) +pkg log, func Panicf(string, ...interface{}) +pkg log, func Panicln(...interface{}) +pkg log, func Prefix() string +pkg log, func Print(...interface{}) +pkg log, func Printf(string, ...interface{}) +pkg log, func Println(...interface{}) +pkg log, func SetFlags(int) +pkg log, func SetOutput(io.Writer) +pkg log, func SetPrefix(string) +pkg log, method (*Logger) Fatal(...interface{}) +pkg log, method (*Logger) Fatalf(string, ...interface{}) +pkg log, method (*Logger) Fatalln(...interface{}) +pkg log, method (*Logger) Flags() int +pkg log, method (*Logger) Output(int, string) error +pkg log, method (*Logger) Panic(...interface{}) +pkg log, method (*Logger) Panicf(string, ...interface{}) +pkg log, method (*Logger) Panicln(...interface{}) +pkg log, method (*Logger) Prefix() string +pkg log, method (*Logger) Print(...interface{}) +pkg log, method (*Logger) Printf(string, ...interface{}) +pkg log, method (*Logger) Println(...interface{}) +pkg log, method (*Logger) SetFlags(int) +pkg log, method (*Logger) SetPrefix(string) +pkg log, type Logger struct +pkg log/syslog (darwin-386), const LOG_ALERT Priority +pkg log/syslog (darwin-386), const LOG_CRIT Priority +pkg log/syslog (darwin-386), const LOG_DEBUG Priority +pkg log/syslog (darwin-386), const LOG_EMERG Priority +pkg log/syslog (darwin-386), const LOG_ERR Priority +pkg log/syslog (darwin-386), const LOG_INFO Priority +pkg log/syslog (darwin-386), const LOG_NOTICE Priority +pkg log/syslog (darwin-386), const LOG_WARNING Priority +pkg log/syslog (darwin-386), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-386), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-386), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-386), method (*Writer) Alert(string) error +pkg log/syslog (darwin-386), method (*Writer) Close() error +pkg log/syslog (darwin-386), method (*Writer) Crit(string) error +pkg log/syslog (darwin-386), method (*Writer) Debug(string) error +pkg log/syslog (darwin-386), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-386), method (*Writer) Err(string) error +pkg log/syslog (darwin-386), method (*Writer) Info(string) error +pkg log/syslog (darwin-386), method (*Writer) Notice(string) error +pkg log/syslog (darwin-386), method (*Writer) Warning(string) error +pkg log/syslog (darwin-386), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-386), type Priority int +pkg log/syslog (darwin-386), type Writer struct +pkg log/syslog (darwin-386-cgo), const LOG_ALERT Priority +pkg log/syslog (darwin-386-cgo), const LOG_CRIT Priority +pkg log/syslog (darwin-386-cgo), const LOG_DEBUG Priority +pkg log/syslog (darwin-386-cgo), const LOG_EMERG Priority +pkg log/syslog (darwin-386-cgo), const LOG_ERR Priority +pkg log/syslog (darwin-386-cgo), const LOG_INFO Priority +pkg log/syslog (darwin-386-cgo), const LOG_NOTICE Priority +pkg log/syslog (darwin-386-cgo), const LOG_WARNING Priority +pkg log/syslog (darwin-386-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-386-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-386-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-386-cgo), method (*Writer) Alert(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Close() error +pkg log/syslog (darwin-386-cgo), method (*Writer) Crit(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Debug(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Err(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Info(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Notice(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Warning(string) error +pkg log/syslog (darwin-386-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-386-cgo), type Priority int +pkg log/syslog (darwin-386-cgo), type Writer struct +pkg log/syslog (darwin-amd64), const LOG_ALERT Priority +pkg log/syslog (darwin-amd64), const LOG_CRIT Priority +pkg log/syslog (darwin-amd64), const LOG_DEBUG Priority +pkg log/syslog (darwin-amd64), const LOG_EMERG Priority +pkg log/syslog (darwin-amd64), const LOG_ERR Priority +pkg log/syslog (darwin-amd64), const LOG_INFO Priority +pkg log/syslog (darwin-amd64), const LOG_NOTICE Priority +pkg log/syslog (darwin-amd64), const LOG_WARNING Priority +pkg log/syslog (darwin-amd64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-amd64), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-amd64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-amd64), method (*Writer) Alert(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Close() error +pkg log/syslog (darwin-amd64), method (*Writer) Crit(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Debug(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Err(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Info(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Notice(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Warning(string) error +pkg log/syslog (darwin-amd64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-amd64), type Priority int +pkg log/syslog (darwin-amd64), type Writer struct +pkg log/syslog (darwin-amd64-cgo), const LOG_ALERT Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_CRIT Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_DEBUG Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_EMERG Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_ERR Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_INFO Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_NOTICE Priority +pkg log/syslog (darwin-amd64-cgo), const LOG_WARNING Priority +pkg log/syslog (darwin-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (darwin-amd64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (darwin-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Close() error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Err(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Info(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (darwin-amd64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (darwin-amd64-cgo), type Priority int +pkg log/syslog (darwin-amd64-cgo), type Writer struct +pkg log/syslog (freebsd-386), const LOG_ALERT Priority +pkg log/syslog (freebsd-386), const LOG_CRIT Priority +pkg log/syslog (freebsd-386), const LOG_DEBUG Priority +pkg log/syslog (freebsd-386), const LOG_EMERG Priority +pkg log/syslog (freebsd-386), const LOG_ERR Priority +pkg log/syslog (freebsd-386), const LOG_INFO Priority +pkg log/syslog (freebsd-386), const LOG_NOTICE Priority +pkg log/syslog (freebsd-386), const LOG_WARNING Priority +pkg log/syslog (freebsd-386), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-386), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-386), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-386), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-386), method (*Writer) Close() error +pkg log/syslog (freebsd-386), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-386), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-386), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-386), method (*Writer) Err(string) error +pkg log/syslog (freebsd-386), method (*Writer) Info(string) error +pkg log/syslog (freebsd-386), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-386), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-386), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-386), type Priority int +pkg log/syslog (freebsd-386), type Writer struct +pkg log/syslog (freebsd-amd64), const LOG_ALERT Priority +pkg log/syslog (freebsd-amd64), const LOG_CRIT Priority +pkg log/syslog (freebsd-amd64), const LOG_DEBUG Priority +pkg log/syslog (freebsd-amd64), const LOG_EMERG Priority +pkg log/syslog (freebsd-amd64), const LOG_ERR Priority +pkg log/syslog (freebsd-amd64), const LOG_INFO Priority +pkg log/syslog (freebsd-amd64), const LOG_NOTICE Priority +pkg log/syslog (freebsd-amd64), const LOG_WARNING Priority +pkg log/syslog (freebsd-amd64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (freebsd-amd64), func New(Priority, string) (*Writer, error) +pkg log/syslog (freebsd-amd64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (freebsd-amd64), method (*Writer) Alert(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Close() error +pkg log/syslog (freebsd-amd64), method (*Writer) Crit(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Debug(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Emerg(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Err(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Info(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Notice(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Warning(string) error +pkg log/syslog (freebsd-amd64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (freebsd-amd64), type Priority int +pkg log/syslog (freebsd-amd64), type Writer struct +pkg log/syslog (linux-386), const LOG_ALERT Priority +pkg log/syslog (linux-386), const LOG_CRIT Priority +pkg log/syslog (linux-386), const LOG_DEBUG Priority +pkg log/syslog (linux-386), const LOG_EMERG Priority +pkg log/syslog (linux-386), const LOG_ERR Priority +pkg log/syslog (linux-386), const LOG_INFO Priority +pkg log/syslog (linux-386), const LOG_NOTICE Priority +pkg log/syslog (linux-386), const LOG_WARNING Priority +pkg log/syslog (linux-386), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-386), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-386), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-386), method (*Writer) Alert(string) error +pkg log/syslog (linux-386), method (*Writer) Close() error +pkg log/syslog (linux-386), method (*Writer) Crit(string) error +pkg log/syslog (linux-386), method (*Writer) Debug(string) error +pkg log/syslog (linux-386), method (*Writer) Emerg(string) error +pkg log/syslog (linux-386), method (*Writer) Err(string) error +pkg log/syslog (linux-386), method (*Writer) Info(string) error +pkg log/syslog (linux-386), method (*Writer) Notice(string) error +pkg log/syslog (linux-386), method (*Writer) Warning(string) error +pkg log/syslog (linux-386), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-386), type Priority int +pkg log/syslog (linux-386), type Writer struct +pkg log/syslog (linux-386-cgo), const LOG_ALERT Priority +pkg log/syslog (linux-386-cgo), const LOG_CRIT Priority +pkg log/syslog (linux-386-cgo), const LOG_DEBUG Priority +pkg log/syslog (linux-386-cgo), const LOG_EMERG Priority +pkg log/syslog (linux-386-cgo), const LOG_ERR Priority +pkg log/syslog (linux-386-cgo), const LOG_INFO Priority +pkg log/syslog (linux-386-cgo), const LOG_NOTICE Priority +pkg log/syslog (linux-386-cgo), const LOG_WARNING Priority +pkg log/syslog (linux-386-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-386-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-386-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-386-cgo), method (*Writer) Alert(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Close() error +pkg log/syslog (linux-386-cgo), method (*Writer) Crit(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Debug(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Err(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Info(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Notice(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Warning(string) error +pkg log/syslog (linux-386-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-386-cgo), type Priority int +pkg log/syslog (linux-386-cgo), type Writer struct +pkg log/syslog (linux-amd64), const LOG_ALERT Priority +pkg log/syslog (linux-amd64), const LOG_CRIT Priority +pkg log/syslog (linux-amd64), const LOG_DEBUG Priority +pkg log/syslog (linux-amd64), const LOG_EMERG Priority +pkg log/syslog (linux-amd64), const LOG_ERR Priority +pkg log/syslog (linux-amd64), const LOG_INFO Priority +pkg log/syslog (linux-amd64), const LOG_NOTICE Priority +pkg log/syslog (linux-amd64), const LOG_WARNING Priority +pkg log/syslog (linux-amd64), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-amd64), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-amd64), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-amd64), method (*Writer) Alert(string) error +pkg log/syslog (linux-amd64), method (*Writer) Close() error +pkg log/syslog (linux-amd64), method (*Writer) Crit(string) error +pkg log/syslog (linux-amd64), method (*Writer) Debug(string) error +pkg log/syslog (linux-amd64), method (*Writer) Emerg(string) error +pkg log/syslog (linux-amd64), method (*Writer) Err(string) error +pkg log/syslog (linux-amd64), method (*Writer) Info(string) error +pkg log/syslog (linux-amd64), method (*Writer) Notice(string) error +pkg log/syslog (linux-amd64), method (*Writer) Warning(string) error +pkg log/syslog (linux-amd64), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-amd64), type Priority int +pkg log/syslog (linux-amd64), type Writer struct +pkg log/syslog (linux-amd64-cgo), const LOG_ALERT Priority +pkg log/syslog (linux-amd64-cgo), const LOG_CRIT Priority +pkg log/syslog (linux-amd64-cgo), const LOG_DEBUG Priority +pkg log/syslog (linux-amd64-cgo), const LOG_EMERG Priority +pkg log/syslog (linux-amd64-cgo), const LOG_ERR Priority +pkg log/syslog (linux-amd64-cgo), const LOG_INFO Priority +pkg log/syslog (linux-amd64-cgo), const LOG_NOTICE Priority +pkg log/syslog (linux-amd64-cgo), const LOG_WARNING Priority +pkg log/syslog (linux-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-amd64-cgo), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-amd64-cgo), method (*Writer) Alert(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Close() error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Crit(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Debug(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Emerg(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Err(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Info(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Notice(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Warning(string) error +pkg log/syslog (linux-amd64-cgo), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-amd64-cgo), type Priority int +pkg log/syslog (linux-amd64-cgo), type Writer struct +pkg log/syslog (linux-arm), const LOG_ALERT Priority +pkg log/syslog (linux-arm), const LOG_CRIT Priority +pkg log/syslog (linux-arm), const LOG_DEBUG Priority +pkg log/syslog (linux-arm), const LOG_EMERG Priority +pkg log/syslog (linux-arm), const LOG_ERR Priority +pkg log/syslog (linux-arm), const LOG_INFO Priority +pkg log/syslog (linux-arm), const LOG_NOTICE Priority +pkg log/syslog (linux-arm), const LOG_WARNING Priority +pkg log/syslog (linux-arm), func Dial(string, string, Priority, string) (*Writer, error) +pkg log/syslog (linux-arm), func New(Priority, string) (*Writer, error) +pkg log/syslog (linux-arm), func NewLogger(Priority, int) (*log.Logger, error) +pkg log/syslog (linux-arm), method (*Writer) Alert(string) error +pkg log/syslog (linux-arm), method (*Writer) Close() error +pkg log/syslog (linux-arm), method (*Writer) Crit(string) error +pkg log/syslog (linux-arm), method (*Writer) Debug(string) error +pkg log/syslog (linux-arm), method (*Writer) Emerg(string) error +pkg log/syslog (linux-arm), method (*Writer) Err(string) error +pkg log/syslog (linux-arm), method (*Writer) Info(string) error +pkg log/syslog (linux-arm), method (*Writer) Notice(string) error +pkg log/syslog (linux-arm), method (*Writer) Warning(string) error +pkg log/syslog (linux-arm), method (*Writer) Write([]uint8) (int, error) +pkg log/syslog (linux-arm), type Priority int +pkg log/syslog (linux-arm), type Writer struct +pkg math, const E ideal-float +pkg math, const Ln10 ideal-float +pkg math, const Ln2 ideal-float +pkg math, const Log10E ideal-float +pkg math, const Log2E ideal-float +pkg math, const MaxFloat32 ideal-float +pkg math, const MaxFloat64 ideal-float +pkg math, const MaxInt16 ideal-int +pkg math, const MaxInt32 ideal-int +pkg math, const MaxInt64 ideal-int +pkg math, const MaxInt8 ideal-int +pkg math, const MaxUint16 ideal-int +pkg math, const MaxUint32 ideal-int +pkg math, const MaxUint64 ideal-int +pkg math, const MaxUint8 ideal-int +pkg math, const MinInt16 ideal-int +pkg math, const MinInt32 ideal-int +pkg math, const MinInt64 ideal-int +pkg math, const MinInt8 ideal-int +pkg math, const Phi ideal-float +pkg math, const Pi ideal-float +pkg math, const SmallestNonzeroFloat32 ideal-float +pkg math, const SmallestNonzeroFloat64 ideal-float +pkg math, const Sqrt2 ideal-float +pkg math, const SqrtE ideal-float +pkg math, const SqrtPhi ideal-float +pkg math, const SqrtPi ideal-float +pkg math, func Abs(float64) float64 +pkg math, func Acos(float64) float64 +pkg math, func Acosh(float64) float64 +pkg math, func Asin(float64) float64 +pkg math, func Asinh(float64) float64 +pkg math, func Atan(float64) float64 +pkg math, func Atan2(float64, float64) float64 +pkg math, func Atanh(float64) float64 +pkg math, func Cbrt(float64) float64 +pkg math, func Ceil(float64) float64 +pkg math, func Copysign(float64, float64) float64 +pkg math, func Cos(float64) float64 +pkg math, func Cosh(float64) float64 +pkg math, func Dim(float64, float64) float64 +pkg math, func Erf(float64) float64 +pkg math, func Erfc(float64) float64 +pkg math, func Exp(float64) float64 +pkg math, func Exp2(float64) float64 +pkg math, func Expm1(float64) float64 +pkg math, func Float32bits(float32) uint32 +pkg math, func Float32frombits(uint32) float32 +pkg math, func Float64bits(float64) uint64 +pkg math, func Float64frombits(uint64) float64 +pkg math, func Floor(float64) float64 +pkg math, func Frexp(float64) (float64, int) +pkg math, func Gamma(float64) float64 +pkg math, func Hypot(float64, float64) float64 +pkg math, func Ilogb(float64) int +pkg math, func Inf(int) float64 +pkg math, func IsInf(float64, int) bool +pkg math, func IsNaN(float64) bool +pkg math, func J0(float64) float64 +pkg math, func J1(float64) float64 +pkg math, func Jn(int, float64) float64 +pkg math, func Ldexp(float64, int) float64 +pkg math, func Lgamma(float64) (float64, int) +pkg math, func Log(float64) float64 +pkg math, func Log10(float64) float64 +pkg math, func Log1p(float64) float64 +pkg math, func Log2(float64) float64 +pkg math, func Logb(float64) float64 +pkg math, func Max(float64, float64) float64 +pkg math, func Min(float64, float64) float64 +pkg math, func Mod(float64, float64) float64 +pkg math, func Modf(float64) (float64, float64) +pkg math, func NaN() float64 +pkg math, func Nextafter(float64, float64) float64 +pkg math, func Pow(float64, float64) float64 +pkg math, func Pow10(int) float64 +pkg math, func Remainder(float64, float64) float64 +pkg math, func Signbit(float64) bool +pkg math, func Sin(float64) float64 +pkg math, func Sincos(float64) (float64, float64) +pkg math, func Sinh(float64) float64 +pkg math, func Sqrt(float64) float64 +pkg math, func Tan(float64) float64 +pkg math, func Tanh(float64) float64 +pkg math, func Trunc(float64) float64 +pkg math, func Y0(float64) float64 +pkg math, func Y1(float64) float64 +pkg math, func Yn(int, float64) float64 +pkg math/big, const MaxBase ideal-char +pkg math/big, func NewInt(int64) *Int +pkg math/big, func NewRat(int64, int64) *Rat +pkg math/big, method (*Int) Abs(*Int) *Int +pkg math/big, method (*Int) Add(*Int, *Int) *Int +pkg math/big, method (*Int) And(*Int, *Int) *Int +pkg math/big, method (*Int) AndNot(*Int, *Int) *Int +pkg math/big, method (*Int) Binomial(int64, int64) *Int +pkg math/big, method (*Int) Bit(int) uint +pkg math/big, method (*Int) BitLen() int +pkg math/big, method (*Int) Bits() []Word +pkg math/big, method (*Int) Bytes() []uint8 +pkg math/big, method (*Int) Cmp(*Int) int +pkg math/big, method (*Int) Div(*Int, *Int) *Int +pkg math/big, method (*Int) DivMod(*Int, *Int, *Int) (*Int, *Int) +pkg math/big, method (*Int) Exp(*Int, *Int, *Int) *Int +pkg math/big, method (*Int) Format(fmt.State, int32) +pkg math/big, method (*Int) GCD(*Int, *Int, *Int, *Int) *Int +pkg math/big, method (*Int) GobDecode([]uint8) error +pkg math/big, method (*Int) GobEncode() ([]uint8, error) +pkg math/big, method (*Int) Int64() int64 +pkg math/big, method (*Int) Lsh(*Int, uint) *Int +pkg math/big, method (*Int) Mod(*Int, *Int) *Int +pkg math/big, method (*Int) ModInverse(*Int, *Int) *Int +pkg math/big, method (*Int) Mul(*Int, *Int) *Int +pkg math/big, method (*Int) MulRange(int64, int64) *Int +pkg math/big, method (*Int) Neg(*Int) *Int +pkg math/big, method (*Int) Not(*Int) *Int +pkg math/big, method (*Int) Or(*Int, *Int) *Int +pkg math/big, method (*Int) ProbablyPrime(int) bool +pkg math/big, method (*Int) Quo(*Int, *Int) *Int +pkg math/big, method (*Int) QuoRem(*Int, *Int, *Int) (*Int, *Int) +pkg math/big, method (*Int) Rand(*rand.Rand, *Int) *Int +pkg math/big, method (*Int) Rem(*Int, *Int) *Int +pkg math/big, method (*Int) Rsh(*Int, uint) *Int +pkg math/big, method (*Int) Scan(fmt.ScanState, int32) error +pkg math/big, method (*Int) Set(*Int) *Int +pkg math/big, method (*Int) SetBit(*Int, int, uint) *Int +pkg math/big, method (*Int) SetBits([]Word) *Int +pkg math/big, method (*Int) SetBytes([]uint8) *Int +pkg math/big, method (*Int) SetInt64(int64) *Int +pkg math/big, method (*Int) SetString(string, int) (*Int, bool) +pkg math/big, method (*Int) Sign() int +pkg math/big, method (*Int) String() string +pkg math/big, method (*Int) Sub(*Int, *Int) *Int +pkg math/big, method (*Int) Xor(*Int, *Int) *Int +pkg math/big, method (*Rat) Abs(*Rat) *Rat +pkg math/big, method (*Rat) Add(*Rat, *Rat) *Rat +pkg math/big, method (*Rat) Cmp(*Rat) int +pkg math/big, method (*Rat) Denom() *Int +pkg math/big, method (*Rat) FloatString(int) string +pkg math/big, method (*Rat) GobDecode([]uint8) error +pkg math/big, method (*Rat) GobEncode() ([]uint8, error) +pkg math/big, method (*Rat) Inv(*Rat) *Rat +pkg math/big, method (*Rat) IsInt() bool +pkg math/big, method (*Rat) Mul(*Rat, *Rat) *Rat +pkg math/big, method (*Rat) Neg(*Rat) *Rat +pkg math/big, method (*Rat) Num() *Int +pkg math/big, method (*Rat) Quo(*Rat, *Rat) *Rat +pkg math/big, method (*Rat) RatString() string +pkg math/big, method (*Rat) Scan(fmt.ScanState, int32) error +pkg math/big, method (*Rat) Set(*Rat) *Rat +pkg math/big, method (*Rat) SetFrac(*Int, *Int) *Rat +pkg math/big, method (*Rat) SetFrac64(int64, int64) *Rat +pkg math/big, method (*Rat) SetInt(*Int) *Rat +pkg math/big, method (*Rat) SetInt64(int64) *Rat +pkg math/big, method (*Rat) SetString(string) (*Rat, bool) +pkg math/big, method (*Rat) Sign() int +pkg math/big, method (*Rat) String() string +pkg math/big, method (*Rat) Sub(*Rat, *Rat) *Rat +pkg math/big, type Int struct +pkg math/big, type Rat struct +pkg math/big, type Word uintptr +pkg math/cmplx, func Abs(complex128) float64 +pkg math/cmplx, func Acos(complex128) complex128 +pkg math/cmplx, func Acosh(complex128) complex128 +pkg math/cmplx, func Asin(complex128) complex128 +pkg math/cmplx, func Asinh(complex128) complex128 +pkg math/cmplx, func Atan(complex128) complex128 +pkg math/cmplx, func Atanh(complex128) complex128 +pkg math/cmplx, func Conj(complex128) complex128 +pkg math/cmplx, func Cos(complex128) complex128 +pkg math/cmplx, func Cosh(complex128) complex128 +pkg math/cmplx, func Cot(complex128) complex128 +pkg math/cmplx, func Exp(complex128) complex128 +pkg math/cmplx, func Inf() complex128 +pkg math/cmplx, func IsInf(complex128) bool +pkg math/cmplx, func IsNaN(complex128) bool +pkg math/cmplx, func Log(complex128) complex128 +pkg math/cmplx, func Log10(complex128) complex128 +pkg math/cmplx, func NaN() complex128 +pkg math/cmplx, func Phase(complex128) float64 +pkg math/cmplx, func Polar(complex128) (float64, float64) +pkg math/cmplx, func Pow(complex128, complex128) complex128 +pkg math/cmplx, func Rect(float64, float64) complex128 +pkg math/cmplx, func Sin(complex128) complex128 +pkg math/cmplx, func Sinh(complex128) complex128 +pkg math/cmplx, func Sqrt(complex128) complex128 +pkg math/cmplx, func Tan(complex128) complex128 +pkg math/cmplx, func Tanh(complex128) complex128 +pkg math/rand, func ExpFloat64() float64 +pkg math/rand, func Float32() float32 +pkg math/rand, func Float64() float64 +pkg math/rand, func Int() int +pkg math/rand, func Int31() int32 +pkg math/rand, func Int31n(int32) int32 +pkg math/rand, func Int63() int64 +pkg math/rand, func Int63n(int64) int64 +pkg math/rand, func Intn(int) int +pkg math/rand, func New(Source) *Rand +pkg math/rand, func NewSource(int64) Source +pkg math/rand, func NewZipf(*Rand, float64, float64, uint64) *Zipf +pkg math/rand, func NormFloat64() float64 +pkg math/rand, func Perm(int) []int +pkg math/rand, func Seed(int64) +pkg math/rand, func Uint32() uint32 +pkg math/rand, method (*Rand) ExpFloat64() float64 +pkg math/rand, method (*Rand) Float32() float32 +pkg math/rand, method (*Rand) Float64() float64 +pkg math/rand, method (*Rand) Int() int +pkg math/rand, method (*Rand) Int31() int32 +pkg math/rand, method (*Rand) Int31n(int32) int32 +pkg math/rand, method (*Rand) Int63() int64 +pkg math/rand, method (*Rand) Int63n(int64) int64 +pkg math/rand, method (*Rand) Intn(int) int +pkg math/rand, method (*Rand) NormFloat64() float64 +pkg math/rand, method (*Rand) Perm(int) []int +pkg math/rand, method (*Rand) Seed(int64) +pkg math/rand, method (*Rand) Uint32() uint32 +pkg math/rand, method (*Zipf) Uint64() uint64 +pkg math/rand, type Rand struct +pkg math/rand, type Source interface { Int63, Seed } +pkg math/rand, type Source interface, Int63() int64 +pkg math/rand, type Source interface, Seed(int64) +pkg math/rand, type Zipf struct +pkg mime, func AddExtensionType(string, string) error +pkg mime, func FormatMediaType(string, map[string]string) string +pkg mime, func ParseMediaType(string) (string, map[string]string, error) +pkg mime, func TypeByExtension(string) string +pkg mime/multipart, func NewReader(io.Reader, string) *Reader +pkg mime/multipart, func NewWriter(io.Writer) *Writer +pkg mime/multipart, method (*FileHeader) Open() (File, error) +pkg mime/multipart, method (*Form) RemoveAll() error +pkg mime/multipart, method (*Part) Close() error +pkg mime/multipart, method (*Part) FileName() string +pkg mime/multipart, method (*Part) FormName() string +pkg mime/multipart, method (*Part) Read([]uint8) (int, error) +pkg mime/multipart, method (*Reader) NextPart() (*Part, error) +pkg mime/multipart, method (*Reader) ReadForm(int64) (*Form, error) +pkg mime/multipart, method (*Writer) Boundary() string +pkg mime/multipart, method (*Writer) Close() error +pkg mime/multipart, method (*Writer) CreateFormField(string) (io.Writer, error) +pkg mime/multipart, method (*Writer) CreateFormFile(string, string) (io.Writer, error) +pkg mime/multipart, method (*Writer) CreatePart(textproto.MIMEHeader) (io.Writer, error) +pkg mime/multipart, method (*Writer) FormDataContentType() string +pkg mime/multipart, method (*Writer) WriteField(string, string) error +pkg mime/multipart, type File interface { Close, Read, ReadAt, Seek } +pkg mime/multipart, type File interface, Close() error +pkg mime/multipart, type File interface, Read([]uint8) (int, error) +pkg mime/multipart, type File interface, ReadAt([]uint8, int64) (int, error) +pkg mime/multipart, type File interface, Seek(int64, int) (int64, error) +pkg mime/multipart, type FileHeader struct +pkg mime/multipart, type FileHeader struct, Filename string +pkg mime/multipart, type FileHeader struct, Header textproto.MIMEHeader +pkg mime/multipart, type Form struct +pkg mime/multipart, type Form struct, File map[string][]*FileHeader +pkg mime/multipart, type Form struct, Value map[string][]string +pkg mime/multipart, type Part struct +pkg mime/multipart, type Part struct, Header textproto.MIMEHeader +pkg mime/multipart, type Reader struct +pkg mime/multipart, type Writer struct +pkg net, const FlagBroadcast Flags +pkg net, const FlagLoopback Flags +pkg net, const FlagMulticast Flags +pkg net, const FlagPointToPoint Flags +pkg net, const FlagUp Flags +pkg net, const IPv4len ideal-int +pkg net, const IPv6len ideal-int +pkg net, func CIDRMask(int, int) IPMask +pkg net, func Dial(string, string) (Conn, error) +pkg net, func DialIP(string, *IPAddr, *IPAddr) (*IPConn, error) +pkg net, func DialTCP(string, *TCPAddr, *TCPAddr) (*TCPConn, error) +pkg net, func DialTimeout(string, string, time.Duration) (Conn, error) +pkg net, func DialUDP(string, *UDPAddr, *UDPAddr) (*UDPConn, error) +pkg net, func DialUnix(string, *UnixAddr, *UnixAddr) (*UnixConn, error) +pkg net, func FileConn(*os.File) (Conn, error) +pkg net, func FileListener(*os.File) (Listener, error) +pkg net, func FilePacketConn(*os.File) (PacketConn, error) +pkg net, func IPv4(uint8, uint8, uint8, uint8) IP +pkg net, func IPv4Mask(uint8, uint8, uint8, uint8) IPMask +pkg net, func InterfaceAddrs() ([]Addr, error) +pkg net, func InterfaceByIndex(int) (*Interface, error) +pkg net, func InterfaceByName(string) (*Interface, error) +pkg net, func Interfaces() ([]Interface, error) +pkg net, func JoinHostPort(string, string) string +pkg net, func Listen(string, string) (Listener, error) +pkg net, func ListenIP(string, *IPAddr) (*IPConn, error) +pkg net, func ListenMulticastUDP(string, *Interface, *UDPAddr) (*UDPConn, error) +pkg net, func ListenPacket(string, string) (PacketConn, error) +pkg net, func ListenTCP(string, *TCPAddr) (*TCPListener, error) +pkg net, func ListenUDP(string, *UDPAddr) (*UDPConn, error) +pkg net, func ListenUnix(string, *UnixAddr) (*UnixListener, error) +pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error) +pkg net, func LookupAddr(string) ([]string, error) +pkg net, func LookupCNAME(string) (string, error) +pkg net, func LookupHost(string) ([]string, error) +pkg net, func LookupIP(string) ([]IP, error) +pkg net, func LookupMX(string) ([]*MX, error) +pkg net, func LookupPort(string, string) (int, error) +pkg net, func LookupSRV(string, string, string) (string, []*SRV, error) +pkg net, func LookupTXT(string) ([]string, error) +pkg net, func ParseCIDR(string) (IP, *IPNet, error) +pkg net, func ParseIP(string) IP +pkg net, func ParseMAC(string) (HardwareAddr, error) +pkg net, func Pipe() (Conn, Conn) +pkg net, func ResolveIPAddr(string, string) (*IPAddr, error) +pkg net, func ResolveTCPAddr(string, string) (*TCPAddr, error) +pkg net, func ResolveUDPAddr(string, string) (*UDPAddr, error) +pkg net, func ResolveUnixAddr(string, string) (*UnixAddr, error) +pkg net, func SplitHostPort(string) (string, string, error) +pkg net, method (*AddrError) Error() string +pkg net, method (*AddrError) Temporary() bool +pkg net, method (*AddrError) Timeout() bool +pkg net, method (*DNSConfigError) Error() string +pkg net, method (*DNSConfigError) Temporary() bool +pkg net, method (*DNSConfigError) Timeout() bool +pkg net, method (*DNSError) Error() string +pkg net, method (*DNSError) Temporary() bool +pkg net, method (*DNSError) Timeout() bool +pkg net, method (*IPAddr) Network() string +pkg net, method (*IPAddr) String() string +pkg net, method (*IPConn) Close() error +pkg net, method (*IPConn) File() (*os.File, error) +pkg net, method (*IPConn) LocalAddr() Addr +pkg net, method (*IPConn) Read([]uint8) (int, error) +pkg net, method (*IPConn) ReadFrom([]uint8) (int, Addr, error) +pkg net, method (*IPConn) ReadFromIP([]uint8) (int, *IPAddr, error) +pkg net, method (*IPConn) RemoteAddr() Addr +pkg net, method (*IPConn) SetDeadline(time.Time) error +pkg net, method (*IPConn) SetReadBuffer(int) error +pkg net, method (*IPConn) SetReadDeadline(time.Time) error +pkg net, method (*IPConn) SetWriteBuffer(int) error +pkg net, method (*IPConn) SetWriteDeadline(time.Time) error +pkg net, method (*IPConn) Write([]uint8) (int, error) +pkg net, method (*IPConn) WriteTo([]uint8, Addr) (int, error) +pkg net, method (*IPConn) WriteToIP([]uint8, *IPAddr) (int, error) +pkg net, method (*IPNet) Contains(IP) bool +pkg net, method (*IPNet) Network() string +pkg net, method (*IPNet) String() string +pkg net, method (*Interface) Addrs() ([]Addr, error) +pkg net, method (*Interface) MulticastAddrs() ([]Addr, error) +pkg net, method (*OpError) Error() string +pkg net, method (*OpError) Temporary() bool +pkg net, method (*OpError) Timeout() bool +pkg net, method (*ParseError) Error() string +pkg net, method (*TCPAddr) Network() string +pkg net, method (*TCPAddr) String() string +pkg net, method (*TCPConn) Close() error +pkg net, method (*TCPConn) CloseRead() error +pkg net, method (*TCPConn) CloseWrite() error +pkg net, method (*TCPConn) File() (*os.File, error) +pkg net, method (*TCPConn) LocalAddr() Addr +pkg net, method (*TCPConn) Read([]uint8) (int, error) +pkg net, method (*TCPConn) ReadFrom(io.Reader) (int64, error) +pkg net, method (*TCPConn) RemoteAddr() Addr +pkg net, method (*TCPConn) SetDeadline(time.Time) error +pkg net, method (*TCPConn) SetKeepAlive(bool) error +pkg net, method (*TCPConn) SetLinger(int) error +pkg net, method (*TCPConn) SetNoDelay(bool) error +pkg net, method (*TCPConn) SetReadBuffer(int) error +pkg net, method (*TCPConn) SetReadDeadline(time.Time) error +pkg net, method (*TCPConn) SetWriteBuffer(int) error +pkg net, method (*TCPConn) SetWriteDeadline(time.Time) error +pkg net, method (*TCPConn) Write([]uint8) (int, error) +pkg net, method (*TCPListener) Accept() (Conn, error) +pkg net, method (*TCPListener) AcceptTCP() (*TCPConn, error) +pkg net, method (*TCPListener) Addr() Addr +pkg net, method (*TCPListener) Close() error +pkg net, method (*TCPListener) File() (*os.File, error) +pkg net, method (*TCPListener) SetDeadline(time.Time) error +pkg net, method (*UDPAddr) Network() string +pkg net, method (*UDPAddr) String() string +pkg net, method (*UDPConn) Close() error +pkg net, method (*UDPConn) File() (*os.File, error) +pkg net, method (*UDPConn) LocalAddr() Addr +pkg net, method (*UDPConn) Read([]uint8) (int, error) +pkg net, method (*UDPConn) ReadFrom([]uint8) (int, Addr, error) +pkg net, method (*UDPConn) ReadFromUDP([]uint8) (int, *UDPAddr, error) +pkg net, method (*UDPConn) RemoteAddr() Addr +pkg net, method (*UDPConn) SetDeadline(time.Time) error +pkg net, method (*UDPConn) SetReadBuffer(int) error +pkg net, method (*UDPConn) SetReadDeadline(time.Time) error +pkg net, method (*UDPConn) SetWriteBuffer(int) error +pkg net, method (*UDPConn) SetWriteDeadline(time.Time) error +pkg net, method (*UDPConn) Write([]uint8) (int, error) +pkg net, method (*UDPConn) WriteTo([]uint8, Addr) (int, error) +pkg net, method (*UDPConn) WriteToUDP([]uint8, *UDPAddr) (int, error) +pkg net, method (*UnixAddr) Network() string +pkg net, method (*UnixAddr) String() string +pkg net, method (*UnixConn) Close() error +pkg net, method (*UnixConn) File() (*os.File, error) +pkg net, method (*UnixConn) LocalAddr() Addr +pkg net, method (*UnixConn) Read([]uint8) (int, error) +pkg net, method (*UnixConn) ReadFrom([]uint8) (int, Addr, error) +pkg net, method (*UnixConn) ReadFromUnix([]uint8) (int, *UnixAddr, error) +pkg net, method (*UnixConn) ReadMsgUnix([]uint8, []uint8) (int, int, int, *UnixAddr, error) +pkg net, method (*UnixConn) RemoteAddr() Addr +pkg net, method (*UnixConn) SetDeadline(time.Time) error +pkg net, method (*UnixConn) SetReadBuffer(int) error +pkg net, method (*UnixConn) SetReadDeadline(time.Time) error +pkg net, method (*UnixConn) SetWriteBuffer(int) error +pkg net, method (*UnixConn) SetWriteDeadline(time.Time) error +pkg net, method (*UnixConn) Write([]uint8) (int, error) +pkg net, method (*UnixConn) WriteMsgUnix([]uint8, []uint8, *UnixAddr) (int, int, error) +pkg net, method (*UnixConn) WriteTo([]uint8, Addr) (int, error) +pkg net, method (*UnixConn) WriteToUnix([]uint8, *UnixAddr) (int, error) +pkg net, method (*UnixListener) Accept() (Conn, error) +pkg net, method (*UnixListener) AcceptUnix() (*UnixConn, error) +pkg net, method (*UnixListener) Addr() Addr +pkg net, method (*UnixListener) Close() error +pkg net, method (*UnixListener) File() (*os.File, error) +pkg net, method (*UnixListener) SetDeadline(time.Time) error +pkg net, method (Flags) String() string +pkg net, method (HardwareAddr) String() string +pkg net, method (IP) DefaultMask() IPMask +pkg net, method (IP) Equal(IP) bool +pkg net, method (IP) IsGlobalUnicast() bool +pkg net, method (IP) IsInterfaceLocalMulticast() bool +pkg net, method (IP) IsLinkLocalMulticast() bool +pkg net, method (IP) IsLinkLocalUnicast() bool +pkg net, method (IP) IsLoopback() bool +pkg net, method (IP) IsMulticast() bool +pkg net, method (IP) IsUnspecified() bool +pkg net, method (IP) Mask(IPMask) IP +pkg net, method (IP) String() string +pkg net, method (IP) To16() IP +pkg net, method (IP) To4() IP +pkg net, method (IPMask) Size() (int, int) +pkg net, method (IPMask) String() string +pkg net, method (InvalidAddrError) Error() string +pkg net, method (InvalidAddrError) Temporary() bool +pkg net, method (InvalidAddrError) Timeout() bool +pkg net, method (UnknownNetworkError) Error() string +pkg net, method (UnknownNetworkError) Temporary() bool +pkg net, method (UnknownNetworkError) Timeout() bool +pkg net, type Addr interface { Network, String } +pkg net, type Addr interface, Network() string +pkg net, type Addr interface, String() string +pkg net, type AddrError struct +pkg net, type AddrError struct, Addr string +pkg net, type AddrError struct, Err string +pkg net, type Conn interface { Close, LocalAddr, Read, RemoteAddr, SetDeadline, SetReadDeadline, SetWriteDeadline, Write } +pkg net, type Conn interface, Close() error +pkg net, type Conn interface, LocalAddr() Addr +pkg net, type Conn interface, Read([]uint8) (int, error) +pkg net, type Conn interface, RemoteAddr() Addr +pkg net, type Conn interface, SetDeadline(time.Time) error +pkg net, type Conn interface, SetReadDeadline(time.Time) error +pkg net, type Conn interface, SetWriteDeadline(time.Time) error +pkg net, type Conn interface, Write([]uint8) (int, error) +pkg net, type DNSConfigError struct +pkg net, type DNSConfigError struct, Err error +pkg net, type DNSError struct +pkg net, type DNSError struct, Err string +pkg net, type DNSError struct, IsTimeout bool +pkg net, type DNSError struct, Name string +pkg net, type DNSError struct, Server string +pkg net, type Error interface { Error, Temporary, Timeout } +pkg net, type Error interface, Error() string +pkg net, type Error interface, Temporary() bool +pkg net, type Error interface, Timeout() bool +pkg net, type Flags uint +pkg net, type HardwareAddr []uint8 +pkg net, type IP []uint8 +pkg net, type IPAddr struct +pkg net, type IPAddr struct, IP IP +pkg net, type IPConn struct +pkg net, type IPMask []uint8 +pkg net, type IPNet struct +pkg net, type IPNet struct, IP IP +pkg net, type IPNet struct, Mask IPMask +pkg net, type Interface struct +pkg net, type Interface struct, Flags Flags +pkg net, type Interface struct, HardwareAddr HardwareAddr +pkg net, type Interface struct, Index int +pkg net, type Interface struct, MTU int +pkg net, type Interface struct, Name string +pkg net, type InvalidAddrError string +pkg net, type Listener interface { Accept, Addr, Close } +pkg net, type Listener interface, Accept() (Conn, error) +pkg net, type Listener interface, Addr() Addr +pkg net, type Listener interface, Close() error +pkg net, type MX struct +pkg net, type MX struct, Host string +pkg net, type MX struct, Pref uint16 +pkg net, type OpError struct +pkg net, type OpError struct, Addr Addr +pkg net, type OpError struct, Err error +pkg net, type OpError struct, Net string +pkg net, type OpError struct, Op string +pkg net, type PacketConn interface { Close, LocalAddr, ReadFrom, SetDeadline, SetReadDeadline, SetWriteDeadline, WriteTo } +pkg net, type PacketConn interface, Close() error +pkg net, type PacketConn interface, LocalAddr() Addr +pkg net, type PacketConn interface, ReadFrom([]uint8) (int, Addr, error) +pkg net, type PacketConn interface, SetDeadline(time.Time) error +pkg net, type PacketConn interface, SetReadDeadline(time.Time) error +pkg net, type PacketConn interface, SetWriteDeadline(time.Time) error +pkg net, type PacketConn interface, WriteTo([]uint8, Addr) (int, error) +pkg net, type ParseError struct +pkg net, type ParseError struct, Text string +pkg net, type ParseError struct, Type string +pkg net, type SRV struct +pkg net, type SRV struct, Port uint16 +pkg net, type SRV struct, Priority uint16 +pkg net, type SRV struct, Target string +pkg net, type SRV struct, Weight uint16 +pkg net, type TCPAddr struct +pkg net, type TCPAddr struct, IP IP +pkg net, type TCPAddr struct, Port int +pkg net, type TCPConn struct +pkg net, type TCPListener struct +pkg net, type UDPAddr struct +pkg net, type UDPAddr struct, IP IP +pkg net, type UDPAddr struct, Port int +pkg net, type UDPConn struct +pkg net, type UnixAddr struct +pkg net, type UnixAddr struct, Name string +pkg net, type UnixAddr struct, Net string +pkg net, type UnixConn struct +pkg net, type UnixListener struct +pkg net, type UnknownNetworkError string +pkg net, var ErrWriteToConnected error +pkg net, var IPv4allrouter IP +pkg net, var IPv4allsys IP +pkg net, var IPv4bcast IP +pkg net, var IPv4zero IP +pkg net, var IPv6interfacelocalallnodes IP +pkg net, var IPv6linklocalallnodes IP +pkg net, var IPv6linklocalallrouters IP +pkg net, var IPv6loopback IP +pkg net, var IPv6unspecified IP +pkg net, var IPv6zero IP +pkg net/http, const DefaultMaxHeaderBytes ideal-int +pkg net/http, const DefaultMaxIdleConnsPerHost ideal-int +pkg net/http, const StatusAccepted ideal-int +pkg net/http, const StatusBadGateway ideal-int +pkg net/http, const StatusBadRequest ideal-int +pkg net/http, const StatusConflict ideal-int +pkg net/http, const StatusContinue ideal-int +pkg net/http, const StatusCreated ideal-int +pkg net/http, const StatusExpectationFailed ideal-int +pkg net/http, const StatusForbidden ideal-int +pkg net/http, const StatusFound ideal-int +pkg net/http, const StatusGatewayTimeout ideal-int +pkg net/http, const StatusGone ideal-int +pkg net/http, const StatusHTTPVersionNotSupported ideal-int +pkg net/http, const StatusInternalServerError ideal-int +pkg net/http, const StatusLengthRequired ideal-int +pkg net/http, const StatusMethodNotAllowed ideal-int +pkg net/http, const StatusMovedPermanently ideal-int +pkg net/http, const StatusMultipleChoices ideal-int +pkg net/http, const StatusNoContent ideal-int +pkg net/http, const StatusNonAuthoritativeInfo ideal-int +pkg net/http, const StatusNotAcceptable ideal-int +pkg net/http, const StatusNotFound ideal-int +pkg net/http, const StatusNotImplemented ideal-int +pkg net/http, const StatusNotModified ideal-int +pkg net/http, const StatusOK ideal-int +pkg net/http, const StatusPartialContent ideal-int +pkg net/http, const StatusPaymentRequired ideal-int +pkg net/http, const StatusPreconditionFailed ideal-int +pkg net/http, const StatusProxyAuthRequired ideal-int +pkg net/http, const StatusRequestEntityTooLarge ideal-int +pkg net/http, const StatusRequestTimeout ideal-int +pkg net/http, const StatusRequestURITooLong ideal-int +pkg net/http, const StatusRequestedRangeNotSatisfiable ideal-int +pkg net/http, const StatusResetContent ideal-int +pkg net/http, const StatusSeeOther ideal-int +pkg net/http, const StatusServiceUnavailable ideal-int +pkg net/http, const StatusSwitchingProtocols ideal-int +pkg net/http, const StatusTeapot ideal-int +pkg net/http, const StatusTemporaryRedirect ideal-int +pkg net/http, const StatusUnauthorized ideal-int +pkg net/http, const StatusUnsupportedMediaType ideal-int +pkg net/http, const StatusUseProxy ideal-int +pkg net/http, const TimeFormat ideal-string +pkg net/http, func CanonicalHeaderKey(string) string +pkg net/http, func DetectContentType([]uint8) string +pkg net/http, func Error(ResponseWriter, string, int) +pkg net/http, func FileServer(FileSystem) Handler +pkg net/http, func Get(string) (*Response, error) +pkg net/http, func Handle(string, Handler) +pkg net/http, func HandleFunc(string, func(ResponseWriter, *Request)) +pkg net/http, func Head(string) (*Response, error) +pkg net/http, func ListenAndServe(string, Handler) error +pkg net/http, func ListenAndServeTLS(string, string, string, Handler) error +pkg net/http, func MaxBytesReader(ResponseWriter, io.ReadCloser, int64) io.ReadCloser +pkg net/http, func NewFileTransport(FileSystem) RoundTripper +pkg net/http, func NewRequest(string, string, io.Reader) (*Request, error) +pkg net/http, func NewServeMux() *ServeMux +pkg net/http, func NotFound(ResponseWriter, *Request) +pkg net/http, func NotFoundHandler() Handler +pkg net/http, func ParseHTTPVersion(string) (int, int, bool) +pkg net/http, func Post(string, string, io.Reader) (*Response, error) +pkg net/http, func PostForm(string, url.Values) (*Response, error) +pkg net/http, func ProxyFromEnvironment(*Request) (*url.URL, error) +pkg net/http, func ProxyURL(*url.URL) func(*Request) (*url.URL, error) +pkg net/http, func ReadRequest(*bufio.Reader) (*Request, error) +pkg net/http, func ReadResponse(*bufio.Reader, *Request) (*Response, error) +pkg net/http, func Redirect(ResponseWriter, *Request, string, int) +pkg net/http, func RedirectHandler(string, int) Handler +pkg net/http, func Serve(net.Listener, Handler) error +pkg net/http, func ServeContent(ResponseWriter, *Request, string, time.Time, io.ReadSeeker) +pkg net/http, func ServeFile(ResponseWriter, *Request, string) +pkg net/http, func SetCookie(ResponseWriter, *Cookie) +pkg net/http, func StatusText(int) string +pkg net/http, func StripPrefix(string, Handler) Handler +pkg net/http, func TimeoutHandler(Handler, time.Duration, string) Handler +pkg net/http, method (*Client) Do(*Request) (*Response, error) +pkg net/http, method (*Client) Get(string) (*Response, error) +pkg net/http, method (*Client) Head(string) (*Response, error) +pkg net/http, method (*Client) Post(string, string, io.Reader) (*Response, error) +pkg net/http, method (*Client) PostForm(string, url.Values) (*Response, error) +pkg net/http, method (*Cookie) String() string +pkg net/http, method (*ProtocolError) Error() string +pkg net/http, method (*Request) AddCookie(*Cookie) +pkg net/http, method (*Request) Cookie(string) (*Cookie, error) +pkg net/http, method (*Request) Cookies() []*Cookie +pkg net/http, method (*Request) FormFile(string) (multipart.File, *multipart.FileHeader, error) +pkg net/http, method (*Request) FormValue(string) string +pkg net/http, method (*Request) MultipartReader() (*multipart.Reader, error) +pkg net/http, method (*Request) ParseForm() error +pkg net/http, method (*Request) ParseMultipartForm(int64) error +pkg net/http, method (*Request) ProtoAtLeast(int, int) bool +pkg net/http, method (*Request) Referer() string +pkg net/http, method (*Request) SetBasicAuth(string, string) +pkg net/http, method (*Request) UserAgent() string +pkg net/http, method (*Request) Write(io.Writer) error +pkg net/http, method (*Request) WriteProxy(io.Writer) error +pkg net/http, method (*Response) Cookies() []*Cookie +pkg net/http, method (*Response) Location() (*url.URL, error) +pkg net/http, method (*Response) ProtoAtLeast(int, int) bool +pkg net/http, method (*Response) Write(io.Writer) error +pkg net/http, method (*ServeMux) Handle(string, Handler) +pkg net/http, method (*ServeMux) HandleFunc(string, func(ResponseWriter, *Request)) +pkg net/http, method (*ServeMux) ServeHTTP(ResponseWriter, *Request) +pkg net/http, method (*Server) ListenAndServe() error +pkg net/http, method (*Server) ListenAndServeTLS(string, string) error +pkg net/http, method (*Server) Serve(net.Listener) error +pkg net/http, method (*Transport) CloseIdleConnections() +pkg net/http, method (*Transport) RegisterProtocol(string, RoundTripper) +pkg net/http, method (*Transport) RoundTrip(*Request) (*Response, error) +pkg net/http, method (Dir) Open(string) (File, error) +pkg net/http, method (HandlerFunc) ServeHTTP(ResponseWriter, *Request) +pkg net/http, method (Header) Add(string, string) +pkg net/http, method (Header) Del(string) +pkg net/http, method (Header) Get(string) string +pkg net/http, method (Header) Set(string, string) +pkg net/http, method (Header) Write(io.Writer) error +pkg net/http, method (Header) WriteSubset(io.Writer, map[string]bool) error +pkg net/http, type Client struct +pkg net/http, type Client struct, CheckRedirect func(*Request, []*Request) error +pkg net/http, type Client struct, Jar CookieJar +pkg net/http, type Client struct, Transport RoundTripper +pkg net/http, type Cookie struct +pkg net/http, type Cookie struct, Domain string +pkg net/http, type Cookie struct, Expires time.Time +pkg net/http, type Cookie struct, HttpOnly bool +pkg net/http, type Cookie struct, MaxAge int +pkg net/http, type Cookie struct, Name string +pkg net/http, type Cookie struct, Path string +pkg net/http, type Cookie struct, Raw string +pkg net/http, type Cookie struct, RawExpires string +pkg net/http, type Cookie struct, Secure bool +pkg net/http, type Cookie struct, Unparsed []string +pkg net/http, type Cookie struct, Value string +pkg net/http, type CookieJar interface { Cookies, SetCookies } +pkg net/http, type CookieJar interface, Cookies(*url.URL) []*Cookie +pkg net/http, type CookieJar interface, SetCookies(*url.URL, []*Cookie) +pkg net/http, type Dir string +pkg net/http, type File interface { Close, Read, Readdir, Seek, Stat } +pkg net/http, type File interface, Close() error +pkg net/http, type File interface, Read([]uint8) (int, error) +pkg net/http, type File interface, Readdir(int) ([]os.FileInfo, error) +pkg net/http, type File interface, Seek(int64, int) (int64, error) +pkg net/http, type File interface, Stat() (os.FileInfo, error) +pkg net/http, type FileSystem interface { Open } +pkg net/http, type FileSystem interface, Open(string) (File, error) +pkg net/http, type Flusher interface { Flush } +pkg net/http, type Flusher interface, Flush() +pkg net/http, type Handler interface { ServeHTTP } +pkg net/http, type Handler interface, ServeHTTP(ResponseWriter, *Request) +pkg net/http, type HandlerFunc func(ResponseWriter, *Request) +pkg net/http, type Header map[string][]string +pkg net/http, type Hijacker interface { Hijack } +pkg net/http, type Hijacker interface, Hijack() (net.Conn, *bufio.ReadWriter, error) +pkg net/http, type ProtocolError struct +pkg net/http, type ProtocolError struct, ErrorString string +pkg net/http, type Request struct +pkg net/http, type Request struct, Body io.ReadCloser +pkg net/http, type Request struct, Close bool +pkg net/http, type Request struct, ContentLength int64 +pkg net/http, type Request struct, Form url.Values +pkg net/http, type Request struct, Header Header +pkg net/http, type Request struct, Host string +pkg net/http, type Request struct, Method string +pkg net/http, type Request struct, MultipartForm *multipart.Form +pkg net/http, type Request struct, Proto string +pkg net/http, type Request struct, ProtoMajor int +pkg net/http, type Request struct, ProtoMinor int +pkg net/http, type Request struct, RemoteAddr string +pkg net/http, type Request struct, RequestURI string +pkg net/http, type Request struct, TLS *tls.ConnectionState +pkg net/http, type Request struct, Trailer Header +pkg net/http, type Request struct, TransferEncoding []string +pkg net/http, type Request struct, URL *url.URL +pkg net/http, type Response struct +pkg net/http, type Response struct, Body io.ReadCloser +pkg net/http, type Response struct, Close bool +pkg net/http, type Response struct, ContentLength int64 +pkg net/http, type Response struct, Header Header +pkg net/http, type Response struct, Proto string +pkg net/http, type Response struct, ProtoMajor int +pkg net/http, type Response struct, ProtoMinor int +pkg net/http, type Response struct, Request *Request +pkg net/http, type Response struct, Status string +pkg net/http, type Response struct, StatusCode int +pkg net/http, type Response struct, Trailer Header +pkg net/http, type Response struct, TransferEncoding []string +pkg net/http, type ResponseWriter interface { Header, Write, WriteHeader } +pkg net/http, type ResponseWriter interface, Header() Header +pkg net/http, type ResponseWriter interface, Write([]uint8) (int, error) +pkg net/http, type ResponseWriter interface, WriteHeader(int) +pkg net/http, type RoundTripper interface { RoundTrip } +pkg net/http, type RoundTripper interface, RoundTrip(*Request) (*Response, error) +pkg net/http, type ServeMux struct +pkg net/http, type Server struct +pkg net/http, type Server struct, Addr string +pkg net/http, type Server struct, Handler Handler +pkg net/http, type Server struct, MaxHeaderBytes int +pkg net/http, type Server struct, ReadTimeout time.Duration +pkg net/http, type Server struct, TLSConfig *tls.Config +pkg net/http, type Server struct, WriteTimeout time.Duration +pkg net/http, type Transport struct +pkg net/http, type Transport struct, Dial func(string, string) (net.Conn, error) +pkg net/http, type Transport struct, DisableCompression bool +pkg net/http, type Transport struct, DisableKeepAlives bool +pkg net/http, type Transport struct, MaxIdleConnsPerHost int +pkg net/http, type Transport struct, Proxy func(*Request) (*url.URL, error) +pkg net/http, type Transport struct, TLSClientConfig *tls.Config +pkg net/http, var DefaultClient *Client +pkg net/http, var DefaultServeMux *ServeMux +pkg net/http, var DefaultTransport RoundTripper +pkg net/http, var ErrBodyNotAllowed error +pkg net/http, var ErrBodyReadAfterClose error +pkg net/http, var ErrContentLength error +pkg net/http, var ErrHandlerTimeout error +pkg net/http, var ErrHeaderTooLong *ProtocolError +pkg net/http, var ErrHijacked error +pkg net/http, var ErrLineTooLong error +pkg net/http, var ErrMissingBoundary *ProtocolError +pkg net/http, var ErrMissingContentLength *ProtocolError +pkg net/http, var ErrMissingFile error +pkg net/http, var ErrNoCookie error +pkg net/http, var ErrNoLocation error +pkg net/http, var ErrNotMultipart *ProtocolError +pkg net/http, var ErrNotSupported *ProtocolError +pkg net/http, var ErrShortBody *ProtocolError +pkg net/http, var ErrUnexpectedTrailer *ProtocolError +pkg net/http, var ErrWriteAfterFlush error +pkg net/http/cgi, func Request() (*http.Request, error) +pkg net/http/cgi, func RequestFromMap(map[string]string) (*http.Request, error) +pkg net/http/cgi, func Serve(http.Handler) error +pkg net/http/cgi, method (*Handler) ServeHTTP(http.ResponseWriter, *http.Request) +pkg net/http/cgi, type Handler struct +pkg net/http/cgi, type Handler struct, Args []string +pkg net/http/cgi, type Handler struct, Dir string +pkg net/http/cgi, type Handler struct, Env []string +pkg net/http/cgi, type Handler struct, InheritEnv []string +pkg net/http/cgi, type Handler struct, Logger *log.Logger +pkg net/http/cgi, type Handler struct, Path string +pkg net/http/cgi, type Handler struct, PathLocationHandler http.Handler +pkg net/http/cgi, type Handler struct, Root string +pkg net/http/fcgi, func Serve(net.Listener, http.Handler) error +pkg net/http/httptest, const DefaultRemoteAddr ideal-string +pkg net/http/httptest, func NewRecorder() *ResponseRecorder +pkg net/http/httptest, func NewServer(http.Handler) *Server +pkg net/http/httptest, func NewTLSServer(http.Handler) *Server +pkg net/http/httptest, func NewUnstartedServer(http.Handler) *Server +pkg net/http/httptest, method (*ResponseRecorder) Flush() +pkg net/http/httptest, method (*ResponseRecorder) Header() http.Header +pkg net/http/httptest, method (*ResponseRecorder) Write([]uint8) (int, error) +pkg net/http/httptest, method (*ResponseRecorder) WriteHeader(int) +pkg net/http/httptest, method (*Server) Close() +pkg net/http/httptest, method (*Server) CloseClientConnections() +pkg net/http/httptest, method (*Server) Start() +pkg net/http/httptest, method (*Server) StartTLS() +pkg net/http/httptest, type ResponseRecorder struct +pkg net/http/httptest, type ResponseRecorder struct, Body *bytes.Buffer +pkg net/http/httptest, type ResponseRecorder struct, Code int +pkg net/http/httptest, type ResponseRecorder struct, Flushed bool +pkg net/http/httptest, type ResponseRecorder struct, HeaderMap http.Header +pkg net/http/httptest, type Server struct +pkg net/http/httptest, type Server struct, Config *http.Server +pkg net/http/httptest, type Server struct, Listener net.Listener +pkg net/http/httptest, type Server struct, TLS *tls.Config +pkg net/http/httptest, type Server struct, URL string +pkg net/http/httputil, func DumpRequest(*http.Request, bool) ([]uint8, error) +pkg net/http/httputil, func DumpRequestOut(*http.Request, bool) ([]uint8, error) +pkg net/http/httputil, func DumpResponse(*http.Response, bool) ([]uint8, error) +pkg net/http/httputil, func NewChunkedReader(io.Reader) io.Reader +pkg net/http/httputil, func NewChunkedWriter(io.Writer) io.WriteCloser +pkg net/http/httputil, func NewClientConn(net.Conn, *bufio.Reader) *ClientConn +pkg net/http/httputil, func NewProxyClientConn(net.Conn, *bufio.Reader) *ClientConn +pkg net/http/httputil, func NewServerConn(net.Conn, *bufio.Reader) *ServerConn +pkg net/http/httputil, func NewSingleHostReverseProxy(*url.URL) *ReverseProxy +pkg net/http/httputil, method (*ClientConn) Close() error +pkg net/http/httputil, method (*ClientConn) Do(*http.Request) (*http.Response, error) +pkg net/http/httputil, method (*ClientConn) Hijack() (net.Conn, *bufio.Reader) +pkg net/http/httputil, method (*ClientConn) Pending() int +pkg net/http/httputil, method (*ClientConn) Read(*http.Request) (*http.Response, error) +pkg net/http/httputil, method (*ClientConn) Write(*http.Request) error +pkg net/http/httputil, method (*ReverseProxy) ServeHTTP(http.ResponseWriter, *http.Request) +pkg net/http/httputil, method (*ServerConn) Close() error +pkg net/http/httputil, method (*ServerConn) Hijack() (net.Conn, *bufio.Reader) +pkg net/http/httputil, method (*ServerConn) Pending() int +pkg net/http/httputil, method (*ServerConn) Read() (*http.Request, error) +pkg net/http/httputil, method (*ServerConn) Write(*http.Request, *http.Response) error +pkg net/http/httputil, type ClientConn struct +pkg net/http/httputil, type ReverseProxy struct +pkg net/http/httputil, type ReverseProxy struct, Director func(*http.Request) +pkg net/http/httputil, type ReverseProxy struct, FlushInterval time.Duration +pkg net/http/httputil, type ReverseProxy struct, Transport http.RoundTripper +pkg net/http/httputil, type ServerConn struct +pkg net/http/httputil, var ErrClosed *http.ProtocolError +pkg net/http/httputil, var ErrLineTooLong error +pkg net/http/httputil, var ErrPersistEOF *http.ProtocolError +pkg net/http/httputil, var ErrPipeline *http.ProtocolError +pkg net/http/pprof, func Cmdline(http.ResponseWriter, *http.Request) +pkg net/http/pprof, func Handler(string) http.Handler +pkg net/http/pprof, func Index(http.ResponseWriter, *http.Request) +pkg net/http/pprof, func Profile(http.ResponseWriter, *http.Request) +pkg net/http/pprof, func Symbol(http.ResponseWriter, *http.Request) +pkg net/mail, func ReadMessage(io.Reader) (*Message, error) +pkg net/mail, method (*Address) String() string +pkg net/mail, method (Header) AddressList(string) ([]*Address, error) +pkg net/mail, method (Header) Date() (time.Time, error) +pkg net/mail, method (Header) Get(string) string +pkg net/mail, type Address struct +pkg net/mail, type Address struct, Address string +pkg net/mail, type Address struct, Name string +pkg net/mail, type Header map[string][]string +pkg net/mail, type Message struct +pkg net/mail, type Message struct, Body io.Reader +pkg net/mail, type Message struct, Header Header +pkg net/mail, var ErrHeaderNotPresent error +pkg net/rpc, const DefaultDebugPath ideal-string +pkg net/rpc, const DefaultRPCPath ideal-string +pkg net/rpc, func Accept(net.Listener) +pkg net/rpc, func Dial(string, string) (*Client, error) +pkg net/rpc, func DialHTTP(string, string) (*Client, error) +pkg net/rpc, func DialHTTPPath(string, string, string) (*Client, error) +pkg net/rpc, func HandleHTTP() +pkg net/rpc, func NewClient(io.ReadWriteCloser) *Client +pkg net/rpc, func NewClientWithCodec(ClientCodec) *Client +pkg net/rpc, func NewServer() *Server +pkg net/rpc, func Register(interface{}) error +pkg net/rpc, func RegisterName(string, interface{}) error +pkg net/rpc, func ServeCodec(ServerCodec) +pkg net/rpc, func ServeConn(io.ReadWriteCloser) +pkg net/rpc, func ServeRequest(ServerCodec) error +pkg net/rpc, method (*Client) Call(string, interface{}, interface{}) error +pkg net/rpc, method (*Client) Close() error +pkg net/rpc, method (*Client) Go(string, interface{}, interface{}, chan *Call) *Call +pkg net/rpc, method (*Server) Accept(net.Listener) +pkg net/rpc, method (*Server) HandleHTTP(string, string) +pkg net/rpc, method (*Server) Register(interface{}) error +pkg net/rpc, method (*Server) RegisterName(string, interface{}) error +pkg net/rpc, method (*Server) ServeCodec(ServerCodec) +pkg net/rpc, method (*Server) ServeConn(io.ReadWriteCloser) +pkg net/rpc, method (*Server) ServeHTTP(http.ResponseWriter, *http.Request) +pkg net/rpc, method (*Server) ServeRequest(ServerCodec) error +pkg net/rpc, method (ServerError) Error() string +pkg net/rpc, type Call struct +pkg net/rpc, type Call struct, Args interface{} +pkg net/rpc, type Call struct, Done chan *Call +pkg net/rpc, type Call struct, Error error +pkg net/rpc, type Call struct, Reply interface{} +pkg net/rpc, type Call struct, ServiceMethod string +pkg net/rpc, type Client struct +pkg net/rpc, type ClientCodec interface { Close, ReadResponseBody, ReadResponseHeader, WriteRequest } +pkg net/rpc, type ClientCodec interface, Close() error +pkg net/rpc, type ClientCodec interface, ReadResponseBody(interface{}) error +pkg net/rpc, type ClientCodec interface, ReadResponseHeader(*Response) error +pkg net/rpc, type ClientCodec interface, WriteRequest(*Request, interface{}) error +pkg net/rpc, type Request struct +pkg net/rpc, type Request struct, Seq uint64 +pkg net/rpc, type Request struct, ServiceMethod string +pkg net/rpc, type Response struct +pkg net/rpc, type Response struct, Error string +pkg net/rpc, type Response struct, Seq uint64 +pkg net/rpc, type Response struct, ServiceMethod string +pkg net/rpc, type Server struct +pkg net/rpc, type ServerCodec interface { Close, ReadRequestBody, ReadRequestHeader, WriteResponse } +pkg net/rpc, type ServerCodec interface, Close() error +pkg net/rpc, type ServerCodec interface, ReadRequestBody(interface{}) error +pkg net/rpc, type ServerCodec interface, ReadRequestHeader(*Request) error +pkg net/rpc, type ServerCodec interface, WriteResponse(*Response, interface{}) error +pkg net/rpc, type ServerError string +pkg net/rpc, var DefaultServer *Server +pkg net/rpc, var ErrShutdown error +pkg net/rpc/jsonrpc, func Dial(string, string) (*rpc.Client, error) +pkg net/rpc/jsonrpc, func NewClient(io.ReadWriteCloser) *rpc.Client +pkg net/rpc/jsonrpc, func NewClientCodec(io.ReadWriteCloser) rpc.ClientCodec +pkg net/rpc/jsonrpc, func NewServerCodec(io.ReadWriteCloser) rpc.ServerCodec +pkg net/rpc/jsonrpc, func ServeConn(io.ReadWriteCloser) +pkg net/smtp, func CRAMMD5Auth(string, string) Auth +pkg net/smtp, func Dial(string) (*Client, error) +pkg net/smtp, func NewClient(net.Conn, string) (*Client, error) +pkg net/smtp, func PlainAuth(string, string, string, string) Auth +pkg net/smtp, func SendMail(string, Auth, string, []string, []uint8) error +pkg net/smtp, method (*Client) Auth(Auth) error +pkg net/smtp, method (*Client) Data() (io.WriteCloser, error) +pkg net/smtp, method (*Client) Extension(string) (bool, string) +pkg net/smtp, method (*Client) Mail(string) error +pkg net/smtp, method (*Client) Quit() error +pkg net/smtp, method (*Client) Rcpt(string) error +pkg net/smtp, method (*Client) Reset() error +pkg net/smtp, method (*Client) StartTLS(*tls.Config) error +pkg net/smtp, method (*Client) Verify(string) error +pkg net/smtp, type Auth interface { Next, Start } +pkg net/smtp, type Auth interface, Next([]uint8, bool) ([]uint8, error) +pkg net/smtp, type Auth interface, Start(*ServerInfo) (string, []uint8, error) +pkg net/smtp, type Client struct +pkg net/smtp, type Client struct, Text *textproto.Conn +pkg net/smtp, type ServerInfo struct +pkg net/smtp, type ServerInfo struct, Auth []string +pkg net/smtp, type ServerInfo struct, Name string +pkg net/smtp, type ServerInfo struct, TLS bool +pkg net/textproto, func CanonicalMIMEHeaderKey(string) string +pkg net/textproto, func Dial(string, string) (*Conn, error) +pkg net/textproto, func NewConn(io.ReadWriteCloser) *Conn +pkg net/textproto, func NewReader(*bufio.Reader) *Reader +pkg net/textproto, func NewWriter(*bufio.Writer) *Writer +pkg net/textproto, method (*Conn) Close() error +pkg net/textproto, method (*Conn) Cmd(string, ...interface{}) (uint, error) +pkg net/textproto, method (*Conn) DotReader() io.Reader +pkg net/textproto, method (*Conn) DotWriter() io.WriteCloser +pkg net/textproto, method (*Conn) EndRequest(uint) +pkg net/textproto, method (*Conn) EndResponse(uint) +pkg net/textproto, method (*Conn) Next() uint +pkg net/textproto, method (*Conn) PrintfLine(string, ...interface{}) error +pkg net/textproto, method (*Conn) ReadCodeLine(int) (int, string, error) +pkg net/textproto, method (*Conn) ReadContinuedLine() (string, error) +pkg net/textproto, method (*Conn) ReadContinuedLineBytes() ([]uint8, error) +pkg net/textproto, method (*Conn) ReadDotBytes() ([]uint8, error) +pkg net/textproto, method (*Conn) ReadDotLines() ([]string, error) +pkg net/textproto, method (*Conn) ReadLine() (string, error) +pkg net/textproto, method (*Conn) ReadLineBytes() ([]uint8, error) +pkg net/textproto, method (*Conn) ReadMIMEHeader() (MIMEHeader, error) +pkg net/textproto, method (*Conn) ReadResponse(int) (int, string, error) +pkg net/textproto, method (*Conn) StartRequest(uint) +pkg net/textproto, method (*Conn) StartResponse(uint) +pkg net/textproto, method (*Error) Error() string +pkg net/textproto, method (*Pipeline) EndRequest(uint) +pkg net/textproto, method (*Pipeline) EndResponse(uint) +pkg net/textproto, method (*Pipeline) Next() uint +pkg net/textproto, method (*Pipeline) StartRequest(uint) +pkg net/textproto, method (*Pipeline) StartResponse(uint) +pkg net/textproto, method (*Reader) DotReader() io.Reader +pkg net/textproto, method (*Reader) ReadCodeLine(int) (int, string, error) +pkg net/textproto, method (*Reader) ReadContinuedLine() (string, error) +pkg net/textproto, method (*Reader) ReadContinuedLineBytes() ([]uint8, error) +pkg net/textproto, method (*Reader) ReadDotBytes() ([]uint8, error) +pkg net/textproto, method (*Reader) ReadDotLines() ([]string, error) +pkg net/textproto, method (*Reader) ReadLine() (string, error) +pkg net/textproto, method (*Reader) ReadLineBytes() ([]uint8, error) +pkg net/textproto, method (*Reader) ReadMIMEHeader() (MIMEHeader, error) +pkg net/textproto, method (*Reader) ReadResponse(int) (int, string, error) +pkg net/textproto, method (*Writer) DotWriter() io.WriteCloser +pkg net/textproto, method (*Writer) PrintfLine(string, ...interface{}) error +pkg net/textproto, method (MIMEHeader) Add(string, string) +pkg net/textproto, method (MIMEHeader) Del(string) +pkg net/textproto, method (MIMEHeader) Get(string) string +pkg net/textproto, method (MIMEHeader) Set(string, string) +pkg net/textproto, method (ProtocolError) Error() string +pkg net/textproto, type Conn struct +pkg net/textproto, type Conn struct, embedded Pipeline +pkg net/textproto, type Conn struct, embedded Reader +pkg net/textproto, type Conn struct, embedded Writer +pkg net/textproto, type Error struct +pkg net/textproto, type Error struct, Code int +pkg net/textproto, type Error struct, Msg string +pkg net/textproto, type MIMEHeader map[string][]string +pkg net/textproto, type Pipeline struct +pkg net/textproto, type ProtocolError string +pkg net/textproto, type Reader struct +pkg net/textproto, type Reader struct, R *bufio.Reader +pkg net/textproto, type Writer struct +pkg net/textproto, type Writer struct, W *bufio.Writer +pkg net/url, func Parse(string) (*URL, error) +pkg net/url, func ParseQuery(string) (Values, error) +pkg net/url, func ParseRequestURI(string) (*URL, error) +pkg net/url, func QueryEscape(string) string +pkg net/url, func QueryUnescape(string) (string, error) +pkg net/url, func User(string) *Userinfo +pkg net/url, func UserPassword(string, string) *Userinfo +pkg net/url, method (*Error) Error() string +pkg net/url, method (*URL) IsAbs() bool +pkg net/url, method (*URL) Parse(string) (*URL, error) +pkg net/url, method (*URL) Query() Values +pkg net/url, method (*URL) RequestURI() string +pkg net/url, method (*URL) ResolveReference(*URL) *URL +pkg net/url, method (*URL) String() string +pkg net/url, method (*Userinfo) Password() (string, bool) +pkg net/url, method (*Userinfo) String() string +pkg net/url, method (*Userinfo) Username() string +pkg net/url, method (EscapeError) Error() string +pkg net/url, method (Values) Add(string, string) +pkg net/url, method (Values) Del(string) +pkg net/url, method (Values) Encode() string +pkg net/url, method (Values) Get(string) string +pkg net/url, method (Values) Set(string, string) +pkg net/url, type Error struct +pkg net/url, type Error struct, Err error +pkg net/url, type Error struct, Op string +pkg net/url, type Error struct, URL string +pkg net/url, type EscapeError string +pkg net/url, type URL struct +pkg net/url, type URL struct, Fragment string +pkg net/url, type URL struct, Host string +pkg net/url, type URL struct, Opaque string +pkg net/url, type URL struct, Path string +pkg net/url, type URL struct, RawQuery string +pkg net/url, type URL struct, Scheme string +pkg net/url, type URL struct, User *Userinfo +pkg net/url, type Userinfo struct +pkg net/url, type Values map[string][]string +pkg os, const DevNull ideal-string +pkg os, const ModeAppend FileMode +pkg os, const ModeCharDevice FileMode +pkg os, const ModeDevice FileMode +pkg os, const ModeDir FileMode +pkg os, const ModeExclusive FileMode +pkg os, const ModeNamedPipe FileMode +pkg os, const ModePerm FileMode +pkg os, const ModeSetgid FileMode +pkg os, const ModeSetuid FileMode +pkg os, const ModeSocket FileMode +pkg os, const ModeSticky FileMode +pkg os, const ModeSymlink FileMode +pkg os, const ModeTemporary FileMode +pkg os, const ModeType FileMode +pkg os, const O_APPEND int +pkg os, const O_CREATE int +pkg os, const O_EXCL int +pkg os, const O_RDONLY int +pkg os, const O_RDWR int +pkg os, const O_SYNC int +pkg os, const O_TRUNC int +pkg os, const O_WRONLY int +pkg os, const PathListSeparator ideal-char +pkg os, const PathSeparator ideal-char +pkg os, const SEEK_CUR int +pkg os, const SEEK_END int +pkg os, const SEEK_SET int +pkg os, func Chdir(string) error +pkg os, func Chmod(string, FileMode) error +pkg os, func Chown(string, int, int) error +pkg os, func Chtimes(string, time.Time, time.Time) error +pkg os, func Clearenv() +pkg os, func Create(string) (*File, error) +pkg os, func Environ() []string +pkg os, func Exit(int) +pkg os, func Expand(string, func(string) string) string +pkg os, func ExpandEnv(string) string +pkg os, func FindProcess(int) (*Process, error) +pkg os, func Getegid() int +pkg os, func Getenv(string) string +pkg os, func Geteuid() int +pkg os, func Getgid() int +pkg os, func Getgroups() ([]int, error) +pkg os, func Getpagesize() int +pkg os, func Getpid() int +pkg os, func Getppid() int +pkg os, func Getuid() int +pkg os, func Getwd() (string, error) +pkg os, func Hostname() (string, error) +pkg os, func IsExist(error) bool +pkg os, func IsNotExist(error) bool +pkg os, func IsPathSeparator(uint8) bool +pkg os, func IsPermission(error) bool +pkg os, func Lchown(string, int, int) error +pkg os, func Link(string, string) error +pkg os, func Lstat(string) (FileInfo, error) +pkg os, func Mkdir(string, FileMode) error +pkg os, func MkdirAll(string, FileMode) error +pkg os, func NewFile(uintptr, string) *File +pkg os, func NewSyscallError(string, error) error +pkg os, func Open(string) (*File, error) +pkg os, func OpenFile(string, int, FileMode) (*File, error) +pkg os, func Pipe() (*File, *File, error) +pkg os, func Readlink(string) (string, error) +pkg os, func Remove(string) error +pkg os, func RemoveAll(string) error +pkg os, func Rename(string, string) error +pkg os, func SameFile(FileInfo, FileInfo) bool +pkg os, func Setenv(string, string) error +pkg os, func StartProcess(string, []string, *ProcAttr) (*Process, error) +pkg os, func Stat(string) (FileInfo, error) +pkg os, func Symlink(string, string) error +pkg os, func TempDir() string +pkg os, func Truncate(string, int64) error +pkg os, method (*File) Chdir() error +pkg os, method (*File) Chmod(FileMode) error +pkg os, method (*File) Chown(int, int) error +pkg os, method (*File) Close() error +pkg os, method (*File) Fd() uintptr +pkg os, method (*File) Name() string +pkg os, method (*File) Read([]uint8) (int, error) +pkg os, method (*File) ReadAt([]uint8, int64) (int, error) +pkg os, method (*File) Readdir(int) ([]FileInfo, error) +pkg os, method (*File) Readdirnames(int) ([]string, error) +pkg os, method (*File) Seek(int64, int) (int64, error) +pkg os, method (*File) Stat() (FileInfo, error) +pkg os, method (*File) Sync() error +pkg os, method (*File) Truncate(int64) error +pkg os, method (*File) Write([]uint8) (int, error) +pkg os, method (*File) WriteAt([]uint8, int64) (int, error) +pkg os, method (*File) WriteString(string) (int, error) +pkg os, method (*LinkError) Error() string +pkg os, method (*PathError) Error() string +pkg os, method (*Process) Kill() error +pkg os, method (*Process) Release() error +pkg os, method (*Process) Signal(Signal) error +pkg os, method (*Process) Wait() (*ProcessState, error) +pkg os, method (*ProcessState) Exited() bool +pkg os, method (*ProcessState) Pid() int +pkg os, method (*ProcessState) String() string +pkg os, method (*ProcessState) Success() bool +pkg os, method (*ProcessState) Sys() interface{} +pkg os, method (*ProcessState) SysUsage() interface{} +pkg os, method (*ProcessState) SystemTime() time.Duration +pkg os, method (*ProcessState) UserTime() time.Duration +pkg os, method (*SyscallError) Error() string +pkg os, method (FileMode) IsDir() bool +pkg os, method (FileMode) Perm() FileMode +pkg os, method (FileMode) String() string +pkg os, type File struct +pkg os, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys } +pkg os, type FileInfo interface, IsDir() bool +pkg os, type FileInfo interface, ModTime() time.Time +pkg os, type FileInfo interface, Mode() FileMode +pkg os, type FileInfo interface, Name() string +pkg os, type FileInfo interface, Size() int64 +pkg os, type FileInfo interface, Sys() interface{} +pkg os, type FileMode uint32 +pkg os, type LinkError struct +pkg os, type LinkError struct, Err error +pkg os, type LinkError struct, New string +pkg os, type LinkError struct, Old string +pkg os, type LinkError struct, Op string +pkg os, type PathError struct +pkg os, type PathError struct, Err error +pkg os, type PathError struct, Op string +pkg os, type PathError struct, Path string +pkg os, type ProcAttr struct +pkg os, type ProcAttr struct, Dir string +pkg os, type ProcAttr struct, Env []string +pkg os, type ProcAttr struct, Files []*File +pkg os, type ProcAttr struct, Sys *syscall.SysProcAttr +pkg os, type Process struct +pkg os, type Process struct, Pid int +pkg os, type ProcessState struct +pkg os, type Signal interface { Signal, String } +pkg os, type Signal interface, Signal() +pkg os, type Signal interface, String() string +pkg os, type SyscallError struct +pkg os, type SyscallError struct, Err error +pkg os, type SyscallError struct, Syscall string +pkg os, var Args []string +pkg os, var ErrExist error +pkg os, var ErrInvalid error +pkg os, var ErrNotExist error +pkg os, var ErrPermission error +pkg os, var Interrupt Signal +pkg os, var Kill Signal +pkg os, var Stderr *File +pkg os, var Stdin *File +pkg os, var Stdout *File +pkg os/exec, func Command(string, ...string) *Cmd +pkg os/exec, func LookPath(string) (string, error) +pkg os/exec, method (*Cmd) CombinedOutput() ([]uint8, error) +pkg os/exec, method (*Cmd) Output() ([]uint8, error) +pkg os/exec, method (*Cmd) Run() error +pkg os/exec, method (*Cmd) Start() error +pkg os/exec, method (*Cmd) StderrPipe() (io.ReadCloser, error) +pkg os/exec, method (*Cmd) StdinPipe() (io.WriteCloser, error) +pkg os/exec, method (*Cmd) StdoutPipe() (io.ReadCloser, error) +pkg os/exec, method (*Cmd) Wait() error +pkg os/exec, method (*Error) Error() string +pkg os/exec, method (*ExitError) Error() string +pkg os/exec, method (ExitError) Exited() bool +pkg os/exec, method (ExitError) Pid() int +pkg os/exec, method (ExitError) String() string +pkg os/exec, method (ExitError) Success() bool +pkg os/exec, method (ExitError) Sys() interface{} +pkg os/exec, method (ExitError) SysUsage() interface{} +pkg os/exec, method (ExitError) SystemTime() time.Duration +pkg os/exec, method (ExitError) UserTime() time.Duration +pkg os/exec, type Cmd struct +pkg os/exec, type Cmd struct, Args []string +pkg os/exec, type Cmd struct, Dir string +pkg os/exec, type Cmd struct, Env []string +pkg os/exec, type Cmd struct, ExtraFiles []*os.File +pkg os/exec, type Cmd struct, Path string +pkg os/exec, type Cmd struct, Process *os.Process +pkg os/exec, type Cmd struct, ProcessState *os.ProcessState +pkg os/exec, type Cmd struct, Stderr io.Writer +pkg os/exec, type Cmd struct, Stdin io.Reader +pkg os/exec, type Cmd struct, Stdout io.Writer +pkg os/exec, type Cmd struct, SysProcAttr *syscall.SysProcAttr +pkg os/exec, type Error struct +pkg os/exec, type Error struct, Err error +pkg os/exec, type Error struct, Name string +pkg os/exec, type ExitError struct +pkg os/exec, type ExitError struct, embedded *os.ProcessState +pkg os/exec, var ErrNotFound error +pkg os/signal, func Notify(chan<- os.Signal, ...os.Signal) +pkg os/user, func Current() (*User, error) +pkg os/user, func Lookup(string) (*User, error) +pkg os/user, func LookupId(string) (*User, error) +pkg os/user, method (UnknownUserError) Error() string +pkg os/user, method (UnknownUserIdError) Error() string +pkg os/user, type UnknownUserError string +pkg os/user, type UnknownUserIdError int +pkg os/user, type User struct +pkg os/user, type User struct, Gid string +pkg os/user, type User struct, HomeDir string +pkg os/user, type User struct, Name string +pkg os/user, type User struct, Uid string +pkg os/user, type User struct, Username string +pkg path, func Base(string) string +pkg path, func Clean(string) string +pkg path, func Dir(string) string +pkg path, func Ext(string) string +pkg path, func IsAbs(string) bool +pkg path, func Join(...string) string +pkg path, func Match(string, string) (bool, error) +pkg path, func Split(string) (string, string) +pkg path, var ErrBadPattern error +pkg path/filepath, const ListSeparator ideal-char +pkg path/filepath, const Separator ideal-char +pkg path/filepath, func Abs(string) (string, error) +pkg path/filepath, func Base(string) string +pkg path/filepath, func Clean(string) string +pkg path/filepath, func Dir(string) string +pkg path/filepath, func EvalSymlinks(string) (string, error) +pkg path/filepath, func Ext(string) string +pkg path/filepath, func FromSlash(string) string +pkg path/filepath, func Glob(string) ([]string, error) +pkg path/filepath, func HasPrefix(string, string) bool +pkg path/filepath, func IsAbs(string) bool +pkg path/filepath, func Join(...string) string +pkg path/filepath, func Match(string, string) (bool, error) +pkg path/filepath, func Rel(string, string) (string, error) +pkg path/filepath, func Split(string) (string, string) +pkg path/filepath, func SplitList(string) []string +pkg path/filepath, func ToSlash(string) string +pkg path/filepath, func VolumeName(string) string +pkg path/filepath, func Walk(string, WalkFunc) error +pkg path/filepath, type WalkFunc func(string, os.FileInfo, error) error +pkg path/filepath, var ErrBadPattern error +pkg path/filepath, var SkipDir error +pkg reflect, const Array Kind +pkg reflect, const Bool Kind +pkg reflect, const BothDir ChanDir +pkg reflect, const Chan Kind +pkg reflect, const Complex128 Kind +pkg reflect, const Complex64 Kind +pkg reflect, const Float32 Kind +pkg reflect, const Float64 Kind +pkg reflect, const Func Kind +pkg reflect, const Int Kind +pkg reflect, const Int16 Kind +pkg reflect, const Int32 Kind +pkg reflect, const Int64 Kind +pkg reflect, const Int8 Kind +pkg reflect, const Interface Kind +pkg reflect, const Invalid Kind +pkg reflect, const Map Kind +pkg reflect, const Ptr Kind +pkg reflect, const RecvDir ChanDir +pkg reflect, const SendDir ChanDir +pkg reflect, const Slice Kind +pkg reflect, const String Kind +pkg reflect, const Struct Kind +pkg reflect, const Uint Kind +pkg reflect, const Uint16 Kind +pkg reflect, const Uint32 Kind +pkg reflect, const Uint64 Kind +pkg reflect, const Uint8 Kind +pkg reflect, const Uintptr Kind +pkg reflect, const UnsafePointer Kind +pkg reflect, func Append(Value, ...Value) Value +pkg reflect, func AppendSlice(Value, Value) Value +pkg reflect, func Copy(Value, Value) int +pkg reflect, func DeepEqual(interface{}, interface{}) bool +pkg reflect, func Indirect(Value) Value +pkg reflect, func MakeChan(Type, int) Value +pkg reflect, func MakeMap(Type) Value +pkg reflect, func MakeSlice(Type, int, int) Value +pkg reflect, func New(Type) Value +pkg reflect, func NewAt(Type, unsafe.Pointer) Value +pkg reflect, func PtrTo(Type) Type +pkg reflect, func TypeOf(interface{}) Type +pkg reflect, func ValueOf(interface{}) Value +pkg reflect, func Zero(Type) Value +pkg reflect, method (*ValueError) Error() string +pkg reflect, method (ChanDir) String() string +pkg reflect, method (Kind) String() string +pkg reflect, method (StructTag) Get(string) string +pkg reflect, method (Value) Addr() Value +pkg reflect, method (Value) Bool() bool +pkg reflect, method (Value) Bytes() []uint8 +pkg reflect, method (Value) Call([]Value) []Value +pkg reflect, method (Value) CallSlice([]Value) []Value +pkg reflect, method (Value) CanAddr() bool +pkg reflect, method (Value) CanInterface() bool +pkg reflect, method (Value) CanSet() bool +pkg reflect, method (Value) Cap() int +pkg reflect, method (Value) Close() +pkg reflect, method (Value) Complex() complex128 +pkg reflect, method (Value) Elem() Value +pkg reflect, method (Value) Field(int) Value +pkg reflect, method (Value) FieldByIndex([]int) Value +pkg reflect, method (Value) FieldByName(string) Value +pkg reflect, method (Value) FieldByNameFunc(func(string) bool) Value +pkg reflect, method (Value) Float() float64 +pkg reflect, method (Value) Index(int) Value +pkg reflect, method (Value) Int() int64 +pkg reflect, method (Value) Interface() interface{} +pkg reflect, method (Value) InterfaceData() [2]uintptr +pkg reflect, method (Value) IsNil() bool +pkg reflect, method (Value) IsValid() bool +pkg reflect, method (Value) Kind() Kind +pkg reflect, method (Value) Len() int +pkg reflect, method (Value) MapIndex(Value) Value +pkg reflect, method (Value) MapKeys() []Value +pkg reflect, method (Value) Method(int) Value +pkg reflect, method (Value) MethodByName(string) Value +pkg reflect, method (Value) NumField() int +pkg reflect, method (Value) NumMethod() int +pkg reflect, method (Value) OverflowComplex(complex128) bool +pkg reflect, method (Value) OverflowFloat(float64) bool +pkg reflect, method (Value) OverflowInt(int64) bool +pkg reflect, method (Value) OverflowUint(uint64) bool +pkg reflect, method (Value) Pointer() uintptr +pkg reflect, method (Value) Recv() (Value, bool) +pkg reflect, method (Value) Send(Value) +pkg reflect, method (Value) Set(Value) +pkg reflect, method (Value) SetBool(bool) +pkg reflect, method (Value) SetBytes([]uint8) +pkg reflect, method (Value) SetComplex(complex128) +pkg reflect, method (Value) SetFloat(float64) +pkg reflect, method (Value) SetInt(int64) +pkg reflect, method (Value) SetLen(int) +pkg reflect, method (Value) SetMapIndex(Value, Value) +pkg reflect, method (Value) SetPointer(unsafe.Pointer) +pkg reflect, method (Value) SetString(string) +pkg reflect, method (Value) SetUint(uint64) +pkg reflect, method (Value) Slice(int, int) Value +pkg reflect, method (Value) String() string +pkg reflect, method (Value) TryRecv() (Value, bool) +pkg reflect, method (Value) TrySend(Value) bool +pkg reflect, method (Value) Type() Type +pkg reflect, method (Value) Uint() uint64 +pkg reflect, method (Value) UnsafeAddr() uintptr +pkg reflect, type ChanDir int +pkg reflect, type Kind uint +pkg reflect, type Method struct +pkg reflect, type Method struct, Func Value +pkg reflect, type Method struct, Index int +pkg reflect, type Method struct, Name string +pkg reflect, type Method struct, PkgPath string +pkg reflect, type Method struct, Type Type +pkg reflect, type SliceHeader struct +pkg reflect, type SliceHeader struct, Cap int +pkg reflect, type SliceHeader struct, Data uintptr +pkg reflect, type SliceHeader struct, Len int +pkg reflect, type StringHeader struct +pkg reflect, type StringHeader struct, Data uintptr +pkg reflect, type StringHeader struct, Len int +pkg reflect, type StructField struct +pkg reflect, type StructField struct, Anonymous bool +pkg reflect, type StructField struct, Index []int +pkg reflect, type StructField struct, Name string +pkg reflect, type StructField struct, Offset uintptr +pkg reflect, type StructField struct, PkgPath string +pkg reflect, type StructField struct, Tag StructTag +pkg reflect, type StructField struct, Type Type +pkg reflect, type StructTag string +pkg reflect, type Type interface, Align() int +pkg reflect, type Type interface, AssignableTo(Type) bool +pkg reflect, type Type interface, Bits() int +pkg reflect, type Type interface, ChanDir() ChanDir +pkg reflect, type Type interface, Elem() Type +pkg reflect, type Type interface, Field(int) StructField +pkg reflect, type Type interface, FieldAlign() int +pkg reflect, type Type interface, FieldByIndex([]int) StructField +pkg reflect, type Type interface, FieldByName(string) (StructField, bool) +pkg reflect, type Type interface, FieldByNameFunc(func(string) bool) (StructField, bool) +pkg reflect, type Type interface, Implements(Type) bool +pkg reflect, type Type interface, In(int) Type +pkg reflect, type Type interface, IsVariadic() bool +pkg reflect, type Type interface, Key() Type +pkg reflect, type Type interface, Kind() Kind +pkg reflect, type Type interface, Len() int +pkg reflect, type Type interface, Method(int) Method +pkg reflect, type Type interface, MethodByName(string) (Method, bool) +pkg reflect, type Type interface, Name() string +pkg reflect, type Type interface, NumField() int +pkg reflect, type Type interface, NumIn() int +pkg reflect, type Type interface, NumMethod() int +pkg reflect, type Type interface, NumOut() int +pkg reflect, type Type interface, Out(int) Type +pkg reflect, type Type interface, PkgPath() string +pkg reflect, type Type interface, Size() uintptr +pkg reflect, type Type interface, String() string +pkg reflect, type Type interface, unexported methods +pkg reflect, type Value struct +pkg reflect, type ValueError struct +pkg reflect, type ValueError struct, Kind Kind +pkg reflect, type ValueError struct, Method string +pkg regexp, func Compile(string) (*Regexp, error) +pkg regexp, func CompilePOSIX(string) (*Regexp, error) +pkg regexp, func Match(string, []uint8) (bool, error) +pkg regexp, func MatchReader(string, io.RuneReader) (bool, error) +pkg regexp, func MatchString(string, string) (bool, error) +pkg regexp, func MustCompile(string) *Regexp +pkg regexp, func MustCompilePOSIX(string) *Regexp +pkg regexp, func QuoteMeta(string) string +pkg regexp, method (*Regexp) Expand([]uint8, []uint8, []uint8, []int) []uint8 +pkg regexp, method (*Regexp) ExpandString([]uint8, string, string, []int) []uint8 +pkg regexp, method (*Regexp) Find([]uint8) []uint8 +pkg regexp, method (*Regexp) FindAll([]uint8, int) [][]uint8 +pkg regexp, method (*Regexp) FindAllIndex([]uint8, int) [][]int +pkg regexp, method (*Regexp) FindAllString(string, int) []string +pkg regexp, method (*Regexp) FindAllStringIndex(string, int) [][]int +pkg regexp, method (*Regexp) FindAllStringSubmatch(string, int) [][]string +pkg regexp, method (*Regexp) FindAllStringSubmatchIndex(string, int) [][]int +pkg regexp, method (*Regexp) FindAllSubmatch([]uint8, int) [][][]uint8 +pkg regexp, method (*Regexp) FindAllSubmatchIndex([]uint8, int) [][]int +pkg regexp, method (*Regexp) FindIndex([]uint8) []int +pkg regexp, method (*Regexp) FindReaderIndex(io.RuneReader) []int +pkg regexp, method (*Regexp) FindReaderSubmatchIndex(io.RuneReader) []int +pkg regexp, method (*Regexp) FindString(string) string +pkg regexp, method (*Regexp) FindStringIndex(string) []int +pkg regexp, method (*Regexp) FindStringSubmatch(string) []string +pkg regexp, method (*Regexp) FindStringSubmatchIndex(string) []int +pkg regexp, method (*Regexp) FindSubmatch([]uint8) [][]uint8 +pkg regexp, method (*Regexp) FindSubmatchIndex([]uint8) []int +pkg regexp, method (*Regexp) LiteralPrefix() (string, bool) +pkg regexp, method (*Regexp) Match([]uint8) bool +pkg regexp, method (*Regexp) MatchReader(io.RuneReader) bool +pkg regexp, method (*Regexp) MatchString(string) bool +pkg regexp, method (*Regexp) NumSubexp() int +pkg regexp, method (*Regexp) ReplaceAll([]uint8, []uint8) []uint8 +pkg regexp, method (*Regexp) ReplaceAllFunc([]uint8, func([]uint8) []uint8) []uint8 +pkg regexp, method (*Regexp) ReplaceAllLiteral([]uint8, []uint8) []uint8 +pkg regexp, method (*Regexp) ReplaceAllLiteralString(string, string) string +pkg regexp, method (*Regexp) ReplaceAllString(string, string) string +pkg regexp, method (*Regexp) ReplaceAllStringFunc(string, func(string) string) string +pkg regexp, method (*Regexp) String() string +pkg regexp, method (*Regexp) SubexpNames() []string +pkg regexp, type Regexp struct +pkg regexp/syntax, const ClassNL Flags +pkg regexp/syntax, const DotNL Flags +pkg regexp/syntax, const EmptyBeginLine EmptyOp +pkg regexp/syntax, const EmptyBeginText EmptyOp +pkg regexp/syntax, const EmptyEndLine EmptyOp +pkg regexp/syntax, const EmptyEndText EmptyOp +pkg regexp/syntax, const EmptyNoWordBoundary EmptyOp +pkg regexp/syntax, const EmptyWordBoundary EmptyOp +pkg regexp/syntax, const ErrInternalError ErrorCode +pkg regexp/syntax, const ErrInvalidCharClass ErrorCode +pkg regexp/syntax, const ErrInvalidCharRange ErrorCode +pkg regexp/syntax, const ErrInvalidEscape ErrorCode +pkg regexp/syntax, const ErrInvalidNamedCapture ErrorCode +pkg regexp/syntax, const ErrInvalidPerlOp ErrorCode +pkg regexp/syntax, const ErrInvalidRepeatOp ErrorCode +pkg regexp/syntax, const ErrInvalidRepeatSize ErrorCode +pkg regexp/syntax, const ErrInvalidUTF8 ErrorCode +pkg regexp/syntax, const ErrMissingBracket ErrorCode +pkg regexp/syntax, const ErrMissingParen ErrorCode +pkg regexp/syntax, const ErrMissingRepeatArgument ErrorCode +pkg regexp/syntax, const ErrTrailingBackslash ErrorCode +pkg regexp/syntax, const FoldCase Flags +pkg regexp/syntax, const InstAlt InstOp +pkg regexp/syntax, const InstAltMatch InstOp +pkg regexp/syntax, const InstCapture InstOp +pkg regexp/syntax, const InstEmptyWidth InstOp +pkg regexp/syntax, const InstFail InstOp +pkg regexp/syntax, const InstMatch InstOp +pkg regexp/syntax, const InstNop InstOp +pkg regexp/syntax, const InstRune InstOp +pkg regexp/syntax, const InstRune1 InstOp +pkg regexp/syntax, const InstRuneAny InstOp +pkg regexp/syntax, const InstRuneAnyNotNL InstOp +pkg regexp/syntax, const Literal Flags +pkg regexp/syntax, const MatchNL Flags +pkg regexp/syntax, const NonGreedy Flags +pkg regexp/syntax, const OneLine Flags +pkg regexp/syntax, const OpAlternate Op +pkg regexp/syntax, const OpAnyChar Op +pkg regexp/syntax, const OpAnyCharNotNL Op +pkg regexp/syntax, const OpBeginLine Op +pkg regexp/syntax, const OpBeginText Op +pkg regexp/syntax, const OpCapture Op +pkg regexp/syntax, const OpCharClass Op +pkg regexp/syntax, const OpConcat Op +pkg regexp/syntax, const OpEmptyMatch Op +pkg regexp/syntax, const OpEndLine Op +pkg regexp/syntax, const OpEndText Op +pkg regexp/syntax, const OpLiteral Op +pkg regexp/syntax, const OpNoMatch Op +pkg regexp/syntax, const OpNoWordBoundary Op +pkg regexp/syntax, const OpPlus Op +pkg regexp/syntax, const OpQuest Op +pkg regexp/syntax, const OpRepeat Op +pkg regexp/syntax, const OpStar Op +pkg regexp/syntax, const OpWordBoundary Op +pkg regexp/syntax, const POSIX Flags +pkg regexp/syntax, const Perl Flags +pkg regexp/syntax, const PerlX Flags +pkg regexp/syntax, const Simple Flags +pkg regexp/syntax, const UnicodeGroups Flags +pkg regexp/syntax, const WasDollar Flags +pkg regexp/syntax, func Compile(*Regexp) (*Prog, error) +pkg regexp/syntax, func EmptyOpContext(int32, int32) EmptyOp +pkg regexp/syntax, func IsWordChar(int32) bool +pkg regexp/syntax, func Parse(string, Flags) (*Regexp, error) +pkg regexp/syntax, method (*Error) Error() string +pkg regexp/syntax, method (*Inst) MatchEmptyWidth(int32, int32) bool +pkg regexp/syntax, method (*Inst) MatchRune(int32) bool +pkg regexp/syntax, method (*Inst) String() string +pkg regexp/syntax, method (*Prog) Prefix() (string, bool) +pkg regexp/syntax, method (*Prog) StartCond() EmptyOp +pkg regexp/syntax, method (*Prog) String() string +pkg regexp/syntax, method (*Regexp) CapNames() []string +pkg regexp/syntax, method (*Regexp) Equal(*Regexp) bool +pkg regexp/syntax, method (*Regexp) MaxCap() int +pkg regexp/syntax, method (*Regexp) Simplify() *Regexp +pkg regexp/syntax, method (*Regexp) String() string +pkg regexp/syntax, method (ErrorCode) String() string +pkg regexp/syntax, type EmptyOp uint8 +pkg regexp/syntax, type Error struct +pkg regexp/syntax, type Error struct, Code ErrorCode +pkg regexp/syntax, type Error struct, Expr string +pkg regexp/syntax, type ErrorCode string +pkg regexp/syntax, type Flags uint16 +pkg regexp/syntax, type Inst struct +pkg regexp/syntax, type Inst struct, Arg uint32 +pkg regexp/syntax, type Inst struct, Op InstOp +pkg regexp/syntax, type Inst struct, Out uint32 +pkg regexp/syntax, type Inst struct, Rune []int32 +pkg regexp/syntax, type InstOp uint8 +pkg regexp/syntax, type Op uint8 +pkg regexp/syntax, type Prog struct +pkg regexp/syntax, type Prog struct, Inst []Inst +pkg regexp/syntax, type Prog struct, NumCap int +pkg regexp/syntax, type Prog struct, Start int +pkg regexp/syntax, type Regexp struct +pkg regexp/syntax, type Regexp struct, Cap int +pkg regexp/syntax, type Regexp struct, Flags Flags +pkg regexp/syntax, type Regexp struct, Max int +pkg regexp/syntax, type Regexp struct, Min int +pkg regexp/syntax, type Regexp struct, Name string +pkg regexp/syntax, type Regexp struct, Op Op +pkg regexp/syntax, type Regexp struct, Rune []int32 +pkg regexp/syntax, type Regexp struct, Rune0 [2]int32 +pkg regexp/syntax, type Regexp struct, Sub []*Regexp +pkg regexp/syntax, type Regexp struct, Sub0 [1]*Regexp +pkg runtime, const Compiler ideal-string +pkg runtime, const GOARCH string +pkg runtime, const GOOS string +pkg runtime, func Breakpoint() +pkg runtime, func CPUProfile() []uint8 +pkg runtime, func Caller(int) (uintptr, string, int, bool) +pkg runtime, func Callers(int, []uintptr) int +pkg runtime, func FuncForPC(uintptr) *Func +pkg runtime, func GC() +pkg runtime, func GOMAXPROCS(int) int +pkg runtime, func GOROOT() string +pkg runtime, func Goexit() +pkg runtime, func GoroutineProfile([]StackRecord) (int, bool) +pkg runtime, func Gosched() +pkg runtime, func LockOSThread() +pkg runtime, func MemProfile([]MemProfileRecord, bool) (int, bool) +pkg runtime, func NumCPU() int +pkg runtime, func NumCgoCall() int64 +pkg runtime, func NumGoroutine() int +pkg runtime, func ReadMemStats(*MemStats) +pkg runtime, func SetCPUProfileRate(int) +pkg runtime, func SetFinalizer(interface{}, interface{}) +pkg runtime, func Stack([]uint8, bool) int +pkg runtime, func ThreadCreateProfile([]StackRecord) (int, bool) +pkg runtime, func UnlockOSThread() +pkg runtime, func Version() string +pkg runtime, method (*Func) Entry() uintptr +pkg runtime, method (*Func) FileLine(uintptr) (string, int) +pkg runtime, method (*Func) Name() string +pkg runtime, method (*MemProfileRecord) InUseBytes() int64 +pkg runtime, method (*MemProfileRecord) InUseObjects() int64 +pkg runtime, method (*MemProfileRecord) Stack() []uintptr +pkg runtime, method (*StackRecord) Stack() []uintptr +pkg runtime, method (*TypeAssertionError) Error() string +pkg runtime, method (*TypeAssertionError) RuntimeError() +pkg runtime, type Error interface { Error, RuntimeError } +pkg runtime, type Error interface, Error() string +pkg runtime, type Error interface, RuntimeError() +pkg runtime, type Func struct +pkg runtime, type MemProfileRecord struct +pkg runtime, type MemProfileRecord struct, AllocBytes int64 +pkg runtime, type MemProfileRecord struct, AllocObjects int64 +pkg runtime, type MemProfileRecord struct, FreeBytes int64 +pkg runtime, type MemProfileRecord struct, FreeObjects int64 +pkg runtime, type MemProfileRecord struct, Stack0 [32]uintptr +pkg runtime, type MemStats struct +pkg runtime, type MemStats struct, Alloc uint64 +pkg runtime, type MemStats struct, BuckHashSys uint64 +pkg runtime, type MemStats struct, BySize [61]struct +pkg runtime, type MemStats struct, DebugGC bool +pkg runtime, type MemStats struct, EnableGC bool +pkg runtime, type MemStats struct, Frees uint64 +pkg runtime, type MemStats struct, HeapAlloc uint64 +pkg runtime, type MemStats struct, HeapIdle uint64 +pkg runtime, type MemStats struct, HeapInuse uint64 +pkg runtime, type MemStats struct, HeapObjects uint64 +pkg runtime, type MemStats struct, HeapReleased uint64 +pkg runtime, type MemStats struct, HeapSys uint64 +pkg runtime, type MemStats struct, LastGC uint64 +pkg runtime, type MemStats struct, Lookups uint64 +pkg runtime, type MemStats struct, MCacheInuse uint64 +pkg runtime, type MemStats struct, MCacheSys uint64 +pkg runtime, type MemStats struct, MSpanInuse uint64 +pkg runtime, type MemStats struct, MSpanSys uint64 +pkg runtime, type MemStats struct, Mallocs uint64 +pkg runtime, type MemStats struct, NextGC uint64 +pkg runtime, type MemStats struct, NumGC uint32 +pkg runtime, type MemStats struct, PauseNs [256]uint64 +pkg runtime, type MemStats struct, PauseTotalNs uint64 +pkg runtime, type MemStats struct, StackInuse uint64 +pkg runtime, type MemStats struct, StackSys uint64 +pkg runtime, type MemStats struct, Sys uint64 +pkg runtime, type MemStats struct, TotalAlloc uint64 +pkg runtime, type StackRecord struct +pkg runtime, type StackRecord struct, Stack0 [32]uintptr +pkg runtime, type TypeAssertionError struct +pkg runtime, var MemProfileRate int +pkg runtime/debug, func PrintStack() +pkg runtime/debug, func Stack() []uint8 +pkg runtime/pprof, func Lookup(string) *Profile +pkg runtime/pprof, func NewProfile(string) *Profile +pkg runtime/pprof, func Profiles() []*Profile +pkg runtime/pprof, func StartCPUProfile(io.Writer) error +pkg runtime/pprof, func StopCPUProfile() +pkg runtime/pprof, func WriteHeapProfile(io.Writer) error +pkg runtime/pprof, method (*Profile) Add(interface{}, int) +pkg runtime/pprof, method (*Profile) Count() int +pkg runtime/pprof, method (*Profile) Name() string +pkg runtime/pprof, method (*Profile) Remove(interface{}) +pkg runtime/pprof, method (*Profile) WriteTo(io.Writer, int) error +pkg runtime/pprof, type Profile struct +pkg sort, func Float64s([]float64) +pkg sort, func Float64sAreSorted([]float64) bool +pkg sort, func Ints([]int) +pkg sort, func IntsAreSorted([]int) bool +pkg sort, func IsSorted(Interface) bool +pkg sort, func Search(int, func(int) bool) int +pkg sort, func SearchFloat64s([]float64, float64) int +pkg sort, func SearchInts([]int, int) int +pkg sort, func SearchStrings([]string, string) int +pkg sort, func Sort(Interface) +pkg sort, func Strings([]string) +pkg sort, func StringsAreSorted([]string) bool +pkg sort, method (Float64Slice) Len() int +pkg sort, method (Float64Slice) Less(int, int) bool +pkg sort, method (Float64Slice) Search(float64) int +pkg sort, method (Float64Slice) Sort() +pkg sort, method (Float64Slice) Swap(int, int) +pkg sort, method (IntSlice) Len() int +pkg sort, method (IntSlice) Less(int, int) bool +pkg sort, method (IntSlice) Search(int) int +pkg sort, method (IntSlice) Sort() +pkg sort, method (IntSlice) Swap(int, int) +pkg sort, method (StringSlice) Len() int +pkg sort, method (StringSlice) Less(int, int) bool +pkg sort, method (StringSlice) Search(string) int +pkg sort, method (StringSlice) Sort() +pkg sort, method (StringSlice) Swap(int, int) +pkg sort, type Float64Slice []float64 +pkg sort, type IntSlice []int +pkg sort, type Interface interface { Len, Less, Swap } +pkg sort, type Interface interface, Len() int +pkg sort, type Interface interface, Less(int, int) bool +pkg sort, type Interface interface, Swap(int, int) +pkg sort, type StringSlice []string +pkg strconv, const IntSize ideal-int +pkg strconv, func AppendBool([]uint8, bool) []uint8 +pkg strconv, func AppendFloat([]uint8, float64, uint8, int, int) []uint8 +pkg strconv, func AppendInt([]uint8, int64, int) []uint8 +pkg strconv, func AppendQuote([]uint8, string) []uint8 +pkg strconv, func AppendQuoteRune([]uint8, int32) []uint8 +pkg strconv, func AppendQuoteRuneToASCII([]uint8, int32) []uint8 +pkg strconv, func AppendQuoteToASCII([]uint8, string) []uint8 +pkg strconv, func AppendUint([]uint8, uint64, int) []uint8 +pkg strconv, func Atoi(string) (int, error) +pkg strconv, func CanBackquote(string) bool +pkg strconv, func FormatBool(bool) string +pkg strconv, func FormatFloat(float64, uint8, int, int) string +pkg strconv, func FormatInt(int64, int) string +pkg strconv, func FormatUint(uint64, int) string +pkg strconv, func IsPrint(int32) bool +pkg strconv, func Itoa(int) string +pkg strconv, func ParseBool(string) (bool, error) +pkg strconv, func ParseFloat(string, int) (float64, error) +pkg strconv, func ParseInt(string, int, int) (int64, error) +pkg strconv, func ParseUint(string, int, int) (uint64, error) +pkg strconv, func Quote(string) string +pkg strconv, func QuoteRune(int32) string +pkg strconv, func QuoteRuneToASCII(int32) string +pkg strconv, func QuoteToASCII(string) string +pkg strconv, func Unquote(string) (string, error) +pkg strconv, func UnquoteChar(string, uint8) (int32, bool, string, error) +pkg strconv, method (*NumError) Error() string +pkg strconv, type NumError struct +pkg strconv, type NumError struct, Err error +pkg strconv, type NumError struct, Func string +pkg strconv, type NumError struct, Num string +pkg strconv, var ErrRange error +pkg strconv, var ErrSyntax error +pkg strings, func Contains(string, string) bool +pkg strings, func ContainsAny(string, string) bool +pkg strings, func ContainsRune(string, int32) bool +pkg strings, func Count(string, string) int +pkg strings, func EqualFold(string, string) bool +pkg strings, func Fields(string) []string +pkg strings, func FieldsFunc(string, func(int32) bool) []string +pkg strings, func HasPrefix(string, string) bool +pkg strings, func HasSuffix(string, string) bool +pkg strings, func Index(string, string) int +pkg strings, func IndexAny(string, string) int +pkg strings, func IndexFunc(string, func(int32) bool) int +pkg strings, func IndexRune(string, int32) int +pkg strings, func Join([]string, string) string +pkg strings, func LastIndex(string, string) int +pkg strings, func LastIndexAny(string, string) int +pkg strings, func LastIndexFunc(string, func(int32) bool) int +pkg strings, func Map(func(int32) int32, string) string +pkg strings, func NewReader(string) *Reader +pkg strings, func NewReplacer(...string) *Replacer +pkg strings, func Repeat(string, int) string +pkg strings, func Replace(string, string, string, int) string +pkg strings, func Split(string, string) []string +pkg strings, func SplitAfter(string, string) []string +pkg strings, func SplitAfterN(string, string, int) []string +pkg strings, func SplitN(string, string, int) []string +pkg strings, func Title(string) string +pkg strings, func ToLower(string) string +pkg strings, func ToLowerSpecial(unicode.SpecialCase, string) string +pkg strings, func ToTitle(string) string +pkg strings, func ToTitleSpecial(unicode.SpecialCase, string) string +pkg strings, func ToUpper(string) string +pkg strings, func ToUpperSpecial(unicode.SpecialCase, string) string +pkg strings, func Trim(string, string) string +pkg strings, func TrimFunc(string, func(int32) bool) string +pkg strings, func TrimLeft(string, string) string +pkg strings, func TrimLeftFunc(string, func(int32) bool) string +pkg strings, func TrimRight(string, string) string +pkg strings, func TrimRightFunc(string, func(int32) bool) string +pkg strings, func TrimSpace(string) string +pkg strings, method (*Reader) Len() int +pkg strings, method (*Reader) Read([]uint8) (int, error) +pkg strings, method (*Reader) ReadAt([]uint8, int64) (int, error) +pkg strings, method (*Reader) ReadByte() (uint8, error) +pkg strings, method (*Reader) ReadRune() (int32, int, error) +pkg strings, method (*Reader) Seek(int64, int) (int64, error) +pkg strings, method (*Reader) UnreadByte() error +pkg strings, method (*Reader) UnreadRune() error +pkg strings, method (*Replacer) Replace(string) string +pkg strings, method (*Replacer) WriteString(io.Writer, string) (int, error) +pkg strings, type Reader struct +pkg strings, type Replacer struct +pkg sync, func NewCond(Locker) *Cond +pkg sync, method (*Cond) Broadcast() +pkg sync, method (*Cond) Signal() +pkg sync, method (*Cond) Wait() +pkg sync, method (*Mutex) Lock() +pkg sync, method (*Mutex) Unlock() +pkg sync, method (*Once) Do(func()) +pkg sync, method (*RWMutex) Lock() +pkg sync, method (*RWMutex) RLock() +pkg sync, method (*RWMutex) RLocker() Locker +pkg sync, method (*RWMutex) RUnlock() +pkg sync, method (*RWMutex) Unlock() +pkg sync, method (*WaitGroup) Add(int) +pkg sync, method (*WaitGroup) Done() +pkg sync, method (*WaitGroup) Wait() +pkg sync, type Cond struct +pkg sync, type Cond struct, L Locker +pkg sync, type Locker interface { Lock, Unlock } +pkg sync, type Locker interface, Lock() +pkg sync, type Locker interface, Unlock() +pkg sync, type Mutex struct +pkg sync, type Once struct +pkg sync, type RWMutex struct +pkg sync, type WaitGroup struct +pkg sync/atomic, func AddInt32(*int32, int32) int32 +pkg sync/atomic, func AddInt64(*int64, int64) int64 +pkg sync/atomic, func AddUint32(*uint32, uint32) uint32 +pkg sync/atomic, func AddUint64(*uint64, uint64) uint64 +pkg sync/atomic, func AddUintptr(*uintptr, uintptr) uintptr +pkg sync/atomic, func CompareAndSwapInt32(*int32, int32, int32) bool +pkg sync/atomic, func CompareAndSwapInt64(*int64, int64, int64) bool +pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) bool +pkg sync/atomic, func CompareAndSwapUint32(*uint32, uint32, uint32) bool +pkg sync/atomic, func CompareAndSwapUint64(*uint64, uint64, uint64) bool +pkg sync/atomic, func CompareAndSwapUintptr(*uintptr, uintptr, uintptr) bool +pkg sync/atomic, func LoadInt32(*int32) int32 +pkg sync/atomic, func LoadInt64(*int64) int64 +pkg sync/atomic, func LoadPointer(*unsafe.Pointer) unsafe.Pointer +pkg sync/atomic, func LoadUint32(*uint32) uint32 +pkg sync/atomic, func LoadUint64(*uint64) uint64 +pkg sync/atomic, func LoadUintptr(*uintptr) uintptr +pkg sync/atomic, func StoreInt32(*int32, int32) +pkg sync/atomic, func StoreInt64(*int64, int64) +pkg sync/atomic, func StorePointer(*unsafe.Pointer, unsafe.Pointer) +pkg sync/atomic, func StoreUint32(*uint32, uint32) +pkg sync/atomic, func StoreUint64(*uint64, uint64) +pkg sync/atomic, func StoreUintptr(*uintptr, uintptr) +pkg syscall (darwin-386), const AF_APPLETALK ideal-int +pkg syscall (darwin-386), const AF_CCITT ideal-int +pkg syscall (darwin-386), const AF_CHAOS ideal-int +pkg syscall (darwin-386), const AF_CNT ideal-int +pkg syscall (darwin-386), const AF_COIP ideal-int +pkg syscall (darwin-386), const AF_DATAKIT ideal-int +pkg syscall (darwin-386), const AF_DECnet ideal-int +pkg syscall (darwin-386), const AF_DLI ideal-int +pkg syscall (darwin-386), const AF_E164 ideal-int +pkg syscall (darwin-386), const AF_ECMA ideal-int +pkg syscall (darwin-386), const AF_HYLINK ideal-int +pkg syscall (darwin-386), const AF_IEEE80211 ideal-int +pkg syscall (darwin-386), const AF_IMPLINK ideal-int +pkg syscall (darwin-386), const AF_IPX ideal-int +pkg syscall (darwin-386), const AF_ISDN ideal-int +pkg syscall (darwin-386), const AF_ISO ideal-int +pkg syscall (darwin-386), const AF_LAT ideal-int +pkg syscall (darwin-386), const AF_LINK ideal-int +pkg syscall (darwin-386), const AF_LOCAL ideal-int +pkg syscall (darwin-386), const AF_MAX ideal-int +pkg syscall (darwin-386), const AF_NATM ideal-int +pkg syscall (darwin-386), const AF_NDRV ideal-int +pkg syscall (darwin-386), const AF_NETBIOS ideal-int +pkg syscall (darwin-386), const AF_NS ideal-int +pkg syscall (darwin-386), const AF_OSI ideal-int +pkg syscall (darwin-386), const AF_PPP ideal-int +pkg syscall (darwin-386), const AF_PUP ideal-int +pkg syscall (darwin-386), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-386), const AF_ROUTE ideal-int +pkg syscall (darwin-386), const AF_SIP ideal-int +pkg syscall (darwin-386), const AF_SNA ideal-int +pkg syscall (darwin-386), const AF_SYSTEM ideal-int +pkg syscall (darwin-386), const BIOCFLUSH ideal-int +pkg syscall (darwin-386), const BIOCGBLEN ideal-int +pkg syscall (darwin-386), const BIOCGDLT ideal-int +pkg syscall (darwin-386), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-386), const BIOCGETIF ideal-int +pkg syscall (darwin-386), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-386), const BIOCGRSIG ideal-int +pkg syscall (darwin-386), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-386), const BIOCGSEESENT ideal-int +pkg syscall (darwin-386), const BIOCGSTATS ideal-int +pkg syscall (darwin-386), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-386), const BIOCPROMISC ideal-int +pkg syscall (darwin-386), const BIOCSBLEN ideal-int +pkg syscall (darwin-386), const BIOCSDLT ideal-int +pkg syscall (darwin-386), const BIOCSETF ideal-int +pkg syscall (darwin-386), const BIOCSETIF ideal-int +pkg syscall (darwin-386), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-386), const BIOCSRSIG ideal-int +pkg syscall (darwin-386), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-386), const BIOCSSEESENT ideal-int +pkg syscall (darwin-386), const BIOCVERSION ideal-int +pkg syscall (darwin-386), const BPF_A ideal-int +pkg syscall (darwin-386), const BPF_ABS ideal-int +pkg syscall (darwin-386), const BPF_ADD ideal-int +pkg syscall (darwin-386), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-386), const BPF_ALU ideal-int +pkg syscall (darwin-386), const BPF_AND ideal-int +pkg syscall (darwin-386), const BPF_B ideal-int +pkg syscall (darwin-386), const BPF_DIV ideal-int +pkg syscall (darwin-386), const BPF_H ideal-int +pkg syscall (darwin-386), const BPF_IMM ideal-int +pkg syscall (darwin-386), const BPF_IND ideal-int +pkg syscall (darwin-386), const BPF_JA ideal-int +pkg syscall (darwin-386), const BPF_JEQ ideal-int +pkg syscall (darwin-386), const BPF_JGE ideal-int +pkg syscall (darwin-386), const BPF_JGT ideal-int +pkg syscall (darwin-386), const BPF_JMP ideal-int +pkg syscall (darwin-386), const BPF_JSET ideal-int +pkg syscall (darwin-386), const BPF_K ideal-int +pkg syscall (darwin-386), const BPF_LD ideal-int +pkg syscall (darwin-386), const BPF_LDX ideal-int +pkg syscall (darwin-386), const BPF_LEN ideal-int +pkg syscall (darwin-386), const BPF_LSH ideal-int +pkg syscall (darwin-386), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-386), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-386), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-386), const BPF_MEM ideal-int +pkg syscall (darwin-386), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-386), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-386), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-386), const BPF_MISC ideal-int +pkg syscall (darwin-386), const BPF_MSH ideal-int +pkg syscall (darwin-386), const BPF_MUL ideal-int +pkg syscall (darwin-386), const BPF_NEG ideal-int +pkg syscall (darwin-386), const BPF_OR ideal-int +pkg syscall (darwin-386), const BPF_RELEASE ideal-int +pkg syscall (darwin-386), const BPF_RET ideal-int +pkg syscall (darwin-386), const BPF_RSH ideal-int +pkg syscall (darwin-386), const BPF_ST ideal-int +pkg syscall (darwin-386), const BPF_STX ideal-int +pkg syscall (darwin-386), const BPF_SUB ideal-int +pkg syscall (darwin-386), const BPF_TAX ideal-int +pkg syscall (darwin-386), const BPF_TXA ideal-int +pkg syscall (darwin-386), const BPF_W ideal-int +pkg syscall (darwin-386), const BPF_X ideal-int +pkg syscall (darwin-386), const CTL_MAXNAME ideal-int +pkg syscall (darwin-386), const CTL_NET ideal-int +pkg syscall (darwin-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-386), const DLT_ARCNET ideal-int +pkg syscall (darwin-386), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-386), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-386), const DLT_AX25 ideal-int +pkg syscall (darwin-386), const DLT_CHAOS ideal-int +pkg syscall (darwin-386), const DLT_CHDLC ideal-int +pkg syscall (darwin-386), const DLT_C_HDLC ideal-int +pkg syscall (darwin-386), const DLT_EN10MB ideal-int +pkg syscall (darwin-386), const DLT_EN3MB ideal-int +pkg syscall (darwin-386), const DLT_FDDI ideal-int +pkg syscall (darwin-386), const DLT_IEEE802 ideal-int +pkg syscall (darwin-386), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-386), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-386), const DLT_LOOP ideal-int +pkg syscall (darwin-386), const DLT_NULL ideal-int +pkg syscall (darwin-386), const DLT_PFLOG ideal-int +pkg syscall (darwin-386), const DLT_PFSYNC ideal-int +pkg syscall (darwin-386), const DLT_PPP ideal-int +pkg syscall (darwin-386), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-386), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-386), const DLT_PRONET ideal-int +pkg syscall (darwin-386), const DLT_RAW ideal-int +pkg syscall (darwin-386), const DLT_SLIP ideal-int +pkg syscall (darwin-386), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-386), const DT_BLK ideal-int +pkg syscall (darwin-386), const DT_CHR ideal-int +pkg syscall (darwin-386), const DT_DIR ideal-int +pkg syscall (darwin-386), const DT_FIFO ideal-int +pkg syscall (darwin-386), const DT_LNK ideal-int +pkg syscall (darwin-386), const DT_REG ideal-int +pkg syscall (darwin-386), const DT_SOCK ideal-int +pkg syscall (darwin-386), const DT_UNKNOWN ideal-int +pkg syscall (darwin-386), const DT_WHT ideal-int +pkg syscall (darwin-386), const EAUTH Errno +pkg syscall (darwin-386), const EBADARCH Errno +pkg syscall (darwin-386), const EBADEXEC Errno +pkg syscall (darwin-386), const EBADMACHO Errno +pkg syscall (darwin-386), const EBADMSG Errno +pkg syscall (darwin-386), const EBADRPC Errno +pkg syscall (darwin-386), const ECHO ideal-int +pkg syscall (darwin-386), const ECHOCTL ideal-int +pkg syscall (darwin-386), const ECHOE ideal-int +pkg syscall (darwin-386), const ECHOK ideal-int +pkg syscall (darwin-386), const ECHOKE ideal-int +pkg syscall (darwin-386), const ECHONL ideal-int +pkg syscall (darwin-386), const ECHOPRT ideal-int +pkg syscall (darwin-386), const EDEVERR Errno +pkg syscall (darwin-386), const EFTYPE Errno +pkg syscall (darwin-386), const ELAST Errno +pkg syscall (darwin-386), const EMULTIHOP Errno +pkg syscall (darwin-386), const ENEEDAUTH Errno +pkg syscall (darwin-386), const ENOATTR Errno +pkg syscall (darwin-386), const ENODATA Errno +pkg syscall (darwin-386), const ENOLINK Errno +pkg syscall (darwin-386), const ENOPOLICY Errno +pkg syscall (darwin-386), const ENOSR Errno +pkg syscall (darwin-386), const ENOSTR Errno +pkg syscall (darwin-386), const ENOTRECOVERABLE Errno +pkg syscall (darwin-386), const EOWNERDEAD Errno +pkg syscall (darwin-386), const EPROCLIM Errno +pkg syscall (darwin-386), const EPROCUNAVAIL Errno +pkg syscall (darwin-386), const EPROGMISMATCH Errno +pkg syscall (darwin-386), const EPROGUNAVAIL Errno +pkg syscall (darwin-386), const EPROTO Errno +pkg syscall (darwin-386), const EPWROFF Errno +pkg syscall (darwin-386), const ERPCMISMATCH Errno +pkg syscall (darwin-386), const ESHLIBVERS Errno +pkg syscall (darwin-386), const ETIME Errno +pkg syscall (darwin-386), const EVFILT_AIO ideal-int +pkg syscall (darwin-386), const EVFILT_FS ideal-int +pkg syscall (darwin-386), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-386), const EVFILT_PROC ideal-int +pkg syscall (darwin-386), const EVFILT_READ ideal-int +pkg syscall (darwin-386), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-386), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-386), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-386), const EVFILT_TIMER ideal-int +pkg syscall (darwin-386), const EVFILT_USER ideal-int +pkg syscall (darwin-386), const EVFILT_VM ideal-int +pkg syscall (darwin-386), const EVFILT_VNODE ideal-int +pkg syscall (darwin-386), const EVFILT_WRITE ideal-int +pkg syscall (darwin-386), const EV_ADD ideal-int +pkg syscall (darwin-386), const EV_CLEAR ideal-int +pkg syscall (darwin-386), const EV_DELETE ideal-int +pkg syscall (darwin-386), const EV_DISABLE ideal-int +pkg syscall (darwin-386), const EV_DISPATCH ideal-int +pkg syscall (darwin-386), const EV_ENABLE ideal-int +pkg syscall (darwin-386), const EV_EOF ideal-int +pkg syscall (darwin-386), const EV_ERROR ideal-int +pkg syscall (darwin-386), const EV_FLAG0 ideal-int +pkg syscall (darwin-386), const EV_FLAG1 ideal-int +pkg syscall (darwin-386), const EV_ONESHOT ideal-int +pkg syscall (darwin-386), const EV_OOBAND ideal-int +pkg syscall (darwin-386), const EV_POLL ideal-int +pkg syscall (darwin-386), const EV_RECEIPT ideal-int +pkg syscall (darwin-386), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-386), const EXTA ideal-int +pkg syscall (darwin-386), const EXTB ideal-int +pkg syscall (darwin-386), const EXTPROC ideal-int +pkg syscall (darwin-386), const FD_CLOEXEC ideal-int +pkg syscall (darwin-386), const FD_SETSIZE ideal-int +pkg syscall (darwin-386), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-386), const F_ADDSIGS ideal-int +pkg syscall (darwin-386), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-386), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-386), const F_CHKCLEAN ideal-int +pkg syscall (darwin-386), const F_DUPFD ideal-int +pkg syscall (darwin-386), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-386), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-386), const F_FREEZE_FS ideal-int +pkg syscall (darwin-386), const F_FULLFSYNC ideal-int +pkg syscall (darwin-386), const F_GETFD ideal-int +pkg syscall (darwin-386), const F_GETFL ideal-int +pkg syscall (darwin-386), const F_GETLK ideal-int +pkg syscall (darwin-386), const F_GETLKPID ideal-int +pkg syscall (darwin-386), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-386), const F_GETOWN ideal-int +pkg syscall (darwin-386), const F_GETPATH ideal-int +pkg syscall (darwin-386), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-386), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-386), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-386), const F_LOG2PHYS ideal-int +pkg syscall (darwin-386), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-386), const F_MARKDEPENDENCY ideal-int +pkg syscall (darwin-386), const F_NOCACHE ideal-int +pkg syscall (darwin-386), const F_NODIRECT ideal-int +pkg syscall (darwin-386), const F_OK ideal-int +pkg syscall (darwin-386), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-386), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-386), const F_PREALLOCATE ideal-int +pkg syscall (darwin-386), const F_RDADVISE ideal-int +pkg syscall (darwin-386), const F_RDAHEAD ideal-int +pkg syscall (darwin-386), const F_RDLCK ideal-int +pkg syscall (darwin-386), const F_READBOOTSTRAP ideal-int +pkg syscall (darwin-386), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-386), const F_SETFD ideal-int +pkg syscall (darwin-386), const F_SETFL ideal-int +pkg syscall (darwin-386), const F_SETLK ideal-int +pkg syscall (darwin-386), const F_SETLKW ideal-int +pkg syscall (darwin-386), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-386), const F_SETOWN ideal-int +pkg syscall (darwin-386), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-386), const F_SETSIZE ideal-int +pkg syscall (darwin-386), const F_THAW_FS ideal-int +pkg syscall (darwin-386), const F_UNLCK ideal-int +pkg syscall (darwin-386), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-386), const F_WRITEBOOTSTRAP ideal-int +pkg syscall (darwin-386), const F_WRLCK ideal-int +pkg syscall (darwin-386), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-386), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-386), const IFF_DEBUG ideal-int +pkg syscall (darwin-386), const IFF_LINK0 ideal-int +pkg syscall (darwin-386), const IFF_LINK1 ideal-int +pkg syscall (darwin-386), const IFF_LINK2 ideal-int +pkg syscall (darwin-386), const IFF_NOARP ideal-int +pkg syscall (darwin-386), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-386), const IFF_OACTIVE ideal-int +pkg syscall (darwin-386), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-386), const IFF_PROMISC ideal-int +pkg syscall (darwin-386), const IFF_RUNNING ideal-int +pkg syscall (darwin-386), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-386), const IFNAMSIZ ideal-int +pkg syscall (darwin-386), const IFT_1822 ideal-int +pkg syscall (darwin-386), const IFT_AAL5 ideal-int +pkg syscall (darwin-386), const IFT_ARCNET ideal-int +pkg syscall (darwin-386), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-386), const IFT_ATM ideal-int +pkg syscall (darwin-386), const IFT_BRIDGE ideal-int +pkg syscall (darwin-386), const IFT_CARP ideal-int +pkg syscall (darwin-386), const IFT_CELLULAR ideal-int +pkg syscall (darwin-386), const IFT_CEPT ideal-int +pkg syscall (darwin-386), const IFT_DS3 ideal-int +pkg syscall (darwin-386), const IFT_ENC ideal-int +pkg syscall (darwin-386), const IFT_EON ideal-int +pkg syscall (darwin-386), const IFT_ETHER ideal-int +pkg syscall (darwin-386), const IFT_FAITH ideal-int +pkg syscall (darwin-386), const IFT_FDDI ideal-int +pkg syscall (darwin-386), const IFT_FRELAY ideal-int +pkg syscall (darwin-386), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-386), const IFT_GIF ideal-int +pkg syscall (darwin-386), const IFT_HDH1822 ideal-int +pkg syscall (darwin-386), const IFT_HIPPI ideal-int +pkg syscall (darwin-386), const IFT_HSSI ideal-int +pkg syscall (darwin-386), const IFT_HY ideal-int +pkg syscall (darwin-386), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-386), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-386), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-386), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-386), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-386), const IFT_ISO88023 ideal-int +pkg syscall (darwin-386), const IFT_ISO88024 ideal-int +pkg syscall (darwin-386), const IFT_ISO88025 ideal-int +pkg syscall (darwin-386), const IFT_ISO88026 ideal-int +pkg syscall (darwin-386), const IFT_L2VLAN ideal-int +pkg syscall (darwin-386), const IFT_LAPB ideal-int +pkg syscall (darwin-386), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-386), const IFT_LOOP ideal-int +pkg syscall (darwin-386), const IFT_MIOX25 ideal-int +pkg syscall (darwin-386), const IFT_MODEM ideal-int +pkg syscall (darwin-386), const IFT_NSIP ideal-int +pkg syscall (darwin-386), const IFT_OTHER ideal-int +pkg syscall (darwin-386), const IFT_P10 ideal-int +pkg syscall (darwin-386), const IFT_P80 ideal-int +pkg syscall (darwin-386), const IFT_PARA ideal-int +pkg syscall (darwin-386), const IFT_PDP ideal-int +pkg syscall (darwin-386), const IFT_PFLOG ideal-int +pkg syscall (darwin-386), const IFT_PFSYNC ideal-int +pkg syscall (darwin-386), const IFT_PPP ideal-int +pkg syscall (darwin-386), const IFT_PROPMUX ideal-int +pkg syscall (darwin-386), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-386), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-386), const IFT_RS232 ideal-int +pkg syscall (darwin-386), const IFT_SDLC ideal-int +pkg syscall (darwin-386), const IFT_SIP ideal-int +pkg syscall (darwin-386), const IFT_SLIP ideal-int +pkg syscall (darwin-386), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-386), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-386), const IFT_SONET ideal-int +pkg syscall (darwin-386), const IFT_SONETPATH ideal-int +pkg syscall (darwin-386), const IFT_SONETVT ideal-int +pkg syscall (darwin-386), const IFT_STARLAN ideal-int +pkg syscall (darwin-386), const IFT_STF ideal-int +pkg syscall (darwin-386), const IFT_T1 ideal-int +pkg syscall (darwin-386), const IFT_ULTRA ideal-int +pkg syscall (darwin-386), const IFT_V35 ideal-int +pkg syscall (darwin-386), const IFT_X25 ideal-int +pkg syscall (darwin-386), const IFT_X25DDN ideal-int +pkg syscall (darwin-386), const IFT_X25PLE ideal-int +pkg syscall (darwin-386), const IFT_XETHER ideal-int +pkg syscall (darwin-386), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-386), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-386), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-386), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-386), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-386), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-386), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-386), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-386), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-386), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-386), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-386), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-386), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-386), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-386), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-386), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-386), const IPPROTO_3PC ideal-int +pkg syscall (darwin-386), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-386), const IPPROTO_AH ideal-int +pkg syscall (darwin-386), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-386), const IPPROTO_APES ideal-int +pkg syscall (darwin-386), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-386), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-386), const IPPROTO_BHA ideal-int +pkg syscall (darwin-386), const IPPROTO_BLT ideal-int +pkg syscall (darwin-386), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-386), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-386), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-386), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-386), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-386), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-386), const IPPROTO_DDP ideal-int +pkg syscall (darwin-386), const IPPROTO_DGP ideal-int +pkg syscall (darwin-386), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-386), const IPPROTO_DONE ideal-int +pkg syscall (darwin-386), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-386), const IPPROTO_EGP ideal-int +pkg syscall (darwin-386), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-386), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-386), const IPPROTO_EON ideal-int +pkg syscall (darwin-386), const IPPROTO_ESP ideal-int +pkg syscall (darwin-386), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-386), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-386), const IPPROTO_GGP ideal-int +pkg syscall (darwin-386), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-386), const IPPROTO_GRE ideal-int +pkg syscall (darwin-386), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-386), const IPPROTO_HMP ideal-int +pkg syscall (darwin-386), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-386), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-386), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-386), const IPPROTO_IDP ideal-int +pkg syscall (darwin-386), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-386), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-386), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-386), const IPPROTO_IGP ideal-int +pkg syscall (darwin-386), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-386), const IPPROTO_IL ideal-int +pkg syscall (darwin-386), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-386), const IPPROTO_INP ideal-int +pkg syscall (darwin-386), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-386), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-386), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-386), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-386), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-386), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-386), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-386), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-386), const IPPROTO_LARP ideal-int +pkg syscall (darwin-386), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-386), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-386), const IPPROTO_MAX ideal-int +pkg syscall (darwin-386), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-386), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-386), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-386), const IPPROTO_MICP ideal-int +pkg syscall (darwin-386), const IPPROTO_MTP ideal-int +pkg syscall (darwin-386), const IPPROTO_MUX ideal-int +pkg syscall (darwin-386), const IPPROTO_ND ideal-int +pkg syscall (darwin-386), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-386), const IPPROTO_NONE ideal-int +pkg syscall (darwin-386), const IPPROTO_NSP ideal-int +pkg syscall (darwin-386), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-386), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-386), const IPPROTO_PGM ideal-int +pkg syscall (darwin-386), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-386), const IPPROTO_PIM ideal-int +pkg syscall (darwin-386), const IPPROTO_PRM ideal-int +pkg syscall (darwin-386), const IPPROTO_PUP ideal-int +pkg syscall (darwin-386), const IPPROTO_PVP ideal-int +pkg syscall (darwin-386), const IPPROTO_RAW ideal-int +pkg syscall (darwin-386), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-386), const IPPROTO_RDP ideal-int +pkg syscall (darwin-386), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-386), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-386), const IPPROTO_RVD ideal-int +pkg syscall (darwin-386), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-386), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-386), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-386), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-386), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-386), const IPPROTO_SEP ideal-int +pkg syscall (darwin-386), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-386), const IPPROTO_ST ideal-int +pkg syscall (darwin-386), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-386), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-386), const IPPROTO_TCF ideal-int +pkg syscall (darwin-386), const IPPROTO_TP ideal-int +pkg syscall (darwin-386), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-386), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-386), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-386), const IPPROTO_TTP ideal-int +pkg syscall (darwin-386), const IPPROTO_VINES ideal-int +pkg syscall (darwin-386), const IPPROTO_VISA ideal-int +pkg syscall (darwin-386), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-386), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-386), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-386), const IPPROTO_WSN ideal-int +pkg syscall (darwin-386), const IPPROTO_XNET ideal-int +pkg syscall (darwin-386), const IPPROTO_XTP ideal-int +pkg syscall (darwin-386), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-386), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-386), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-386), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-386), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-386), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-386), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-386), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-386), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-386), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-386), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-386), const IPV6_FAITH ideal-int +pkg syscall (darwin-386), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-386), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-386), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-386), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-386), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-386), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-386), const IPV6_FW_GET ideal-int +pkg syscall (darwin-386), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-386), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-386), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-386), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-386), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-386), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-386), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-386), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-386), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-386), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-386), const IPV6_MMTU ideal-int +pkg syscall (darwin-386), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-386), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-386), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-386), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-386), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-386), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-386), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-386), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-386), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-386), const IPV6_TCLASS ideal-int +pkg syscall (darwin-386), const IPV6_VERSION ideal-int +pkg syscall (darwin-386), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-386), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-386), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-386), const IP_BOUND_IF ideal-int +pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-386), const IP_DF ideal-int +pkg syscall (darwin-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-386), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-386), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-386), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-386), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-386), const IP_FAITH ideal-int +pkg syscall (darwin-386), const IP_FW_ADD ideal-int +pkg syscall (darwin-386), const IP_FW_DEL ideal-int +pkg syscall (darwin-386), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-386), const IP_FW_GET ideal-int +pkg syscall (darwin-386), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-386), const IP_FW_ZERO ideal-int +pkg syscall (darwin-386), const IP_HDRINCL ideal-int +pkg syscall (darwin-386), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-386), const IP_MAXPACKET ideal-int +pkg syscall (darwin-386), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-386), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-386), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-386), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-386), const IP_MF ideal-int +pkg syscall (darwin-386), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-386), const IP_MSFILTER ideal-int +pkg syscall (darwin-386), const IP_MSS ideal-int +pkg syscall (darwin-386), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-386), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-386), const IP_NAT__XXX ideal-int +pkg syscall (darwin-386), const IP_OFFMASK ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-386), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-386), const IP_OPTIONS ideal-int +pkg syscall (darwin-386), const IP_PKTINFO ideal-int +pkg syscall (darwin-386), const IP_PORTRANGE ideal-int +pkg syscall (darwin-386), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-386), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-386), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-386), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-386), const IP_RECVIF ideal-int +pkg syscall (darwin-386), const IP_RECVOPTS ideal-int +pkg syscall (darwin-386), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-386), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-386), const IP_RECVTTL ideal-int +pkg syscall (darwin-386), const IP_RETOPTS ideal-int +pkg syscall (darwin-386), const IP_RF ideal-int +pkg syscall (darwin-386), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-386), const IP_RSVP_ON ideal-int +pkg syscall (darwin-386), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-386), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-386), const IP_STRIPHDR ideal-int +pkg syscall (darwin-386), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-386), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-386), const LOCK_EX ideal-int +pkg syscall (darwin-386), const LOCK_NB ideal-int +pkg syscall (darwin-386), const LOCK_SH ideal-int +pkg syscall (darwin-386), const LOCK_UN ideal-int +pkg syscall (darwin-386), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-386), const MADV_DONTNEED ideal-int +pkg syscall (darwin-386), const MADV_FREE ideal-int +pkg syscall (darwin-386), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-386), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-386), const MADV_NORMAL ideal-int +pkg syscall (darwin-386), const MADV_RANDOM ideal-int +pkg syscall (darwin-386), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-386), const MADV_WILLNEED ideal-int +pkg syscall (darwin-386), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-386), const MAP_ANON ideal-int +pkg syscall (darwin-386), const MAP_COPY ideal-int +pkg syscall (darwin-386), const MAP_FILE ideal-int +pkg syscall (darwin-386), const MAP_FIXED ideal-int +pkg syscall (darwin-386), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-386), const MAP_JIT ideal-int +pkg syscall (darwin-386), const MAP_NOCACHE ideal-int +pkg syscall (darwin-386), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-386), const MAP_NORESERVE ideal-int +pkg syscall (darwin-386), const MAP_PRIVATE ideal-int +pkg syscall (darwin-386), const MAP_RENAME ideal-int +pkg syscall (darwin-386), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-386), const MAP_SHARED ideal-int +pkg syscall (darwin-386), const MCL_CURRENT ideal-int +pkg syscall (darwin-386), const MCL_FUTURE ideal-int +pkg syscall (darwin-386), const MSG_CTRUNC ideal-int +pkg syscall (darwin-386), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-386), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-386), const MSG_EOF ideal-int +pkg syscall (darwin-386), const MSG_EOR ideal-int +pkg syscall (darwin-386), const MSG_FLUSH ideal-int +pkg syscall (darwin-386), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-386), const MSG_HOLD ideal-int +pkg syscall (darwin-386), const MSG_NEEDSA ideal-int +pkg syscall (darwin-386), const MSG_OOB ideal-int +pkg syscall (darwin-386), const MSG_PEEK ideal-int +pkg syscall (darwin-386), const MSG_RCVMORE ideal-int +pkg syscall (darwin-386), const MSG_SEND ideal-int +pkg syscall (darwin-386), const MSG_TRUNC ideal-int +pkg syscall (darwin-386), const MSG_WAITALL ideal-int +pkg syscall (darwin-386), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-386), const MS_ASYNC ideal-int +pkg syscall (darwin-386), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-386), const MS_INVALIDATE ideal-int +pkg syscall (darwin-386), const MS_KILLPAGES ideal-int +pkg syscall (darwin-386), const MS_SYNC ideal-int +pkg syscall (darwin-386), const NAME_MAX ideal-int +pkg syscall (darwin-386), const NET_RT_DUMP ideal-int +pkg syscall (darwin-386), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-386), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-386), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-386), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-386), const NET_RT_MAXID ideal-int +pkg syscall (darwin-386), const NET_RT_STAT ideal-int +pkg syscall (darwin-386), const NET_RT_TRASH ideal-int +pkg syscall (darwin-386), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-386), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-386), const NOTE_CHILD ideal-int +pkg syscall (darwin-386), const NOTE_DELETE ideal-int +pkg syscall (darwin-386), const NOTE_EXEC ideal-int +pkg syscall (darwin-386), const NOTE_EXIT ideal-int +pkg syscall (darwin-386), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-386), const NOTE_EXTEND ideal-int +pkg syscall (darwin-386), const NOTE_FFAND ideal-int +pkg syscall (darwin-386), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-386), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-386), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-386), const NOTE_FFNOP ideal-int +pkg syscall (darwin-386), const NOTE_FFOR ideal-int +pkg syscall (darwin-386), const NOTE_FORK ideal-int +pkg syscall (darwin-386), const NOTE_LINK ideal-int +pkg syscall (darwin-386), const NOTE_LOWAT ideal-int +pkg syscall (darwin-386), const NOTE_NONE ideal-int +pkg syscall (darwin-386), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-386), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-386), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-386), const NOTE_REAP ideal-int +pkg syscall (darwin-386), const NOTE_RENAME ideal-int +pkg syscall (darwin-386), const NOTE_RESOURCEEND ideal-int +pkg syscall (darwin-386), const NOTE_REVOKE ideal-int +pkg syscall (darwin-386), const NOTE_SECONDS ideal-int +pkg syscall (darwin-386), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-386), const NOTE_TRACK ideal-int +pkg syscall (darwin-386), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-386), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-386), const NOTE_USECONDS ideal-int +pkg syscall (darwin-386), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-386), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-386), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-386), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-386), const NOTE_WRITE ideal-int +pkg syscall (darwin-386), const O_ACCMODE ideal-int +pkg syscall (darwin-386), const O_ALERT ideal-int +pkg syscall (darwin-386), const O_DIRECTORY ideal-int +pkg syscall (darwin-386), const O_DSYNC ideal-int +pkg syscall (darwin-386), const O_EVTONLY ideal-int +pkg syscall (darwin-386), const O_EXLOCK ideal-int +pkg syscall (darwin-386), const O_FSYNC ideal-int +pkg syscall (darwin-386), const O_NDELAY ideal-int +pkg syscall (darwin-386), const O_NOFOLLOW ideal-int +pkg syscall (darwin-386), const O_POPUP ideal-int +pkg syscall (darwin-386), const O_SHLOCK ideal-int +pkg syscall (darwin-386), const O_SYMLINK ideal-int +pkg syscall (darwin-386), const PROT_EXEC ideal-int +pkg syscall (darwin-386), const PROT_NONE ideal-int +pkg syscall (darwin-386), const PROT_READ ideal-int +pkg syscall (darwin-386), const PROT_WRITE ideal-int +pkg syscall (darwin-386), const PTRACE_CONT ideal-int +pkg syscall (darwin-386), const PTRACE_KILL ideal-int +pkg syscall (darwin-386), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-386), const PT_ATTACH ideal-int +pkg syscall (darwin-386), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-386), const PT_CONTINUE ideal-int +pkg syscall (darwin-386), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-386), const PT_DETACH ideal-int +pkg syscall (darwin-386), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-386), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-386), const PT_KILL ideal-int +pkg syscall (darwin-386), const PT_READ_D ideal-int +pkg syscall (darwin-386), const PT_READ_I ideal-int +pkg syscall (darwin-386), const PT_READ_U ideal-int +pkg syscall (darwin-386), const PT_SIGEXC ideal-int +pkg syscall (darwin-386), const PT_STEP ideal-int +pkg syscall (darwin-386), const PT_THUPDATE ideal-int +pkg syscall (darwin-386), const PT_TRACE_ME ideal-int +pkg syscall (darwin-386), const PT_WRITE_D ideal-int +pkg syscall (darwin-386), const PT_WRITE_I ideal-int +pkg syscall (darwin-386), const PT_WRITE_U ideal-int +pkg syscall (darwin-386), const RLIMIT_AS ideal-int +pkg syscall (darwin-386), const RLIMIT_CORE ideal-int +pkg syscall (darwin-386), const RLIMIT_CPU ideal-int +pkg syscall (darwin-386), const RLIMIT_DATA ideal-int +pkg syscall (darwin-386), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-386), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-386), const RLIMIT_STACK ideal-int +pkg syscall (darwin-386), const RLIM_INFINITY ideal-int +pkg syscall (darwin-386), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-386), const RTAX_BRD ideal-int +pkg syscall (darwin-386), const RTAX_DST ideal-int +pkg syscall (darwin-386), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-386), const RTAX_GENMASK ideal-int +pkg syscall (darwin-386), const RTAX_IFA ideal-int +pkg syscall (darwin-386), const RTAX_IFP ideal-int +pkg syscall (darwin-386), const RTAX_MAX ideal-int +pkg syscall (darwin-386), const RTAX_NETMASK ideal-int +pkg syscall (darwin-386), const RTA_AUTHOR ideal-int +pkg syscall (darwin-386), const RTA_BRD ideal-int +pkg syscall (darwin-386), const RTA_DST ideal-int +pkg syscall (darwin-386), const RTA_GATEWAY ideal-int +pkg syscall (darwin-386), const RTA_GENMASK ideal-int +pkg syscall (darwin-386), const RTA_IFA ideal-int +pkg syscall (darwin-386), const RTA_IFP ideal-int +pkg syscall (darwin-386), const RTA_NETMASK ideal-int +pkg syscall (darwin-386), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-386), const RTF_BROADCAST ideal-int +pkg syscall (darwin-386), const RTF_CLONING ideal-int +pkg syscall (darwin-386), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-386), const RTF_DELCLONE ideal-int +pkg syscall (darwin-386), const RTF_DONE ideal-int +pkg syscall (darwin-386), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-386), const RTF_GATEWAY ideal-int +pkg syscall (darwin-386), const RTF_HOST ideal-int +pkg syscall (darwin-386), const RTF_IFREF ideal-int +pkg syscall (darwin-386), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-386), const RTF_LLINFO ideal-int +pkg syscall (darwin-386), const RTF_LOCAL ideal-int +pkg syscall (darwin-386), const RTF_MODIFIED ideal-int +pkg syscall (darwin-386), const RTF_MULTICAST ideal-int +pkg syscall (darwin-386), const RTF_PINNED ideal-int +pkg syscall (darwin-386), const RTF_PRCLONING ideal-int +pkg syscall (darwin-386), const RTF_PROTO1 ideal-int +pkg syscall (darwin-386), const RTF_PROTO2 ideal-int +pkg syscall (darwin-386), const RTF_PROTO3 ideal-int +pkg syscall (darwin-386), const RTF_REJECT ideal-int +pkg syscall (darwin-386), const RTF_STATIC ideal-int +pkg syscall (darwin-386), const RTF_UP ideal-int +pkg syscall (darwin-386), const RTF_WASCLONED ideal-int +pkg syscall (darwin-386), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-386), const RTM_ADD ideal-int +pkg syscall (darwin-386), const RTM_CHANGE ideal-int +pkg syscall (darwin-386), const RTM_DELADDR ideal-int +pkg syscall (darwin-386), const RTM_DELETE ideal-int +pkg syscall (darwin-386), const RTM_DELMADDR ideal-int +pkg syscall (darwin-386), const RTM_GET ideal-int +pkg syscall (darwin-386), const RTM_GET2 ideal-int +pkg syscall (darwin-386), const RTM_IFINFO ideal-int +pkg syscall (darwin-386), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-386), const RTM_LOCK ideal-int +pkg syscall (darwin-386), const RTM_LOSING ideal-int +pkg syscall (darwin-386), const RTM_MISS ideal-int +pkg syscall (darwin-386), const RTM_NEWADDR ideal-int +pkg syscall (darwin-386), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-386), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-386), const RTM_OLDADD ideal-int +pkg syscall (darwin-386), const RTM_OLDDEL ideal-int +pkg syscall (darwin-386), const RTM_REDIRECT ideal-int +pkg syscall (darwin-386), const RTM_RESOLVE ideal-int +pkg syscall (darwin-386), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-386), const RTM_VERSION ideal-int +pkg syscall (darwin-386), const RTV_EXPIRE ideal-int +pkg syscall (darwin-386), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-386), const RTV_MTU ideal-int +pkg syscall (darwin-386), const RTV_RPIPE ideal-int +pkg syscall (darwin-386), const RTV_RTT ideal-int +pkg syscall (darwin-386), const RTV_RTTVAR ideal-int +pkg syscall (darwin-386), const RTV_SPIPE ideal-int +pkg syscall (darwin-386), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-386), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-386), const RUSAGE_SELF ideal-int +pkg syscall (darwin-386), const SCM_CREDS ideal-int +pkg syscall (darwin-386), const SCM_RIGHTS ideal-int +pkg syscall (darwin-386), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-386), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-386), const SIGCHLD Signal +pkg syscall (darwin-386), const SIGCONT Signal +pkg syscall (darwin-386), const SIGEMT Signal +pkg syscall (darwin-386), const SIGINFO Signal +pkg syscall (darwin-386), const SIGIO Signal +pkg syscall (darwin-386), const SIGIOT Signal +pkg syscall (darwin-386), const SIGPROF Signal +pkg syscall (darwin-386), const SIGSTOP Signal +pkg syscall (darwin-386), const SIGSYS Signal +pkg syscall (darwin-386), const SIGTSTP Signal +pkg syscall (darwin-386), const SIGTTIN Signal +pkg syscall (darwin-386), const SIGTTOU Signal +pkg syscall (darwin-386), const SIGURG Signal +pkg syscall (darwin-386), const SIGUSR1 Signal +pkg syscall (darwin-386), const SIGUSR2 Signal +pkg syscall (darwin-386), const SIGVTALRM Signal +pkg syscall (darwin-386), const SIGWINCH Signal +pkg syscall (darwin-386), const SIGXCPU Signal +pkg syscall (darwin-386), const SIGXFSZ Signal +pkg syscall (darwin-386), const SIOCADDMULTI ideal-int +pkg syscall (darwin-386), const SIOCAIFADDR ideal-int +pkg syscall (darwin-386), const SIOCALIFADDR ideal-int +pkg syscall (darwin-386), const SIOCARPIPLL ideal-int +pkg syscall (darwin-386), const SIOCATMARK ideal-int +pkg syscall (darwin-386), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-386), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-386), const SIOCDELMULTI ideal-int +pkg syscall (darwin-386), const SIOCDIFADDR ideal-int +pkg syscall (darwin-386), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-386), const SIOCDLIFADDR ideal-int +pkg syscall (darwin-386), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-386), const SIOCGETSGCNT ideal-int +pkg syscall (darwin-386), const SIOCGETVIFCNT ideal-int +pkg syscall (darwin-386), const SIOCGETVLAN ideal-int +pkg syscall (darwin-386), const SIOCGHIWAT ideal-int +pkg syscall (darwin-386), const SIOCGIFADDR ideal-int +pkg syscall (darwin-386), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-386), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-386), const SIOCGIFBOND ideal-int +pkg syscall (darwin-386), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-386), const SIOCGIFCAP ideal-int +pkg syscall (darwin-386), const SIOCGIFCONF ideal-int +pkg syscall (darwin-386), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-386), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-386), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-386), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-386), const SIOCGIFKPI ideal-int +pkg syscall (darwin-386), const SIOCGIFMAC ideal-int +pkg syscall (darwin-386), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-386), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-386), const SIOCGIFMTU ideal-int +pkg syscall (darwin-386), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-386), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-386), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-386), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-386), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-386), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-386), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-386), const SIOCGLIFADDR ideal-int +pkg syscall (darwin-386), const SIOCGLIFPHYADDR ideal-int +pkg syscall (darwin-386), const SIOCGLOWAT ideal-int +pkg syscall (darwin-386), const SIOCGPGRP ideal-int +pkg syscall (darwin-386), const SIOCIFCREATE ideal-int +pkg syscall (darwin-386), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-386), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-386), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-386), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-386), const SIOCSETVLAN ideal-int +pkg syscall (darwin-386), const SIOCSHIWAT ideal-int +pkg syscall (darwin-386), const SIOCSIFADDR ideal-int +pkg syscall (darwin-386), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-386), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-386), const SIOCSIFBOND ideal-int +pkg syscall (darwin-386), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-386), const SIOCSIFCAP ideal-int +pkg syscall (darwin-386), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-386), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-386), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-386), const SIOCSIFKPI ideal-int +pkg syscall (darwin-386), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-386), const SIOCSIFMAC ideal-int +pkg syscall (darwin-386), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-386), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-386), const SIOCSIFMTU ideal-int +pkg syscall (darwin-386), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-386), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-386), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-386), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-386), const SIOCSLIFPHYADDR ideal-int +pkg syscall (darwin-386), const SIOCSLOWAT ideal-int +pkg syscall (darwin-386), const SIOCSPGRP ideal-int +pkg syscall (darwin-386), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-386), const SOCK_RDM ideal-int +pkg syscall (darwin-386), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-386), const SO_DEBUG ideal-int +pkg syscall (darwin-386), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-386), const SO_ERROR ideal-int +pkg syscall (darwin-386), const SO_LABEL ideal-int +pkg syscall (darwin-386), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-386), const SO_NKE ideal-int +pkg syscall (darwin-386), const SO_NOADDRERR ideal-int +pkg syscall (darwin-386), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-386), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-386), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-386), const SO_NREAD ideal-int +pkg syscall (darwin-386), const SO_NWRITE ideal-int +pkg syscall (darwin-386), const SO_OOBINLINE ideal-int +pkg syscall (darwin-386), const SO_PEERLABEL ideal-int +pkg syscall (darwin-386), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-386), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-386), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-386), const SO_RESTRICTIONS ideal-int +pkg syscall (darwin-386), const SO_RESTRICT_DENYIN ideal-int +pkg syscall (darwin-386), const SO_RESTRICT_DENYOUT ideal-int +pkg syscall (darwin-386), const SO_RESTRICT_DENYSET ideal-int +pkg syscall (darwin-386), const SO_REUSEPORT ideal-int +pkg syscall (darwin-386), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-386), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-386), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-386), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-386), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-386), const SO_TYPE ideal-int +pkg syscall (darwin-386), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-386), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-386), const SO_WANTMORE ideal-int +pkg syscall (darwin-386), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-386), const SYS_ACCEPT ideal-int +pkg syscall (darwin-386), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_ACCESS ideal-int +pkg syscall (darwin-386), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_ACCT ideal-int +pkg syscall (darwin-386), const SYS_ADD_PROFIL ideal-int +pkg syscall (darwin-386), const SYS_ADJTIME ideal-int +pkg syscall (darwin-386), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-386), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-386), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-386), const SYS_AIO_READ ideal-int +pkg syscall (darwin-386), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-386), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-386), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-386), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-386), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-386), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-386), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-386), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-386), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-386), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-386), const SYS_AUDIT ideal-int +pkg syscall (darwin-386), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-386), const SYS_AUDITON ideal-int +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-386), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-386), const SYS_BIND ideal-int +pkg syscall (darwin-386), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-386), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-386), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-386), const SYS_CHDIR ideal-int +pkg syscall (darwin-386), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-386), const SYS_CHMOD ideal-int +pkg syscall (darwin-386), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_CHOWN ideal-int +pkg syscall (darwin-386), const SYS_CHROOT ideal-int +pkg syscall (darwin-386), const SYS_CHUD ideal-int +pkg syscall (darwin-386), const SYS_CLOSE ideal-int +pkg syscall (darwin-386), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_CONNECT ideal-int +pkg syscall (darwin-386), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_COPYFILE ideal-int +pkg syscall (darwin-386), const SYS_CSOPS ideal-int +pkg syscall (darwin-386), const SYS_DELETE ideal-int +pkg syscall (darwin-386), const SYS_DUP ideal-int +pkg syscall (darwin-386), const SYS_DUP2 ideal-int +pkg syscall (darwin-386), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-386), const SYS_EXECVE ideal-int +pkg syscall (darwin-386), const SYS_EXIT ideal-int +pkg syscall (darwin-386), const SYS_FCHDIR ideal-int +pkg syscall (darwin-386), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-386), const SYS_FCHMOD ideal-int +pkg syscall (darwin-386), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_FCHOWN ideal-int +pkg syscall (darwin-386), const SYS_FCNTL ideal-int +pkg syscall (darwin-386), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-386), const SYS_FFSCTL ideal-int +pkg syscall (darwin-386), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-386), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-386), const SYS_FHOPEN ideal-int +pkg syscall (darwin-386), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-386), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-386), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-386), const SYS_FLOCK ideal-int +pkg syscall (darwin-386), const SYS_FORK ideal-int +pkg syscall (darwin-386), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-386), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-386), const SYS_FSCTL ideal-int +pkg syscall (darwin-386), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-386), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-386), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-386), const SYS_FSTAT ideal-int +pkg syscall (darwin-386), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-386), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_FSTATFS ideal-int +pkg syscall (darwin-386), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-386), const SYS_FSTATV ideal-int +pkg syscall (darwin-386), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_FSYNC ideal-int +pkg syscall (darwin-386), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-386), const SYS_FUTIMES ideal-int +pkg syscall (darwin-386), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-386), const SYS_GETAUDIT ideal-int +pkg syscall (darwin-386), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-386), const SYS_GETAUID ideal-int +pkg syscall (darwin-386), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-386), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-386), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-386), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-386), const SYS_GETEGID ideal-int +pkg syscall (darwin-386), const SYS_GETEUID ideal-int +pkg syscall (darwin-386), const SYS_GETFH ideal-int +pkg syscall (darwin-386), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-386), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-386), const SYS_GETGID ideal-int +pkg syscall (darwin-386), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-386), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-386), const SYS_GETITIMER ideal-int +pkg syscall (darwin-386), const SYS_GETLCID ideal-int +pkg syscall (darwin-386), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-386), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-386), const SYS_GETPGID ideal-int +pkg syscall (darwin-386), const SYS_GETPGRP ideal-int +pkg syscall (darwin-386), const SYS_GETPID ideal-int +pkg syscall (darwin-386), const SYS_GETPPID ideal-int +pkg syscall (darwin-386), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-386), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-386), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-386), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-386), const SYS_GETSID ideal-int +pkg syscall (darwin-386), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-386), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-386), const SYS_GETTID ideal-int +pkg syscall (darwin-386), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-386), const SYS_GETUID ideal-int +pkg syscall (darwin-386), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-386), const SYS_GETXATTR ideal-int +pkg syscall (darwin-386), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-386), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-386), const SYS_IOCTL ideal-int +pkg syscall (darwin-386), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-386), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-386), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-386), const SYS_KEVENT ideal-int +pkg syscall (darwin-386), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-386), const SYS_KILL ideal-int +pkg syscall (darwin-386), const SYS_KQUEUE ideal-int +pkg syscall (darwin-386), const SYS_LCHOWN ideal-int +pkg syscall (darwin-386), const SYS_LINK ideal-int +pkg syscall (darwin-386), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-386), const SYS_LISTEN ideal-int +pkg syscall (darwin-386), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-386), const SYS_LSEEK ideal-int +pkg syscall (darwin-386), const SYS_LSTAT ideal-int +pkg syscall (darwin-386), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-386), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_LSTATV ideal-int +pkg syscall (darwin-386), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_MADVISE ideal-int +pkg syscall (darwin-386), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-386), const SYS_MINCORE ideal-int +pkg syscall (darwin-386), const SYS_MINHERIT ideal-int +pkg syscall (darwin-386), const SYS_MKCOMPLEX ideal-int +pkg syscall (darwin-386), const SYS_MKDIR ideal-int +pkg syscall (darwin-386), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_MKFIFO ideal-int +pkg syscall (darwin-386), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_MKNOD ideal-int +pkg syscall (darwin-386), const SYS_MLOCK ideal-int +pkg syscall (darwin-386), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-386), const SYS_MMAP ideal-int +pkg syscall (darwin-386), const SYS_MODWATCH ideal-int +pkg syscall (darwin-386), const SYS_MOUNT ideal-int +pkg syscall (darwin-386), const SYS_MPROTECT ideal-int +pkg syscall (darwin-386), const SYS_MSGCTL ideal-int +pkg syscall (darwin-386), const SYS_MSGGET ideal-int +pkg syscall (darwin-386), const SYS_MSGRCV ideal-int +pkg syscall (darwin-386), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_MSGSND ideal-int +pkg syscall (darwin-386), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_MSGSYS ideal-int +pkg syscall (darwin-386), const SYS_MSYNC ideal-int +pkg syscall (darwin-386), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-386), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-386), const SYS_MUNMAP ideal-int +pkg syscall (darwin-386), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-386), const SYS_NFSSVC ideal-int +pkg syscall (darwin-386), const SYS_OPEN ideal-int +pkg syscall (darwin-386), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_PATHCONF ideal-int +pkg syscall (darwin-386), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-386), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-386), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-386), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-386), const SYS_PIPE ideal-int +pkg syscall (darwin-386), const SYS_POLL ideal-int +pkg syscall (darwin-386), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-386), const SYS_PREAD ideal-int +pkg syscall (darwin-386), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-386), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-386), const SYS_PROFIL ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-386), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-386), const SYS_PTRACE ideal-int +pkg syscall (darwin-386), const SYS_PWRITE ideal-int +pkg syscall (darwin-386), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-386), const SYS_READ ideal-int +pkg syscall (darwin-386), const SYS_READLINK ideal-int +pkg syscall (darwin-386), const SYS_READV ideal-int +pkg syscall (darwin-386), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_REBOOT ideal-int +pkg syscall (darwin-386), const SYS_RECVFROM ideal-int +pkg syscall (darwin-386), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_RECVMSG ideal-int +pkg syscall (darwin-386), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-386), const SYS_RENAME ideal-int +pkg syscall (darwin-386), const SYS_REVOKE ideal-int +pkg syscall (darwin-386), const SYS_RMDIR ideal-int +pkg syscall (darwin-386), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-386), const SYS_SELECT ideal-int +pkg syscall (darwin-386), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_SEMCTL ideal-int +pkg syscall (darwin-386), const SYS_SEMGET ideal-int +pkg syscall (darwin-386), const SYS_SEMOP ideal-int +pkg syscall (darwin-386), const SYS_SEMSYS ideal-int +pkg syscall (darwin-386), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-386), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-386), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-386), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-386), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-386), const SYS_SEM_POST ideal-int +pkg syscall (darwin-386), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-386), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-386), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-386), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_SENDFILE ideal-int +pkg syscall (darwin-386), const SYS_SENDMSG ideal-int +pkg syscall (darwin-386), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_SENDTO ideal-int +pkg syscall (darwin-386), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-386), const SYS_SETAUDIT ideal-int +pkg syscall (darwin-386), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-386), const SYS_SETAUID ideal-int +pkg syscall (darwin-386), const SYS_SETEGID ideal-int +pkg syscall (darwin-386), const SYS_SETEUID ideal-int +pkg syscall (darwin-386), const SYS_SETGID ideal-int +pkg syscall (darwin-386), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-386), const SYS_SETITIMER ideal-int +pkg syscall (darwin-386), const SYS_SETLCID ideal-int +pkg syscall (darwin-386), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-386), const SYS_SETPGID ideal-int +pkg syscall (darwin-386), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-386), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-386), const SYS_SETREGID ideal-int +pkg syscall (darwin-386), const SYS_SETREUID ideal-int +pkg syscall (darwin-386), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-386), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-386), const SYS_SETSID ideal-int +pkg syscall (darwin-386), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-386), const SYS_SETTID ideal-int +pkg syscall (darwin-386), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-386), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-386), const SYS_SETUID ideal-int +pkg syscall (darwin-386), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-386), const SYS_SETXATTR ideal-int +pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-386), const SYS_SHMAT ideal-int +pkg syscall (darwin-386), const SYS_SHMCTL ideal-int +pkg syscall (darwin-386), const SYS_SHMDT ideal-int +pkg syscall (darwin-386), const SYS_SHMGET ideal-int +pkg syscall (darwin-386), const SYS_SHMSYS ideal-int +pkg syscall (darwin-386), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-386), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-386), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-386), const SYS_SIGACTION ideal-int +pkg syscall (darwin-386), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-386), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-386), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-386), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-386), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-386), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_SOCKET ideal-int +pkg syscall (darwin-386), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-386), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-386), const SYS_STAT ideal-int +pkg syscall (darwin-386), const SYS_STAT64 ideal-int +pkg syscall (darwin-386), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_STATFS ideal-int +pkg syscall (darwin-386), const SYS_STATFS64 ideal-int +pkg syscall (darwin-386), const SYS_STATV ideal-int +pkg syscall (darwin-386), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_SWAPON ideal-int +pkg syscall (darwin-386), const SYS_SYMLINK ideal-int +pkg syscall (darwin-386), const SYS_SYNC ideal-int +pkg syscall (darwin-386), const SYS_SYSCALL ideal-int +pkg syscall (darwin-386), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-386), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-386), const SYS_UMASK ideal-int +pkg syscall (darwin-386), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-386), const SYS_UNDELETE ideal-int +pkg syscall (darwin-386), const SYS_UNLINK ideal-int +pkg syscall (darwin-386), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-386), const SYS_UTIMES ideal-int +pkg syscall (darwin-386), const SYS_VFORK ideal-int +pkg syscall (darwin-386), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-386), const SYS_WAIT4 ideal-int +pkg syscall (darwin-386), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-386), const SYS_WAITID ideal-int +pkg syscall (darwin-386), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-386), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-386), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-386), const SYS_WRITE ideal-int +pkg syscall (darwin-386), const SYS_WRITEV ideal-int +pkg syscall (darwin-386), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-386), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-386), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-386), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-386), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-386), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-386), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-386), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-386), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-386), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-386), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-386), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-386), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-386), const SYS___SYSCTL ideal-int +pkg syscall (darwin-386), const S_IEXEC ideal-int +pkg syscall (darwin-386), const S_IFWHT ideal-int +pkg syscall (darwin-386), const S_IREAD ideal-int +pkg syscall (darwin-386), const S_IRGRP ideal-int +pkg syscall (darwin-386), const S_IROTH ideal-int +pkg syscall (darwin-386), const S_IRWXG ideal-int +pkg syscall (darwin-386), const S_IRWXO ideal-int +pkg syscall (darwin-386), const S_IRWXU ideal-int +pkg syscall (darwin-386), const S_ISTXT ideal-int +pkg syscall (darwin-386), const S_IWGRP ideal-int +pkg syscall (darwin-386), const S_IWOTH ideal-int +pkg syscall (darwin-386), const S_IWRITE ideal-int +pkg syscall (darwin-386), const S_IXGRP ideal-int +pkg syscall (darwin-386), const S_IXOTH ideal-int +pkg syscall (darwin-386), const SizeofBpfHdr ideal-int +pkg syscall (darwin-386), const SizeofBpfInsn ideal-int +pkg syscall (darwin-386), const SizeofBpfProgram ideal-int +pkg syscall (darwin-386), const SizeofBpfStat ideal-int +pkg syscall (darwin-386), const SizeofBpfVersion ideal-int +pkg syscall (darwin-386), const SizeofCmsghdr ideal-int +pkg syscall (darwin-386), const SizeofIPMreq ideal-int +pkg syscall (darwin-386), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-386), const SizeofIfData ideal-int +pkg syscall (darwin-386), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-386), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-386), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-386), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-386), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-386), const SizeofLinger ideal-int +pkg syscall (darwin-386), const SizeofMsghdr ideal-int +pkg syscall (darwin-386), const SizeofRtMetrics ideal-int +pkg syscall (darwin-386), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-386), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-386), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-386), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-386), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-386), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-386), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-386), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-386), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-386), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-386), const TCP_MAXSEG ideal-int +pkg syscall (darwin-386), const TCP_MAXWIN ideal-int +pkg syscall (darwin-386), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-386), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-386), const TCP_MINMSS ideal-int +pkg syscall (darwin-386), const TCP_MINMSSOVERLOAD ideal-int +pkg syscall (darwin-386), const TCP_MSS ideal-int +pkg syscall (darwin-386), const TCP_NOOPT ideal-int +pkg syscall (darwin-386), const TCP_NOPUSH ideal-int +pkg syscall (darwin-386), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-386), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-386), const TIOCCBRK ideal-int +pkg syscall (darwin-386), const TIOCCDTR ideal-int +pkg syscall (darwin-386), const TIOCCONS ideal-int +pkg syscall (darwin-386), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-386), const TIOCDRAIN ideal-int +pkg syscall (darwin-386), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-386), const TIOCEXCL ideal-int +pkg syscall (darwin-386), const TIOCEXT ideal-int +pkg syscall (darwin-386), const TIOCFLUSH ideal-int +pkg syscall (darwin-386), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-386), const TIOCGETA ideal-int +pkg syscall (darwin-386), const TIOCGETD ideal-int +pkg syscall (darwin-386), const TIOCGPGRP ideal-int +pkg syscall (darwin-386), const TIOCGWINSZ ideal-int +pkg syscall (darwin-386), const TIOCIXOFF ideal-int +pkg syscall (darwin-386), const TIOCIXON ideal-int +pkg syscall (darwin-386), const TIOCMBIC ideal-int +pkg syscall (darwin-386), const TIOCMBIS ideal-int +pkg syscall (darwin-386), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-386), const TIOCMGET ideal-int +pkg syscall (darwin-386), const TIOCMODG ideal-int +pkg syscall (darwin-386), const TIOCMODS ideal-int +pkg syscall (darwin-386), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-386), const TIOCMSET ideal-int +pkg syscall (darwin-386), const TIOCM_CAR ideal-int +pkg syscall (darwin-386), const TIOCM_CD ideal-int +pkg syscall (darwin-386), const TIOCM_CTS ideal-int +pkg syscall (darwin-386), const TIOCM_DSR ideal-int +pkg syscall (darwin-386), const TIOCM_DTR ideal-int +pkg syscall (darwin-386), const TIOCM_LE ideal-int +pkg syscall (darwin-386), const TIOCM_RI ideal-int +pkg syscall (darwin-386), const TIOCM_RNG ideal-int +pkg syscall (darwin-386), const TIOCM_RTS ideal-int +pkg syscall (darwin-386), const TIOCM_SR ideal-int +pkg syscall (darwin-386), const TIOCM_ST ideal-int +pkg syscall (darwin-386), const TIOCNOTTY ideal-int +pkg syscall (darwin-386), const TIOCNXCL ideal-int +pkg syscall (darwin-386), const TIOCOUTQ ideal-int +pkg syscall (darwin-386), const TIOCPKT ideal-int +pkg syscall (darwin-386), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-386), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-386), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-386), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-386), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-386), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-386), const TIOCPKT_START ideal-int +pkg syscall (darwin-386), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-386), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-386), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-386), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-386), const TIOCREMOTE ideal-int +pkg syscall (darwin-386), const TIOCSBRK ideal-int +pkg syscall (darwin-386), const TIOCSCONS ideal-int +pkg syscall (darwin-386), const TIOCSCTTY ideal-int +pkg syscall (darwin-386), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-386), const TIOCSDTR ideal-int +pkg syscall (darwin-386), const TIOCSETA ideal-int +pkg syscall (darwin-386), const TIOCSETAF ideal-int +pkg syscall (darwin-386), const TIOCSETAW ideal-int +pkg syscall (darwin-386), const TIOCSETD ideal-int +pkg syscall (darwin-386), const TIOCSIG ideal-int +pkg syscall (darwin-386), const TIOCSPGRP ideal-int +pkg syscall (darwin-386), const TIOCSTART ideal-int +pkg syscall (darwin-386), const TIOCSTAT ideal-int +pkg syscall (darwin-386), const TIOCSTI ideal-int +pkg syscall (darwin-386), const TIOCSTOP ideal-int +pkg syscall (darwin-386), const TIOCSWINSZ ideal-int +pkg syscall (darwin-386), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-386), const TIOCUCNTL ideal-int +pkg syscall (darwin-386), const WCONTINUED ideal-int +pkg syscall (darwin-386), const WCOREFLAG ideal-int +pkg syscall (darwin-386), const WEXITED ideal-int +pkg syscall (darwin-386), const WNOHANG ideal-int +pkg syscall (darwin-386), const WNOWAIT ideal-int +pkg syscall (darwin-386), const WORDSIZE ideal-int +pkg syscall (darwin-386), const WSTOPPED ideal-int +pkg syscall (darwin-386), const WUNTRACED ideal-int +pkg syscall (darwin-386), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-386), func Access(string, uint32) error +pkg syscall (darwin-386), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-386), func Bind(int, Sockaddr) error +pkg syscall (darwin-386), func BpfBuflen(int) (int, error) +pkg syscall (darwin-386), func BpfDatalink(int) (int, error) +pkg syscall (darwin-386), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-386), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-386), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-386), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-386), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-386), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-386), func CheckBpfVersion(int) error +pkg syscall (darwin-386), func Chflags(string, int) error +pkg syscall (darwin-386), func Chroot(string) error +pkg syscall (darwin-386), func Close(int) error +pkg syscall (darwin-386), func CloseOnExec(int) +pkg syscall (darwin-386), func CmsgLen(int) int +pkg syscall (darwin-386), func CmsgSpace(int) int +pkg syscall (darwin-386), func Connect(int, Sockaddr) error +pkg syscall (darwin-386), func Dup(int) (int, error) +pkg syscall (darwin-386), func Dup2(int, int) error +pkg syscall (darwin-386), func Exchangedata(string, string, int) error +pkg syscall (darwin-386), func Fchdir(int) error +pkg syscall (darwin-386), func Fchflags(string, int) error +pkg syscall (darwin-386), func Fchmod(int, uint32) error +pkg syscall (darwin-386), func Fchown(int, int, int) error +pkg syscall (darwin-386), func Flock(int, int) error +pkg syscall (darwin-386), func FlushBpf(int) error +pkg syscall (darwin-386), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-386), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-386), func Fstat(int, *Stat_t) error +pkg syscall (darwin-386), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-386), func Fsync(int) error +pkg syscall (darwin-386), func Ftruncate(int, int64) error +pkg syscall (darwin-386), func Futimes(int, []Timeval) error +pkg syscall (darwin-386), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-386), func Getdtablesize() int +pkg syscall (darwin-386), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-386), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-386), func Getpgid(int) (int, error) +pkg syscall (darwin-386), func Getpgrp() int +pkg syscall (darwin-386), func Getpriority(int, int) (int, error) +pkg syscall (darwin-386), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-386), func Getrusage(int, *Rusage) error +pkg syscall (darwin-386), func Getsid(int) (int, error) +pkg syscall (darwin-386), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-386), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-386), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-386), func Issetugid() bool +pkg syscall (darwin-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-386), func Kill(int, Signal) error +pkg syscall (darwin-386), func Kqueue() (int, error) +pkg syscall (darwin-386), func Listen(int, int) error +pkg syscall (darwin-386), func Lstat(string, *Stat_t) error +pkg syscall (darwin-386), func Mkfifo(string, uint32) error +pkg syscall (darwin-386), func Mknod(string, uint32, int) error +pkg syscall (darwin-386), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-386), func Munmap([]uint8) error +pkg syscall (darwin-386), func NsecToTimespec(int64) Timespec +pkg syscall (darwin-386), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-386), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-386), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-386), func Pathconf(string, int) (int, error) +pkg syscall (darwin-386), func Pipe([]int) error +pkg syscall (darwin-386), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-386), func PtraceAttach(int) error +pkg syscall (darwin-386), func PtraceDetach(int) error +pkg syscall (darwin-386), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386), func Read(int, []uint8) (int, error) +pkg syscall (darwin-386), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-386), func Revoke(string) error +pkg syscall (darwin-386), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-386), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-386), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-386), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-386), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-386), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-386), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-386), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-386), func SetBpfImmediate(int, int) error +pkg syscall (darwin-386), func SetBpfInterface(int, string) error +pkg syscall (darwin-386), func SetBpfPromisc(int, int) error +pkg syscall (darwin-386), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-386), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-386), func SetNonblock(int, bool) error +pkg syscall (darwin-386), func Setegid(int) error +pkg syscall (darwin-386), func Seteuid(int) error +pkg syscall (darwin-386), func Setgid(int) error +pkg syscall (darwin-386), func Setgroups([]int) error +pkg syscall (darwin-386), func Setlogin(string) error +pkg syscall (darwin-386), func Setpgid(int, int) error +pkg syscall (darwin-386), func Setpriority(int, int, int) error +pkg syscall (darwin-386), func Setprivexec(int) error +pkg syscall (darwin-386), func Setregid(int, int) error +pkg syscall (darwin-386), func Setreuid(int, int) error +pkg syscall (darwin-386), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-386), func Setsid() (int, error) +pkg syscall (darwin-386), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-386), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-386), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-386), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-386), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-386), func Settimeofday(*Timeval) error +pkg syscall (darwin-386), func Setuid(int) error +pkg syscall (darwin-386), func Shutdown(int, int) error +pkg syscall (darwin-386), func Socket(int, int, int) (int, error) +pkg syscall (darwin-386), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-386), func Stat(string, *Stat_t) error +pkg syscall (darwin-386), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-386), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-386), func Sync() error +pkg syscall (darwin-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386), func Sysctl(string) (string, error) +pkg syscall (darwin-386), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-386), func TimespecToNsec(Timespec) int64 +pkg syscall (darwin-386), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-386), func Truncate(string, int64) error +pkg syscall (darwin-386), func Umask(int) int +pkg syscall (darwin-386), func Undelete(string) error +pkg syscall (darwin-386), func UnixRights(...int) []uint8 +pkg syscall (darwin-386), func Unmount(string, int) error +pkg syscall (darwin-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-386), func Write(int, []uint8) (int, error) +pkg syscall (darwin-386), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-386), method (*Iovec) SetLen(int) +pkg syscall (darwin-386), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-386), type BpfHdr struct +pkg syscall (darwin-386), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-386), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-386), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-386), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type BpfHdr struct, Tstamp Timeval +pkg syscall (darwin-386), type BpfInsn struct +pkg syscall (darwin-386), type BpfInsn struct, Code uint16 +pkg syscall (darwin-386), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-386), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-386), type BpfInsn struct, K uint32 +pkg syscall (darwin-386), type BpfProgram struct +pkg syscall (darwin-386), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-386), type BpfProgram struct, Len uint32 +pkg syscall (darwin-386), type BpfStat struct +pkg syscall (darwin-386), type BpfStat struct, Drop uint32 +pkg syscall (darwin-386), type BpfStat struct, Recv uint32 +pkg syscall (darwin-386), type BpfVersion struct +pkg syscall (darwin-386), type BpfVersion struct, Major uint16 +pkg syscall (darwin-386), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-386), type Cmsghdr struct +pkg syscall (darwin-386), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-386), type Cmsghdr struct, Level int32 +pkg syscall (darwin-386), type Cmsghdr struct, Type int32 +pkg syscall (darwin-386), type Credential struct +pkg syscall (darwin-386), type Credential struct, Gid uint32 +pkg syscall (darwin-386), type Credential struct, Groups []uint32 +pkg syscall (darwin-386), type Credential struct, Uid uint32 +pkg syscall (darwin-386), type Dirent struct +pkg syscall (darwin-386), type Dirent struct, Ino uint64 +pkg syscall (darwin-386), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-386), type Dirent struct, Namlen uint16 +pkg syscall (darwin-386), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-386), type Dirent struct, Reclen uint16 +pkg syscall (darwin-386), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-386), type Dirent struct, Type uint8 +pkg syscall (darwin-386), type Fbootstraptransfer_t struct +pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Length uint32 +pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-386), type FdSet struct +pkg syscall (darwin-386), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-386), type Flock_t struct +pkg syscall (darwin-386), type Flock_t struct, Len int64 +pkg syscall (darwin-386), type Flock_t struct, Pid int32 +pkg syscall (darwin-386), type Flock_t struct, Start int64 +pkg syscall (darwin-386), type Flock_t struct, Type int16 +pkg syscall (darwin-386), type Flock_t struct, Whence int16 +pkg syscall (darwin-386), type Fsid struct +pkg syscall (darwin-386), type Fsid struct, Val [2]int32 +pkg syscall (darwin-386), type Fstore_t struct +pkg syscall (darwin-386), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-386), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-386), type Fstore_t struct, Length int64 +pkg syscall (darwin-386), type Fstore_t struct, Offset int64 +pkg syscall (darwin-386), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-386), type IfData struct +pkg syscall (darwin-386), type IfData struct, Addrlen uint8 +pkg syscall (darwin-386), type IfData struct, Baudrate uint32 +pkg syscall (darwin-386), type IfData struct, Collisions uint32 +pkg syscall (darwin-386), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-386), type IfData struct, Hwassist uint32 +pkg syscall (darwin-386), type IfData struct, Ibytes uint32 +pkg syscall (darwin-386), type IfData struct, Ierrors uint32 +pkg syscall (darwin-386), type IfData struct, Imcasts uint32 +pkg syscall (darwin-386), type IfData struct, Ipackets uint32 +pkg syscall (darwin-386), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-386), type IfData struct, Lastchange Timeval +pkg syscall (darwin-386), type IfData struct, Metric uint32 +pkg syscall (darwin-386), type IfData struct, Mtu uint32 +pkg syscall (darwin-386), type IfData struct, Noproto uint32 +pkg syscall (darwin-386), type IfData struct, Obytes uint32 +pkg syscall (darwin-386), type IfData struct, Oerrors uint32 +pkg syscall (darwin-386), type IfData struct, Omcasts uint32 +pkg syscall (darwin-386), type IfData struct, Opackets uint32 +pkg syscall (darwin-386), type IfData struct, Physical uint8 +pkg syscall (darwin-386), type IfData struct, Recvquota uint8 +pkg syscall (darwin-386), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-386), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-386), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-386), type IfData struct, Type uint8 +pkg syscall (darwin-386), type IfData struct, Typelen uint8 +pkg syscall (darwin-386), type IfData struct, Unused1 uint8 +pkg syscall (darwin-386), type IfData struct, Unused2 uint32 +pkg syscall (darwin-386), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-386), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-386), type IfMsghdr struct +pkg syscall (darwin-386), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-386), type IfMsghdr struct, Data IfData +pkg syscall (darwin-386), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-386), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-386), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-386), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-386), type IfaMsghdr struct +pkg syscall (darwin-386), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-386), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-386), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-386), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-386), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-386), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-386), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-386), type IfmaMsghdr struct +pkg syscall (darwin-386), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-386), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-386), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-386), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-386), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-386), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-386), type IfmaMsghdr2 struct +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-386), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-386), type Inet6Pktinfo struct +pkg syscall (darwin-386), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-386), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-386), type InterfaceAddrMessage struct +pkg syscall (darwin-386), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-386), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-386), type InterfaceMessage struct +pkg syscall (darwin-386), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-386), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-386), type Iovec struct +pkg syscall (darwin-386), type Iovec struct, Base *uint8 +pkg syscall (darwin-386), type Iovec struct, Len uint32 +pkg syscall (darwin-386), type Kevent_t struct +pkg syscall (darwin-386), type Kevent_t struct, Data int32 +pkg syscall (darwin-386), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-386), type Kevent_t struct, Filter int16 +pkg syscall (darwin-386), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-386), type Kevent_t struct, Ident uint32 +pkg syscall (darwin-386), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-386), type Log2phys_t struct +pkg syscall (darwin-386), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-386), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-386), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-386), type Msghdr struct +pkg syscall (darwin-386), type Msghdr struct, Control *uint8 +pkg syscall (darwin-386), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-386), type Msghdr struct, Flags int32 +pkg syscall (darwin-386), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-386), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-386), type Msghdr struct, Name *uint8 +pkg syscall (darwin-386), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-386), type Radvisory_t struct +pkg syscall (darwin-386), type Radvisory_t struct, Count int32 +pkg syscall (darwin-386), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-386), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-386), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-386), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-386), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-386), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-386), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-386), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-386), type RawSockaddrInet6 struct +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (darwin-386), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (darwin-386), type RawSockaddrUnix struct +pkg syscall (darwin-386), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-386), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-386), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-386), type Rlimit struct +pkg syscall (darwin-386), type Rlimit struct, Cur uint64 +pkg syscall (darwin-386), type Rlimit struct, Max uint64 +pkg syscall (darwin-386), type RouteMessage struct +pkg syscall (darwin-386), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-386), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-386), type RoutingMessage interface, unexported methods +pkg syscall (darwin-386), type RtMetrics struct +pkg syscall (darwin-386), type RtMetrics struct, Expire int32 +pkg syscall (darwin-386), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-386), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-386), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-386), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-386), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-386), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-386), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-386), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-386), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-386), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-386), type RtMsghdr struct +pkg syscall (darwin-386), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-386), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-386), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-386), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-386), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-386), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-386), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-386), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-386), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-386), type RtMsghdr struct, Use int32 +pkg syscall (darwin-386), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-386), type Rusage struct, Idrss int32 +pkg syscall (darwin-386), type Rusage struct, Inblock int32 +pkg syscall (darwin-386), type Rusage struct, Isrss int32 +pkg syscall (darwin-386), type Rusage struct, Ixrss int32 +pkg syscall (darwin-386), type Rusage struct, Majflt int32 +pkg syscall (darwin-386), type Rusage struct, Maxrss int32 +pkg syscall (darwin-386), type Rusage struct, Minflt int32 +pkg syscall (darwin-386), type Rusage struct, Msgrcv int32 +pkg syscall (darwin-386), type Rusage struct, Msgsnd int32 +pkg syscall (darwin-386), type Rusage struct, Nivcsw int32 +pkg syscall (darwin-386), type Rusage struct, Nsignals int32 +pkg syscall (darwin-386), type Rusage struct, Nswap int32 +pkg syscall (darwin-386), type Rusage struct, Nvcsw int32 +pkg syscall (darwin-386), type Rusage struct, Oublock int32 +pkg syscall (darwin-386), type Rusage struct, Stime Timeval +pkg syscall (darwin-386), type Rusage struct, Utime Timeval +pkg syscall (darwin-386), type SockaddrDatalink struct +pkg syscall (darwin-386), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-386), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-386), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-386), type SocketControlMessage struct +pkg syscall (darwin-386), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-386), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-386), type Stat_t struct +pkg syscall (darwin-386), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-386), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-386), type Stat_t struct, Blksize int32 +pkg syscall (darwin-386), type Stat_t struct, Blocks int64 +pkg syscall (darwin-386), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-386), type Stat_t struct, Dev int32 +pkg syscall (darwin-386), type Stat_t struct, Flags uint32 +pkg syscall (darwin-386), type Stat_t struct, Gen uint32 +pkg syscall (darwin-386), type Stat_t struct, Gid uint32 +pkg syscall (darwin-386), type Stat_t struct, Ino uint64 +pkg syscall (darwin-386), type Stat_t struct, Lspare int32 +pkg syscall (darwin-386), type Stat_t struct, Mode uint16 +pkg syscall (darwin-386), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-386), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-386), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-386), type Stat_t struct, Rdev int32 +pkg syscall (darwin-386), type Stat_t struct, Size int64 +pkg syscall (darwin-386), type Stat_t struct, Uid uint32 +pkg syscall (darwin-386), type Statfs_t struct +pkg syscall (darwin-386), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-386), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-386), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-386), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-386), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-386), type Statfs_t struct, Files uint64 +pkg syscall (darwin-386), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-386), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-386), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-386), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-386), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-386), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-386), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-386), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-386), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-386), type Statfs_t struct, Type uint32 +pkg syscall (darwin-386), type SysProcAttr struct, Chroot string +pkg syscall (darwin-386), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-386), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-386), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-386), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-386), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-386), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-386), type Timespec struct, Nsec int32 +pkg syscall (darwin-386), type Timespec struct, Sec int32 +pkg syscall (darwin-386), type Timeval struct, Sec int32 +pkg syscall (darwin-386), type Timeval struct, Usec int32 +pkg syscall (darwin-386), type Timeval32 [0]uint8 +pkg syscall (darwin-386), type WaitStatus uint32 +pkg syscall (darwin-386), var Stderr int +pkg syscall (darwin-386), var Stdin int +pkg syscall (darwin-386), var Stdout int +pkg syscall (darwin-386-cgo), const AF_APPLETALK ideal-int +pkg syscall (darwin-386-cgo), const AF_CCITT ideal-int +pkg syscall (darwin-386-cgo), const AF_CHAOS ideal-int +pkg syscall (darwin-386-cgo), const AF_CNT ideal-int +pkg syscall (darwin-386-cgo), const AF_COIP ideal-int +pkg syscall (darwin-386-cgo), const AF_DATAKIT ideal-int +pkg syscall (darwin-386-cgo), const AF_DECnet ideal-int +pkg syscall (darwin-386-cgo), const AF_DLI ideal-int +pkg syscall (darwin-386-cgo), const AF_E164 ideal-int +pkg syscall (darwin-386-cgo), const AF_ECMA ideal-int +pkg syscall (darwin-386-cgo), const AF_HYLINK ideal-int +pkg syscall (darwin-386-cgo), const AF_IEEE80211 ideal-int +pkg syscall (darwin-386-cgo), const AF_IMPLINK ideal-int +pkg syscall (darwin-386-cgo), const AF_IPX ideal-int +pkg syscall (darwin-386-cgo), const AF_ISDN ideal-int +pkg syscall (darwin-386-cgo), const AF_ISO ideal-int +pkg syscall (darwin-386-cgo), const AF_LAT ideal-int +pkg syscall (darwin-386-cgo), const AF_LINK ideal-int +pkg syscall (darwin-386-cgo), const AF_LOCAL ideal-int +pkg syscall (darwin-386-cgo), const AF_MAX ideal-int +pkg syscall (darwin-386-cgo), const AF_NATM ideal-int +pkg syscall (darwin-386-cgo), const AF_NDRV ideal-int +pkg syscall (darwin-386-cgo), const AF_NETBIOS ideal-int +pkg syscall (darwin-386-cgo), const AF_NS ideal-int +pkg syscall (darwin-386-cgo), const AF_OSI ideal-int +pkg syscall (darwin-386-cgo), const AF_PPP ideal-int +pkg syscall (darwin-386-cgo), const AF_PUP ideal-int +pkg syscall (darwin-386-cgo), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-386-cgo), const AF_ROUTE ideal-int +pkg syscall (darwin-386-cgo), const AF_SIP ideal-int +pkg syscall (darwin-386-cgo), const AF_SNA ideal-int +pkg syscall (darwin-386-cgo), const AF_SYSTEM ideal-int +pkg syscall (darwin-386-cgo), const BIOCFLUSH ideal-int +pkg syscall (darwin-386-cgo), const BIOCGBLEN ideal-int +pkg syscall (darwin-386-cgo), const BIOCGDLT ideal-int +pkg syscall (darwin-386-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-386-cgo), const BIOCGETIF ideal-int +pkg syscall (darwin-386-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-386-cgo), const BIOCGRSIG ideal-int +pkg syscall (darwin-386-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-386-cgo), const BIOCGSEESENT ideal-int +pkg syscall (darwin-386-cgo), const BIOCGSTATS ideal-int +pkg syscall (darwin-386-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-386-cgo), const BIOCPROMISC ideal-int +pkg syscall (darwin-386-cgo), const BIOCSBLEN ideal-int +pkg syscall (darwin-386-cgo), const BIOCSDLT ideal-int +pkg syscall (darwin-386-cgo), const BIOCSETF ideal-int +pkg syscall (darwin-386-cgo), const BIOCSETIF ideal-int +pkg syscall (darwin-386-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-386-cgo), const BIOCSRSIG ideal-int +pkg syscall (darwin-386-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-386-cgo), const BIOCSSEESENT ideal-int +pkg syscall (darwin-386-cgo), const BIOCVERSION ideal-int +pkg syscall (darwin-386-cgo), const BPF_A ideal-int +pkg syscall (darwin-386-cgo), const BPF_ABS ideal-int +pkg syscall (darwin-386-cgo), const BPF_ADD ideal-int +pkg syscall (darwin-386-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-386-cgo), const BPF_ALU ideal-int +pkg syscall (darwin-386-cgo), const BPF_AND ideal-int +pkg syscall (darwin-386-cgo), const BPF_B ideal-int +pkg syscall (darwin-386-cgo), const BPF_DIV ideal-int +pkg syscall (darwin-386-cgo), const BPF_H ideal-int +pkg syscall (darwin-386-cgo), const BPF_IMM ideal-int +pkg syscall (darwin-386-cgo), const BPF_IND ideal-int +pkg syscall (darwin-386-cgo), const BPF_JA ideal-int +pkg syscall (darwin-386-cgo), const BPF_JEQ ideal-int +pkg syscall (darwin-386-cgo), const BPF_JGE ideal-int +pkg syscall (darwin-386-cgo), const BPF_JGT ideal-int +pkg syscall (darwin-386-cgo), const BPF_JMP ideal-int +pkg syscall (darwin-386-cgo), const BPF_JSET ideal-int +pkg syscall (darwin-386-cgo), const BPF_K ideal-int +pkg syscall (darwin-386-cgo), const BPF_LD ideal-int +pkg syscall (darwin-386-cgo), const BPF_LDX ideal-int +pkg syscall (darwin-386-cgo), const BPF_LEN ideal-int +pkg syscall (darwin-386-cgo), const BPF_LSH ideal-int +pkg syscall (darwin-386-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-386-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-386-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-386-cgo), const BPF_MEM ideal-int +pkg syscall (darwin-386-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-386-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-386-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-386-cgo), const BPF_MISC ideal-int +pkg syscall (darwin-386-cgo), const BPF_MSH ideal-int +pkg syscall (darwin-386-cgo), const BPF_MUL ideal-int +pkg syscall (darwin-386-cgo), const BPF_NEG ideal-int +pkg syscall (darwin-386-cgo), const BPF_OR ideal-int +pkg syscall (darwin-386-cgo), const BPF_RELEASE ideal-int +pkg syscall (darwin-386-cgo), const BPF_RET ideal-int +pkg syscall (darwin-386-cgo), const BPF_RSH ideal-int +pkg syscall (darwin-386-cgo), const BPF_ST ideal-int +pkg syscall (darwin-386-cgo), const BPF_STX ideal-int +pkg syscall (darwin-386-cgo), const BPF_SUB ideal-int +pkg syscall (darwin-386-cgo), const BPF_TAX ideal-int +pkg syscall (darwin-386-cgo), const BPF_TXA ideal-int +pkg syscall (darwin-386-cgo), const BPF_W ideal-int +pkg syscall (darwin-386-cgo), const BPF_X ideal-int +pkg syscall (darwin-386-cgo), const CTL_MAXNAME ideal-int +pkg syscall (darwin-386-cgo), const CTL_NET ideal-int +pkg syscall (darwin-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-386-cgo), const DLT_ARCNET ideal-int +pkg syscall (darwin-386-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-386-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-386-cgo), const DLT_AX25 ideal-int +pkg syscall (darwin-386-cgo), const DLT_CHAOS ideal-int +pkg syscall (darwin-386-cgo), const DLT_CHDLC ideal-int +pkg syscall (darwin-386-cgo), const DLT_C_HDLC ideal-int +pkg syscall (darwin-386-cgo), const DLT_EN10MB ideal-int +pkg syscall (darwin-386-cgo), const DLT_EN3MB ideal-int +pkg syscall (darwin-386-cgo), const DLT_FDDI ideal-int +pkg syscall (darwin-386-cgo), const DLT_IEEE802 ideal-int +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-386-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-386-cgo), const DLT_LOOP ideal-int +pkg syscall (darwin-386-cgo), const DLT_NULL ideal-int +pkg syscall (darwin-386-cgo), const DLT_PFLOG ideal-int +pkg syscall (darwin-386-cgo), const DLT_PFSYNC ideal-int +pkg syscall (darwin-386-cgo), const DLT_PPP ideal-int +pkg syscall (darwin-386-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-386-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-386-cgo), const DLT_PRONET ideal-int +pkg syscall (darwin-386-cgo), const DLT_RAW ideal-int +pkg syscall (darwin-386-cgo), const DLT_SLIP ideal-int +pkg syscall (darwin-386-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-386-cgo), const DT_BLK ideal-int +pkg syscall (darwin-386-cgo), const DT_CHR ideal-int +pkg syscall (darwin-386-cgo), const DT_DIR ideal-int +pkg syscall (darwin-386-cgo), const DT_FIFO ideal-int +pkg syscall (darwin-386-cgo), const DT_LNK ideal-int +pkg syscall (darwin-386-cgo), const DT_REG ideal-int +pkg syscall (darwin-386-cgo), const DT_SOCK ideal-int +pkg syscall (darwin-386-cgo), const DT_UNKNOWN ideal-int +pkg syscall (darwin-386-cgo), const DT_WHT ideal-int +pkg syscall (darwin-386-cgo), const EAUTH Errno +pkg syscall (darwin-386-cgo), const EBADARCH Errno +pkg syscall (darwin-386-cgo), const EBADEXEC Errno +pkg syscall (darwin-386-cgo), const EBADMACHO Errno +pkg syscall (darwin-386-cgo), const EBADMSG Errno +pkg syscall (darwin-386-cgo), const EBADRPC Errno +pkg syscall (darwin-386-cgo), const ECHO ideal-int +pkg syscall (darwin-386-cgo), const ECHOCTL ideal-int +pkg syscall (darwin-386-cgo), const ECHOE ideal-int +pkg syscall (darwin-386-cgo), const ECHOK ideal-int +pkg syscall (darwin-386-cgo), const ECHOKE ideal-int +pkg syscall (darwin-386-cgo), const ECHONL ideal-int +pkg syscall (darwin-386-cgo), const ECHOPRT ideal-int +pkg syscall (darwin-386-cgo), const EDEVERR Errno +pkg syscall (darwin-386-cgo), const EFTYPE Errno +pkg syscall (darwin-386-cgo), const ELAST Errno +pkg syscall (darwin-386-cgo), const EMULTIHOP Errno +pkg syscall (darwin-386-cgo), const ENEEDAUTH Errno +pkg syscall (darwin-386-cgo), const ENOATTR Errno +pkg syscall (darwin-386-cgo), const ENODATA Errno +pkg syscall (darwin-386-cgo), const ENOLINK Errno +pkg syscall (darwin-386-cgo), const ENOPOLICY Errno +pkg syscall (darwin-386-cgo), const ENOSR Errno +pkg syscall (darwin-386-cgo), const ENOSTR Errno +pkg syscall (darwin-386-cgo), const ENOTRECOVERABLE Errno +pkg syscall (darwin-386-cgo), const EOWNERDEAD Errno +pkg syscall (darwin-386-cgo), const EPROCLIM Errno +pkg syscall (darwin-386-cgo), const EPROCUNAVAIL Errno +pkg syscall (darwin-386-cgo), const EPROGMISMATCH Errno +pkg syscall (darwin-386-cgo), const EPROGUNAVAIL Errno +pkg syscall (darwin-386-cgo), const EPROTO Errno +pkg syscall (darwin-386-cgo), const EPWROFF Errno +pkg syscall (darwin-386-cgo), const ERPCMISMATCH Errno +pkg syscall (darwin-386-cgo), const ESHLIBVERS Errno +pkg syscall (darwin-386-cgo), const ETIME Errno +pkg syscall (darwin-386-cgo), const EVFILT_AIO ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_FS ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_PROC ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_READ ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_TIMER ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_USER ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_VM ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_VNODE ideal-int +pkg syscall (darwin-386-cgo), const EVFILT_WRITE ideal-int +pkg syscall (darwin-386-cgo), const EV_ADD ideal-int +pkg syscall (darwin-386-cgo), const EV_CLEAR ideal-int +pkg syscall (darwin-386-cgo), const EV_DELETE ideal-int +pkg syscall (darwin-386-cgo), const EV_DISABLE ideal-int +pkg syscall (darwin-386-cgo), const EV_DISPATCH ideal-int +pkg syscall (darwin-386-cgo), const EV_ENABLE ideal-int +pkg syscall (darwin-386-cgo), const EV_EOF ideal-int +pkg syscall (darwin-386-cgo), const EV_ERROR ideal-int +pkg syscall (darwin-386-cgo), const EV_FLAG0 ideal-int +pkg syscall (darwin-386-cgo), const EV_FLAG1 ideal-int +pkg syscall (darwin-386-cgo), const EV_ONESHOT ideal-int +pkg syscall (darwin-386-cgo), const EV_OOBAND ideal-int +pkg syscall (darwin-386-cgo), const EV_POLL ideal-int +pkg syscall (darwin-386-cgo), const EV_RECEIPT ideal-int +pkg syscall (darwin-386-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-386-cgo), const EXTA ideal-int +pkg syscall (darwin-386-cgo), const EXTB ideal-int +pkg syscall (darwin-386-cgo), const EXTPROC ideal-int +pkg syscall (darwin-386-cgo), const FD_CLOEXEC ideal-int +pkg syscall (darwin-386-cgo), const FD_SETSIZE ideal-int +pkg syscall (darwin-386-cgo), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-386-cgo), const F_ADDSIGS ideal-int +pkg syscall (darwin-386-cgo), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-386-cgo), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-386-cgo), const F_CHKCLEAN ideal-int +pkg syscall (darwin-386-cgo), const F_DUPFD ideal-int +pkg syscall (darwin-386-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-386-cgo), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-386-cgo), const F_FREEZE_FS ideal-int +pkg syscall (darwin-386-cgo), const F_FULLFSYNC ideal-int +pkg syscall (darwin-386-cgo), const F_GETFD ideal-int +pkg syscall (darwin-386-cgo), const F_GETFL ideal-int +pkg syscall (darwin-386-cgo), const F_GETLK ideal-int +pkg syscall (darwin-386-cgo), const F_GETLKPID ideal-int +pkg syscall (darwin-386-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-386-cgo), const F_GETOWN ideal-int +pkg syscall (darwin-386-cgo), const F_GETPATH ideal-int +pkg syscall (darwin-386-cgo), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-386-cgo), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-386-cgo), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-386-cgo), const F_LOG2PHYS ideal-int +pkg syscall (darwin-386-cgo), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-386-cgo), const F_MARKDEPENDENCY ideal-int +pkg syscall (darwin-386-cgo), const F_NOCACHE ideal-int +pkg syscall (darwin-386-cgo), const F_NODIRECT ideal-int +pkg syscall (darwin-386-cgo), const F_OK ideal-int +pkg syscall (darwin-386-cgo), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-386-cgo), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-386-cgo), const F_PREALLOCATE ideal-int +pkg syscall (darwin-386-cgo), const F_RDADVISE ideal-int +pkg syscall (darwin-386-cgo), const F_RDAHEAD ideal-int +pkg syscall (darwin-386-cgo), const F_RDLCK ideal-int +pkg syscall (darwin-386-cgo), const F_READBOOTSTRAP ideal-int +pkg syscall (darwin-386-cgo), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-386-cgo), const F_SETFD ideal-int +pkg syscall (darwin-386-cgo), const F_SETFL ideal-int +pkg syscall (darwin-386-cgo), const F_SETLK ideal-int +pkg syscall (darwin-386-cgo), const F_SETLKW ideal-int +pkg syscall (darwin-386-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-386-cgo), const F_SETOWN ideal-int +pkg syscall (darwin-386-cgo), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-386-cgo), const F_SETSIZE ideal-int +pkg syscall (darwin-386-cgo), const F_THAW_FS ideal-int +pkg syscall (darwin-386-cgo), const F_UNLCK ideal-int +pkg syscall (darwin-386-cgo), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-386-cgo), const F_WRITEBOOTSTRAP ideal-int +pkg syscall (darwin-386-cgo), const F_WRLCK ideal-int +pkg syscall (darwin-386-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-386-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-386-cgo), const IFF_DEBUG ideal-int +pkg syscall (darwin-386-cgo), const IFF_LINK0 ideal-int +pkg syscall (darwin-386-cgo), const IFF_LINK1 ideal-int +pkg syscall (darwin-386-cgo), const IFF_LINK2 ideal-int +pkg syscall (darwin-386-cgo), const IFF_NOARP ideal-int +pkg syscall (darwin-386-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-386-cgo), const IFF_OACTIVE ideal-int +pkg syscall (darwin-386-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-386-cgo), const IFF_PROMISC ideal-int +pkg syscall (darwin-386-cgo), const IFF_RUNNING ideal-int +pkg syscall (darwin-386-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-386-cgo), const IFNAMSIZ ideal-int +pkg syscall (darwin-386-cgo), const IFT_1822 ideal-int +pkg syscall (darwin-386-cgo), const IFT_AAL5 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ARCNET ideal-int +pkg syscall (darwin-386-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-386-cgo), const IFT_ATM ideal-int +pkg syscall (darwin-386-cgo), const IFT_BRIDGE ideal-int +pkg syscall (darwin-386-cgo), const IFT_CARP ideal-int +pkg syscall (darwin-386-cgo), const IFT_CELLULAR ideal-int +pkg syscall (darwin-386-cgo), const IFT_CEPT ideal-int +pkg syscall (darwin-386-cgo), const IFT_DS3 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ENC ideal-int +pkg syscall (darwin-386-cgo), const IFT_EON ideal-int +pkg syscall (darwin-386-cgo), const IFT_ETHER ideal-int +pkg syscall (darwin-386-cgo), const IFT_FAITH ideal-int +pkg syscall (darwin-386-cgo), const IFT_FDDI ideal-int +pkg syscall (darwin-386-cgo), const IFT_FRELAY ideal-int +pkg syscall (darwin-386-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-386-cgo), const IFT_GIF ideal-int +pkg syscall (darwin-386-cgo), const IFT_HDH1822 ideal-int +pkg syscall (darwin-386-cgo), const IFT_HIPPI ideal-int +pkg syscall (darwin-386-cgo), const IFT_HSSI ideal-int +pkg syscall (darwin-386-cgo), const IFT_HY ideal-int +pkg syscall (darwin-386-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-386-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISO88023 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISO88024 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISO88025 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ISO88026 ideal-int +pkg syscall (darwin-386-cgo), const IFT_L2VLAN ideal-int +pkg syscall (darwin-386-cgo), const IFT_LAPB ideal-int +pkg syscall (darwin-386-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-386-cgo), const IFT_LOOP ideal-int +pkg syscall (darwin-386-cgo), const IFT_MIOX25 ideal-int +pkg syscall (darwin-386-cgo), const IFT_MODEM ideal-int +pkg syscall (darwin-386-cgo), const IFT_NSIP ideal-int +pkg syscall (darwin-386-cgo), const IFT_OTHER ideal-int +pkg syscall (darwin-386-cgo), const IFT_P10 ideal-int +pkg syscall (darwin-386-cgo), const IFT_P80 ideal-int +pkg syscall (darwin-386-cgo), const IFT_PARA ideal-int +pkg syscall (darwin-386-cgo), const IFT_PDP ideal-int +pkg syscall (darwin-386-cgo), const IFT_PFLOG ideal-int +pkg syscall (darwin-386-cgo), const IFT_PFSYNC ideal-int +pkg syscall (darwin-386-cgo), const IFT_PPP ideal-int +pkg syscall (darwin-386-cgo), const IFT_PROPMUX ideal-int +pkg syscall (darwin-386-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-386-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-386-cgo), const IFT_RS232 ideal-int +pkg syscall (darwin-386-cgo), const IFT_SDLC ideal-int +pkg syscall (darwin-386-cgo), const IFT_SIP ideal-int +pkg syscall (darwin-386-cgo), const IFT_SLIP ideal-int +pkg syscall (darwin-386-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-386-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-386-cgo), const IFT_SONET ideal-int +pkg syscall (darwin-386-cgo), const IFT_SONETPATH ideal-int +pkg syscall (darwin-386-cgo), const IFT_SONETVT ideal-int +pkg syscall (darwin-386-cgo), const IFT_STARLAN ideal-int +pkg syscall (darwin-386-cgo), const IFT_STF ideal-int +pkg syscall (darwin-386-cgo), const IFT_T1 ideal-int +pkg syscall (darwin-386-cgo), const IFT_ULTRA ideal-int +pkg syscall (darwin-386-cgo), const IFT_V35 ideal-int +pkg syscall (darwin-386-cgo), const IFT_X25 ideal-int +pkg syscall (darwin-386-cgo), const IFT_X25DDN ideal-int +pkg syscall (darwin-386-cgo), const IFT_X25PLE ideal-int +pkg syscall (darwin-386-cgo), const IFT_XETHER ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-386-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-386-cgo), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-386-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_3PC ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_AH ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_APES ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_BHA ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_BLT ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_DDP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_DGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_DONE ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_EGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_EON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ESP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_GGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_GRE ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_HMP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IDP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IL ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_INP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_LARP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MAX ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MICP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_MUX ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ND ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_NONE ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_NSP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PGM ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PIM ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PRM ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PUP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_PVP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_RAW ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_RDP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_RVD ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SEP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_ST ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TCF ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_TTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_VINES ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_VISA ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_WSN ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_XNET ideal-int +pkg syscall (darwin-386-cgo), const IPPROTO_XTP ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-386-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-386-cgo), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-386-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-386-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FAITH ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FW_GET ideal-int +pkg syscall (darwin-386-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-386-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-386-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_MMTU ideal-int +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-386-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-386-cgo), const IPV6_TCLASS ideal-int +pkg syscall (darwin-386-cgo), const IPV6_VERSION ideal-int +pkg syscall (darwin-386-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-386-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-386-cgo), const IP_BOUND_IF ideal-int +pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-386-cgo), const IP_DF ideal-int +pkg syscall (darwin-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-386-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-386-cgo), const IP_FAITH ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_ADD ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_DEL ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_GET ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-386-cgo), const IP_FW_ZERO ideal-int +pkg syscall (darwin-386-cgo), const IP_HDRINCL ideal-int +pkg syscall (darwin-386-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-386-cgo), const IP_MAXPACKET ideal-int +pkg syscall (darwin-386-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-386-cgo), const IP_MF ideal-int +pkg syscall (darwin-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-386-cgo), const IP_MSFILTER ideal-int +pkg syscall (darwin-386-cgo), const IP_MSS ideal-int +pkg syscall (darwin-386-cgo), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-386-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-386-cgo), const IP_NAT__XXX ideal-int +pkg syscall (darwin-386-cgo), const IP_OFFMASK ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-386-cgo), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-386-cgo), const IP_OPTIONS ideal-int +pkg syscall (darwin-386-cgo), const IP_PKTINFO ideal-int +pkg syscall (darwin-386-cgo), const IP_PORTRANGE ideal-int +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-386-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVIF ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVOPTS ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-386-cgo), const IP_RECVTTL ideal-int +pkg syscall (darwin-386-cgo), const IP_RETOPTS ideal-int +pkg syscall (darwin-386-cgo), const IP_RF ideal-int +pkg syscall (darwin-386-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-386-cgo), const IP_RSVP_ON ideal-int +pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-386-cgo), const IP_STRIPHDR ideal-int +pkg syscall (darwin-386-cgo), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-386-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-386-cgo), const LOCK_EX ideal-int +pkg syscall (darwin-386-cgo), const LOCK_NB ideal-int +pkg syscall (darwin-386-cgo), const LOCK_SH ideal-int +pkg syscall (darwin-386-cgo), const LOCK_UN ideal-int +pkg syscall (darwin-386-cgo), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-386-cgo), const MADV_DONTNEED ideal-int +pkg syscall (darwin-386-cgo), const MADV_FREE ideal-int +pkg syscall (darwin-386-cgo), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-386-cgo), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-386-cgo), const MADV_NORMAL ideal-int +pkg syscall (darwin-386-cgo), const MADV_RANDOM ideal-int +pkg syscall (darwin-386-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-386-cgo), const MADV_WILLNEED ideal-int +pkg syscall (darwin-386-cgo), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-386-cgo), const MAP_ANON ideal-int +pkg syscall (darwin-386-cgo), const MAP_COPY ideal-int +pkg syscall (darwin-386-cgo), const MAP_FILE ideal-int +pkg syscall (darwin-386-cgo), const MAP_FIXED ideal-int +pkg syscall (darwin-386-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-386-cgo), const MAP_JIT ideal-int +pkg syscall (darwin-386-cgo), const MAP_NOCACHE ideal-int +pkg syscall (darwin-386-cgo), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-386-cgo), const MAP_NORESERVE ideal-int +pkg syscall (darwin-386-cgo), const MAP_PRIVATE ideal-int +pkg syscall (darwin-386-cgo), const MAP_RENAME ideal-int +pkg syscall (darwin-386-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-386-cgo), const MAP_SHARED ideal-int +pkg syscall (darwin-386-cgo), const MCL_CURRENT ideal-int +pkg syscall (darwin-386-cgo), const MCL_FUTURE ideal-int +pkg syscall (darwin-386-cgo), const MSG_CTRUNC ideal-int +pkg syscall (darwin-386-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-386-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-386-cgo), const MSG_EOF ideal-int +pkg syscall (darwin-386-cgo), const MSG_EOR ideal-int +pkg syscall (darwin-386-cgo), const MSG_FLUSH ideal-int +pkg syscall (darwin-386-cgo), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-386-cgo), const MSG_HOLD ideal-int +pkg syscall (darwin-386-cgo), const MSG_NEEDSA ideal-int +pkg syscall (darwin-386-cgo), const MSG_OOB ideal-int +pkg syscall (darwin-386-cgo), const MSG_PEEK ideal-int +pkg syscall (darwin-386-cgo), const MSG_RCVMORE ideal-int +pkg syscall (darwin-386-cgo), const MSG_SEND ideal-int +pkg syscall (darwin-386-cgo), const MSG_TRUNC ideal-int +pkg syscall (darwin-386-cgo), const MSG_WAITALL ideal-int +pkg syscall (darwin-386-cgo), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-386-cgo), const MS_ASYNC ideal-int +pkg syscall (darwin-386-cgo), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-386-cgo), const MS_INVALIDATE ideal-int +pkg syscall (darwin-386-cgo), const MS_KILLPAGES ideal-int +pkg syscall (darwin-386-cgo), const MS_SYNC ideal-int +pkg syscall (darwin-386-cgo), const NAME_MAX ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_DUMP ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_MAXID ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_STAT ideal-int +pkg syscall (darwin-386-cgo), const NET_RT_TRASH ideal-int +pkg syscall (darwin-386-cgo), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-386-cgo), const NOTE_CHILD ideal-int +pkg syscall (darwin-386-cgo), const NOTE_DELETE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_EXEC ideal-int +pkg syscall (darwin-386-cgo), const NOTE_EXIT ideal-int +pkg syscall (darwin-386-cgo), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-386-cgo), const NOTE_EXTEND ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFAND ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFNOP ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FFOR ideal-int +pkg syscall (darwin-386-cgo), const NOTE_FORK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_LINK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_LOWAT ideal-int +pkg syscall (darwin-386-cgo), const NOTE_NONE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-386-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_REAP ideal-int +pkg syscall (darwin-386-cgo), const NOTE_RENAME ideal-int +pkg syscall (darwin-386-cgo), const NOTE_RESOURCEEND ideal-int +pkg syscall (darwin-386-cgo), const NOTE_REVOKE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_SECONDS ideal-int +pkg syscall (darwin-386-cgo), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-386-cgo), const NOTE_TRACK ideal-int +pkg syscall (darwin-386-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-386-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-386-cgo), const NOTE_USECONDS ideal-int +pkg syscall (darwin-386-cgo), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-386-cgo), const NOTE_WRITE ideal-int +pkg syscall (darwin-386-cgo), const O_ACCMODE ideal-int +pkg syscall (darwin-386-cgo), const O_ALERT ideal-int +pkg syscall (darwin-386-cgo), const O_DIRECTORY ideal-int +pkg syscall (darwin-386-cgo), const O_DSYNC ideal-int +pkg syscall (darwin-386-cgo), const O_EVTONLY ideal-int +pkg syscall (darwin-386-cgo), const O_EXLOCK ideal-int +pkg syscall (darwin-386-cgo), const O_FSYNC ideal-int +pkg syscall (darwin-386-cgo), const O_NDELAY ideal-int +pkg syscall (darwin-386-cgo), const O_NOFOLLOW ideal-int +pkg syscall (darwin-386-cgo), const O_POPUP ideal-int +pkg syscall (darwin-386-cgo), const O_SHLOCK ideal-int +pkg syscall (darwin-386-cgo), const O_SYMLINK ideal-int +pkg syscall (darwin-386-cgo), const PROT_EXEC ideal-int +pkg syscall (darwin-386-cgo), const PROT_NONE ideal-int +pkg syscall (darwin-386-cgo), const PROT_READ ideal-int +pkg syscall (darwin-386-cgo), const PROT_WRITE ideal-int +pkg syscall (darwin-386-cgo), const PTRACE_CONT ideal-int +pkg syscall (darwin-386-cgo), const PTRACE_KILL ideal-int +pkg syscall (darwin-386-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-386-cgo), const PT_ATTACH ideal-int +pkg syscall (darwin-386-cgo), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-386-cgo), const PT_CONTINUE ideal-int +pkg syscall (darwin-386-cgo), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-386-cgo), const PT_DETACH ideal-int +pkg syscall (darwin-386-cgo), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-386-cgo), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-386-cgo), const PT_KILL ideal-int +pkg syscall (darwin-386-cgo), const PT_READ_D ideal-int +pkg syscall (darwin-386-cgo), const PT_READ_I ideal-int +pkg syscall (darwin-386-cgo), const PT_READ_U ideal-int +pkg syscall (darwin-386-cgo), const PT_SIGEXC ideal-int +pkg syscall (darwin-386-cgo), const PT_STEP ideal-int +pkg syscall (darwin-386-cgo), const PT_THUPDATE ideal-int +pkg syscall (darwin-386-cgo), const PT_TRACE_ME ideal-int +pkg syscall (darwin-386-cgo), const PT_WRITE_D ideal-int +pkg syscall (darwin-386-cgo), const PT_WRITE_I ideal-int +pkg syscall (darwin-386-cgo), const PT_WRITE_U ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_AS ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_CORE ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_CPU ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_DATA ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-386-cgo), const RLIMIT_STACK ideal-int +pkg syscall (darwin-386-cgo), const RLIM_INFINITY ideal-int +pkg syscall (darwin-386-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-386-cgo), const RTAX_BRD ideal-int +pkg syscall (darwin-386-cgo), const RTAX_DST ideal-int +pkg syscall (darwin-386-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-386-cgo), const RTAX_GENMASK ideal-int +pkg syscall (darwin-386-cgo), const RTAX_IFA ideal-int +pkg syscall (darwin-386-cgo), const RTAX_IFP ideal-int +pkg syscall (darwin-386-cgo), const RTAX_MAX ideal-int +pkg syscall (darwin-386-cgo), const RTAX_NETMASK ideal-int +pkg syscall (darwin-386-cgo), const RTA_AUTHOR ideal-int +pkg syscall (darwin-386-cgo), const RTA_BRD ideal-int +pkg syscall (darwin-386-cgo), const RTA_DST ideal-int +pkg syscall (darwin-386-cgo), const RTA_GATEWAY ideal-int +pkg syscall (darwin-386-cgo), const RTA_GENMASK ideal-int +pkg syscall (darwin-386-cgo), const RTA_IFA ideal-int +pkg syscall (darwin-386-cgo), const RTA_IFP ideal-int +pkg syscall (darwin-386-cgo), const RTA_NETMASK ideal-int +pkg syscall (darwin-386-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-386-cgo), const RTF_BROADCAST ideal-int +pkg syscall (darwin-386-cgo), const RTF_CLONING ideal-int +pkg syscall (darwin-386-cgo), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-386-cgo), const RTF_DELCLONE ideal-int +pkg syscall (darwin-386-cgo), const RTF_DONE ideal-int +pkg syscall (darwin-386-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-386-cgo), const RTF_GATEWAY ideal-int +pkg syscall (darwin-386-cgo), const RTF_HOST ideal-int +pkg syscall (darwin-386-cgo), const RTF_IFREF ideal-int +pkg syscall (darwin-386-cgo), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-386-cgo), const RTF_LLINFO ideal-int +pkg syscall (darwin-386-cgo), const RTF_LOCAL ideal-int +pkg syscall (darwin-386-cgo), const RTF_MODIFIED ideal-int +pkg syscall (darwin-386-cgo), const RTF_MULTICAST ideal-int +pkg syscall (darwin-386-cgo), const RTF_PINNED ideal-int +pkg syscall (darwin-386-cgo), const RTF_PRCLONING ideal-int +pkg syscall (darwin-386-cgo), const RTF_PROTO1 ideal-int +pkg syscall (darwin-386-cgo), const RTF_PROTO2 ideal-int +pkg syscall (darwin-386-cgo), const RTF_PROTO3 ideal-int +pkg syscall (darwin-386-cgo), const RTF_REJECT ideal-int +pkg syscall (darwin-386-cgo), const RTF_STATIC ideal-int +pkg syscall (darwin-386-cgo), const RTF_UP ideal-int +pkg syscall (darwin-386-cgo), const RTF_WASCLONED ideal-int +pkg syscall (darwin-386-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-386-cgo), const RTM_ADD ideal-int +pkg syscall (darwin-386-cgo), const RTM_CHANGE ideal-int +pkg syscall (darwin-386-cgo), const RTM_DELADDR ideal-int +pkg syscall (darwin-386-cgo), const RTM_DELETE ideal-int +pkg syscall (darwin-386-cgo), const RTM_DELMADDR ideal-int +pkg syscall (darwin-386-cgo), const RTM_GET ideal-int +pkg syscall (darwin-386-cgo), const RTM_GET2 ideal-int +pkg syscall (darwin-386-cgo), const RTM_IFINFO ideal-int +pkg syscall (darwin-386-cgo), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-386-cgo), const RTM_LOCK ideal-int +pkg syscall (darwin-386-cgo), const RTM_LOSING ideal-int +pkg syscall (darwin-386-cgo), const RTM_MISS ideal-int +pkg syscall (darwin-386-cgo), const RTM_NEWADDR ideal-int +pkg syscall (darwin-386-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-386-cgo), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-386-cgo), const RTM_OLDADD ideal-int +pkg syscall (darwin-386-cgo), const RTM_OLDDEL ideal-int +pkg syscall (darwin-386-cgo), const RTM_REDIRECT ideal-int +pkg syscall (darwin-386-cgo), const RTM_RESOLVE ideal-int +pkg syscall (darwin-386-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-386-cgo), const RTM_VERSION ideal-int +pkg syscall (darwin-386-cgo), const RTV_EXPIRE ideal-int +pkg syscall (darwin-386-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-386-cgo), const RTV_MTU ideal-int +pkg syscall (darwin-386-cgo), const RTV_RPIPE ideal-int +pkg syscall (darwin-386-cgo), const RTV_RTT ideal-int +pkg syscall (darwin-386-cgo), const RTV_RTTVAR ideal-int +pkg syscall (darwin-386-cgo), const RTV_SPIPE ideal-int +pkg syscall (darwin-386-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-386-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-386-cgo), const RUSAGE_SELF ideal-int +pkg syscall (darwin-386-cgo), const SCM_CREDS ideal-int +pkg syscall (darwin-386-cgo), const SCM_RIGHTS ideal-int +pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-386-cgo), const SIGCHLD Signal +pkg syscall (darwin-386-cgo), const SIGCONT Signal +pkg syscall (darwin-386-cgo), const SIGEMT Signal +pkg syscall (darwin-386-cgo), const SIGINFO Signal +pkg syscall (darwin-386-cgo), const SIGIO Signal +pkg syscall (darwin-386-cgo), const SIGIOT Signal +pkg syscall (darwin-386-cgo), const SIGPROF Signal +pkg syscall (darwin-386-cgo), const SIGSTOP Signal +pkg syscall (darwin-386-cgo), const SIGSYS Signal +pkg syscall (darwin-386-cgo), const SIGTSTP Signal +pkg syscall (darwin-386-cgo), const SIGTTIN Signal +pkg syscall (darwin-386-cgo), const SIGTTOU Signal +pkg syscall (darwin-386-cgo), const SIGURG Signal +pkg syscall (darwin-386-cgo), const SIGUSR1 Signal +pkg syscall (darwin-386-cgo), const SIGUSR2 Signal +pkg syscall (darwin-386-cgo), const SIGVTALRM Signal +pkg syscall (darwin-386-cgo), const SIGWINCH Signal +pkg syscall (darwin-386-cgo), const SIGXCPU Signal +pkg syscall (darwin-386-cgo), const SIGXFSZ Signal +pkg syscall (darwin-386-cgo), const SIOCADDMULTI ideal-int +pkg syscall (darwin-386-cgo), const SIOCAIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCALIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCARPIPLL ideal-int +pkg syscall (darwin-386-cgo), const SIOCATMARK ideal-int +pkg syscall (darwin-386-cgo), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-386-cgo), const SIOCDELMULTI ideal-int +pkg syscall (darwin-386-cgo), const SIOCDIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-386-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (darwin-386-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (darwin-386-cgo), const SIOCGETVLAN ideal-int +pkg syscall (darwin-386-cgo), const SIOCGHIWAT ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFBOND ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFCAP ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFCONF ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFKPI ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFMAC ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFMTU ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-386-cgo), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-386-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCGLOWAT ideal-int +pkg syscall (darwin-386-cgo), const SIOCGPGRP ideal-int +pkg syscall (darwin-386-cgo), const SIOCIFCREATE ideal-int +pkg syscall (darwin-386-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-386-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-386-cgo), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-386-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-386-cgo), const SIOCSETVLAN ideal-int +pkg syscall (darwin-386-cgo), const SIOCSHIWAT ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFBOND ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFCAP ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFKPI ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFMAC ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFMTU ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-386-cgo), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-386-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (darwin-386-cgo), const SIOCSLOWAT ideal-int +pkg syscall (darwin-386-cgo), const SIOCSPGRP ideal-int +pkg syscall (darwin-386-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-386-cgo), const SOCK_RDM ideal-int +pkg syscall (darwin-386-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-386-cgo), const SO_DEBUG ideal-int +pkg syscall (darwin-386-cgo), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-386-cgo), const SO_ERROR ideal-int +pkg syscall (darwin-386-cgo), const SO_LABEL ideal-int +pkg syscall (darwin-386-cgo), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-386-cgo), const SO_NKE ideal-int +pkg syscall (darwin-386-cgo), const SO_NOADDRERR ideal-int +pkg syscall (darwin-386-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-386-cgo), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-386-cgo), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-386-cgo), const SO_NREAD ideal-int +pkg syscall (darwin-386-cgo), const SO_NWRITE ideal-int +pkg syscall (darwin-386-cgo), const SO_OOBINLINE ideal-int +pkg syscall (darwin-386-cgo), const SO_PEERLABEL ideal-int +pkg syscall (darwin-386-cgo), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-386-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-386-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-386-cgo), const SO_RESTRICTIONS ideal-int +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYIN ideal-int +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYOUT ideal-int +pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYSET ideal-int +pkg syscall (darwin-386-cgo), const SO_REUSEPORT ideal-int +pkg syscall (darwin-386-cgo), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-386-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-386-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-386-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-386-cgo), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-386-cgo), const SO_TYPE ideal-int +pkg syscall (darwin-386-cgo), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-386-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-386-cgo), const SO_WANTMORE ideal-int +pkg syscall (darwin-386-cgo), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-386-cgo), const SYS_ACCEPT ideal-int +pkg syscall (darwin-386-cgo), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_ACCESS ideal-int +pkg syscall (darwin-386-cgo), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_ACCT ideal-int +pkg syscall (darwin-386-cgo), const SYS_ADD_PROFIL ideal-int +pkg syscall (darwin-386-cgo), const SYS_ADJTIME ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_READ ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-386-cgo), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDITON ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-386-cgo), const SYS_BIND ideal-int +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHMOD ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHOWN ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHROOT ideal-int +pkg syscall (darwin-386-cgo), const SYS_CHUD ideal-int +pkg syscall (darwin-386-cgo), const SYS_CLOSE ideal-int +pkg syscall (darwin-386-cgo), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_CONNECT ideal-int +pkg syscall (darwin-386-cgo), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_COPYFILE ideal-int +pkg syscall (darwin-386-cgo), const SYS_CSOPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_DELETE ideal-int +pkg syscall (darwin-386-cgo), const SYS_DUP ideal-int +pkg syscall (darwin-386-cgo), const SYS_DUP2 ideal-int +pkg syscall (darwin-386-cgo), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-386-cgo), const SYS_EXECVE ideal-int +pkg syscall (darwin-386-cgo), const SYS_EXIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCHDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCHMOD ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCHOWN ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCNTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-386-cgo), const SYS_FFSCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-386-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_FHOPEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-386-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_FLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_FORK ideal-int +pkg syscall (darwin-386-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-386-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTAT ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTATFS ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTATV ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSYNC ideal-int +pkg syscall (darwin-386-cgo), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-386-cgo), const SYS_FUTIMES ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETAUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETEGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETEUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETFH ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETITIMER ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETLCID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPGRP ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPPID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETSID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETTID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_GETXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-386-cgo), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_IOCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-386-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-386-cgo), const SYS_KEVENT ideal-int +pkg syscall (darwin-386-cgo), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_KILL ideal-int +pkg syscall (darwin-386-cgo), const SYS_KQUEUE ideal-int +pkg syscall (darwin-386-cgo), const SYS_LCHOWN ideal-int +pkg syscall (darwin-386-cgo), const SYS_LINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-386-cgo), const SYS_LISTEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSEEK ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSTATV ideal-int +pkg syscall (darwin-386-cgo), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_MADVISE ideal-int +pkg syscall (darwin-386-cgo), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MINCORE ideal-int +pkg syscall (darwin-386-cgo), const SYS_MINHERIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKCOMPLEX ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKFIFO ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_MKNOD ideal-int +pkg syscall (darwin-386-cgo), const SYS_MLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MMAP ideal-int +pkg syscall (darwin-386-cgo), const SYS_MODWATCH ideal-int +pkg syscall (darwin-386-cgo), const SYS_MOUNT ideal-int +pkg syscall (darwin-386-cgo), const SYS_MPROTECT ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGGET ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGRCV ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGSND ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSGSYS ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSYNC ideal-int +pkg syscall (darwin-386-cgo), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-386-cgo), const SYS_MUNMAP ideal-int +pkg syscall (darwin-386-cgo), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-386-cgo), const SYS_NFSSVC ideal-int +pkg syscall (darwin-386-cgo), const SYS_OPEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_PATHCONF ideal-int +pkg syscall (darwin-386-cgo), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-386-cgo), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-386-cgo), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-386-cgo), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-386-cgo), const SYS_PIPE ideal-int +pkg syscall (darwin-386-cgo), const SYS_POLL ideal-int +pkg syscall (darwin-386-cgo), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-386-cgo), const SYS_PREAD ideal-int +pkg syscall (darwin-386-cgo), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-386-cgo), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-386-cgo), const SYS_PROFIL ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-386-cgo), const SYS_PTRACE ideal-int +pkg syscall (darwin-386-cgo), const SYS_PWRITE ideal-int +pkg syscall (darwin-386-cgo), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_READ ideal-int +pkg syscall (darwin-386-cgo), const SYS_READLINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_READV ideal-int +pkg syscall (darwin-386-cgo), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_REBOOT ideal-int +pkg syscall (darwin-386-cgo), const SYS_RECVFROM ideal-int +pkg syscall (darwin-386-cgo), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_RECVMSG ideal-int +pkg syscall (darwin-386-cgo), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_RENAME ideal-int +pkg syscall (darwin-386-cgo), const SYS_REVOKE ideal-int +pkg syscall (darwin-386-cgo), const SYS_RMDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SELECT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEMCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEMGET ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEMOP ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEMSYS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_POST ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SENDFILE ideal-int +pkg syscall (darwin-386-cgo), const SYS_SENDMSG ideal-int +pkg syscall (darwin-386-cgo), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SENDTO ideal-int +pkg syscall (darwin-386-cgo), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETAUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETEGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETEUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETITIMER ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETLCID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETPGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETREGID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETREUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETSID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETTID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETUID ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SETXATTR ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHMAT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHMCTL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHMDT ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHMGET ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHMSYS ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGACTION ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_SOCKET ideal-int +pkg syscall (darwin-386-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-386-cgo), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-386-cgo), const SYS_STAT ideal-int +pkg syscall (darwin-386-cgo), const SYS_STAT64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_STATFS ideal-int +pkg syscall (darwin-386-cgo), const SYS_STATFS64 ideal-int +pkg syscall (darwin-386-cgo), const SYS_STATV ideal-int +pkg syscall (darwin-386-cgo), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_SWAPON ideal-int +pkg syscall (darwin-386-cgo), const SYS_SYMLINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_SYNC ideal-int +pkg syscall (darwin-386-cgo), const SYS_SYSCALL ideal-int +pkg syscall (darwin-386-cgo), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-386-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-386-cgo), const SYS_UMASK ideal-int +pkg syscall (darwin-386-cgo), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-386-cgo), const SYS_UNDELETE ideal-int +pkg syscall (darwin-386-cgo), const SYS_UNLINK ideal-int +pkg syscall (darwin-386-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-386-cgo), const SYS_UTIMES ideal-int +pkg syscall (darwin-386-cgo), const SYS_VFORK ideal-int +pkg syscall (darwin-386-cgo), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-386-cgo), const SYS_WAIT4 ideal-int +pkg syscall (darwin-386-cgo), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-386-cgo), const SYS_WAITID ideal-int +pkg syscall (darwin-386-cgo), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-386-cgo), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-386-cgo), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-386-cgo), const SYS_WRITE ideal-int +pkg syscall (darwin-386-cgo), const SYS_WRITEV ideal-int +pkg syscall (darwin-386-cgo), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-386-cgo), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-386-cgo), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-386-cgo), const SYS___SYSCTL ideal-int +pkg syscall (darwin-386-cgo), const S_IEXEC ideal-int +pkg syscall (darwin-386-cgo), const S_IFWHT ideal-int +pkg syscall (darwin-386-cgo), const S_IREAD ideal-int +pkg syscall (darwin-386-cgo), const S_IRGRP ideal-int +pkg syscall (darwin-386-cgo), const S_IROTH ideal-int +pkg syscall (darwin-386-cgo), const S_IRWXG ideal-int +pkg syscall (darwin-386-cgo), const S_IRWXO ideal-int +pkg syscall (darwin-386-cgo), const S_IRWXU ideal-int +pkg syscall (darwin-386-cgo), const S_ISTXT ideal-int +pkg syscall (darwin-386-cgo), const S_IWGRP ideal-int +pkg syscall (darwin-386-cgo), const S_IWOTH ideal-int +pkg syscall (darwin-386-cgo), const S_IWRITE ideal-int +pkg syscall (darwin-386-cgo), const S_IXGRP ideal-int +pkg syscall (darwin-386-cgo), const S_IXOTH ideal-int +pkg syscall (darwin-386-cgo), const SizeofBpfHdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofBpfInsn ideal-int +pkg syscall (darwin-386-cgo), const SizeofBpfProgram ideal-int +pkg syscall (darwin-386-cgo), const SizeofBpfStat ideal-int +pkg syscall (darwin-386-cgo), const SizeofBpfVersion ideal-int +pkg syscall (darwin-386-cgo), const SizeofCmsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofIPMreq ideal-int +pkg syscall (darwin-386-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-386-cgo), const SizeofIfData ideal-int +pkg syscall (darwin-386-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-386-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-386-cgo), const SizeofLinger ideal-int +pkg syscall (darwin-386-cgo), const SizeofMsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofRtMetrics ideal-int +pkg syscall (darwin-386-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-386-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-386-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-386-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-386-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-386-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-386-cgo), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-386-cgo), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAXSEG ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAXWIN ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-386-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-386-cgo), const TCP_MINMSS ideal-int +pkg syscall (darwin-386-cgo), const TCP_MINMSSOVERLOAD ideal-int +pkg syscall (darwin-386-cgo), const TCP_MSS ideal-int +pkg syscall (darwin-386-cgo), const TCP_NOOPT ideal-int +pkg syscall (darwin-386-cgo), const TCP_NOPUSH ideal-int +pkg syscall (darwin-386-cgo), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-386-cgo), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-386-cgo), const TIOCCBRK ideal-int +pkg syscall (darwin-386-cgo), const TIOCCDTR ideal-int +pkg syscall (darwin-386-cgo), const TIOCCONS ideal-int +pkg syscall (darwin-386-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-386-cgo), const TIOCDRAIN ideal-int +pkg syscall (darwin-386-cgo), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-386-cgo), const TIOCEXCL ideal-int +pkg syscall (darwin-386-cgo), const TIOCEXT ideal-int +pkg syscall (darwin-386-cgo), const TIOCFLUSH ideal-int +pkg syscall (darwin-386-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-386-cgo), const TIOCGETA ideal-int +pkg syscall (darwin-386-cgo), const TIOCGETD ideal-int +pkg syscall (darwin-386-cgo), const TIOCGPGRP ideal-int +pkg syscall (darwin-386-cgo), const TIOCGWINSZ ideal-int +pkg syscall (darwin-386-cgo), const TIOCIXOFF ideal-int +pkg syscall (darwin-386-cgo), const TIOCIXON ideal-int +pkg syscall (darwin-386-cgo), const TIOCMBIC ideal-int +pkg syscall (darwin-386-cgo), const TIOCMBIS ideal-int +pkg syscall (darwin-386-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-386-cgo), const TIOCMGET ideal-int +pkg syscall (darwin-386-cgo), const TIOCMODG ideal-int +pkg syscall (darwin-386-cgo), const TIOCMODS ideal-int +pkg syscall (darwin-386-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-386-cgo), const TIOCMSET ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_CAR ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_CD ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_CTS ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_DSR ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_DTR ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_LE ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_RI ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_RNG ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_RTS ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_SR ideal-int +pkg syscall (darwin-386-cgo), const TIOCM_ST ideal-int +pkg syscall (darwin-386-cgo), const TIOCNOTTY ideal-int +pkg syscall (darwin-386-cgo), const TIOCNXCL ideal-int +pkg syscall (darwin-386-cgo), const TIOCOUTQ ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_START ideal-int +pkg syscall (darwin-386-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-386-cgo), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-386-cgo), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-386-cgo), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-386-cgo), const TIOCREMOTE ideal-int +pkg syscall (darwin-386-cgo), const TIOCSBRK ideal-int +pkg syscall (darwin-386-cgo), const TIOCSCONS ideal-int +pkg syscall (darwin-386-cgo), const TIOCSCTTY ideal-int +pkg syscall (darwin-386-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-386-cgo), const TIOCSDTR ideal-int +pkg syscall (darwin-386-cgo), const TIOCSETA ideal-int +pkg syscall (darwin-386-cgo), const TIOCSETAF ideal-int +pkg syscall (darwin-386-cgo), const TIOCSETAW ideal-int +pkg syscall (darwin-386-cgo), const TIOCSETD ideal-int +pkg syscall (darwin-386-cgo), const TIOCSIG ideal-int +pkg syscall (darwin-386-cgo), const TIOCSPGRP ideal-int +pkg syscall (darwin-386-cgo), const TIOCSTART ideal-int +pkg syscall (darwin-386-cgo), const TIOCSTAT ideal-int +pkg syscall (darwin-386-cgo), const TIOCSTI ideal-int +pkg syscall (darwin-386-cgo), const TIOCSTOP ideal-int +pkg syscall (darwin-386-cgo), const TIOCSWINSZ ideal-int +pkg syscall (darwin-386-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-386-cgo), const TIOCUCNTL ideal-int +pkg syscall (darwin-386-cgo), const WCONTINUED ideal-int +pkg syscall (darwin-386-cgo), const WCOREFLAG ideal-int +pkg syscall (darwin-386-cgo), const WEXITED ideal-int +pkg syscall (darwin-386-cgo), const WNOHANG ideal-int +pkg syscall (darwin-386-cgo), const WNOWAIT ideal-int +pkg syscall (darwin-386-cgo), const WORDSIZE ideal-int +pkg syscall (darwin-386-cgo), const WSTOPPED ideal-int +pkg syscall (darwin-386-cgo), const WUNTRACED ideal-int +pkg syscall (darwin-386-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-386-cgo), func Access(string, uint32) error +pkg syscall (darwin-386-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-386-cgo), func Bind(int, Sockaddr) error +pkg syscall (darwin-386-cgo), func BpfBuflen(int) (int, error) +pkg syscall (darwin-386-cgo), func BpfDatalink(int) (int, error) +pkg syscall (darwin-386-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-386-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-386-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-386-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-386-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-386-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-386-cgo), func CheckBpfVersion(int) error +pkg syscall (darwin-386-cgo), func Chflags(string, int) error +pkg syscall (darwin-386-cgo), func Chroot(string) error +pkg syscall (darwin-386-cgo), func Close(int) error +pkg syscall (darwin-386-cgo), func CloseOnExec(int) +pkg syscall (darwin-386-cgo), func CmsgLen(int) int +pkg syscall (darwin-386-cgo), func CmsgSpace(int) int +pkg syscall (darwin-386-cgo), func Connect(int, Sockaddr) error +pkg syscall (darwin-386-cgo), func Dup(int) (int, error) +pkg syscall (darwin-386-cgo), func Dup2(int, int) error +pkg syscall (darwin-386-cgo), func Exchangedata(string, string, int) error +pkg syscall (darwin-386-cgo), func Fchdir(int) error +pkg syscall (darwin-386-cgo), func Fchflags(string, int) error +pkg syscall (darwin-386-cgo), func Fchmod(int, uint32) error +pkg syscall (darwin-386-cgo), func Fchown(int, int, int) error +pkg syscall (darwin-386-cgo), func Flock(int, int) error +pkg syscall (darwin-386-cgo), func FlushBpf(int) error +pkg syscall (darwin-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-386-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-386-cgo), func Fstat(int, *Stat_t) error +pkg syscall (darwin-386-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-386-cgo), func Fsync(int) error +pkg syscall (darwin-386-cgo), func Ftruncate(int, int64) error +pkg syscall (darwin-386-cgo), func Futimes(int, []Timeval) error +pkg syscall (darwin-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-386-cgo), func Getdtablesize() int +pkg syscall (darwin-386-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-386-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-386-cgo), func Getpgid(int) (int, error) +pkg syscall (darwin-386-cgo), func Getpgrp() int +pkg syscall (darwin-386-cgo), func Getpriority(int, int) (int, error) +pkg syscall (darwin-386-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-386-cgo), func Getrusage(int, *Rusage) error +pkg syscall (darwin-386-cgo), func Getsid(int) (int, error) +pkg syscall (darwin-386-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-386-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-386-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-386-cgo), func Issetugid() bool +pkg syscall (darwin-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-386-cgo), func Kill(int, Signal) error +pkg syscall (darwin-386-cgo), func Kqueue() (int, error) +pkg syscall (darwin-386-cgo), func Listen(int, int) error +pkg syscall (darwin-386-cgo), func Lstat(string, *Stat_t) error +pkg syscall (darwin-386-cgo), func Mkfifo(string, uint32) error +pkg syscall (darwin-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (darwin-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-386-cgo), func Munmap([]uint8) error +pkg syscall (darwin-386-cgo), func NsecToTimespec(int64) Timespec +pkg syscall (darwin-386-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-386-cgo), func Pathconf(string, int) (int, error) +pkg syscall (darwin-386-cgo), func Pipe([]int) error +pkg syscall (darwin-386-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-386-cgo), func PtraceAttach(int) error +pkg syscall (darwin-386-cgo), func PtraceDetach(int) error +pkg syscall (darwin-386-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386-cgo), func Read(int, []uint8) (int, error) +pkg syscall (darwin-386-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-386-cgo), func Revoke(string) error +pkg syscall (darwin-386-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-386-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-386-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-386-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-386-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-386-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-386-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-386-cgo), func SetBpfImmediate(int, int) error +pkg syscall (darwin-386-cgo), func SetBpfInterface(int, string) error +pkg syscall (darwin-386-cgo), func SetBpfPromisc(int, int) error +pkg syscall (darwin-386-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-386-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-386-cgo), func SetNonblock(int, bool) error +pkg syscall (darwin-386-cgo), func Setegid(int) error +pkg syscall (darwin-386-cgo), func Seteuid(int) error +pkg syscall (darwin-386-cgo), func Setgid(int) error +pkg syscall (darwin-386-cgo), func Setgroups([]int) error +pkg syscall (darwin-386-cgo), func Setlogin(string) error +pkg syscall (darwin-386-cgo), func Setpgid(int, int) error +pkg syscall (darwin-386-cgo), func Setpriority(int, int, int) error +pkg syscall (darwin-386-cgo), func Setprivexec(int) error +pkg syscall (darwin-386-cgo), func Setregid(int, int) error +pkg syscall (darwin-386-cgo), func Setreuid(int, int) error +pkg syscall (darwin-386-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-386-cgo), func Setsid() (int, error) +pkg syscall (darwin-386-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-386-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-386-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-386-cgo), func Settimeofday(*Timeval) error +pkg syscall (darwin-386-cgo), func Setuid(int) error +pkg syscall (darwin-386-cgo), func Shutdown(int, int) error +pkg syscall (darwin-386-cgo), func Socket(int, int, int) (int, error) +pkg syscall (darwin-386-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-386-cgo), func Stat(string, *Stat_t) error +pkg syscall (darwin-386-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-386-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-386-cgo), func Sync() error +pkg syscall (darwin-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-386-cgo), func Sysctl(string) (string, error) +pkg syscall (darwin-386-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-386-cgo), func TimespecToNsec(Timespec) int64 +pkg syscall (darwin-386-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-386-cgo), func Truncate(string, int64) error +pkg syscall (darwin-386-cgo), func Umask(int) int +pkg syscall (darwin-386-cgo), func Undelete(string) error +pkg syscall (darwin-386-cgo), func UnixRights(...int) []uint8 +pkg syscall (darwin-386-cgo), func Unmount(string, int) error +pkg syscall (darwin-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-386-cgo), func Write(int, []uint8) (int, error) +pkg syscall (darwin-386-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-386-cgo), method (*Iovec) SetLen(int) +pkg syscall (darwin-386-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-386-cgo), type BpfHdr struct +pkg syscall (darwin-386-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-386-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-386-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type BpfHdr struct, Tstamp Timeval +pkg syscall (darwin-386-cgo), type BpfInsn struct +pkg syscall (darwin-386-cgo), type BpfInsn struct, Code uint16 +pkg syscall (darwin-386-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-386-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-386-cgo), type BpfInsn struct, K uint32 +pkg syscall (darwin-386-cgo), type BpfProgram struct +pkg syscall (darwin-386-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-386-cgo), type BpfProgram struct, Len uint32 +pkg syscall (darwin-386-cgo), type BpfStat struct +pkg syscall (darwin-386-cgo), type BpfStat struct, Drop uint32 +pkg syscall (darwin-386-cgo), type BpfStat struct, Recv uint32 +pkg syscall (darwin-386-cgo), type BpfVersion struct +pkg syscall (darwin-386-cgo), type BpfVersion struct, Major uint16 +pkg syscall (darwin-386-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-386-cgo), type Cmsghdr struct +pkg syscall (darwin-386-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-386-cgo), type Cmsghdr struct, Level int32 +pkg syscall (darwin-386-cgo), type Cmsghdr struct, Type int32 +pkg syscall (darwin-386-cgo), type Credential struct +pkg syscall (darwin-386-cgo), type Credential struct, Gid uint32 +pkg syscall (darwin-386-cgo), type Credential struct, Groups []uint32 +pkg syscall (darwin-386-cgo), type Credential struct, Uid uint32 +pkg syscall (darwin-386-cgo), type Dirent struct +pkg syscall (darwin-386-cgo), type Dirent struct, Ino uint64 +pkg syscall (darwin-386-cgo), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-386-cgo), type Dirent struct, Namlen uint16 +pkg syscall (darwin-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-386-cgo), type Dirent struct, Reclen uint16 +pkg syscall (darwin-386-cgo), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-386-cgo), type Dirent struct, Type uint8 +pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct +pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Length uint32 +pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-386-cgo), type FdSet struct +pkg syscall (darwin-386-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-386-cgo), type Flock_t struct +pkg syscall (darwin-386-cgo), type Flock_t struct, Len int64 +pkg syscall (darwin-386-cgo), type Flock_t struct, Pid int32 +pkg syscall (darwin-386-cgo), type Flock_t struct, Start int64 +pkg syscall (darwin-386-cgo), type Flock_t struct, Type int16 +pkg syscall (darwin-386-cgo), type Flock_t struct, Whence int16 +pkg syscall (darwin-386-cgo), type Fsid struct +pkg syscall (darwin-386-cgo), type Fsid struct, Val [2]int32 +pkg syscall (darwin-386-cgo), type Fstore_t struct +pkg syscall (darwin-386-cgo), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-386-cgo), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-386-cgo), type Fstore_t struct, Length int64 +pkg syscall (darwin-386-cgo), type Fstore_t struct, Offset int64 +pkg syscall (darwin-386-cgo), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-386-cgo), type IfData struct +pkg syscall (darwin-386-cgo), type IfData struct, Addrlen uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Baudrate uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Collisions uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Hwassist uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Ibytes uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Ierrors uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Imcasts uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Ipackets uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Lastchange Timeval +pkg syscall (darwin-386-cgo), type IfData struct, Metric uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Mtu uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Noproto uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Obytes uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Oerrors uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Omcasts uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Opackets uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Physical uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Recvquota uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Type uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Typelen uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Unused1 uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Unused2 uint32 +pkg syscall (darwin-386-cgo), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-386-cgo), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-386-cgo), type IfMsghdr struct +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Data IfData +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-386-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct +pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct +pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-386-cgo), type InterfaceMessage struct +pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-386-cgo), type Iovec struct +pkg syscall (darwin-386-cgo), type Iovec struct, Base *uint8 +pkg syscall (darwin-386-cgo), type Iovec struct, Len uint32 +pkg syscall (darwin-386-cgo), type Kevent_t struct +pkg syscall (darwin-386-cgo), type Kevent_t struct, Data int32 +pkg syscall (darwin-386-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-386-cgo), type Kevent_t struct, Filter int16 +pkg syscall (darwin-386-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-386-cgo), type Kevent_t struct, Ident uint32 +pkg syscall (darwin-386-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-386-cgo), type Log2phys_t struct +pkg syscall (darwin-386-cgo), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-386-cgo), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-386-cgo), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-386-cgo), type Msghdr struct +pkg syscall (darwin-386-cgo), type Msghdr struct, Control *uint8 +pkg syscall (darwin-386-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-386-cgo), type Msghdr struct, Flags int32 +pkg syscall (darwin-386-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-386-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-386-cgo), type Msghdr struct, Name *uint8 +pkg syscall (darwin-386-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-386-cgo), type Radvisory_t struct +pkg syscall (darwin-386-cgo), type Radvisory_t struct, Count int32 +pkg syscall (darwin-386-cgo), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-386-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-386-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-386-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct +pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-386-cgo), type Rlimit struct +pkg syscall (darwin-386-cgo), type Rlimit struct, Cur uint64 +pkg syscall (darwin-386-cgo), type Rlimit struct, Max uint64 +pkg syscall (darwin-386-cgo), type RouteMessage struct +pkg syscall (darwin-386-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-386-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-386-cgo), type RoutingMessage interface, unexported methods +pkg syscall (darwin-386-cgo), type RtMetrics struct +pkg syscall (darwin-386-cgo), type RtMetrics struct, Expire int32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-386-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Use int32 +pkg syscall (darwin-386-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-386-cgo), type Rusage struct, Idrss int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Inblock int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Isrss int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Ixrss int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Majflt int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Maxrss int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Minflt int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Nsignals int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Nswap int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Oublock int32 +pkg syscall (darwin-386-cgo), type Rusage struct, Stime Timeval +pkg syscall (darwin-386-cgo), type Rusage struct, Utime Timeval +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-386-cgo), type SocketControlMessage struct +pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-386-cgo), type Stat_t struct +pkg syscall (darwin-386-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-386-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-386-cgo), type Stat_t struct, Blksize int32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Blocks int64 +pkg syscall (darwin-386-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-386-cgo), type Stat_t struct, Dev int32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Flags uint32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Gen uint32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Gid uint32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Ino uint64 +pkg syscall (darwin-386-cgo), type Stat_t struct, Lspare int32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Mode uint16 +pkg syscall (darwin-386-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-386-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-386-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-386-cgo), type Stat_t struct, Rdev int32 +pkg syscall (darwin-386-cgo), type Stat_t struct, Size int64 +pkg syscall (darwin-386-cgo), type Stat_t struct, Uid uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct +pkg syscall (darwin-386-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Files uint64 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-386-cgo), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-386-cgo), type Statfs_t struct, Type uint32 +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Chroot string +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-386-cgo), type Timespec struct, Nsec int32 +pkg syscall (darwin-386-cgo), type Timespec struct, Sec int32 +pkg syscall (darwin-386-cgo), type Timeval struct, Sec int32 +pkg syscall (darwin-386-cgo), type Timeval struct, Usec int32 +pkg syscall (darwin-386-cgo), type Timeval32 [0]uint8 +pkg syscall (darwin-386-cgo), type WaitStatus uint32 +pkg syscall (darwin-386-cgo), var Stderr int +pkg syscall (darwin-386-cgo), var Stdin int +pkg syscall (darwin-386-cgo), var Stdout int +pkg syscall (darwin-amd64), const AF_APPLETALK ideal-int +pkg syscall (darwin-amd64), const AF_CCITT ideal-int +pkg syscall (darwin-amd64), const AF_CHAOS ideal-int +pkg syscall (darwin-amd64), const AF_CNT ideal-int +pkg syscall (darwin-amd64), const AF_COIP ideal-int +pkg syscall (darwin-amd64), const AF_DATAKIT ideal-int +pkg syscall (darwin-amd64), const AF_DECnet ideal-int +pkg syscall (darwin-amd64), const AF_DLI ideal-int +pkg syscall (darwin-amd64), const AF_E164 ideal-int +pkg syscall (darwin-amd64), const AF_ECMA ideal-int +pkg syscall (darwin-amd64), const AF_HYLINK ideal-int +pkg syscall (darwin-amd64), const AF_IEEE80211 ideal-int +pkg syscall (darwin-amd64), const AF_IMPLINK ideal-int +pkg syscall (darwin-amd64), const AF_IPX ideal-int +pkg syscall (darwin-amd64), const AF_ISDN ideal-int +pkg syscall (darwin-amd64), const AF_ISO ideal-int +pkg syscall (darwin-amd64), const AF_LAT ideal-int +pkg syscall (darwin-amd64), const AF_LINK ideal-int +pkg syscall (darwin-amd64), const AF_LOCAL ideal-int +pkg syscall (darwin-amd64), const AF_MAX ideal-int +pkg syscall (darwin-amd64), const AF_NATM ideal-int +pkg syscall (darwin-amd64), const AF_NDRV ideal-int +pkg syscall (darwin-amd64), const AF_NETBIOS ideal-int +pkg syscall (darwin-amd64), const AF_NS ideal-int +pkg syscall (darwin-amd64), const AF_OSI ideal-int +pkg syscall (darwin-amd64), const AF_PPP ideal-int +pkg syscall (darwin-amd64), const AF_PUP ideal-int +pkg syscall (darwin-amd64), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-amd64), const AF_ROUTE ideal-int +pkg syscall (darwin-amd64), const AF_SIP ideal-int +pkg syscall (darwin-amd64), const AF_SNA ideal-int +pkg syscall (darwin-amd64), const AF_SYSTEM ideal-int +pkg syscall (darwin-amd64), const BIOCFLUSH ideal-int +pkg syscall (darwin-amd64), const BIOCGBLEN ideal-int +pkg syscall (darwin-amd64), const BIOCGDLT ideal-int +pkg syscall (darwin-amd64), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-amd64), const BIOCGETIF ideal-int +pkg syscall (darwin-amd64), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-amd64), const BIOCGRSIG ideal-int +pkg syscall (darwin-amd64), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-amd64), const BIOCGSEESENT ideal-int +pkg syscall (darwin-amd64), const BIOCGSTATS ideal-int +pkg syscall (darwin-amd64), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-amd64), const BIOCPROMISC ideal-int +pkg syscall (darwin-amd64), const BIOCSBLEN ideal-int +pkg syscall (darwin-amd64), const BIOCSDLT ideal-int +pkg syscall (darwin-amd64), const BIOCSETF ideal-int +pkg syscall (darwin-amd64), const BIOCSETIF ideal-int +pkg syscall (darwin-amd64), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-amd64), const BIOCSRSIG ideal-int +pkg syscall (darwin-amd64), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-amd64), const BIOCSSEESENT ideal-int +pkg syscall (darwin-amd64), const BIOCVERSION ideal-int +pkg syscall (darwin-amd64), const BPF_A ideal-int +pkg syscall (darwin-amd64), const BPF_ABS ideal-int +pkg syscall (darwin-amd64), const BPF_ADD ideal-int +pkg syscall (darwin-amd64), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-amd64), const BPF_ALU ideal-int +pkg syscall (darwin-amd64), const BPF_AND ideal-int +pkg syscall (darwin-amd64), const BPF_B ideal-int +pkg syscall (darwin-amd64), const BPF_DIV ideal-int +pkg syscall (darwin-amd64), const BPF_H ideal-int +pkg syscall (darwin-amd64), const BPF_IMM ideal-int +pkg syscall (darwin-amd64), const BPF_IND ideal-int +pkg syscall (darwin-amd64), const BPF_JA ideal-int +pkg syscall (darwin-amd64), const BPF_JEQ ideal-int +pkg syscall (darwin-amd64), const BPF_JGE ideal-int +pkg syscall (darwin-amd64), const BPF_JGT ideal-int +pkg syscall (darwin-amd64), const BPF_JMP ideal-int +pkg syscall (darwin-amd64), const BPF_JSET ideal-int +pkg syscall (darwin-amd64), const BPF_K ideal-int +pkg syscall (darwin-amd64), const BPF_LD ideal-int +pkg syscall (darwin-amd64), const BPF_LDX ideal-int +pkg syscall (darwin-amd64), const BPF_LEN ideal-int +pkg syscall (darwin-amd64), const BPF_LSH ideal-int +pkg syscall (darwin-amd64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-amd64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-amd64), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-amd64), const BPF_MEM ideal-int +pkg syscall (darwin-amd64), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-amd64), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-amd64), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-amd64), const BPF_MISC ideal-int +pkg syscall (darwin-amd64), const BPF_MSH ideal-int +pkg syscall (darwin-amd64), const BPF_MUL ideal-int +pkg syscall (darwin-amd64), const BPF_NEG ideal-int +pkg syscall (darwin-amd64), const BPF_OR ideal-int +pkg syscall (darwin-amd64), const BPF_RELEASE ideal-int +pkg syscall (darwin-amd64), const BPF_RET ideal-int +pkg syscall (darwin-amd64), const BPF_RSH ideal-int +pkg syscall (darwin-amd64), const BPF_ST ideal-int +pkg syscall (darwin-amd64), const BPF_STX ideal-int +pkg syscall (darwin-amd64), const BPF_SUB ideal-int +pkg syscall (darwin-amd64), const BPF_TAX ideal-int +pkg syscall (darwin-amd64), const BPF_TXA ideal-int +pkg syscall (darwin-amd64), const BPF_W ideal-int +pkg syscall (darwin-amd64), const BPF_X ideal-int +pkg syscall (darwin-amd64), const CTL_MAXNAME ideal-int +pkg syscall (darwin-amd64), const CTL_NET ideal-int +pkg syscall (darwin-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-amd64), const DLT_ARCNET ideal-int +pkg syscall (darwin-amd64), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-amd64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-amd64), const DLT_AX25 ideal-int +pkg syscall (darwin-amd64), const DLT_CHAOS ideal-int +pkg syscall (darwin-amd64), const DLT_CHDLC ideal-int +pkg syscall (darwin-amd64), const DLT_C_HDLC ideal-int +pkg syscall (darwin-amd64), const DLT_EN10MB ideal-int +pkg syscall (darwin-amd64), const DLT_EN3MB ideal-int +pkg syscall (darwin-amd64), const DLT_FDDI ideal-int +pkg syscall (darwin-amd64), const DLT_IEEE802 ideal-int +pkg syscall (darwin-amd64), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-amd64), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-amd64), const DLT_LOOP ideal-int +pkg syscall (darwin-amd64), const DLT_NULL ideal-int +pkg syscall (darwin-amd64), const DLT_PFLOG ideal-int +pkg syscall (darwin-amd64), const DLT_PFSYNC ideal-int +pkg syscall (darwin-amd64), const DLT_PPP ideal-int +pkg syscall (darwin-amd64), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-amd64), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-amd64), const DLT_PRONET ideal-int +pkg syscall (darwin-amd64), const DLT_RAW ideal-int +pkg syscall (darwin-amd64), const DLT_SLIP ideal-int +pkg syscall (darwin-amd64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-amd64), const DT_BLK ideal-int +pkg syscall (darwin-amd64), const DT_CHR ideal-int +pkg syscall (darwin-amd64), const DT_DIR ideal-int +pkg syscall (darwin-amd64), const DT_FIFO ideal-int +pkg syscall (darwin-amd64), const DT_LNK ideal-int +pkg syscall (darwin-amd64), const DT_REG ideal-int +pkg syscall (darwin-amd64), const DT_SOCK ideal-int +pkg syscall (darwin-amd64), const DT_UNKNOWN ideal-int +pkg syscall (darwin-amd64), const DT_WHT ideal-int +pkg syscall (darwin-amd64), const EAUTH Errno +pkg syscall (darwin-amd64), const EBADARCH Errno +pkg syscall (darwin-amd64), const EBADEXEC Errno +pkg syscall (darwin-amd64), const EBADMACHO Errno +pkg syscall (darwin-amd64), const EBADMSG Errno +pkg syscall (darwin-amd64), const EBADRPC Errno +pkg syscall (darwin-amd64), const ECHO ideal-int +pkg syscall (darwin-amd64), const ECHOCTL ideal-int +pkg syscall (darwin-amd64), const ECHOE ideal-int +pkg syscall (darwin-amd64), const ECHOK ideal-int +pkg syscall (darwin-amd64), const ECHOKE ideal-int +pkg syscall (darwin-amd64), const ECHONL ideal-int +pkg syscall (darwin-amd64), const ECHOPRT ideal-int +pkg syscall (darwin-amd64), const EDEVERR Errno +pkg syscall (darwin-amd64), const EFTYPE Errno +pkg syscall (darwin-amd64), const ELAST Errno +pkg syscall (darwin-amd64), const EMULTIHOP Errno +pkg syscall (darwin-amd64), const ENEEDAUTH Errno +pkg syscall (darwin-amd64), const ENOATTR Errno +pkg syscall (darwin-amd64), const ENODATA Errno +pkg syscall (darwin-amd64), const ENOLINK Errno +pkg syscall (darwin-amd64), const ENOPOLICY Errno +pkg syscall (darwin-amd64), const ENOSR Errno +pkg syscall (darwin-amd64), const ENOSTR Errno +pkg syscall (darwin-amd64), const ENOTRECOVERABLE Errno +pkg syscall (darwin-amd64), const EOWNERDEAD Errno +pkg syscall (darwin-amd64), const EPROCLIM Errno +pkg syscall (darwin-amd64), const EPROCUNAVAIL Errno +pkg syscall (darwin-amd64), const EPROGMISMATCH Errno +pkg syscall (darwin-amd64), const EPROGUNAVAIL Errno +pkg syscall (darwin-amd64), const EPROTO Errno +pkg syscall (darwin-amd64), const EPWROFF Errno +pkg syscall (darwin-amd64), const ERPCMISMATCH Errno +pkg syscall (darwin-amd64), const ESHLIBVERS Errno +pkg syscall (darwin-amd64), const ETIME Errno +pkg syscall (darwin-amd64), const EVFILT_AIO ideal-int +pkg syscall (darwin-amd64), const EVFILT_FS ideal-int +pkg syscall (darwin-amd64), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-amd64), const EVFILT_PROC ideal-int +pkg syscall (darwin-amd64), const EVFILT_READ ideal-int +pkg syscall (darwin-amd64), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-amd64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-amd64), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-amd64), const EVFILT_TIMER ideal-int +pkg syscall (darwin-amd64), const EVFILT_USER ideal-int +pkg syscall (darwin-amd64), const EVFILT_VM ideal-int +pkg syscall (darwin-amd64), const EVFILT_VNODE ideal-int +pkg syscall (darwin-amd64), const EVFILT_WRITE ideal-int +pkg syscall (darwin-amd64), const EV_ADD ideal-int +pkg syscall (darwin-amd64), const EV_CLEAR ideal-int +pkg syscall (darwin-amd64), const EV_DELETE ideal-int +pkg syscall (darwin-amd64), const EV_DISABLE ideal-int +pkg syscall (darwin-amd64), const EV_DISPATCH ideal-int +pkg syscall (darwin-amd64), const EV_ENABLE ideal-int +pkg syscall (darwin-amd64), const EV_EOF ideal-int +pkg syscall (darwin-amd64), const EV_ERROR ideal-int +pkg syscall (darwin-amd64), const EV_FLAG0 ideal-int +pkg syscall (darwin-amd64), const EV_FLAG1 ideal-int +pkg syscall (darwin-amd64), const EV_ONESHOT ideal-int +pkg syscall (darwin-amd64), const EV_OOBAND ideal-int +pkg syscall (darwin-amd64), const EV_POLL ideal-int +pkg syscall (darwin-amd64), const EV_RECEIPT ideal-int +pkg syscall (darwin-amd64), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-amd64), const EXTA ideal-int +pkg syscall (darwin-amd64), const EXTB ideal-int +pkg syscall (darwin-amd64), const EXTPROC ideal-int +pkg syscall (darwin-amd64), const FD_CLOEXEC ideal-int +pkg syscall (darwin-amd64), const FD_SETSIZE ideal-int +pkg syscall (darwin-amd64), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-amd64), const F_ADDSIGS ideal-int +pkg syscall (darwin-amd64), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-amd64), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-amd64), const F_CHKCLEAN ideal-int +pkg syscall (darwin-amd64), const F_DUPFD ideal-int +pkg syscall (darwin-amd64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-amd64), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-amd64), const F_FREEZE_FS ideal-int +pkg syscall (darwin-amd64), const F_FULLFSYNC ideal-int +pkg syscall (darwin-amd64), const F_GETFD ideal-int +pkg syscall (darwin-amd64), const F_GETFL ideal-int +pkg syscall (darwin-amd64), const F_GETLK ideal-int +pkg syscall (darwin-amd64), const F_GETLKPID ideal-int +pkg syscall (darwin-amd64), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-amd64), const F_GETOWN ideal-int +pkg syscall (darwin-amd64), const F_GETPATH ideal-int +pkg syscall (darwin-amd64), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-amd64), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-amd64), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-amd64), const F_LOG2PHYS ideal-int +pkg syscall (darwin-amd64), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-amd64), const F_MARKDEPENDENCY ideal-int +pkg syscall (darwin-amd64), const F_NOCACHE ideal-int +pkg syscall (darwin-amd64), const F_NODIRECT ideal-int +pkg syscall (darwin-amd64), const F_OK ideal-int +pkg syscall (darwin-amd64), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-amd64), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-amd64), const F_PREALLOCATE ideal-int +pkg syscall (darwin-amd64), const F_RDADVISE ideal-int +pkg syscall (darwin-amd64), const F_RDAHEAD ideal-int +pkg syscall (darwin-amd64), const F_RDLCK ideal-int +pkg syscall (darwin-amd64), const F_READBOOTSTRAP ideal-int +pkg syscall (darwin-amd64), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-amd64), const F_SETFD ideal-int +pkg syscall (darwin-amd64), const F_SETFL ideal-int +pkg syscall (darwin-amd64), const F_SETLK ideal-int +pkg syscall (darwin-amd64), const F_SETLKW ideal-int +pkg syscall (darwin-amd64), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-amd64), const F_SETOWN ideal-int +pkg syscall (darwin-amd64), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-amd64), const F_SETSIZE ideal-int +pkg syscall (darwin-amd64), const F_THAW_FS ideal-int +pkg syscall (darwin-amd64), const F_UNLCK ideal-int +pkg syscall (darwin-amd64), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-amd64), const F_WRITEBOOTSTRAP ideal-int +pkg syscall (darwin-amd64), const F_WRLCK ideal-int +pkg syscall (darwin-amd64), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-amd64), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-amd64), const IFF_DEBUG ideal-int +pkg syscall (darwin-amd64), const IFF_LINK0 ideal-int +pkg syscall (darwin-amd64), const IFF_LINK1 ideal-int +pkg syscall (darwin-amd64), const IFF_LINK2 ideal-int +pkg syscall (darwin-amd64), const IFF_NOARP ideal-int +pkg syscall (darwin-amd64), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-amd64), const IFF_OACTIVE ideal-int +pkg syscall (darwin-amd64), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-amd64), const IFF_PROMISC ideal-int +pkg syscall (darwin-amd64), const IFF_RUNNING ideal-int +pkg syscall (darwin-amd64), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-amd64), const IFNAMSIZ ideal-int +pkg syscall (darwin-amd64), const IFT_1822 ideal-int +pkg syscall (darwin-amd64), const IFT_AAL5 ideal-int +pkg syscall (darwin-amd64), const IFT_ARCNET ideal-int +pkg syscall (darwin-amd64), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-amd64), const IFT_ATM ideal-int +pkg syscall (darwin-amd64), const IFT_BRIDGE ideal-int +pkg syscall (darwin-amd64), const IFT_CARP ideal-int +pkg syscall (darwin-amd64), const IFT_CELLULAR ideal-int +pkg syscall (darwin-amd64), const IFT_CEPT ideal-int +pkg syscall (darwin-amd64), const IFT_DS3 ideal-int +pkg syscall (darwin-amd64), const IFT_ENC ideal-int +pkg syscall (darwin-amd64), const IFT_EON ideal-int +pkg syscall (darwin-amd64), const IFT_ETHER ideal-int +pkg syscall (darwin-amd64), const IFT_FAITH ideal-int +pkg syscall (darwin-amd64), const IFT_FDDI ideal-int +pkg syscall (darwin-amd64), const IFT_FRELAY ideal-int +pkg syscall (darwin-amd64), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-amd64), const IFT_GIF ideal-int +pkg syscall (darwin-amd64), const IFT_HDH1822 ideal-int +pkg syscall (darwin-amd64), const IFT_HIPPI ideal-int +pkg syscall (darwin-amd64), const IFT_HSSI ideal-int +pkg syscall (darwin-amd64), const IFT_HY ideal-int +pkg syscall (darwin-amd64), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-amd64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-amd64), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-amd64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-amd64), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-amd64), const IFT_ISO88023 ideal-int +pkg syscall (darwin-amd64), const IFT_ISO88024 ideal-int +pkg syscall (darwin-amd64), const IFT_ISO88025 ideal-int +pkg syscall (darwin-amd64), const IFT_ISO88026 ideal-int +pkg syscall (darwin-amd64), const IFT_L2VLAN ideal-int +pkg syscall (darwin-amd64), const IFT_LAPB ideal-int +pkg syscall (darwin-amd64), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-amd64), const IFT_LOOP ideal-int +pkg syscall (darwin-amd64), const IFT_MIOX25 ideal-int +pkg syscall (darwin-amd64), const IFT_MODEM ideal-int +pkg syscall (darwin-amd64), const IFT_NSIP ideal-int +pkg syscall (darwin-amd64), const IFT_OTHER ideal-int +pkg syscall (darwin-amd64), const IFT_P10 ideal-int +pkg syscall (darwin-amd64), const IFT_P80 ideal-int +pkg syscall (darwin-amd64), const IFT_PARA ideal-int +pkg syscall (darwin-amd64), const IFT_PDP ideal-int +pkg syscall (darwin-amd64), const IFT_PFLOG ideal-int +pkg syscall (darwin-amd64), const IFT_PFSYNC ideal-int +pkg syscall (darwin-amd64), const IFT_PPP ideal-int +pkg syscall (darwin-amd64), const IFT_PROPMUX ideal-int +pkg syscall (darwin-amd64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-amd64), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-amd64), const IFT_RS232 ideal-int +pkg syscall (darwin-amd64), const IFT_SDLC ideal-int +pkg syscall (darwin-amd64), const IFT_SIP ideal-int +pkg syscall (darwin-amd64), const IFT_SLIP ideal-int +pkg syscall (darwin-amd64), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-amd64), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-amd64), const IFT_SONET ideal-int +pkg syscall (darwin-amd64), const IFT_SONETPATH ideal-int +pkg syscall (darwin-amd64), const IFT_SONETVT ideal-int +pkg syscall (darwin-amd64), const IFT_STARLAN ideal-int +pkg syscall (darwin-amd64), const IFT_STF ideal-int +pkg syscall (darwin-amd64), const IFT_T1 ideal-int +pkg syscall (darwin-amd64), const IFT_ULTRA ideal-int +pkg syscall (darwin-amd64), const IFT_V35 ideal-int +pkg syscall (darwin-amd64), const IFT_X25 ideal-int +pkg syscall (darwin-amd64), const IFT_X25DDN ideal-int +pkg syscall (darwin-amd64), const IFT_X25PLE ideal-int +pkg syscall (darwin-amd64), const IFT_XETHER ideal-int +pkg syscall (darwin-amd64), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-amd64), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-amd64), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-amd64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-amd64), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-amd64), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-amd64), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-amd64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-amd64), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-amd64), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-amd64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-amd64), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-amd64), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-amd64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-amd64), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-amd64), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-amd64), const IPPROTO_3PC ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_AH ideal-int +pkg syscall (darwin-amd64), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_APES ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_BHA ideal-int +pkg syscall (darwin-amd64), const IPPROTO_BLT ideal-int +pkg syscall (darwin-amd64), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-amd64), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-amd64), const IPPROTO_DDP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_DGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-amd64), const IPPROTO_DONE ideal-int +pkg syscall (darwin-amd64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_EGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_EON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ESP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-amd64), const IPPROTO_GGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_GRE ideal-int +pkg syscall (darwin-amd64), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-amd64), const IPPROTO_HMP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IDP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IL ideal-int +pkg syscall (darwin-amd64), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_INP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-amd64), const IPPROTO_LARP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MAX ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MICP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_MUX ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ND ideal-int +pkg syscall (darwin-amd64), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_NONE ideal-int +pkg syscall (darwin-amd64), const IPPROTO_NSP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-amd64), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PGM ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PIM ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PRM ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PUP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_PVP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_RAW ideal-int +pkg syscall (darwin-amd64), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_RDP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-amd64), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_RVD ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SEP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-amd64), const IPPROTO_ST ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TCF ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-amd64), const IPPROTO_TTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_VINES ideal-int +pkg syscall (darwin-amd64), const IPPROTO_VISA ideal-int +pkg syscall (darwin-amd64), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-amd64), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-amd64), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-amd64), const IPPROTO_WSN ideal-int +pkg syscall (darwin-amd64), const IPPROTO_XNET ideal-int +pkg syscall (darwin-amd64), const IPPROTO_XTP ideal-int +pkg syscall (darwin-amd64), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-amd64), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-amd64), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-amd64), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-amd64), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-amd64), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-amd64), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-amd64), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-amd64), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-amd64), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-amd64), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-amd64), const IPV6_FAITH ideal-int +pkg syscall (darwin-amd64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-amd64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-amd64), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-amd64), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-amd64), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-amd64), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-amd64), const IPV6_FW_GET ideal-int +pkg syscall (darwin-amd64), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-amd64), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-amd64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-amd64), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-amd64), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-amd64), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-amd64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-amd64), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-amd64), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64), const IPV6_MMTU ideal-int +pkg syscall (darwin-amd64), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-amd64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-amd64), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-amd64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-amd64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-amd64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-amd64), const IPV6_TCLASS ideal-int +pkg syscall (darwin-amd64), const IPV6_VERSION ideal-int +pkg syscall (darwin-amd64), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-amd64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-amd64), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-amd64), const IP_BOUND_IF ideal-int +pkg syscall (darwin-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-amd64), const IP_DF ideal-int +pkg syscall (darwin-amd64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-amd64), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-amd64), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-amd64), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-amd64), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-amd64), const IP_FAITH ideal-int +pkg syscall (darwin-amd64), const IP_FW_ADD ideal-int +pkg syscall (darwin-amd64), const IP_FW_DEL ideal-int +pkg syscall (darwin-amd64), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-amd64), const IP_FW_GET ideal-int +pkg syscall (darwin-amd64), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-amd64), const IP_FW_ZERO ideal-int +pkg syscall (darwin-amd64), const IP_HDRINCL ideal-int +pkg syscall (darwin-amd64), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-amd64), const IP_MAXPACKET ideal-int +pkg syscall (darwin-amd64), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-amd64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-amd64), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-amd64), const IP_MF ideal-int +pkg syscall (darwin-amd64), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64), const IP_MSFILTER ideal-int +pkg syscall (darwin-amd64), const IP_MSS ideal-int +pkg syscall (darwin-amd64), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-amd64), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-amd64), const IP_NAT__XXX ideal-int +pkg syscall (darwin-amd64), const IP_OFFMASK ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-amd64), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-amd64), const IP_OPTIONS ideal-int +pkg syscall (darwin-amd64), const IP_PKTINFO ideal-int +pkg syscall (darwin-amd64), const IP_PORTRANGE ideal-int +pkg syscall (darwin-amd64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-amd64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-amd64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-amd64), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-amd64), const IP_RECVIF ideal-int +pkg syscall (darwin-amd64), const IP_RECVOPTS ideal-int +pkg syscall (darwin-amd64), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-amd64), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-amd64), const IP_RECVTTL ideal-int +pkg syscall (darwin-amd64), const IP_RETOPTS ideal-int +pkg syscall (darwin-amd64), const IP_RF ideal-int +pkg syscall (darwin-amd64), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-amd64), const IP_RSVP_ON ideal-int +pkg syscall (darwin-amd64), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-amd64), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-amd64), const IP_STRIPHDR ideal-int +pkg syscall (darwin-amd64), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-amd64), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-amd64), const LOCK_EX ideal-int +pkg syscall (darwin-amd64), const LOCK_NB ideal-int +pkg syscall (darwin-amd64), const LOCK_SH ideal-int +pkg syscall (darwin-amd64), const LOCK_UN ideal-int +pkg syscall (darwin-amd64), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-amd64), const MADV_DONTNEED ideal-int +pkg syscall (darwin-amd64), const MADV_FREE ideal-int +pkg syscall (darwin-amd64), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-amd64), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-amd64), const MADV_NORMAL ideal-int +pkg syscall (darwin-amd64), const MADV_RANDOM ideal-int +pkg syscall (darwin-amd64), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-amd64), const MADV_WILLNEED ideal-int +pkg syscall (darwin-amd64), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-amd64), const MAP_ANON ideal-int +pkg syscall (darwin-amd64), const MAP_COPY ideal-int +pkg syscall (darwin-amd64), const MAP_FILE ideal-int +pkg syscall (darwin-amd64), const MAP_FIXED ideal-int +pkg syscall (darwin-amd64), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-amd64), const MAP_JIT ideal-int +pkg syscall (darwin-amd64), const MAP_NOCACHE ideal-int +pkg syscall (darwin-amd64), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-amd64), const MAP_NORESERVE ideal-int +pkg syscall (darwin-amd64), const MAP_PRIVATE ideal-int +pkg syscall (darwin-amd64), const MAP_RENAME ideal-int +pkg syscall (darwin-amd64), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-amd64), const MAP_SHARED ideal-int +pkg syscall (darwin-amd64), const MCL_CURRENT ideal-int +pkg syscall (darwin-amd64), const MCL_FUTURE ideal-int +pkg syscall (darwin-amd64), const MSG_CTRUNC ideal-int +pkg syscall (darwin-amd64), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-amd64), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-amd64), const MSG_EOF ideal-int +pkg syscall (darwin-amd64), const MSG_EOR ideal-int +pkg syscall (darwin-amd64), const MSG_FLUSH ideal-int +pkg syscall (darwin-amd64), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-amd64), const MSG_HOLD ideal-int +pkg syscall (darwin-amd64), const MSG_NEEDSA ideal-int +pkg syscall (darwin-amd64), const MSG_OOB ideal-int +pkg syscall (darwin-amd64), const MSG_PEEK ideal-int +pkg syscall (darwin-amd64), const MSG_RCVMORE ideal-int +pkg syscall (darwin-amd64), const MSG_SEND ideal-int +pkg syscall (darwin-amd64), const MSG_TRUNC ideal-int +pkg syscall (darwin-amd64), const MSG_WAITALL ideal-int +pkg syscall (darwin-amd64), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-amd64), const MS_ASYNC ideal-int +pkg syscall (darwin-amd64), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-amd64), const MS_INVALIDATE ideal-int +pkg syscall (darwin-amd64), const MS_KILLPAGES ideal-int +pkg syscall (darwin-amd64), const MS_SYNC ideal-int +pkg syscall (darwin-amd64), const NAME_MAX ideal-int +pkg syscall (darwin-amd64), const NET_RT_DUMP ideal-int +pkg syscall (darwin-amd64), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-amd64), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-amd64), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-amd64), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-amd64), const NET_RT_MAXID ideal-int +pkg syscall (darwin-amd64), const NET_RT_STAT ideal-int +pkg syscall (darwin-amd64), const NET_RT_TRASH ideal-int +pkg syscall (darwin-amd64), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-amd64), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-amd64), const NOTE_CHILD ideal-int +pkg syscall (darwin-amd64), const NOTE_DELETE ideal-int +pkg syscall (darwin-amd64), const NOTE_EXEC ideal-int +pkg syscall (darwin-amd64), const NOTE_EXIT ideal-int +pkg syscall (darwin-amd64), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-amd64), const NOTE_EXTEND ideal-int +pkg syscall (darwin-amd64), const NOTE_FFAND ideal-int +pkg syscall (darwin-amd64), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-amd64), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-amd64), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-amd64), const NOTE_FFNOP ideal-int +pkg syscall (darwin-amd64), const NOTE_FFOR ideal-int +pkg syscall (darwin-amd64), const NOTE_FORK ideal-int +pkg syscall (darwin-amd64), const NOTE_LINK ideal-int +pkg syscall (darwin-amd64), const NOTE_LOWAT ideal-int +pkg syscall (darwin-amd64), const NOTE_NONE ideal-int +pkg syscall (darwin-amd64), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-amd64), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-amd64), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-amd64), const NOTE_REAP ideal-int +pkg syscall (darwin-amd64), const NOTE_RENAME ideal-int +pkg syscall (darwin-amd64), const NOTE_RESOURCEEND ideal-int +pkg syscall (darwin-amd64), const NOTE_REVOKE ideal-int +pkg syscall (darwin-amd64), const NOTE_SECONDS ideal-int +pkg syscall (darwin-amd64), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-amd64), const NOTE_TRACK ideal-int +pkg syscall (darwin-amd64), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-amd64), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-amd64), const NOTE_USECONDS ideal-int +pkg syscall (darwin-amd64), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-amd64), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-amd64), const NOTE_WRITE ideal-int +pkg syscall (darwin-amd64), const O_ACCMODE ideal-int +pkg syscall (darwin-amd64), const O_ALERT ideal-int +pkg syscall (darwin-amd64), const O_DIRECTORY ideal-int +pkg syscall (darwin-amd64), const O_DSYNC ideal-int +pkg syscall (darwin-amd64), const O_EVTONLY ideal-int +pkg syscall (darwin-amd64), const O_EXLOCK ideal-int +pkg syscall (darwin-amd64), const O_FSYNC ideal-int +pkg syscall (darwin-amd64), const O_NDELAY ideal-int +pkg syscall (darwin-amd64), const O_NOFOLLOW ideal-int +pkg syscall (darwin-amd64), const O_POPUP ideal-int +pkg syscall (darwin-amd64), const O_SHLOCK ideal-int +pkg syscall (darwin-amd64), const O_SYMLINK ideal-int +pkg syscall (darwin-amd64), const PROT_EXEC ideal-int +pkg syscall (darwin-amd64), const PROT_NONE ideal-int +pkg syscall (darwin-amd64), const PROT_READ ideal-int +pkg syscall (darwin-amd64), const PROT_WRITE ideal-int +pkg syscall (darwin-amd64), const PTRACE_CONT ideal-int +pkg syscall (darwin-amd64), const PTRACE_KILL ideal-int +pkg syscall (darwin-amd64), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-amd64), const PT_ATTACH ideal-int +pkg syscall (darwin-amd64), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-amd64), const PT_CONTINUE ideal-int +pkg syscall (darwin-amd64), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-amd64), const PT_DETACH ideal-int +pkg syscall (darwin-amd64), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-amd64), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-amd64), const PT_KILL ideal-int +pkg syscall (darwin-amd64), const PT_READ_D ideal-int +pkg syscall (darwin-amd64), const PT_READ_I ideal-int +pkg syscall (darwin-amd64), const PT_READ_U ideal-int +pkg syscall (darwin-amd64), const PT_SIGEXC ideal-int +pkg syscall (darwin-amd64), const PT_STEP ideal-int +pkg syscall (darwin-amd64), const PT_THUPDATE ideal-int +pkg syscall (darwin-amd64), const PT_TRACE_ME ideal-int +pkg syscall (darwin-amd64), const PT_WRITE_D ideal-int +pkg syscall (darwin-amd64), const PT_WRITE_I ideal-int +pkg syscall (darwin-amd64), const PT_WRITE_U ideal-int +pkg syscall (darwin-amd64), const RLIMIT_AS ideal-int +pkg syscall (darwin-amd64), const RLIMIT_CORE ideal-int +pkg syscall (darwin-amd64), const RLIMIT_CPU ideal-int +pkg syscall (darwin-amd64), const RLIMIT_DATA ideal-int +pkg syscall (darwin-amd64), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-amd64), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-amd64), const RLIMIT_STACK ideal-int +pkg syscall (darwin-amd64), const RLIM_INFINITY ideal-int +pkg syscall (darwin-amd64), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-amd64), const RTAX_BRD ideal-int +pkg syscall (darwin-amd64), const RTAX_DST ideal-int +pkg syscall (darwin-amd64), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-amd64), const RTAX_GENMASK ideal-int +pkg syscall (darwin-amd64), const RTAX_IFA ideal-int +pkg syscall (darwin-amd64), const RTAX_IFP ideal-int +pkg syscall (darwin-amd64), const RTAX_MAX ideal-int +pkg syscall (darwin-amd64), const RTAX_NETMASK ideal-int +pkg syscall (darwin-amd64), const RTA_AUTHOR ideal-int +pkg syscall (darwin-amd64), const RTA_BRD ideal-int +pkg syscall (darwin-amd64), const RTA_DST ideal-int +pkg syscall (darwin-amd64), const RTA_GATEWAY ideal-int +pkg syscall (darwin-amd64), const RTA_GENMASK ideal-int +pkg syscall (darwin-amd64), const RTA_IFA ideal-int +pkg syscall (darwin-amd64), const RTA_IFP ideal-int +pkg syscall (darwin-amd64), const RTA_NETMASK ideal-int +pkg syscall (darwin-amd64), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-amd64), const RTF_BROADCAST ideal-int +pkg syscall (darwin-amd64), const RTF_CLONING ideal-int +pkg syscall (darwin-amd64), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-amd64), const RTF_DELCLONE ideal-int +pkg syscall (darwin-amd64), const RTF_DONE ideal-int +pkg syscall (darwin-amd64), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-amd64), const RTF_GATEWAY ideal-int +pkg syscall (darwin-amd64), const RTF_HOST ideal-int +pkg syscall (darwin-amd64), const RTF_IFREF ideal-int +pkg syscall (darwin-amd64), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-amd64), const RTF_LLINFO ideal-int +pkg syscall (darwin-amd64), const RTF_LOCAL ideal-int +pkg syscall (darwin-amd64), const RTF_MODIFIED ideal-int +pkg syscall (darwin-amd64), const RTF_MULTICAST ideal-int +pkg syscall (darwin-amd64), const RTF_PINNED ideal-int +pkg syscall (darwin-amd64), const RTF_PRCLONING ideal-int +pkg syscall (darwin-amd64), const RTF_PROTO1 ideal-int +pkg syscall (darwin-amd64), const RTF_PROTO2 ideal-int +pkg syscall (darwin-amd64), const RTF_PROTO3 ideal-int +pkg syscall (darwin-amd64), const RTF_REJECT ideal-int +pkg syscall (darwin-amd64), const RTF_STATIC ideal-int +pkg syscall (darwin-amd64), const RTF_UP ideal-int +pkg syscall (darwin-amd64), const RTF_WASCLONED ideal-int +pkg syscall (darwin-amd64), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-amd64), const RTM_ADD ideal-int +pkg syscall (darwin-amd64), const RTM_CHANGE ideal-int +pkg syscall (darwin-amd64), const RTM_DELADDR ideal-int +pkg syscall (darwin-amd64), const RTM_DELETE ideal-int +pkg syscall (darwin-amd64), const RTM_DELMADDR ideal-int +pkg syscall (darwin-amd64), const RTM_GET ideal-int +pkg syscall (darwin-amd64), const RTM_GET2 ideal-int +pkg syscall (darwin-amd64), const RTM_IFINFO ideal-int +pkg syscall (darwin-amd64), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-amd64), const RTM_LOCK ideal-int +pkg syscall (darwin-amd64), const RTM_LOSING ideal-int +pkg syscall (darwin-amd64), const RTM_MISS ideal-int +pkg syscall (darwin-amd64), const RTM_NEWADDR ideal-int +pkg syscall (darwin-amd64), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-amd64), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-amd64), const RTM_OLDADD ideal-int +pkg syscall (darwin-amd64), const RTM_OLDDEL ideal-int +pkg syscall (darwin-amd64), const RTM_REDIRECT ideal-int +pkg syscall (darwin-amd64), const RTM_RESOLVE ideal-int +pkg syscall (darwin-amd64), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-amd64), const RTM_VERSION ideal-int +pkg syscall (darwin-amd64), const RTV_EXPIRE ideal-int +pkg syscall (darwin-amd64), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-amd64), const RTV_MTU ideal-int +pkg syscall (darwin-amd64), const RTV_RPIPE ideal-int +pkg syscall (darwin-amd64), const RTV_RTT ideal-int +pkg syscall (darwin-amd64), const RTV_RTTVAR ideal-int +pkg syscall (darwin-amd64), const RTV_SPIPE ideal-int +pkg syscall (darwin-amd64), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-amd64), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-amd64), const RUSAGE_SELF ideal-int +pkg syscall (darwin-amd64), const SCM_CREDS ideal-int +pkg syscall (darwin-amd64), const SCM_RIGHTS ideal-int +pkg syscall (darwin-amd64), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-amd64), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-amd64), const SIGCHLD Signal +pkg syscall (darwin-amd64), const SIGCONT Signal +pkg syscall (darwin-amd64), const SIGEMT Signal +pkg syscall (darwin-amd64), const SIGINFO Signal +pkg syscall (darwin-amd64), const SIGIO Signal +pkg syscall (darwin-amd64), const SIGIOT Signal +pkg syscall (darwin-amd64), const SIGPROF Signal +pkg syscall (darwin-amd64), const SIGSTOP Signal +pkg syscall (darwin-amd64), const SIGSYS Signal +pkg syscall (darwin-amd64), const SIGTSTP Signal +pkg syscall (darwin-amd64), const SIGTTIN Signal +pkg syscall (darwin-amd64), const SIGTTOU Signal +pkg syscall (darwin-amd64), const SIGURG Signal +pkg syscall (darwin-amd64), const SIGUSR1 Signal +pkg syscall (darwin-amd64), const SIGUSR2 Signal +pkg syscall (darwin-amd64), const SIGVTALRM Signal +pkg syscall (darwin-amd64), const SIGWINCH Signal +pkg syscall (darwin-amd64), const SIGXCPU Signal +pkg syscall (darwin-amd64), const SIGXFSZ Signal +pkg syscall (darwin-amd64), const SIOCADDMULTI ideal-int +pkg syscall (darwin-amd64), const SIOCAIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCALIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCARPIPLL ideal-int +pkg syscall (darwin-amd64), const SIOCATMARK ideal-int +pkg syscall (darwin-amd64), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-amd64), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-amd64), const SIOCDELMULTI ideal-int +pkg syscall (darwin-amd64), const SIOCDIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-amd64), const SIOCDLIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-amd64), const SIOCGETSGCNT ideal-int +pkg syscall (darwin-amd64), const SIOCGETVIFCNT ideal-int +pkg syscall (darwin-amd64), const SIOCGETVLAN ideal-int +pkg syscall (darwin-amd64), const SIOCGHIWAT ideal-int +pkg syscall (darwin-amd64), const SIOCGIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-amd64), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-amd64), const SIOCGIFBOND ideal-int +pkg syscall (darwin-amd64), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGIFCAP ideal-int +pkg syscall (darwin-amd64), const SIOCGIFCONF ideal-int +pkg syscall (darwin-amd64), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-amd64), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-amd64), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-amd64), const SIOCGIFKPI ideal-int +pkg syscall (darwin-amd64), const SIOCGIFMAC ideal-int +pkg syscall (darwin-amd64), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-amd64), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-amd64), const SIOCGIFMTU ideal-int +pkg syscall (darwin-amd64), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-amd64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-amd64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-amd64), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-amd64), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-amd64), const SIOCGLIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (darwin-amd64), const SIOCGLOWAT ideal-int +pkg syscall (darwin-amd64), const SIOCGPGRP ideal-int +pkg syscall (darwin-amd64), const SIOCIFCREATE ideal-int +pkg syscall (darwin-amd64), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-amd64), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-amd64), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-amd64), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-amd64), const SIOCSETVLAN ideal-int +pkg syscall (darwin-amd64), const SIOCSHIWAT ideal-int +pkg syscall (darwin-amd64), const SIOCSIFADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-amd64), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-amd64), const SIOCSIFBOND ideal-int +pkg syscall (darwin-amd64), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSIFCAP ideal-int +pkg syscall (darwin-amd64), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-amd64), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-amd64), const SIOCSIFKPI ideal-int +pkg syscall (darwin-amd64), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSIFMAC ideal-int +pkg syscall (darwin-amd64), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-amd64), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-amd64), const SIOCSIFMTU ideal-int +pkg syscall (darwin-amd64), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-amd64), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-amd64), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-amd64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (darwin-amd64), const SIOCSLOWAT ideal-int +pkg syscall (darwin-amd64), const SIOCSPGRP ideal-int +pkg syscall (darwin-amd64), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-amd64), const SOCK_RDM ideal-int +pkg syscall (darwin-amd64), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-amd64), const SO_DEBUG ideal-int +pkg syscall (darwin-amd64), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-amd64), const SO_ERROR ideal-int +pkg syscall (darwin-amd64), const SO_LABEL ideal-int +pkg syscall (darwin-amd64), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-amd64), const SO_NKE ideal-int +pkg syscall (darwin-amd64), const SO_NOADDRERR ideal-int +pkg syscall (darwin-amd64), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-amd64), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-amd64), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-amd64), const SO_NREAD ideal-int +pkg syscall (darwin-amd64), const SO_NWRITE ideal-int +pkg syscall (darwin-amd64), const SO_OOBINLINE ideal-int +pkg syscall (darwin-amd64), const SO_PEERLABEL ideal-int +pkg syscall (darwin-amd64), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-amd64), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-amd64), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-amd64), const SO_RESTRICTIONS ideal-int +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYIN ideal-int +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYOUT ideal-int +pkg syscall (darwin-amd64), const SO_RESTRICT_DENYSET ideal-int +pkg syscall (darwin-amd64), const SO_REUSEPORT ideal-int +pkg syscall (darwin-amd64), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-amd64), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-amd64), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-amd64), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-amd64), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-amd64), const SO_TYPE ideal-int +pkg syscall (darwin-amd64), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-amd64), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-amd64), const SO_WANTMORE ideal-int +pkg syscall (darwin-amd64), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-amd64), const SYS_ACCEPT ideal-int +pkg syscall (darwin-amd64), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_ACCESS ideal-int +pkg syscall (darwin-amd64), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_ACCT ideal-int +pkg syscall (darwin-amd64), const SYS_ADD_PROFIL ideal-int +pkg syscall (darwin-amd64), const SYS_ADJTIME ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_READ ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-amd64), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-amd64), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-amd64), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-amd64), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-amd64), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-amd64), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-amd64), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-amd64), const SYS_AUDIT ideal-int +pkg syscall (darwin-amd64), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-amd64), const SYS_AUDITON ideal-int +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-amd64), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-amd64), const SYS_BIND ideal-int +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-amd64), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-amd64), const SYS_CHDIR ideal-int +pkg syscall (darwin-amd64), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-amd64), const SYS_CHMOD ideal-int +pkg syscall (darwin-amd64), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_CHOWN ideal-int +pkg syscall (darwin-amd64), const SYS_CHROOT ideal-int +pkg syscall (darwin-amd64), const SYS_CHUD ideal-int +pkg syscall (darwin-amd64), const SYS_CLOSE ideal-int +pkg syscall (darwin-amd64), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_CONNECT ideal-int +pkg syscall (darwin-amd64), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_COPYFILE ideal-int +pkg syscall (darwin-amd64), const SYS_CSOPS ideal-int +pkg syscall (darwin-amd64), const SYS_DELETE ideal-int +pkg syscall (darwin-amd64), const SYS_DUP ideal-int +pkg syscall (darwin-amd64), const SYS_DUP2 ideal-int +pkg syscall (darwin-amd64), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-amd64), const SYS_EXECVE ideal-int +pkg syscall (darwin-amd64), const SYS_EXIT ideal-int +pkg syscall (darwin-amd64), const SYS_FCHDIR ideal-int +pkg syscall (darwin-amd64), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-amd64), const SYS_FCHMOD ideal-int +pkg syscall (darwin-amd64), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_FCHOWN ideal-int +pkg syscall (darwin-amd64), const SYS_FCNTL ideal-int +pkg syscall (darwin-amd64), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-amd64), const SYS_FFSCTL ideal-int +pkg syscall (darwin-amd64), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-amd64), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_FHOPEN ideal-int +pkg syscall (darwin-amd64), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-amd64), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-amd64), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_FLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_FORK ideal-int +pkg syscall (darwin-amd64), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-amd64), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_FSCTL ideal-int +pkg syscall (darwin-amd64), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-amd64), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-amd64), const SYS_FSTAT ideal-int +pkg syscall (darwin-amd64), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-amd64), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_FSTATFS ideal-int +pkg syscall (darwin-amd64), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-amd64), const SYS_FSTATV ideal-int +pkg syscall (darwin-amd64), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_FSYNC ideal-int +pkg syscall (darwin-amd64), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-amd64), const SYS_FUTIMES ideal-int +pkg syscall (darwin-amd64), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-amd64), const SYS_GETAUDIT ideal-int +pkg syscall (darwin-amd64), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-amd64), const SYS_GETAUID ideal-int +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-amd64), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-amd64), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-amd64), const SYS_GETEGID ideal-int +pkg syscall (darwin-amd64), const SYS_GETEUID ideal-int +pkg syscall (darwin-amd64), const SYS_GETFH ideal-int +pkg syscall (darwin-amd64), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-amd64), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-amd64), const SYS_GETGID ideal-int +pkg syscall (darwin-amd64), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-amd64), const SYS_GETITIMER ideal-int +pkg syscall (darwin-amd64), const SYS_GETLCID ideal-int +pkg syscall (darwin-amd64), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-amd64), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-amd64), const SYS_GETPGID ideal-int +pkg syscall (darwin-amd64), const SYS_GETPGRP ideal-int +pkg syscall (darwin-amd64), const SYS_GETPID ideal-int +pkg syscall (darwin-amd64), const SYS_GETPPID ideal-int +pkg syscall (darwin-amd64), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-amd64), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-amd64), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-amd64), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_GETSID ideal-int +pkg syscall (darwin-amd64), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-amd64), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-amd64), const SYS_GETTID ideal-int +pkg syscall (darwin-amd64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-amd64), const SYS_GETUID ideal-int +pkg syscall (darwin-amd64), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_GETXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-amd64), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_IOCTL ideal-int +pkg syscall (darwin-amd64), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-amd64), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-amd64), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-amd64), const SYS_KEVENT ideal-int +pkg syscall (darwin-amd64), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-amd64), const SYS_KILL ideal-int +pkg syscall (darwin-amd64), const SYS_KQUEUE ideal-int +pkg syscall (darwin-amd64), const SYS_LCHOWN ideal-int +pkg syscall (darwin-amd64), const SYS_LINK ideal-int +pkg syscall (darwin-amd64), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-amd64), const SYS_LISTEN ideal-int +pkg syscall (darwin-amd64), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_LSEEK ideal-int +pkg syscall (darwin-amd64), const SYS_LSTAT ideal-int +pkg syscall (darwin-amd64), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-amd64), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_LSTATV ideal-int +pkg syscall (darwin-amd64), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_MADVISE ideal-int +pkg syscall (darwin-amd64), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-amd64), const SYS_MINCORE ideal-int +pkg syscall (darwin-amd64), const SYS_MINHERIT ideal-int +pkg syscall (darwin-amd64), const SYS_MKCOMPLEX ideal-int +pkg syscall (darwin-amd64), const SYS_MKDIR ideal-int +pkg syscall (darwin-amd64), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_MKFIFO ideal-int +pkg syscall (darwin-amd64), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_MKNOD ideal-int +pkg syscall (darwin-amd64), const SYS_MLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-amd64), const SYS_MMAP ideal-int +pkg syscall (darwin-amd64), const SYS_MODWATCH ideal-int +pkg syscall (darwin-amd64), const SYS_MOUNT ideal-int +pkg syscall (darwin-amd64), const SYS_MPROTECT ideal-int +pkg syscall (darwin-amd64), const SYS_MSGCTL ideal-int +pkg syscall (darwin-amd64), const SYS_MSGGET ideal-int +pkg syscall (darwin-amd64), const SYS_MSGRCV ideal-int +pkg syscall (darwin-amd64), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_MSGSND ideal-int +pkg syscall (darwin-amd64), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_MSGSYS ideal-int +pkg syscall (darwin-amd64), const SYS_MSYNC ideal-int +pkg syscall (darwin-amd64), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-amd64), const SYS_MUNMAP ideal-int +pkg syscall (darwin-amd64), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-amd64), const SYS_NFSSVC ideal-int +pkg syscall (darwin-amd64), const SYS_OPEN ideal-int +pkg syscall (darwin-amd64), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_PATHCONF ideal-int +pkg syscall (darwin-amd64), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-amd64), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-amd64), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-amd64), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-amd64), const SYS_PIPE ideal-int +pkg syscall (darwin-amd64), const SYS_POLL ideal-int +pkg syscall (darwin-amd64), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-amd64), const SYS_PREAD ideal-int +pkg syscall (darwin-amd64), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-amd64), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-amd64), const SYS_PROFIL ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-amd64), const SYS_PTRACE ideal-int +pkg syscall (darwin-amd64), const SYS_PWRITE ideal-int +pkg syscall (darwin-amd64), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-amd64), const SYS_READ ideal-int +pkg syscall (darwin-amd64), const SYS_READLINK ideal-int +pkg syscall (darwin-amd64), const SYS_READV ideal-int +pkg syscall (darwin-amd64), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_REBOOT ideal-int +pkg syscall (darwin-amd64), const SYS_RECVFROM ideal-int +pkg syscall (darwin-amd64), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_RECVMSG ideal-int +pkg syscall (darwin-amd64), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_RENAME ideal-int +pkg syscall (darwin-amd64), const SYS_REVOKE ideal-int +pkg syscall (darwin-amd64), const SYS_RMDIR ideal-int +pkg syscall (darwin-amd64), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-amd64), const SYS_SELECT ideal-int +pkg syscall (darwin-amd64), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_SEMCTL ideal-int +pkg syscall (darwin-amd64), const SYS_SEMGET ideal-int +pkg syscall (darwin-amd64), const SYS_SEMOP ideal-int +pkg syscall (darwin-amd64), const SYS_SEMSYS ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_POST ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-amd64), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_SENDFILE ideal-int +pkg syscall (darwin-amd64), const SYS_SENDMSG ideal-int +pkg syscall (darwin-amd64), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_SENDTO ideal-int +pkg syscall (darwin-amd64), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-amd64), const SYS_SETAUDIT ideal-int +pkg syscall (darwin-amd64), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-amd64), const SYS_SETAUID ideal-int +pkg syscall (darwin-amd64), const SYS_SETEGID ideal-int +pkg syscall (darwin-amd64), const SYS_SETEUID ideal-int +pkg syscall (darwin-amd64), const SYS_SETGID ideal-int +pkg syscall (darwin-amd64), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_SETITIMER ideal-int +pkg syscall (darwin-amd64), const SYS_SETLCID ideal-int +pkg syscall (darwin-amd64), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-amd64), const SYS_SETPGID ideal-int +pkg syscall (darwin-amd64), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-amd64), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-amd64), const SYS_SETREGID ideal-int +pkg syscall (darwin-amd64), const SYS_SETREUID ideal-int +pkg syscall (darwin-amd64), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-amd64), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_SETSID ideal-int +pkg syscall (darwin-amd64), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-amd64), const SYS_SETTID ideal-int +pkg syscall (darwin-amd64), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-amd64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-amd64), const SYS_SETUID ideal-int +pkg syscall (darwin-amd64), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-amd64), const SYS_SETXATTR ideal-int +pkg syscall (darwin-amd64), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-amd64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-amd64), const SYS_SHMAT ideal-int +pkg syscall (darwin-amd64), const SYS_SHMCTL ideal-int +pkg syscall (darwin-amd64), const SYS_SHMDT ideal-int +pkg syscall (darwin-amd64), const SYS_SHMGET ideal-int +pkg syscall (darwin-amd64), const SYS_SHMSYS ideal-int +pkg syscall (darwin-amd64), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-amd64), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-amd64), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-amd64), const SYS_SIGACTION ideal-int +pkg syscall (darwin-amd64), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-amd64), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-amd64), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-amd64), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-amd64), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-amd64), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_SOCKET ideal-int +pkg syscall (darwin-amd64), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-amd64), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-amd64), const SYS_STAT ideal-int +pkg syscall (darwin-amd64), const SYS_STAT64 ideal-int +pkg syscall (darwin-amd64), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_STATFS ideal-int +pkg syscall (darwin-amd64), const SYS_STATFS64 ideal-int +pkg syscall (darwin-amd64), const SYS_STATV ideal-int +pkg syscall (darwin-amd64), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_SWAPON ideal-int +pkg syscall (darwin-amd64), const SYS_SYMLINK ideal-int +pkg syscall (darwin-amd64), const SYS_SYNC ideal-int +pkg syscall (darwin-amd64), const SYS_SYSCALL ideal-int +pkg syscall (darwin-amd64), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-amd64), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-amd64), const SYS_UMASK ideal-int +pkg syscall (darwin-amd64), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-amd64), const SYS_UNDELETE ideal-int +pkg syscall (darwin-amd64), const SYS_UNLINK ideal-int +pkg syscall (darwin-amd64), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-amd64), const SYS_UTIMES ideal-int +pkg syscall (darwin-amd64), const SYS_VFORK ideal-int +pkg syscall (darwin-amd64), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-amd64), const SYS_WAIT4 ideal-int +pkg syscall (darwin-amd64), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-amd64), const SYS_WAITID ideal-int +pkg syscall (darwin-amd64), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-amd64), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-amd64), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-amd64), const SYS_WRITE ideal-int +pkg syscall (darwin-amd64), const SYS_WRITEV ideal-int +pkg syscall (darwin-amd64), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-amd64), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-amd64), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-amd64), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-amd64), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-amd64), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-amd64), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-amd64), const SYS___SYSCTL ideal-int +pkg syscall (darwin-amd64), const S_IEXEC ideal-int +pkg syscall (darwin-amd64), const S_IFWHT ideal-int +pkg syscall (darwin-amd64), const S_IREAD ideal-int +pkg syscall (darwin-amd64), const S_IRGRP ideal-int +pkg syscall (darwin-amd64), const S_IROTH ideal-int +pkg syscall (darwin-amd64), const S_IRWXG ideal-int +pkg syscall (darwin-amd64), const S_IRWXO ideal-int +pkg syscall (darwin-amd64), const S_IRWXU ideal-int +pkg syscall (darwin-amd64), const S_ISTXT ideal-int +pkg syscall (darwin-amd64), const S_IWGRP ideal-int +pkg syscall (darwin-amd64), const S_IWOTH ideal-int +pkg syscall (darwin-amd64), const S_IWRITE ideal-int +pkg syscall (darwin-amd64), const S_IXGRP ideal-int +pkg syscall (darwin-amd64), const S_IXOTH ideal-int +pkg syscall (darwin-amd64), const SizeofBpfHdr ideal-int +pkg syscall (darwin-amd64), const SizeofBpfInsn ideal-int +pkg syscall (darwin-amd64), const SizeofBpfProgram ideal-int +pkg syscall (darwin-amd64), const SizeofBpfStat ideal-int +pkg syscall (darwin-amd64), const SizeofBpfVersion ideal-int +pkg syscall (darwin-amd64), const SizeofCmsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofIPMreq ideal-int +pkg syscall (darwin-amd64), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-amd64), const SizeofIfData ideal-int +pkg syscall (darwin-amd64), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-amd64), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-amd64), const SizeofLinger ideal-int +pkg syscall (darwin-amd64), const SizeofMsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofRtMetrics ideal-int +pkg syscall (darwin-amd64), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-amd64), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-amd64), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-amd64), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-amd64), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-amd64), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-amd64), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-amd64), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-amd64), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-amd64), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-amd64), const TCP_MAXSEG ideal-int +pkg syscall (darwin-amd64), const TCP_MAXWIN ideal-int +pkg syscall (darwin-amd64), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-amd64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-amd64), const TCP_MINMSS ideal-int +pkg syscall (darwin-amd64), const TCP_MINMSSOVERLOAD ideal-int +pkg syscall (darwin-amd64), const TCP_MSS ideal-int +pkg syscall (darwin-amd64), const TCP_NOOPT ideal-int +pkg syscall (darwin-amd64), const TCP_NOPUSH ideal-int +pkg syscall (darwin-amd64), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-amd64), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-amd64), const TIOCCBRK ideal-int +pkg syscall (darwin-amd64), const TIOCCDTR ideal-int +pkg syscall (darwin-amd64), const TIOCCONS ideal-int +pkg syscall (darwin-amd64), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-amd64), const TIOCDRAIN ideal-int +pkg syscall (darwin-amd64), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-amd64), const TIOCEXCL ideal-int +pkg syscall (darwin-amd64), const TIOCEXT ideal-int +pkg syscall (darwin-amd64), const TIOCFLUSH ideal-int +pkg syscall (darwin-amd64), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-amd64), const TIOCGETA ideal-int +pkg syscall (darwin-amd64), const TIOCGETD ideal-int +pkg syscall (darwin-amd64), const TIOCGPGRP ideal-int +pkg syscall (darwin-amd64), const TIOCGWINSZ ideal-int +pkg syscall (darwin-amd64), const TIOCIXOFF ideal-int +pkg syscall (darwin-amd64), const TIOCIXON ideal-int +pkg syscall (darwin-amd64), const TIOCMBIC ideal-int +pkg syscall (darwin-amd64), const TIOCMBIS ideal-int +pkg syscall (darwin-amd64), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-amd64), const TIOCMGET ideal-int +pkg syscall (darwin-amd64), const TIOCMODG ideal-int +pkg syscall (darwin-amd64), const TIOCMODS ideal-int +pkg syscall (darwin-amd64), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-amd64), const TIOCMSET ideal-int +pkg syscall (darwin-amd64), const TIOCM_CAR ideal-int +pkg syscall (darwin-amd64), const TIOCM_CD ideal-int +pkg syscall (darwin-amd64), const TIOCM_CTS ideal-int +pkg syscall (darwin-amd64), const TIOCM_DSR ideal-int +pkg syscall (darwin-amd64), const TIOCM_DTR ideal-int +pkg syscall (darwin-amd64), const TIOCM_LE ideal-int +pkg syscall (darwin-amd64), const TIOCM_RI ideal-int +pkg syscall (darwin-amd64), const TIOCM_RNG ideal-int +pkg syscall (darwin-amd64), const TIOCM_RTS ideal-int +pkg syscall (darwin-amd64), const TIOCM_SR ideal-int +pkg syscall (darwin-amd64), const TIOCM_ST ideal-int +pkg syscall (darwin-amd64), const TIOCNOTTY ideal-int +pkg syscall (darwin-amd64), const TIOCNXCL ideal-int +pkg syscall (darwin-amd64), const TIOCOUTQ ideal-int +pkg syscall (darwin-amd64), const TIOCPKT ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_START ideal-int +pkg syscall (darwin-amd64), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-amd64), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-amd64), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-amd64), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-amd64), const TIOCREMOTE ideal-int +pkg syscall (darwin-amd64), const TIOCSBRK ideal-int +pkg syscall (darwin-amd64), const TIOCSCONS ideal-int +pkg syscall (darwin-amd64), const TIOCSCTTY ideal-int +pkg syscall (darwin-amd64), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-amd64), const TIOCSDTR ideal-int +pkg syscall (darwin-amd64), const TIOCSETA ideal-int +pkg syscall (darwin-amd64), const TIOCSETAF ideal-int +pkg syscall (darwin-amd64), const TIOCSETAW ideal-int +pkg syscall (darwin-amd64), const TIOCSETD ideal-int +pkg syscall (darwin-amd64), const TIOCSIG ideal-int +pkg syscall (darwin-amd64), const TIOCSPGRP ideal-int +pkg syscall (darwin-amd64), const TIOCSTART ideal-int +pkg syscall (darwin-amd64), const TIOCSTAT ideal-int +pkg syscall (darwin-amd64), const TIOCSTI ideal-int +pkg syscall (darwin-amd64), const TIOCSTOP ideal-int +pkg syscall (darwin-amd64), const TIOCSWINSZ ideal-int +pkg syscall (darwin-amd64), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-amd64), const TIOCUCNTL ideal-int +pkg syscall (darwin-amd64), const WCONTINUED ideal-int +pkg syscall (darwin-amd64), const WCOREFLAG ideal-int +pkg syscall (darwin-amd64), const WEXITED ideal-int +pkg syscall (darwin-amd64), const WNOHANG ideal-int +pkg syscall (darwin-amd64), const WNOWAIT ideal-int +pkg syscall (darwin-amd64), const WORDSIZE ideal-int +pkg syscall (darwin-amd64), const WSTOPPED ideal-int +pkg syscall (darwin-amd64), const WUNTRACED ideal-int +pkg syscall (darwin-amd64), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-amd64), func Access(string, uint32) error +pkg syscall (darwin-amd64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-amd64), func Bind(int, Sockaddr) error +pkg syscall (darwin-amd64), func BpfBuflen(int) (int, error) +pkg syscall (darwin-amd64), func BpfDatalink(int) (int, error) +pkg syscall (darwin-amd64), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-amd64), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-amd64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-amd64), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-amd64), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-amd64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-amd64), func CheckBpfVersion(int) error +pkg syscall (darwin-amd64), func Chflags(string, int) error +pkg syscall (darwin-amd64), func Chroot(string) error +pkg syscall (darwin-amd64), func Close(int) error +pkg syscall (darwin-amd64), func CloseOnExec(int) +pkg syscall (darwin-amd64), func CmsgLen(int) int +pkg syscall (darwin-amd64), func CmsgSpace(int) int +pkg syscall (darwin-amd64), func Connect(int, Sockaddr) error +pkg syscall (darwin-amd64), func Dup(int) (int, error) +pkg syscall (darwin-amd64), func Dup2(int, int) error +pkg syscall (darwin-amd64), func Exchangedata(string, string, int) error +pkg syscall (darwin-amd64), func Fchdir(int) error +pkg syscall (darwin-amd64), func Fchflags(string, int) error +pkg syscall (darwin-amd64), func Fchmod(int, uint32) error +pkg syscall (darwin-amd64), func Fchown(int, int, int) error +pkg syscall (darwin-amd64), func Flock(int, int) error +pkg syscall (darwin-amd64), func FlushBpf(int) error +pkg syscall (darwin-amd64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-amd64), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-amd64), func Fstat(int, *Stat_t) error +pkg syscall (darwin-amd64), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-amd64), func Fsync(int) error +pkg syscall (darwin-amd64), func Ftruncate(int, int64) error +pkg syscall (darwin-amd64), func Futimes(int, []Timeval) error +pkg syscall (darwin-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-amd64), func Getdtablesize() int +pkg syscall (darwin-amd64), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-amd64), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-amd64), func Getpgid(int) (int, error) +pkg syscall (darwin-amd64), func Getpgrp() int +pkg syscall (darwin-amd64), func Getpriority(int, int) (int, error) +pkg syscall (darwin-amd64), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-amd64), func Getrusage(int, *Rusage) error +pkg syscall (darwin-amd64), func Getsid(int) (int, error) +pkg syscall (darwin-amd64), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-amd64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-amd64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-amd64), func Issetugid() bool +pkg syscall (darwin-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-amd64), func Kill(int, Signal) error +pkg syscall (darwin-amd64), func Kqueue() (int, error) +pkg syscall (darwin-amd64), func Listen(int, int) error +pkg syscall (darwin-amd64), func Lstat(string, *Stat_t) error +pkg syscall (darwin-amd64), func Mkfifo(string, uint32) error +pkg syscall (darwin-amd64), func Mknod(string, uint32, int) error +pkg syscall (darwin-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-amd64), func Munmap([]uint8) error +pkg syscall (darwin-amd64), func NsecToTimespec(int64) Timespec +pkg syscall (darwin-amd64), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-amd64), func Pathconf(string, int) (int, error) +pkg syscall (darwin-amd64), func Pipe([]int) error +pkg syscall (darwin-amd64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-amd64), func PtraceAttach(int) error +pkg syscall (darwin-amd64), func PtraceDetach(int) error +pkg syscall (darwin-amd64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64), func Read(int, []uint8) (int, error) +pkg syscall (darwin-amd64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-amd64), func Revoke(string) error +pkg syscall (darwin-amd64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-amd64), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-amd64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-amd64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-amd64), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-amd64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-amd64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-amd64), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-amd64), func SetBpfImmediate(int, int) error +pkg syscall (darwin-amd64), func SetBpfInterface(int, string) error +pkg syscall (darwin-amd64), func SetBpfPromisc(int, int) error +pkg syscall (darwin-amd64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-amd64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-amd64), func SetNonblock(int, bool) error +pkg syscall (darwin-amd64), func Setegid(int) error +pkg syscall (darwin-amd64), func Seteuid(int) error +pkg syscall (darwin-amd64), func Setgid(int) error +pkg syscall (darwin-amd64), func Setgroups([]int) error +pkg syscall (darwin-amd64), func Setlogin(string) error +pkg syscall (darwin-amd64), func Setpgid(int, int) error +pkg syscall (darwin-amd64), func Setpriority(int, int, int) error +pkg syscall (darwin-amd64), func Setprivexec(int) error +pkg syscall (darwin-amd64), func Setregid(int, int) error +pkg syscall (darwin-amd64), func Setreuid(int, int) error +pkg syscall (darwin-amd64), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-amd64), func Setsid() (int, error) +pkg syscall (darwin-amd64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-amd64), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-amd64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-amd64), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-amd64), func Settimeofday(*Timeval) error +pkg syscall (darwin-amd64), func Setuid(int) error +pkg syscall (darwin-amd64), func Shutdown(int, int) error +pkg syscall (darwin-amd64), func Socket(int, int, int) (int, error) +pkg syscall (darwin-amd64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-amd64), func Stat(string, *Stat_t) error +pkg syscall (darwin-amd64), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-amd64), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-amd64), func Sync() error +pkg syscall (darwin-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64), func Sysctl(string) (string, error) +pkg syscall (darwin-amd64), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-amd64), func TimespecToNsec(Timespec) int64 +pkg syscall (darwin-amd64), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-amd64), func Truncate(string, int64) error +pkg syscall (darwin-amd64), func Umask(int) int +pkg syscall (darwin-amd64), func Undelete(string) error +pkg syscall (darwin-amd64), func UnixRights(...int) []uint8 +pkg syscall (darwin-amd64), func Unmount(string, int) error +pkg syscall (darwin-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-amd64), func Write(int, []uint8) (int, error) +pkg syscall (darwin-amd64), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-amd64), method (*Iovec) SetLen(int) +pkg syscall (darwin-amd64), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-amd64), type BpfHdr struct +pkg syscall (darwin-amd64), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-amd64), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-amd64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-amd64), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type BpfHdr struct, Tstamp Timeval32 +pkg syscall (darwin-amd64), type BpfInsn struct +pkg syscall (darwin-amd64), type BpfInsn struct, Code uint16 +pkg syscall (darwin-amd64), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-amd64), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-amd64), type BpfInsn struct, K uint32 +pkg syscall (darwin-amd64), type BpfProgram struct +pkg syscall (darwin-amd64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-amd64), type BpfProgram struct, Len uint32 +pkg syscall (darwin-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64), type BpfStat struct +pkg syscall (darwin-amd64), type BpfStat struct, Drop uint32 +pkg syscall (darwin-amd64), type BpfStat struct, Recv uint32 +pkg syscall (darwin-amd64), type BpfVersion struct +pkg syscall (darwin-amd64), type BpfVersion struct, Major uint16 +pkg syscall (darwin-amd64), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-amd64), type Cmsghdr struct +pkg syscall (darwin-amd64), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-amd64), type Cmsghdr struct, Level int32 +pkg syscall (darwin-amd64), type Cmsghdr struct, Type int32 +pkg syscall (darwin-amd64), type Credential struct +pkg syscall (darwin-amd64), type Credential struct, Gid uint32 +pkg syscall (darwin-amd64), type Credential struct, Groups []uint32 +pkg syscall (darwin-amd64), type Credential struct, Uid uint32 +pkg syscall (darwin-amd64), type Dirent struct +pkg syscall (darwin-amd64), type Dirent struct, Ino uint64 +pkg syscall (darwin-amd64), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-amd64), type Dirent struct, Namlen uint16 +pkg syscall (darwin-amd64), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-amd64), type Dirent struct, Reclen uint16 +pkg syscall (darwin-amd64), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-amd64), type Dirent struct, Type uint8 +pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct +pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Length uint64 +pkg syscall (darwin-amd64), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-amd64), type FdSet struct +pkg syscall (darwin-amd64), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-amd64), type Flock_t struct +pkg syscall (darwin-amd64), type Flock_t struct, Len int64 +pkg syscall (darwin-amd64), type Flock_t struct, Pid int32 +pkg syscall (darwin-amd64), type Flock_t struct, Start int64 +pkg syscall (darwin-amd64), type Flock_t struct, Type int16 +pkg syscall (darwin-amd64), type Flock_t struct, Whence int16 +pkg syscall (darwin-amd64), type Fsid struct +pkg syscall (darwin-amd64), type Fsid struct, Val [2]int32 +pkg syscall (darwin-amd64), type Fstore_t struct +pkg syscall (darwin-amd64), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-amd64), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-amd64), type Fstore_t struct, Length int64 +pkg syscall (darwin-amd64), type Fstore_t struct, Offset int64 +pkg syscall (darwin-amd64), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-amd64), type IfData struct +pkg syscall (darwin-amd64), type IfData struct, Addrlen uint8 +pkg syscall (darwin-amd64), type IfData struct, Baudrate uint32 +pkg syscall (darwin-amd64), type IfData struct, Collisions uint32 +pkg syscall (darwin-amd64), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-amd64), type IfData struct, Hwassist uint32 +pkg syscall (darwin-amd64), type IfData struct, Ibytes uint32 +pkg syscall (darwin-amd64), type IfData struct, Ierrors uint32 +pkg syscall (darwin-amd64), type IfData struct, Imcasts uint32 +pkg syscall (darwin-amd64), type IfData struct, Ipackets uint32 +pkg syscall (darwin-amd64), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-amd64), type IfData struct, Lastchange Timeval32 +pkg syscall (darwin-amd64), type IfData struct, Metric uint32 +pkg syscall (darwin-amd64), type IfData struct, Mtu uint32 +pkg syscall (darwin-amd64), type IfData struct, Noproto uint32 +pkg syscall (darwin-amd64), type IfData struct, Obytes uint32 +pkg syscall (darwin-amd64), type IfData struct, Oerrors uint32 +pkg syscall (darwin-amd64), type IfData struct, Omcasts uint32 +pkg syscall (darwin-amd64), type IfData struct, Opackets uint32 +pkg syscall (darwin-amd64), type IfData struct, Physical uint8 +pkg syscall (darwin-amd64), type IfData struct, Recvquota uint8 +pkg syscall (darwin-amd64), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-amd64), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-amd64), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-amd64), type IfData struct, Type uint8 +pkg syscall (darwin-amd64), type IfData struct, Typelen uint8 +pkg syscall (darwin-amd64), type IfData struct, Unused1 uint8 +pkg syscall (darwin-amd64), type IfData struct, Unused2 uint32 +pkg syscall (darwin-amd64), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-amd64), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-amd64), type IfMsghdr struct +pkg syscall (darwin-amd64), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64), type IfMsghdr struct, Data IfData +pkg syscall (darwin-amd64), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-amd64), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-amd64), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-amd64), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-amd64), type IfaMsghdr struct +pkg syscall (darwin-amd64), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-amd64), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr struct +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-amd64), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-amd64), type Inet6Pktinfo struct +pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-amd64), type InterfaceAddrMessage struct +pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-amd64), type InterfaceMessage struct +pkg syscall (darwin-amd64), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-amd64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-amd64), type Iovec struct +pkg syscall (darwin-amd64), type Iovec struct, Base *uint8 +pkg syscall (darwin-amd64), type Iovec struct, Len uint64 +pkg syscall (darwin-amd64), type Kevent_t struct +pkg syscall (darwin-amd64), type Kevent_t struct, Data int64 +pkg syscall (darwin-amd64), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-amd64), type Kevent_t struct, Filter int16 +pkg syscall (darwin-amd64), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-amd64), type Kevent_t struct, Ident uint64 +pkg syscall (darwin-amd64), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-amd64), type Log2phys_t struct +pkg syscall (darwin-amd64), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-amd64), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-amd64), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-amd64), type Msghdr struct +pkg syscall (darwin-amd64), type Msghdr struct, Control *uint8 +pkg syscall (darwin-amd64), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-amd64), type Msghdr struct, Flags int32 +pkg syscall (darwin-amd64), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-amd64), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-amd64), type Msghdr struct, Name *uint8 +pkg syscall (darwin-amd64), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (darwin-amd64), type Radvisory_t struct +pkg syscall (darwin-amd64), type Radvisory_t struct, Count int32 +pkg syscall (darwin-amd64), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-amd64), type Radvisory_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-amd64), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-amd64), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-amd64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-amd64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (darwin-amd64), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (darwin-amd64), type RawSockaddrUnix struct +pkg syscall (darwin-amd64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-amd64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-amd64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-amd64), type Rlimit struct +pkg syscall (darwin-amd64), type Rlimit struct, Cur uint64 +pkg syscall (darwin-amd64), type Rlimit struct, Max uint64 +pkg syscall (darwin-amd64), type RouteMessage struct +pkg syscall (darwin-amd64), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-amd64), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-amd64), type RoutingMessage interface, unexported methods +pkg syscall (darwin-amd64), type RtMetrics struct +pkg syscall (darwin-amd64), type RtMetrics struct, Expire int32 +pkg syscall (darwin-amd64), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-amd64), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-amd64), type RtMsghdr struct +pkg syscall (darwin-amd64), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-amd64), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-amd64), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-amd64), type RtMsghdr struct, Use int32 +pkg syscall (darwin-amd64), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-amd64), type Rusage struct, Idrss int64 +pkg syscall (darwin-amd64), type Rusage struct, Inblock int64 +pkg syscall (darwin-amd64), type Rusage struct, Isrss int64 +pkg syscall (darwin-amd64), type Rusage struct, Ixrss int64 +pkg syscall (darwin-amd64), type Rusage struct, Majflt int64 +pkg syscall (darwin-amd64), type Rusage struct, Maxrss int64 +pkg syscall (darwin-amd64), type Rusage struct, Minflt int64 +pkg syscall (darwin-amd64), type Rusage struct, Msgrcv int64 +pkg syscall (darwin-amd64), type Rusage struct, Msgsnd int64 +pkg syscall (darwin-amd64), type Rusage struct, Nivcsw int64 +pkg syscall (darwin-amd64), type Rusage struct, Nsignals int64 +pkg syscall (darwin-amd64), type Rusage struct, Nswap int64 +pkg syscall (darwin-amd64), type Rusage struct, Nvcsw int64 +pkg syscall (darwin-amd64), type Rusage struct, Oublock int64 +pkg syscall (darwin-amd64), type Rusage struct, Stime Timeval +pkg syscall (darwin-amd64), type Rusage struct, Utime Timeval +pkg syscall (darwin-amd64), type SockaddrDatalink struct +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-amd64), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-amd64), type SocketControlMessage struct +pkg syscall (darwin-amd64), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-amd64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-amd64), type Stat_t struct +pkg syscall (darwin-amd64), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-amd64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-amd64), type Stat_t struct, Blksize int32 +pkg syscall (darwin-amd64), type Stat_t struct, Blocks int64 +pkg syscall (darwin-amd64), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-amd64), type Stat_t struct, Dev int32 +pkg syscall (darwin-amd64), type Stat_t struct, Flags uint32 +pkg syscall (darwin-amd64), type Stat_t struct, Gen uint32 +pkg syscall (darwin-amd64), type Stat_t struct, Gid uint32 +pkg syscall (darwin-amd64), type Stat_t struct, Ino uint64 +pkg syscall (darwin-amd64), type Stat_t struct, Lspare int32 +pkg syscall (darwin-amd64), type Stat_t struct, Mode uint16 +pkg syscall (darwin-amd64), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-amd64), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-amd64), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-amd64), type Stat_t struct, Rdev int32 +pkg syscall (darwin-amd64), type Stat_t struct, Size int64 +pkg syscall (darwin-amd64), type Stat_t struct, Uid uint32 +pkg syscall (darwin-amd64), type Statfs_t struct +pkg syscall (darwin-amd64), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-amd64), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-amd64), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-amd64), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-amd64), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-amd64), type Statfs_t struct, Files uint64 +pkg syscall (darwin-amd64), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-amd64), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-amd64), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-amd64), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-amd64), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-amd64), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-amd64), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-amd64), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-amd64), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-amd64), type Statfs_t struct, Type uint32 +pkg syscall (darwin-amd64), type SysProcAttr struct, Chroot string +pkg syscall (darwin-amd64), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-amd64), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-amd64), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-amd64), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-amd64), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-amd64), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-amd64), type Timespec struct, Nsec int64 +pkg syscall (darwin-amd64), type Timespec struct, Sec int64 +pkg syscall (darwin-amd64), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64), type Timeval struct, Sec int64 +pkg syscall (darwin-amd64), type Timeval struct, Usec int32 +pkg syscall (darwin-amd64), type Timeval32 struct +pkg syscall (darwin-amd64), type Timeval32 struct, Sec int32 +pkg syscall (darwin-amd64), type Timeval32 struct, Usec int32 +pkg syscall (darwin-amd64), type WaitStatus uint32 +pkg syscall (darwin-amd64), var Stderr int +pkg syscall (darwin-amd64), var Stdin int +pkg syscall (darwin-amd64), var Stdout int +pkg syscall (darwin-amd64-cgo), const AF_APPLETALK ideal-int +pkg syscall (darwin-amd64-cgo), const AF_CCITT ideal-int +pkg syscall (darwin-amd64-cgo), const AF_CHAOS ideal-int +pkg syscall (darwin-amd64-cgo), const AF_CNT ideal-int +pkg syscall (darwin-amd64-cgo), const AF_COIP ideal-int +pkg syscall (darwin-amd64-cgo), const AF_DATAKIT ideal-int +pkg syscall (darwin-amd64-cgo), const AF_DECnet ideal-int +pkg syscall (darwin-amd64-cgo), const AF_DLI ideal-int +pkg syscall (darwin-amd64-cgo), const AF_E164 ideal-int +pkg syscall (darwin-amd64-cgo), const AF_ECMA ideal-int +pkg syscall (darwin-amd64-cgo), const AF_HYLINK ideal-int +pkg syscall (darwin-amd64-cgo), const AF_IEEE80211 ideal-int +pkg syscall (darwin-amd64-cgo), const AF_IMPLINK ideal-int +pkg syscall (darwin-amd64-cgo), const AF_IPX ideal-int +pkg syscall (darwin-amd64-cgo), const AF_ISDN ideal-int +pkg syscall (darwin-amd64-cgo), const AF_ISO ideal-int +pkg syscall (darwin-amd64-cgo), const AF_LAT ideal-int +pkg syscall (darwin-amd64-cgo), const AF_LINK ideal-int +pkg syscall (darwin-amd64-cgo), const AF_LOCAL ideal-int +pkg syscall (darwin-amd64-cgo), const AF_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const AF_NATM ideal-int +pkg syscall (darwin-amd64-cgo), const AF_NDRV ideal-int +pkg syscall (darwin-amd64-cgo), const AF_NETBIOS ideal-int +pkg syscall (darwin-amd64-cgo), const AF_NS ideal-int +pkg syscall (darwin-amd64-cgo), const AF_OSI ideal-int +pkg syscall (darwin-amd64-cgo), const AF_PPP ideal-int +pkg syscall (darwin-amd64-cgo), const AF_PUP ideal-int +pkg syscall (darwin-amd64-cgo), const AF_RESERVED_36 ideal-int +pkg syscall (darwin-amd64-cgo), const AF_ROUTE ideal-int +pkg syscall (darwin-amd64-cgo), const AF_SIP ideal-int +pkg syscall (darwin-amd64-cgo), const AF_SNA ideal-int +pkg syscall (darwin-amd64-cgo), const AF_SYSTEM ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGBLEN ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGDLT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGDLTLIST ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGETIF ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGHDRCMPLT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGRSIG ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGRTIMEOUT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGSEESENT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCGSTATS ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCIMMEDIATE ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCPROMISC ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSBLEN ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSDLT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSETF ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSETIF ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSHDRCMPLT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSRSIG ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSRTIMEOUT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCSSEESENT ideal-int +pkg syscall (darwin-amd64-cgo), const BIOCVERSION ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_A ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_ABS ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_ALIGNMENT ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_ALU ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_AND ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_B ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_DIV ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_H ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_IMM ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_IND ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JA ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JEQ ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JGE ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JGT ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JMP ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_JSET ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_K ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_LD ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_LDX ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_LEN ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_LSH ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MAXBUFSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MEM ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MINBUFSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MISC ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MSH ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_MUL ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_NEG ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_OR ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_RELEASE ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_RET ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_RSH ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_ST ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_STX ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_SUB ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_TAX ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_TXA ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_W ideal-int +pkg syscall (darwin-amd64-cgo), const BPF_X ideal-int +pkg syscall (darwin-amd64-cgo), const CTL_MAXNAME ideal-int +pkg syscall (darwin-amd64-cgo), const CTL_NET ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_ARCNET ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_ATM_CLIP ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_ATM_RFC1483 ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_AX25 ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_CHAOS ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_CHDLC ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_C_HDLC ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_EN10MB ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_EN3MB ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_FDDI ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802 ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11 ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_LINUX_SLL ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_LOOP ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_NULL ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PFLOG ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PFSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PPP ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PPP_BSDOS ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PPP_SERIAL ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_PRONET ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_RAW ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_SLIP ideal-int +pkg syscall (darwin-amd64-cgo), const DLT_SLIP_BSDOS ideal-int +pkg syscall (darwin-amd64-cgo), const DT_BLK ideal-int +pkg syscall (darwin-amd64-cgo), const DT_CHR ideal-int +pkg syscall (darwin-amd64-cgo), const DT_DIR ideal-int +pkg syscall (darwin-amd64-cgo), const DT_FIFO ideal-int +pkg syscall (darwin-amd64-cgo), const DT_LNK ideal-int +pkg syscall (darwin-amd64-cgo), const DT_REG ideal-int +pkg syscall (darwin-amd64-cgo), const DT_SOCK ideal-int +pkg syscall (darwin-amd64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (darwin-amd64-cgo), const DT_WHT ideal-int +pkg syscall (darwin-amd64-cgo), const EAUTH Errno +pkg syscall (darwin-amd64-cgo), const EBADARCH Errno +pkg syscall (darwin-amd64-cgo), const EBADEXEC Errno +pkg syscall (darwin-amd64-cgo), const EBADMACHO Errno +pkg syscall (darwin-amd64-cgo), const EBADMSG Errno +pkg syscall (darwin-amd64-cgo), const EBADRPC Errno +pkg syscall (darwin-amd64-cgo), const ECHO ideal-int +pkg syscall (darwin-amd64-cgo), const ECHOCTL ideal-int +pkg syscall (darwin-amd64-cgo), const ECHOE ideal-int +pkg syscall (darwin-amd64-cgo), const ECHOK ideal-int +pkg syscall (darwin-amd64-cgo), const ECHOKE ideal-int +pkg syscall (darwin-amd64-cgo), const ECHONL ideal-int +pkg syscall (darwin-amd64-cgo), const ECHOPRT ideal-int +pkg syscall (darwin-amd64-cgo), const EDEVERR Errno +pkg syscall (darwin-amd64-cgo), const EFTYPE Errno +pkg syscall (darwin-amd64-cgo), const ELAST Errno +pkg syscall (darwin-amd64-cgo), const EMULTIHOP Errno +pkg syscall (darwin-amd64-cgo), const ENEEDAUTH Errno +pkg syscall (darwin-amd64-cgo), const ENOATTR Errno +pkg syscall (darwin-amd64-cgo), const ENODATA Errno +pkg syscall (darwin-amd64-cgo), const ENOLINK Errno +pkg syscall (darwin-amd64-cgo), const ENOPOLICY Errno +pkg syscall (darwin-amd64-cgo), const ENOSR Errno +pkg syscall (darwin-amd64-cgo), const ENOSTR Errno +pkg syscall (darwin-amd64-cgo), const ENOTRECOVERABLE Errno +pkg syscall (darwin-amd64-cgo), const EOWNERDEAD Errno +pkg syscall (darwin-amd64-cgo), const EPROCLIM Errno +pkg syscall (darwin-amd64-cgo), const EPROCUNAVAIL Errno +pkg syscall (darwin-amd64-cgo), const EPROGMISMATCH Errno +pkg syscall (darwin-amd64-cgo), const EPROGUNAVAIL Errno +pkg syscall (darwin-amd64-cgo), const EPROTO Errno +pkg syscall (darwin-amd64-cgo), const EPWROFF Errno +pkg syscall (darwin-amd64-cgo), const ERPCMISMATCH Errno +pkg syscall (darwin-amd64-cgo), const ESHLIBVERS Errno +pkg syscall (darwin-amd64-cgo), const ETIME Errno +pkg syscall (darwin-amd64-cgo), const EVFILT_AIO ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_FS ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_MACHPORT ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_PROC ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_READ ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_SIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_SYSCOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_THREADMARKER ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_TIMER ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_USER ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_VM ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_VNODE ideal-int +pkg syscall (darwin-amd64-cgo), const EVFILT_WRITE ideal-int +pkg syscall (darwin-amd64-cgo), const EV_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const EV_CLEAR ideal-int +pkg syscall (darwin-amd64-cgo), const EV_DELETE ideal-int +pkg syscall (darwin-amd64-cgo), const EV_DISABLE ideal-int +pkg syscall (darwin-amd64-cgo), const EV_DISPATCH ideal-int +pkg syscall (darwin-amd64-cgo), const EV_ENABLE ideal-int +pkg syscall (darwin-amd64-cgo), const EV_EOF ideal-int +pkg syscall (darwin-amd64-cgo), const EV_ERROR ideal-int +pkg syscall (darwin-amd64-cgo), const EV_FLAG0 ideal-int +pkg syscall (darwin-amd64-cgo), const EV_FLAG1 ideal-int +pkg syscall (darwin-amd64-cgo), const EV_ONESHOT ideal-int +pkg syscall (darwin-amd64-cgo), const EV_OOBAND ideal-int +pkg syscall (darwin-amd64-cgo), const EV_POLL ideal-int +pkg syscall (darwin-amd64-cgo), const EV_RECEIPT ideal-int +pkg syscall (darwin-amd64-cgo), const EV_SYSFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const EXTA ideal-int +pkg syscall (darwin-amd64-cgo), const EXTB ideal-int +pkg syscall (darwin-amd64-cgo), const EXTPROC ideal-int +pkg syscall (darwin-amd64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (darwin-amd64-cgo), const FD_SETSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const F_ADDFILESIGS ideal-int +pkg syscall (darwin-amd64-cgo), const F_ADDSIGS ideal-int +pkg syscall (darwin-amd64-cgo), const F_ALLOCATEALL ideal-int +pkg syscall (darwin-amd64-cgo), const F_ALLOCATECONTIG ideal-int +pkg syscall (darwin-amd64-cgo), const F_CHKCLEAN ideal-int +pkg syscall (darwin-amd64-cgo), const F_DUPFD ideal-int +pkg syscall (darwin-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (darwin-amd64-cgo), const F_FLUSH_DATA ideal-int +pkg syscall (darwin-amd64-cgo), const F_FREEZE_FS ideal-int +pkg syscall (darwin-amd64-cgo), const F_FULLFSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETFD ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETFL ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETLK ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETLKPID ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETNOSIGPIPE ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETOWN ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETPATH ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETPATH_MTMINFO ideal-int +pkg syscall (darwin-amd64-cgo), const F_GETPROTECTIONCLASS ideal-int +pkg syscall (darwin-amd64-cgo), const F_GLOBAL_NOCACHE ideal-int +pkg syscall (darwin-amd64-cgo), const F_LOG2PHYS ideal-int +pkg syscall (darwin-amd64-cgo), const F_LOG2PHYS_EXT ideal-int +pkg syscall (darwin-amd64-cgo), const F_MARKDEPENDENCY ideal-int +pkg syscall (darwin-amd64-cgo), const F_NOCACHE ideal-int +pkg syscall (darwin-amd64-cgo), const F_NODIRECT ideal-int +pkg syscall (darwin-amd64-cgo), const F_OK ideal-int +pkg syscall (darwin-amd64-cgo), const F_PATHPKG_CHECK ideal-int +pkg syscall (darwin-amd64-cgo), const F_PEOFPOSMODE ideal-int +pkg syscall (darwin-amd64-cgo), const F_PREALLOCATE ideal-int +pkg syscall (darwin-amd64-cgo), const F_RDADVISE ideal-int +pkg syscall (darwin-amd64-cgo), const F_RDAHEAD ideal-int +pkg syscall (darwin-amd64-cgo), const F_RDLCK ideal-int +pkg syscall (darwin-amd64-cgo), const F_READBOOTSTRAP ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETBACKINGSTORE ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETFD ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETFL ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETLK ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETLKW ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETNOSIGPIPE ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETOWN ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETPROTECTIONCLASS ideal-int +pkg syscall (darwin-amd64-cgo), const F_SETSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const F_THAW_FS ideal-int +pkg syscall (darwin-amd64-cgo), const F_UNLCK ideal-int +pkg syscall (darwin-amd64-cgo), const F_VOLPOSMODE ideal-int +pkg syscall (darwin-amd64-cgo), const F_WRITEBOOTSTRAP ideal-int +pkg syscall (darwin-amd64-cgo), const F_WRLCK ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_ALTPHYS ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_DEBUG ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_LINK0 ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_LINK1 ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_LINK2 ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_NOARP ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_OACTIVE ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_PROMISC ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_RUNNING ideal-int +pkg syscall (darwin-amd64-cgo), const IFF_SIMPLEX ideal-int +pkg syscall (darwin-amd64-cgo), const IFNAMSIZ ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_1822 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_AAL5 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ARCNET ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ARCNETPLUS ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ATM ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_BRIDGE ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_CARP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_CELLULAR ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_CEPT ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_DS3 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ENC ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_EON ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ETHER ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_FAITH ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_FDDI ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_FRELAY ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_FRELAYDCE ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_GIF ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_HDH1822 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_HIPPI ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_HSSI ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_HY ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_IEEE1394 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISDNBASIC ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISDNPRIMARY ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISO88022LLC ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISO88023 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISO88024 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISO88025 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ISO88026 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_L2VLAN ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_LAPB ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_LOCALTALK ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_LOOP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_MIOX25 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_MODEM ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_NSIP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_OTHER ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_P10 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_P80 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PARA ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PDP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PFLOG ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PFSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PPP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PROPMUX ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PROPVIRTUAL ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_PTPSERIAL ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_RS232 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SDLC ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SIP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SLIP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SMDSDXI ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SMDSICIP ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SONET ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SONETPATH ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_SONETVT ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_STARLAN ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_STF ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_T1 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_ULTRA ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_V35 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_X25 ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_X25DDN ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_X25PLE ideal-int +pkg syscall (darwin-amd64-cgo), const IFT_XETHER ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_HOST ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_NET ideal-int +pkg syscall (darwin-amd64-cgo), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (darwin-amd64-cgo), const IN_LINKLOCALNETNUM ideal-int +pkg syscall (darwin-amd64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_3PC ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ADFS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_AH ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_AHIP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_APES ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ARGUS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_AX25 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_BHA ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_BLT ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_BRSATMON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_CFTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_CHAOS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_CMTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_CPHB ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_CPNX ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_DDP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_DGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_DIVERT ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_DONE ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_EMCON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_EON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ETHERIP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_GGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_GMTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_HELLO ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_HMP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDPR ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IDRP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IGRP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IL ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_INLSP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_INP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPCOMP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPCV ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPEIP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPPC ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IPV4 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_IRTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_LARP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_LEAF1 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_LEAF2 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MAXID ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MEAS ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MHRP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MICP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_MUX ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ND ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_NHRP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_NSP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_NVPII ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_OSPFIGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PGM ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PIGP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PRM ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_PVP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_RCCMON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_RDP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_RVD ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SATEXPAK ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SATMON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SCCSP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SDRP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SEP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SRPC ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_ST ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SVMTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_SWIPE ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TCF ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TPXX ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TRUNK1 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TRUNK2 ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_TTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_VINES ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_VISA ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_VMTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_WBEXPAK ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_WBMON ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_WSN ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_XNET ideal-int +pkg syscall (darwin-amd64-cgo), const IPPROTO_XTP ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292NEXTHOP ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_BINDV6ONLY ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_BOUND_IF ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_DEFHLIM ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FAITH ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FRAGTTL ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FW_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FW_DEL ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FW_FLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FW_GET ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_FW_ZERO ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_HLIMDEC ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAXHLIM ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAXOPTHDR ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAXPACKET ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_MMTU ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_VERSION ideal-int +pkg syscall (darwin-amd64-cgo), const IPV6_VERSION_MASK ideal-int +pkg syscall (darwin-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-amd64-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (darwin-amd64-cgo), const IP_BOUND_IF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_DEL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const IP_DUMMYNET_GET ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FAITH ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_DEL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_FLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_GET ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_RESETLOG ideal-int +pkg syscall (darwin-amd64-cgo), const IP_FW_ZERO ideal-int +pkg syscall (darwin-amd64-cgo), const IP_HDRINCL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MSFILTER ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MSS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_IFINDEX ideal-int +pkg syscall (darwin-amd64-cgo), const IP_MULTICAST_VIF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_NAT__XXX ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OFFMASK ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_DEL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_FLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_GET ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_RESETLOG ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OLD_FW_ZERO ideal-int +pkg syscall (darwin-amd64-cgo), const IP_OPTIONS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_PKTINFO ideal-int +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE ideal-int +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (darwin-amd64-cgo), const IP_PORTRANGE_LOW ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVDSTADDR ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVIF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVPKTINFO ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RECVTTL ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RETOPTS ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RSVP_OFF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RSVP_ON ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (darwin-amd64-cgo), const IP_RSVP_VIF_ON ideal-int +pkg syscall (darwin-amd64-cgo), const IP_STRIPHDR ideal-int +pkg syscall (darwin-amd64-cgo), const IP_TRAFFIC_MGT_BACKGROUND ideal-int +pkg syscall (darwin-amd64-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (darwin-amd64-cgo), const LOCK_EX ideal-int +pkg syscall (darwin-amd64-cgo), const LOCK_NB ideal-int +pkg syscall (darwin-amd64-cgo), const LOCK_SH ideal-int +pkg syscall (darwin-amd64-cgo), const LOCK_UN ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_CAN_REUSE ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_FREE ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_FREE_REUSABLE ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_FREE_REUSE ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_NORMAL ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_RANDOM ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (darwin-amd64-cgo), const MADV_ZERO_WIRED_PAGES ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_ANON ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_COPY ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_FILE ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_FIXED ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_HASSEMAPHORE ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_JIT ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_NOCACHE ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_NOEXTEND ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_RENAME ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_RESERVED0080 ideal-int +pkg syscall (darwin-amd64-cgo), const MAP_SHARED ideal-int +pkg syscall (darwin-amd64-cgo), const MCL_CURRENT ideal-int +pkg syscall (darwin-amd64-cgo), const MCL_FUTURE ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_EOF ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_EOR ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_FLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_HAVEMORE ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_HOLD ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_NEEDSA ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_OOB ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_PEEK ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_RCVMORE ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_SEND ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_TRUNC ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_WAITALL ideal-int +pkg syscall (darwin-amd64-cgo), const MSG_WAITSTREAM ideal-int +pkg syscall (darwin-amd64-cgo), const MS_ASYNC ideal-int +pkg syscall (darwin-amd64-cgo), const MS_DEACTIVATE ideal-int +pkg syscall (darwin-amd64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (darwin-amd64-cgo), const MS_KILLPAGES ideal-int +pkg syscall (darwin-amd64-cgo), const MS_SYNC ideal-int +pkg syscall (darwin-amd64-cgo), const NAME_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_DUMP ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_DUMP2 ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_FLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_IFLIST ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_IFLIST2 ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_MAXID ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_STAT ideal-int +pkg syscall (darwin-amd64-cgo), const NET_RT_TRASH ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_ABSOLUTE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_ATTRIB ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_CHILD ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_DELETE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_EXEC ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_EXIT ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_EXITSTATUS ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_EXTEND ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFAND ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFCOPY ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFCTRLMASK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFLAGSMASK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFNOP ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FFOR ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_FORK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_LINK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_LOWAT ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_NONE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_NSECONDS ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_PCTRLMASK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_PDATAMASK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_REAP ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_RENAME ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_RESOURCEEND ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_REVOKE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_SECONDS ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_SIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_TRACK ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_TRACKERR ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_TRIGGER ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_USECONDS ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_VM_ERROR ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_VM_PRESSURE_TERMINATE ideal-int +pkg syscall (darwin-amd64-cgo), const NOTE_WRITE ideal-int +pkg syscall (darwin-amd64-cgo), const O_ACCMODE ideal-int +pkg syscall (darwin-amd64-cgo), const O_ALERT ideal-int +pkg syscall (darwin-amd64-cgo), const O_DIRECTORY ideal-int +pkg syscall (darwin-amd64-cgo), const O_DSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const O_EVTONLY ideal-int +pkg syscall (darwin-amd64-cgo), const O_EXLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const O_FSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const O_NDELAY ideal-int +pkg syscall (darwin-amd64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (darwin-amd64-cgo), const O_POPUP ideal-int +pkg syscall (darwin-amd64-cgo), const O_SHLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const O_SYMLINK ideal-int +pkg syscall (darwin-amd64-cgo), const PROT_EXEC ideal-int +pkg syscall (darwin-amd64-cgo), const PROT_NONE ideal-int +pkg syscall (darwin-amd64-cgo), const PROT_READ ideal-int +pkg syscall (darwin-amd64-cgo), const PROT_WRITE ideal-int +pkg syscall (darwin-amd64-cgo), const PTRACE_CONT ideal-int +pkg syscall (darwin-amd64-cgo), const PTRACE_KILL ideal-int +pkg syscall (darwin-amd64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (darwin-amd64-cgo), const PT_ATTACH ideal-int +pkg syscall (darwin-amd64-cgo), const PT_ATTACHEXC ideal-int +pkg syscall (darwin-amd64-cgo), const PT_CONTINUE ideal-int +pkg syscall (darwin-amd64-cgo), const PT_DENY_ATTACH ideal-int +pkg syscall (darwin-amd64-cgo), const PT_DETACH ideal-int +pkg syscall (darwin-amd64-cgo), const PT_FIRSTMACH ideal-int +pkg syscall (darwin-amd64-cgo), const PT_FORCEQUOTA ideal-int +pkg syscall (darwin-amd64-cgo), const PT_KILL ideal-int +pkg syscall (darwin-amd64-cgo), const PT_READ_D ideal-int +pkg syscall (darwin-amd64-cgo), const PT_READ_I ideal-int +pkg syscall (darwin-amd64-cgo), const PT_READ_U ideal-int +pkg syscall (darwin-amd64-cgo), const PT_SIGEXC ideal-int +pkg syscall (darwin-amd64-cgo), const PT_STEP ideal-int +pkg syscall (darwin-amd64-cgo), const PT_THUPDATE ideal-int +pkg syscall (darwin-amd64-cgo), const PT_TRACE_ME ideal-int +pkg syscall (darwin-amd64-cgo), const PT_WRITE_D ideal-int +pkg syscall (darwin-amd64-cgo), const PT_WRITE_I ideal-int +pkg syscall (darwin-amd64-cgo), const PT_WRITE_U ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_AS ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (darwin-amd64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (darwin-amd64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_AUTHOR ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_BRD ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_DST ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_GATEWAY ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_GENMASK ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_IFA ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_IFP ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_MAX ideal-int +pkg syscall (darwin-amd64-cgo), const RTAX_NETMASK ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_AUTHOR ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_BRD ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_DST ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_GENMASK ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_IFA ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_IFP ideal-int +pkg syscall (darwin-amd64-cgo), const RTA_NETMASK ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_BLACKHOLE ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_BROADCAST ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_CLONING ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_CONDEMNED ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_DELCLONE ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_DONE ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_HOST ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_IFREF ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_IFSCOPE ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_LLINFO ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_LOCAL ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_MULTICAST ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_PINNED ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_PRCLONING ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_PROTO1 ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_PROTO2 ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_PROTO3 ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_REJECT ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_STATIC ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_UP ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_WASCLONED ideal-int +pkg syscall (darwin-amd64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_ADD ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_CHANGE ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_DELADDR ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_DELETE ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_DELMADDR ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_GET ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_GET2 ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_IFINFO ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_IFINFO2 ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_LOCK ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_LOSING ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_MISS ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_NEWMADDR ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_NEWMADDR2 ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_OLDADD ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_OLDDEL ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_REDIRECT ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_RESOLVE ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_RTTUNIT ideal-int +pkg syscall (darwin-amd64-cgo), const RTM_VERSION ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_EXPIRE ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_HOPCOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_MTU ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_RPIPE ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_RTT ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_RTTVAR ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_SPIPE ideal-int +pkg syscall (darwin-amd64-cgo), const RTV_SSTHRESH ideal-int +pkg syscall (darwin-amd64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (darwin-amd64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (darwin-amd64-cgo), const SCM_CREDS ideal-int +pkg syscall (darwin-amd64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (darwin-amd64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (darwin-amd64-cgo), const SCM_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-amd64-cgo), const SIGCHLD Signal +pkg syscall (darwin-amd64-cgo), const SIGCONT Signal +pkg syscall (darwin-amd64-cgo), const SIGEMT Signal +pkg syscall (darwin-amd64-cgo), const SIGINFO Signal +pkg syscall (darwin-amd64-cgo), const SIGIO Signal +pkg syscall (darwin-amd64-cgo), const SIGIOT Signal +pkg syscall (darwin-amd64-cgo), const SIGPROF Signal +pkg syscall (darwin-amd64-cgo), const SIGSTOP Signal +pkg syscall (darwin-amd64-cgo), const SIGSYS Signal +pkg syscall (darwin-amd64-cgo), const SIGTSTP Signal +pkg syscall (darwin-amd64-cgo), const SIGTTIN Signal +pkg syscall (darwin-amd64-cgo), const SIGTTOU Signal +pkg syscall (darwin-amd64-cgo), const SIGURG Signal +pkg syscall (darwin-amd64-cgo), const SIGUSR1 Signal +pkg syscall (darwin-amd64-cgo), const SIGUSR2 Signal +pkg syscall (darwin-amd64-cgo), const SIGVTALRM Signal +pkg syscall (darwin-amd64-cgo), const SIGWINCH Signal +pkg syscall (darwin-amd64-cgo), const SIGXCPU Signal +pkg syscall (darwin-amd64-cgo), const SIGXFSZ Signal +pkg syscall (darwin-amd64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCAIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCALIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCARPIPLL ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCATMARK ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCAUTOADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCAUTONETMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCDIFPHYADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCDLIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGDRVSPEC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGETSGCNT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGETVIFCNT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGETVLAN ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGHIWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFALTMTU ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFASYNCMAP ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFBOND ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFCAP ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFDEVMTU ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFGENERIC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFKPI ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFMAC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFMEDIA ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFPDSTADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFPHYS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFPSRCADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFSTATUS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFVLAN ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGIFWAKEFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGLIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGLIFPHYADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGLOWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCGPGRP ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCIFCREATE ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCIFCREATE2 ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCIFDESTROY ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCRSLVMULTI ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSDRVSPEC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSETVLAN ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSHIWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFALTMTU ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFASYNCMAP ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFBOND ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFCAP ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFGENERIC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFKPI ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFLLADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFMAC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFMEDIA ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFPHYADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFPHYS ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSIFVLAN ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSLIFPHYADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSLOWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SIOCSPGRP ideal-int +pkg syscall (darwin-amd64-cgo), const SOCK_MAXADDRLEN ideal-int +pkg syscall (darwin-amd64-cgo), const SOCK_RDM ideal-int +pkg syscall (darwin-amd64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (darwin-amd64-cgo), const SO_DEBUG ideal-int +pkg syscall (darwin-amd64-cgo), const SO_DONTTRUNC ideal-int +pkg syscall (darwin-amd64-cgo), const SO_ERROR ideal-int +pkg syscall (darwin-amd64-cgo), const SO_LABEL ideal-int +pkg syscall (darwin-amd64-cgo), const SO_LINGER_SEC ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NKE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NOADDRERR ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NOSIGPIPE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NOTIFYCONFLICT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NP_EXTENSIONS ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NREAD ideal-int +pkg syscall (darwin-amd64-cgo), const SO_NWRITE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_PEERLABEL ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RANDOMPORT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RESTRICTIONS ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYIN ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYOUT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_RESTRICT_DENYSET ideal-int +pkg syscall (darwin-amd64-cgo), const SO_REUSEPORT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_REUSESHAREUID ideal-int +pkg syscall (darwin-amd64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (darwin-amd64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (darwin-amd64-cgo), const SO_TIMESTAMP_MONOTONIC ideal-int +pkg syscall (darwin-amd64-cgo), const SO_TYPE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_UPCALLCLOSEWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SO_USELOOPBACK ideal-int +pkg syscall (darwin-amd64-cgo), const SO_WANTMORE ideal-int +pkg syscall (darwin-amd64-cgo), const SO_WANTOOBFLAG ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ACCEPT_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ACCESS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ACCESS_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ACCT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ADD_PROFIL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ADJTIME ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_CANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_ERROR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_FSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_READ ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_RETURN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_SUSPEND ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_SUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AIO_WRITE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATGETMSG ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATPGETREQ ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATPGETRSP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATPSNDREQ ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATPSNDRSP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATPUTMSG ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ATSOCKET ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDITCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDITON ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_JOIN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_PORT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_AUDIT_SESSION_SELF ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_BIND ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_CREATE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_REGISTER ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_BSDTHREAD_TERMINATE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHMOD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHMOD_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHOWN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHROOT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CHUD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CLOSE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CLOSE_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CONNECT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CONNECT_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_COPYFILE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_CSOPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_DELETE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_DUP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_DUP2 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_EXCHANGEDATA ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_EXECVE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_EXIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCHFLAGS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCHMOD_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCNTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FCNTL_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FFSCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FGETATTRLIST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FHOPEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FILEPORT_MAKEFD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FILEPORT_MAKEPORT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FORK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FPATHCONF ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSETATTRLIST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSGETPATH ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTATFS64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTATV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSTAT_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FSYNC_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_FUTIMES ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETATTRLIST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETAUDIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETAUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIES ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIES64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETDIRENTRIESATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETDTABLESIZE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETEGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETEUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETFH ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETFSSTAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETFSSTAT64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETHOSTUUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETLCID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETLOGIN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPPID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETSGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETSID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETTID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETWGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_GETXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_IDENTITYSVC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_INITGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_IOCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_IOPOLICYSYS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_ISSETUGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_KDEBUG_TRACE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_KEVENT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_KEVENT64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_KILL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_KQUEUE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LIO_LISTIO ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LISTEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSEEK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSTATV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_LSTAT_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MADVISE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MAXSYSCALL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MINCORE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MINHERIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKCOMPLEX ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKDIR_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKFIFO ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKFIFO_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MKNOD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MMAP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MODWATCH ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGGET ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGRCV_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGSND ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGSND_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSGSYS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSYNC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MSYNC_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_NFSCLNT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_NFSSVC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_OPEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_OPEN_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_OPEN_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PATHCONF ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PID_HIBERNATE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PID_RESUME ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PID_SHUTDOWN_SOCKETS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PID_SUSPEND ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PIPE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_POLL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_POLL_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_POSIX_SPAWN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PREAD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PREAD_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PROCESS_POLICY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PROC_INFO ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PROFIL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVBROAD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVCLRPREPOST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVSIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_CVWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_MUTEXDROP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_MUTEXWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_DOWNGRADE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_RDLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UNLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UNLOCK2 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_UPGRADE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_WRLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PTRACE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PWRITE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_PWRITE_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_READ ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_READLINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_READV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_READV_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_READ_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_REBOOT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RECVFROM_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RECVMSG_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RENAME ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_REVOKE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_RMDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEARCHFS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SELECT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SELECT_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEMCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEMGET ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEMOP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEMSYS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_CLOSE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_DESTROY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_GETVALUE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_INIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_OPEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_POST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_TRYWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_UNLINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_WAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SEM_WAIT_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SENDFILE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SENDMSG_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SENDTO ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SENDTO_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETATTRLIST ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETAUDIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETAUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETEGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETEUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETLCID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETLOGIN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETPGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETPRIVEXEC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETREGID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETREUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETSGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETSID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETTID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETTID_WITH_PID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETUID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETWGROUPS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SETXATTR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHARED_REGION_CHECK_NP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHMAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHMDT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHMGET ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHMSYS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHM_OPEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHM_UNLINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGACTION ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SIGSUSPEND_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SOCKET ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STACK_SNAPSHOT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STAT64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STAT64_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STATFS ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STATFS64 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STATV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_STAT_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SWAPON ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SYNC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_SYSCALL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_THREAD_SELFID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UMASK_EXTENDED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UNDELETE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UNLINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UNMOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_UTIMES ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_VFORK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_VM_PRESSURE_MONITOR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WAIT4_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WAITEVENT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WAITID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WAITID_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WATCHEVENT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WORKQ_KERNRETURN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WORKQ_OPEN ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WRITE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WRITEV ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WRITEV_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS_WRITE_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___DISABLE_THREADSIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_EXECVE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GETFSSTAT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_FD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_FILE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LCID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LCTX ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_LINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_MOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_PID ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_GET_PROC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_MOUNT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_FD ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_FILE ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_LCTX ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_LINK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SET_PROC ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___MAC_SYSCALL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___OLD_SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_CANCELED ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_CHDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_FCHDIR ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_KILL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_MARKCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___PTHREAD_SIGMASK ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___SEMWAIT_SIGNAL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___SIGWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___SIGWAIT_NOCANCEL ideal-int +pkg syscall (darwin-amd64-cgo), const SYS___SYSCTL ideal-int +pkg syscall (darwin-amd64-cgo), const S_IEXEC ideal-int +pkg syscall (darwin-amd64-cgo), const S_IFWHT ideal-int +pkg syscall (darwin-amd64-cgo), const S_IREAD ideal-int +pkg syscall (darwin-amd64-cgo), const S_IRGRP ideal-int +pkg syscall (darwin-amd64-cgo), const S_IROTH ideal-int +pkg syscall (darwin-amd64-cgo), const S_IRWXG ideal-int +pkg syscall (darwin-amd64-cgo), const S_IRWXO ideal-int +pkg syscall (darwin-amd64-cgo), const S_IRWXU ideal-int +pkg syscall (darwin-amd64-cgo), const S_ISTXT ideal-int +pkg syscall (darwin-amd64-cgo), const S_IWGRP ideal-int +pkg syscall (darwin-amd64-cgo), const S_IWOTH ideal-int +pkg syscall (darwin-amd64-cgo), const S_IWRITE ideal-int +pkg syscall (darwin-amd64-cgo), const S_IXGRP ideal-int +pkg syscall (darwin-amd64-cgo), const S_IXOTH ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofBpfHdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofBpfInsn ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofBpfProgram ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofBpfStat ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofBpfVersion ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIPMreq ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIfData ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIfMsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIfaMsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIfmaMsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofIfmaMsghdr2 ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofLinger ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofMsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofRtMetrics ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofRtMsghdr ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrDatalink ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (darwin-amd64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_CONNECTIONTIMEOUT ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_KEEPALIVE ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAXHLEN ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAXOLEN ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAX_SACK ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MINMSS ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MINMSSOVERLOAD ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_MSS ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_NOOPT ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_NOPUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_RXT_CONNDROPTIME ideal-int +pkg syscall (darwin-amd64-cgo), const TCP_RXT_FINDROP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCCBRK ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCCDTR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCCONS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCDCDTIMESTAMP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCDRAIN ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCDSIMICROCODE ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCEXCL ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCEXT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCFLUSH ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCGDRAINWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCGETA ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCGETD ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCGPGRP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCIXOFF ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCIXON ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMBIC ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMBIS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMGDTRWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMGET ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMODG ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMODS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMSDTRWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCMSET ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_CAR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_CD ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_CTS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_DSR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_DTR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_LE ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_RI ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_RNG ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_RTS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_SR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCM_ST ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCNOTTY ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCNXCL ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCOUTQ ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_START ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPTYGNAME ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPTYGRANT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCPTYUNLK ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCREMOTE ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSBRK ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSCONS ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSCTTY ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSDRAINWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSDTR ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSETA ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSETAF ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSETAW ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSETD ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSIG ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSPGRP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSTART ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSTAT ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSTI ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSTOP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCTIMESTAMP ideal-int +pkg syscall (darwin-amd64-cgo), const TIOCUCNTL ideal-int +pkg syscall (darwin-amd64-cgo), const WCONTINUED ideal-int +pkg syscall (darwin-amd64-cgo), const WCOREFLAG ideal-int +pkg syscall (darwin-amd64-cgo), const WEXITED ideal-int +pkg syscall (darwin-amd64-cgo), const WNOHANG ideal-int +pkg syscall (darwin-amd64-cgo), const WNOWAIT ideal-int +pkg syscall (darwin-amd64-cgo), const WORDSIZE ideal-int +pkg syscall (darwin-amd64-cgo), const WSTOPPED ideal-int +pkg syscall (darwin-amd64-cgo), const WUNTRACED ideal-int +pkg syscall (darwin-amd64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func Access(string, uint32) error +pkg syscall (darwin-amd64-cgo), func Adjtime(*Timeval, *Timeval) error +pkg syscall (darwin-amd64-cgo), func Bind(int, Sockaddr) error +pkg syscall (darwin-amd64-cgo), func BpfBuflen(int) (int, error) +pkg syscall (darwin-amd64-cgo), func BpfDatalink(int) (int, error) +pkg syscall (darwin-amd64-cgo), func BpfHeadercmpl(int) (int, error) +pkg syscall (darwin-amd64-cgo), func BpfInterface(int, string) (string, error) +pkg syscall (darwin-amd64-cgo), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (darwin-amd64-cgo), func BpfStats(int) (*BpfStat, error) +pkg syscall (darwin-amd64-cgo), func BpfStmt(int, int) *BpfInsn +pkg syscall (darwin-amd64-cgo), func BpfTimeout(int) (*Timeval, error) +pkg syscall (darwin-amd64-cgo), func CheckBpfVersion(int) error +pkg syscall (darwin-amd64-cgo), func Chflags(string, int) error +pkg syscall (darwin-amd64-cgo), func Chroot(string) error +pkg syscall (darwin-amd64-cgo), func Close(int) error +pkg syscall (darwin-amd64-cgo), func CloseOnExec(int) +pkg syscall (darwin-amd64-cgo), func CmsgLen(int) int +pkg syscall (darwin-amd64-cgo), func CmsgSpace(int) int +pkg syscall (darwin-amd64-cgo), func Connect(int, Sockaddr) error +pkg syscall (darwin-amd64-cgo), func Dup(int) (int, error) +pkg syscall (darwin-amd64-cgo), func Dup2(int, int) error +pkg syscall (darwin-amd64-cgo), func Exchangedata(string, string, int) error +pkg syscall (darwin-amd64-cgo), func Fchdir(int) error +pkg syscall (darwin-amd64-cgo), func Fchflags(string, int) error +pkg syscall (darwin-amd64-cgo), func Fchmod(int, uint32) error +pkg syscall (darwin-amd64-cgo), func Fchown(int, int, int) error +pkg syscall (darwin-amd64-cgo), func Flock(int, int) error +pkg syscall (darwin-amd64-cgo), func FlushBpf(int) error +pkg syscall (darwin-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (darwin-amd64-cgo), func Fpathconf(int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (darwin-amd64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (darwin-amd64-cgo), func Fsync(int) error +pkg syscall (darwin-amd64-cgo), func Ftruncate(int, int64) error +pkg syscall (darwin-amd64-cgo), func Futimes(int, []Timeval) error +pkg syscall (darwin-amd64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (darwin-amd64-cgo), func Getdtablesize() int +pkg syscall (darwin-amd64-cgo), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func Getpgid(int) (int, error) +pkg syscall (darwin-amd64-cgo), func Getpgrp() int +pkg syscall (darwin-amd64-cgo), func Getpriority(int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (darwin-amd64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (darwin-amd64-cgo), func Getsid(int) (int, error) +pkg syscall (darwin-amd64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (darwin-amd64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Issetugid() bool +pkg syscall (darwin-amd64-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (darwin-amd64-cgo), func Kill(int, Signal) error +pkg syscall (darwin-amd64-cgo), func Kqueue() (int, error) +pkg syscall (darwin-amd64-cgo), func Listen(int, int) error +pkg syscall (darwin-amd64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (darwin-amd64-cgo), func Mkfifo(string, uint32) error +pkg syscall (darwin-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (darwin-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (darwin-amd64-cgo), func Munmap([]uint8) error +pkg syscall (darwin-amd64-cgo), func NsecToTimespec(int64) Timespec +pkg syscall (darwin-amd64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (darwin-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (darwin-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (darwin-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (darwin-amd64-cgo), func Pathconf(string, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Pipe([]int) error +pkg syscall (darwin-amd64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (darwin-amd64-cgo), func PtraceAttach(int) error +pkg syscall (darwin-amd64-cgo), func PtraceDetach(int) error +pkg syscall (darwin-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (darwin-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (darwin-amd64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (darwin-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (darwin-amd64-cgo), func Revoke(string) error +pkg syscall (darwin-amd64-cgo), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (darwin-amd64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (darwin-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (darwin-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (darwin-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (darwin-amd64-cgo), func SetBpf(int, []BpfInsn) error +pkg syscall (darwin-amd64-cgo), func SetBpfBuflen(int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func SetBpfDatalink(int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl(int, int) error +pkg syscall (darwin-amd64-cgo), func SetBpfImmediate(int, int) error +pkg syscall (darwin-amd64-cgo), func SetBpfInterface(int, string) error +pkg syscall (darwin-amd64-cgo), func SetBpfPromisc(int, int) error +pkg syscall (darwin-amd64-cgo), func SetBpfTimeout(int, *Timeval) error +pkg syscall (darwin-amd64-cgo), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (darwin-amd64-cgo), func SetNonblock(int, bool) error +pkg syscall (darwin-amd64-cgo), func Setegid(int) error +pkg syscall (darwin-amd64-cgo), func Seteuid(int) error +pkg syscall (darwin-amd64-cgo), func Setgid(int) error +pkg syscall (darwin-amd64-cgo), func Setgroups([]int) error +pkg syscall (darwin-amd64-cgo), func Setlogin(string) error +pkg syscall (darwin-amd64-cgo), func Setpgid(int, int) error +pkg syscall (darwin-amd64-cgo), func Setpriority(int, int, int) error +pkg syscall (darwin-amd64-cgo), func Setprivexec(int) error +pkg syscall (darwin-amd64-cgo), func Setregid(int, int) error +pkg syscall (darwin-amd64-cgo), func Setreuid(int, int) error +pkg syscall (darwin-amd64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (darwin-amd64-cgo), func Setsid() (int, error) +pkg syscall (darwin-amd64-cgo), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (darwin-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (darwin-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (darwin-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (darwin-amd64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (darwin-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (darwin-amd64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (darwin-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (darwin-amd64-cgo), func Settimeofday(*Timeval) error +pkg syscall (darwin-amd64-cgo), func Setuid(int) error +pkg syscall (darwin-amd64-cgo), func Shutdown(int, int) error +pkg syscall (darwin-amd64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (darwin-amd64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (darwin-amd64-cgo), func Stat(string, *Stat_t) error +pkg syscall (darwin-amd64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (darwin-amd64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (darwin-amd64-cgo), func Sync() error +pkg syscall (darwin-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (darwin-amd64-cgo), func Sysctl(string) (string, error) +pkg syscall (darwin-amd64-cgo), func SysctlUint32(string) (uint32, error) +pkg syscall (darwin-amd64-cgo), func TimespecToNsec(Timespec) int64 +pkg syscall (darwin-amd64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (darwin-amd64-cgo), func Truncate(string, int64) error +pkg syscall (darwin-amd64-cgo), func Umask(int) int +pkg syscall (darwin-amd64-cgo), func Undelete(string) error +pkg syscall (darwin-amd64-cgo), func UnixRights(...int) []uint8 +pkg syscall (darwin-amd64-cgo), func Unmount(string, int) error +pkg syscall (darwin-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (darwin-amd64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (darwin-amd64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (darwin-amd64-cgo), method (*Iovec) SetLen(int) +pkg syscall (darwin-amd64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (darwin-amd64-cgo), type BpfHdr struct +pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Caplen uint32 +pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Datalen uint32 +pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Hdrlen uint16 +pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type BpfHdr struct, Tstamp Timeval32 +pkg syscall (darwin-amd64-cgo), type BpfInsn struct +pkg syscall (darwin-amd64-cgo), type BpfInsn struct, Code uint16 +pkg syscall (darwin-amd64-cgo), type BpfInsn struct, Jf uint8 +pkg syscall (darwin-amd64-cgo), type BpfInsn struct, Jt uint8 +pkg syscall (darwin-amd64-cgo), type BpfInsn struct, K uint32 +pkg syscall (darwin-amd64-cgo), type BpfProgram struct +pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Insns *BpfInsn +pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Len uint32 +pkg syscall (darwin-amd64-cgo), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), type BpfStat struct +pkg syscall (darwin-amd64-cgo), type BpfStat struct, Drop uint32 +pkg syscall (darwin-amd64-cgo), type BpfStat struct, Recv uint32 +pkg syscall (darwin-amd64-cgo), type BpfVersion struct +pkg syscall (darwin-amd64-cgo), type BpfVersion struct, Major uint16 +pkg syscall (darwin-amd64-cgo), type BpfVersion struct, Minor uint16 +pkg syscall (darwin-amd64-cgo), type Cmsghdr struct +pkg syscall (darwin-amd64-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (darwin-amd64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (darwin-amd64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (darwin-amd64-cgo), type Credential struct +pkg syscall (darwin-amd64-cgo), type Credential struct, Gid uint32 +pkg syscall (darwin-amd64-cgo), type Credential struct, Groups []uint32 +pkg syscall (darwin-amd64-cgo), type Credential struct, Uid uint32 +pkg syscall (darwin-amd64-cgo), type Dirent struct +pkg syscall (darwin-amd64-cgo), type Dirent struct, Ino uint64 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Name [1024]int8 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Namlen uint16 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Pad_cgo_0 [3]uint8 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Seekoff uint64 +pkg syscall (darwin-amd64-cgo), type Dirent struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct +pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Buffer *uint8 +pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Length uint64 +pkg syscall (darwin-amd64-cgo), type Fbootstraptransfer_t struct, Offset int64 +pkg syscall (darwin-amd64-cgo), type FdSet struct +pkg syscall (darwin-amd64-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (darwin-amd64-cgo), type Flock_t struct +pkg syscall (darwin-amd64-cgo), type Flock_t struct, Len int64 +pkg syscall (darwin-amd64-cgo), type Flock_t struct, Pid int32 +pkg syscall (darwin-amd64-cgo), type Flock_t struct, Start int64 +pkg syscall (darwin-amd64-cgo), type Flock_t struct, Type int16 +pkg syscall (darwin-amd64-cgo), type Flock_t struct, Whence int16 +pkg syscall (darwin-amd64-cgo), type Fsid struct +pkg syscall (darwin-amd64-cgo), type Fsid struct, Val [2]int32 +pkg syscall (darwin-amd64-cgo), type Fstore_t struct +pkg syscall (darwin-amd64-cgo), type Fstore_t struct, Bytesalloc int64 +pkg syscall (darwin-amd64-cgo), type Fstore_t struct, Flags uint32 +pkg syscall (darwin-amd64-cgo), type Fstore_t struct, Length int64 +pkg syscall (darwin-amd64-cgo), type Fstore_t struct, Offset int64 +pkg syscall (darwin-amd64-cgo), type Fstore_t struct, Posmode int32 +pkg syscall (darwin-amd64-cgo), type IfData struct +pkg syscall (darwin-amd64-cgo), type IfData struct, Addrlen uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Baudrate uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Collisions uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Hdrlen uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Hwassist uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Ibytes uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Ierrors uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Imcasts uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Ipackets uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Iqdrops uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Lastchange Timeval32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Metric uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Mtu uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Noproto uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Obytes uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Oerrors uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Omcasts uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Opackets uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Physical uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Recvquota uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Recvtiming uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Reserved1 uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Reserved2 uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Typelen uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Unused1 uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Unused2 uint32 +pkg syscall (darwin-amd64-cgo), type IfData struct, Xmitquota uint8 +pkg syscall (darwin-amd64-cgo), type IfData struct, Xmittiming uint32 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Data IfData +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type IfMsghdr struct, Version uint8 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Metric int32 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type IfaMsghdr struct, Version uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr struct, Version uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Addrs int32 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Msglen uint16 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Refcount int32 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type IfmaMsghdr2 struct, Version uint8 +pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct +pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (darwin-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct +pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (darwin-amd64-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct +pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct, Data []uint8 +pkg syscall (darwin-amd64-cgo), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct +pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (darwin-amd64-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2 +pkg syscall (darwin-amd64-cgo), type Iovec struct +pkg syscall (darwin-amd64-cgo), type Iovec struct, Base *uint8 +pkg syscall (darwin-amd64-cgo), type Iovec struct, Len uint64 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Data int64 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Fflags uint32 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Filter int16 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Flags uint16 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Ident uint64 +pkg syscall (darwin-amd64-cgo), type Kevent_t struct, Udata *uint8 +pkg syscall (darwin-amd64-cgo), type Log2phys_t struct +pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Contigbytes int64 +pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Devoffset int64 +pkg syscall (darwin-amd64-cgo), type Log2phys_t struct, Flags uint32 +pkg syscall (darwin-amd64-cgo), type Msghdr struct +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Iovlen int32 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (darwin-amd64-cgo), type Radvisory_t struct +pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Count int32 +pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Offset int64 +pkg syscall (darwin-amd64-cgo), type Radvisory_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddr struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (darwin-amd64-cgo), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (darwin-amd64-cgo), type RawSockaddrUnix struct +pkg syscall (darwin-amd64-cgo), type RawSockaddrUnix struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrUnix struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (darwin-amd64-cgo), type Rlimit struct +pkg syscall (darwin-amd64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (darwin-amd64-cgo), type Rlimit struct, Max uint64 +pkg syscall (darwin-amd64-cgo), type RouteMessage struct +pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Data []uint8 +pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Header RtMsghdr +pkg syscall (darwin-amd64-cgo), type RoutingMessage interface, unexported methods +pkg syscall (darwin-amd64-cgo), type RtMetrics struct +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Expire int32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Filler [4]uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Hopcount uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Locks uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Mtu uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Pksent uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Recvpipe uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Rtt uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Rttvar uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Sendpipe uint32 +pkg syscall (darwin-amd64-cgo), type RtMetrics struct, Ssthresh uint32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Addrs int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Errno int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Flags int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Inits uint32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Msglen uint16 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Pid int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Seq int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Use int32 +pkg syscall (darwin-amd64-cgo), type RtMsghdr struct, Version uint8 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Idrss int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Inblock int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Isrss int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Majflt int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Minflt int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Nswap int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Oublock int64 +pkg syscall (darwin-amd64-cgo), type Rusage struct, Stime Timeval +pkg syscall (darwin-amd64-cgo), type Rusage struct, Utime Timeval +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Alen uint8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Data [12]int8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Family uint8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Index uint16 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Len uint8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Slen uint8 +pkg syscall (darwin-amd64-cgo), type SockaddrDatalink struct, Type uint8 +pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct +pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (darwin-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (darwin-amd64-cgo), type Stat_t struct +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Atimespec Timespec +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Birthtimespec Timespec +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Blksize int32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Ctimespec Timespec +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Dev int32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Flags uint32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Gen uint32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Lspare int32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Mode uint16 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Mtimespec Timespec +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Nlink uint16 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Qspare [2]int64 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Rdev int32 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Size int64 +pkg syscall (darwin-amd64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Bsize uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Files uint64 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Flags uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Fssubtype uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Iosize int32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Mntfromname [1024]int8 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Mntonname [1024]int8 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Owner uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Reserved [8]uint32 +pkg syscall (darwin-amd64-cgo), type Statfs_t struct, Type uint32 +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (darwin-amd64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (darwin-amd64-cgo), type Timespec struct, Nsec int64 +pkg syscall (darwin-amd64-cgo), type Timespec struct, Sec int64 +pkg syscall (darwin-amd64-cgo), type Timeval struct, Pad_cgo_0 [4]uint8 +pkg syscall (darwin-amd64-cgo), type Timeval struct, Sec int64 +pkg syscall (darwin-amd64-cgo), type Timeval struct, Usec int32 +pkg syscall (darwin-amd64-cgo), type Timeval32 struct +pkg syscall (darwin-amd64-cgo), type Timeval32 struct, Sec int32 +pkg syscall (darwin-amd64-cgo), type Timeval32 struct, Usec int32 +pkg syscall (darwin-amd64-cgo), type WaitStatus uint32 +pkg syscall (darwin-amd64-cgo), var Stderr int +pkg syscall (darwin-amd64-cgo), var Stdin int +pkg syscall (darwin-amd64-cgo), var Stdout int +pkg syscall (freebsd-386), const AF_APPLETALK ideal-int +pkg syscall (freebsd-386), const AF_ARP ideal-int +pkg syscall (freebsd-386), const AF_ATM ideal-int +pkg syscall (freebsd-386), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-386), const AF_CCITT ideal-int +pkg syscall (freebsd-386), const AF_CHAOS ideal-int +pkg syscall (freebsd-386), const AF_CNT ideal-int +pkg syscall (freebsd-386), const AF_COIP ideal-int +pkg syscall (freebsd-386), const AF_DATAKIT ideal-int +pkg syscall (freebsd-386), const AF_DECnet ideal-int +pkg syscall (freebsd-386), const AF_DLI ideal-int +pkg syscall (freebsd-386), const AF_E164 ideal-int +pkg syscall (freebsd-386), const AF_ECMA ideal-int +pkg syscall (freebsd-386), const AF_HYLINK ideal-int +pkg syscall (freebsd-386), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-386), const AF_IMPLINK ideal-int +pkg syscall (freebsd-386), const AF_IPX ideal-int +pkg syscall (freebsd-386), const AF_ISDN ideal-int +pkg syscall (freebsd-386), const AF_ISO ideal-int +pkg syscall (freebsd-386), const AF_LAT ideal-int +pkg syscall (freebsd-386), const AF_LINK ideal-int +pkg syscall (freebsd-386), const AF_LOCAL ideal-int +pkg syscall (freebsd-386), const AF_MAX ideal-int +pkg syscall (freebsd-386), const AF_NATM ideal-int +pkg syscall (freebsd-386), const AF_NETBIOS ideal-int +pkg syscall (freebsd-386), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-386), const AF_OSI ideal-int +pkg syscall (freebsd-386), const AF_PUP ideal-int +pkg syscall (freebsd-386), const AF_ROUTE ideal-int +pkg syscall (freebsd-386), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-386), const AF_SIP ideal-int +pkg syscall (freebsd-386), const AF_SLOW ideal-int +pkg syscall (freebsd-386), const AF_SNA ideal-int +pkg syscall (freebsd-386), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-386), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-386), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-386), const BIOCFLUSH ideal-int +pkg syscall (freebsd-386), const BIOCGBLEN ideal-int +pkg syscall (freebsd-386), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-386), const BIOCGDLT ideal-int +pkg syscall (freebsd-386), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-386), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-386), const BIOCGETIF ideal-int +pkg syscall (freebsd-386), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-386), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-386), const BIOCGRSIG ideal-int +pkg syscall (freebsd-386), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-386), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-386), const BIOCGSTATS ideal-int +pkg syscall (freebsd-386), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-386), const BIOCLOCK ideal-int +pkg syscall (freebsd-386), const BIOCPROMISC ideal-int +pkg syscall (freebsd-386), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-386), const BIOCSBLEN ideal-int +pkg syscall (freebsd-386), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-386), const BIOCSDLT ideal-int +pkg syscall (freebsd-386), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-386), const BIOCSETF ideal-int +pkg syscall (freebsd-386), const BIOCSETFNR ideal-int +pkg syscall (freebsd-386), const BIOCSETIF ideal-int +pkg syscall (freebsd-386), const BIOCSETWF ideal-int +pkg syscall (freebsd-386), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-386), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-386), const BIOCSRSIG ideal-int +pkg syscall (freebsd-386), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-386), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-386), const BIOCVERSION ideal-int +pkg syscall (freebsd-386), const BPF_A ideal-int +pkg syscall (freebsd-386), const BPF_ABS ideal-int +pkg syscall (freebsd-386), const BPF_ADD ideal-int +pkg syscall (freebsd-386), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-386), const BPF_ALU ideal-int +pkg syscall (freebsd-386), const BPF_AND ideal-int +pkg syscall (freebsd-386), const BPF_B ideal-int +pkg syscall (freebsd-386), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-386), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-386), const BPF_DIV ideal-int +pkg syscall (freebsd-386), const BPF_H ideal-int +pkg syscall (freebsd-386), const BPF_IMM ideal-int +pkg syscall (freebsd-386), const BPF_IND ideal-int +pkg syscall (freebsd-386), const BPF_JA ideal-int +pkg syscall (freebsd-386), const BPF_JEQ ideal-int +pkg syscall (freebsd-386), const BPF_JGE ideal-int +pkg syscall (freebsd-386), const BPF_JGT ideal-int +pkg syscall (freebsd-386), const BPF_JMP ideal-int +pkg syscall (freebsd-386), const BPF_JSET ideal-int +pkg syscall (freebsd-386), const BPF_K ideal-int +pkg syscall (freebsd-386), const BPF_LD ideal-int +pkg syscall (freebsd-386), const BPF_LDX ideal-int +pkg syscall (freebsd-386), const BPF_LEN ideal-int +pkg syscall (freebsd-386), const BPF_LSH ideal-int +pkg syscall (freebsd-386), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-386), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-386), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-386), const BPF_MEM ideal-int +pkg syscall (freebsd-386), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-386), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-386), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-386), const BPF_MISC ideal-int +pkg syscall (freebsd-386), const BPF_MSH ideal-int +pkg syscall (freebsd-386), const BPF_MUL ideal-int +pkg syscall (freebsd-386), const BPF_NEG ideal-int +pkg syscall (freebsd-386), const BPF_OR ideal-int +pkg syscall (freebsd-386), const BPF_RELEASE ideal-int +pkg syscall (freebsd-386), const BPF_RET ideal-int +pkg syscall (freebsd-386), const BPF_RSH ideal-int +pkg syscall (freebsd-386), const BPF_ST ideal-int +pkg syscall (freebsd-386), const BPF_STX ideal-int +pkg syscall (freebsd-386), const BPF_SUB ideal-int +pkg syscall (freebsd-386), const BPF_TAX ideal-int +pkg syscall (freebsd-386), const BPF_TXA ideal-int +pkg syscall (freebsd-386), const BPF_W ideal-int +pkg syscall (freebsd-386), const BPF_X ideal-int +pkg syscall (freebsd-386), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-386), const CTL_NET ideal-int +pkg syscall (freebsd-386), const DLT_A429 ideal-int +pkg syscall (freebsd-386), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-386), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-386), const DLT_ARCNET ideal-int +pkg syscall (freebsd-386), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-386), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-386), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-386), const DLT_AURORA ideal-int +pkg syscall (freebsd-386), const DLT_AX25 ideal-int +pkg syscall (freebsd-386), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-386), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-386), const DLT_CAN20B ideal-int +pkg syscall (freebsd-386), const DLT_CHAOS ideal-int +pkg syscall (freebsd-386), const DLT_CHDLC ideal-int +pkg syscall (freebsd-386), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-386), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-386), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-386), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-386), const DLT_ECONET ideal-int +pkg syscall (freebsd-386), const DLT_EN10MB ideal-int +pkg syscall (freebsd-386), const DLT_EN3MB ideal-int +pkg syscall (freebsd-386), const DLT_ENC ideal-int +pkg syscall (freebsd-386), const DLT_ERF ideal-int +pkg syscall (freebsd-386), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-386), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-386), const DLT_FDDI ideal-int +pkg syscall (freebsd-386), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-386), const DLT_FRELAY ideal-int +pkg syscall (freebsd-386), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-386), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-386), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-386), const DLT_GPF_F ideal-int +pkg syscall (freebsd-386), const DLT_GPF_T ideal-int +pkg syscall (freebsd-386), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-386), const DLT_HHDLC ideal-int +pkg syscall (freebsd-386), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-386), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-386), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-386), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-386), const DLT_IPMB ideal-int +pkg syscall (freebsd-386), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-386), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-386), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-386), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-386), const DLT_LAPD ideal-int +pkg syscall (freebsd-386), const DLT_LIN ideal-int +pkg syscall (freebsd-386), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-386), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-386), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-386), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-386), const DLT_LOOP ideal-int +pkg syscall (freebsd-386), const DLT_LTALK ideal-int +pkg syscall (freebsd-386), const DLT_MFR ideal-int +pkg syscall (freebsd-386), const DLT_MOST ideal-int +pkg syscall (freebsd-386), const DLT_MTP2 ideal-int +pkg syscall (freebsd-386), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-386), const DLT_MTP3 ideal-int +pkg syscall (freebsd-386), const DLT_NULL ideal-int +pkg syscall (freebsd-386), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-386), const DLT_PFLOG ideal-int +pkg syscall (freebsd-386), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-386), const DLT_PPI ideal-int +pkg syscall (freebsd-386), const DLT_PPP ideal-int +pkg syscall (freebsd-386), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-386), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-386), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-386), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-386), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-386), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-386), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-386), const DLT_PRONET ideal-int +pkg syscall (freebsd-386), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-386), const DLT_RAW ideal-int +pkg syscall (freebsd-386), const DLT_RIO ideal-int +pkg syscall (freebsd-386), const DLT_SCCP ideal-int +pkg syscall (freebsd-386), const DLT_SITA ideal-int +pkg syscall (freebsd-386), const DLT_SLIP ideal-int +pkg syscall (freebsd-386), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-386), const DLT_SUNATM ideal-int +pkg syscall (freebsd-386), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-386), const DLT_TZSP ideal-int +pkg syscall (freebsd-386), const DLT_USB ideal-int +pkg syscall (freebsd-386), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-386), const DLT_USER0 ideal-int +pkg syscall (freebsd-386), const DLT_USER1 ideal-int +pkg syscall (freebsd-386), const DLT_USER10 ideal-int +pkg syscall (freebsd-386), const DLT_USER11 ideal-int +pkg syscall (freebsd-386), const DLT_USER12 ideal-int +pkg syscall (freebsd-386), const DLT_USER13 ideal-int +pkg syscall (freebsd-386), const DLT_USER14 ideal-int +pkg syscall (freebsd-386), const DLT_USER15 ideal-int +pkg syscall (freebsd-386), const DLT_USER2 ideal-int +pkg syscall (freebsd-386), const DLT_USER3 ideal-int +pkg syscall (freebsd-386), const DLT_USER4 ideal-int +pkg syscall (freebsd-386), const DLT_USER5 ideal-int +pkg syscall (freebsd-386), const DLT_USER6 ideal-int +pkg syscall (freebsd-386), const DLT_USER7 ideal-int +pkg syscall (freebsd-386), const DLT_USER8 ideal-int +pkg syscall (freebsd-386), const DLT_USER9 ideal-int +pkg syscall (freebsd-386), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-386), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-386), const DT_BLK ideal-int +pkg syscall (freebsd-386), const DT_CHR ideal-int +pkg syscall (freebsd-386), const DT_DIR ideal-int +pkg syscall (freebsd-386), const DT_FIFO ideal-int +pkg syscall (freebsd-386), const DT_LNK ideal-int +pkg syscall (freebsd-386), const DT_REG ideal-int +pkg syscall (freebsd-386), const DT_SOCK ideal-int +pkg syscall (freebsd-386), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-386), const DT_WHT ideal-int +pkg syscall (freebsd-386), const EAUTH Errno +pkg syscall (freebsd-386), const EBADMSG Errno +pkg syscall (freebsd-386), const EBADRPC Errno +pkg syscall (freebsd-386), const ECHO ideal-int +pkg syscall (freebsd-386), const ECHOCTL ideal-int +pkg syscall (freebsd-386), const ECHOE ideal-int +pkg syscall (freebsd-386), const ECHOK ideal-int +pkg syscall (freebsd-386), const ECHOKE ideal-int +pkg syscall (freebsd-386), const ECHONL ideal-int +pkg syscall (freebsd-386), const ECHOPRT ideal-int +pkg syscall (freebsd-386), const EDOOFUS Errno +pkg syscall (freebsd-386), const EFTYPE Errno +pkg syscall (freebsd-386), const ELAST Errno +pkg syscall (freebsd-386), const EMULTIHOP Errno +pkg syscall (freebsd-386), const ENEEDAUTH Errno +pkg syscall (freebsd-386), const ENOATTR Errno +pkg syscall (freebsd-386), const ENOLINK Errno +pkg syscall (freebsd-386), const ENOTCAPABLE Errno +pkg syscall (freebsd-386), const EPROCLIM Errno +pkg syscall (freebsd-386), const EPROCUNAVAIL Errno +pkg syscall (freebsd-386), const EPROGMISMATCH Errno +pkg syscall (freebsd-386), const EPROGUNAVAIL Errno +pkg syscall (freebsd-386), const EPROTO Errno +pkg syscall (freebsd-386), const ERPCMISMATCH Errno +pkg syscall (freebsd-386), const EVFILT_AIO ideal-int +pkg syscall (freebsd-386), const EVFILT_FS ideal-int +pkg syscall (freebsd-386), const EVFILT_LIO ideal-int +pkg syscall (freebsd-386), const EVFILT_PROC ideal-int +pkg syscall (freebsd-386), const EVFILT_READ ideal-int +pkg syscall (freebsd-386), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-386), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-386), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-386), const EVFILT_USER ideal-int +pkg syscall (freebsd-386), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-386), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-386), const EV_ADD ideal-int +pkg syscall (freebsd-386), const EV_CLEAR ideal-int +pkg syscall (freebsd-386), const EV_DELETE ideal-int +pkg syscall (freebsd-386), const EV_DISABLE ideal-int +pkg syscall (freebsd-386), const EV_DISPATCH ideal-int +pkg syscall (freebsd-386), const EV_ENABLE ideal-int +pkg syscall (freebsd-386), const EV_EOF ideal-int +pkg syscall (freebsd-386), const EV_ERROR ideal-int +pkg syscall (freebsd-386), const EV_FLAG1 ideal-int +pkg syscall (freebsd-386), const EV_ONESHOT ideal-int +pkg syscall (freebsd-386), const EV_RECEIPT ideal-int +pkg syscall (freebsd-386), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-386), const EXTA ideal-int +pkg syscall (freebsd-386), const EXTB ideal-int +pkg syscall (freebsd-386), const EXTPROC ideal-int +pkg syscall (freebsd-386), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-386), const FD_SETSIZE ideal-int +pkg syscall (freebsd-386), const F_CANCEL ideal-int +pkg syscall (freebsd-386), const F_DUP2FD ideal-int +pkg syscall (freebsd-386), const F_DUPFD ideal-int +pkg syscall (freebsd-386), const F_GETFD ideal-int +pkg syscall (freebsd-386), const F_GETFL ideal-int +pkg syscall (freebsd-386), const F_GETLK ideal-int +pkg syscall (freebsd-386), const F_GETOWN ideal-int +pkg syscall (freebsd-386), const F_OGETLK ideal-int +pkg syscall (freebsd-386), const F_OK ideal-int +pkg syscall (freebsd-386), const F_OSETLK ideal-int +pkg syscall (freebsd-386), const F_OSETLKW ideal-int +pkg syscall (freebsd-386), const F_RDAHEAD ideal-int +pkg syscall (freebsd-386), const F_RDLCK ideal-int +pkg syscall (freebsd-386), const F_READAHEAD ideal-int +pkg syscall (freebsd-386), const F_SETFD ideal-int +pkg syscall (freebsd-386), const F_SETFL ideal-int +pkg syscall (freebsd-386), const F_SETLK ideal-int +pkg syscall (freebsd-386), const F_SETLKW ideal-int +pkg syscall (freebsd-386), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-386), const F_SETOWN ideal-int +pkg syscall (freebsd-386), const F_UNLCK ideal-int +pkg syscall (freebsd-386), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-386), const F_WRLCK ideal-int +pkg syscall (freebsd-386), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-386), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-386), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-386), const IFF_DEBUG ideal-int +pkg syscall (freebsd-386), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-386), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-386), const IFF_DYING ideal-int +pkg syscall (freebsd-386), const IFF_LINK0 ideal-int +pkg syscall (freebsd-386), const IFF_LINK1 ideal-int +pkg syscall (freebsd-386), const IFF_LINK2 ideal-int +pkg syscall (freebsd-386), const IFF_MONITOR ideal-int +pkg syscall (freebsd-386), const IFF_NOARP ideal-int +pkg syscall (freebsd-386), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-386), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-386), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-386), const IFF_PROMISC ideal-int +pkg syscall (freebsd-386), const IFF_RENAMING ideal-int +pkg syscall (freebsd-386), const IFF_RUNNING ideal-int +pkg syscall (freebsd-386), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-386), const IFF_SMART ideal-int +pkg syscall (freebsd-386), const IFF_STATICARP ideal-int +pkg syscall (freebsd-386), const IFNAMSIZ ideal-int +pkg syscall (freebsd-386), const IFT_1822 ideal-int +pkg syscall (freebsd-386), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-386), const IFT_AAL2 ideal-int +pkg syscall (freebsd-386), const IFT_AAL5 ideal-int +pkg syscall (freebsd-386), const IFT_ADSL ideal-int +pkg syscall (freebsd-386), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-386), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-386), const IFT_ARAP ideal-int +pkg syscall (freebsd-386), const IFT_ARCNET ideal-int +pkg syscall (freebsd-386), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-386), const IFT_ASYNC ideal-int +pkg syscall (freebsd-386), const IFT_ATM ideal-int +pkg syscall (freebsd-386), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-386), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-386), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-386), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-386), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-386), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-386), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-386), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-386), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-386), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-386), const IFT_BSC ideal-int +pkg syscall (freebsd-386), const IFT_CARP ideal-int +pkg syscall (freebsd-386), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-386), const IFT_CEPT ideal-int +pkg syscall (freebsd-386), const IFT_CES ideal-int +pkg syscall (freebsd-386), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-386), const IFT_CNR ideal-int +pkg syscall (freebsd-386), const IFT_COFFEE ideal-int +pkg syscall (freebsd-386), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-386), const IFT_DCN ideal-int +pkg syscall (freebsd-386), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-386), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-386), const IFT_DLSW ideal-int +pkg syscall (freebsd-386), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-386), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_DS0 ideal-int +pkg syscall (freebsd-386), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-386), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-386), const IFT_DS3 ideal-int +pkg syscall (freebsd-386), const IFT_DTM ideal-int +pkg syscall (freebsd-386), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-386), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-386), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-386), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_ENC ideal-int +pkg syscall (freebsd-386), const IFT_EON ideal-int +pkg syscall (freebsd-386), const IFT_EPLRS ideal-int +pkg syscall (freebsd-386), const IFT_ESCON ideal-int +pkg syscall (freebsd-386), const IFT_ETHER ideal-int +pkg syscall (freebsd-386), const IFT_FAITH ideal-int +pkg syscall (freebsd-386), const IFT_FAST ideal-int +pkg syscall (freebsd-386), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-386), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-386), const IFT_FDDI ideal-int +pkg syscall (freebsd-386), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-386), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-386), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-386), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-386), const IFT_FRELAY ideal-int +pkg syscall (freebsd-386), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-386), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-386), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-386), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-386), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-386), const IFT_GIF ideal-int +pkg syscall (freebsd-386), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-386), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-386), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-386), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-386), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-386), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-386), const IFT_HDLC ideal-int +pkg syscall (freebsd-386), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-386), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-386), const IFT_HIPPI ideal-int +pkg syscall (freebsd-386), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-386), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-386), const IFT_HSSI ideal-int +pkg syscall (freebsd-386), const IFT_HY ideal-int +pkg syscall (freebsd-386), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-386), const IFT_IDSL ideal-int +pkg syscall (freebsd-386), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-386), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-386), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-386), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-386), const IFT_IFGSN ideal-int +pkg syscall (freebsd-386), const IFT_IMT ideal-int +pkg syscall (freebsd-386), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-386), const IFT_IP ideal-int +pkg syscall (freebsd-386), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-386), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-386), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-386), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-386), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-386), const IFT_IPXIP ideal-int +pkg syscall (freebsd-386), const IFT_ISDN ideal-int +pkg syscall (freebsd-386), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-386), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-386), const IFT_ISDNS ideal-int +pkg syscall (freebsd-386), const IFT_ISDNU ideal-int +pkg syscall (freebsd-386), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-386), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-386), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-386), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-386), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-386), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-386), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-386), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-386), const IFT_ISUP ideal-int +pkg syscall (freebsd-386), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-386), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-386), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-386), const IFT_LAPB ideal-int +pkg syscall (freebsd-386), const IFT_LAPD ideal-int +pkg syscall (freebsd-386), const IFT_LAPF ideal-int +pkg syscall (freebsd-386), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-386), const IFT_LOOP ideal-int +pkg syscall (freebsd-386), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-386), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-386), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-386), const IFT_MODEM ideal-int +pkg syscall (freebsd-386), const IFT_MPC ideal-int +pkg syscall (freebsd-386), const IFT_MPLS ideal-int +pkg syscall (freebsd-386), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-386), const IFT_MSDSL ideal-int +pkg syscall (freebsd-386), const IFT_MVL ideal-int +pkg syscall (freebsd-386), const IFT_MYRINET ideal-int +pkg syscall (freebsd-386), const IFT_NFAS ideal-int +pkg syscall (freebsd-386), const IFT_NSIP ideal-int +pkg syscall (freebsd-386), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-386), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-386), const IFT_OTHER ideal-int +pkg syscall (freebsd-386), const IFT_P10 ideal-int +pkg syscall (freebsd-386), const IFT_P80 ideal-int +pkg syscall (freebsd-386), const IFT_PARA ideal-int +pkg syscall (freebsd-386), const IFT_PFLOG ideal-int +pkg syscall (freebsd-386), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-386), const IFT_PLC ideal-int +pkg syscall (freebsd-386), const IFT_POS ideal-int +pkg syscall (freebsd-386), const IFT_PPP ideal-int +pkg syscall (freebsd-386), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-386), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-386), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-386), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-386), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-386), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-386), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-386), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-386), const IFT_PVC ideal-int +pkg syscall (freebsd-386), const IFT_QLLC ideal-int +pkg syscall (freebsd-386), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-386), const IFT_RADSL ideal-int +pkg syscall (freebsd-386), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-386), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-386), const IFT_RS232 ideal-int +pkg syscall (freebsd-386), const IFT_RSRB ideal-int +pkg syscall (freebsd-386), const IFT_SDLC ideal-int +pkg syscall (freebsd-386), const IFT_SDSL ideal-int +pkg syscall (freebsd-386), const IFT_SHDSL ideal-int +pkg syscall (freebsd-386), const IFT_SIP ideal-int +pkg syscall (freebsd-386), const IFT_SLIP ideal-int +pkg syscall (freebsd-386), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-386), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-386), const IFT_SONET ideal-int +pkg syscall (freebsd-386), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-386), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-386), const IFT_SONETVT ideal-int +pkg syscall (freebsd-386), const IFT_SRP ideal-int +pkg syscall (freebsd-386), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-386), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-386), const IFT_STARLAN ideal-int +pkg syscall (freebsd-386), const IFT_STF ideal-int +pkg syscall (freebsd-386), const IFT_T1 ideal-int +pkg syscall (freebsd-386), const IFT_TDLC ideal-int +pkg syscall (freebsd-386), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-386), const IFT_TR008 ideal-int +pkg syscall (freebsd-386), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-386), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-386), const IFT_ULTRA ideal-int +pkg syscall (freebsd-386), const IFT_USB ideal-int +pkg syscall (freebsd-386), const IFT_V11 ideal-int +pkg syscall (freebsd-386), const IFT_V35 ideal-int +pkg syscall (freebsd-386), const IFT_V36 ideal-int +pkg syscall (freebsd-386), const IFT_V37 ideal-int +pkg syscall (freebsd-386), const IFT_VDSL ideal-int +pkg syscall (freebsd-386), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-386), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-386), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-386), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-386), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-386), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-386), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-386), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-386), const IFT_X213 ideal-int +pkg syscall (freebsd-386), const IFT_X25 ideal-int +pkg syscall (freebsd-386), const IFT_X25DDN ideal-int +pkg syscall (freebsd-386), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-386), const IFT_X25MLP ideal-int +pkg syscall (freebsd-386), const IFT_X25PLE ideal-int +pkg syscall (freebsd-386), const IFT_XETHER ideal-int +pkg syscall (freebsd-386), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-386), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-386), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-386), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-386), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-386), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-386), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-386), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-386), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-386), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-386), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-386), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-386), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-386), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-386), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-386), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-386), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-386), const IPPROTO_AH ideal-int +pkg syscall (freebsd-386), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-386), const IPPROTO_APES ideal-int +pkg syscall (freebsd-386), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-386), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-386), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-386), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-386), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-386), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-386), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-386), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-386), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-386), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-386), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-386), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-386), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-386), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-386), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-386), const IPPROTO_EON ideal-int +pkg syscall (freebsd-386), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-386), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-386), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-386), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-386), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-386), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-386), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-386), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-386), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-386), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-386), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IL ideal-int +pkg syscall (freebsd-386), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-386), const IPPROTO_INP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-386), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-386), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-386), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-386), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-386), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-386), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-386), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-386), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-386), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-386), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-386), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-386), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-386), const IPPROTO_ND ideal-int +pkg syscall (freebsd-386), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-386), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-386), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-386), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-386), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-386), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-386), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-386), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-386), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-386), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-386), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-386), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-386), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-386), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-386), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-386), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-386), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-386), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-386), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-386), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-386), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-386), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-386), const IPPROTO_ST ideal-int +pkg syscall (freebsd-386), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-386), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-386), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-386), const IPPROTO_TP ideal-int +pkg syscall (freebsd-386), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-386), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-386), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-386), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-386), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-386), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-386), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-386), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-386), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-386), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-386), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-386), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-386), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-386), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-386), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-386), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-386), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-386), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-386), const IPV6_FAITH ideal-int +pkg syscall (freebsd-386), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-386), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-386), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-386), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-386), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-386), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-386), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-386), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-386), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-386), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-386), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-386), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-386), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-386), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-386), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-386), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-386), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-386), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386), const IPV6_MMTU ideal-int +pkg syscall (freebsd-386), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-386), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-386), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-386), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-386), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-386), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-386), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-386), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-386), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-386), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-386), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-386), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-386), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-386), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-386), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-386), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-386), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-386), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-386), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-386), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-386), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-386), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-386), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-386), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-386), const IPV6_VERSION ideal-int +pkg syscall (freebsd-386), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-386), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-386), const IP_BINDANY ideal-int +pkg syscall (freebsd-386), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-386), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-386), const IP_DF ideal-int +pkg syscall (freebsd-386), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-386), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-386), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-386), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-386), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-386), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-386), const IP_FAITH ideal-int +pkg syscall (freebsd-386), const IP_FW3 ideal-int +pkg syscall (freebsd-386), const IP_FW_ADD ideal-int +pkg syscall (freebsd-386), const IP_FW_DEL ideal-int +pkg syscall (freebsd-386), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-386), const IP_FW_GET ideal-int +pkg syscall (freebsd-386), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-386), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-386), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-386), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-386), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-386), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-386), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-386), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-386), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-386), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-386), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-386), const IP_HDRINCL ideal-int +pkg syscall (freebsd-386), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-386), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-386), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-386), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-386), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-386), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-386), const IP_MF ideal-int +pkg syscall (freebsd-386), const IP_MINTTL ideal-int +pkg syscall (freebsd-386), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-386), const IP_MSFILTER ideal-int +pkg syscall (freebsd-386), const IP_MSS ideal-int +pkg syscall (freebsd-386), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-386), const IP_OFFMASK ideal-int +pkg syscall (freebsd-386), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-386), const IP_OPTIONS ideal-int +pkg syscall (freebsd-386), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-386), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-386), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-386), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-386), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-386), const IP_RECVIF ideal-int +pkg syscall (freebsd-386), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-386), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-386), const IP_RECVTTL ideal-int +pkg syscall (freebsd-386), const IP_RETOPTS ideal-int +pkg syscall (freebsd-386), const IP_RF ideal-int +pkg syscall (freebsd-386), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-386), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-386), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-386), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-386), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-386), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-386), const LOCK_EX ideal-int +pkg syscall (freebsd-386), const LOCK_NB ideal-int +pkg syscall (freebsd-386), const LOCK_SH ideal-int +pkg syscall (freebsd-386), const LOCK_UN ideal-int +pkg syscall (freebsd-386), const MSG_COMPAT ideal-int +pkg syscall (freebsd-386), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-386), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-386), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-386), const MSG_EOF ideal-int +pkg syscall (freebsd-386), const MSG_EOR ideal-int +pkg syscall (freebsd-386), const MSG_NBIO ideal-int +pkg syscall (freebsd-386), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-386), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-386), const MSG_OOB ideal-int +pkg syscall (freebsd-386), const MSG_PEEK ideal-int +pkg syscall (freebsd-386), const MSG_TRUNC ideal-int +pkg syscall (freebsd-386), const MSG_WAITALL ideal-int +pkg syscall (freebsd-386), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-386), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-386), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-386), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-386), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-386), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-386), const NOTE_CHILD ideal-int +pkg syscall (freebsd-386), const NOTE_DELETE ideal-int +pkg syscall (freebsd-386), const NOTE_EXEC ideal-int +pkg syscall (freebsd-386), const NOTE_EXIT ideal-int +pkg syscall (freebsd-386), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-386), const NOTE_FFAND ideal-int +pkg syscall (freebsd-386), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-386), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-386), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-386), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-386), const NOTE_FFOR ideal-int +pkg syscall (freebsd-386), const NOTE_FORK ideal-int +pkg syscall (freebsd-386), const NOTE_LINK ideal-int +pkg syscall (freebsd-386), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-386), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-386), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-386), const NOTE_RENAME ideal-int +pkg syscall (freebsd-386), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-386), const NOTE_TRACK ideal-int +pkg syscall (freebsd-386), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-386), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-386), const NOTE_WRITE ideal-int +pkg syscall (freebsd-386), const O_ACCMODE ideal-int +pkg syscall (freebsd-386), const O_DIRECT ideal-int +pkg syscall (freebsd-386), const O_DIRECTORY ideal-int +pkg syscall (freebsd-386), const O_EXEC ideal-int +pkg syscall (freebsd-386), const O_EXLOCK ideal-int +pkg syscall (freebsd-386), const O_FSYNC ideal-int +pkg syscall (freebsd-386), const O_NDELAY ideal-int +pkg syscall (freebsd-386), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-386), const O_SHLOCK ideal-int +pkg syscall (freebsd-386), const O_TTY_INIT ideal-int +pkg syscall (freebsd-386), const PTRACE_CONT ideal-int +pkg syscall (freebsd-386), const PTRACE_KILL ideal-int +pkg syscall (freebsd-386), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-386), const RLIMIT_AS ideal-int +pkg syscall (freebsd-386), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-386), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-386), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-386), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-386), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-386), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-386), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-386), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-386), const RTAX_BRD ideal-int +pkg syscall (freebsd-386), const RTAX_DST ideal-int +pkg syscall (freebsd-386), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-386), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-386), const RTAX_IFA ideal-int +pkg syscall (freebsd-386), const RTAX_IFP ideal-int +pkg syscall (freebsd-386), const RTAX_MAX ideal-int +pkg syscall (freebsd-386), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-386), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-386), const RTA_BRD ideal-int +pkg syscall (freebsd-386), const RTA_DST ideal-int +pkg syscall (freebsd-386), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-386), const RTA_GENMASK ideal-int +pkg syscall (freebsd-386), const RTA_IFA ideal-int +pkg syscall (freebsd-386), const RTA_IFP ideal-int +pkg syscall (freebsd-386), const RTA_NETMASK ideal-int +pkg syscall (freebsd-386), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-386), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-386), const RTF_DONE ideal-int +pkg syscall (freebsd-386), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-386), const RTF_FMASK ideal-int +pkg syscall (freebsd-386), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-386), const RTF_HOST ideal-int +pkg syscall (freebsd-386), const RTF_LLDATA ideal-int +pkg syscall (freebsd-386), const RTF_LLINFO ideal-int +pkg syscall (freebsd-386), const RTF_LOCAL ideal-int +pkg syscall (freebsd-386), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-386), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-386), const RTF_PINNED ideal-int +pkg syscall (freebsd-386), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-386), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-386), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-386), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-386), const RTF_REJECT ideal-int +pkg syscall (freebsd-386), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-386), const RTF_STATIC ideal-int +pkg syscall (freebsd-386), const RTF_STICKY ideal-int +pkg syscall (freebsd-386), const RTF_UP ideal-int +pkg syscall (freebsd-386), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-386), const RTM_ADD ideal-int +pkg syscall (freebsd-386), const RTM_CHANGE ideal-int +pkg syscall (freebsd-386), const RTM_DELADDR ideal-int +pkg syscall (freebsd-386), const RTM_DELETE ideal-int +pkg syscall (freebsd-386), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-386), const RTM_GET ideal-int +pkg syscall (freebsd-386), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-386), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-386), const RTM_IFINFO ideal-int +pkg syscall (freebsd-386), const RTM_LOCK ideal-int +pkg syscall (freebsd-386), const RTM_LOSING ideal-int +pkg syscall (freebsd-386), const RTM_MISS ideal-int +pkg syscall (freebsd-386), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-386), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-386), const RTM_OLDADD ideal-int +pkg syscall (freebsd-386), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-386), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-386), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-386), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-386), const RTM_VERSION ideal-int +pkg syscall (freebsd-386), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-386), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-386), const RTV_MTU ideal-int +pkg syscall (freebsd-386), const RTV_RPIPE ideal-int +pkg syscall (freebsd-386), const RTV_RTT ideal-int +pkg syscall (freebsd-386), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-386), const RTV_SPIPE ideal-int +pkg syscall (freebsd-386), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-386), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-386), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-386), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-386), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-386), const SCM_BINTIME ideal-int +pkg syscall (freebsd-386), const SCM_CREDS ideal-int +pkg syscall (freebsd-386), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-386), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-386), const SIGCHLD Signal +pkg syscall (freebsd-386), const SIGCONT Signal +pkg syscall (freebsd-386), const SIGEMT Signal +pkg syscall (freebsd-386), const SIGINFO Signal +pkg syscall (freebsd-386), const SIGIO Signal +pkg syscall (freebsd-386), const SIGIOT Signal +pkg syscall (freebsd-386), const SIGLWP Signal +pkg syscall (freebsd-386), const SIGPROF Signal +pkg syscall (freebsd-386), const SIGSTOP Signal +pkg syscall (freebsd-386), const SIGSYS Signal +pkg syscall (freebsd-386), const SIGTHR Signal +pkg syscall (freebsd-386), const SIGTSTP Signal +pkg syscall (freebsd-386), const SIGTTIN Signal +pkg syscall (freebsd-386), const SIGTTOU Signal +pkg syscall (freebsd-386), const SIGURG Signal +pkg syscall (freebsd-386), const SIGUSR1 Signal +pkg syscall (freebsd-386), const SIGUSR2 Signal +pkg syscall (freebsd-386), const SIGVTALRM Signal +pkg syscall (freebsd-386), const SIGWINCH Signal +pkg syscall (freebsd-386), const SIGXCPU Signal +pkg syscall (freebsd-386), const SIGXFSZ Signal +pkg syscall (freebsd-386), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-386), const SIOCADDRT ideal-int +pkg syscall (freebsd-386), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-386), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCATMARK ideal-int +pkg syscall (freebsd-386), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-386), const SIOCDELRT ideal-int +pkg syscall (freebsd-386), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-386), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-386), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-386), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-386), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-386), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-386), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-386), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-386), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-386), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-386), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-386), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-386), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-386), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-386), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-386), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-386), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-386), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-386), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-386), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-386), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-386), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-386), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-386), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-386), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-386), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-386), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-386), const SIOCGPGRP ideal-int +pkg syscall (freebsd-386), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-386), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-386), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-386), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-386), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-386), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-386), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-386), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-386), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-386), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-386), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-386), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-386), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-386), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-386), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-386), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-386), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-386), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-386), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-386), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-386), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-386), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-386), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-386), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-386), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-386), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-386), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-386), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-386), const SIOCSPGRP ideal-int +pkg syscall (freebsd-386), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-386), const SOCK_RDM ideal-int +pkg syscall (freebsd-386), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-386), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-386), const SO_BINTIME ideal-int +pkg syscall (freebsd-386), const SO_DEBUG ideal-int +pkg syscall (freebsd-386), const SO_ERROR ideal-int +pkg syscall (freebsd-386), const SO_LABEL ideal-int +pkg syscall (freebsd-386), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-386), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-386), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-386), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-386), const SO_NO_DDP ideal-int +pkg syscall (freebsd-386), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-386), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-386), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-386), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-386), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-386), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-386), const SO_SETFIB ideal-int +pkg syscall (freebsd-386), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-386), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-386), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-386), const SO_TYPE ideal-int +pkg syscall (freebsd-386), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-386), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-386), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-386), const SYS_ACCESS ideal-int +pkg syscall (freebsd-386), const SYS_ACCT ideal-int +pkg syscall (freebsd-386), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-386), const SYS_AUDIT ideal-int +pkg syscall (freebsd-386), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-386), const SYS_AUDITON ideal-int +pkg syscall (freebsd-386), const SYS_BIND ideal-int +pkg syscall (freebsd-386), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-386), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-386), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-386), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-386), const SYS_CHDIR ideal-int +pkg syscall (freebsd-386), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-386), const SYS_CHMOD ideal-int +pkg syscall (freebsd-386), const SYS_CHOWN ideal-int +pkg syscall (freebsd-386), const SYS_CHROOT ideal-int +pkg syscall (freebsd-386), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-386), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-386), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-386), const SYS_CLOSE ideal-int +pkg syscall (freebsd-386), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-386), const SYS_CONNECT ideal-int +pkg syscall (freebsd-386), const SYS_CPUSET ideal-int +pkg syscall (freebsd-386), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-386), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-386), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-386), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-386), const SYS_DUP ideal-int +pkg syscall (freebsd-386), const SYS_DUP2 ideal-int +pkg syscall (freebsd-386), const SYS_EACCESS ideal-int +pkg syscall (freebsd-386), const SYS_EXECVE ideal-int +pkg syscall (freebsd-386), const SYS_EXIT ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-386), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-386), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-386), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-386), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-386), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-386), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-386), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-386), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-386), const SYS_FCNTL ideal-int +pkg syscall (freebsd-386), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-386), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-386), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-386), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-386), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-386), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-386), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-386), const SYS_FLOCK ideal-int +pkg syscall (freebsd-386), const SYS_FORK ideal-int +pkg syscall (freebsd-386), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-386), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-386), const SYS_FSTAT ideal-int +pkg syscall (freebsd-386), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-386), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-386), const SYS_FSYNC ideal-int +pkg syscall (freebsd-386), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-386), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-386), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-386), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-386), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-386), const SYS_GETAUID ideal-int +pkg syscall (freebsd-386), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-386), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-386), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-386), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-386), const SYS_GETEGID ideal-int +pkg syscall (freebsd-386), const SYS_GETEUID ideal-int +pkg syscall (freebsd-386), const SYS_GETFH ideal-int +pkg syscall (freebsd-386), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-386), const SYS_GETGID ideal-int +pkg syscall (freebsd-386), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-386), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-386), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-386), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-386), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-386), const SYS_GETPGID ideal-int +pkg syscall (freebsd-386), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-386), const SYS_GETPID ideal-int +pkg syscall (freebsd-386), const SYS_GETPPID ideal-int +pkg syscall (freebsd-386), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-386), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-386), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-386), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-386), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-386), const SYS_GETSID ideal-int +pkg syscall (freebsd-386), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-386), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-386), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-386), const SYS_GETUID ideal-int +pkg syscall (freebsd-386), const SYS_IOCTL ideal-int +pkg syscall (freebsd-386), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-386), const SYS_JAIL ideal-int +pkg syscall (freebsd-386), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-386), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-386), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-386), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-386), const SYS_KENV ideal-int +pkg syscall (freebsd-386), const SYS_KEVENT ideal-int +pkg syscall (freebsd-386), const SYS_KILL ideal-int +pkg syscall (freebsd-386), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-386), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-386), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-386), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-386), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-386), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-386), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-386), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-386), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-386), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-386), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-386), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-386), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-386), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-386), const SYS_KTRACE ideal-int +pkg syscall (freebsd-386), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-386), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-386), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-386), const SYS_LGETFH ideal-int +pkg syscall (freebsd-386), const SYS_LINK ideal-int +pkg syscall (freebsd-386), const SYS_LINKAT ideal-int +pkg syscall (freebsd-386), const SYS_LISTEN ideal-int +pkg syscall (freebsd-386), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-386), const SYS_LSEEK ideal-int +pkg syscall (freebsd-386), const SYS_LSTAT ideal-int +pkg syscall (freebsd-386), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-386), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-386), const SYS_MADVISE ideal-int +pkg syscall (freebsd-386), const SYS_MINCORE ideal-int +pkg syscall (freebsd-386), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-386), const SYS_MKDIR ideal-int +pkg syscall (freebsd-386), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-386), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-386), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-386), const SYS_MKNOD ideal-int +pkg syscall (freebsd-386), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-386), const SYS_MLOCK ideal-int +pkg syscall (freebsd-386), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-386), const SYS_MMAP ideal-int +pkg syscall (freebsd-386), const SYS_MODFIND ideal-int +pkg syscall (freebsd-386), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-386), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-386), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-386), const SYS_MOUNT ideal-int +pkg syscall (freebsd-386), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-386), const SYS_MSYNC ideal-int +pkg syscall (freebsd-386), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-386), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-386), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-386), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-386), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-386), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-386), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-386), const SYS_NSTAT ideal-int +pkg syscall (freebsd-386), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-386), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-386), const SYS_OBREAK ideal-int +pkg syscall (freebsd-386), const SYS_OPEN ideal-int +pkg syscall (freebsd-386), const SYS_OPENAT ideal-int +pkg syscall (freebsd-386), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-386), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-386), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-386), const SYS_PDFORK ideal-int +pkg syscall (freebsd-386), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-386), const SYS_PDKILL ideal-int +pkg syscall (freebsd-386), const SYS_PIPE ideal-int +pkg syscall (freebsd-386), const SYS_POLL ideal-int +pkg syscall (freebsd-386), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-386), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-386), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-386), const SYS_PREAD ideal-int +pkg syscall (freebsd-386), const SYS_PREADV ideal-int +pkg syscall (freebsd-386), const SYS_PROFIL ideal-int +pkg syscall (freebsd-386), const SYS_PSELECT ideal-int +pkg syscall (freebsd-386), const SYS_PTRACE ideal-int +pkg syscall (freebsd-386), const SYS_PWRITE ideal-int +pkg syscall (freebsd-386), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-386), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-386), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-386), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-386), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-386), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-386), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-386), const SYS_READ ideal-int +pkg syscall (freebsd-386), const SYS_READLINK ideal-int +pkg syscall (freebsd-386), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-386), const SYS_READV ideal-int +pkg syscall (freebsd-386), const SYS_REBOOT ideal-int +pkg syscall (freebsd-386), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-386), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-386), const SYS_RENAME ideal-int +pkg syscall (freebsd-386), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-386), const SYS_REVOKE ideal-int +pkg syscall (freebsd-386), const SYS_RFORK ideal-int +pkg syscall (freebsd-386), const SYS_RMDIR ideal-int +pkg syscall (freebsd-386), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-386), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-386), const SYS_SBRK ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-386), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-386), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-386), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-386), const SYS_SELECT ideal-int +pkg syscall (freebsd-386), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-386), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-386), const SYS_SENDTO ideal-int +pkg syscall (freebsd-386), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-386), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-386), const SYS_SETAUID ideal-int +pkg syscall (freebsd-386), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-386), const SYS_SETEGID ideal-int +pkg syscall (freebsd-386), const SYS_SETEUID ideal-int +pkg syscall (freebsd-386), const SYS_SETFIB ideal-int +pkg syscall (freebsd-386), const SYS_SETGID ideal-int +pkg syscall (freebsd-386), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-386), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-386), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-386), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-386), const SYS_SETPGID ideal-int +pkg syscall (freebsd-386), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-386), const SYS_SETREGID ideal-int +pkg syscall (freebsd-386), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-386), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-386), const SYS_SETREUID ideal-int +pkg syscall (freebsd-386), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-386), const SYS_SETSID ideal-int +pkg syscall (freebsd-386), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-386), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-386), const SYS_SETUID ideal-int +pkg syscall (freebsd-386), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-386), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-386), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-386), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-386), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-386), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-386), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-386), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-386), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-386), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-386), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-386), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-386), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-386), const SYS_SOCKET ideal-int +pkg syscall (freebsd-386), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-386), const SYS_SSTK ideal-int +pkg syscall (freebsd-386), const SYS_STAT ideal-int +pkg syscall (freebsd-386), const SYS_STATFS ideal-int +pkg syscall (freebsd-386), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-386), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-386), const SYS_SWAPON ideal-int +pkg syscall (freebsd-386), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-386), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-386), const SYS_SYNC ideal-int +pkg syscall (freebsd-386), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-386), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-386), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-386), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-386), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-386), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-386), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-386), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-386), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-386), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-386), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-386), const SYS_UMASK ideal-int +pkg syscall (freebsd-386), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-386), const SYS_UNLINK ideal-int +pkg syscall (freebsd-386), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-386), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-386), const SYS_UTIMES ideal-int +pkg syscall (freebsd-386), const SYS_UTRACE ideal-int +pkg syscall (freebsd-386), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-386), const SYS_VFORK ideal-int +pkg syscall (freebsd-386), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-386), const SYS_WRITE ideal-int +pkg syscall (freebsd-386), const SYS_WRITEV ideal-int +pkg syscall (freebsd-386), const SYS_YIELD ideal-int +pkg syscall (freebsd-386), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-386), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-386), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-386), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-386), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-386), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-386), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-386), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-386), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-386), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-386), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-386), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-386), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-386), const SYS___GETCWD ideal-int +pkg syscall (freebsd-386), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-386), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-386), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-386), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-386), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-386), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-386), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-386), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-386), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-386), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-386), const SYS___SETUGID ideal-int +pkg syscall (freebsd-386), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-386), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-386), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-386), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-386), const SizeofBpfStat ideal-int +pkg syscall (freebsd-386), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-386), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-386), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-386), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-386), const SizeofIPMreq ideal-int +pkg syscall (freebsd-386), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-386), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-386), const SizeofIfData ideal-int +pkg syscall (freebsd-386), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-386), const SizeofLinger ideal-int +pkg syscall (freebsd-386), const SizeofMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-386), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-386), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-386), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-386), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-386), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-386), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-386), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-386), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-386), const TCP_INFO ideal-int +pkg syscall (freebsd-386), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-386), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-386), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-386), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-386), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-386), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-386), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-386), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-386), const TCP_MINMSS ideal-int +pkg syscall (freebsd-386), const TCP_MSS ideal-int +pkg syscall (freebsd-386), const TCP_NOOPT ideal-int +pkg syscall (freebsd-386), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-386), const TIOCCBRK ideal-int +pkg syscall (freebsd-386), const TIOCCDTR ideal-int +pkg syscall (freebsd-386), const TIOCCONS ideal-int +pkg syscall (freebsd-386), const TIOCDRAIN ideal-int +pkg syscall (freebsd-386), const TIOCEXCL ideal-int +pkg syscall (freebsd-386), const TIOCEXT ideal-int +pkg syscall (freebsd-386), const TIOCFLUSH ideal-int +pkg syscall (freebsd-386), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-386), const TIOCGETA ideal-int +pkg syscall (freebsd-386), const TIOCGETD ideal-int +pkg syscall (freebsd-386), const TIOCGPGRP ideal-int +pkg syscall (freebsd-386), const TIOCGPTN ideal-int +pkg syscall (freebsd-386), const TIOCGSID ideal-int +pkg syscall (freebsd-386), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-386), const TIOCMBIC ideal-int +pkg syscall (freebsd-386), const TIOCMBIS ideal-int +pkg syscall (freebsd-386), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-386), const TIOCMGET ideal-int +pkg syscall (freebsd-386), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-386), const TIOCMSET ideal-int +pkg syscall (freebsd-386), const TIOCM_CAR ideal-int +pkg syscall (freebsd-386), const TIOCM_CD ideal-int +pkg syscall (freebsd-386), const TIOCM_CTS ideal-int +pkg syscall (freebsd-386), const TIOCM_DCD ideal-int +pkg syscall (freebsd-386), const TIOCM_DSR ideal-int +pkg syscall (freebsd-386), const TIOCM_DTR ideal-int +pkg syscall (freebsd-386), const TIOCM_LE ideal-int +pkg syscall (freebsd-386), const TIOCM_RI ideal-int +pkg syscall (freebsd-386), const TIOCM_RNG ideal-int +pkg syscall (freebsd-386), const TIOCM_RTS ideal-int +pkg syscall (freebsd-386), const TIOCM_SR ideal-int +pkg syscall (freebsd-386), const TIOCM_ST ideal-int +pkg syscall (freebsd-386), const TIOCNOTTY ideal-int +pkg syscall (freebsd-386), const TIOCNXCL ideal-int +pkg syscall (freebsd-386), const TIOCOUTQ ideal-int +pkg syscall (freebsd-386), const TIOCPKT ideal-int +pkg syscall (freebsd-386), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-386), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-386), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-386), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-386), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-386), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-386), const TIOCPKT_START ideal-int +pkg syscall (freebsd-386), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-386), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-386), const TIOCSBRK ideal-int +pkg syscall (freebsd-386), const TIOCSCTTY ideal-int +pkg syscall (freebsd-386), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-386), const TIOCSDTR ideal-int +pkg syscall (freebsd-386), const TIOCSETA ideal-int +pkg syscall (freebsd-386), const TIOCSETAF ideal-int +pkg syscall (freebsd-386), const TIOCSETAW ideal-int +pkg syscall (freebsd-386), const TIOCSETD ideal-int +pkg syscall (freebsd-386), const TIOCSIG ideal-int +pkg syscall (freebsd-386), const TIOCSPGRP ideal-int +pkg syscall (freebsd-386), const TIOCSTART ideal-int +pkg syscall (freebsd-386), const TIOCSTAT ideal-int +pkg syscall (freebsd-386), const TIOCSTI ideal-int +pkg syscall (freebsd-386), const TIOCSTOP ideal-int +pkg syscall (freebsd-386), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-386), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-386), const TIOCUCNTL ideal-int +pkg syscall (freebsd-386), const WCONTINUED ideal-int +pkg syscall (freebsd-386), const WCOREFLAG ideal-int +pkg syscall (freebsd-386), const WLINUXCLONE ideal-int +pkg syscall (freebsd-386), const WNOHANG ideal-int +pkg syscall (freebsd-386), const WNOWAIT ideal-int +pkg syscall (freebsd-386), const WSTOPPED ideal-int +pkg syscall (freebsd-386), const WUNTRACED ideal-int +pkg syscall (freebsd-386), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-386), func Access(string, uint32) error +pkg syscall (freebsd-386), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-386), func Bind(int, Sockaddr) error +pkg syscall (freebsd-386), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-386), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-386), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-386), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-386), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-386), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-386), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-386), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-386), func CheckBpfVersion(int) error +pkg syscall (freebsd-386), func Chflags(string, int) error +pkg syscall (freebsd-386), func Chroot(string) error +pkg syscall (freebsd-386), func Close(int) error +pkg syscall (freebsd-386), func CloseOnExec(int) +pkg syscall (freebsd-386), func CmsgLen(int) int +pkg syscall (freebsd-386), func CmsgSpace(int) int +pkg syscall (freebsd-386), func Connect(int, Sockaddr) error +pkg syscall (freebsd-386), func Dup(int) (int, error) +pkg syscall (freebsd-386), func Dup2(int, int) error +pkg syscall (freebsd-386), func Fchdir(int) error +pkg syscall (freebsd-386), func Fchflags(string, int) error +pkg syscall (freebsd-386), func Fchmod(int, uint32) error +pkg syscall (freebsd-386), func Fchown(int, int, int) error +pkg syscall (freebsd-386), func Flock(int, int) error +pkg syscall (freebsd-386), func FlushBpf(int) error +pkg syscall (freebsd-386), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-386), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-386), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-386), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-386), func Fsync(int) error +pkg syscall (freebsd-386), func Ftruncate(int, int64) error +pkg syscall (freebsd-386), func Futimes(int, []Timeval) error +pkg syscall (freebsd-386), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-386), func Getdtablesize() int +pkg syscall (freebsd-386), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-386), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-386), func Getpgid(int) (int, error) +pkg syscall (freebsd-386), func Getpgrp() int +pkg syscall (freebsd-386), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-386), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-386), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-386), func Getsid(int) (int, error) +pkg syscall (freebsd-386), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-386), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-386), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-386), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-386), func Issetugid() bool +pkg syscall (freebsd-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-386), func Kill(int, Signal) error +pkg syscall (freebsd-386), func Kqueue() (int, error) +pkg syscall (freebsd-386), func Listen(int, int) error +pkg syscall (freebsd-386), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-386), func Mkfifo(string, uint32) error +pkg syscall (freebsd-386), func Mknod(string, uint32, int) error +pkg syscall (freebsd-386), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-386), func Munmap([]uint8) error +pkg syscall (freebsd-386), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-386), func NsecToTimespec(int64) Timespec +pkg syscall (freebsd-386), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-386), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-386), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-386), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-386), func Pipe([]int) error +pkg syscall (freebsd-386), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-386), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-386), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-386), func Revoke(string) error +pkg syscall (freebsd-386), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-386), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-386), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-386), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-386), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-386), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-386), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-386), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-386), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-386), func SetBpfInterface(int, string) error +pkg syscall (freebsd-386), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-386), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-386), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-386), func SetNonblock(int, bool) error +pkg syscall (freebsd-386), func Setegid(int) error +pkg syscall (freebsd-386), func Seteuid(int) error +pkg syscall (freebsd-386), func Setgid(int) error +pkg syscall (freebsd-386), func Setgroups([]int) error +pkg syscall (freebsd-386), func Setlogin(string) error +pkg syscall (freebsd-386), func Setpgid(int, int) error +pkg syscall (freebsd-386), func Setpriority(int, int, int) error +pkg syscall (freebsd-386), func Setregid(int, int) error +pkg syscall (freebsd-386), func Setreuid(int, int) error +pkg syscall (freebsd-386), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-386), func Setsid() (int, error) +pkg syscall (freebsd-386), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-386), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-386), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-386), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-386), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-386), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-386), func Settimeofday(*Timeval) error +pkg syscall (freebsd-386), func Setuid(int) error +pkg syscall (freebsd-386), func Shutdown(int, int) error +pkg syscall (freebsd-386), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-386), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-386), func Stat(string, *Stat_t) error +pkg syscall (freebsd-386), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-386), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-386), func Sync() error +pkg syscall (freebsd-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-386), func Sysctl(string) (string, error) +pkg syscall (freebsd-386), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-386), func TimespecToNsec(Timespec) int64 +pkg syscall (freebsd-386), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-386), func Truncate(string, int64) error +pkg syscall (freebsd-386), func Umask(int) int +pkg syscall (freebsd-386), func Undelete(string) error +pkg syscall (freebsd-386), func UnixRights(...int) []uint8 +pkg syscall (freebsd-386), func Unmount(string, int) error +pkg syscall (freebsd-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-386), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-386), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-386), method (*Iovec) SetLen(int) +pkg syscall (freebsd-386), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-386), type BpfHdr struct +pkg syscall (freebsd-386), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-386), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-386), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-386), type BpfHdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-386), type BpfInsn struct +pkg syscall (freebsd-386), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-386), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-386), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-386), type BpfInsn struct, K uint32 +pkg syscall (freebsd-386), type BpfProgram struct +pkg syscall (freebsd-386), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-386), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-386), type BpfStat struct +pkg syscall (freebsd-386), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-386), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-386), type BpfVersion struct +pkg syscall (freebsd-386), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-386), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-386), type BpfZbuf struct +pkg syscall (freebsd-386), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-386), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-386), type BpfZbuf struct, Buflen uint32 +pkg syscall (freebsd-386), type BpfZbufHeader struct +pkg syscall (freebsd-386), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-386), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-386), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-386), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-386), type Cmsghdr struct +pkg syscall (freebsd-386), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-386), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-386), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-386), type Credential struct +pkg syscall (freebsd-386), type Credential struct, Gid uint32 +pkg syscall (freebsd-386), type Credential struct, Groups []uint32 +pkg syscall (freebsd-386), type Credential struct, Uid uint32 +pkg syscall (freebsd-386), type Dirent struct +pkg syscall (freebsd-386), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-386), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-386), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-386), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-386), type Dirent struct, Type uint8 +pkg syscall (freebsd-386), type FdSet struct +pkg syscall (freebsd-386), type FdSet struct, X__fds_bits [32]uint32 +pkg syscall (freebsd-386), type Flock_t struct +pkg syscall (freebsd-386), type Flock_t struct, Len int64 +pkg syscall (freebsd-386), type Flock_t struct, Pid int32 +pkg syscall (freebsd-386), type Flock_t struct, Start int64 +pkg syscall (freebsd-386), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-386), type Flock_t struct, Type int16 +pkg syscall (freebsd-386), type Flock_t struct, Whence int16 +pkg syscall (freebsd-386), type Fsid struct +pkg syscall (freebsd-386), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-386), type IPMreqn struct +pkg syscall (freebsd-386), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-386), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-386), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-386), type IfData struct +pkg syscall (freebsd-386), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-386), type IfData struct, Baudrate uint32 +pkg syscall (freebsd-386), type IfData struct, Collisions uint32 +pkg syscall (freebsd-386), type IfData struct, Datalen uint8 +pkg syscall (freebsd-386), type IfData struct, Epoch int32 +pkg syscall (freebsd-386), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-386), type IfData struct, Hwassist uint32 +pkg syscall (freebsd-386), type IfData struct, Ibytes uint32 +pkg syscall (freebsd-386), type IfData struct, Ierrors uint32 +pkg syscall (freebsd-386), type IfData struct, Imcasts uint32 +pkg syscall (freebsd-386), type IfData struct, Ipackets uint32 +pkg syscall (freebsd-386), type IfData struct, Iqdrops uint32 +pkg syscall (freebsd-386), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-386), type IfData struct, Link_state uint8 +pkg syscall (freebsd-386), type IfData struct, Metric uint32 +pkg syscall (freebsd-386), type IfData struct, Mtu uint32 +pkg syscall (freebsd-386), type IfData struct, Noproto uint32 +pkg syscall (freebsd-386), type IfData struct, Obytes uint32 +pkg syscall (freebsd-386), type IfData struct, Oerrors uint32 +pkg syscall (freebsd-386), type IfData struct, Omcasts uint32 +pkg syscall (freebsd-386), type IfData struct, Opackets uint32 +pkg syscall (freebsd-386), type IfData struct, Physical uint8 +pkg syscall (freebsd-386), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-386), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-386), type IfData struct, Type uint8 +pkg syscall (freebsd-386), type IfMsghdr struct +pkg syscall (freebsd-386), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-386), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-386), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-386), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-386), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-386), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-386), type IfaMsghdr struct +pkg syscall (freebsd-386), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-386), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-386), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-386), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-386), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-386), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-386), type IfmaMsghdr struct +pkg syscall (freebsd-386), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-386), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-386), type Inet6Pktinfo struct +pkg syscall (freebsd-386), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-386), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-386), type InterfaceAddrMessage struct +pkg syscall (freebsd-386), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-386), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-386), type InterfaceMessage struct +pkg syscall (freebsd-386), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-386), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-386), type Iovec struct +pkg syscall (freebsd-386), type Iovec struct, Base *uint8 +pkg syscall (freebsd-386), type Iovec struct, Len uint32 +pkg syscall (freebsd-386), type Kevent_t struct +pkg syscall (freebsd-386), type Kevent_t struct, Data int32 +pkg syscall (freebsd-386), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-386), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-386), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-386), type Kevent_t struct, Ident uint32 +pkg syscall (freebsd-386), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-386), type Msghdr struct +pkg syscall (freebsd-386), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-386), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-386), type Msghdr struct, Flags int32 +pkg syscall (freebsd-386), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-386), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-386), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-386), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-386), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-386), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-386), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-386), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-386), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (freebsd-386), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (freebsd-386), type RawSockaddrUnix struct +pkg syscall (freebsd-386), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-386), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-386), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-386), type Rlimit struct +pkg syscall (freebsd-386), type Rlimit struct, Cur int64 +pkg syscall (freebsd-386), type Rlimit struct, Max int64 +pkg syscall (freebsd-386), type RouteMessage struct +pkg syscall (freebsd-386), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-386), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-386), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-386), type RtMetrics struct +pkg syscall (freebsd-386), type RtMetrics struct, Expire uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Filler [3]uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Hopcount uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Locks uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Mtu uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Pksent uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Recvpipe uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Rtt uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Rttvar uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Sendpipe uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Ssthresh uint32 +pkg syscall (freebsd-386), type RtMetrics struct, Weight uint32 +pkg syscall (freebsd-386), type RtMsghdr struct +pkg syscall (freebsd-386), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-386), type RtMsghdr struct, Inits uint32 +pkg syscall (freebsd-386), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-386), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-386), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-386), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-386), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-386), type Rusage struct, Idrss int32 +pkg syscall (freebsd-386), type Rusage struct, Inblock int32 +pkg syscall (freebsd-386), type Rusage struct, Isrss int32 +pkg syscall (freebsd-386), type Rusage struct, Ixrss int32 +pkg syscall (freebsd-386), type Rusage struct, Majflt int32 +pkg syscall (freebsd-386), type Rusage struct, Maxrss int32 +pkg syscall (freebsd-386), type Rusage struct, Minflt int32 +pkg syscall (freebsd-386), type Rusage struct, Msgrcv int32 +pkg syscall (freebsd-386), type Rusage struct, Msgsnd int32 +pkg syscall (freebsd-386), type Rusage struct, Nivcsw int32 +pkg syscall (freebsd-386), type Rusage struct, Nsignals int32 +pkg syscall (freebsd-386), type Rusage struct, Nswap int32 +pkg syscall (freebsd-386), type Rusage struct, Nvcsw int32 +pkg syscall (freebsd-386), type Rusage struct, Oublock int32 +pkg syscall (freebsd-386), type Rusage struct, Stime Timeval +pkg syscall (freebsd-386), type Rusage struct, Utime Timeval +pkg syscall (freebsd-386), type SockaddrDatalink struct +pkg syscall (freebsd-386), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-386), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-386), type SocketControlMessage struct +pkg syscall (freebsd-386), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-386), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-386), type Stat_t struct +pkg syscall (freebsd-386), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-386), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-386), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-386), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-386), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-386), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-386), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-386), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-386), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-386), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-386), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-386), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-386), type Stat_t struct, Pad_cgo_0 [8]uint8 +pkg syscall (freebsd-386), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-386), type Stat_t struct, Size int64 +pkg syscall (freebsd-386), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-386), type Statfs_t struct +pkg syscall (freebsd-386), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-386), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-386), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-386), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-386), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-386), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-386), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-386), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-386), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-386), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-386), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-386), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-386), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-386), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-386), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-386), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-386), type Timespec struct, Nsec int32 +pkg syscall (freebsd-386), type Timespec struct, Sec int32 +pkg syscall (freebsd-386), type Timeval struct, Sec int32 +pkg syscall (freebsd-386), type Timeval struct, Usec int32 +pkg syscall (freebsd-386), type WaitStatus uint32 +pkg syscall (freebsd-386), var Stderr int +pkg syscall (freebsd-386), var Stdin int +pkg syscall (freebsd-386), var Stdout int +pkg syscall (freebsd-amd64), const AF_APPLETALK ideal-int +pkg syscall (freebsd-amd64), const AF_ARP ideal-int +pkg syscall (freebsd-amd64), const AF_ATM ideal-int +pkg syscall (freebsd-amd64), const AF_BLUETOOTH ideal-int +pkg syscall (freebsd-amd64), const AF_CCITT ideal-int +pkg syscall (freebsd-amd64), const AF_CHAOS ideal-int +pkg syscall (freebsd-amd64), const AF_CNT ideal-int +pkg syscall (freebsd-amd64), const AF_COIP ideal-int +pkg syscall (freebsd-amd64), const AF_DATAKIT ideal-int +pkg syscall (freebsd-amd64), const AF_DECnet ideal-int +pkg syscall (freebsd-amd64), const AF_DLI ideal-int +pkg syscall (freebsd-amd64), const AF_E164 ideal-int +pkg syscall (freebsd-amd64), const AF_ECMA ideal-int +pkg syscall (freebsd-amd64), const AF_HYLINK ideal-int +pkg syscall (freebsd-amd64), const AF_IEEE80211 ideal-int +pkg syscall (freebsd-amd64), const AF_IMPLINK ideal-int +pkg syscall (freebsd-amd64), const AF_IPX ideal-int +pkg syscall (freebsd-amd64), const AF_ISDN ideal-int +pkg syscall (freebsd-amd64), const AF_ISO ideal-int +pkg syscall (freebsd-amd64), const AF_LAT ideal-int +pkg syscall (freebsd-amd64), const AF_LINK ideal-int +pkg syscall (freebsd-amd64), const AF_LOCAL ideal-int +pkg syscall (freebsd-amd64), const AF_MAX ideal-int +pkg syscall (freebsd-amd64), const AF_NATM ideal-int +pkg syscall (freebsd-amd64), const AF_NETBIOS ideal-int +pkg syscall (freebsd-amd64), const AF_NETGRAPH ideal-int +pkg syscall (freebsd-amd64), const AF_OSI ideal-int +pkg syscall (freebsd-amd64), const AF_PUP ideal-int +pkg syscall (freebsd-amd64), const AF_ROUTE ideal-int +pkg syscall (freebsd-amd64), const AF_SCLUSTER ideal-int +pkg syscall (freebsd-amd64), const AF_SIP ideal-int +pkg syscall (freebsd-amd64), const AF_SLOW ideal-int +pkg syscall (freebsd-amd64), const AF_SNA ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR00 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR01 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR02 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR03 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR04 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR05 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR06 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR07 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR08 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR09 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR10 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR11 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR12 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR13 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR14 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR15 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR16 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR17 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR18 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR19 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR20 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR21 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR22 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR23 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR24 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR25 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR26 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR27 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR28 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR29 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR30 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR31 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR32 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR33 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR34 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR35 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR36 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR37 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR38 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR39 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR40 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR41 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR42 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR43 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR44 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR45 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR46 ideal-int +pkg syscall (freebsd-amd64), const AF_VENDOR47 ideal-int +pkg syscall (freebsd-amd64), const BIOCFEEDBACK ideal-int +pkg syscall (freebsd-amd64), const BIOCFLUSH ideal-int +pkg syscall (freebsd-amd64), const BIOCGBLEN ideal-int +pkg syscall (freebsd-amd64), const BIOCGDIRECTION ideal-int +pkg syscall (freebsd-amd64), const BIOCGDLT ideal-int +pkg syscall (freebsd-amd64), const BIOCGDLTLIST ideal-int +pkg syscall (freebsd-amd64), const BIOCGETBUFMODE ideal-int +pkg syscall (freebsd-amd64), const BIOCGETIF ideal-int +pkg syscall (freebsd-amd64), const BIOCGETZMAX ideal-int +pkg syscall (freebsd-amd64), const BIOCGHDRCMPLT ideal-int +pkg syscall (freebsd-amd64), const BIOCGRSIG ideal-int +pkg syscall (freebsd-amd64), const BIOCGRTIMEOUT ideal-int +pkg syscall (freebsd-amd64), const BIOCGSEESENT ideal-int +pkg syscall (freebsd-amd64), const BIOCGSTATS ideal-int +pkg syscall (freebsd-amd64), const BIOCIMMEDIATE ideal-int +pkg syscall (freebsd-amd64), const BIOCLOCK ideal-int +pkg syscall (freebsd-amd64), const BIOCPROMISC ideal-int +pkg syscall (freebsd-amd64), const BIOCROTZBUF ideal-int +pkg syscall (freebsd-amd64), const BIOCSBLEN ideal-int +pkg syscall (freebsd-amd64), const BIOCSDIRECTION ideal-int +pkg syscall (freebsd-amd64), const BIOCSDLT ideal-int +pkg syscall (freebsd-amd64), const BIOCSETBUFMODE ideal-int +pkg syscall (freebsd-amd64), const BIOCSETF ideal-int +pkg syscall (freebsd-amd64), const BIOCSETFNR ideal-int +pkg syscall (freebsd-amd64), const BIOCSETIF ideal-int +pkg syscall (freebsd-amd64), const BIOCSETWF ideal-int +pkg syscall (freebsd-amd64), const BIOCSETZBUF ideal-int +pkg syscall (freebsd-amd64), const BIOCSHDRCMPLT ideal-int +pkg syscall (freebsd-amd64), const BIOCSRSIG ideal-int +pkg syscall (freebsd-amd64), const BIOCSRTIMEOUT ideal-int +pkg syscall (freebsd-amd64), const BIOCSSEESENT ideal-int +pkg syscall (freebsd-amd64), const BIOCVERSION ideal-int +pkg syscall (freebsd-amd64), const BPF_A ideal-int +pkg syscall (freebsd-amd64), const BPF_ABS ideal-int +pkg syscall (freebsd-amd64), const BPF_ADD ideal-int +pkg syscall (freebsd-amd64), const BPF_ALIGNMENT ideal-int +pkg syscall (freebsd-amd64), const BPF_ALU ideal-int +pkg syscall (freebsd-amd64), const BPF_AND ideal-int +pkg syscall (freebsd-amd64), const BPF_B ideal-int +pkg syscall (freebsd-amd64), const BPF_BUFMODE_BUFFER ideal-int +pkg syscall (freebsd-amd64), const BPF_BUFMODE_ZBUF ideal-int +pkg syscall (freebsd-amd64), const BPF_DIV ideal-int +pkg syscall (freebsd-amd64), const BPF_H ideal-int +pkg syscall (freebsd-amd64), const BPF_IMM ideal-int +pkg syscall (freebsd-amd64), const BPF_IND ideal-int +pkg syscall (freebsd-amd64), const BPF_JA ideal-int +pkg syscall (freebsd-amd64), const BPF_JEQ ideal-int +pkg syscall (freebsd-amd64), const BPF_JGE ideal-int +pkg syscall (freebsd-amd64), const BPF_JGT ideal-int +pkg syscall (freebsd-amd64), const BPF_JMP ideal-int +pkg syscall (freebsd-amd64), const BPF_JSET ideal-int +pkg syscall (freebsd-amd64), const BPF_K ideal-int +pkg syscall (freebsd-amd64), const BPF_LD ideal-int +pkg syscall (freebsd-amd64), const BPF_LDX ideal-int +pkg syscall (freebsd-amd64), const BPF_LEN ideal-int +pkg syscall (freebsd-amd64), const BPF_LSH ideal-int +pkg syscall (freebsd-amd64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (freebsd-amd64), const BPF_MAXBUFSIZE ideal-int +pkg syscall (freebsd-amd64), const BPF_MAXINSNS ideal-int +pkg syscall (freebsd-amd64), const BPF_MEM ideal-int +pkg syscall (freebsd-amd64), const BPF_MEMWORDS ideal-int +pkg syscall (freebsd-amd64), const BPF_MINBUFSIZE ideal-int +pkg syscall (freebsd-amd64), const BPF_MINOR_VERSION ideal-int +pkg syscall (freebsd-amd64), const BPF_MISC ideal-int +pkg syscall (freebsd-amd64), const BPF_MSH ideal-int +pkg syscall (freebsd-amd64), const BPF_MUL ideal-int +pkg syscall (freebsd-amd64), const BPF_NEG ideal-int +pkg syscall (freebsd-amd64), const BPF_OR ideal-int +pkg syscall (freebsd-amd64), const BPF_RELEASE ideal-int +pkg syscall (freebsd-amd64), const BPF_RET ideal-int +pkg syscall (freebsd-amd64), const BPF_RSH ideal-int +pkg syscall (freebsd-amd64), const BPF_ST ideal-int +pkg syscall (freebsd-amd64), const BPF_STX ideal-int +pkg syscall (freebsd-amd64), const BPF_SUB ideal-int +pkg syscall (freebsd-amd64), const BPF_TAX ideal-int +pkg syscall (freebsd-amd64), const BPF_TXA ideal-int +pkg syscall (freebsd-amd64), const BPF_W ideal-int +pkg syscall (freebsd-amd64), const BPF_X ideal-int +pkg syscall (freebsd-amd64), const CTL_MAXNAME ideal-int +pkg syscall (freebsd-amd64), const CTL_NET ideal-int +pkg syscall (freebsd-amd64), const DLT_A429 ideal-int +pkg syscall (freebsd-amd64), const DLT_A653_ICM ideal-int +pkg syscall (freebsd-amd64), const DLT_AIRONET_HEADER ideal-int +pkg syscall (freebsd-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int +pkg syscall (freebsd-amd64), const DLT_ARCNET ideal-int +pkg syscall (freebsd-amd64), const DLT_ARCNET_LINUX ideal-int +pkg syscall (freebsd-amd64), const DLT_ATM_CLIP ideal-int +pkg syscall (freebsd-amd64), const DLT_ATM_RFC1483 ideal-int +pkg syscall (freebsd-amd64), const DLT_AURORA ideal-int +pkg syscall (freebsd-amd64), const DLT_AX25 ideal-int +pkg syscall (freebsd-amd64), const DLT_AX25_KISS ideal-int +pkg syscall (freebsd-amd64), const DLT_BACNET_MS_TP ideal-int +pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4 ideal-int +pkg syscall (freebsd-amd64), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int +pkg syscall (freebsd-amd64), const DLT_CAN20B ideal-int +pkg syscall (freebsd-amd64), const DLT_CHAOS ideal-int +pkg syscall (freebsd-amd64), const DLT_CHDLC ideal-int +pkg syscall (freebsd-amd64), const DLT_CISCO_IOS ideal-int +pkg syscall (freebsd-amd64), const DLT_C_HDLC ideal-int +pkg syscall (freebsd-amd64), const DLT_C_HDLC_WITH_DIR ideal-int +pkg syscall (freebsd-amd64), const DLT_DOCSIS ideal-int +pkg syscall (freebsd-amd64), const DLT_ECONET ideal-int +pkg syscall (freebsd-amd64), const DLT_EN10MB ideal-int +pkg syscall (freebsd-amd64), const DLT_EN3MB ideal-int +pkg syscall (freebsd-amd64), const DLT_ENC ideal-int +pkg syscall (freebsd-amd64), const DLT_ERF ideal-int +pkg syscall (freebsd-amd64), const DLT_ERF_ETH ideal-int +pkg syscall (freebsd-amd64), const DLT_ERF_POS ideal-int +pkg syscall (freebsd-amd64), const DLT_FDDI ideal-int +pkg syscall (freebsd-amd64), const DLT_FLEXRAY ideal-int +pkg syscall (freebsd-amd64), const DLT_FRELAY ideal-int +pkg syscall (freebsd-amd64), const DLT_FRELAY_WITH_DIR ideal-int +pkg syscall (freebsd-amd64), const DLT_GCOM_SERIAL ideal-int +pkg syscall (freebsd-amd64), const DLT_GCOM_T1E1 ideal-int +pkg syscall (freebsd-amd64), const DLT_GPF_F ideal-int +pkg syscall (freebsd-amd64), const DLT_GPF_T ideal-int +pkg syscall (freebsd-amd64), const DLT_GPRS_LLC ideal-int +pkg syscall (freebsd-amd64), const DLT_HHDLC ideal-int +pkg syscall (freebsd-amd64), const DLT_IBM_SN ideal-int +pkg syscall (freebsd-amd64), const DLT_IBM_SP ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802 ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_11 ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4 ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_LINUX ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_15_4_NONASK_PHY ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS ideal-int +pkg syscall (freebsd-amd64), const DLT_IEEE802_16_MAC_CPS_RADIO ideal-int +pkg syscall (freebsd-amd64), const DLT_IPFILTER ideal-int +pkg syscall (freebsd-amd64), const DLT_IPMB ideal-int +pkg syscall (freebsd-amd64), const DLT_IPMB_LINUX ideal-int +pkg syscall (freebsd-amd64), const DLT_IP_OVER_FC ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM1 ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ATM2 ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_CHDLC ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ES ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ETHER ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_FRELAY ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_GGSN ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ISM ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MFR ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLFR ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MLPPP ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_MONITOR ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PIC_PEER ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPP ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_PPPOE_ATM ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_SERVICES ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_ST ideal-int +pkg syscall (freebsd-amd64), const DLT_JUNIPER_VP ideal-int +pkg syscall (freebsd-amd64), const DLT_LAPB_WITH_DIR ideal-int +pkg syscall (freebsd-amd64), const DLT_LAPD ideal-int +pkg syscall (freebsd-amd64), const DLT_LIN ideal-int +pkg syscall (freebsd-amd64), const DLT_LINUX_IRDA ideal-int +pkg syscall (freebsd-amd64), const DLT_LINUX_LAPD ideal-int +pkg syscall (freebsd-amd64), const DLT_LINUX_PPP_WITHDIRECTION ideal-int +pkg syscall (freebsd-amd64), const DLT_LINUX_SLL ideal-int +pkg syscall (freebsd-amd64), const DLT_LOOP ideal-int +pkg syscall (freebsd-amd64), const DLT_LTALK ideal-int +pkg syscall (freebsd-amd64), const DLT_MFR ideal-int +pkg syscall (freebsd-amd64), const DLT_MOST ideal-int +pkg syscall (freebsd-amd64), const DLT_MTP2 ideal-int +pkg syscall (freebsd-amd64), const DLT_MTP2_WITH_PHDR ideal-int +pkg syscall (freebsd-amd64), const DLT_MTP3 ideal-int +pkg syscall (freebsd-amd64), const DLT_NULL ideal-int +pkg syscall (freebsd-amd64), const DLT_PCI_EXP ideal-int +pkg syscall (freebsd-amd64), const DLT_PFLOG ideal-int +pkg syscall (freebsd-amd64), const DLT_PFSYNC ideal-int +pkg syscall (freebsd-amd64), const DLT_PPI ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_BSDOS ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_ETHER ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_PPPD ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_SERIAL ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIR ideal-int +pkg syscall (freebsd-amd64), const DLT_PPP_WITH_DIRECTION ideal-int +pkg syscall (freebsd-amd64), const DLT_PRISM_HEADER ideal-int +pkg syscall (freebsd-amd64), const DLT_PRONET ideal-int +pkg syscall (freebsd-amd64), const DLT_RAIF1 ideal-int +pkg syscall (freebsd-amd64), const DLT_RAW ideal-int +pkg syscall (freebsd-amd64), const DLT_RIO ideal-int +pkg syscall (freebsd-amd64), const DLT_SCCP ideal-int +pkg syscall (freebsd-amd64), const DLT_SITA ideal-int +pkg syscall (freebsd-amd64), const DLT_SLIP ideal-int +pkg syscall (freebsd-amd64), const DLT_SLIP_BSDOS ideal-int +pkg syscall (freebsd-amd64), const DLT_SUNATM ideal-int +pkg syscall (freebsd-amd64), const DLT_SYMANTEC_FIREWALL ideal-int +pkg syscall (freebsd-amd64), const DLT_TZSP ideal-int +pkg syscall (freebsd-amd64), const DLT_USB ideal-int +pkg syscall (freebsd-amd64), const DLT_USB_LINUX ideal-int +pkg syscall (freebsd-amd64), const DLT_USER0 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER1 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER10 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER11 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER12 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER13 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER14 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER15 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER2 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER3 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER4 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER5 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER6 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER7 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER8 ideal-int +pkg syscall (freebsd-amd64), const DLT_USER9 ideal-int +pkg syscall (freebsd-amd64), const DLT_X2E_SERIAL ideal-int +pkg syscall (freebsd-amd64), const DLT_X2E_XORAYA ideal-int +pkg syscall (freebsd-amd64), const DT_BLK ideal-int +pkg syscall (freebsd-amd64), const DT_CHR ideal-int +pkg syscall (freebsd-amd64), const DT_DIR ideal-int +pkg syscall (freebsd-amd64), const DT_FIFO ideal-int +pkg syscall (freebsd-amd64), const DT_LNK ideal-int +pkg syscall (freebsd-amd64), const DT_REG ideal-int +pkg syscall (freebsd-amd64), const DT_SOCK ideal-int +pkg syscall (freebsd-amd64), const DT_UNKNOWN ideal-int +pkg syscall (freebsd-amd64), const DT_WHT ideal-int +pkg syscall (freebsd-amd64), const EAUTH Errno +pkg syscall (freebsd-amd64), const EBADMSG Errno +pkg syscall (freebsd-amd64), const EBADRPC Errno +pkg syscall (freebsd-amd64), const ECHO ideal-int +pkg syscall (freebsd-amd64), const ECHOCTL ideal-int +pkg syscall (freebsd-amd64), const ECHOE ideal-int +pkg syscall (freebsd-amd64), const ECHOK ideal-int +pkg syscall (freebsd-amd64), const ECHOKE ideal-int +pkg syscall (freebsd-amd64), const ECHONL ideal-int +pkg syscall (freebsd-amd64), const ECHOPRT ideal-int +pkg syscall (freebsd-amd64), const EDOOFUS Errno +pkg syscall (freebsd-amd64), const EFTYPE Errno +pkg syscall (freebsd-amd64), const ELAST Errno +pkg syscall (freebsd-amd64), const EMULTIHOP Errno +pkg syscall (freebsd-amd64), const ENEEDAUTH Errno +pkg syscall (freebsd-amd64), const ENOATTR Errno +pkg syscall (freebsd-amd64), const ENOLINK Errno +pkg syscall (freebsd-amd64), const ENOTCAPABLE Errno +pkg syscall (freebsd-amd64), const EPROCLIM Errno +pkg syscall (freebsd-amd64), const EPROCUNAVAIL Errno +pkg syscall (freebsd-amd64), const EPROGMISMATCH Errno +pkg syscall (freebsd-amd64), const EPROGUNAVAIL Errno +pkg syscall (freebsd-amd64), const EPROTO Errno +pkg syscall (freebsd-amd64), const ERPCMISMATCH Errno +pkg syscall (freebsd-amd64), const EVFILT_AIO ideal-int +pkg syscall (freebsd-amd64), const EVFILT_FS ideal-int +pkg syscall (freebsd-amd64), const EVFILT_LIO ideal-int +pkg syscall (freebsd-amd64), const EVFILT_PROC ideal-int +pkg syscall (freebsd-amd64), const EVFILT_READ ideal-int +pkg syscall (freebsd-amd64), const EVFILT_SIGNAL ideal-int +pkg syscall (freebsd-amd64), const EVFILT_SYSCOUNT ideal-int +pkg syscall (freebsd-amd64), const EVFILT_TIMER ideal-int +pkg syscall (freebsd-amd64), const EVFILT_USER ideal-int +pkg syscall (freebsd-amd64), const EVFILT_VNODE ideal-int +pkg syscall (freebsd-amd64), const EVFILT_WRITE ideal-int +pkg syscall (freebsd-amd64), const EV_ADD ideal-int +pkg syscall (freebsd-amd64), const EV_CLEAR ideal-int +pkg syscall (freebsd-amd64), const EV_DELETE ideal-int +pkg syscall (freebsd-amd64), const EV_DISABLE ideal-int +pkg syscall (freebsd-amd64), const EV_DISPATCH ideal-int +pkg syscall (freebsd-amd64), const EV_ENABLE ideal-int +pkg syscall (freebsd-amd64), const EV_EOF ideal-int +pkg syscall (freebsd-amd64), const EV_ERROR ideal-int +pkg syscall (freebsd-amd64), const EV_FLAG1 ideal-int +pkg syscall (freebsd-amd64), const EV_ONESHOT ideal-int +pkg syscall (freebsd-amd64), const EV_RECEIPT ideal-int +pkg syscall (freebsd-amd64), const EV_SYSFLAGS ideal-int +pkg syscall (freebsd-amd64), const EXTA ideal-int +pkg syscall (freebsd-amd64), const EXTB ideal-int +pkg syscall (freebsd-amd64), const EXTPROC ideal-int +pkg syscall (freebsd-amd64), const FD_CLOEXEC ideal-int +pkg syscall (freebsd-amd64), const FD_SETSIZE ideal-int +pkg syscall (freebsd-amd64), const F_CANCEL ideal-int +pkg syscall (freebsd-amd64), const F_DUP2FD ideal-int +pkg syscall (freebsd-amd64), const F_DUPFD ideal-int +pkg syscall (freebsd-amd64), const F_GETFD ideal-int +pkg syscall (freebsd-amd64), const F_GETFL ideal-int +pkg syscall (freebsd-amd64), const F_GETLK ideal-int +pkg syscall (freebsd-amd64), const F_GETOWN ideal-int +pkg syscall (freebsd-amd64), const F_OGETLK ideal-int +pkg syscall (freebsd-amd64), const F_OK ideal-int +pkg syscall (freebsd-amd64), const F_OSETLK ideal-int +pkg syscall (freebsd-amd64), const F_OSETLKW ideal-int +pkg syscall (freebsd-amd64), const F_RDAHEAD ideal-int +pkg syscall (freebsd-amd64), const F_RDLCK ideal-int +pkg syscall (freebsd-amd64), const F_READAHEAD ideal-int +pkg syscall (freebsd-amd64), const F_SETFD ideal-int +pkg syscall (freebsd-amd64), const F_SETFL ideal-int +pkg syscall (freebsd-amd64), const F_SETLK ideal-int +pkg syscall (freebsd-amd64), const F_SETLKW ideal-int +pkg syscall (freebsd-amd64), const F_SETLK_REMOTE ideal-int +pkg syscall (freebsd-amd64), const F_SETOWN ideal-int +pkg syscall (freebsd-amd64), const F_UNLCK ideal-int +pkg syscall (freebsd-amd64), const F_UNLCKSYS ideal-int +pkg syscall (freebsd-amd64), const F_WRLCK ideal-int +pkg syscall (freebsd-amd64), const IFF_ALLMULTI ideal-int +pkg syscall (freebsd-amd64), const IFF_ALTPHYS ideal-int +pkg syscall (freebsd-amd64), const IFF_CANTCHANGE ideal-int +pkg syscall (freebsd-amd64), const IFF_DEBUG ideal-int +pkg syscall (freebsd-amd64), const IFF_DRV_OACTIVE ideal-int +pkg syscall (freebsd-amd64), const IFF_DRV_RUNNING ideal-int +pkg syscall (freebsd-amd64), const IFF_DYING ideal-int +pkg syscall (freebsd-amd64), const IFF_LINK0 ideal-int +pkg syscall (freebsd-amd64), const IFF_LINK1 ideal-int +pkg syscall (freebsd-amd64), const IFF_LINK2 ideal-int +pkg syscall (freebsd-amd64), const IFF_MONITOR ideal-int +pkg syscall (freebsd-amd64), const IFF_NOARP ideal-int +pkg syscall (freebsd-amd64), const IFF_OACTIVE ideal-int +pkg syscall (freebsd-amd64), const IFF_POINTOPOINT ideal-int +pkg syscall (freebsd-amd64), const IFF_PPROMISC ideal-int +pkg syscall (freebsd-amd64), const IFF_PROMISC ideal-int +pkg syscall (freebsd-amd64), const IFF_RENAMING ideal-int +pkg syscall (freebsd-amd64), const IFF_RUNNING ideal-int +pkg syscall (freebsd-amd64), const IFF_SIMPLEX ideal-int +pkg syscall (freebsd-amd64), const IFF_SMART ideal-int +pkg syscall (freebsd-amd64), const IFF_STATICARP ideal-int +pkg syscall (freebsd-amd64), const IFNAMSIZ ideal-int +pkg syscall (freebsd-amd64), const IFT_1822 ideal-int +pkg syscall (freebsd-amd64), const IFT_A12MPPSWITCH ideal-int +pkg syscall (freebsd-amd64), const IFT_AAL2 ideal-int +pkg syscall (freebsd-amd64), const IFT_AAL5 ideal-int +pkg syscall (freebsd-amd64), const IFT_ADSL ideal-int +pkg syscall (freebsd-amd64), const IFT_AFLANE8023 ideal-int +pkg syscall (freebsd-amd64), const IFT_AFLANE8025 ideal-int +pkg syscall (freebsd-amd64), const IFT_ARAP ideal-int +pkg syscall (freebsd-amd64), const IFT_ARCNET ideal-int +pkg syscall (freebsd-amd64), const IFT_ARCNETPLUS ideal-int +pkg syscall (freebsd-amd64), const IFT_ASYNC ideal-int +pkg syscall (freebsd-amd64), const IFT_ATM ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMDXI ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMFUNI ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMIMA ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMLOGICAL ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMRADIO ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMSUBINTERFACE ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMVCIENDPT ideal-int +pkg syscall (freebsd-amd64), const IFT_ATMVIRTUAL ideal-int +pkg syscall (freebsd-amd64), const IFT_BGPPOLICYACCOUNTING ideal-int +pkg syscall (freebsd-amd64), const IFT_BRIDGE ideal-int +pkg syscall (freebsd-amd64), const IFT_BSC ideal-int +pkg syscall (freebsd-amd64), const IFT_CARP ideal-int +pkg syscall (freebsd-amd64), const IFT_CCTEMUL ideal-int +pkg syscall (freebsd-amd64), const IFT_CEPT ideal-int +pkg syscall (freebsd-amd64), const IFT_CES ideal-int +pkg syscall (freebsd-amd64), const IFT_CHANNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_CNR ideal-int +pkg syscall (freebsd-amd64), const IFT_COFFEE ideal-int +pkg syscall (freebsd-amd64), const IFT_COMPOSITELINK ideal-int +pkg syscall (freebsd-amd64), const IFT_DCN ideal-int +pkg syscall (freebsd-amd64), const IFT_DIGITALPOWERLINE ideal-int +pkg syscall (freebsd-amd64), const IFT_DIGITALWRAPPEROVERHEADCHANNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_DLSW ideal-int +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEMACLAYER ideal-int +pkg syscall (freebsd-amd64), const IFT_DOCSCABLEUPSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_DS0 ideal-int +pkg syscall (freebsd-amd64), const IFT_DS0BUNDLE ideal-int +pkg syscall (freebsd-amd64), const IFT_DS1FDL ideal-int +pkg syscall (freebsd-amd64), const IFT_DS3 ideal-int +pkg syscall (freebsd-amd64), const IFT_DTM ideal-int +pkg syscall (freebsd-amd64), const IFT_DVBASILN ideal-int +pkg syscall (freebsd-amd64), const IFT_DVBASIOUT ideal-int +pkg syscall (freebsd-amd64), const IFT_DVBRCCDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_DVBRCCMACLAYER ideal-int +pkg syscall (freebsd-amd64), const IFT_DVBRCCUPSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_ENC ideal-int +pkg syscall (freebsd-amd64), const IFT_EON ideal-int +pkg syscall (freebsd-amd64), const IFT_EPLRS ideal-int +pkg syscall (freebsd-amd64), const IFT_ESCON ideal-int +pkg syscall (freebsd-amd64), const IFT_ETHER ideal-int +pkg syscall (freebsd-amd64), const IFT_FAITH ideal-int +pkg syscall (freebsd-amd64), const IFT_FAST ideal-int +pkg syscall (freebsd-amd64), const IFT_FASTETHER ideal-int +pkg syscall (freebsd-amd64), const IFT_FASTETHERFX ideal-int +pkg syscall (freebsd-amd64), const IFT_FDDI ideal-int +pkg syscall (freebsd-amd64), const IFT_FIBRECHANNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_FRAMERELAYINTERCONNECT ideal-int +pkg syscall (freebsd-amd64), const IFT_FRAMERELAYMPI ideal-int +pkg syscall (freebsd-amd64), const IFT_FRDLCIENDPT ideal-int +pkg syscall (freebsd-amd64), const IFT_FRELAY ideal-int +pkg syscall (freebsd-amd64), const IFT_FRELAYDCE ideal-int +pkg syscall (freebsd-amd64), const IFT_FRF16MFRBUNDLE ideal-int +pkg syscall (freebsd-amd64), const IFT_FRFORWARD ideal-int +pkg syscall (freebsd-amd64), const IFT_G703AT2MB ideal-int +pkg syscall (freebsd-amd64), const IFT_G703AT64K ideal-int +pkg syscall (freebsd-amd64), const IFT_GIF ideal-int +pkg syscall (freebsd-amd64), const IFT_GIGABITETHERNET ideal-int +pkg syscall (freebsd-amd64), const IFT_GR303IDT ideal-int +pkg syscall (freebsd-amd64), const IFT_GR303RDT ideal-int +pkg syscall (freebsd-amd64), const IFT_H323GATEKEEPER ideal-int +pkg syscall (freebsd-amd64), const IFT_H323PROXY ideal-int +pkg syscall (freebsd-amd64), const IFT_HDH1822 ideal-int +pkg syscall (freebsd-amd64), const IFT_HDLC ideal-int +pkg syscall (freebsd-amd64), const IFT_HDSL2 ideal-int +pkg syscall (freebsd-amd64), const IFT_HIPERLAN2 ideal-int +pkg syscall (freebsd-amd64), const IFT_HIPPI ideal-int +pkg syscall (freebsd-amd64), const IFT_HIPPIINTERFACE ideal-int +pkg syscall (freebsd-amd64), const IFT_HOSTPAD ideal-int +pkg syscall (freebsd-amd64), const IFT_HSSI ideal-int +pkg syscall (freebsd-amd64), const IFT_HY ideal-int +pkg syscall (freebsd-amd64), const IFT_IBM370PARCHAN ideal-int +pkg syscall (freebsd-amd64), const IFT_IDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_IEEE1394 ideal-int +pkg syscall (freebsd-amd64), const IFT_IEEE80211 ideal-int +pkg syscall (freebsd-amd64), const IFT_IEEE80212 ideal-int +pkg syscall (freebsd-amd64), const IFT_IEEE8023ADLAG ideal-int +pkg syscall (freebsd-amd64), const IFT_IFGSN ideal-int +pkg syscall (freebsd-amd64), const IFT_IMT ideal-int +pkg syscall (freebsd-amd64), const IFT_INTERLEAVE ideal-int +pkg syscall (freebsd-amd64), const IFT_IP ideal-int +pkg syscall (freebsd-amd64), const IFT_IPFORWARD ideal-int +pkg syscall (freebsd-amd64), const IFT_IPOVERATM ideal-int +pkg syscall (freebsd-amd64), const IFT_IPOVERCDLC ideal-int +pkg syscall (freebsd-amd64), const IFT_IPOVERCLAW ideal-int +pkg syscall (freebsd-amd64), const IFT_IPSWITCH ideal-int +pkg syscall (freebsd-amd64), const IFT_IPXIP ideal-int +pkg syscall (freebsd-amd64), const IFT_ISDN ideal-int +pkg syscall (freebsd-amd64), const IFT_ISDNBASIC ideal-int +pkg syscall (freebsd-amd64), const IFT_ISDNPRIMARY ideal-int +pkg syscall (freebsd-amd64), const IFT_ISDNS ideal-int +pkg syscall (freebsd-amd64), const IFT_ISDNU ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88022LLC ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88023 ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88024 ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88025 ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88025CRFPINT ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88025DTR ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88025FIBER ideal-int +pkg syscall (freebsd-amd64), const IFT_ISO88026 ideal-int +pkg syscall (freebsd-amd64), const IFT_ISUP ideal-int +pkg syscall (freebsd-amd64), const IFT_L2VLAN ideal-int +pkg syscall (freebsd-amd64), const IFT_L3IPVLAN ideal-int +pkg syscall (freebsd-amd64), const IFT_L3IPXVLAN ideal-int +pkg syscall (freebsd-amd64), const IFT_LAPB ideal-int +pkg syscall (freebsd-amd64), const IFT_LAPD ideal-int +pkg syscall (freebsd-amd64), const IFT_LAPF ideal-int +pkg syscall (freebsd-amd64), const IFT_LOCALTALK ideal-int +pkg syscall (freebsd-amd64), const IFT_LOOP ideal-int +pkg syscall (freebsd-amd64), const IFT_MEDIAMAILOVERIP ideal-int +pkg syscall (freebsd-amd64), const IFT_MFSIGLINK ideal-int +pkg syscall (freebsd-amd64), const IFT_MIOX25 ideal-int +pkg syscall (freebsd-amd64), const IFT_MODEM ideal-int +pkg syscall (freebsd-amd64), const IFT_MPC ideal-int +pkg syscall (freebsd-amd64), const IFT_MPLS ideal-int +pkg syscall (freebsd-amd64), const IFT_MPLSTUNNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_MSDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_MVL ideal-int +pkg syscall (freebsd-amd64), const IFT_MYRINET ideal-int +pkg syscall (freebsd-amd64), const IFT_NFAS ideal-int +pkg syscall (freebsd-amd64), const IFT_NSIP ideal-int +pkg syscall (freebsd-amd64), const IFT_OPTICALCHANNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_OPTICALTRANSPORT ideal-int +pkg syscall (freebsd-amd64), const IFT_OTHER ideal-int +pkg syscall (freebsd-amd64), const IFT_P10 ideal-int +pkg syscall (freebsd-amd64), const IFT_P80 ideal-int +pkg syscall (freebsd-amd64), const IFT_PARA ideal-int +pkg syscall (freebsd-amd64), const IFT_PFLOG ideal-int +pkg syscall (freebsd-amd64), const IFT_PFSYNC ideal-int +pkg syscall (freebsd-amd64), const IFT_PLC ideal-int +pkg syscall (freebsd-amd64), const IFT_POS ideal-int +pkg syscall (freebsd-amd64), const IFT_PPP ideal-int +pkg syscall (freebsd-amd64), const IFT_PPPMULTILINKBUNDLE ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPBWAP2MP ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPCNLS ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSDOWNSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSMACLAYER ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPDOCSWIRELESSUPSTREAM ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPMUX ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPVIRTUAL ideal-int +pkg syscall (freebsd-amd64), const IFT_PROPWIRELESSP2P ideal-int +pkg syscall (freebsd-amd64), const IFT_PTPSERIAL ideal-int +pkg syscall (freebsd-amd64), const IFT_PVC ideal-int +pkg syscall (freebsd-amd64), const IFT_QLLC ideal-int +pkg syscall (freebsd-amd64), const IFT_RADIOMAC ideal-int +pkg syscall (freebsd-amd64), const IFT_RADSL ideal-int +pkg syscall (freebsd-amd64), const IFT_REACHDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_RFC1483 ideal-int +pkg syscall (freebsd-amd64), const IFT_RS232 ideal-int +pkg syscall (freebsd-amd64), const IFT_RSRB ideal-int +pkg syscall (freebsd-amd64), const IFT_SDLC ideal-int +pkg syscall (freebsd-amd64), const IFT_SDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_SHDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_SIP ideal-int +pkg syscall (freebsd-amd64), const IFT_SLIP ideal-int +pkg syscall (freebsd-amd64), const IFT_SMDSDXI ideal-int +pkg syscall (freebsd-amd64), const IFT_SMDSICIP ideal-int +pkg syscall (freebsd-amd64), const IFT_SONET ideal-int +pkg syscall (freebsd-amd64), const IFT_SONETOVERHEADCHANNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_SONETPATH ideal-int +pkg syscall (freebsd-amd64), const IFT_SONETVT ideal-int +pkg syscall (freebsd-amd64), const IFT_SRP ideal-int +pkg syscall (freebsd-amd64), const IFT_SS7SIGLINK ideal-int +pkg syscall (freebsd-amd64), const IFT_STACKTOSTACK ideal-int +pkg syscall (freebsd-amd64), const IFT_STARLAN ideal-int +pkg syscall (freebsd-amd64), const IFT_STF ideal-int +pkg syscall (freebsd-amd64), const IFT_T1 ideal-int +pkg syscall (freebsd-amd64), const IFT_TDLC ideal-int +pkg syscall (freebsd-amd64), const IFT_TERMPAD ideal-int +pkg syscall (freebsd-amd64), const IFT_TR008 ideal-int +pkg syscall (freebsd-amd64), const IFT_TRANSPHDLC ideal-int +pkg syscall (freebsd-amd64), const IFT_TUNNEL ideal-int +pkg syscall (freebsd-amd64), const IFT_ULTRA ideal-int +pkg syscall (freebsd-amd64), const IFT_USB ideal-int +pkg syscall (freebsd-amd64), const IFT_V11 ideal-int +pkg syscall (freebsd-amd64), const IFT_V35 ideal-int +pkg syscall (freebsd-amd64), const IFT_V36 ideal-int +pkg syscall (freebsd-amd64), const IFT_V37 ideal-int +pkg syscall (freebsd-amd64), const IFT_VDSL ideal-int +pkg syscall (freebsd-amd64), const IFT_VIRTUALIPADDRESS ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEEM ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEENCAP ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEFXO ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEFXS ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEOVERATM ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEOVERFRAMERELAY ideal-int +pkg syscall (freebsd-amd64), const IFT_VOICEOVERIP ideal-int +pkg syscall (freebsd-amd64), const IFT_X213 ideal-int +pkg syscall (freebsd-amd64), const IFT_X25 ideal-int +pkg syscall (freebsd-amd64), const IFT_X25DDN ideal-int +pkg syscall (freebsd-amd64), const IFT_X25HUNTGROUP ideal-int +pkg syscall (freebsd-amd64), const IFT_X25MLP ideal-int +pkg syscall (freebsd-amd64), const IFT_X25PLE ideal-int +pkg syscall (freebsd-amd64), const IFT_XETHER ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSA_HOST ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSA_MAX ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSA_NET ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSB_HOST ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSB_MAX ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSB_NET ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSC_HOST ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSC_NET ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSD_HOST ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSD_NET ideal-int +pkg syscall (freebsd-amd64), const IN_CLASSD_NSHIFT ideal-int +pkg syscall (freebsd-amd64), const IN_LOOPBACKNET ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_3PC ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ADFS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_AH ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_AHIP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_APES ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ARGUS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_AX25 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_BHA ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_BLT ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_BRSATMON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CARP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CFTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CHAOS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CMTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CPHB ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_CPNX ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_DDP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_DGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_DIVERT ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_DONE ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_EGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_EMCON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ENCAP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_EON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ESP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ETHERIP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_GGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_GMTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_GRE ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_HELLO ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_HMP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ICMP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IDP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IDPR ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IDRP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IGMP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IGRP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IL ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_INLSP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_INP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPCOMP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPCV ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPEIP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPIP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPPC ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IPV4 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_IRTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_KRYPTOLAN ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_LARP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_LEAF1 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_LEAF2 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MAX ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MAXID ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MEAS ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MHRP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MICP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MOBILE ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_MUX ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ND ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_NHRP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_NONE ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_NSP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_NVPII ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_OLD_DIVERT ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_OSPFIGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PFSYNC ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PGM ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PIGP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PIM ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PRM ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PUP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_PVP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_RAW ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_RCCMON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_RDP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ROUTING ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_RSVP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_RVD ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SATEXPAK ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SATMON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SCCSP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SCTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SDRP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SEP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SKIP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SPACER ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SRPC ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_ST ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SVMTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_SWIPE ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TCF ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TLSP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TPXX ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TRUNK1 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TRUNK2 ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_TTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_VINES ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_VISA ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_VMTP ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_WBEXPAK ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_WBMON ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_WSN ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_XNET ideal-int +pkg syscall (freebsd-amd64), const IPPROTO_XTP ideal-int +pkg syscall (freebsd-amd64), const IPV6_AUTOFLOWLABEL ideal-int +pkg syscall (freebsd-amd64), const IPV6_BINDANY ideal-int +pkg syscall (freebsd-amd64), const IPV6_BINDV6ONLY ideal-int +pkg syscall (freebsd-amd64), const IPV6_CHECKSUM ideal-int +pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int +pkg syscall (freebsd-amd64), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-amd64), const IPV6_DEFHLIM ideal-int +pkg syscall (freebsd-amd64), const IPV6_DONTFRAG ideal-int +pkg syscall (freebsd-amd64), const IPV6_DSTOPTS ideal-int +pkg syscall (freebsd-amd64), const IPV6_FAITH ideal-int +pkg syscall (freebsd-amd64), const IPV6_FLOWINFO_MASK ideal-int +pkg syscall (freebsd-amd64), const IPV6_FLOWLABEL_MASK ideal-int +pkg syscall (freebsd-amd64), const IPV6_FRAGTTL ideal-int +pkg syscall (freebsd-amd64), const IPV6_FW_ADD ideal-int +pkg syscall (freebsd-amd64), const IPV6_FW_DEL ideal-int +pkg syscall (freebsd-amd64), const IPV6_FW_FLUSH ideal-int +pkg syscall (freebsd-amd64), const IPV6_FW_GET ideal-int +pkg syscall (freebsd-amd64), const IPV6_FW_ZERO ideal-int +pkg syscall (freebsd-amd64), const IPV6_HLIMDEC ideal-int +pkg syscall (freebsd-amd64), const IPV6_HOPLIMIT ideal-int +pkg syscall (freebsd-amd64), const IPV6_HOPOPTS ideal-int +pkg syscall (freebsd-amd64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAXHLIM ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAXOPTHDR ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAXPACKET ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64), const IPV6_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64), const IPV6_MMTU ideal-int +pkg syscall (freebsd-amd64), const IPV6_MSFILTER ideal-int +pkg syscall (freebsd-amd64), const IPV6_NEXTHOP ideal-int +pkg syscall (freebsd-amd64), const IPV6_PATHMTU ideal-int +pkg syscall (freebsd-amd64), const IPV6_PKTINFO ideal-int +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE ideal-int +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-amd64), const IPV6_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-amd64), const IPV6_PREFER_TEMPADDR ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVPATHMTU ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVRTHDR ideal-int +pkg syscall (freebsd-amd64), const IPV6_RECVTCLASS ideal-int +pkg syscall (freebsd-amd64), const IPV6_RTHDR ideal-int +pkg syscall (freebsd-amd64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (freebsd-amd64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (freebsd-amd64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (freebsd-amd64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (freebsd-amd64), const IPV6_SOCKOPT_RESERVED1 ideal-int +pkg syscall (freebsd-amd64), const IPV6_TCLASS ideal-int +pkg syscall (freebsd-amd64), const IPV6_USE_MIN_MTU ideal-int +pkg syscall (freebsd-amd64), const IPV6_VERSION ideal-int +pkg syscall (freebsd-amd64), const IPV6_VERSION_MASK ideal-int +pkg syscall (freebsd-amd64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-amd64), const IP_BINDANY ideal-int +pkg syscall (freebsd-amd64), const IP_BLOCK_SOURCE ideal-int +pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (freebsd-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (freebsd-amd64), const IP_DF ideal-int +pkg syscall (freebsd-amd64), const IP_DONTFRAG ideal-int +pkg syscall (freebsd-amd64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (freebsd-amd64), const IP_DUMMYNET3 ideal-int +pkg syscall (freebsd-amd64), const IP_DUMMYNET_CONFIGURE ideal-int +pkg syscall (freebsd-amd64), const IP_DUMMYNET_DEL ideal-int +pkg syscall (freebsd-amd64), const IP_DUMMYNET_FLUSH ideal-int +pkg syscall (freebsd-amd64), const IP_DUMMYNET_GET ideal-int +pkg syscall (freebsd-amd64), const IP_FAITH ideal-int +pkg syscall (freebsd-amd64), const IP_FW3 ideal-int +pkg syscall (freebsd-amd64), const IP_FW_ADD ideal-int +pkg syscall (freebsd-amd64), const IP_FW_DEL ideal-int +pkg syscall (freebsd-amd64), const IP_FW_FLUSH ideal-int +pkg syscall (freebsd-amd64), const IP_FW_GET ideal-int +pkg syscall (freebsd-amd64), const IP_FW_NAT_CFG ideal-int +pkg syscall (freebsd-amd64), const IP_FW_NAT_DEL ideal-int +pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_CONFIG ideal-int +pkg syscall (freebsd-amd64), const IP_FW_NAT_GET_LOG ideal-int +pkg syscall (freebsd-amd64), const IP_FW_RESETLOG ideal-int +pkg syscall (freebsd-amd64), const IP_FW_TABLE_ADD ideal-int +pkg syscall (freebsd-amd64), const IP_FW_TABLE_DEL ideal-int +pkg syscall (freebsd-amd64), const IP_FW_TABLE_FLUSH ideal-int +pkg syscall (freebsd-amd64), const IP_FW_TABLE_GETSIZE ideal-int +pkg syscall (freebsd-amd64), const IP_FW_TABLE_LIST ideal-int +pkg syscall (freebsd-amd64), const IP_FW_ZERO ideal-int +pkg syscall (freebsd-amd64), const IP_HDRINCL ideal-int +pkg syscall (freebsd-amd64), const IP_IPSEC_POLICY ideal-int +pkg syscall (freebsd-amd64), const IP_MAXPACKET ideal-int +pkg syscall (freebsd-amd64), const IP_MAX_GROUP_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64), const IP_MAX_SOCK_MUTE_FILTER ideal-int +pkg syscall (freebsd-amd64), const IP_MAX_SOCK_SRC_FILTER ideal-int +pkg syscall (freebsd-amd64), const IP_MAX_SOURCE_FILTER ideal-int +pkg syscall (freebsd-amd64), const IP_MF ideal-int +pkg syscall (freebsd-amd64), const IP_MINTTL ideal-int +pkg syscall (freebsd-amd64), const IP_MIN_MEMBERSHIPS ideal-int +pkg syscall (freebsd-amd64), const IP_MSFILTER ideal-int +pkg syscall (freebsd-amd64), const IP_MSS ideal-int +pkg syscall (freebsd-amd64), const IP_MULTICAST_VIF ideal-int +pkg syscall (freebsd-amd64), const IP_OFFMASK ideal-int +pkg syscall (freebsd-amd64), const IP_ONESBCAST ideal-int +pkg syscall (freebsd-amd64), const IP_OPTIONS ideal-int +pkg syscall (freebsd-amd64), const IP_PORTRANGE ideal-int +pkg syscall (freebsd-amd64), const IP_PORTRANGE_DEFAULT ideal-int +pkg syscall (freebsd-amd64), const IP_PORTRANGE_HIGH ideal-int +pkg syscall (freebsd-amd64), const IP_PORTRANGE_LOW ideal-int +pkg syscall (freebsd-amd64), const IP_RECVDSTADDR ideal-int +pkg syscall (freebsd-amd64), const IP_RECVIF ideal-int +pkg syscall (freebsd-amd64), const IP_RECVOPTS ideal-int +pkg syscall (freebsd-amd64), const IP_RECVRETOPTS ideal-int +pkg syscall (freebsd-amd64), const IP_RECVTTL ideal-int +pkg syscall (freebsd-amd64), const IP_RETOPTS ideal-int +pkg syscall (freebsd-amd64), const IP_RF ideal-int +pkg syscall (freebsd-amd64), const IP_RSVP_OFF ideal-int +pkg syscall (freebsd-amd64), const IP_RSVP_ON ideal-int +pkg syscall (freebsd-amd64), const IP_RSVP_VIF_OFF ideal-int +pkg syscall (freebsd-amd64), const IP_RSVP_VIF_ON ideal-int +pkg syscall (freebsd-amd64), const IP_SENDSRCADDR ideal-int +pkg syscall (freebsd-amd64), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (freebsd-amd64), const LOCK_EX ideal-int +pkg syscall (freebsd-amd64), const LOCK_NB ideal-int +pkg syscall (freebsd-amd64), const LOCK_SH ideal-int +pkg syscall (freebsd-amd64), const LOCK_UN ideal-int +pkg syscall (freebsd-amd64), const MSG_COMPAT ideal-int +pkg syscall (freebsd-amd64), const MSG_CTRUNC ideal-int +pkg syscall (freebsd-amd64), const MSG_DONTROUTE ideal-int +pkg syscall (freebsd-amd64), const MSG_DONTWAIT ideal-int +pkg syscall (freebsd-amd64), const MSG_EOF ideal-int +pkg syscall (freebsd-amd64), const MSG_EOR ideal-int +pkg syscall (freebsd-amd64), const MSG_NBIO ideal-int +pkg syscall (freebsd-amd64), const MSG_NOSIGNAL ideal-int +pkg syscall (freebsd-amd64), const MSG_NOTIFICATION ideal-int +pkg syscall (freebsd-amd64), const MSG_OOB ideal-int +pkg syscall (freebsd-amd64), const MSG_PEEK ideal-int +pkg syscall (freebsd-amd64), const MSG_TRUNC ideal-int +pkg syscall (freebsd-amd64), const MSG_WAITALL ideal-int +pkg syscall (freebsd-amd64), const NET_RT_DUMP ideal-int +pkg syscall (freebsd-amd64), const NET_RT_FLAGS ideal-int +pkg syscall (freebsd-amd64), const NET_RT_IFLIST ideal-int +pkg syscall (freebsd-amd64), const NET_RT_IFMALIST ideal-int +pkg syscall (freebsd-amd64), const NET_RT_MAXID ideal-int +pkg syscall (freebsd-amd64), const NOTE_ATTRIB ideal-int +pkg syscall (freebsd-amd64), const NOTE_CHILD ideal-int +pkg syscall (freebsd-amd64), const NOTE_DELETE ideal-int +pkg syscall (freebsd-amd64), const NOTE_EXEC ideal-int +pkg syscall (freebsd-amd64), const NOTE_EXIT ideal-int +pkg syscall (freebsd-amd64), const NOTE_EXTEND ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFAND ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFCOPY ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFCTRLMASK ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFLAGSMASK ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFNOP ideal-int +pkg syscall (freebsd-amd64), const NOTE_FFOR ideal-int +pkg syscall (freebsd-amd64), const NOTE_FORK ideal-int +pkg syscall (freebsd-amd64), const NOTE_LINK ideal-int +pkg syscall (freebsd-amd64), const NOTE_LOWAT ideal-int +pkg syscall (freebsd-amd64), const NOTE_PCTRLMASK ideal-int +pkg syscall (freebsd-amd64), const NOTE_PDATAMASK ideal-int +pkg syscall (freebsd-amd64), const NOTE_RENAME ideal-int +pkg syscall (freebsd-amd64), const NOTE_REVOKE ideal-int +pkg syscall (freebsd-amd64), const NOTE_TRACK ideal-int +pkg syscall (freebsd-amd64), const NOTE_TRACKERR ideal-int +pkg syscall (freebsd-amd64), const NOTE_TRIGGER ideal-int +pkg syscall (freebsd-amd64), const NOTE_WRITE ideal-int +pkg syscall (freebsd-amd64), const O_ACCMODE ideal-int +pkg syscall (freebsd-amd64), const O_DIRECT ideal-int +pkg syscall (freebsd-amd64), const O_DIRECTORY ideal-int +pkg syscall (freebsd-amd64), const O_EXEC ideal-int +pkg syscall (freebsd-amd64), const O_EXLOCK ideal-int +pkg syscall (freebsd-amd64), const O_FSYNC ideal-int +pkg syscall (freebsd-amd64), const O_NDELAY ideal-int +pkg syscall (freebsd-amd64), const O_NOFOLLOW ideal-int +pkg syscall (freebsd-amd64), const O_SHLOCK ideal-int +pkg syscall (freebsd-amd64), const O_TTY_INIT ideal-int +pkg syscall (freebsd-amd64), const PTRACE_CONT ideal-int +pkg syscall (freebsd-amd64), const PTRACE_KILL ideal-int +pkg syscall (freebsd-amd64), const PTRACE_TRACEME ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_AS ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_CORE ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_CPU ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_DATA ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_FSIZE ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_NOFILE ideal-int +pkg syscall (freebsd-amd64), const RLIMIT_STACK ideal-int +pkg syscall (freebsd-amd64), const RLIM_INFINITY ideal-int +pkg syscall (freebsd-amd64), const RTAX_AUTHOR ideal-int +pkg syscall (freebsd-amd64), const RTAX_BRD ideal-int +pkg syscall (freebsd-amd64), const RTAX_DST ideal-int +pkg syscall (freebsd-amd64), const RTAX_GATEWAY ideal-int +pkg syscall (freebsd-amd64), const RTAX_GENMASK ideal-int +pkg syscall (freebsd-amd64), const RTAX_IFA ideal-int +pkg syscall (freebsd-amd64), const RTAX_IFP ideal-int +pkg syscall (freebsd-amd64), const RTAX_MAX ideal-int +pkg syscall (freebsd-amd64), const RTAX_NETMASK ideal-int +pkg syscall (freebsd-amd64), const RTA_AUTHOR ideal-int +pkg syscall (freebsd-amd64), const RTA_BRD ideal-int +pkg syscall (freebsd-amd64), const RTA_DST ideal-int +pkg syscall (freebsd-amd64), const RTA_GATEWAY ideal-int +pkg syscall (freebsd-amd64), const RTA_GENMASK ideal-int +pkg syscall (freebsd-amd64), const RTA_IFA ideal-int +pkg syscall (freebsd-amd64), const RTA_IFP ideal-int +pkg syscall (freebsd-amd64), const RTA_NETMASK ideal-int +pkg syscall (freebsd-amd64), const RTF_BLACKHOLE ideal-int +pkg syscall (freebsd-amd64), const RTF_BROADCAST ideal-int +pkg syscall (freebsd-amd64), const RTF_DONE ideal-int +pkg syscall (freebsd-amd64), const RTF_DYNAMIC ideal-int +pkg syscall (freebsd-amd64), const RTF_FMASK ideal-int +pkg syscall (freebsd-amd64), const RTF_GATEWAY ideal-int +pkg syscall (freebsd-amd64), const RTF_HOST ideal-int +pkg syscall (freebsd-amd64), const RTF_LLDATA ideal-int +pkg syscall (freebsd-amd64), const RTF_LLINFO ideal-int +pkg syscall (freebsd-amd64), const RTF_LOCAL ideal-int +pkg syscall (freebsd-amd64), const RTF_MODIFIED ideal-int +pkg syscall (freebsd-amd64), const RTF_MULTICAST ideal-int +pkg syscall (freebsd-amd64), const RTF_PINNED ideal-int +pkg syscall (freebsd-amd64), const RTF_PRCLONING ideal-int +pkg syscall (freebsd-amd64), const RTF_PROTO1 ideal-int +pkg syscall (freebsd-amd64), const RTF_PROTO2 ideal-int +pkg syscall (freebsd-amd64), const RTF_PROTO3 ideal-int +pkg syscall (freebsd-amd64), const RTF_REJECT ideal-int +pkg syscall (freebsd-amd64), const RTF_RNH_LOCKED ideal-int +pkg syscall (freebsd-amd64), const RTF_STATIC ideal-int +pkg syscall (freebsd-amd64), const RTF_STICKY ideal-int +pkg syscall (freebsd-amd64), const RTF_UP ideal-int +pkg syscall (freebsd-amd64), const RTF_XRESOLVE ideal-int +pkg syscall (freebsd-amd64), const RTM_ADD ideal-int +pkg syscall (freebsd-amd64), const RTM_CHANGE ideal-int +pkg syscall (freebsd-amd64), const RTM_DELADDR ideal-int +pkg syscall (freebsd-amd64), const RTM_DELETE ideal-int +pkg syscall (freebsd-amd64), const RTM_DELMADDR ideal-int +pkg syscall (freebsd-amd64), const RTM_GET ideal-int +pkg syscall (freebsd-amd64), const RTM_IEEE80211 ideal-int +pkg syscall (freebsd-amd64), const RTM_IFANNOUNCE ideal-int +pkg syscall (freebsd-amd64), const RTM_IFINFO ideal-int +pkg syscall (freebsd-amd64), const RTM_LOCK ideal-int +pkg syscall (freebsd-amd64), const RTM_LOSING ideal-int +pkg syscall (freebsd-amd64), const RTM_MISS ideal-int +pkg syscall (freebsd-amd64), const RTM_NEWADDR ideal-int +pkg syscall (freebsd-amd64), const RTM_NEWMADDR ideal-int +pkg syscall (freebsd-amd64), const RTM_OLDADD ideal-int +pkg syscall (freebsd-amd64), const RTM_OLDDEL ideal-int +pkg syscall (freebsd-amd64), const RTM_REDIRECT ideal-int +pkg syscall (freebsd-amd64), const RTM_RESOLVE ideal-int +pkg syscall (freebsd-amd64), const RTM_RTTUNIT ideal-int +pkg syscall (freebsd-amd64), const RTM_VERSION ideal-int +pkg syscall (freebsd-amd64), const RTV_EXPIRE ideal-int +pkg syscall (freebsd-amd64), const RTV_HOPCOUNT ideal-int +pkg syscall (freebsd-amd64), const RTV_MTU ideal-int +pkg syscall (freebsd-amd64), const RTV_RPIPE ideal-int +pkg syscall (freebsd-amd64), const RTV_RTT ideal-int +pkg syscall (freebsd-amd64), const RTV_RTTVAR ideal-int +pkg syscall (freebsd-amd64), const RTV_SPIPE ideal-int +pkg syscall (freebsd-amd64), const RTV_SSTHRESH ideal-int +pkg syscall (freebsd-amd64), const RTV_WEIGHT ideal-int +pkg syscall (freebsd-amd64), const RUSAGE_CHILDREN ideal-int +pkg syscall (freebsd-amd64), const RUSAGE_SELF ideal-int +pkg syscall (freebsd-amd64), const RUSAGE_THREAD ideal-int +pkg syscall (freebsd-amd64), const SCM_BINTIME ideal-int +pkg syscall (freebsd-amd64), const SCM_CREDS ideal-int +pkg syscall (freebsd-amd64), const SCM_RIGHTS ideal-int +pkg syscall (freebsd-amd64), const SCM_TIMESTAMP ideal-int +pkg syscall (freebsd-amd64), const SIGCHLD Signal +pkg syscall (freebsd-amd64), const SIGCONT Signal +pkg syscall (freebsd-amd64), const SIGEMT Signal +pkg syscall (freebsd-amd64), const SIGINFO Signal +pkg syscall (freebsd-amd64), const SIGIO Signal +pkg syscall (freebsd-amd64), const SIGIOT Signal +pkg syscall (freebsd-amd64), const SIGLWP Signal +pkg syscall (freebsd-amd64), const SIGPROF Signal +pkg syscall (freebsd-amd64), const SIGSTOP Signal +pkg syscall (freebsd-amd64), const SIGSYS Signal +pkg syscall (freebsd-amd64), const SIGTHR Signal +pkg syscall (freebsd-amd64), const SIGTSTP Signal +pkg syscall (freebsd-amd64), const SIGTTIN Signal +pkg syscall (freebsd-amd64), const SIGTTOU Signal +pkg syscall (freebsd-amd64), const SIGURG Signal +pkg syscall (freebsd-amd64), const SIGUSR1 Signal +pkg syscall (freebsd-amd64), const SIGUSR2 Signal +pkg syscall (freebsd-amd64), const SIGVTALRM Signal +pkg syscall (freebsd-amd64), const SIGWINCH Signal +pkg syscall (freebsd-amd64), const SIGXCPU Signal +pkg syscall (freebsd-amd64), const SIGXFSZ Signal +pkg syscall (freebsd-amd64), const SIOCADDMULTI ideal-int +pkg syscall (freebsd-amd64), const SIOCADDRT ideal-int +pkg syscall (freebsd-amd64), const SIOCAIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCAIFGROUP ideal-int +pkg syscall (freebsd-amd64), const SIOCALIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCATMARK ideal-int +pkg syscall (freebsd-amd64), const SIOCDELMULTI ideal-int +pkg syscall (freebsd-amd64), const SIOCDELRT ideal-int +pkg syscall (freebsd-amd64), const SIOCDIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCDIFGROUP ideal-int +pkg syscall (freebsd-amd64), const SIOCDIFPHYADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCDLIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGDRVSPEC ideal-int +pkg syscall (freebsd-amd64), const SIOCGETSGCNT ideal-int +pkg syscall (freebsd-amd64), const SIOCGETVIFCNT ideal-int +pkg syscall (freebsd-amd64), const SIOCGHIWAT ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFBRDADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFCAP ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFCONF ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFDESCR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFDSTADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFFLAGS ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFGENERIC ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFGMEMB ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFGROUP ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFINDEX ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFMAC ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFMEDIA ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFMETRIC ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFMTU ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFNETMASK ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFPDSTADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFPHYS ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFPSRCADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGIFSTATUS ideal-int +pkg syscall (freebsd-amd64), const SIOCGLIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGLIFPHYADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCGLOWAT ideal-int +pkg syscall (freebsd-amd64), const SIOCGPGRP ideal-int +pkg syscall (freebsd-amd64), const SIOCGPRIVATE_0 ideal-int +pkg syscall (freebsd-amd64), const SIOCGPRIVATE_1 ideal-int +pkg syscall (freebsd-amd64), const SIOCIFCREATE ideal-int +pkg syscall (freebsd-amd64), const SIOCIFCREATE2 ideal-int +pkg syscall (freebsd-amd64), const SIOCIFDESTROY ideal-int +pkg syscall (freebsd-amd64), const SIOCIFGCLONERS ideal-int +pkg syscall (freebsd-amd64), const SIOCSDRVSPEC ideal-int +pkg syscall (freebsd-amd64), const SIOCSHIWAT ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFBRDADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFCAP ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFDESCR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFDSTADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFFLAGS ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFGENERIC ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFLLADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFMAC ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFMEDIA ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFMETRIC ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFMTU ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFNAME ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFNETMASK ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFPHYADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFPHYS ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFRVNET ideal-int +pkg syscall (freebsd-amd64), const SIOCSIFVNET ideal-int +pkg syscall (freebsd-amd64), const SIOCSLIFPHYADDR ideal-int +pkg syscall (freebsd-amd64), const SIOCSLOWAT ideal-int +pkg syscall (freebsd-amd64), const SIOCSPGRP ideal-int +pkg syscall (freebsd-amd64), const SOCK_MAXADDRLEN ideal-int +pkg syscall (freebsd-amd64), const SOCK_RDM ideal-int +pkg syscall (freebsd-amd64), const SO_ACCEPTCONN ideal-int +pkg syscall (freebsd-amd64), const SO_ACCEPTFILTER ideal-int +pkg syscall (freebsd-amd64), const SO_BINTIME ideal-int +pkg syscall (freebsd-amd64), const SO_DEBUG ideal-int +pkg syscall (freebsd-amd64), const SO_ERROR ideal-int +pkg syscall (freebsd-amd64), const SO_LABEL ideal-int +pkg syscall (freebsd-amd64), const SO_LISTENINCQLEN ideal-int +pkg syscall (freebsd-amd64), const SO_LISTENQLEN ideal-int +pkg syscall (freebsd-amd64), const SO_LISTENQLIMIT ideal-int +pkg syscall (freebsd-amd64), const SO_NOSIGPIPE ideal-int +pkg syscall (freebsd-amd64), const SO_NO_DDP ideal-int +pkg syscall (freebsd-amd64), const SO_NO_OFFLOAD ideal-int +pkg syscall (freebsd-amd64), const SO_OOBINLINE ideal-int +pkg syscall (freebsd-amd64), const SO_PEERLABEL ideal-int +pkg syscall (freebsd-amd64), const SO_RCVLOWAT ideal-int +pkg syscall (freebsd-amd64), const SO_RCVTIMEO ideal-int +pkg syscall (freebsd-amd64), const SO_REUSEPORT ideal-int +pkg syscall (freebsd-amd64), const SO_SETFIB ideal-int +pkg syscall (freebsd-amd64), const SO_SNDLOWAT ideal-int +pkg syscall (freebsd-amd64), const SO_SNDTIMEO ideal-int +pkg syscall (freebsd-amd64), const SO_TIMESTAMP ideal-int +pkg syscall (freebsd-amd64), const SO_TYPE ideal-int +pkg syscall (freebsd-amd64), const SO_USELOOPBACK ideal-int +pkg syscall (freebsd-amd64), const SYS_ABORT2 ideal-int +pkg syscall (freebsd-amd64), const SYS_ACCEPT ideal-int +pkg syscall (freebsd-amd64), const SYS_ACCESS ideal-int +pkg syscall (freebsd-amd64), const SYS_ACCT ideal-int +pkg syscall (freebsd-amd64), const SYS_ADJTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_AUDIT ideal-int +pkg syscall (freebsd-amd64), const SYS_AUDITCTL ideal-int +pkg syscall (freebsd-amd64), const SYS_AUDITON ideal-int +pkg syscall (freebsd-amd64), const SYS_BIND ideal-int +pkg syscall (freebsd-amd64), const SYS_CAP_ENTER ideal-int +pkg syscall (freebsd-amd64), const SYS_CAP_GETMODE ideal-int +pkg syscall (freebsd-amd64), const SYS_CAP_GETRIGHTS ideal-int +pkg syscall (freebsd-amd64), const SYS_CAP_NEW ideal-int +pkg syscall (freebsd-amd64), const SYS_CHDIR ideal-int +pkg syscall (freebsd-amd64), const SYS_CHFLAGS ideal-int +pkg syscall (freebsd-amd64), const SYS_CHMOD ideal-int +pkg syscall (freebsd-amd64), const SYS_CHOWN ideal-int +pkg syscall (freebsd-amd64), const SYS_CHROOT ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOSE ideal-int +pkg syscall (freebsd-amd64), const SYS_CLOSEFROM ideal-int +pkg syscall (freebsd-amd64), const SYS_CONNECT ideal-int +pkg syscall (freebsd-amd64), const SYS_CPUSET ideal-int +pkg syscall (freebsd-amd64), const SYS_CPUSET_GETAFFINITY ideal-int +pkg syscall (freebsd-amd64), const SYS_CPUSET_GETID ideal-int +pkg syscall (freebsd-amd64), const SYS_CPUSET_SETAFFINITY ideal-int +pkg syscall (freebsd-amd64), const SYS_CPUSET_SETID ideal-int +pkg syscall (freebsd-amd64), const SYS_DUP ideal-int +pkg syscall (freebsd-amd64), const SYS_DUP2 ideal-int +pkg syscall (freebsd-amd64), const SYS_EACCESS ideal-int +pkg syscall (freebsd-amd64), const SYS_EXECVE ideal-int +pkg syscall (freebsd-amd64), const SYS_EXIT ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTRCTL ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FD ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_DELETE_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_GET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FD ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_LIST_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS_EXTATTR_SET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS_FACCESSAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHDIR ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHFLAGS ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHMOD ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHMODAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHOWN ideal-int +pkg syscall (freebsd-amd64), const SYS_FCHOWNAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FCNTL ideal-int +pkg syscall (freebsd-amd64), const SYS_FEXECVE ideal-int +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETCOUNTER ideal-int +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_GETESTIMATE ideal-int +pkg syscall (freebsd-amd64), const SYS_FFCLOCK_SETESTIMATE ideal-int +pkg syscall (freebsd-amd64), const SYS_FHOPEN ideal-int +pkg syscall (freebsd-amd64), const SYS_FHSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FHSTATFS ideal-int +pkg syscall (freebsd-amd64), const SYS_FLOCK ideal-int +pkg syscall (freebsd-amd64), const SYS_FORK ideal-int +pkg syscall (freebsd-amd64), const SYS_FPATHCONF ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_FTRUNCATE ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_LSEEK ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_MMAP ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PREAD ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_PWRITE ideal-int +pkg syscall (freebsd-amd64), const SYS_FREEBSD6_TRUNCATE ideal-int +pkg syscall (freebsd-amd64), const SYS_FSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FSTATAT ideal-int +pkg syscall (freebsd-amd64), const SYS_FSTATFS ideal-int +pkg syscall (freebsd-amd64), const SYS_FSYNC ideal-int +pkg syscall (freebsd-amd64), const SYS_FTRUNCATE ideal-int +pkg syscall (freebsd-amd64), const SYS_FUTIMES ideal-int +pkg syscall (freebsd-amd64), const SYS_FUTIMESAT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETAUDIT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETAUDIT_ADDR ideal-int +pkg syscall (freebsd-amd64), const SYS_GETAUID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETCONTEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETDENTS ideal-int +pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES ideal-int +pkg syscall (freebsd-amd64), const SYS_GETDTABLESIZE ideal-int +pkg syscall (freebsd-amd64), const SYS_GETEGID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETEUID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETFH ideal-int +pkg syscall (freebsd-amd64), const SYS_GETFSSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETGID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETGROUPS ideal-int +pkg syscall (freebsd-amd64), const SYS_GETITIMER ideal-int +pkg syscall (freebsd-amd64), const SYS_GETLOGIN ideal-int +pkg syscall (freebsd-amd64), const SYS_GETLOGINCLASS ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPEERNAME ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPGID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPGRP ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPPID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETPRIORITY ideal-int +pkg syscall (freebsd-amd64), const SYS_GETRESGID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETRESUID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETRLIMIT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETRUSAGE ideal-int +pkg syscall (freebsd-amd64), const SYS_GETSID ideal-int +pkg syscall (freebsd-amd64), const SYS_GETSOCKNAME ideal-int +pkg syscall (freebsd-amd64), const SYS_GETSOCKOPT ideal-int +pkg syscall (freebsd-amd64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (freebsd-amd64), const SYS_GETUID ideal-int +pkg syscall (freebsd-amd64), const SYS_IOCTL ideal-int +pkg syscall (freebsd-amd64), const SYS_ISSETUGID ideal-int +pkg syscall (freebsd-amd64), const SYS_JAIL ideal-int +pkg syscall (freebsd-amd64), const SYS_JAIL_ATTACH ideal-int +pkg syscall (freebsd-amd64), const SYS_JAIL_GET ideal-int +pkg syscall (freebsd-amd64), const SYS_JAIL_REMOVE ideal-int +pkg syscall (freebsd-amd64), const SYS_JAIL_SET ideal-int +pkg syscall (freebsd-amd64), const SYS_KENV ideal-int +pkg syscall (freebsd-amd64), const SYS_KEVENT ideal-int +pkg syscall (freebsd-amd64), const SYS_KILL ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDFIND ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDFIRSTMOD ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDLOAD ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDNEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDSYM ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDUNLOAD ideal-int +pkg syscall (freebsd-amd64), const SYS_KLDUNLOADF ideal-int +pkg syscall (freebsd-amd64), const SYS_KQUEUE ideal-int +pkg syscall (freebsd-amd64), const SYS_KTIMER_CREATE ideal-int +pkg syscall (freebsd-amd64), const SYS_KTIMER_DELETE ideal-int +pkg syscall (freebsd-amd64), const SYS_KTIMER_GETOVERRUN ideal-int +pkg syscall (freebsd-amd64), const SYS_KTIMER_GETTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_KTIMER_SETTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_KTRACE ideal-int +pkg syscall (freebsd-amd64), const SYS_LCHFLAGS ideal-int +pkg syscall (freebsd-amd64), const SYS_LCHMOD ideal-int +pkg syscall (freebsd-amd64), const SYS_LCHOWN ideal-int +pkg syscall (freebsd-amd64), const SYS_LGETFH ideal-int +pkg syscall (freebsd-amd64), const SYS_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS_LINKAT ideal-int +pkg syscall (freebsd-amd64), const SYS_LISTEN ideal-int +pkg syscall (freebsd-amd64), const SYS_LPATHCONF ideal-int +pkg syscall (freebsd-amd64), const SYS_LSEEK ideal-int +pkg syscall (freebsd-amd64), const SYS_LSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_LUTIMES ideal-int +pkg syscall (freebsd-amd64), const SYS_MAC_SYSCALL ideal-int +pkg syscall (freebsd-amd64), const SYS_MADVISE ideal-int +pkg syscall (freebsd-amd64), const SYS_MINCORE ideal-int +pkg syscall (freebsd-amd64), const SYS_MINHERIT ideal-int +pkg syscall (freebsd-amd64), const SYS_MKDIR ideal-int +pkg syscall (freebsd-amd64), const SYS_MKDIRAT ideal-int +pkg syscall (freebsd-amd64), const SYS_MKFIFO ideal-int +pkg syscall (freebsd-amd64), const SYS_MKFIFOAT ideal-int +pkg syscall (freebsd-amd64), const SYS_MKNOD ideal-int +pkg syscall (freebsd-amd64), const SYS_MKNODAT ideal-int +pkg syscall (freebsd-amd64), const SYS_MLOCK ideal-int +pkg syscall (freebsd-amd64), const SYS_MLOCKALL ideal-int +pkg syscall (freebsd-amd64), const SYS_MMAP ideal-int +pkg syscall (freebsd-amd64), const SYS_MODFIND ideal-int +pkg syscall (freebsd-amd64), const SYS_MODFNEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_MODNEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_MODSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_MOUNT ideal-int +pkg syscall (freebsd-amd64), const SYS_MPROTECT ideal-int +pkg syscall (freebsd-amd64), const SYS_MSYNC ideal-int +pkg syscall (freebsd-amd64), const SYS_MUNLOCK ideal-int +pkg syscall (freebsd-amd64), const SYS_MUNLOCKALL ideal-int +pkg syscall (freebsd-amd64), const SYS_MUNMAP ideal-int +pkg syscall (freebsd-amd64), const SYS_NANOSLEEP ideal-int +pkg syscall (freebsd-amd64), const SYS_NFSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_NLSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_NMOUNT ideal-int +pkg syscall (freebsd-amd64), const SYS_NSTAT ideal-int +pkg syscall (freebsd-amd64), const SYS_NTP_ADJTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_NTP_GETTIME ideal-int +pkg syscall (freebsd-amd64), const SYS_OBREAK ideal-int +pkg syscall (freebsd-amd64), const SYS_OPEN ideal-int +pkg syscall (freebsd-amd64), const SYS_OPENAT ideal-int +pkg syscall (freebsd-amd64), const SYS_OPENBSD_POLL ideal-int +pkg syscall (freebsd-amd64), const SYS_OVADVISE ideal-int +pkg syscall (freebsd-amd64), const SYS_PATHCONF ideal-int +pkg syscall (freebsd-amd64), const SYS_PDFORK ideal-int +pkg syscall (freebsd-amd64), const SYS_PDGETPID ideal-int +pkg syscall (freebsd-amd64), const SYS_PDKILL ideal-int +pkg syscall (freebsd-amd64), const SYS_PIPE ideal-int +pkg syscall (freebsd-amd64), const SYS_POLL ideal-int +pkg syscall (freebsd-amd64), const SYS_POSIX_FADVISE ideal-int +pkg syscall (freebsd-amd64), const SYS_POSIX_FALLOCATE ideal-int +pkg syscall (freebsd-amd64), const SYS_POSIX_OPENPT ideal-int +pkg syscall (freebsd-amd64), const SYS_PREAD ideal-int +pkg syscall (freebsd-amd64), const SYS_PREADV ideal-int +pkg syscall (freebsd-amd64), const SYS_PROFIL ideal-int +pkg syscall (freebsd-amd64), const SYS_PSELECT ideal-int +pkg syscall (freebsd-amd64), const SYS_PTRACE ideal-int +pkg syscall (freebsd-amd64), const SYS_PWRITE ideal-int +pkg syscall (freebsd-amd64), const SYS_PWRITEV ideal-int +pkg syscall (freebsd-amd64), const SYS_QUOTACTL ideal-int +pkg syscall (freebsd-amd64), const SYS_RCTL_ADD_RULE ideal-int +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_LIMITS ideal-int +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RACCT ideal-int +pkg syscall (freebsd-amd64), const SYS_RCTL_GET_RULES ideal-int +pkg syscall (freebsd-amd64), const SYS_RCTL_REMOVE_RULE ideal-int +pkg syscall (freebsd-amd64), const SYS_READ ideal-int +pkg syscall (freebsd-amd64), const SYS_READLINK ideal-int +pkg syscall (freebsd-amd64), const SYS_READLINKAT ideal-int +pkg syscall (freebsd-amd64), const SYS_READV ideal-int +pkg syscall (freebsd-amd64), const SYS_REBOOT ideal-int +pkg syscall (freebsd-amd64), const SYS_RECVFROM ideal-int +pkg syscall (freebsd-amd64), const SYS_RECVMSG ideal-int +pkg syscall (freebsd-amd64), const SYS_RENAME ideal-int +pkg syscall (freebsd-amd64), const SYS_RENAMEAT ideal-int +pkg syscall (freebsd-amd64), const SYS_REVOKE ideal-int +pkg syscall (freebsd-amd64), const SYS_RFORK ideal-int +pkg syscall (freebsd-amd64), const SYS_RMDIR ideal-int +pkg syscall (freebsd-amd64), const SYS_RTPRIO ideal-int +pkg syscall (freebsd-amd64), const SYS_RTPRIO_THREAD ideal-int +pkg syscall (freebsd-amd64), const SYS_SBRK ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (freebsd-amd64), const SYS_SCHED_YIELD ideal-int +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_RECVMSG ideal-int +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG ideal-int +pkg syscall (freebsd-amd64), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int +pkg syscall (freebsd-amd64), const SYS_SCTP_PEELOFF ideal-int +pkg syscall (freebsd-amd64), const SYS_SELECT ideal-int +pkg syscall (freebsd-amd64), const SYS_SENDFILE ideal-int +pkg syscall (freebsd-amd64), const SYS_SENDMSG ideal-int +pkg syscall (freebsd-amd64), const SYS_SENDTO ideal-int +pkg syscall (freebsd-amd64), const SYS_SETAUDIT ideal-int +pkg syscall (freebsd-amd64), const SYS_SETAUDIT_ADDR ideal-int +pkg syscall (freebsd-amd64), const SYS_SETAUID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETCONTEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_SETEGID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETEUID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETFIB ideal-int +pkg syscall (freebsd-amd64), const SYS_SETGID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETGROUPS ideal-int +pkg syscall (freebsd-amd64), const SYS_SETITIMER ideal-int +pkg syscall (freebsd-amd64), const SYS_SETLOGIN ideal-int +pkg syscall (freebsd-amd64), const SYS_SETLOGINCLASS ideal-int +pkg syscall (freebsd-amd64), const SYS_SETPGID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETPRIORITY ideal-int +pkg syscall (freebsd-amd64), const SYS_SETREGID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETRESGID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETRESUID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETREUID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETRLIMIT ideal-int +pkg syscall (freebsd-amd64), const SYS_SETSID ideal-int +pkg syscall (freebsd-amd64), const SYS_SETSOCKOPT ideal-int +pkg syscall (freebsd-amd64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (freebsd-amd64), const SYS_SETUID ideal-int +pkg syscall (freebsd-amd64), const SYS_SHM_OPEN ideal-int +pkg syscall (freebsd-amd64), const SYS_SHM_UNLINK ideal-int +pkg syscall (freebsd-amd64), const SYS_SHUTDOWN ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGACTION ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGALTSTACK ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGPENDING ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGPROCMASK ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGQUEUE ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGRETURN ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGSUSPEND ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGTIMEDWAIT ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGWAIT ideal-int +pkg syscall (freebsd-amd64), const SYS_SIGWAITINFO ideal-int +pkg syscall (freebsd-amd64), const SYS_SOCKET ideal-int +pkg syscall (freebsd-amd64), const SYS_SOCKETPAIR ideal-int +pkg syscall (freebsd-amd64), const SYS_SSTK ideal-int +pkg syscall (freebsd-amd64), const SYS_STAT ideal-int +pkg syscall (freebsd-amd64), const SYS_STATFS ideal-int +pkg syscall (freebsd-amd64), const SYS_SWAPCONTEXT ideal-int +pkg syscall (freebsd-amd64), const SYS_SWAPOFF ideal-int +pkg syscall (freebsd-amd64), const SYS_SWAPON ideal-int +pkg syscall (freebsd-amd64), const SYS_SYMLINK ideal-int +pkg syscall (freebsd-amd64), const SYS_SYMLINKAT ideal-int +pkg syscall (freebsd-amd64), const SYS_SYNC ideal-int +pkg syscall (freebsd-amd64), const SYS_SYSARCH ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_CREATE ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_EXIT ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_KILL ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_KILL2 ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_NEW ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_SELF ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_SET_NAME ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_SUSPEND ideal-int +pkg syscall (freebsd-amd64), const SYS_THR_WAKE ideal-int +pkg syscall (freebsd-amd64), const SYS_TRUNCATE ideal-int +pkg syscall (freebsd-amd64), const SYS_UMASK ideal-int +pkg syscall (freebsd-amd64), const SYS_UNDELETE ideal-int +pkg syscall (freebsd-amd64), const SYS_UNLINK ideal-int +pkg syscall (freebsd-amd64), const SYS_UNLINKAT ideal-int +pkg syscall (freebsd-amd64), const SYS_UNMOUNT ideal-int +pkg syscall (freebsd-amd64), const SYS_UTIMES ideal-int +pkg syscall (freebsd-amd64), const SYS_UTRACE ideal-int +pkg syscall (freebsd-amd64), const SYS_UUIDGEN ideal-int +pkg syscall (freebsd-amd64), const SYS_VFORK ideal-int +pkg syscall (freebsd-amd64), const SYS_WAIT4 ideal-int +pkg syscall (freebsd-amd64), const SYS_WRITE ideal-int +pkg syscall (freebsd-amd64), const SYS_WRITEV ideal-int +pkg syscall (freebsd-amd64), const SYS_YIELD ideal-int +pkg syscall (freebsd-amd64), const SYS__UMTX_LOCK ideal-int +pkg syscall (freebsd-amd64), const SYS__UMTX_OP ideal-int +pkg syscall (freebsd-amd64), const SYS__UMTX_UNLOCK ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_ACLCHECK_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_DELETE_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_GET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_GET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_GET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_SET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_SET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___ACL_SET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___GETCWD ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_EXECVE ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_GET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_GET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_GET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_GET_PID ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_GET_PROC ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_SET_FD ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_SET_FILE ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_SET_LINK ideal-int +pkg syscall (freebsd-amd64), const SYS___MAC_SET_PROC ideal-int +pkg syscall (freebsd-amd64), const SYS___SETUGID ideal-int +pkg syscall (freebsd-amd64), const SYS___SYSCTL ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfHdr ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfInsn ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfProgram ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfStat ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfVersion ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfZbuf ideal-int +pkg syscall (freebsd-amd64), const SizeofBpfZbufHeader ideal-int +pkg syscall (freebsd-amd64), const SizeofCmsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofIPMreq ideal-int +pkg syscall (freebsd-amd64), const SizeofIPMreqn ideal-int +pkg syscall (freebsd-amd64), const SizeofIPv6Mreq ideal-int +pkg syscall (freebsd-amd64), const SizeofIfData ideal-int +pkg syscall (freebsd-amd64), const SizeofIfMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofIfaMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofIfmaMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofInet6Pktinfo ideal-int +pkg syscall (freebsd-amd64), const SizeofLinger ideal-int +pkg syscall (freebsd-amd64), const SizeofMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofRtMetrics ideal-int +pkg syscall (freebsd-amd64), const SizeofRtMsghdr ideal-int +pkg syscall (freebsd-amd64), const SizeofSockaddrAny ideal-int +pkg syscall (freebsd-amd64), const SizeofSockaddrDatalink ideal-int +pkg syscall (freebsd-amd64), const SizeofSockaddrInet4 ideal-int +pkg syscall (freebsd-amd64), const SizeofSockaddrInet6 ideal-int +pkg syscall (freebsd-amd64), const SizeofSockaddrUnix ideal-int +pkg syscall (freebsd-amd64), const TCP_CA_NAME_MAX ideal-int +pkg syscall (freebsd-amd64), const TCP_CONGESTION ideal-int +pkg syscall (freebsd-amd64), const TCP_INFO ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXBURST ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXHLEN ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXOLEN ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXSEG ideal-int +pkg syscall (freebsd-amd64), const TCP_MAXWIN ideal-int +pkg syscall (freebsd-amd64), const TCP_MAX_SACK ideal-int +pkg syscall (freebsd-amd64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (freebsd-amd64), const TCP_MD5SIG ideal-int +pkg syscall (freebsd-amd64), const TCP_MINMSS ideal-int +pkg syscall (freebsd-amd64), const TCP_MSS ideal-int +pkg syscall (freebsd-amd64), const TCP_NOOPT ideal-int +pkg syscall (freebsd-amd64), const TCP_NOPUSH ideal-int +pkg syscall (freebsd-amd64), const TIOCCBRK ideal-int +pkg syscall (freebsd-amd64), const TIOCCDTR ideal-int +pkg syscall (freebsd-amd64), const TIOCCONS ideal-int +pkg syscall (freebsd-amd64), const TIOCDRAIN ideal-int +pkg syscall (freebsd-amd64), const TIOCEXCL ideal-int +pkg syscall (freebsd-amd64), const TIOCEXT ideal-int +pkg syscall (freebsd-amd64), const TIOCFLUSH ideal-int +pkg syscall (freebsd-amd64), const TIOCGDRAINWAIT ideal-int +pkg syscall (freebsd-amd64), const TIOCGETA ideal-int +pkg syscall (freebsd-amd64), const TIOCGETD ideal-int +pkg syscall (freebsd-amd64), const TIOCGPGRP ideal-int +pkg syscall (freebsd-amd64), const TIOCGPTN ideal-int +pkg syscall (freebsd-amd64), const TIOCGSID ideal-int +pkg syscall (freebsd-amd64), const TIOCGWINSZ ideal-int +pkg syscall (freebsd-amd64), const TIOCMBIC ideal-int +pkg syscall (freebsd-amd64), const TIOCMBIS ideal-int +pkg syscall (freebsd-amd64), const TIOCMGDTRWAIT ideal-int +pkg syscall (freebsd-amd64), const TIOCMGET ideal-int +pkg syscall (freebsd-amd64), const TIOCMSDTRWAIT ideal-int +pkg syscall (freebsd-amd64), const TIOCMSET ideal-int +pkg syscall (freebsd-amd64), const TIOCM_CAR ideal-int +pkg syscall (freebsd-amd64), const TIOCM_CD ideal-int +pkg syscall (freebsd-amd64), const TIOCM_CTS ideal-int +pkg syscall (freebsd-amd64), const TIOCM_DCD ideal-int +pkg syscall (freebsd-amd64), const TIOCM_DSR ideal-int +pkg syscall (freebsd-amd64), const TIOCM_DTR ideal-int +pkg syscall (freebsd-amd64), const TIOCM_LE ideal-int +pkg syscall (freebsd-amd64), const TIOCM_RI ideal-int +pkg syscall (freebsd-amd64), const TIOCM_RNG ideal-int +pkg syscall (freebsd-amd64), const TIOCM_RTS ideal-int +pkg syscall (freebsd-amd64), const TIOCM_SR ideal-int +pkg syscall (freebsd-amd64), const TIOCM_ST ideal-int +pkg syscall (freebsd-amd64), const TIOCNOTTY ideal-int +pkg syscall (freebsd-amd64), const TIOCNXCL ideal-int +pkg syscall (freebsd-amd64), const TIOCOUTQ ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_DATA ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_IOCTL ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_START ideal-int +pkg syscall (freebsd-amd64), const TIOCPKT_STOP ideal-int +pkg syscall (freebsd-amd64), const TIOCPTMASTER ideal-int +pkg syscall (freebsd-amd64), const TIOCSBRK ideal-int +pkg syscall (freebsd-amd64), const TIOCSCTTY ideal-int +pkg syscall (freebsd-amd64), const TIOCSDRAINWAIT ideal-int +pkg syscall (freebsd-amd64), const TIOCSDTR ideal-int +pkg syscall (freebsd-amd64), const TIOCSETA ideal-int +pkg syscall (freebsd-amd64), const TIOCSETAF ideal-int +pkg syscall (freebsd-amd64), const TIOCSETAW ideal-int +pkg syscall (freebsd-amd64), const TIOCSETD ideal-int +pkg syscall (freebsd-amd64), const TIOCSIG ideal-int +pkg syscall (freebsd-amd64), const TIOCSPGRP ideal-int +pkg syscall (freebsd-amd64), const TIOCSTART ideal-int +pkg syscall (freebsd-amd64), const TIOCSTAT ideal-int +pkg syscall (freebsd-amd64), const TIOCSTI ideal-int +pkg syscall (freebsd-amd64), const TIOCSTOP ideal-int +pkg syscall (freebsd-amd64), const TIOCSWINSZ ideal-int +pkg syscall (freebsd-amd64), const TIOCTIMESTAMP ideal-int +pkg syscall (freebsd-amd64), const TIOCUCNTL ideal-int +pkg syscall (freebsd-amd64), const WCONTINUED ideal-int +pkg syscall (freebsd-amd64), const WCOREFLAG ideal-int +pkg syscall (freebsd-amd64), const WLINUXCLONE ideal-int +pkg syscall (freebsd-amd64), const WNOHANG ideal-int +pkg syscall (freebsd-amd64), const WNOWAIT ideal-int +pkg syscall (freebsd-amd64), const WSTOPPED ideal-int +pkg syscall (freebsd-amd64), const WUNTRACED ideal-int +pkg syscall (freebsd-amd64), func Accept(int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64), func Access(string, uint32) error +pkg syscall (freebsd-amd64), func Adjtime(*Timeval, *Timeval) error +pkg syscall (freebsd-amd64), func Bind(int, Sockaddr) error +pkg syscall (freebsd-amd64), func BpfBuflen(int) (int, error) +pkg syscall (freebsd-amd64), func BpfDatalink(int) (int, error) +pkg syscall (freebsd-amd64), func BpfHeadercmpl(int) (int, error) +pkg syscall (freebsd-amd64), func BpfInterface(int, string) (string, error) +pkg syscall (freebsd-amd64), func BpfJump(int, int, int, int) *BpfInsn +pkg syscall (freebsd-amd64), func BpfStats(int) (*BpfStat, error) +pkg syscall (freebsd-amd64), func BpfStmt(int, int) *BpfInsn +pkg syscall (freebsd-amd64), func BpfTimeout(int) (*Timeval, error) +pkg syscall (freebsd-amd64), func CheckBpfVersion(int) error +pkg syscall (freebsd-amd64), func Chflags(string, int) error +pkg syscall (freebsd-amd64), func Chroot(string) error +pkg syscall (freebsd-amd64), func Close(int) error +pkg syscall (freebsd-amd64), func CloseOnExec(int) +pkg syscall (freebsd-amd64), func CmsgLen(int) int +pkg syscall (freebsd-amd64), func CmsgSpace(int) int +pkg syscall (freebsd-amd64), func Connect(int, Sockaddr) error +pkg syscall (freebsd-amd64), func Dup(int) (int, error) +pkg syscall (freebsd-amd64), func Dup2(int, int) error +pkg syscall (freebsd-amd64), func Fchdir(int) error +pkg syscall (freebsd-amd64), func Fchflags(string, int) error +pkg syscall (freebsd-amd64), func Fchmod(int, uint32) error +pkg syscall (freebsd-amd64), func Fchown(int, int, int) error +pkg syscall (freebsd-amd64), func Flock(int, int) error +pkg syscall (freebsd-amd64), func FlushBpf(int) error +pkg syscall (freebsd-amd64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (freebsd-amd64), func Fpathconf(int, int) (int, error) +pkg syscall (freebsd-amd64), func Fstat(int, *Stat_t) error +pkg syscall (freebsd-amd64), func Fstatfs(int, *Statfs_t) error +pkg syscall (freebsd-amd64), func Fsync(int) error +pkg syscall (freebsd-amd64), func Ftruncate(int, int64) error +pkg syscall (freebsd-amd64), func Futimes(int, []Timeval) error +pkg syscall (freebsd-amd64), func Getdirentries(int, []uint8, *uintptr) (int, error) +pkg syscall (freebsd-amd64), func Getdtablesize() int +pkg syscall (freebsd-amd64), func Getfsstat([]Statfs_t, int) (int, error) +pkg syscall (freebsd-amd64), func Getpeername(int) (Sockaddr, error) +pkg syscall (freebsd-amd64), func Getpgid(int) (int, error) +pkg syscall (freebsd-amd64), func Getpgrp() int +pkg syscall (freebsd-amd64), func Getpriority(int, int) (int, error) +pkg syscall (freebsd-amd64), func Getrlimit(int, *Rlimit) error +pkg syscall (freebsd-amd64), func Getrusage(int, *Rusage) error +pkg syscall (freebsd-amd64), func Getsid(int) (int, error) +pkg syscall (freebsd-amd64), func Getsockname(int) (Sockaddr, error) +pkg syscall (freebsd-amd64), func GetsockoptByte(int, int, int) (uint8, error) +pkg syscall (freebsd-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (freebsd-amd64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (freebsd-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (freebsd-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (freebsd-amd64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (freebsd-amd64), func Issetugid() bool +pkg syscall (freebsd-amd64), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error) +pkg syscall (freebsd-amd64), func Kill(int, Signal) error +pkg syscall (freebsd-amd64), func Kqueue() (int, error) +pkg syscall (freebsd-amd64), func Listen(int, int) error +pkg syscall (freebsd-amd64), func Lstat(string, *Stat_t) error +pkg syscall (freebsd-amd64), func Mkfifo(string, uint32) error +pkg syscall (freebsd-amd64), func Mknod(string, uint32, int) error +pkg syscall (freebsd-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (freebsd-amd64), func Munmap([]uint8) error +pkg syscall (freebsd-amd64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (freebsd-amd64), func NsecToTimespec(int64) Timespec +pkg syscall (freebsd-amd64), func Open(string, int, uint32) (int, error) +pkg syscall (freebsd-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (freebsd-amd64), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error) +pkg syscall (freebsd-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error) +pkg syscall (freebsd-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (freebsd-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (freebsd-amd64), func Pathconf(string, int) (int, error) +pkg syscall (freebsd-amd64), func Pipe([]int) error +pkg syscall (freebsd-amd64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (freebsd-amd64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (freebsd-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64), func Read(int, []uint8) (int, error) +pkg syscall (freebsd-amd64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (freebsd-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (freebsd-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (freebsd-amd64), func Revoke(string) error +pkg syscall (freebsd-amd64), func RouteRIB(int, int) ([]uint8, error) +pkg syscall (freebsd-amd64), func Seek(int, int64, int) (int64, error) +pkg syscall (freebsd-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error +pkg syscall (freebsd-amd64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (freebsd-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (freebsd-amd64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (freebsd-amd64), func SetBpf(int, []BpfInsn) error +pkg syscall (freebsd-amd64), func SetBpfBuflen(int, int) (int, error) +pkg syscall (freebsd-amd64), func SetBpfDatalink(int, int) (int, error) +pkg syscall (freebsd-amd64), func SetBpfHeadercmpl(int, int) error +pkg syscall (freebsd-amd64), func SetBpfImmediate(int, int) error +pkg syscall (freebsd-amd64), func SetBpfInterface(int, string) error +pkg syscall (freebsd-amd64), func SetBpfPromisc(int, int) error +pkg syscall (freebsd-amd64), func SetBpfTimeout(int, *Timeval) error +pkg syscall (freebsd-amd64), func SetKevent(*Kevent_t, int, int, int) +pkg syscall (freebsd-amd64), func SetNonblock(int, bool) error +pkg syscall (freebsd-amd64), func Setegid(int) error +pkg syscall (freebsd-amd64), func Seteuid(int) error +pkg syscall (freebsd-amd64), func Setgid(int) error +pkg syscall (freebsd-amd64), func Setgroups([]int) error +pkg syscall (freebsd-amd64), func Setlogin(string) error +pkg syscall (freebsd-amd64), func Setpgid(int, int) error +pkg syscall (freebsd-amd64), func Setpriority(int, int, int) error +pkg syscall (freebsd-amd64), func Setregid(int, int) error +pkg syscall (freebsd-amd64), func Setreuid(int, int) error +pkg syscall (freebsd-amd64), func Setrlimit(int, *Rlimit) error +pkg syscall (freebsd-amd64), func Setsid() (int, error) +pkg syscall (freebsd-amd64), func SetsockoptByte(int, int, int, uint8) error +pkg syscall (freebsd-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (freebsd-amd64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (freebsd-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (freebsd-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (freebsd-amd64), func SetsockoptInt(int, int, int, int) error +pkg syscall (freebsd-amd64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (freebsd-amd64), func SetsockoptString(int, int, int, string) error +pkg syscall (freebsd-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (freebsd-amd64), func Settimeofday(*Timeval) error +pkg syscall (freebsd-amd64), func Setuid(int) error +pkg syscall (freebsd-amd64), func Shutdown(int, int) error +pkg syscall (freebsd-amd64), func Socket(int, int, int) (int, error) +pkg syscall (freebsd-amd64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (freebsd-amd64), func Stat(string, *Stat_t) error +pkg syscall (freebsd-amd64), func Statfs(string, *Statfs_t) error +pkg syscall (freebsd-amd64), func StringSlicePtr([]string) []*uint8 +pkg syscall (freebsd-amd64), func Sync() error +pkg syscall (freebsd-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (freebsd-amd64), func Sysctl(string) (string, error) +pkg syscall (freebsd-amd64), func SysctlUint32(string) (uint32, error) +pkg syscall (freebsd-amd64), func TimespecToNsec(Timespec) int64 +pkg syscall (freebsd-amd64), func TimevalToNsec(Timeval) int64 +pkg syscall (freebsd-amd64), func Truncate(string, int64) error +pkg syscall (freebsd-amd64), func Umask(int) int +pkg syscall (freebsd-amd64), func Undelete(string) error +pkg syscall (freebsd-amd64), func UnixRights(...int) []uint8 +pkg syscall (freebsd-amd64), func Unmount(string, int) error +pkg syscall (freebsd-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (freebsd-amd64), func Write(int, []uint8) (int, error) +pkg syscall (freebsd-amd64), method (*Cmsghdr) SetLen(int) +pkg syscall (freebsd-amd64), method (*Iovec) SetLen(int) +pkg syscall (freebsd-amd64), method (*Msghdr) SetControllen(int) +pkg syscall (freebsd-amd64), type BpfHdr struct +pkg syscall (freebsd-amd64), type BpfHdr struct, Caplen uint32 +pkg syscall (freebsd-amd64), type BpfHdr struct, Datalen uint32 +pkg syscall (freebsd-amd64), type BpfHdr struct, Hdrlen uint16 +pkg syscall (freebsd-amd64), type BpfHdr struct, Pad_cgo_0 [6]uint8 +pkg syscall (freebsd-amd64), type BpfHdr struct, Tstamp Timeval +pkg syscall (freebsd-amd64), type BpfInsn struct +pkg syscall (freebsd-amd64), type BpfInsn struct, Code uint16 +pkg syscall (freebsd-amd64), type BpfInsn struct, Jf uint8 +pkg syscall (freebsd-amd64), type BpfInsn struct, Jt uint8 +pkg syscall (freebsd-amd64), type BpfInsn struct, K uint32 +pkg syscall (freebsd-amd64), type BpfProgram struct +pkg syscall (freebsd-amd64), type BpfProgram struct, Insns *BpfInsn +pkg syscall (freebsd-amd64), type BpfProgram struct, Len uint32 +pkg syscall (freebsd-amd64), type BpfProgram struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64), type BpfStat struct +pkg syscall (freebsd-amd64), type BpfStat struct, Drop uint32 +pkg syscall (freebsd-amd64), type BpfStat struct, Recv uint32 +pkg syscall (freebsd-amd64), type BpfVersion struct +pkg syscall (freebsd-amd64), type BpfVersion struct, Major uint16 +pkg syscall (freebsd-amd64), type BpfVersion struct, Minor uint16 +pkg syscall (freebsd-amd64), type BpfZbuf struct +pkg syscall (freebsd-amd64), type BpfZbuf struct, Bufa *uint8 +pkg syscall (freebsd-amd64), type BpfZbuf struct, Bufb *uint8 +pkg syscall (freebsd-amd64), type BpfZbuf struct, Buflen uint64 +pkg syscall (freebsd-amd64), type BpfZbufHeader struct +pkg syscall (freebsd-amd64), type BpfZbufHeader struct, Kernel_gen uint32 +pkg syscall (freebsd-amd64), type BpfZbufHeader struct, Kernel_len uint32 +pkg syscall (freebsd-amd64), type BpfZbufHeader struct, User_gen uint32 +pkg syscall (freebsd-amd64), type BpfZbufHeader struct, X_bzh_pad [5]uint32 +pkg syscall (freebsd-amd64), type Cmsghdr struct +pkg syscall (freebsd-amd64), type Cmsghdr struct, Len uint32 +pkg syscall (freebsd-amd64), type Cmsghdr struct, Level int32 +pkg syscall (freebsd-amd64), type Cmsghdr struct, Type int32 +pkg syscall (freebsd-amd64), type Credential struct +pkg syscall (freebsd-amd64), type Credential struct, Gid uint32 +pkg syscall (freebsd-amd64), type Credential struct, Groups []uint32 +pkg syscall (freebsd-amd64), type Credential struct, Uid uint32 +pkg syscall (freebsd-amd64), type Dirent struct +pkg syscall (freebsd-amd64), type Dirent struct, Fileno uint32 +pkg syscall (freebsd-amd64), type Dirent struct, Name [256]int8 +pkg syscall (freebsd-amd64), type Dirent struct, Namlen uint8 +pkg syscall (freebsd-amd64), type Dirent struct, Reclen uint16 +pkg syscall (freebsd-amd64), type Dirent struct, Type uint8 +pkg syscall (freebsd-amd64), type FdSet struct +pkg syscall (freebsd-amd64), type FdSet struct, X__fds_bits [16]uint64 +pkg syscall (freebsd-amd64), type Flock_t struct +pkg syscall (freebsd-amd64), type Flock_t struct, Len int64 +pkg syscall (freebsd-amd64), type Flock_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64), type Flock_t struct, Pid int32 +pkg syscall (freebsd-amd64), type Flock_t struct, Start int64 +pkg syscall (freebsd-amd64), type Flock_t struct, Sysid int32 +pkg syscall (freebsd-amd64), type Flock_t struct, Type int16 +pkg syscall (freebsd-amd64), type Flock_t struct, Whence int16 +pkg syscall (freebsd-amd64), type Fsid struct +pkg syscall (freebsd-amd64), type Fsid struct, Val [2]int32 +pkg syscall (freebsd-amd64), type IPMreqn struct +pkg syscall (freebsd-amd64), type IPMreqn struct, Address [4]uint8 +pkg syscall (freebsd-amd64), type IPMreqn struct, Ifindex int32 +pkg syscall (freebsd-amd64), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (freebsd-amd64), type IfData struct +pkg syscall (freebsd-amd64), type IfData struct, Addrlen uint8 +pkg syscall (freebsd-amd64), type IfData struct, Baudrate uint64 +pkg syscall (freebsd-amd64), type IfData struct, Collisions uint64 +pkg syscall (freebsd-amd64), type IfData struct, Datalen uint8 +pkg syscall (freebsd-amd64), type IfData struct, Epoch int64 +pkg syscall (freebsd-amd64), type IfData struct, Hdrlen uint8 +pkg syscall (freebsd-amd64), type IfData struct, Hwassist uint64 +pkg syscall (freebsd-amd64), type IfData struct, Ibytes uint64 +pkg syscall (freebsd-amd64), type IfData struct, Ierrors uint64 +pkg syscall (freebsd-amd64), type IfData struct, Imcasts uint64 +pkg syscall (freebsd-amd64), type IfData struct, Ipackets uint64 +pkg syscall (freebsd-amd64), type IfData struct, Iqdrops uint64 +pkg syscall (freebsd-amd64), type IfData struct, Lastchange Timeval +pkg syscall (freebsd-amd64), type IfData struct, Link_state uint8 +pkg syscall (freebsd-amd64), type IfData struct, Metric uint64 +pkg syscall (freebsd-amd64), type IfData struct, Mtu uint64 +pkg syscall (freebsd-amd64), type IfData struct, Noproto uint64 +pkg syscall (freebsd-amd64), type IfData struct, Obytes uint64 +pkg syscall (freebsd-amd64), type IfData struct, Oerrors uint64 +pkg syscall (freebsd-amd64), type IfData struct, Omcasts uint64 +pkg syscall (freebsd-amd64), type IfData struct, Opackets uint64 +pkg syscall (freebsd-amd64), type IfData struct, Physical uint8 +pkg syscall (freebsd-amd64), type IfData struct, Spare_char1 uint8 +pkg syscall (freebsd-amd64), type IfData struct, Spare_char2 uint8 +pkg syscall (freebsd-amd64), type IfData struct, Type uint8 +pkg syscall (freebsd-amd64), type IfMsghdr struct +pkg syscall (freebsd-amd64), type IfMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Data IfData +pkg syscall (freebsd-amd64), type IfMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64), type IfMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64), type IfaMsghdr struct +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Metric int32 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64), type IfaMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64), type IfmaMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64), type Inet6Pktinfo struct +pkg syscall (freebsd-amd64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (freebsd-amd64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct +pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct, Data []uint8 +pkg syscall (freebsd-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr +pkg syscall (freebsd-amd64), type InterfaceMessage struct +pkg syscall (freebsd-amd64), type InterfaceMessage struct, Data []uint8 +pkg syscall (freebsd-amd64), type InterfaceMessage struct, Header IfMsghdr +pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct +pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct, Data []uint8 +pkg syscall (freebsd-amd64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr +pkg syscall (freebsd-amd64), type Iovec struct +pkg syscall (freebsd-amd64), type Iovec struct, Base *uint8 +pkg syscall (freebsd-amd64), type Iovec struct, Len uint64 +pkg syscall (freebsd-amd64), type Kevent_t struct +pkg syscall (freebsd-amd64), type Kevent_t struct, Data int64 +pkg syscall (freebsd-amd64), type Kevent_t struct, Fflags uint32 +pkg syscall (freebsd-amd64), type Kevent_t struct, Filter int16 +pkg syscall (freebsd-amd64), type Kevent_t struct, Flags uint16 +pkg syscall (freebsd-amd64), type Kevent_t struct, Ident uint64 +pkg syscall (freebsd-amd64), type Kevent_t struct, Udata *uint8 +pkg syscall (freebsd-amd64), type Msghdr struct +pkg syscall (freebsd-amd64), type Msghdr struct, Control *uint8 +pkg syscall (freebsd-amd64), type Msghdr struct, Controllen uint32 +pkg syscall (freebsd-amd64), type Msghdr struct, Flags int32 +pkg syscall (freebsd-amd64), type Msghdr struct, Iov *Iovec +pkg syscall (freebsd-amd64), type Msghdr struct, Iovlen int32 +pkg syscall (freebsd-amd64), type Msghdr struct, Name *uint8 +pkg syscall (freebsd-amd64), type Msghdr struct, Namelen uint32 +pkg syscall (freebsd-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (freebsd-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (freebsd-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (freebsd-amd64), type RawSockaddr struct, Family uint8 +pkg syscall (freebsd-amd64), type RawSockaddr struct, Len uint8 +pkg syscall (freebsd-amd64), type RawSockaddrAny struct, Pad [92]int8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-amd64), type RawSockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Family uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Len uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet4 struct, Zero [8]int8 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Family uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Len uint8 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (freebsd-amd64), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (freebsd-amd64), type RawSockaddrUnix struct +pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Family uint8 +pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Len uint8 +pkg syscall (freebsd-amd64), type RawSockaddrUnix struct, Path [104]int8 +pkg syscall (freebsd-amd64), type Rlimit struct +pkg syscall (freebsd-amd64), type Rlimit struct, Cur int64 +pkg syscall (freebsd-amd64), type Rlimit struct, Max int64 +pkg syscall (freebsd-amd64), type RouteMessage struct +pkg syscall (freebsd-amd64), type RouteMessage struct, Data []uint8 +pkg syscall (freebsd-amd64), type RouteMessage struct, Header RtMsghdr +pkg syscall (freebsd-amd64), type RoutingMessage interface, unexported methods +pkg syscall (freebsd-amd64), type RtMetrics struct +pkg syscall (freebsd-amd64), type RtMetrics struct, Expire uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Filler [3]uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Hopcount uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Locks uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Mtu uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Pksent uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Recvpipe uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Rtt uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Rttvar uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Sendpipe uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Ssthresh uint64 +pkg syscall (freebsd-amd64), type RtMetrics struct, Weight uint64 +pkg syscall (freebsd-amd64), type RtMsghdr struct +pkg syscall (freebsd-amd64), type RtMsghdr struct, Addrs int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Errno int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Flags int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Fmask int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Index uint16 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Inits uint64 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Msglen uint16 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Pad_cgo_0 [2]uint8 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Pid int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Rmx RtMetrics +pkg syscall (freebsd-amd64), type RtMsghdr struct, Seq int32 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Type uint8 +pkg syscall (freebsd-amd64), type RtMsghdr struct, Version uint8 +pkg syscall (freebsd-amd64), type Rusage struct, Idrss int64 +pkg syscall (freebsd-amd64), type Rusage struct, Inblock int64 +pkg syscall (freebsd-amd64), type Rusage struct, Isrss int64 +pkg syscall (freebsd-amd64), type Rusage struct, Ixrss int64 +pkg syscall (freebsd-amd64), type Rusage struct, Majflt int64 +pkg syscall (freebsd-amd64), type Rusage struct, Maxrss int64 +pkg syscall (freebsd-amd64), type Rusage struct, Minflt int64 +pkg syscall (freebsd-amd64), type Rusage struct, Msgrcv int64 +pkg syscall (freebsd-amd64), type Rusage struct, Msgsnd int64 +pkg syscall (freebsd-amd64), type Rusage struct, Nivcsw int64 +pkg syscall (freebsd-amd64), type Rusage struct, Nsignals int64 +pkg syscall (freebsd-amd64), type Rusage struct, Nswap int64 +pkg syscall (freebsd-amd64), type Rusage struct, Nvcsw int64 +pkg syscall (freebsd-amd64), type Rusage struct, Oublock int64 +pkg syscall (freebsd-amd64), type Rusage struct, Stime Timeval +pkg syscall (freebsd-amd64), type Rusage struct, Utime Timeval +pkg syscall (freebsd-amd64), type SockaddrDatalink struct +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Alen uint8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Data [46]int8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Family uint8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Index uint16 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Len uint8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Nlen uint8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Slen uint8 +pkg syscall (freebsd-amd64), type SockaddrDatalink struct, Type uint8 +pkg syscall (freebsd-amd64), type SocketControlMessage struct +pkg syscall (freebsd-amd64), type SocketControlMessage struct, Data []uint8 +pkg syscall (freebsd-amd64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (freebsd-amd64), type Stat_t struct +pkg syscall (freebsd-amd64), type Stat_t struct, Atimespec Timespec +pkg syscall (freebsd-amd64), type Stat_t struct, Birthtimespec Timespec +pkg syscall (freebsd-amd64), type Stat_t struct, Blksize uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Blocks int64 +pkg syscall (freebsd-amd64), type Stat_t struct, Ctimespec Timespec +pkg syscall (freebsd-amd64), type Stat_t struct, Dev uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Flags uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Gen uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Gid uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Ino uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Lspare int32 +pkg syscall (freebsd-amd64), type Stat_t struct, Mode uint16 +pkg syscall (freebsd-amd64), type Stat_t struct, Mtimespec Timespec +pkg syscall (freebsd-amd64), type Stat_t struct, Nlink uint16 +pkg syscall (freebsd-amd64), type Stat_t struct, Rdev uint32 +pkg syscall (freebsd-amd64), type Stat_t struct, Size int64 +pkg syscall (freebsd-amd64), type Stat_t struct, Uid uint32 +pkg syscall (freebsd-amd64), type Statfs_t struct +pkg syscall (freebsd-amd64), type Statfs_t struct, Asyncreads uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Asyncwrites uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Bavail int64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Bfree uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Blocks uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Bsize uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Charspare [80]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Ffree int64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Files uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Flags uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Fsid Fsid +pkg syscall (freebsd-amd64), type Statfs_t struct, Fstypename [16]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Iosize uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntfromname [88]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Mntonname [88]int8 +pkg syscall (freebsd-amd64), type Statfs_t struct, Namemax uint32 +pkg syscall (freebsd-amd64), type Statfs_t struct, Owner uint32 +pkg syscall (freebsd-amd64), type Statfs_t struct, Spare [10]uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Syncreads uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Syncwrites uint64 +pkg syscall (freebsd-amd64), type Statfs_t struct, Type uint32 +pkg syscall (freebsd-amd64), type Statfs_t struct, Version uint32 +pkg syscall (freebsd-amd64), type SysProcAttr struct, Chroot string +pkg syscall (freebsd-amd64), type SysProcAttr struct, Credential *Credential +pkg syscall (freebsd-amd64), type SysProcAttr struct, Noctty bool +pkg syscall (freebsd-amd64), type SysProcAttr struct, Ptrace bool +pkg syscall (freebsd-amd64), type SysProcAttr struct, Setctty bool +pkg syscall (freebsd-amd64), type SysProcAttr struct, Setpgid bool +pkg syscall (freebsd-amd64), type SysProcAttr struct, Setsid bool +pkg syscall (freebsd-amd64), type Timespec struct, Nsec int64 +pkg syscall (freebsd-amd64), type Timespec struct, Sec int64 +pkg syscall (freebsd-amd64), type Timeval struct, Sec int64 +pkg syscall (freebsd-amd64), type Timeval struct, Usec int64 +pkg syscall (freebsd-amd64), type WaitStatus uint32 +pkg syscall (freebsd-amd64), var Stderr int +pkg syscall (freebsd-amd64), var Stdin int +pkg syscall (freebsd-amd64), var Stdout int +pkg syscall (linux-386), const AF_ALG ideal-int +pkg syscall (linux-386), const AF_APPLETALK ideal-int +pkg syscall (linux-386), const AF_ASH ideal-int +pkg syscall (linux-386), const AF_ATMPVC ideal-int +pkg syscall (linux-386), const AF_ATMSVC ideal-int +pkg syscall (linux-386), const AF_AX25 ideal-int +pkg syscall (linux-386), const AF_BLUETOOTH ideal-int +pkg syscall (linux-386), const AF_BRIDGE ideal-int +pkg syscall (linux-386), const AF_CAIF ideal-int +pkg syscall (linux-386), const AF_CAN ideal-int +pkg syscall (linux-386), const AF_DECnet ideal-int +pkg syscall (linux-386), const AF_ECONET ideal-int +pkg syscall (linux-386), const AF_FILE ideal-int +pkg syscall (linux-386), const AF_IEEE802154 ideal-int +pkg syscall (linux-386), const AF_IPX ideal-int +pkg syscall (linux-386), const AF_IRDA ideal-int +pkg syscall (linux-386), const AF_ISDN ideal-int +pkg syscall (linux-386), const AF_IUCV ideal-int +pkg syscall (linux-386), const AF_KEY ideal-int +pkg syscall (linux-386), const AF_LLC ideal-int +pkg syscall (linux-386), const AF_LOCAL ideal-int +pkg syscall (linux-386), const AF_MAX ideal-int +pkg syscall (linux-386), const AF_NETBEUI ideal-int +pkg syscall (linux-386), const AF_NETLINK ideal-int +pkg syscall (linux-386), const AF_NETROM ideal-int +pkg syscall (linux-386), const AF_PACKET ideal-int +pkg syscall (linux-386), const AF_PHONET ideal-int +pkg syscall (linux-386), const AF_PPPOX ideal-int +pkg syscall (linux-386), const AF_RDS ideal-int +pkg syscall (linux-386), const AF_ROSE ideal-int +pkg syscall (linux-386), const AF_ROUTE ideal-int +pkg syscall (linux-386), const AF_RXRPC ideal-int +pkg syscall (linux-386), const AF_SECURITY ideal-int +pkg syscall (linux-386), const AF_SNA ideal-int +pkg syscall (linux-386), const AF_TIPC ideal-int +pkg syscall (linux-386), const AF_WANPIPE ideal-int +pkg syscall (linux-386), const AF_X25 ideal-int +pkg syscall (linux-386), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-386), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-386), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-386), const ARPHRD_ASH ideal-int +pkg syscall (linux-386), const ARPHRD_ATM ideal-int +pkg syscall (linux-386), const ARPHRD_AX25 ideal-int +pkg syscall (linux-386), const ARPHRD_BIF ideal-int +pkg syscall (linux-386), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-386), const ARPHRD_CISCO ideal-int +pkg syscall (linux-386), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-386), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-386), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-386), const ARPHRD_DLCI ideal-int +pkg syscall (linux-386), const ARPHRD_ECONET ideal-int +pkg syscall (linux-386), const ARPHRD_EETHER ideal-int +pkg syscall (linux-386), const ARPHRD_ETHER ideal-int +pkg syscall (linux-386), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-386), const ARPHRD_FCAL ideal-int +pkg syscall (linux-386), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-386), const ARPHRD_FCPL ideal-int +pkg syscall (linux-386), const ARPHRD_FCPP ideal-int +pkg syscall (linux-386), const ARPHRD_FDDI ideal-int +pkg syscall (linux-386), const ARPHRD_FRAD ideal-int +pkg syscall (linux-386), const ARPHRD_HDLC ideal-int +pkg syscall (linux-386), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-386), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-386), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-386), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-386), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-386), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-386), const ARPHRD_IRDA ideal-int +pkg syscall (linux-386), const ARPHRD_LAPB ideal-int +pkg syscall (linux-386), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-386), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-386), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-386), const ARPHRD_NETROM ideal-int +pkg syscall (linux-386), const ARPHRD_NONE ideal-int +pkg syscall (linux-386), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-386), const ARPHRD_PPP ideal-int +pkg syscall (linux-386), const ARPHRD_PRONET ideal-int +pkg syscall (linux-386), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-386), const ARPHRD_ROSE ideal-int +pkg syscall (linux-386), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-386), const ARPHRD_SIT ideal-int +pkg syscall (linux-386), const ARPHRD_SKIP ideal-int +pkg syscall (linux-386), const ARPHRD_SLIP ideal-int +pkg syscall (linux-386), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-386), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-386), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-386), const ARPHRD_VOID ideal-int +pkg syscall (linux-386), const ARPHRD_X25 ideal-int +pkg syscall (linux-386), const B0 ideal-int +pkg syscall (linux-386), const B1000000 ideal-int +pkg syscall (linux-386), const B110 ideal-int +pkg syscall (linux-386), const B115200 ideal-int +pkg syscall (linux-386), const B1152000 ideal-int +pkg syscall (linux-386), const B1200 ideal-int +pkg syscall (linux-386), const B134 ideal-int +pkg syscall (linux-386), const B150 ideal-int +pkg syscall (linux-386), const B1500000 ideal-int +pkg syscall (linux-386), const B1800 ideal-int +pkg syscall (linux-386), const B19200 ideal-int +pkg syscall (linux-386), const B200 ideal-int +pkg syscall (linux-386), const B2000000 ideal-int +pkg syscall (linux-386), const B230400 ideal-int +pkg syscall (linux-386), const B2400 ideal-int +pkg syscall (linux-386), const B2500000 ideal-int +pkg syscall (linux-386), const B300 ideal-int +pkg syscall (linux-386), const B3000000 ideal-int +pkg syscall (linux-386), const B3500000 ideal-int +pkg syscall (linux-386), const B38400 ideal-int +pkg syscall (linux-386), const B4000000 ideal-int +pkg syscall (linux-386), const B460800 ideal-int +pkg syscall (linux-386), const B4800 ideal-int +pkg syscall (linux-386), const B50 ideal-int +pkg syscall (linux-386), const B500000 ideal-int +pkg syscall (linux-386), const B57600 ideal-int +pkg syscall (linux-386), const B576000 ideal-int +pkg syscall (linux-386), const B600 ideal-int +pkg syscall (linux-386), const B75 ideal-int +pkg syscall (linux-386), const B921600 ideal-int +pkg syscall (linux-386), const B9600 ideal-int +pkg syscall (linux-386), const BPF_A ideal-int +pkg syscall (linux-386), const BPF_ABS ideal-int +pkg syscall (linux-386), const BPF_ADD ideal-int +pkg syscall (linux-386), const BPF_ALU ideal-int +pkg syscall (linux-386), const BPF_AND ideal-int +pkg syscall (linux-386), const BPF_B ideal-int +pkg syscall (linux-386), const BPF_DIV ideal-int +pkg syscall (linux-386), const BPF_H ideal-int +pkg syscall (linux-386), const BPF_IMM ideal-int +pkg syscall (linux-386), const BPF_IND ideal-int +pkg syscall (linux-386), const BPF_JA ideal-int +pkg syscall (linux-386), const BPF_JEQ ideal-int +pkg syscall (linux-386), const BPF_JGE ideal-int +pkg syscall (linux-386), const BPF_JGT ideal-int +pkg syscall (linux-386), const BPF_JMP ideal-int +pkg syscall (linux-386), const BPF_JSET ideal-int +pkg syscall (linux-386), const BPF_K ideal-int +pkg syscall (linux-386), const BPF_LD ideal-int +pkg syscall (linux-386), const BPF_LDX ideal-int +pkg syscall (linux-386), const BPF_LEN ideal-int +pkg syscall (linux-386), const BPF_LSH ideal-int +pkg syscall (linux-386), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-386), const BPF_MAXINSNS ideal-int +pkg syscall (linux-386), const BPF_MEM ideal-int +pkg syscall (linux-386), const BPF_MEMWORDS ideal-int +pkg syscall (linux-386), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-386), const BPF_MISC ideal-int +pkg syscall (linux-386), const BPF_MSH ideal-int +pkg syscall (linux-386), const BPF_MUL ideal-int +pkg syscall (linux-386), const BPF_NEG ideal-int +pkg syscall (linux-386), const BPF_OR ideal-int +pkg syscall (linux-386), const BPF_RET ideal-int +pkg syscall (linux-386), const BPF_RSH ideal-int +pkg syscall (linux-386), const BPF_ST ideal-int +pkg syscall (linux-386), const BPF_STX ideal-int +pkg syscall (linux-386), const BPF_SUB ideal-int +pkg syscall (linux-386), const BPF_TAX ideal-int +pkg syscall (linux-386), const BPF_TXA ideal-int +pkg syscall (linux-386), const BPF_W ideal-int +pkg syscall (linux-386), const BPF_X ideal-int +pkg syscall (linux-386), const BRKINT ideal-int +pkg syscall (linux-386), const CLOCAL ideal-int +pkg syscall (linux-386), const CREAD ideal-int +pkg syscall (linux-386), const CS5 ideal-int +pkg syscall (linux-386), const CS6 ideal-int +pkg syscall (linux-386), const CS7 ideal-int +pkg syscall (linux-386), const CS8 ideal-int +pkg syscall (linux-386), const CSIZE ideal-int +pkg syscall (linux-386), const CSTOPB ideal-int +pkg syscall (linux-386), const DT_BLK ideal-int +pkg syscall (linux-386), const DT_CHR ideal-int +pkg syscall (linux-386), const DT_DIR ideal-int +pkg syscall (linux-386), const DT_FIFO ideal-int +pkg syscall (linux-386), const DT_LNK ideal-int +pkg syscall (linux-386), const DT_REG ideal-int +pkg syscall (linux-386), const DT_SOCK ideal-int +pkg syscall (linux-386), const DT_UNKNOWN ideal-int +pkg syscall (linux-386), const DT_WHT ideal-int +pkg syscall (linux-386), const EADV Errno +pkg syscall (linux-386), const EBADE Errno +pkg syscall (linux-386), const EBADFD Errno +pkg syscall (linux-386), const EBADMSG Errno +pkg syscall (linux-386), const EBADR Errno +pkg syscall (linux-386), const EBADRQC Errno +pkg syscall (linux-386), const EBADSLT Errno +pkg syscall (linux-386), const EBFONT Errno +pkg syscall (linux-386), const ECHO ideal-int +pkg syscall (linux-386), const ECHOCTL ideal-int +pkg syscall (linux-386), const ECHOE ideal-int +pkg syscall (linux-386), const ECHOK ideal-int +pkg syscall (linux-386), const ECHOKE ideal-int +pkg syscall (linux-386), const ECHONL ideal-int +pkg syscall (linux-386), const ECHOPRT ideal-int +pkg syscall (linux-386), const ECHRNG Errno +pkg syscall (linux-386), const ECOMM Errno +pkg syscall (linux-386), const EDEADLOCK Errno +pkg syscall (linux-386), const EDOTDOT Errno +pkg syscall (linux-386), const EISNAM Errno +pkg syscall (linux-386), const EKEYEXPIRED Errno +pkg syscall (linux-386), const EKEYREJECTED Errno +pkg syscall (linux-386), const EKEYREVOKED Errno +pkg syscall (linux-386), const EL2HLT Errno +pkg syscall (linux-386), const EL2NSYNC Errno +pkg syscall (linux-386), const EL3HLT Errno +pkg syscall (linux-386), const EL3RST Errno +pkg syscall (linux-386), const ELIBACC Errno +pkg syscall (linux-386), const ELIBBAD Errno +pkg syscall (linux-386), const ELIBEXEC Errno +pkg syscall (linux-386), const ELIBMAX Errno +pkg syscall (linux-386), const ELIBSCN Errno +pkg syscall (linux-386), const ELNRNG Errno +pkg syscall (linux-386), const EMEDIUMTYPE Errno +pkg syscall (linux-386), const EMULTIHOP Errno +pkg syscall (linux-386), const ENAVAIL Errno +pkg syscall (linux-386), const ENOANO Errno +pkg syscall (linux-386), const ENOCSI Errno +pkg syscall (linux-386), const ENODATA Errno +pkg syscall (linux-386), const ENOKEY Errno +pkg syscall (linux-386), const ENOLINK Errno +pkg syscall (linux-386), const ENOMEDIUM Errno +pkg syscall (linux-386), const ENONET Errno +pkg syscall (linux-386), const ENOPKG Errno +pkg syscall (linux-386), const ENOSR Errno +pkg syscall (linux-386), const ENOSTR Errno +pkg syscall (linux-386), const ENOTNAM Errno +pkg syscall (linux-386), const ENOTRECOVERABLE Errno +pkg syscall (linux-386), const ENOTUNIQ Errno +pkg syscall (linux-386), const EOWNERDEAD Errno +pkg syscall (linux-386), const EPOLLERR ideal-int +pkg syscall (linux-386), const EPOLLET ideal-int +pkg syscall (linux-386), const EPOLLHUP ideal-int +pkg syscall (linux-386), const EPOLLIN ideal-int +pkg syscall (linux-386), const EPOLLMSG ideal-int +pkg syscall (linux-386), const EPOLLONESHOT ideal-int +pkg syscall (linux-386), const EPOLLOUT ideal-int +pkg syscall (linux-386), const EPOLLPRI ideal-int +pkg syscall (linux-386), const EPOLLRDBAND ideal-int +pkg syscall (linux-386), const EPOLLRDHUP ideal-int +pkg syscall (linux-386), const EPOLLRDNORM ideal-int +pkg syscall (linux-386), const EPOLLWRBAND ideal-int +pkg syscall (linux-386), const EPOLLWRNORM ideal-int +pkg syscall (linux-386), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-386), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-386), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-386), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-386), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-386), const EPROTO Errno +pkg syscall (linux-386), const EREMCHG Errno +pkg syscall (linux-386), const EREMOTEIO Errno +pkg syscall (linux-386), const ERESTART Errno +pkg syscall (linux-386), const ERFKILL Errno +pkg syscall (linux-386), const ESRMNT Errno +pkg syscall (linux-386), const ESTRPIPE Errno +pkg syscall (linux-386), const ETH_P_1588 ideal-int +pkg syscall (linux-386), const ETH_P_8021Q ideal-int +pkg syscall (linux-386), const ETH_P_802_2 ideal-int +pkg syscall (linux-386), const ETH_P_802_3 ideal-int +pkg syscall (linux-386), const ETH_P_AARP ideal-int +pkg syscall (linux-386), const ETH_P_ALL ideal-int +pkg syscall (linux-386), const ETH_P_AOE ideal-int +pkg syscall (linux-386), const ETH_P_ARCNET ideal-int +pkg syscall (linux-386), const ETH_P_ARP ideal-int +pkg syscall (linux-386), const ETH_P_ATALK ideal-int +pkg syscall (linux-386), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-386), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-386), const ETH_P_AX25 ideal-int +pkg syscall (linux-386), const ETH_P_BPQ ideal-int +pkg syscall (linux-386), const ETH_P_CAIF ideal-int +pkg syscall (linux-386), const ETH_P_CAN ideal-int +pkg syscall (linux-386), const ETH_P_CONTROL ideal-int +pkg syscall (linux-386), const ETH_P_CUST ideal-int +pkg syscall (linux-386), const ETH_P_DDCMP ideal-int +pkg syscall (linux-386), const ETH_P_DEC ideal-int +pkg syscall (linux-386), const ETH_P_DIAG ideal-int +pkg syscall (linux-386), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-386), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-386), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-386), const ETH_P_DSA ideal-int +pkg syscall (linux-386), const ETH_P_ECONET ideal-int +pkg syscall (linux-386), const ETH_P_EDSA ideal-int +pkg syscall (linux-386), const ETH_P_FCOE ideal-int +pkg syscall (linux-386), const ETH_P_FIP ideal-int +pkg syscall (linux-386), const ETH_P_HDLC ideal-int +pkg syscall (linux-386), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-386), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-386), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-386), const ETH_P_IP ideal-int +pkg syscall (linux-386), const ETH_P_IPV6 ideal-int +pkg syscall (linux-386), const ETH_P_IPX ideal-int +pkg syscall (linux-386), const ETH_P_IRDA ideal-int +pkg syscall (linux-386), const ETH_P_LAT ideal-int +pkg syscall (linux-386), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-386), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-386), const ETH_P_LOOP ideal-int +pkg syscall (linux-386), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-386), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-386), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-386), const ETH_P_PAE ideal-int +pkg syscall (linux-386), const ETH_P_PAUSE ideal-int +pkg syscall (linux-386), const ETH_P_PHONET ideal-int +pkg syscall (linux-386), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-386), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-386), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-386), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-386), const ETH_P_PUP ideal-int +pkg syscall (linux-386), const ETH_P_PUPAT ideal-int +pkg syscall (linux-386), const ETH_P_RARP ideal-int +pkg syscall (linux-386), const ETH_P_SCA ideal-int +pkg syscall (linux-386), const ETH_P_SLOW ideal-int +pkg syscall (linux-386), const ETH_P_SNAP ideal-int +pkg syscall (linux-386), const ETH_P_TEB ideal-int +pkg syscall (linux-386), const ETH_P_TIPC ideal-int +pkg syscall (linux-386), const ETH_P_TRAILER ideal-int +pkg syscall (linux-386), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-386), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-386), const ETH_P_WCCP ideal-int +pkg syscall (linux-386), const ETH_P_X25 ideal-int +pkg syscall (linux-386), const ETIME Errno +pkg syscall (linux-386), const EUCLEAN Errno +pkg syscall (linux-386), const EUNATCH Errno +pkg syscall (linux-386), const EXFULL Errno +pkg syscall (linux-386), const FD_CLOEXEC ideal-int +pkg syscall (linux-386), const FD_SETSIZE ideal-int +pkg syscall (linux-386), const FLUSHO ideal-int +pkg syscall (linux-386), const F_DUPFD ideal-int +pkg syscall (linux-386), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-386), const F_EXLCK ideal-int +pkg syscall (linux-386), const F_GETFD ideal-int +pkg syscall (linux-386), const F_GETFL ideal-int +pkg syscall (linux-386), const F_GETLEASE ideal-int +pkg syscall (linux-386), const F_GETLK ideal-int +pkg syscall (linux-386), const F_GETLK64 ideal-int +pkg syscall (linux-386), const F_GETOWN ideal-int +pkg syscall (linux-386), const F_GETOWN_EX ideal-int +pkg syscall (linux-386), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-386), const F_GETSIG ideal-int +pkg syscall (linux-386), const F_LOCK ideal-int +pkg syscall (linux-386), const F_NOTIFY ideal-int +pkg syscall (linux-386), const F_OK ideal-int +pkg syscall (linux-386), const F_RDLCK ideal-int +pkg syscall (linux-386), const F_SETFD ideal-int +pkg syscall (linux-386), const F_SETFL ideal-int +pkg syscall (linux-386), const F_SETLEASE ideal-int +pkg syscall (linux-386), const F_SETLK ideal-int +pkg syscall (linux-386), const F_SETLK64 ideal-int +pkg syscall (linux-386), const F_SETLKW ideal-int +pkg syscall (linux-386), const F_SETLKW64 ideal-int +pkg syscall (linux-386), const F_SETOWN ideal-int +pkg syscall (linux-386), const F_SETOWN_EX ideal-int +pkg syscall (linux-386), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-386), const F_SETSIG ideal-int +pkg syscall (linux-386), const F_SHLCK ideal-int +pkg syscall (linux-386), const F_TEST ideal-int +pkg syscall (linux-386), const F_TLOCK ideal-int +pkg syscall (linux-386), const F_ULOCK ideal-int +pkg syscall (linux-386), const F_UNLCK ideal-int +pkg syscall (linux-386), const F_WRLCK ideal-int +pkg syscall (linux-386), const HUPCL ideal-int +pkg syscall (linux-386), const ICANON ideal-int +pkg syscall (linux-386), const ICRNL ideal-int +pkg syscall (linux-386), const IEXTEN ideal-int +pkg syscall (linux-386), const IFA_ADDRESS ideal-int +pkg syscall (linux-386), const IFA_ANYCAST ideal-int +pkg syscall (linux-386), const IFA_BROADCAST ideal-int +pkg syscall (linux-386), const IFA_CACHEINFO ideal-int +pkg syscall (linux-386), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-386), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-386), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-386), const IFA_F_NODAD ideal-int +pkg syscall (linux-386), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-386), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-386), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-386), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-386), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-386), const IFA_LABEL ideal-int +pkg syscall (linux-386), const IFA_LOCAL ideal-int +pkg syscall (linux-386), const IFA_MAX ideal-int +pkg syscall (linux-386), const IFA_MULTICAST ideal-int +pkg syscall (linux-386), const IFA_UNSPEC ideal-int +pkg syscall (linux-386), const IFF_ALLMULTI ideal-int +pkg syscall (linux-386), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-386), const IFF_DEBUG ideal-int +pkg syscall (linux-386), const IFF_DYNAMIC ideal-int +pkg syscall (linux-386), const IFF_MASTER ideal-int +pkg syscall (linux-386), const IFF_NOARP ideal-int +pkg syscall (linux-386), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-386), const IFF_NO_PI ideal-int +pkg syscall (linux-386), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-386), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-386), const IFF_PORTSEL ideal-int +pkg syscall (linux-386), const IFF_PROMISC ideal-int +pkg syscall (linux-386), const IFF_RUNNING ideal-int +pkg syscall (linux-386), const IFF_SLAVE ideal-int +pkg syscall (linux-386), const IFF_TAP ideal-int +pkg syscall (linux-386), const IFF_TUN ideal-int +pkg syscall (linux-386), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-386), const IFF_VNET_HDR ideal-int +pkg syscall (linux-386), const IFLA_ADDRESS ideal-int +pkg syscall (linux-386), const IFLA_BROADCAST ideal-int +pkg syscall (linux-386), const IFLA_COST ideal-int +pkg syscall (linux-386), const IFLA_IFALIAS ideal-int +pkg syscall (linux-386), const IFLA_IFNAME ideal-int +pkg syscall (linux-386), const IFLA_LINK ideal-int +pkg syscall (linux-386), const IFLA_LINKINFO ideal-int +pkg syscall (linux-386), const IFLA_LINKMODE ideal-int +pkg syscall (linux-386), const IFLA_MAP ideal-int +pkg syscall (linux-386), const IFLA_MASTER ideal-int +pkg syscall (linux-386), const IFLA_MAX ideal-int +pkg syscall (linux-386), const IFLA_MTU ideal-int +pkg syscall (linux-386), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-386), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-386), const IFLA_PRIORITY ideal-int +pkg syscall (linux-386), const IFLA_PROTINFO ideal-int +pkg syscall (linux-386), const IFLA_QDISC ideal-int +pkg syscall (linux-386), const IFLA_STATS ideal-int +pkg syscall (linux-386), const IFLA_TXQLEN ideal-int +pkg syscall (linux-386), const IFLA_UNSPEC ideal-int +pkg syscall (linux-386), const IFLA_WEIGHT ideal-int +pkg syscall (linux-386), const IFLA_WIRELESS ideal-int +pkg syscall (linux-386), const IFNAMSIZ ideal-int +pkg syscall (linux-386), const IGNBRK ideal-int +pkg syscall (linux-386), const IGNCR ideal-int +pkg syscall (linux-386), const IGNPAR ideal-int +pkg syscall (linux-386), const IMAXBEL ideal-int +pkg syscall (linux-386), const INLCR ideal-int +pkg syscall (linux-386), const INPCK ideal-int +pkg syscall (linux-386), const IN_ACCESS ideal-int +pkg syscall (linux-386), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-386), const IN_ATTRIB ideal-int +pkg syscall (linux-386), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-386), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-386), const IN_CLASSA_NET ideal-int +pkg syscall (linux-386), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-386), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-386), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-386), const IN_CLASSB_NET ideal-int +pkg syscall (linux-386), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-386), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-386), const IN_CLASSC_NET ideal-int +pkg syscall (linux-386), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-386), const IN_CLOEXEC ideal-int +pkg syscall (linux-386), const IN_CLOSE ideal-int +pkg syscall (linux-386), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-386), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-386), const IN_CREATE ideal-int +pkg syscall (linux-386), const IN_DELETE ideal-int +pkg syscall (linux-386), const IN_DELETE_SELF ideal-int +pkg syscall (linux-386), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-386), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-386), const IN_IGNORED ideal-int +pkg syscall (linux-386), const IN_ISDIR ideal-int +pkg syscall (linux-386), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-386), const IN_MASK_ADD ideal-int +pkg syscall (linux-386), const IN_MODIFY ideal-int +pkg syscall (linux-386), const IN_MOVE ideal-int +pkg syscall (linux-386), const IN_MOVED_FROM ideal-int +pkg syscall (linux-386), const IN_MOVED_TO ideal-int +pkg syscall (linux-386), const IN_MOVE_SELF ideal-int +pkg syscall (linux-386), const IN_NONBLOCK ideal-int +pkg syscall (linux-386), const IN_ONESHOT ideal-int +pkg syscall (linux-386), const IN_ONLYDIR ideal-int +pkg syscall (linux-386), const IN_OPEN ideal-int +pkg syscall (linux-386), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-386), const IN_UNMOUNT ideal-int +pkg syscall (linux-386), const IPPROTO_AH ideal-int +pkg syscall (linux-386), const IPPROTO_COMP ideal-int +pkg syscall (linux-386), const IPPROTO_DCCP ideal-int +pkg syscall (linux-386), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-386), const IPPROTO_EGP ideal-int +pkg syscall (linux-386), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-386), const IPPROTO_ESP ideal-int +pkg syscall (linux-386), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-386), const IPPROTO_GRE ideal-int +pkg syscall (linux-386), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-386), const IPPROTO_ICMP ideal-int +pkg syscall (linux-386), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-386), const IPPROTO_IDP ideal-int +pkg syscall (linux-386), const IPPROTO_IGMP ideal-int +pkg syscall (linux-386), const IPPROTO_IPIP ideal-int +pkg syscall (linux-386), const IPPROTO_MTP ideal-int +pkg syscall (linux-386), const IPPROTO_NONE ideal-int +pkg syscall (linux-386), const IPPROTO_PIM ideal-int +pkg syscall (linux-386), const IPPROTO_PUP ideal-int +pkg syscall (linux-386), const IPPROTO_RAW ideal-int +pkg syscall (linux-386), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-386), const IPPROTO_RSVP ideal-int +pkg syscall (linux-386), const IPPROTO_SCTP ideal-int +pkg syscall (linux-386), const IPPROTO_TP ideal-int +pkg syscall (linux-386), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-386), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-386), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-386), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-386), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-386), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-386), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-386), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-386), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-386), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-386), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-386), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-386), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-386), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-386), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-386), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-386), const IPV6_MTU ideal-int +pkg syscall (linux-386), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-386), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-386), const IPV6_PKTINFO ideal-int +pkg syscall (linux-386), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-386), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-386), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-386), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-386), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-386), const IPV6_RECVERR ideal-int +pkg syscall (linux-386), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-386), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-386), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-386), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-386), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-386), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-386), const IPV6_RTHDR ideal-int +pkg syscall (linux-386), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-386), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-386), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-386), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-386), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-386), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-386), const IPV6_TCLASS ideal-int +pkg syscall (linux-386), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-386), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-386), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-386), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-386), const IP_DF ideal-int +pkg syscall (linux-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-386), const IP_FREEBIND ideal-int +pkg syscall (linux-386), const IP_HDRINCL ideal-int +pkg syscall (linux-386), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-386), const IP_MAXPACKET ideal-int +pkg syscall (linux-386), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-386), const IP_MF ideal-int +pkg syscall (linux-386), const IP_MINTTL ideal-int +pkg syscall (linux-386), const IP_MSFILTER ideal-int +pkg syscall (linux-386), const IP_MSS ideal-int +pkg syscall (linux-386), const IP_MTU ideal-int +pkg syscall (linux-386), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-386), const IP_OFFMASK ideal-int +pkg syscall (linux-386), const IP_OPTIONS ideal-int +pkg syscall (linux-386), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-386), const IP_PASSSEC ideal-int +pkg syscall (linux-386), const IP_PKTINFO ideal-int +pkg syscall (linux-386), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-386), const IP_PMTUDISC ideal-int +pkg syscall (linux-386), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-386), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-386), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-386), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-386), const IP_RECVERR ideal-int +pkg syscall (linux-386), const IP_RECVOPTS ideal-int +pkg syscall (linux-386), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-386), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-386), const IP_RECVTOS ideal-int +pkg syscall (linux-386), const IP_RECVTTL ideal-int +pkg syscall (linux-386), const IP_RETOPTS ideal-int +pkg syscall (linux-386), const IP_RF ideal-int +pkg syscall (linux-386), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-386), const IP_TRANSPARENT ideal-int +pkg syscall (linux-386), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-386), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-386), const ISIG ideal-int +pkg syscall (linux-386), const ISTRIP ideal-int +pkg syscall (linux-386), const IUCLC ideal-int +pkg syscall (linux-386), const IUTF8 ideal-int +pkg syscall (linux-386), const IXANY ideal-int +pkg syscall (linux-386), const IXOFF ideal-int +pkg syscall (linux-386), const IXON ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-386), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-386), const LOCK_EX ideal-int +pkg syscall (linux-386), const LOCK_NB ideal-int +pkg syscall (linux-386), const LOCK_SH ideal-int +pkg syscall (linux-386), const LOCK_UN ideal-int +pkg syscall (linux-386), const MADV_DOFORK ideal-int +pkg syscall (linux-386), const MADV_DONTFORK ideal-int +pkg syscall (linux-386), const MADV_DONTNEED ideal-int +pkg syscall (linux-386), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-386), const MADV_HWPOISON ideal-int +pkg syscall (linux-386), const MADV_MERGEABLE ideal-int +pkg syscall (linux-386), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-386), const MADV_NORMAL ideal-int +pkg syscall (linux-386), const MADV_RANDOM ideal-int +pkg syscall (linux-386), const MADV_REMOVE ideal-int +pkg syscall (linux-386), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-386), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-386), const MADV_WILLNEED ideal-int +pkg syscall (linux-386), const MAP_32BIT ideal-int +pkg syscall (linux-386), const MAP_ANON ideal-int +pkg syscall (linux-386), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-386), const MAP_DENYWRITE ideal-int +pkg syscall (linux-386), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-386), const MAP_FILE ideal-int +pkg syscall (linux-386), const MAP_FIXED ideal-int +pkg syscall (linux-386), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-386), const MAP_HUGETLB ideal-int +pkg syscall (linux-386), const MAP_LOCKED ideal-int +pkg syscall (linux-386), const MAP_NONBLOCK ideal-int +pkg syscall (linux-386), const MAP_NORESERVE ideal-int +pkg syscall (linux-386), const MAP_POPULATE ideal-int +pkg syscall (linux-386), const MAP_PRIVATE ideal-int +pkg syscall (linux-386), const MAP_SHARED ideal-int +pkg syscall (linux-386), const MAP_STACK ideal-int +pkg syscall (linux-386), const MAP_TYPE ideal-int +pkg syscall (linux-386), const MCL_CURRENT ideal-int +pkg syscall (linux-386), const MCL_FUTURE ideal-int +pkg syscall (linux-386), const MNT_DETACH ideal-int +pkg syscall (linux-386), const MNT_EXPIRE ideal-int +pkg syscall (linux-386), const MNT_FORCE ideal-int +pkg syscall (linux-386), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-386), const MSG_CONFIRM ideal-int +pkg syscall (linux-386), const MSG_CTRUNC ideal-int +pkg syscall (linux-386), const MSG_DONTROUTE ideal-int +pkg syscall (linux-386), const MSG_DONTWAIT ideal-int +pkg syscall (linux-386), const MSG_EOR ideal-int +pkg syscall (linux-386), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-386), const MSG_FIN ideal-int +pkg syscall (linux-386), const MSG_MORE ideal-int +pkg syscall (linux-386), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-386), const MSG_OOB ideal-int +pkg syscall (linux-386), const MSG_PEEK ideal-int +pkg syscall (linux-386), const MSG_PROXY ideal-int +pkg syscall (linux-386), const MSG_RST ideal-int +pkg syscall (linux-386), const MSG_SYN ideal-int +pkg syscall (linux-386), const MSG_TRUNC ideal-int +pkg syscall (linux-386), const MSG_TRYHARD ideal-int +pkg syscall (linux-386), const MSG_WAITALL ideal-int +pkg syscall (linux-386), const MSG_WAITFORONE ideal-int +pkg syscall (linux-386), const MS_ACTIVE ideal-int +pkg syscall (linux-386), const MS_ASYNC ideal-int +pkg syscall (linux-386), const MS_BIND ideal-int +pkg syscall (linux-386), const MS_DIRSYNC ideal-int +pkg syscall (linux-386), const MS_INVALIDATE ideal-int +pkg syscall (linux-386), const MS_I_VERSION ideal-int +pkg syscall (linux-386), const MS_KERNMOUNT ideal-int +pkg syscall (linux-386), const MS_MANDLOCK ideal-int +pkg syscall (linux-386), const MS_MGC_MSK ideal-int +pkg syscall (linux-386), const MS_MGC_VAL ideal-int +pkg syscall (linux-386), const MS_MOVE ideal-int +pkg syscall (linux-386), const MS_NOATIME ideal-int +pkg syscall (linux-386), const MS_NODEV ideal-int +pkg syscall (linux-386), const MS_NODIRATIME ideal-int +pkg syscall (linux-386), const MS_NOEXEC ideal-int +pkg syscall (linux-386), const MS_NOSUID ideal-int +pkg syscall (linux-386), const MS_NOUSER ideal-int +pkg syscall (linux-386), const MS_POSIXACL ideal-int +pkg syscall (linux-386), const MS_PRIVATE ideal-int +pkg syscall (linux-386), const MS_RDONLY ideal-int +pkg syscall (linux-386), const MS_REC ideal-int +pkg syscall (linux-386), const MS_RELATIME ideal-int +pkg syscall (linux-386), const MS_REMOUNT ideal-int +pkg syscall (linux-386), const MS_RMT_MASK ideal-int +pkg syscall (linux-386), const MS_SHARED ideal-int +pkg syscall (linux-386), const MS_SILENT ideal-int +pkg syscall (linux-386), const MS_SLAVE ideal-int +pkg syscall (linux-386), const MS_STRICTATIME ideal-int +pkg syscall (linux-386), const MS_SYNC ideal-int +pkg syscall (linux-386), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-386), const MS_UNBINDABLE ideal-int +pkg syscall (linux-386), const NAME_MAX ideal-int +pkg syscall (linux-386), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386), const NETLINK_AUDIT ideal-int +pkg syscall (linux-386), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-386), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-386), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-386), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-386), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-386), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-386), const NETLINK_GENERIC ideal-int +pkg syscall (linux-386), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-386), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-386), const NETLINK_ISCSI ideal-int +pkg syscall (linux-386), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-386), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-386), const NETLINK_NFLOG ideal-int +pkg syscall (linux-386), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-386), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-386), const NETLINK_ROUTE ideal-int +pkg syscall (linux-386), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-386), const NETLINK_SELINUX ideal-int +pkg syscall (linux-386), const NETLINK_UNUSED ideal-int +pkg syscall (linux-386), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-386), const NETLINK_XFRM ideal-int +pkg syscall (linux-386), const NLA_ALIGNTO ideal-int +pkg syscall (linux-386), const NLA_F_NESTED ideal-int +pkg syscall (linux-386), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-386), const NLA_HDRLEN ideal-int +pkg syscall (linux-386), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-386), const NLMSG_DONE ideal-int +pkg syscall (linux-386), const NLMSG_ERROR ideal-int +pkg syscall (linux-386), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-386), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-386), const NLMSG_NOOP ideal-int +pkg syscall (linux-386), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-386), const NLM_F_ACK ideal-int +pkg syscall (linux-386), const NLM_F_APPEND ideal-int +pkg syscall (linux-386), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-386), const NLM_F_CREATE ideal-int +pkg syscall (linux-386), const NLM_F_DUMP ideal-int +pkg syscall (linux-386), const NLM_F_ECHO ideal-int +pkg syscall (linux-386), const NLM_F_EXCL ideal-int +pkg syscall (linux-386), const NLM_F_MATCH ideal-int +pkg syscall (linux-386), const NLM_F_MULTI ideal-int +pkg syscall (linux-386), const NLM_F_REPLACE ideal-int +pkg syscall (linux-386), const NLM_F_REQUEST ideal-int +pkg syscall (linux-386), const NLM_F_ROOT ideal-int +pkg syscall (linux-386), const NOFLSH ideal-int +pkg syscall (linux-386), const OCRNL ideal-int +pkg syscall (linux-386), const OFDEL ideal-int +pkg syscall (linux-386), const OFILL ideal-int +pkg syscall (linux-386), const OLCUC ideal-int +pkg syscall (linux-386), const ONLCR ideal-int +pkg syscall (linux-386), const ONLRET ideal-int +pkg syscall (linux-386), const ONOCR ideal-int +pkg syscall (linux-386), const OPOST ideal-int +pkg syscall (linux-386), const O_ACCMODE ideal-int +pkg syscall (linux-386), const O_DIRECT ideal-int +pkg syscall (linux-386), const O_DIRECTORY ideal-int +pkg syscall (linux-386), const O_DSYNC ideal-int +pkg syscall (linux-386), const O_FSYNC ideal-int +pkg syscall (linux-386), const O_LARGEFILE ideal-int +pkg syscall (linux-386), const O_NDELAY ideal-int +pkg syscall (linux-386), const O_NOATIME ideal-int +pkg syscall (linux-386), const O_NOFOLLOW ideal-int +pkg syscall (linux-386), const O_RSYNC ideal-int +pkg syscall (linux-386), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386), const PACKET_BROADCAST ideal-int +pkg syscall (linux-386), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-386), const PACKET_HOST ideal-int +pkg syscall (linux-386), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-386), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-386), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-386), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-386), const PACKET_MULTICAST ideal-int +pkg syscall (linux-386), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-386), const PACKET_OUTGOING ideal-int +pkg syscall (linux-386), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-386), const PACKET_RX_RING ideal-int +pkg syscall (linux-386), const PACKET_STATISTICS ideal-int +pkg syscall (linux-386), const PARENB ideal-int +pkg syscall (linux-386), const PARMRK ideal-int +pkg syscall (linux-386), const PARODD ideal-int +pkg syscall (linux-386), const PENDIN ideal-int +pkg syscall (linux-386), const PROT_EXEC ideal-int +pkg syscall (linux-386), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-386), const PROT_GROWSUP ideal-int +pkg syscall (linux-386), const PROT_NONE ideal-int +pkg syscall (linux-386), const PROT_READ ideal-int +pkg syscall (linux-386), const PROT_WRITE ideal-int +pkg syscall (linux-386), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-386), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-386), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-386), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-386), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-386), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-386), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-386), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-386), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-386), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-386), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-386), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-386), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-386), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-386), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-386), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-386), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-386), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-386), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-386), const PR_GET_FPEMU ideal-int +pkg syscall (linux-386), const PR_GET_FPEXC ideal-int +pkg syscall (linux-386), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-386), const PR_GET_NAME ideal-int +pkg syscall (linux-386), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-386), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-386), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-386), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-386), const PR_GET_TIMING ideal-int +pkg syscall (linux-386), const PR_GET_TSC ideal-int +pkg syscall (linux-386), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-386), const PR_MCE_KILL ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-386), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-386), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-386), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-386), const PR_SET_FPEMU ideal-int +pkg syscall (linux-386), const PR_SET_FPEXC ideal-int +pkg syscall (linux-386), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-386), const PR_SET_NAME ideal-int +pkg syscall (linux-386), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-386), const PR_SET_PTRACER ideal-int +pkg syscall (linux-386), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-386), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-386), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-386), const PR_SET_TIMING ideal-int +pkg syscall (linux-386), const PR_SET_TSC ideal-int +pkg syscall (linux-386), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-386), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-386), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-386), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-386), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-386), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-386), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-386), const PTRACE_ATTACH ideal-int +pkg syscall (linux-386), const PTRACE_CONT ideal-int +pkg syscall (linux-386), const PTRACE_DETACH ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-386), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-386), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-386), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-386), const PTRACE_GETFPXREGS ideal-int +pkg syscall (linux-386), const PTRACE_GETREGS ideal-int +pkg syscall (linux-386), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-386), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-386), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-386), const PTRACE_KILL ideal-int +pkg syscall (linux-386), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-386), const PTRACE_O_MASK ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-386), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-386), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-386), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-386), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-386), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-386), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-386), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-386), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-386), const PTRACE_SETFPXREGS ideal-int +pkg syscall (linux-386), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-386), const PTRACE_SETREGS ideal-int +pkg syscall (linux-386), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-386), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-386), const PTRACE_SET_THREAD_AREA ideal-int +pkg syscall (linux-386), const PTRACE_SINGLEBLOCK ideal-int +pkg syscall (linux-386), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-386), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-386), const PTRACE_SYSEMU ideal-int +pkg syscall (linux-386), const PTRACE_SYSEMU_SINGLESTEP ideal-int +pkg syscall (linux-386), const PTRACE_TRACEME ideal-int +pkg syscall (linux-386), const PathMax ideal-int +pkg syscall (linux-386), const RLIMIT_AS ideal-int +pkg syscall (linux-386), const RLIMIT_CORE ideal-int +pkg syscall (linux-386), const RLIMIT_CPU ideal-int +pkg syscall (linux-386), const RLIMIT_DATA ideal-int +pkg syscall (linux-386), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-386), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-386), const RLIMIT_STACK ideal-int +pkg syscall (linux-386), const RLIM_INFINITY ideal-int +pkg syscall (linux-386), const RTAX_ADVMSS ideal-int +pkg syscall (linux-386), const RTAX_CWND ideal-int +pkg syscall (linux-386), const RTAX_FEATURES ideal-int +pkg syscall (linux-386), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-386), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-386), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-386), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-386), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-386), const RTAX_INITCWND ideal-int +pkg syscall (linux-386), const RTAX_INITRWND ideal-int +pkg syscall (linux-386), const RTAX_LOCK ideal-int +pkg syscall (linux-386), const RTAX_MAX ideal-int +pkg syscall (linux-386), const RTAX_MTU ideal-int +pkg syscall (linux-386), const RTAX_REORDERING ideal-int +pkg syscall (linux-386), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-386), const RTAX_RTT ideal-int +pkg syscall (linux-386), const RTAX_RTTVAR ideal-int +pkg syscall (linux-386), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-386), const RTAX_UNSPEC ideal-int +pkg syscall (linux-386), const RTAX_WINDOW ideal-int +pkg syscall (linux-386), const RTA_ALIGNTO ideal-int +pkg syscall (linux-386), const RTA_CACHEINFO ideal-int +pkg syscall (linux-386), const RTA_DST ideal-int +pkg syscall (linux-386), const RTA_FLOW ideal-int +pkg syscall (linux-386), const RTA_GATEWAY ideal-int +pkg syscall (linux-386), const RTA_IIF ideal-int +pkg syscall (linux-386), const RTA_MAX ideal-int +pkg syscall (linux-386), const RTA_METRICS ideal-int +pkg syscall (linux-386), const RTA_MULTIPATH ideal-int +pkg syscall (linux-386), const RTA_OIF ideal-int +pkg syscall (linux-386), const RTA_PREFSRC ideal-int +pkg syscall (linux-386), const RTA_PRIORITY ideal-int +pkg syscall (linux-386), const RTA_SRC ideal-int +pkg syscall (linux-386), const RTA_TABLE ideal-int +pkg syscall (linux-386), const RTA_UNSPEC ideal-int +pkg syscall (linux-386), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-386), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-386), const RTCF_LOG ideal-int +pkg syscall (linux-386), const RTCF_MASQ ideal-int +pkg syscall (linux-386), const RTCF_NAT ideal-int +pkg syscall (linux-386), const RTCF_VALVE ideal-int +pkg syscall (linux-386), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-386), const RTF_ADDRCONF ideal-int +pkg syscall (linux-386), const RTF_ALLONLINK ideal-int +pkg syscall (linux-386), const RTF_BROADCAST ideal-int +pkg syscall (linux-386), const RTF_CACHE ideal-int +pkg syscall (linux-386), const RTF_DEFAULT ideal-int +pkg syscall (linux-386), const RTF_DYNAMIC ideal-int +pkg syscall (linux-386), const RTF_FLOW ideal-int +pkg syscall (linux-386), const RTF_GATEWAY ideal-int +pkg syscall (linux-386), const RTF_HOST ideal-int +pkg syscall (linux-386), const RTF_INTERFACE ideal-int +pkg syscall (linux-386), const RTF_IRTT ideal-int +pkg syscall (linux-386), const RTF_LINKRT ideal-int +pkg syscall (linux-386), const RTF_LOCAL ideal-int +pkg syscall (linux-386), const RTF_MODIFIED ideal-int +pkg syscall (linux-386), const RTF_MSS ideal-int +pkg syscall (linux-386), const RTF_MTU ideal-int +pkg syscall (linux-386), const RTF_MULTICAST ideal-int +pkg syscall (linux-386), const RTF_NAT ideal-int +pkg syscall (linux-386), const RTF_NOFORWARD ideal-int +pkg syscall (linux-386), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-386), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-386), const RTF_POLICY ideal-int +pkg syscall (linux-386), const RTF_REINSTATE ideal-int +pkg syscall (linux-386), const RTF_REJECT ideal-int +pkg syscall (linux-386), const RTF_STATIC ideal-int +pkg syscall (linux-386), const RTF_THROW ideal-int +pkg syscall (linux-386), const RTF_UP ideal-int +pkg syscall (linux-386), const RTF_WINDOW ideal-int +pkg syscall (linux-386), const RTF_XRESOLVE ideal-int +pkg syscall (linux-386), const RTM_BASE ideal-int +pkg syscall (linux-386), const RTM_DELACTION ideal-int +pkg syscall (linux-386), const RTM_DELADDR ideal-int +pkg syscall (linux-386), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-386), const RTM_DELLINK ideal-int +pkg syscall (linux-386), const RTM_DELNEIGH ideal-int +pkg syscall (linux-386), const RTM_DELQDISC ideal-int +pkg syscall (linux-386), const RTM_DELROUTE ideal-int +pkg syscall (linux-386), const RTM_DELRULE ideal-int +pkg syscall (linux-386), const RTM_DELTCLASS ideal-int +pkg syscall (linux-386), const RTM_DELTFILTER ideal-int +pkg syscall (linux-386), const RTM_F_CLONED ideal-int +pkg syscall (linux-386), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-386), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-386), const RTM_F_PREFIX ideal-int +pkg syscall (linux-386), const RTM_GETACTION ideal-int +pkg syscall (linux-386), const RTM_GETADDR ideal-int +pkg syscall (linux-386), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-386), const RTM_GETANYCAST ideal-int +pkg syscall (linux-386), const RTM_GETDCB ideal-int +pkg syscall (linux-386), const RTM_GETLINK ideal-int +pkg syscall (linux-386), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-386), const RTM_GETNEIGH ideal-int +pkg syscall (linux-386), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-386), const RTM_GETQDISC ideal-int +pkg syscall (linux-386), const RTM_GETROUTE ideal-int +pkg syscall (linux-386), const RTM_GETRULE ideal-int +pkg syscall (linux-386), const RTM_GETTCLASS ideal-int +pkg syscall (linux-386), const RTM_GETTFILTER ideal-int +pkg syscall (linux-386), const RTM_MAX ideal-int +pkg syscall (linux-386), const RTM_NEWACTION ideal-int +pkg syscall (linux-386), const RTM_NEWADDR ideal-int +pkg syscall (linux-386), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-386), const RTM_NEWLINK ideal-int +pkg syscall (linux-386), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-386), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-386), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-386), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-386), const RTM_NEWQDISC ideal-int +pkg syscall (linux-386), const RTM_NEWROUTE ideal-int +pkg syscall (linux-386), const RTM_NEWRULE ideal-int +pkg syscall (linux-386), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-386), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-386), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-386), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-386), const RTM_SETDCB ideal-int +pkg syscall (linux-386), const RTM_SETLINK ideal-int +pkg syscall (linux-386), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-386), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-386), const RTNH_F_DEAD ideal-int +pkg syscall (linux-386), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-386), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-386), const RTN_ANYCAST ideal-int +pkg syscall (linux-386), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-386), const RTN_BROADCAST ideal-int +pkg syscall (linux-386), const RTN_LOCAL ideal-int +pkg syscall (linux-386), const RTN_MAX ideal-int +pkg syscall (linux-386), const RTN_MULTICAST ideal-int +pkg syscall (linux-386), const RTN_NAT ideal-int +pkg syscall (linux-386), const RTN_PROHIBIT ideal-int +pkg syscall (linux-386), const RTN_THROW ideal-int +pkg syscall (linux-386), const RTN_UNICAST ideal-int +pkg syscall (linux-386), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-386), const RTN_UNSPEC ideal-int +pkg syscall (linux-386), const RTN_XRESOLVE ideal-int +pkg syscall (linux-386), const RTPROT_BIRD ideal-int +pkg syscall (linux-386), const RTPROT_BOOT ideal-int +pkg syscall (linux-386), const RTPROT_DHCP ideal-int +pkg syscall (linux-386), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-386), const RTPROT_GATED ideal-int +pkg syscall (linux-386), const RTPROT_KERNEL ideal-int +pkg syscall (linux-386), const RTPROT_MRT ideal-int +pkg syscall (linux-386), const RTPROT_NTK ideal-int +pkg syscall (linux-386), const RTPROT_RA ideal-int +pkg syscall (linux-386), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-386), const RTPROT_STATIC ideal-int +pkg syscall (linux-386), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-386), const RTPROT_XORP ideal-int +pkg syscall (linux-386), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-386), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-386), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-386), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-386), const RT_CLASS_MAX ideal-int +pkg syscall (linux-386), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-386), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-386), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-386), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-386), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-386), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-386), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-386), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-386), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-386), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-386), const RT_TABLE_MAX ideal-int +pkg syscall (linux-386), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-386), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-386), const RUSAGE_SELF ideal-int +pkg syscall (linux-386), const RUSAGE_THREAD ideal-int +pkg syscall (linux-386), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-386), const SCM_RIGHTS ideal-int +pkg syscall (linux-386), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-386), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-386), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-386), const SIGCHLD Signal +pkg syscall (linux-386), const SIGCLD Signal +pkg syscall (linux-386), const SIGCONT Signal +pkg syscall (linux-386), const SIGIO Signal +pkg syscall (linux-386), const SIGIOT Signal +pkg syscall (linux-386), const SIGPOLL Signal +pkg syscall (linux-386), const SIGPROF Signal +pkg syscall (linux-386), const SIGPWR Signal +pkg syscall (linux-386), const SIGSTKFLT Signal +pkg syscall (linux-386), const SIGSTOP Signal +pkg syscall (linux-386), const SIGSYS Signal +pkg syscall (linux-386), const SIGTSTP Signal +pkg syscall (linux-386), const SIGTTIN Signal +pkg syscall (linux-386), const SIGTTOU Signal +pkg syscall (linux-386), const SIGUNUSED Signal +pkg syscall (linux-386), const SIGURG Signal +pkg syscall (linux-386), const SIGUSR1 Signal +pkg syscall (linux-386), const SIGUSR2 Signal +pkg syscall (linux-386), const SIGVTALRM Signal +pkg syscall (linux-386), const SIGWINCH Signal +pkg syscall (linux-386), const SIGXCPU Signal +pkg syscall (linux-386), const SIGXFSZ Signal +pkg syscall (linux-386), const SIOCADDDLCI ideal-int +pkg syscall (linux-386), const SIOCADDMULTI ideal-int +pkg syscall (linux-386), const SIOCADDRT ideal-int +pkg syscall (linux-386), const SIOCATMARK ideal-int +pkg syscall (linux-386), const SIOCDARP ideal-int +pkg syscall (linux-386), const SIOCDELDLCI ideal-int +pkg syscall (linux-386), const SIOCDELMULTI ideal-int +pkg syscall (linux-386), const SIOCDELRT ideal-int +pkg syscall (linux-386), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-386), const SIOCDIFADDR ideal-int +pkg syscall (linux-386), const SIOCDRARP ideal-int +pkg syscall (linux-386), const SIOCGARP ideal-int +pkg syscall (linux-386), const SIOCGIFADDR ideal-int +pkg syscall (linux-386), const SIOCGIFBR ideal-int +pkg syscall (linux-386), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-386), const SIOCGIFCONF ideal-int +pkg syscall (linux-386), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-386), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-386), const SIOCGIFENCAP ideal-int +pkg syscall (linux-386), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-386), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-386), const SIOCGIFINDEX ideal-int +pkg syscall (linux-386), const SIOCGIFMAP ideal-int +pkg syscall (linux-386), const SIOCGIFMEM ideal-int +pkg syscall (linux-386), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-386), const SIOCGIFMTU ideal-int +pkg syscall (linux-386), const SIOCGIFNAME ideal-int +pkg syscall (linux-386), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-386), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-386), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-386), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-386), const SIOCGPGRP ideal-int +pkg syscall (linux-386), const SIOCGRARP ideal-int +pkg syscall (linux-386), const SIOCGSTAMP ideal-int +pkg syscall (linux-386), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-386), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-386), const SIOCRTMSG ideal-int +pkg syscall (linux-386), const SIOCSARP ideal-int +pkg syscall (linux-386), const SIOCSIFADDR ideal-int +pkg syscall (linux-386), const SIOCSIFBR ideal-int +pkg syscall (linux-386), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-386), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-386), const SIOCSIFENCAP ideal-int +pkg syscall (linux-386), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-386), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-386), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-386), const SIOCSIFLINK ideal-int +pkg syscall (linux-386), const SIOCSIFMAP ideal-int +pkg syscall (linux-386), const SIOCSIFMEM ideal-int +pkg syscall (linux-386), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-386), const SIOCSIFMTU ideal-int +pkg syscall (linux-386), const SIOCSIFNAME ideal-int +pkg syscall (linux-386), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-386), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-386), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-386), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-386), const SIOCSPGRP ideal-int +pkg syscall (linux-386), const SIOCSRARP ideal-int +pkg syscall (linux-386), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-386), const SOCK_DCCP ideal-int +pkg syscall (linux-386), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-386), const SOCK_PACKET ideal-int +pkg syscall (linux-386), const SOCK_RDM ideal-int +pkg syscall (linux-386), const SOL_AAL ideal-int +pkg syscall (linux-386), const SOL_ATM ideal-int +pkg syscall (linux-386), const SOL_DECNET ideal-int +pkg syscall (linux-386), const SOL_ICMPV6 ideal-int +pkg syscall (linux-386), const SOL_IP ideal-int +pkg syscall (linux-386), const SOL_IPV6 ideal-int +pkg syscall (linux-386), const SOL_IRDA ideal-int +pkg syscall (linux-386), const SOL_PACKET ideal-int +pkg syscall (linux-386), const SOL_RAW ideal-int +pkg syscall (linux-386), const SOL_TCP ideal-int +pkg syscall (linux-386), const SOL_X25 ideal-int +pkg syscall (linux-386), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-386), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-386), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-386), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-386), const SO_DEBUG ideal-int +pkg syscall (linux-386), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-386), const SO_DOMAIN ideal-int +pkg syscall (linux-386), const SO_ERROR ideal-int +pkg syscall (linux-386), const SO_MARK ideal-int +pkg syscall (linux-386), const SO_NO_CHECK ideal-int +pkg syscall (linux-386), const SO_OOBINLINE ideal-int +pkg syscall (linux-386), const SO_PASSCRED ideal-int +pkg syscall (linux-386), const SO_PASSSEC ideal-int +pkg syscall (linux-386), const SO_PEERCRED ideal-int +pkg syscall (linux-386), const SO_PEERNAME ideal-int +pkg syscall (linux-386), const SO_PEERSEC ideal-int +pkg syscall (linux-386), const SO_PRIORITY ideal-int +pkg syscall (linux-386), const SO_PROTOCOL ideal-int +pkg syscall (linux-386), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-386), const SO_RCVLOWAT ideal-int +pkg syscall (linux-386), const SO_RCVTIMEO ideal-int +pkg syscall (linux-386), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-386), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-386), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-386), const SO_SNDLOWAT ideal-int +pkg syscall (linux-386), const SO_SNDTIMEO ideal-int +pkg syscall (linux-386), const SO_TIMESTAMP ideal-int +pkg syscall (linux-386), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-386), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-386), const SO_TYPE ideal-int +pkg syscall (linux-386), const SYS_ACCESS ideal-int +pkg syscall (linux-386), const SYS_ACCT ideal-int +pkg syscall (linux-386), const SYS_ADD_KEY ideal-int +pkg syscall (linux-386), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-386), const SYS_AFS_SYSCALL ideal-int +pkg syscall (linux-386), const SYS_ALARM ideal-int +pkg syscall (linux-386), const SYS_BDFLUSH ideal-int +pkg syscall (linux-386), const SYS_BREAK ideal-int +pkg syscall (linux-386), const SYS_BRK ideal-int +pkg syscall (linux-386), const SYS_CAPGET ideal-int +pkg syscall (linux-386), const SYS_CAPSET ideal-int +pkg syscall (linux-386), const SYS_CHDIR ideal-int +pkg syscall (linux-386), const SYS_CHMOD ideal-int +pkg syscall (linux-386), const SYS_CHOWN ideal-int +pkg syscall (linux-386), const SYS_CHOWN32 ideal-int +pkg syscall (linux-386), const SYS_CHROOT ideal-int +pkg syscall (linux-386), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-386), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-386), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-386), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-386), const SYS_CLONE ideal-int +pkg syscall (linux-386), const SYS_CLOSE ideal-int +pkg syscall (linux-386), const SYS_CREAT ideal-int +pkg syscall (linux-386), const SYS_CREATE_MODULE ideal-int +pkg syscall (linux-386), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-386), const SYS_DUP ideal-int +pkg syscall (linux-386), const SYS_DUP2 ideal-int +pkg syscall (linux-386), const SYS_DUP3 ideal-int +pkg syscall (linux-386), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-386), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-386), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-386), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-386), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-386), const SYS_EVENTFD ideal-int +pkg syscall (linux-386), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-386), const SYS_EXECVE ideal-int +pkg syscall (linux-386), const SYS_EXIT ideal-int +pkg syscall (linux-386), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-386), const SYS_FACCESSAT ideal-int +pkg syscall (linux-386), const SYS_FADVISE64 ideal-int +pkg syscall (linux-386), const SYS_FADVISE64_64 ideal-int +pkg syscall (linux-386), const SYS_FALLOCATE ideal-int +pkg syscall (linux-386), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-386), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-386), const SYS_FCHDIR ideal-int +pkg syscall (linux-386), const SYS_FCHMOD ideal-int +pkg syscall (linux-386), const SYS_FCHMODAT ideal-int +pkg syscall (linux-386), const SYS_FCHOWN ideal-int +pkg syscall (linux-386), const SYS_FCHOWN32 ideal-int +pkg syscall (linux-386), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-386), const SYS_FCNTL ideal-int +pkg syscall (linux-386), const SYS_FCNTL64 ideal-int +pkg syscall (linux-386), const SYS_FDATASYNC ideal-int +pkg syscall (linux-386), const SYS_FGETXATTR ideal-int +pkg syscall (linux-386), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-386), const SYS_FLOCK ideal-int +pkg syscall (linux-386), const SYS_FORK ideal-int +pkg syscall (linux-386), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-386), const SYS_FSETXATTR ideal-int +pkg syscall (linux-386), const SYS_FSTAT ideal-int +pkg syscall (linux-386), const SYS_FSTAT64 ideal-int +pkg syscall (linux-386), const SYS_FSTATAT64 ideal-int +pkg syscall (linux-386), const SYS_FSTATFS ideal-int +pkg syscall (linux-386), const SYS_FSTATFS64 ideal-int +pkg syscall (linux-386), const SYS_FSYNC ideal-int +pkg syscall (linux-386), const SYS_FTIME ideal-int +pkg syscall (linux-386), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-386), const SYS_FTRUNCATE64 ideal-int +pkg syscall (linux-386), const SYS_FUTEX ideal-int +pkg syscall (linux-386), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-386), const SYS_GETCPU ideal-int +pkg syscall (linux-386), const SYS_GETCWD ideal-int +pkg syscall (linux-386), const SYS_GETDENTS ideal-int +pkg syscall (linux-386), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-386), const SYS_GETEGID ideal-int +pkg syscall (linux-386), const SYS_GETEGID32 ideal-int +pkg syscall (linux-386), const SYS_GETEUID ideal-int +pkg syscall (linux-386), const SYS_GETEUID32 ideal-int +pkg syscall (linux-386), const SYS_GETGID ideal-int +pkg syscall (linux-386), const SYS_GETGID32 ideal-int +pkg syscall (linux-386), const SYS_GETGROUPS ideal-int +pkg syscall (linux-386), const SYS_GETGROUPS32 ideal-int +pkg syscall (linux-386), const SYS_GETITIMER ideal-int +pkg syscall (linux-386), const SYS_GETPGID ideal-int +pkg syscall (linux-386), const SYS_GETPGRP ideal-int +pkg syscall (linux-386), const SYS_GETPID ideal-int +pkg syscall (linux-386), const SYS_GETPMSG ideal-int +pkg syscall (linux-386), const SYS_GETPPID ideal-int +pkg syscall (linux-386), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-386), const SYS_GETRESGID ideal-int +pkg syscall (linux-386), const SYS_GETRESGID32 ideal-int +pkg syscall (linux-386), const SYS_GETRESUID ideal-int +pkg syscall (linux-386), const SYS_GETRESUID32 ideal-int +pkg syscall (linux-386), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-386), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-386), const SYS_GETSID ideal-int +pkg syscall (linux-386), const SYS_GETTID ideal-int +pkg syscall (linux-386), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-386), const SYS_GETUID ideal-int +pkg syscall (linux-386), const SYS_GETUID32 ideal-int +pkg syscall (linux-386), const SYS_GETXATTR ideal-int +pkg syscall (linux-386), const SYS_GET_KERNEL_SYMS ideal-int +pkg syscall (linux-386), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-386), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-386), const SYS_GET_THREAD_AREA ideal-int +pkg syscall (linux-386), const SYS_GTTY ideal-int +pkg syscall (linux-386), const SYS_IDLE ideal-int +pkg syscall (linux-386), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-386), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-386), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-386), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-386), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-386), const SYS_IOCTL ideal-int +pkg syscall (linux-386), const SYS_IOPERM ideal-int +pkg syscall (linux-386), const SYS_IOPL ideal-int +pkg syscall (linux-386), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-386), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-386), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-386), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-386), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-386), const SYS_IO_SETUP ideal-int +pkg syscall (linux-386), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-386), const SYS_IPC ideal-int +pkg syscall (linux-386), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-386), const SYS_KEYCTL ideal-int +pkg syscall (linux-386), const SYS_KILL ideal-int +pkg syscall (linux-386), const SYS_LCHOWN ideal-int +pkg syscall (linux-386), const SYS_LCHOWN32 ideal-int +pkg syscall (linux-386), const SYS_LGETXATTR ideal-int +pkg syscall (linux-386), const SYS_LINK ideal-int +pkg syscall (linux-386), const SYS_LINKAT ideal-int +pkg syscall (linux-386), const SYS_LISTXATTR ideal-int +pkg syscall (linux-386), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-386), const SYS_LOCK ideal-int +pkg syscall (linux-386), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-386), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-386), const SYS_LSEEK ideal-int +pkg syscall (linux-386), const SYS_LSETXATTR ideal-int +pkg syscall (linux-386), const SYS_LSTAT ideal-int +pkg syscall (linux-386), const SYS_LSTAT64 ideal-int +pkg syscall (linux-386), const SYS_MADVISE ideal-int +pkg syscall (linux-386), const SYS_MADVISE1 ideal-int +pkg syscall (linux-386), const SYS_MBIND ideal-int +pkg syscall (linux-386), const SYS_MIGRATE_PAGES ideal-int +pkg syscall (linux-386), const SYS_MINCORE ideal-int +pkg syscall (linux-386), const SYS_MKDIR ideal-int +pkg syscall (linux-386), const SYS_MKDIRAT ideal-int +pkg syscall (linux-386), const SYS_MKNOD ideal-int +pkg syscall (linux-386), const SYS_MKNODAT ideal-int +pkg syscall (linux-386), const SYS_MLOCK ideal-int +pkg syscall (linux-386), const SYS_MLOCKALL ideal-int +pkg syscall (linux-386), const SYS_MMAP ideal-int +pkg syscall (linux-386), const SYS_MMAP2 ideal-int +pkg syscall (linux-386), const SYS_MODIFY_LDT ideal-int +pkg syscall (linux-386), const SYS_MOUNT ideal-int +pkg syscall (linux-386), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-386), const SYS_MPROTECT ideal-int +pkg syscall (linux-386), const SYS_MPX ideal-int +pkg syscall (linux-386), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-386), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-386), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-386), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-386), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-386), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-386), const SYS_MREMAP ideal-int +pkg syscall (linux-386), const SYS_MSYNC ideal-int +pkg syscall (linux-386), const SYS_MUNLOCK ideal-int +pkg syscall (linux-386), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-386), const SYS_MUNMAP ideal-int +pkg syscall (linux-386), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-386), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-386), const SYS_NICE ideal-int +pkg syscall (linux-386), const SYS_OLDFSTAT ideal-int +pkg syscall (linux-386), const SYS_OLDLSTAT ideal-int +pkg syscall (linux-386), const SYS_OLDOLDUNAME ideal-int +pkg syscall (linux-386), const SYS_OLDSTAT ideal-int +pkg syscall (linux-386), const SYS_OLDUNAME ideal-int +pkg syscall (linux-386), const SYS_OPEN ideal-int +pkg syscall (linux-386), const SYS_OPENAT ideal-int +pkg syscall (linux-386), const SYS_PAUSE ideal-int +pkg syscall (linux-386), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-386), const SYS_PERSONALITY ideal-int +pkg syscall (linux-386), const SYS_PIPE ideal-int +pkg syscall (linux-386), const SYS_PIPE2 ideal-int +pkg syscall (linux-386), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-386), const SYS_POLL ideal-int +pkg syscall (linux-386), const SYS_PPOLL ideal-int +pkg syscall (linux-386), const SYS_PRCTL ideal-int +pkg syscall (linux-386), const SYS_PREAD64 ideal-int +pkg syscall (linux-386), const SYS_PREADV ideal-int +pkg syscall (linux-386), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-386), const SYS_PROF ideal-int +pkg syscall (linux-386), const SYS_PROFIL ideal-int +pkg syscall (linux-386), const SYS_PSELECT6 ideal-int +pkg syscall (linux-386), const SYS_PTRACE ideal-int +pkg syscall (linux-386), const SYS_PUTPMSG ideal-int +pkg syscall (linux-386), const SYS_PWRITE64 ideal-int +pkg syscall (linux-386), const SYS_PWRITEV ideal-int +pkg syscall (linux-386), const SYS_QUERY_MODULE ideal-int +pkg syscall (linux-386), const SYS_QUOTACTL ideal-int +pkg syscall (linux-386), const SYS_READ ideal-int +pkg syscall (linux-386), const SYS_READAHEAD ideal-int +pkg syscall (linux-386), const SYS_READDIR ideal-int +pkg syscall (linux-386), const SYS_READLINK ideal-int +pkg syscall (linux-386), const SYS_READLINKAT ideal-int +pkg syscall (linux-386), const SYS_READV ideal-int +pkg syscall (linux-386), const SYS_REBOOT ideal-int +pkg syscall (linux-386), const SYS_RECVMMSG ideal-int +pkg syscall (linux-386), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-386), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-386), const SYS_RENAME ideal-int +pkg syscall (linux-386), const SYS_RENAMEAT ideal-int +pkg syscall (linux-386), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-386), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-386), const SYS_RMDIR ideal-int +pkg syscall (linux-386), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-386), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-386), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-386), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-386), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-386), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-386), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-386), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-386), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-386), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-386), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-386), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-386), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-386), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-386), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-386), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-386), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-386), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-386), const SYS_SELECT ideal-int +pkg syscall (linux-386), const SYS_SENDFILE ideal-int +pkg syscall (linux-386), const SYS_SENDFILE64 ideal-int +pkg syscall (linux-386), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-386), const SYS_SETFSGID ideal-int +pkg syscall (linux-386), const SYS_SETFSGID32 ideal-int +pkg syscall (linux-386), const SYS_SETFSUID ideal-int +pkg syscall (linux-386), const SYS_SETFSUID32 ideal-int +pkg syscall (linux-386), const SYS_SETGID ideal-int +pkg syscall (linux-386), const SYS_SETGID32 ideal-int +pkg syscall (linux-386), const SYS_SETGROUPS ideal-int +pkg syscall (linux-386), const SYS_SETGROUPS32 ideal-int +pkg syscall (linux-386), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-386), const SYS_SETITIMER ideal-int +pkg syscall (linux-386), const SYS_SETPGID ideal-int +pkg syscall (linux-386), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-386), const SYS_SETREGID ideal-int +pkg syscall (linux-386), const SYS_SETREGID32 ideal-int +pkg syscall (linux-386), const SYS_SETRESGID ideal-int +pkg syscall (linux-386), const SYS_SETRESGID32 ideal-int +pkg syscall (linux-386), const SYS_SETRESUID ideal-int +pkg syscall (linux-386), const SYS_SETRESUID32 ideal-int +pkg syscall (linux-386), const SYS_SETREUID ideal-int +pkg syscall (linux-386), const SYS_SETREUID32 ideal-int +pkg syscall (linux-386), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-386), const SYS_SETSID ideal-int +pkg syscall (linux-386), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-386), const SYS_SETUID ideal-int +pkg syscall (linux-386), const SYS_SETUID32 ideal-int +pkg syscall (linux-386), const SYS_SETXATTR ideal-int +pkg syscall (linux-386), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-386), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-386), const SYS_SET_THREAD_AREA ideal-int +pkg syscall (linux-386), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-386), const SYS_SGETMASK ideal-int +pkg syscall (linux-386), const SYS_SIGACTION ideal-int +pkg syscall (linux-386), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-386), const SYS_SIGNAL ideal-int +pkg syscall (linux-386), const SYS_SIGNALFD ideal-int +pkg syscall (linux-386), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-386), const SYS_SIGPENDING ideal-int +pkg syscall (linux-386), const SYS_SIGPROCMASK ideal-int +pkg syscall (linux-386), const SYS_SIGRETURN ideal-int +pkg syscall (linux-386), const SYS_SIGSUSPEND ideal-int +pkg syscall (linux-386), const SYS_SOCKETCALL ideal-int +pkg syscall (linux-386), const SYS_SPLICE ideal-int +pkg syscall (linux-386), const SYS_SSETMASK ideal-int +pkg syscall (linux-386), const SYS_STAT ideal-int +pkg syscall (linux-386), const SYS_STAT64 ideal-int +pkg syscall (linux-386), const SYS_STATFS ideal-int +pkg syscall (linux-386), const SYS_STATFS64 ideal-int +pkg syscall (linux-386), const SYS_STIME ideal-int +pkg syscall (linux-386), const SYS_STTY ideal-int +pkg syscall (linux-386), const SYS_SWAPOFF ideal-int +pkg syscall (linux-386), const SYS_SWAPON ideal-int +pkg syscall (linux-386), const SYS_SYMLINK ideal-int +pkg syscall (linux-386), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-386), const SYS_SYNC ideal-int +pkg syscall (linux-386), const SYS_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-386), const SYS_SYSFS ideal-int +pkg syscall (linux-386), const SYS_SYSINFO ideal-int +pkg syscall (linux-386), const SYS_SYSLOG ideal-int +pkg syscall (linux-386), const SYS_TEE ideal-int +pkg syscall (linux-386), const SYS_TGKILL ideal-int +pkg syscall (linux-386), const SYS_TIME ideal-int +pkg syscall (linux-386), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-386), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-386), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-386), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-386), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-386), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-386), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-386), const SYS_TIMES ideal-int +pkg syscall (linux-386), const SYS_TKILL ideal-int +pkg syscall (linux-386), const SYS_TRUNCATE ideal-int +pkg syscall (linux-386), const SYS_TRUNCATE64 ideal-int +pkg syscall (linux-386), const SYS_UGETRLIMIT ideal-int +pkg syscall (linux-386), const SYS_ULIMIT ideal-int +pkg syscall (linux-386), const SYS_UMASK ideal-int +pkg syscall (linux-386), const SYS_UMOUNT ideal-int +pkg syscall (linux-386), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-386), const SYS_UNAME ideal-int +pkg syscall (linux-386), const SYS_UNLINK ideal-int +pkg syscall (linux-386), const SYS_UNLINKAT ideal-int +pkg syscall (linux-386), const SYS_UNSHARE ideal-int +pkg syscall (linux-386), const SYS_USELIB ideal-int +pkg syscall (linux-386), const SYS_USTAT ideal-int +pkg syscall (linux-386), const SYS_UTIME ideal-int +pkg syscall (linux-386), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-386), const SYS_UTIMES ideal-int +pkg syscall (linux-386), const SYS_VFORK ideal-int +pkg syscall (linux-386), const SYS_VHANGUP ideal-int +pkg syscall (linux-386), const SYS_VM86 ideal-int +pkg syscall (linux-386), const SYS_VM86OLD ideal-int +pkg syscall (linux-386), const SYS_VMSPLICE ideal-int +pkg syscall (linux-386), const SYS_VSERVER ideal-int +pkg syscall (linux-386), const SYS_WAIT4 ideal-int +pkg syscall (linux-386), const SYS_WAITID ideal-int +pkg syscall (linux-386), const SYS_WAITPID ideal-int +pkg syscall (linux-386), const SYS_WRITE ideal-int +pkg syscall (linux-386), const SYS_WRITEV ideal-int +pkg syscall (linux-386), const SYS__LLSEEK ideal-int +pkg syscall (linux-386), const SYS__NEWSELECT ideal-int +pkg syscall (linux-386), const SYS__SYSCTL ideal-int +pkg syscall (linux-386), const S_BLKSIZE ideal-int +pkg syscall (linux-386), const S_IEXEC ideal-int +pkg syscall (linux-386), const S_IREAD ideal-int +pkg syscall (linux-386), const S_IRGRP ideal-int +pkg syscall (linux-386), const S_IROTH ideal-int +pkg syscall (linux-386), const S_IRWXG ideal-int +pkg syscall (linux-386), const S_IRWXO ideal-int +pkg syscall (linux-386), const S_IRWXU ideal-int +pkg syscall (linux-386), const S_IWGRP ideal-int +pkg syscall (linux-386), const S_IWOTH ideal-int +pkg syscall (linux-386), const S_IWRITE ideal-int +pkg syscall (linux-386), const S_IXGRP ideal-int +pkg syscall (linux-386), const S_IXOTH ideal-int +pkg syscall (linux-386), const SizeofCmsghdr ideal-int +pkg syscall (linux-386), const SizeofIPMreq ideal-int +pkg syscall (linux-386), const SizeofIPMreqn ideal-int +pkg syscall (linux-386), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-386), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-386), const SizeofIfInfomsg ideal-int +pkg syscall (linux-386), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-386), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-386), const SizeofInotifyEvent ideal-int +pkg syscall (linux-386), const SizeofLinger ideal-int +pkg syscall (linux-386), const SizeofMsghdr ideal-int +pkg syscall (linux-386), const SizeofNlAttr ideal-int +pkg syscall (linux-386), const SizeofNlMsgerr ideal-int +pkg syscall (linux-386), const SizeofNlMsghdr ideal-int +pkg syscall (linux-386), const SizeofRtAttr ideal-int +pkg syscall (linux-386), const SizeofRtGenmsg ideal-int +pkg syscall (linux-386), const SizeofRtMsg ideal-int +pkg syscall (linux-386), const SizeofRtNexthop ideal-int +pkg syscall (linux-386), const SizeofSockFilter ideal-int +pkg syscall (linux-386), const SizeofSockFprog ideal-int +pkg syscall (linux-386), const SizeofSockaddrAny ideal-int +pkg syscall (linux-386), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-386), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-386), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-386), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-386), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-386), const SizeofUcred ideal-int +pkg syscall (linux-386), const TCGETS ideal-int +pkg syscall (linux-386), const TCP_CONGESTION ideal-int +pkg syscall (linux-386), const TCP_CORK ideal-int +pkg syscall (linux-386), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-386), const TCP_INFO ideal-int +pkg syscall (linux-386), const TCP_KEEPCNT ideal-int +pkg syscall (linux-386), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-386), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-386), const TCP_LINGER2 ideal-int +pkg syscall (linux-386), const TCP_MAXSEG ideal-int +pkg syscall (linux-386), const TCP_MAXWIN ideal-int +pkg syscall (linux-386), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-386), const TCP_MD5SIG ideal-int +pkg syscall (linux-386), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-386), const TCP_MSS ideal-int +pkg syscall (linux-386), const TCP_QUICKACK ideal-int +pkg syscall (linux-386), const TCP_SYNCNT ideal-int +pkg syscall (linux-386), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-386), const TCSETS ideal-int +pkg syscall (linux-386), const TIOCCBRK ideal-int +pkg syscall (linux-386), const TIOCCONS ideal-int +pkg syscall (linux-386), const TIOCEXCL ideal-int +pkg syscall (linux-386), const TIOCGDEV ideal-int +pkg syscall (linux-386), const TIOCGETD ideal-int +pkg syscall (linux-386), const TIOCGICOUNT ideal-int +pkg syscall (linux-386), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-386), const TIOCGPGRP ideal-int +pkg syscall (linux-386), const TIOCGPTN ideal-int +pkg syscall (linux-386), const TIOCGRS485 ideal-int +pkg syscall (linux-386), const TIOCGSERIAL ideal-int +pkg syscall (linux-386), const TIOCGSID ideal-int +pkg syscall (linux-386), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-386), const TIOCGWINSZ ideal-int +pkg syscall (linux-386), const TIOCINQ ideal-int +pkg syscall (linux-386), const TIOCLINUX ideal-int +pkg syscall (linux-386), const TIOCMBIC ideal-int +pkg syscall (linux-386), const TIOCMBIS ideal-int +pkg syscall (linux-386), const TIOCMGET ideal-int +pkg syscall (linux-386), const TIOCMIWAIT ideal-int +pkg syscall (linux-386), const TIOCMSET ideal-int +pkg syscall (linux-386), const TIOCM_CAR ideal-int +pkg syscall (linux-386), const TIOCM_CD ideal-int +pkg syscall (linux-386), const TIOCM_CTS ideal-int +pkg syscall (linux-386), const TIOCM_DSR ideal-int +pkg syscall (linux-386), const TIOCM_DTR ideal-int +pkg syscall (linux-386), const TIOCM_LE ideal-int +pkg syscall (linux-386), const TIOCM_RI ideal-int +pkg syscall (linux-386), const TIOCM_RNG ideal-int +pkg syscall (linux-386), const TIOCM_RTS ideal-int +pkg syscall (linux-386), const TIOCM_SR ideal-int +pkg syscall (linux-386), const TIOCM_ST ideal-int +pkg syscall (linux-386), const TIOCNOTTY ideal-int +pkg syscall (linux-386), const TIOCNXCL ideal-int +pkg syscall (linux-386), const TIOCOUTQ ideal-int +pkg syscall (linux-386), const TIOCPKT ideal-int +pkg syscall (linux-386), const TIOCPKT_DATA ideal-int +pkg syscall (linux-386), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-386), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-386), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-386), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-386), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-386), const TIOCPKT_START ideal-int +pkg syscall (linux-386), const TIOCPKT_STOP ideal-int +pkg syscall (linux-386), const TIOCSBRK ideal-int +pkg syscall (linux-386), const TIOCSCTTY ideal-int +pkg syscall (linux-386), const TIOCSERCONFIG ideal-int +pkg syscall (linux-386), const TIOCSERGETLSR ideal-int +pkg syscall (linux-386), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-386), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-386), const TIOCSERGWILD ideal-int +pkg syscall (linux-386), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-386), const TIOCSERSWILD ideal-int +pkg syscall (linux-386), const TIOCSER_TEMT ideal-int +pkg syscall (linux-386), const TIOCSETD ideal-int +pkg syscall (linux-386), const TIOCSIG ideal-int +pkg syscall (linux-386), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-386), const TIOCSPGRP ideal-int +pkg syscall (linux-386), const TIOCSPTLCK ideal-int +pkg syscall (linux-386), const TIOCSRS485 ideal-int +pkg syscall (linux-386), const TIOCSSERIAL ideal-int +pkg syscall (linux-386), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-386), const TIOCSTI ideal-int +pkg syscall (linux-386), const TIOCSWINSZ ideal-int +pkg syscall (linux-386), const TOSTOP ideal-int +pkg syscall (linux-386), const TUNATTACHFILTER ideal-int +pkg syscall (linux-386), const TUNDETACHFILTER ideal-int +pkg syscall (linux-386), const TUNGETFEATURES ideal-int +pkg syscall (linux-386), const TUNGETIFF ideal-int +pkg syscall (linux-386), const TUNGETSNDBUF ideal-int +pkg syscall (linux-386), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-386), const TUNSETDEBUG ideal-int +pkg syscall (linux-386), const TUNSETGROUP ideal-int +pkg syscall (linux-386), const TUNSETIFF ideal-int +pkg syscall (linux-386), const TUNSETLINK ideal-int +pkg syscall (linux-386), const TUNSETNOCSUM ideal-int +pkg syscall (linux-386), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-386), const TUNSETOWNER ideal-int +pkg syscall (linux-386), const TUNSETPERSIST ideal-int +pkg syscall (linux-386), const TUNSETSNDBUF ideal-int +pkg syscall (linux-386), const TUNSETTXFILTER ideal-int +pkg syscall (linux-386), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-386), const VDISCARD ideal-int +pkg syscall (linux-386), const VEOF ideal-int +pkg syscall (linux-386), const VEOL ideal-int +pkg syscall (linux-386), const VEOL2 ideal-int +pkg syscall (linux-386), const VERASE ideal-int +pkg syscall (linux-386), const VINTR ideal-int +pkg syscall (linux-386), const VKILL ideal-int +pkg syscall (linux-386), const VLNEXT ideal-int +pkg syscall (linux-386), const VMIN ideal-int +pkg syscall (linux-386), const VQUIT ideal-int +pkg syscall (linux-386), const VREPRINT ideal-int +pkg syscall (linux-386), const VSTART ideal-int +pkg syscall (linux-386), const VSTOP ideal-int +pkg syscall (linux-386), const VSUSP ideal-int +pkg syscall (linux-386), const VSWTC ideal-int +pkg syscall (linux-386), const VTIME ideal-int +pkg syscall (linux-386), const VWERASE ideal-int +pkg syscall (linux-386), const WALL ideal-int +pkg syscall (linux-386), const WCLONE ideal-int +pkg syscall (linux-386), const WCONTINUED ideal-int +pkg syscall (linux-386), const WEXITED ideal-int +pkg syscall (linux-386), const WNOHANG ideal-int +pkg syscall (linux-386), const WNOTHREAD ideal-int +pkg syscall (linux-386), const WNOWAIT ideal-int +pkg syscall (linux-386), const WORDSIZE ideal-int +pkg syscall (linux-386), const WSTOPPED ideal-int +pkg syscall (linux-386), const WUNTRACED ideal-int +pkg syscall (linux-386), const XCASE ideal-int +pkg syscall (linux-386), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-386), func Access(string, uint32) error +pkg syscall (linux-386), func Acct(string) error +pkg syscall (linux-386), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-386), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-386), func Bind(int, Sockaddr) error +pkg syscall (linux-386), func BindToDevice(int, string) error +pkg syscall (linux-386), func Chroot(string) error +pkg syscall (linux-386), func Close(int) error +pkg syscall (linux-386), func CloseOnExec(int) +pkg syscall (linux-386), func CmsgLen(int) int +pkg syscall (linux-386), func CmsgSpace(int) int +pkg syscall (linux-386), func Connect(int, Sockaddr) error +pkg syscall (linux-386), func Creat(string, uint32) (int, error) +pkg syscall (linux-386), func DetachLsf(int) error +pkg syscall (linux-386), func Dup(int) (int, error) +pkg syscall (linux-386), func Dup2(int, int) error +pkg syscall (linux-386), func EpollCreate(int) (int, error) +pkg syscall (linux-386), func EpollCreate1(int) (int, error) +pkg syscall (linux-386), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-386), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-386), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-386), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-386), func Fchdir(int) error +pkg syscall (linux-386), func Fchmod(int, uint32) error +pkg syscall (linux-386), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-386), func Fchown(int, int, int) error +pkg syscall (linux-386), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-386), func Fdatasync(int) error +pkg syscall (linux-386), func Flock(int, int) error +pkg syscall (linux-386), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-386), func Fstat(int, *Stat_t) error +pkg syscall (linux-386), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-386), func Fsync(int) error +pkg syscall (linux-386), func Ftruncate(int, int64) error +pkg syscall (linux-386), func Futimes(int, []Timeval) error +pkg syscall (linux-386), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-386), func Getcwd([]uint8) (int, error) +pkg syscall (linux-386), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-386), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-386), func Getpgid(int) (int, error) +pkg syscall (linux-386), func Getpgrp() int +pkg syscall (linux-386), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-386), func Getrusage(int, *Rusage) error +pkg syscall (linux-386), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-386), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-386), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-386), func Gettid() int +pkg syscall (linux-386), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-386), func InotifyInit() (int, error) +pkg syscall (linux-386), func InotifyInit1(int) (int, error) +pkg syscall (linux-386), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-386), func Ioperm(int, int, int) error +pkg syscall (linux-386), func Iopl(int) error +pkg syscall (linux-386), func Kill(int, Signal) error +pkg syscall (linux-386), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-386), func Listen(int, int) error +pkg syscall (linux-386), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-386), func LsfSocket(int, int) (int, error) +pkg syscall (linux-386), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-386), func Lstat(string, *Stat_t) error +pkg syscall (linux-386), func Madvise([]uint8, int) error +pkg syscall (linux-386), func Mkdirat(int, string, uint32) error +pkg syscall (linux-386), func Mkfifo(string, uint32) error +pkg syscall (linux-386), func Mknod(string, uint32, int) error +pkg syscall (linux-386), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-386), func Mlock([]uint8) error +pkg syscall (linux-386), func Mlockall(int) error +pkg syscall (linux-386), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-386), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-386), func Mprotect([]uint8, int) error +pkg syscall (linux-386), func Munlock([]uint8) error +pkg syscall (linux-386), func Munlockall() error +pkg syscall (linux-386), func Munmap([]uint8) error +pkg syscall (linux-386), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-386), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-386), func NsecToTimespec(int64) Timespec +pkg syscall (linux-386), func Open(string, int, uint32) (int, error) +pkg syscall (linux-386), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-386), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-386), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-386), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-386), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-386), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-386), func Pause() error +pkg syscall (linux-386), func Pipe([]int) error +pkg syscall (linux-386), func PivotRoot(string, string) error +pkg syscall (linux-386), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-386), func PtraceAttach(int) error +pkg syscall (linux-386), func PtraceCont(int, int) error +pkg syscall (linux-386), func PtraceDetach(int) error +pkg syscall (linux-386), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-386), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-386), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386), func PtraceSetOptions(int, int) error +pkg syscall (linux-386), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-386), func PtraceSingleStep(int) error +pkg syscall (linux-386), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func Read(int, []uint8) (int, error) +pkg syscall (linux-386), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-386), func Reboot(int) error +pkg syscall (linux-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-386), func Renameat(int, string, int, string) error +pkg syscall (linux-386), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-386), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-386), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-386), func SetLsfPromisc(string, bool) error +pkg syscall (linux-386), func SetNonblock(int, bool) error +pkg syscall (linux-386), func Setdomainname([]uint8) error +pkg syscall (linux-386), func Setfsgid(int) error +pkg syscall (linux-386), func Setfsuid(int) error +pkg syscall (linux-386), func Setgid(int) error +pkg syscall (linux-386), func Setgroups([]int) error +pkg syscall (linux-386), func Sethostname([]uint8) error +pkg syscall (linux-386), func Setpgid(int, int) error +pkg syscall (linux-386), func Setregid(int, int) error +pkg syscall (linux-386), func Setresgid(int, int, int) error +pkg syscall (linux-386), func Setresuid(int, int, int) error +pkg syscall (linux-386), func Setreuid(int, int) error +pkg syscall (linux-386), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-386), func Setsid() (int, error) +pkg syscall (linux-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-386), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-386), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-386), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-386), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-386), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-386), func Settimeofday(*Timeval) error +pkg syscall (linux-386), func Setuid(int) error +pkg syscall (linux-386), func Shutdown(int, int) error +pkg syscall (linux-386), func Socket(int, int, int) (int, error) +pkg syscall (linux-386), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-386), func Splice(int, *int64, int, *int64, int, int) (int, error) +pkg syscall (linux-386), func Stat(string, *Stat_t) error +pkg syscall (linux-386), func Statfs(string, *Statfs_t) error +pkg syscall (linux-386), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-386), func Sync() +pkg syscall (linux-386), func SyncFileRange(int, int64, int64, int) error +pkg syscall (linux-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-386), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-386), func Tgkill(int, int, Signal) error +pkg syscall (linux-386), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-386), func Times(*Tms) (uintptr, error) +pkg syscall (linux-386), func TimespecToNsec(Timespec) int64 +pkg syscall (linux-386), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-386), func Truncate(string, int64) error +pkg syscall (linux-386), func Umask(int) int +pkg syscall (linux-386), func Uname(*Utsname) error +pkg syscall (linux-386), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-386), func UnixRights(...int) []uint8 +pkg syscall (linux-386), func Unlinkat(int, string) error +pkg syscall (linux-386), func Unmount(string, int) error +pkg syscall (linux-386), func Unshare(int) error +pkg syscall (linux-386), func Ustat(int, *Ustat_t) error +pkg syscall (linux-386), func Utime(string, *Utimbuf) error +pkg syscall (linux-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-386), func Write(int, []uint8) (int, error) +pkg syscall (linux-386), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-386), method (*Iovec) SetLen(int) +pkg syscall (linux-386), method (*Msghdr) SetControllen(int) +pkg syscall (linux-386), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-386), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-386), type Cmsghdr struct +pkg syscall (linux-386), type Cmsghdr struct, Len uint32 +pkg syscall (linux-386), type Cmsghdr struct, Level int32 +pkg syscall (linux-386), type Cmsghdr struct, Type int32 +pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-386), type Credential struct +pkg syscall (linux-386), type Credential struct, Gid uint32 +pkg syscall (linux-386), type Credential struct, Groups []uint32 +pkg syscall (linux-386), type Credential struct, Uid uint32 +pkg syscall (linux-386), type Dirent struct +pkg syscall (linux-386), type Dirent struct, Ino uint64 +pkg syscall (linux-386), type Dirent struct, Name [256]int8 +pkg syscall (linux-386), type Dirent struct, Off int64 +pkg syscall (linux-386), type Dirent struct, Pad_cgo_0 [1]uint8 +pkg syscall (linux-386), type Dirent struct, Reclen uint16 +pkg syscall (linux-386), type Dirent struct, Type uint8 +pkg syscall (linux-386), type EpollEvent struct +pkg syscall (linux-386), type EpollEvent struct, Events uint32 +pkg syscall (linux-386), type EpollEvent struct, Fd int32 +pkg syscall (linux-386), type EpollEvent struct, Pad int32 +pkg syscall (linux-386), type FdSet struct +pkg syscall (linux-386), type FdSet struct, Bits [32]int32 +pkg syscall (linux-386), type Fsid struct +pkg syscall (linux-386), type Fsid struct, X__val [2]int32 +pkg syscall (linux-386), type IPMreqn struct +pkg syscall (linux-386), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-386), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-386), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-386), type IfAddrmsg struct +pkg syscall (linux-386), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-386), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-386), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-386), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-386), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-386), type IfInfomsg struct +pkg syscall (linux-386), type IfInfomsg struct, Change uint32 +pkg syscall (linux-386), type IfInfomsg struct, Family uint8 +pkg syscall (linux-386), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-386), type IfInfomsg struct, Index int32 +pkg syscall (linux-386), type IfInfomsg struct, Type uint16 +pkg syscall (linux-386), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-386), type Inet4Pktinfo struct +pkg syscall (linux-386), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-386), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-386), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-386), type Inet6Pktinfo struct +pkg syscall (linux-386), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-386), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-386), type InotifyEvent struct +pkg syscall (linux-386), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-386), type InotifyEvent struct, Len uint32 +pkg syscall (linux-386), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-386), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-386), type InotifyEvent struct, Wd int32 +pkg syscall (linux-386), type Iovec struct +pkg syscall (linux-386), type Iovec struct, Base *uint8 +pkg syscall (linux-386), type Iovec struct, Len uint32 +pkg syscall (linux-386), type Msghdr struct +pkg syscall (linux-386), type Msghdr struct, Control *uint8 +pkg syscall (linux-386), type Msghdr struct, Controllen uint32 +pkg syscall (linux-386), type Msghdr struct, Flags int32 +pkg syscall (linux-386), type Msghdr struct, Iov *Iovec +pkg syscall (linux-386), type Msghdr struct, Iovlen uint32 +pkg syscall (linux-386), type Msghdr struct, Name *uint8 +pkg syscall (linux-386), type Msghdr struct, Namelen uint32 +pkg syscall (linux-386), type NetlinkMessage struct +pkg syscall (linux-386), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-386), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-386), type NetlinkRouteAttr struct +pkg syscall (linux-386), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-386), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-386), type NetlinkRouteRequest struct +pkg syscall (linux-386), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-386), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-386), type NlAttr struct +pkg syscall (linux-386), type NlAttr struct, Len uint16 +pkg syscall (linux-386), type NlAttr struct, Type uint16 +pkg syscall (linux-386), type NlMsgerr struct +pkg syscall (linux-386), type NlMsgerr struct, Error int32 +pkg syscall (linux-386), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-386), type NlMsghdr struct +pkg syscall (linux-386), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-386), type NlMsghdr struct, Len uint32 +pkg syscall (linux-386), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-386), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-386), type NlMsghdr struct, Type uint16 +pkg syscall (linux-386), type PtraceRegs struct +pkg syscall (linux-386), type PtraceRegs struct, Eax int32 +pkg syscall (linux-386), type PtraceRegs struct, Ebp int32 +pkg syscall (linux-386), type PtraceRegs struct, Ebx int32 +pkg syscall (linux-386), type PtraceRegs struct, Ecx int32 +pkg syscall (linux-386), type PtraceRegs struct, Edi int32 +pkg syscall (linux-386), type PtraceRegs struct, Edx int32 +pkg syscall (linux-386), type PtraceRegs struct, Eflags int32 +pkg syscall (linux-386), type PtraceRegs struct, Eip int32 +pkg syscall (linux-386), type PtraceRegs struct, Esi int32 +pkg syscall (linux-386), type PtraceRegs struct, Esp int32 +pkg syscall (linux-386), type PtraceRegs struct, Orig_eax int32 +pkg syscall (linux-386), type PtraceRegs struct, Xcs int32 +pkg syscall (linux-386), type PtraceRegs struct, Xds int32 +pkg syscall (linux-386), type PtraceRegs struct, Xes int32 +pkg syscall (linux-386), type PtraceRegs struct, Xfs int32 +pkg syscall (linux-386), type PtraceRegs struct, Xgs int32 +pkg syscall (linux-386), type PtraceRegs struct, Xss int32 +pkg syscall (linux-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (linux-386), type RawSockaddr struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (linux-386), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-386), type RawSockaddrInet6 struct +pkg syscall (linux-386), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (linux-386), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (linux-386), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (linux-386), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (linux-386), type RawSockaddrLinklayer struct +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-386), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-386), type RawSockaddrNetlink struct +pkg syscall (linux-386), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-386), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-386), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-386), type RawSockaddrUnix struct +pkg syscall (linux-386), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-386), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-386), type Rlimit struct +pkg syscall (linux-386), type Rlimit struct, Cur uint64 +pkg syscall (linux-386), type Rlimit struct, Max uint64 +pkg syscall (linux-386), type RtAttr struct +pkg syscall (linux-386), type RtAttr struct, Len uint16 +pkg syscall (linux-386), type RtAttr struct, Type uint16 +pkg syscall (linux-386), type RtGenmsg struct +pkg syscall (linux-386), type RtGenmsg struct, Family uint8 +pkg syscall (linux-386), type RtMsg struct +pkg syscall (linux-386), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-386), type RtMsg struct, Family uint8 +pkg syscall (linux-386), type RtMsg struct, Flags uint32 +pkg syscall (linux-386), type RtMsg struct, Protocol uint8 +pkg syscall (linux-386), type RtMsg struct, Scope uint8 +pkg syscall (linux-386), type RtMsg struct, Src_len uint8 +pkg syscall (linux-386), type RtMsg struct, Table uint8 +pkg syscall (linux-386), type RtMsg struct, Tos uint8 +pkg syscall (linux-386), type RtMsg struct, Type uint8 +pkg syscall (linux-386), type RtNexthop struct +pkg syscall (linux-386), type RtNexthop struct, Flags uint8 +pkg syscall (linux-386), type RtNexthop struct, Hops uint8 +pkg syscall (linux-386), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-386), type RtNexthop struct, Len uint16 +pkg syscall (linux-386), type Rusage struct, Idrss int32 +pkg syscall (linux-386), type Rusage struct, Inblock int32 +pkg syscall (linux-386), type Rusage struct, Isrss int32 +pkg syscall (linux-386), type Rusage struct, Ixrss int32 +pkg syscall (linux-386), type Rusage struct, Majflt int32 +pkg syscall (linux-386), type Rusage struct, Maxrss int32 +pkg syscall (linux-386), type Rusage struct, Minflt int32 +pkg syscall (linux-386), type Rusage struct, Msgrcv int32 +pkg syscall (linux-386), type Rusage struct, Msgsnd int32 +pkg syscall (linux-386), type Rusage struct, Nivcsw int32 +pkg syscall (linux-386), type Rusage struct, Nsignals int32 +pkg syscall (linux-386), type Rusage struct, Nswap int32 +pkg syscall (linux-386), type Rusage struct, Nvcsw int32 +pkg syscall (linux-386), type Rusage struct, Oublock int32 +pkg syscall (linux-386), type Rusage struct, Stime Timeval +pkg syscall (linux-386), type Rusage struct, Utime Timeval +pkg syscall (linux-386), type SockFilter struct +pkg syscall (linux-386), type SockFilter struct, Code uint16 +pkg syscall (linux-386), type SockFilter struct, Jf uint8 +pkg syscall (linux-386), type SockFilter struct, Jt uint8 +pkg syscall (linux-386), type SockFilter struct, K uint32 +pkg syscall (linux-386), type SockFprog struct +pkg syscall (linux-386), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-386), type SockFprog struct, Len uint16 +pkg syscall (linux-386), type SockFprog struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386), type SockaddrLinklayer struct +pkg syscall (linux-386), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-386), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-386), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-386), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-386), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-386), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-386), type SockaddrNetlink struct +pkg syscall (linux-386), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-386), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-386), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-386), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-386), type SocketControlMessage struct +pkg syscall (linux-386), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-386), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-386), type Stat_t struct +pkg syscall (linux-386), type Stat_t struct, Atim Timespec +pkg syscall (linux-386), type Stat_t struct, Blksize int32 +pkg syscall (linux-386), type Stat_t struct, Blocks int64 +pkg syscall (linux-386), type Stat_t struct, Ctim Timespec +pkg syscall (linux-386), type Stat_t struct, Dev uint64 +pkg syscall (linux-386), type Stat_t struct, Gid uint32 +pkg syscall (linux-386), type Stat_t struct, Ino uint64 +pkg syscall (linux-386), type Stat_t struct, Mode uint32 +pkg syscall (linux-386), type Stat_t struct, Mtim Timespec +pkg syscall (linux-386), type Stat_t struct, Nlink uint32 +pkg syscall (linux-386), type Stat_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386), type Stat_t struct, Pad_cgo_1 [2]uint8 +pkg syscall (linux-386), type Stat_t struct, Rdev uint64 +pkg syscall (linux-386), type Stat_t struct, Size int64 +pkg syscall (linux-386), type Stat_t struct, Uid uint32 +pkg syscall (linux-386), type Stat_t struct, X__pad1 uint16 +pkg syscall (linux-386), type Stat_t struct, X__pad2 uint16 +pkg syscall (linux-386), type Stat_t struct, X__st_ino uint32 +pkg syscall (linux-386), type Statfs_t struct +pkg syscall (linux-386), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-386), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-386), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-386), type Statfs_t struct, Bsize int32 +pkg syscall (linux-386), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-386), type Statfs_t struct, Files uint64 +pkg syscall (linux-386), type Statfs_t struct, Flags int32 +pkg syscall (linux-386), type Statfs_t struct, Frsize int32 +pkg syscall (linux-386), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-386), type Statfs_t struct, Namelen int32 +pkg syscall (linux-386), type Statfs_t struct, Spare [4]int32 +pkg syscall (linux-386), type Statfs_t struct, Type int32 +pkg syscall (linux-386), type SysProcAttr struct, Chroot string +pkg syscall (linux-386), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-386), type SysProcAttr struct, Noctty bool +pkg syscall (linux-386), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-386), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-386), type SysProcAttr struct, Setctty bool +pkg syscall (linux-386), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-386), type SysProcAttr struct, Setsid bool +pkg syscall (linux-386), type Sysinfo_t struct +pkg syscall (linux-386), type Sysinfo_t struct, Bufferram uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Freehigh uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Freeram uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Freeswap uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Loads [3]uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-386), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-386), type Sysinfo_t struct, Sharedram uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Totalhigh uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Totalram uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Totalswap uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-386), type Sysinfo_t struct, Uptime int32 +pkg syscall (linux-386), type Sysinfo_t struct, X_f [8]int8 +pkg syscall (linux-386), type Termios struct +pkg syscall (linux-386), type Termios struct, Cc [32]uint8 +pkg syscall (linux-386), type Termios struct, Cflag uint32 +pkg syscall (linux-386), type Termios struct, Iflag uint32 +pkg syscall (linux-386), type Termios struct, Ispeed uint32 +pkg syscall (linux-386), type Termios struct, Lflag uint32 +pkg syscall (linux-386), type Termios struct, Line uint8 +pkg syscall (linux-386), type Termios struct, Oflag uint32 +pkg syscall (linux-386), type Termios struct, Ospeed uint32 +pkg syscall (linux-386), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-386), type Time_t int32 +pkg syscall (linux-386), type Timespec struct, Nsec int32 +pkg syscall (linux-386), type Timespec struct, Sec int32 +pkg syscall (linux-386), type Timeval struct, Sec int32 +pkg syscall (linux-386), type Timeval struct, Usec int32 +pkg syscall (linux-386), type Timex struct +pkg syscall (linux-386), type Timex struct, Calcnt int32 +pkg syscall (linux-386), type Timex struct, Constant int32 +pkg syscall (linux-386), type Timex struct, Errcnt int32 +pkg syscall (linux-386), type Timex struct, Esterror int32 +pkg syscall (linux-386), type Timex struct, Freq int32 +pkg syscall (linux-386), type Timex struct, Jitcnt int32 +pkg syscall (linux-386), type Timex struct, Jitter int32 +pkg syscall (linux-386), type Timex struct, Maxerror int32 +pkg syscall (linux-386), type Timex struct, Modes uint32 +pkg syscall (linux-386), type Timex struct, Offset int32 +pkg syscall (linux-386), type Timex struct, Pad_cgo_0 [44]uint8 +pkg syscall (linux-386), type Timex struct, Ppsfreq int32 +pkg syscall (linux-386), type Timex struct, Precision int32 +pkg syscall (linux-386), type Timex struct, Shift int32 +pkg syscall (linux-386), type Timex struct, Stabil int32 +pkg syscall (linux-386), type Timex struct, Status int32 +pkg syscall (linux-386), type Timex struct, Stbcnt int32 +pkg syscall (linux-386), type Timex struct, Tai int32 +pkg syscall (linux-386), type Timex struct, Tick int32 +pkg syscall (linux-386), type Timex struct, Time Timeval +pkg syscall (linux-386), type Timex struct, Tolerance int32 +pkg syscall (linux-386), type Tms struct +pkg syscall (linux-386), type Tms struct, Cstime int32 +pkg syscall (linux-386), type Tms struct, Cutime int32 +pkg syscall (linux-386), type Tms struct, Stime int32 +pkg syscall (linux-386), type Tms struct, Utime int32 +pkg syscall (linux-386), type Ucred struct +pkg syscall (linux-386), type Ucred struct, Gid uint32 +pkg syscall (linux-386), type Ucred struct, Pid int32 +pkg syscall (linux-386), type Ucred struct, Uid uint32 +pkg syscall (linux-386), type Ustat_t struct +pkg syscall (linux-386), type Ustat_t struct, Fname [6]int8 +pkg syscall (linux-386), type Ustat_t struct, Fpack [6]int8 +pkg syscall (linux-386), type Ustat_t struct, Tfree int32 +pkg syscall (linux-386), type Ustat_t struct, Tinode uint32 +pkg syscall (linux-386), type Utimbuf struct +pkg syscall (linux-386), type Utimbuf struct, Actime int32 +pkg syscall (linux-386), type Utimbuf struct, Modtime int32 +pkg syscall (linux-386), type Utsname struct +pkg syscall (linux-386), type Utsname struct, Domainname [65]int8 +pkg syscall (linux-386), type Utsname struct, Machine [65]int8 +pkg syscall (linux-386), type Utsname struct, Nodename [65]int8 +pkg syscall (linux-386), type Utsname struct, Release [65]int8 +pkg syscall (linux-386), type Utsname struct, Sysname [65]int8 +pkg syscall (linux-386), type Utsname struct, Version [65]int8 +pkg syscall (linux-386), type WaitStatus uint32 +pkg syscall (linux-386), var Stderr int +pkg syscall (linux-386), var Stdin int +pkg syscall (linux-386), var Stdout int +pkg syscall (linux-386-cgo), const AF_ALG ideal-int +pkg syscall (linux-386-cgo), const AF_APPLETALK ideal-int +pkg syscall (linux-386-cgo), const AF_ASH ideal-int +pkg syscall (linux-386-cgo), const AF_ATMPVC ideal-int +pkg syscall (linux-386-cgo), const AF_ATMSVC ideal-int +pkg syscall (linux-386-cgo), const AF_AX25 ideal-int +pkg syscall (linux-386-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (linux-386-cgo), const AF_BRIDGE ideal-int +pkg syscall (linux-386-cgo), const AF_CAIF ideal-int +pkg syscall (linux-386-cgo), const AF_CAN ideal-int +pkg syscall (linux-386-cgo), const AF_DECnet ideal-int +pkg syscall (linux-386-cgo), const AF_ECONET ideal-int +pkg syscall (linux-386-cgo), const AF_FILE ideal-int +pkg syscall (linux-386-cgo), const AF_IEEE802154 ideal-int +pkg syscall (linux-386-cgo), const AF_IPX ideal-int +pkg syscall (linux-386-cgo), const AF_IRDA ideal-int +pkg syscall (linux-386-cgo), const AF_ISDN ideal-int +pkg syscall (linux-386-cgo), const AF_IUCV ideal-int +pkg syscall (linux-386-cgo), const AF_KEY ideal-int +pkg syscall (linux-386-cgo), const AF_LLC ideal-int +pkg syscall (linux-386-cgo), const AF_LOCAL ideal-int +pkg syscall (linux-386-cgo), const AF_MAX ideal-int +pkg syscall (linux-386-cgo), const AF_NETBEUI ideal-int +pkg syscall (linux-386-cgo), const AF_NETLINK ideal-int +pkg syscall (linux-386-cgo), const AF_NETROM ideal-int +pkg syscall (linux-386-cgo), const AF_PACKET ideal-int +pkg syscall (linux-386-cgo), const AF_PHONET ideal-int +pkg syscall (linux-386-cgo), const AF_PPPOX ideal-int +pkg syscall (linux-386-cgo), const AF_RDS ideal-int +pkg syscall (linux-386-cgo), const AF_ROSE ideal-int +pkg syscall (linux-386-cgo), const AF_ROUTE ideal-int +pkg syscall (linux-386-cgo), const AF_RXRPC ideal-int +pkg syscall (linux-386-cgo), const AF_SECURITY ideal-int +pkg syscall (linux-386-cgo), const AF_SNA ideal-int +pkg syscall (linux-386-cgo), const AF_TIPC ideal-int +pkg syscall (linux-386-cgo), const AF_WANPIPE ideal-int +pkg syscall (linux-386-cgo), const AF_X25 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ASH ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ATM ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_AX25 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_BIF ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_CISCO ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_DLCI ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ECONET ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_EETHER ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FCAL ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FCPL ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FCPP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FDDI ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_FRAD ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_HDLC ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_IRDA ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_LAPB ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_NETROM ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_NONE ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_PPP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_PRONET ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_ROSE ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_SIT ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_SKIP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_SLIP ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_VOID ideal-int +pkg syscall (linux-386-cgo), const ARPHRD_X25 ideal-int +pkg syscall (linux-386-cgo), const B0 ideal-int +pkg syscall (linux-386-cgo), const B1000000 ideal-int +pkg syscall (linux-386-cgo), const B110 ideal-int +pkg syscall (linux-386-cgo), const B115200 ideal-int +pkg syscall (linux-386-cgo), const B1152000 ideal-int +pkg syscall (linux-386-cgo), const B1200 ideal-int +pkg syscall (linux-386-cgo), const B134 ideal-int +pkg syscall (linux-386-cgo), const B150 ideal-int +pkg syscall (linux-386-cgo), const B1500000 ideal-int +pkg syscall (linux-386-cgo), const B1800 ideal-int +pkg syscall (linux-386-cgo), const B19200 ideal-int +pkg syscall (linux-386-cgo), const B200 ideal-int +pkg syscall (linux-386-cgo), const B2000000 ideal-int +pkg syscall (linux-386-cgo), const B230400 ideal-int +pkg syscall (linux-386-cgo), const B2400 ideal-int +pkg syscall (linux-386-cgo), const B2500000 ideal-int +pkg syscall (linux-386-cgo), const B300 ideal-int +pkg syscall (linux-386-cgo), const B3000000 ideal-int +pkg syscall (linux-386-cgo), const B3500000 ideal-int +pkg syscall (linux-386-cgo), const B38400 ideal-int +pkg syscall (linux-386-cgo), const B4000000 ideal-int +pkg syscall (linux-386-cgo), const B460800 ideal-int +pkg syscall (linux-386-cgo), const B4800 ideal-int +pkg syscall (linux-386-cgo), const B50 ideal-int +pkg syscall (linux-386-cgo), const B500000 ideal-int +pkg syscall (linux-386-cgo), const B57600 ideal-int +pkg syscall (linux-386-cgo), const B576000 ideal-int +pkg syscall (linux-386-cgo), const B600 ideal-int +pkg syscall (linux-386-cgo), const B75 ideal-int +pkg syscall (linux-386-cgo), const B921600 ideal-int +pkg syscall (linux-386-cgo), const B9600 ideal-int +pkg syscall (linux-386-cgo), const BPF_A ideal-int +pkg syscall (linux-386-cgo), const BPF_ABS ideal-int +pkg syscall (linux-386-cgo), const BPF_ADD ideal-int +pkg syscall (linux-386-cgo), const BPF_ALU ideal-int +pkg syscall (linux-386-cgo), const BPF_AND ideal-int +pkg syscall (linux-386-cgo), const BPF_B ideal-int +pkg syscall (linux-386-cgo), const BPF_DIV ideal-int +pkg syscall (linux-386-cgo), const BPF_H ideal-int +pkg syscall (linux-386-cgo), const BPF_IMM ideal-int +pkg syscall (linux-386-cgo), const BPF_IND ideal-int +pkg syscall (linux-386-cgo), const BPF_JA ideal-int +pkg syscall (linux-386-cgo), const BPF_JEQ ideal-int +pkg syscall (linux-386-cgo), const BPF_JGE ideal-int +pkg syscall (linux-386-cgo), const BPF_JGT ideal-int +pkg syscall (linux-386-cgo), const BPF_JMP ideal-int +pkg syscall (linux-386-cgo), const BPF_JSET ideal-int +pkg syscall (linux-386-cgo), const BPF_K ideal-int +pkg syscall (linux-386-cgo), const BPF_LD ideal-int +pkg syscall (linux-386-cgo), const BPF_LDX ideal-int +pkg syscall (linux-386-cgo), const BPF_LEN ideal-int +pkg syscall (linux-386-cgo), const BPF_LSH ideal-int +pkg syscall (linux-386-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-386-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (linux-386-cgo), const BPF_MEM ideal-int +pkg syscall (linux-386-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (linux-386-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-386-cgo), const BPF_MISC ideal-int +pkg syscall (linux-386-cgo), const BPF_MSH ideal-int +pkg syscall (linux-386-cgo), const BPF_MUL ideal-int +pkg syscall (linux-386-cgo), const BPF_NEG ideal-int +pkg syscall (linux-386-cgo), const BPF_OR ideal-int +pkg syscall (linux-386-cgo), const BPF_RET ideal-int +pkg syscall (linux-386-cgo), const BPF_RSH ideal-int +pkg syscall (linux-386-cgo), const BPF_ST ideal-int +pkg syscall (linux-386-cgo), const BPF_STX ideal-int +pkg syscall (linux-386-cgo), const BPF_SUB ideal-int +pkg syscall (linux-386-cgo), const BPF_TAX ideal-int +pkg syscall (linux-386-cgo), const BPF_TXA ideal-int +pkg syscall (linux-386-cgo), const BPF_W ideal-int +pkg syscall (linux-386-cgo), const BPF_X ideal-int +pkg syscall (linux-386-cgo), const BRKINT ideal-int +pkg syscall (linux-386-cgo), const CLOCAL ideal-int +pkg syscall (linux-386-cgo), const CREAD ideal-int +pkg syscall (linux-386-cgo), const CS5 ideal-int +pkg syscall (linux-386-cgo), const CS6 ideal-int +pkg syscall (linux-386-cgo), const CS7 ideal-int +pkg syscall (linux-386-cgo), const CS8 ideal-int +pkg syscall (linux-386-cgo), const CSIZE ideal-int +pkg syscall (linux-386-cgo), const CSTOPB ideal-int +pkg syscall (linux-386-cgo), const DT_BLK ideal-int +pkg syscall (linux-386-cgo), const DT_CHR ideal-int +pkg syscall (linux-386-cgo), const DT_DIR ideal-int +pkg syscall (linux-386-cgo), const DT_FIFO ideal-int +pkg syscall (linux-386-cgo), const DT_LNK ideal-int +pkg syscall (linux-386-cgo), const DT_REG ideal-int +pkg syscall (linux-386-cgo), const DT_SOCK ideal-int +pkg syscall (linux-386-cgo), const DT_UNKNOWN ideal-int +pkg syscall (linux-386-cgo), const DT_WHT ideal-int +pkg syscall (linux-386-cgo), const EADV Errno +pkg syscall (linux-386-cgo), const EBADE Errno +pkg syscall (linux-386-cgo), const EBADFD Errno +pkg syscall (linux-386-cgo), const EBADMSG Errno +pkg syscall (linux-386-cgo), const EBADR Errno +pkg syscall (linux-386-cgo), const EBADRQC Errno +pkg syscall (linux-386-cgo), const EBADSLT Errno +pkg syscall (linux-386-cgo), const EBFONT Errno +pkg syscall (linux-386-cgo), const ECHO ideal-int +pkg syscall (linux-386-cgo), const ECHOCTL ideal-int +pkg syscall (linux-386-cgo), const ECHOE ideal-int +pkg syscall (linux-386-cgo), const ECHOK ideal-int +pkg syscall (linux-386-cgo), const ECHOKE ideal-int +pkg syscall (linux-386-cgo), const ECHONL ideal-int +pkg syscall (linux-386-cgo), const ECHOPRT ideal-int +pkg syscall (linux-386-cgo), const ECHRNG Errno +pkg syscall (linux-386-cgo), const ECOMM Errno +pkg syscall (linux-386-cgo), const EDEADLOCK Errno +pkg syscall (linux-386-cgo), const EDOTDOT Errno +pkg syscall (linux-386-cgo), const EISNAM Errno +pkg syscall (linux-386-cgo), const EKEYEXPIRED Errno +pkg syscall (linux-386-cgo), const EKEYREJECTED Errno +pkg syscall (linux-386-cgo), const EKEYREVOKED Errno +pkg syscall (linux-386-cgo), const EL2HLT Errno +pkg syscall (linux-386-cgo), const EL2NSYNC Errno +pkg syscall (linux-386-cgo), const EL3HLT Errno +pkg syscall (linux-386-cgo), const EL3RST Errno +pkg syscall (linux-386-cgo), const ELIBACC Errno +pkg syscall (linux-386-cgo), const ELIBBAD Errno +pkg syscall (linux-386-cgo), const ELIBEXEC Errno +pkg syscall (linux-386-cgo), const ELIBMAX Errno +pkg syscall (linux-386-cgo), const ELIBSCN Errno +pkg syscall (linux-386-cgo), const ELNRNG Errno +pkg syscall (linux-386-cgo), const EMEDIUMTYPE Errno +pkg syscall (linux-386-cgo), const EMULTIHOP Errno +pkg syscall (linux-386-cgo), const ENAVAIL Errno +pkg syscall (linux-386-cgo), const ENOANO Errno +pkg syscall (linux-386-cgo), const ENOCSI Errno +pkg syscall (linux-386-cgo), const ENODATA Errno +pkg syscall (linux-386-cgo), const ENOKEY Errno +pkg syscall (linux-386-cgo), const ENOLINK Errno +pkg syscall (linux-386-cgo), const ENOMEDIUM Errno +pkg syscall (linux-386-cgo), const ENONET Errno +pkg syscall (linux-386-cgo), const ENOPKG Errno +pkg syscall (linux-386-cgo), const ENOSR Errno +pkg syscall (linux-386-cgo), const ENOSTR Errno +pkg syscall (linux-386-cgo), const ENOTNAM Errno +pkg syscall (linux-386-cgo), const ENOTRECOVERABLE Errno +pkg syscall (linux-386-cgo), const ENOTUNIQ Errno +pkg syscall (linux-386-cgo), const EOWNERDEAD Errno +pkg syscall (linux-386-cgo), const EPOLLERR ideal-int +pkg syscall (linux-386-cgo), const EPOLLET ideal-int +pkg syscall (linux-386-cgo), const EPOLLHUP ideal-int +pkg syscall (linux-386-cgo), const EPOLLIN ideal-int +pkg syscall (linux-386-cgo), const EPOLLMSG ideal-int +pkg syscall (linux-386-cgo), const EPOLLONESHOT ideal-int +pkg syscall (linux-386-cgo), const EPOLLOUT ideal-int +pkg syscall (linux-386-cgo), const EPOLLPRI ideal-int +pkg syscall (linux-386-cgo), const EPOLLRDBAND ideal-int +pkg syscall (linux-386-cgo), const EPOLLRDHUP ideal-int +pkg syscall (linux-386-cgo), const EPOLLRDNORM ideal-int +pkg syscall (linux-386-cgo), const EPOLLWRBAND ideal-int +pkg syscall (linux-386-cgo), const EPOLLWRNORM ideal-int +pkg syscall (linux-386-cgo), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-386-cgo), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-386-cgo), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-386-cgo), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-386-cgo), const EPROTO Errno +pkg syscall (linux-386-cgo), const EREMCHG Errno +pkg syscall (linux-386-cgo), const EREMOTEIO Errno +pkg syscall (linux-386-cgo), const ERESTART Errno +pkg syscall (linux-386-cgo), const ERFKILL Errno +pkg syscall (linux-386-cgo), const ESRMNT Errno +pkg syscall (linux-386-cgo), const ESTRPIPE Errno +pkg syscall (linux-386-cgo), const ETH_P_1588 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_8021Q ideal-int +pkg syscall (linux-386-cgo), const ETH_P_802_2 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_802_3 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_AARP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ALL ideal-int +pkg syscall (linux-386-cgo), const ETH_P_AOE ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ARCNET ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ARP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ATALK ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-386-cgo), const ETH_P_AX25 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_BPQ ideal-int +pkg syscall (linux-386-cgo), const ETH_P_CAIF ideal-int +pkg syscall (linux-386-cgo), const ETH_P_CAN ideal-int +pkg syscall (linux-386-cgo), const ETH_P_CONTROL ideal-int +pkg syscall (linux-386-cgo), const ETH_P_CUST ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DDCMP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DEC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DIAG ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-386-cgo), const ETH_P_DSA ideal-int +pkg syscall (linux-386-cgo), const ETH_P_ECONET ideal-int +pkg syscall (linux-386-cgo), const ETH_P_EDSA ideal-int +pkg syscall (linux-386-cgo), const ETH_P_FCOE ideal-int +pkg syscall (linux-386-cgo), const ETH_P_FIP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_HDLC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IPV6 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IPX ideal-int +pkg syscall (linux-386-cgo), const ETH_P_IRDA ideal-int +pkg syscall (linux-386-cgo), const ETH_P_LAT ideal-int +pkg syscall (linux-386-cgo), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-386-cgo), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-386-cgo), const ETH_P_LOOP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-386-cgo), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PAE ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PAUSE ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PHONET ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PUP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_PUPAT ideal-int +pkg syscall (linux-386-cgo), const ETH_P_RARP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_SCA ideal-int +pkg syscall (linux-386-cgo), const ETH_P_SLOW ideal-int +pkg syscall (linux-386-cgo), const ETH_P_SNAP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_TEB ideal-int +pkg syscall (linux-386-cgo), const ETH_P_TIPC ideal-int +pkg syscall (linux-386-cgo), const ETH_P_TRAILER ideal-int +pkg syscall (linux-386-cgo), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-386-cgo), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_WCCP ideal-int +pkg syscall (linux-386-cgo), const ETH_P_X25 ideal-int +pkg syscall (linux-386-cgo), const ETIME Errno +pkg syscall (linux-386-cgo), const EUCLEAN Errno +pkg syscall (linux-386-cgo), const EUNATCH Errno +pkg syscall (linux-386-cgo), const EXFULL Errno +pkg syscall (linux-386-cgo), const FD_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const FD_SETSIZE ideal-int +pkg syscall (linux-386-cgo), const FLUSHO ideal-int +pkg syscall (linux-386-cgo), const F_DUPFD ideal-int +pkg syscall (linux-386-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const F_EXLCK ideal-int +pkg syscall (linux-386-cgo), const F_GETFD ideal-int +pkg syscall (linux-386-cgo), const F_GETFL ideal-int +pkg syscall (linux-386-cgo), const F_GETLEASE ideal-int +pkg syscall (linux-386-cgo), const F_GETLK ideal-int +pkg syscall (linux-386-cgo), const F_GETLK64 ideal-int +pkg syscall (linux-386-cgo), const F_GETOWN ideal-int +pkg syscall (linux-386-cgo), const F_GETOWN_EX ideal-int +pkg syscall (linux-386-cgo), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-386-cgo), const F_GETSIG ideal-int +pkg syscall (linux-386-cgo), const F_LOCK ideal-int +pkg syscall (linux-386-cgo), const F_NOTIFY ideal-int +pkg syscall (linux-386-cgo), const F_OK ideal-int +pkg syscall (linux-386-cgo), const F_RDLCK ideal-int +pkg syscall (linux-386-cgo), const F_SETFD ideal-int +pkg syscall (linux-386-cgo), const F_SETFL ideal-int +pkg syscall (linux-386-cgo), const F_SETLEASE ideal-int +pkg syscall (linux-386-cgo), const F_SETLK ideal-int +pkg syscall (linux-386-cgo), const F_SETLK64 ideal-int +pkg syscall (linux-386-cgo), const F_SETLKW ideal-int +pkg syscall (linux-386-cgo), const F_SETLKW64 ideal-int +pkg syscall (linux-386-cgo), const F_SETOWN ideal-int +pkg syscall (linux-386-cgo), const F_SETOWN_EX ideal-int +pkg syscall (linux-386-cgo), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-386-cgo), const F_SETSIG ideal-int +pkg syscall (linux-386-cgo), const F_SHLCK ideal-int +pkg syscall (linux-386-cgo), const F_TEST ideal-int +pkg syscall (linux-386-cgo), const F_TLOCK ideal-int +pkg syscall (linux-386-cgo), const F_ULOCK ideal-int +pkg syscall (linux-386-cgo), const F_UNLCK ideal-int +pkg syscall (linux-386-cgo), const F_WRLCK ideal-int +pkg syscall (linux-386-cgo), const HUPCL ideal-int +pkg syscall (linux-386-cgo), const ICANON ideal-int +pkg syscall (linux-386-cgo), const ICRNL ideal-int +pkg syscall (linux-386-cgo), const IEXTEN ideal-int +pkg syscall (linux-386-cgo), const IFA_ADDRESS ideal-int +pkg syscall (linux-386-cgo), const IFA_ANYCAST ideal-int +pkg syscall (linux-386-cgo), const IFA_BROADCAST ideal-int +pkg syscall (linux-386-cgo), const IFA_CACHEINFO ideal-int +pkg syscall (linux-386-cgo), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-386-cgo), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-386-cgo), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-386-cgo), const IFA_F_NODAD ideal-int +pkg syscall (linux-386-cgo), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-386-cgo), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-386-cgo), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-386-cgo), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-386-cgo), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-386-cgo), const IFA_LABEL ideal-int +pkg syscall (linux-386-cgo), const IFA_LOCAL ideal-int +pkg syscall (linux-386-cgo), const IFA_MAX ideal-int +pkg syscall (linux-386-cgo), const IFA_MULTICAST ideal-int +pkg syscall (linux-386-cgo), const IFA_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (linux-386-cgo), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-386-cgo), const IFF_DEBUG ideal-int +pkg syscall (linux-386-cgo), const IFF_DYNAMIC ideal-int +pkg syscall (linux-386-cgo), const IFF_MASTER ideal-int +pkg syscall (linux-386-cgo), const IFF_NOARP ideal-int +pkg syscall (linux-386-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-386-cgo), const IFF_NO_PI ideal-int +pkg syscall (linux-386-cgo), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-386-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-386-cgo), const IFF_PORTSEL ideal-int +pkg syscall (linux-386-cgo), const IFF_PROMISC ideal-int +pkg syscall (linux-386-cgo), const IFF_RUNNING ideal-int +pkg syscall (linux-386-cgo), const IFF_SLAVE ideal-int +pkg syscall (linux-386-cgo), const IFF_TAP ideal-int +pkg syscall (linux-386-cgo), const IFF_TUN ideal-int +pkg syscall (linux-386-cgo), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-386-cgo), const IFF_VNET_HDR ideal-int +pkg syscall (linux-386-cgo), const IFLA_ADDRESS ideal-int +pkg syscall (linux-386-cgo), const IFLA_BROADCAST ideal-int +pkg syscall (linux-386-cgo), const IFLA_COST ideal-int +pkg syscall (linux-386-cgo), const IFLA_IFALIAS ideal-int +pkg syscall (linux-386-cgo), const IFLA_IFNAME ideal-int +pkg syscall (linux-386-cgo), const IFLA_LINK ideal-int +pkg syscall (linux-386-cgo), const IFLA_LINKINFO ideal-int +pkg syscall (linux-386-cgo), const IFLA_LINKMODE ideal-int +pkg syscall (linux-386-cgo), const IFLA_MAP ideal-int +pkg syscall (linux-386-cgo), const IFLA_MASTER ideal-int +pkg syscall (linux-386-cgo), const IFLA_MAX ideal-int +pkg syscall (linux-386-cgo), const IFLA_MTU ideal-int +pkg syscall (linux-386-cgo), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-386-cgo), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-386-cgo), const IFLA_PRIORITY ideal-int +pkg syscall (linux-386-cgo), const IFLA_PROTINFO ideal-int +pkg syscall (linux-386-cgo), const IFLA_QDISC ideal-int +pkg syscall (linux-386-cgo), const IFLA_STATS ideal-int +pkg syscall (linux-386-cgo), const IFLA_TXQLEN ideal-int +pkg syscall (linux-386-cgo), const IFLA_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const IFLA_WEIGHT ideal-int +pkg syscall (linux-386-cgo), const IFLA_WIRELESS ideal-int +pkg syscall (linux-386-cgo), const IFNAMSIZ ideal-int +pkg syscall (linux-386-cgo), const IGNBRK ideal-int +pkg syscall (linux-386-cgo), const IGNCR ideal-int +pkg syscall (linux-386-cgo), const IGNPAR ideal-int +pkg syscall (linux-386-cgo), const IMAXBEL ideal-int +pkg syscall (linux-386-cgo), const INLCR ideal-int +pkg syscall (linux-386-cgo), const INPCK ideal-int +pkg syscall (linux-386-cgo), const IN_ACCESS ideal-int +pkg syscall (linux-386-cgo), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-386-cgo), const IN_ATTRIB ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (linux-386-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-386-cgo), const IN_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const IN_CLOSE ideal-int +pkg syscall (linux-386-cgo), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-386-cgo), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-386-cgo), const IN_CREATE ideal-int +pkg syscall (linux-386-cgo), const IN_DELETE ideal-int +pkg syscall (linux-386-cgo), const IN_DELETE_SELF ideal-int +pkg syscall (linux-386-cgo), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-386-cgo), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-386-cgo), const IN_IGNORED ideal-int +pkg syscall (linux-386-cgo), const IN_ISDIR ideal-int +pkg syscall (linux-386-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-386-cgo), const IN_MASK_ADD ideal-int +pkg syscall (linux-386-cgo), const IN_MODIFY ideal-int +pkg syscall (linux-386-cgo), const IN_MOVE ideal-int +pkg syscall (linux-386-cgo), const IN_MOVED_FROM ideal-int +pkg syscall (linux-386-cgo), const IN_MOVED_TO ideal-int +pkg syscall (linux-386-cgo), const IN_MOVE_SELF ideal-int +pkg syscall (linux-386-cgo), const IN_NONBLOCK ideal-int +pkg syscall (linux-386-cgo), const IN_ONESHOT ideal-int +pkg syscall (linux-386-cgo), const IN_ONLYDIR ideal-int +pkg syscall (linux-386-cgo), const IN_OPEN ideal-int +pkg syscall (linux-386-cgo), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-386-cgo), const IN_UNMOUNT ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_AH ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_COMP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_DCCP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_EGP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_ESP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_GRE ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_IDP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_MTP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_NONE ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_PIM ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_PUP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_RAW ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_TP ideal-int +pkg syscall (linux-386-cgo), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-386-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-386-cgo), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-386-cgo), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-386-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-386-cgo), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-386-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-386-cgo), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-386-cgo), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-386-cgo), const IPV6_MTU ideal-int +pkg syscall (linux-386-cgo), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-386-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-386-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-386-cgo), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVERR ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-386-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-386-cgo), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-386-cgo), const IPV6_RTHDR ideal-int +pkg syscall (linux-386-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-386-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-386-cgo), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-386-cgo), const IPV6_TCLASS ideal-int +pkg syscall (linux-386-cgo), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-386-cgo), const IP_DF ideal-int +pkg syscall (linux-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const IP_FREEBIND ideal-int +pkg syscall (linux-386-cgo), const IP_HDRINCL ideal-int +pkg syscall (linux-386-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-386-cgo), const IP_MAXPACKET ideal-int +pkg syscall (linux-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-386-cgo), const IP_MF ideal-int +pkg syscall (linux-386-cgo), const IP_MINTTL ideal-int +pkg syscall (linux-386-cgo), const IP_MSFILTER ideal-int +pkg syscall (linux-386-cgo), const IP_MSS ideal-int +pkg syscall (linux-386-cgo), const IP_MTU ideal-int +pkg syscall (linux-386-cgo), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-386-cgo), const IP_OFFMASK ideal-int +pkg syscall (linux-386-cgo), const IP_OPTIONS ideal-int +pkg syscall (linux-386-cgo), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-386-cgo), const IP_PASSSEC ideal-int +pkg syscall (linux-386-cgo), const IP_PKTINFO ideal-int +pkg syscall (linux-386-cgo), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-386-cgo), const IP_PMTUDISC ideal-int +pkg syscall (linux-386-cgo), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-386-cgo), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-386-cgo), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-386-cgo), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-386-cgo), const IP_RECVERR ideal-int +pkg syscall (linux-386-cgo), const IP_RECVOPTS ideal-int +pkg syscall (linux-386-cgo), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-386-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-386-cgo), const IP_RECVTOS ideal-int +pkg syscall (linux-386-cgo), const IP_RECVTTL ideal-int +pkg syscall (linux-386-cgo), const IP_RETOPTS ideal-int +pkg syscall (linux-386-cgo), const IP_RF ideal-int +pkg syscall (linux-386-cgo), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-386-cgo), const IP_TRANSPARENT ideal-int +pkg syscall (linux-386-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-386-cgo), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-386-cgo), const ISIG ideal-int +pkg syscall (linux-386-cgo), const ISTRIP ideal-int +pkg syscall (linux-386-cgo), const IUCLC ideal-int +pkg syscall (linux-386-cgo), const IUTF8 ideal-int +pkg syscall (linux-386-cgo), const IXANY ideal-int +pkg syscall (linux-386-cgo), const IXOFF ideal-int +pkg syscall (linux-386-cgo), const IXON ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-386-cgo), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-386-cgo), const LOCK_EX ideal-int +pkg syscall (linux-386-cgo), const LOCK_NB ideal-int +pkg syscall (linux-386-cgo), const LOCK_SH ideal-int +pkg syscall (linux-386-cgo), const LOCK_UN ideal-int +pkg syscall (linux-386-cgo), const MADV_DOFORK ideal-int +pkg syscall (linux-386-cgo), const MADV_DONTFORK ideal-int +pkg syscall (linux-386-cgo), const MADV_DONTNEED ideal-int +pkg syscall (linux-386-cgo), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-386-cgo), const MADV_HWPOISON ideal-int +pkg syscall (linux-386-cgo), const MADV_MERGEABLE ideal-int +pkg syscall (linux-386-cgo), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-386-cgo), const MADV_NORMAL ideal-int +pkg syscall (linux-386-cgo), const MADV_RANDOM ideal-int +pkg syscall (linux-386-cgo), const MADV_REMOVE ideal-int +pkg syscall (linux-386-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-386-cgo), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-386-cgo), const MADV_WILLNEED ideal-int +pkg syscall (linux-386-cgo), const MAP_32BIT ideal-int +pkg syscall (linux-386-cgo), const MAP_ANON ideal-int +pkg syscall (linux-386-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-386-cgo), const MAP_DENYWRITE ideal-int +pkg syscall (linux-386-cgo), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-386-cgo), const MAP_FILE ideal-int +pkg syscall (linux-386-cgo), const MAP_FIXED ideal-int +pkg syscall (linux-386-cgo), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-386-cgo), const MAP_HUGETLB ideal-int +pkg syscall (linux-386-cgo), const MAP_LOCKED ideal-int +pkg syscall (linux-386-cgo), const MAP_NONBLOCK ideal-int +pkg syscall (linux-386-cgo), const MAP_NORESERVE ideal-int +pkg syscall (linux-386-cgo), const MAP_POPULATE ideal-int +pkg syscall (linux-386-cgo), const MAP_PRIVATE ideal-int +pkg syscall (linux-386-cgo), const MAP_SHARED ideal-int +pkg syscall (linux-386-cgo), const MAP_STACK ideal-int +pkg syscall (linux-386-cgo), const MAP_TYPE ideal-int +pkg syscall (linux-386-cgo), const MCL_CURRENT ideal-int +pkg syscall (linux-386-cgo), const MCL_FUTURE ideal-int +pkg syscall (linux-386-cgo), const MNT_DETACH ideal-int +pkg syscall (linux-386-cgo), const MNT_EXPIRE ideal-int +pkg syscall (linux-386-cgo), const MNT_FORCE ideal-int +pkg syscall (linux-386-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const MSG_CONFIRM ideal-int +pkg syscall (linux-386-cgo), const MSG_CTRUNC ideal-int +pkg syscall (linux-386-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (linux-386-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (linux-386-cgo), const MSG_EOR ideal-int +pkg syscall (linux-386-cgo), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-386-cgo), const MSG_FIN ideal-int +pkg syscall (linux-386-cgo), const MSG_MORE ideal-int +pkg syscall (linux-386-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-386-cgo), const MSG_OOB ideal-int +pkg syscall (linux-386-cgo), const MSG_PEEK ideal-int +pkg syscall (linux-386-cgo), const MSG_PROXY ideal-int +pkg syscall (linux-386-cgo), const MSG_RST ideal-int +pkg syscall (linux-386-cgo), const MSG_SYN ideal-int +pkg syscall (linux-386-cgo), const MSG_TRUNC ideal-int +pkg syscall (linux-386-cgo), const MSG_TRYHARD ideal-int +pkg syscall (linux-386-cgo), const MSG_WAITALL ideal-int +pkg syscall (linux-386-cgo), const MSG_WAITFORONE ideal-int +pkg syscall (linux-386-cgo), const MS_ACTIVE ideal-int +pkg syscall (linux-386-cgo), const MS_ASYNC ideal-int +pkg syscall (linux-386-cgo), const MS_BIND ideal-int +pkg syscall (linux-386-cgo), const MS_DIRSYNC ideal-int +pkg syscall (linux-386-cgo), const MS_INVALIDATE ideal-int +pkg syscall (linux-386-cgo), const MS_I_VERSION ideal-int +pkg syscall (linux-386-cgo), const MS_KERNMOUNT ideal-int +pkg syscall (linux-386-cgo), const MS_MANDLOCK ideal-int +pkg syscall (linux-386-cgo), const MS_MGC_MSK ideal-int +pkg syscall (linux-386-cgo), const MS_MGC_VAL ideal-int +pkg syscall (linux-386-cgo), const MS_MOVE ideal-int +pkg syscall (linux-386-cgo), const MS_NOATIME ideal-int +pkg syscall (linux-386-cgo), const MS_NODEV ideal-int +pkg syscall (linux-386-cgo), const MS_NODIRATIME ideal-int +pkg syscall (linux-386-cgo), const MS_NOEXEC ideal-int +pkg syscall (linux-386-cgo), const MS_NOSUID ideal-int +pkg syscall (linux-386-cgo), const MS_NOUSER ideal-int +pkg syscall (linux-386-cgo), const MS_POSIXACL ideal-int +pkg syscall (linux-386-cgo), const MS_PRIVATE ideal-int +pkg syscall (linux-386-cgo), const MS_RDONLY ideal-int +pkg syscall (linux-386-cgo), const MS_REC ideal-int +pkg syscall (linux-386-cgo), const MS_RELATIME ideal-int +pkg syscall (linux-386-cgo), const MS_REMOUNT ideal-int +pkg syscall (linux-386-cgo), const MS_RMT_MASK ideal-int +pkg syscall (linux-386-cgo), const MS_SHARED ideal-int +pkg syscall (linux-386-cgo), const MS_SILENT ideal-int +pkg syscall (linux-386-cgo), const MS_SLAVE ideal-int +pkg syscall (linux-386-cgo), const MS_STRICTATIME ideal-int +pkg syscall (linux-386-cgo), const MS_SYNC ideal-int +pkg syscall (linux-386-cgo), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-386-cgo), const MS_UNBINDABLE ideal-int +pkg syscall (linux-386-cgo), const NAME_MAX ideal-int +pkg syscall (linux-386-cgo), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const NETLINK_AUDIT ideal-int +pkg syscall (linux-386-cgo), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-386-cgo), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-386-cgo), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-386-cgo), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-386-cgo), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-386-cgo), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-386-cgo), const NETLINK_GENERIC ideal-int +pkg syscall (linux-386-cgo), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-386-cgo), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-386-cgo), const NETLINK_ISCSI ideal-int +pkg syscall (linux-386-cgo), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-386-cgo), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-386-cgo), const NETLINK_NFLOG ideal-int +pkg syscall (linux-386-cgo), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-386-cgo), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-386-cgo), const NETLINK_ROUTE ideal-int +pkg syscall (linux-386-cgo), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-386-cgo), const NETLINK_SELINUX ideal-int +pkg syscall (linux-386-cgo), const NETLINK_UNUSED ideal-int +pkg syscall (linux-386-cgo), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-386-cgo), const NETLINK_XFRM ideal-int +pkg syscall (linux-386-cgo), const NLA_ALIGNTO ideal-int +pkg syscall (linux-386-cgo), const NLA_F_NESTED ideal-int +pkg syscall (linux-386-cgo), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-386-cgo), const NLA_HDRLEN ideal-int +pkg syscall (linux-386-cgo), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-386-cgo), const NLMSG_DONE ideal-int +pkg syscall (linux-386-cgo), const NLMSG_ERROR ideal-int +pkg syscall (linux-386-cgo), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-386-cgo), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-386-cgo), const NLMSG_NOOP ideal-int +pkg syscall (linux-386-cgo), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-386-cgo), const NLM_F_ACK ideal-int +pkg syscall (linux-386-cgo), const NLM_F_APPEND ideal-int +pkg syscall (linux-386-cgo), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-386-cgo), const NLM_F_CREATE ideal-int +pkg syscall (linux-386-cgo), const NLM_F_DUMP ideal-int +pkg syscall (linux-386-cgo), const NLM_F_ECHO ideal-int +pkg syscall (linux-386-cgo), const NLM_F_EXCL ideal-int +pkg syscall (linux-386-cgo), const NLM_F_MATCH ideal-int +pkg syscall (linux-386-cgo), const NLM_F_MULTI ideal-int +pkg syscall (linux-386-cgo), const NLM_F_REPLACE ideal-int +pkg syscall (linux-386-cgo), const NLM_F_REQUEST ideal-int +pkg syscall (linux-386-cgo), const NLM_F_ROOT ideal-int +pkg syscall (linux-386-cgo), const NOFLSH ideal-int +pkg syscall (linux-386-cgo), const OCRNL ideal-int +pkg syscall (linux-386-cgo), const OFDEL ideal-int +pkg syscall (linux-386-cgo), const OFILL ideal-int +pkg syscall (linux-386-cgo), const OLCUC ideal-int +pkg syscall (linux-386-cgo), const ONLCR ideal-int +pkg syscall (linux-386-cgo), const ONLRET ideal-int +pkg syscall (linux-386-cgo), const ONOCR ideal-int +pkg syscall (linux-386-cgo), const OPOST ideal-int +pkg syscall (linux-386-cgo), const O_ACCMODE ideal-int +pkg syscall (linux-386-cgo), const O_DIRECT ideal-int +pkg syscall (linux-386-cgo), const O_DIRECTORY ideal-int +pkg syscall (linux-386-cgo), const O_DSYNC ideal-int +pkg syscall (linux-386-cgo), const O_FSYNC ideal-int +pkg syscall (linux-386-cgo), const O_LARGEFILE ideal-int +pkg syscall (linux-386-cgo), const O_NDELAY ideal-int +pkg syscall (linux-386-cgo), const O_NOATIME ideal-int +pkg syscall (linux-386-cgo), const O_NOFOLLOW ideal-int +pkg syscall (linux-386-cgo), const O_RSYNC ideal-int +pkg syscall (linux-386-cgo), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const PACKET_BROADCAST ideal-int +pkg syscall (linux-386-cgo), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-386-cgo), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-386-cgo), const PACKET_HOST ideal-int +pkg syscall (linux-386-cgo), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-386-cgo), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-386-cgo), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-386-cgo), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-386-cgo), const PACKET_MULTICAST ideal-int +pkg syscall (linux-386-cgo), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-386-cgo), const PACKET_OUTGOING ideal-int +pkg syscall (linux-386-cgo), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-386-cgo), const PACKET_RX_RING ideal-int +pkg syscall (linux-386-cgo), const PACKET_STATISTICS ideal-int +pkg syscall (linux-386-cgo), const PARENB ideal-int +pkg syscall (linux-386-cgo), const PARMRK ideal-int +pkg syscall (linux-386-cgo), const PARODD ideal-int +pkg syscall (linux-386-cgo), const PENDIN ideal-int +pkg syscall (linux-386-cgo), const PROT_EXEC ideal-int +pkg syscall (linux-386-cgo), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-386-cgo), const PROT_GROWSUP ideal-int +pkg syscall (linux-386-cgo), const PROT_NONE ideal-int +pkg syscall (linux-386-cgo), const PROT_READ ideal-int +pkg syscall (linux-386-cgo), const PROT_WRITE ideal-int +pkg syscall (linux-386-cgo), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-386-cgo), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-386-cgo), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-386-cgo), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-386-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-386-cgo), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-386-cgo), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-386-cgo), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-386-cgo), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-386-cgo), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-386-cgo), const PR_GET_FPEMU ideal-int +pkg syscall (linux-386-cgo), const PR_GET_FPEXC ideal-int +pkg syscall (linux-386-cgo), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-386-cgo), const PR_GET_NAME ideal-int +pkg syscall (linux-386-cgo), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-386-cgo), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-386-cgo), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-386-cgo), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-386-cgo), const PR_GET_TIMING ideal-int +pkg syscall (linux-386-cgo), const PR_GET_TSC ideal-int +pkg syscall (linux-386-cgo), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-386-cgo), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-386-cgo), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-386-cgo), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-386-cgo), const PR_SET_FPEMU ideal-int +pkg syscall (linux-386-cgo), const PR_SET_FPEXC ideal-int +pkg syscall (linux-386-cgo), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-386-cgo), const PR_SET_NAME ideal-int +pkg syscall (linux-386-cgo), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-386-cgo), const PR_SET_PTRACER ideal-int +pkg syscall (linux-386-cgo), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-386-cgo), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-386-cgo), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-386-cgo), const PR_SET_TIMING ideal-int +pkg syscall (linux-386-cgo), const PR_SET_TSC ideal-int +pkg syscall (linux-386-cgo), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-386-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-386-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-386-cgo), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-386-cgo), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-386-cgo), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-386-cgo), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-386-cgo), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-386-cgo), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_ATTACH ideal-int +pkg syscall (linux-386-cgo), const PTRACE_CONT ideal-int +pkg syscall (linux-386-cgo), const PTRACE_DETACH ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETFPXREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-386-cgo), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-386-cgo), const PTRACE_KILL ideal-int +pkg syscall (linux-386-cgo), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_MASK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-386-cgo), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-386-cgo), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-386-cgo), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-386-cgo), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-386-cgo), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-386-cgo), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETFPXREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETREGS ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SET_THREAD_AREA ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SINGLEBLOCK ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SYSEMU ideal-int +pkg syscall (linux-386-cgo), const PTRACE_SYSEMU_SINGLESTEP ideal-int +pkg syscall (linux-386-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (linux-386-cgo), const PathMax ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_AS ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_CORE ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_CPU ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_DATA ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-386-cgo), const RLIMIT_STACK ideal-int +pkg syscall (linux-386-cgo), const RLIM_INFINITY ideal-int +pkg syscall (linux-386-cgo), const RTAX_ADVMSS ideal-int +pkg syscall (linux-386-cgo), const RTAX_CWND ideal-int +pkg syscall (linux-386-cgo), const RTAX_FEATURES ideal-int +pkg syscall (linux-386-cgo), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-386-cgo), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-386-cgo), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-386-cgo), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-386-cgo), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-386-cgo), const RTAX_INITCWND ideal-int +pkg syscall (linux-386-cgo), const RTAX_INITRWND ideal-int +pkg syscall (linux-386-cgo), const RTAX_LOCK ideal-int +pkg syscall (linux-386-cgo), const RTAX_MAX ideal-int +pkg syscall (linux-386-cgo), const RTAX_MTU ideal-int +pkg syscall (linux-386-cgo), const RTAX_REORDERING ideal-int +pkg syscall (linux-386-cgo), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-386-cgo), const RTAX_RTT ideal-int +pkg syscall (linux-386-cgo), const RTAX_RTTVAR ideal-int +pkg syscall (linux-386-cgo), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-386-cgo), const RTAX_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RTAX_WINDOW ideal-int +pkg syscall (linux-386-cgo), const RTA_ALIGNTO ideal-int +pkg syscall (linux-386-cgo), const RTA_CACHEINFO ideal-int +pkg syscall (linux-386-cgo), const RTA_DST ideal-int +pkg syscall (linux-386-cgo), const RTA_FLOW ideal-int +pkg syscall (linux-386-cgo), const RTA_GATEWAY ideal-int +pkg syscall (linux-386-cgo), const RTA_IIF ideal-int +pkg syscall (linux-386-cgo), const RTA_MAX ideal-int +pkg syscall (linux-386-cgo), const RTA_METRICS ideal-int +pkg syscall (linux-386-cgo), const RTA_MULTIPATH ideal-int +pkg syscall (linux-386-cgo), const RTA_OIF ideal-int +pkg syscall (linux-386-cgo), const RTA_PREFSRC ideal-int +pkg syscall (linux-386-cgo), const RTA_PRIORITY ideal-int +pkg syscall (linux-386-cgo), const RTA_SRC ideal-int +pkg syscall (linux-386-cgo), const RTA_TABLE ideal-int +pkg syscall (linux-386-cgo), const RTA_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-386-cgo), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-386-cgo), const RTCF_LOG ideal-int +pkg syscall (linux-386-cgo), const RTCF_MASQ ideal-int +pkg syscall (linux-386-cgo), const RTCF_NAT ideal-int +pkg syscall (linux-386-cgo), const RTCF_VALVE ideal-int +pkg syscall (linux-386-cgo), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-386-cgo), const RTF_ADDRCONF ideal-int +pkg syscall (linux-386-cgo), const RTF_ALLONLINK ideal-int +pkg syscall (linux-386-cgo), const RTF_BROADCAST ideal-int +pkg syscall (linux-386-cgo), const RTF_CACHE ideal-int +pkg syscall (linux-386-cgo), const RTF_DEFAULT ideal-int +pkg syscall (linux-386-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (linux-386-cgo), const RTF_FLOW ideal-int +pkg syscall (linux-386-cgo), const RTF_GATEWAY ideal-int +pkg syscall (linux-386-cgo), const RTF_HOST ideal-int +pkg syscall (linux-386-cgo), const RTF_INTERFACE ideal-int +pkg syscall (linux-386-cgo), const RTF_IRTT ideal-int +pkg syscall (linux-386-cgo), const RTF_LINKRT ideal-int +pkg syscall (linux-386-cgo), const RTF_LOCAL ideal-int +pkg syscall (linux-386-cgo), const RTF_MODIFIED ideal-int +pkg syscall (linux-386-cgo), const RTF_MSS ideal-int +pkg syscall (linux-386-cgo), const RTF_MTU ideal-int +pkg syscall (linux-386-cgo), const RTF_MULTICAST ideal-int +pkg syscall (linux-386-cgo), const RTF_NAT ideal-int +pkg syscall (linux-386-cgo), const RTF_NOFORWARD ideal-int +pkg syscall (linux-386-cgo), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-386-cgo), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-386-cgo), const RTF_POLICY ideal-int +pkg syscall (linux-386-cgo), const RTF_REINSTATE ideal-int +pkg syscall (linux-386-cgo), const RTF_REJECT ideal-int +pkg syscall (linux-386-cgo), const RTF_STATIC ideal-int +pkg syscall (linux-386-cgo), const RTF_THROW ideal-int +pkg syscall (linux-386-cgo), const RTF_UP ideal-int +pkg syscall (linux-386-cgo), const RTF_WINDOW ideal-int +pkg syscall (linux-386-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (linux-386-cgo), const RTM_BASE ideal-int +pkg syscall (linux-386-cgo), const RTM_DELACTION ideal-int +pkg syscall (linux-386-cgo), const RTM_DELADDR ideal-int +pkg syscall (linux-386-cgo), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-386-cgo), const RTM_DELLINK ideal-int +pkg syscall (linux-386-cgo), const RTM_DELNEIGH ideal-int +pkg syscall (linux-386-cgo), const RTM_DELQDISC ideal-int +pkg syscall (linux-386-cgo), const RTM_DELROUTE ideal-int +pkg syscall (linux-386-cgo), const RTM_DELRULE ideal-int +pkg syscall (linux-386-cgo), const RTM_DELTCLASS ideal-int +pkg syscall (linux-386-cgo), const RTM_DELTFILTER ideal-int +pkg syscall (linux-386-cgo), const RTM_F_CLONED ideal-int +pkg syscall (linux-386-cgo), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-386-cgo), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-386-cgo), const RTM_F_PREFIX ideal-int +pkg syscall (linux-386-cgo), const RTM_GETACTION ideal-int +pkg syscall (linux-386-cgo), const RTM_GETADDR ideal-int +pkg syscall (linux-386-cgo), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-386-cgo), const RTM_GETANYCAST ideal-int +pkg syscall (linux-386-cgo), const RTM_GETDCB ideal-int +pkg syscall (linux-386-cgo), const RTM_GETLINK ideal-int +pkg syscall (linux-386-cgo), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-386-cgo), const RTM_GETNEIGH ideal-int +pkg syscall (linux-386-cgo), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-386-cgo), const RTM_GETQDISC ideal-int +pkg syscall (linux-386-cgo), const RTM_GETROUTE ideal-int +pkg syscall (linux-386-cgo), const RTM_GETRULE ideal-int +pkg syscall (linux-386-cgo), const RTM_GETTCLASS ideal-int +pkg syscall (linux-386-cgo), const RTM_GETTFILTER ideal-int +pkg syscall (linux-386-cgo), const RTM_MAX ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWACTION ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWADDR ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWLINK ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWQDISC ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWROUTE ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWRULE ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-386-cgo), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-386-cgo), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-386-cgo), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-386-cgo), const RTM_SETDCB ideal-int +pkg syscall (linux-386-cgo), const RTM_SETLINK ideal-int +pkg syscall (linux-386-cgo), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-386-cgo), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-386-cgo), const RTNH_F_DEAD ideal-int +pkg syscall (linux-386-cgo), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-386-cgo), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-386-cgo), const RTN_ANYCAST ideal-int +pkg syscall (linux-386-cgo), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-386-cgo), const RTN_BROADCAST ideal-int +pkg syscall (linux-386-cgo), const RTN_LOCAL ideal-int +pkg syscall (linux-386-cgo), const RTN_MAX ideal-int +pkg syscall (linux-386-cgo), const RTN_MULTICAST ideal-int +pkg syscall (linux-386-cgo), const RTN_NAT ideal-int +pkg syscall (linux-386-cgo), const RTN_PROHIBIT ideal-int +pkg syscall (linux-386-cgo), const RTN_THROW ideal-int +pkg syscall (linux-386-cgo), const RTN_UNICAST ideal-int +pkg syscall (linux-386-cgo), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-386-cgo), const RTN_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RTN_XRESOLVE ideal-int +pkg syscall (linux-386-cgo), const RTPROT_BIRD ideal-int +pkg syscall (linux-386-cgo), const RTPROT_BOOT ideal-int +pkg syscall (linux-386-cgo), const RTPROT_DHCP ideal-int +pkg syscall (linux-386-cgo), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-386-cgo), const RTPROT_GATED ideal-int +pkg syscall (linux-386-cgo), const RTPROT_KERNEL ideal-int +pkg syscall (linux-386-cgo), const RTPROT_MRT ideal-int +pkg syscall (linux-386-cgo), const RTPROT_NTK ideal-int +pkg syscall (linux-386-cgo), const RTPROT_RA ideal-int +pkg syscall (linux-386-cgo), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-386-cgo), const RTPROT_STATIC ideal-int +pkg syscall (linux-386-cgo), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RTPROT_XORP ideal-int +pkg syscall (linux-386-cgo), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-386-cgo), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-386-cgo), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-386-cgo), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-386-cgo), const RT_CLASS_MAX ideal-int +pkg syscall (linux-386-cgo), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-386-cgo), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-386-cgo), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-386-cgo), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-386-cgo), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_MAX ideal-int +pkg syscall (linux-386-cgo), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-386-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-386-cgo), const RUSAGE_SELF ideal-int +pkg syscall (linux-386-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (linux-386-cgo), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-386-cgo), const SCM_RIGHTS ideal-int +pkg syscall (linux-386-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-386-cgo), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-386-cgo), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-386-cgo), const SIGCHLD Signal +pkg syscall (linux-386-cgo), const SIGCLD Signal +pkg syscall (linux-386-cgo), const SIGCONT Signal +pkg syscall (linux-386-cgo), const SIGIO Signal +pkg syscall (linux-386-cgo), const SIGIOT Signal +pkg syscall (linux-386-cgo), const SIGPOLL Signal +pkg syscall (linux-386-cgo), const SIGPROF Signal +pkg syscall (linux-386-cgo), const SIGPWR Signal +pkg syscall (linux-386-cgo), const SIGSTKFLT Signal +pkg syscall (linux-386-cgo), const SIGSTOP Signal +pkg syscall (linux-386-cgo), const SIGSYS Signal +pkg syscall (linux-386-cgo), const SIGTSTP Signal +pkg syscall (linux-386-cgo), const SIGTTIN Signal +pkg syscall (linux-386-cgo), const SIGTTOU Signal +pkg syscall (linux-386-cgo), const SIGUNUSED Signal +pkg syscall (linux-386-cgo), const SIGURG Signal +pkg syscall (linux-386-cgo), const SIGUSR1 Signal +pkg syscall (linux-386-cgo), const SIGUSR2 Signal +pkg syscall (linux-386-cgo), const SIGVTALRM Signal +pkg syscall (linux-386-cgo), const SIGWINCH Signal +pkg syscall (linux-386-cgo), const SIGXCPU Signal +pkg syscall (linux-386-cgo), const SIGXFSZ Signal +pkg syscall (linux-386-cgo), const SIOCADDDLCI ideal-int +pkg syscall (linux-386-cgo), const SIOCADDMULTI ideal-int +pkg syscall (linux-386-cgo), const SIOCADDRT ideal-int +pkg syscall (linux-386-cgo), const SIOCATMARK ideal-int +pkg syscall (linux-386-cgo), const SIOCDARP ideal-int +pkg syscall (linux-386-cgo), const SIOCDELDLCI ideal-int +pkg syscall (linux-386-cgo), const SIOCDELMULTI ideal-int +pkg syscall (linux-386-cgo), const SIOCDELRT ideal-int +pkg syscall (linux-386-cgo), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-386-cgo), const SIOCDIFADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCDRARP ideal-int +pkg syscall (linux-386-cgo), const SIOCGARP ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFBR ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFCONF ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFENCAP ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFMAP ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFMEM ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFMTU ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFNAME ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-386-cgo), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-386-cgo), const SIOCGPGRP ideal-int +pkg syscall (linux-386-cgo), const SIOCGRARP ideal-int +pkg syscall (linux-386-cgo), const SIOCGSTAMP ideal-int +pkg syscall (linux-386-cgo), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-386-cgo), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-386-cgo), const SIOCRTMSG ideal-int +pkg syscall (linux-386-cgo), const SIOCSARP ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFBR ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFENCAP ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFLINK ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFMAP ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFMEM ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFMTU ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFNAME ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-386-cgo), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-386-cgo), const SIOCSPGRP ideal-int +pkg syscall (linux-386-cgo), const SIOCSRARP ideal-int +pkg syscall (linux-386-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-386-cgo), const SOCK_DCCP ideal-int +pkg syscall (linux-386-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-386-cgo), const SOCK_PACKET ideal-int +pkg syscall (linux-386-cgo), const SOCK_RDM ideal-int +pkg syscall (linux-386-cgo), const SOL_AAL ideal-int +pkg syscall (linux-386-cgo), const SOL_ATM ideal-int +pkg syscall (linux-386-cgo), const SOL_DECNET ideal-int +pkg syscall (linux-386-cgo), const SOL_ICMPV6 ideal-int +pkg syscall (linux-386-cgo), const SOL_IP ideal-int +pkg syscall (linux-386-cgo), const SOL_IPV6 ideal-int +pkg syscall (linux-386-cgo), const SOL_IRDA ideal-int +pkg syscall (linux-386-cgo), const SOL_PACKET ideal-int +pkg syscall (linux-386-cgo), const SOL_RAW ideal-int +pkg syscall (linux-386-cgo), const SOL_TCP ideal-int +pkg syscall (linux-386-cgo), const SOL_X25 ideal-int +pkg syscall (linux-386-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-386-cgo), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-386-cgo), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-386-cgo), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-386-cgo), const SO_DEBUG ideal-int +pkg syscall (linux-386-cgo), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-386-cgo), const SO_DOMAIN ideal-int +pkg syscall (linux-386-cgo), const SO_ERROR ideal-int +pkg syscall (linux-386-cgo), const SO_MARK ideal-int +pkg syscall (linux-386-cgo), const SO_NO_CHECK ideal-int +pkg syscall (linux-386-cgo), const SO_OOBINLINE ideal-int +pkg syscall (linux-386-cgo), const SO_PASSCRED ideal-int +pkg syscall (linux-386-cgo), const SO_PASSSEC ideal-int +pkg syscall (linux-386-cgo), const SO_PEERCRED ideal-int +pkg syscall (linux-386-cgo), const SO_PEERNAME ideal-int +pkg syscall (linux-386-cgo), const SO_PEERSEC ideal-int +pkg syscall (linux-386-cgo), const SO_PRIORITY ideal-int +pkg syscall (linux-386-cgo), const SO_PROTOCOL ideal-int +pkg syscall (linux-386-cgo), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-386-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (linux-386-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (linux-386-cgo), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-386-cgo), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-386-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-386-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-386-cgo), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-386-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (linux-386-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (linux-386-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (linux-386-cgo), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-386-cgo), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-386-cgo), const SO_TYPE ideal-int +pkg syscall (linux-386-cgo), const SYS_ACCESS ideal-int +pkg syscall (linux-386-cgo), const SYS_ACCT ideal-int +pkg syscall (linux-386-cgo), const SYS_ADD_KEY ideal-int +pkg syscall (linux-386-cgo), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-386-cgo), const SYS_AFS_SYSCALL ideal-int +pkg syscall (linux-386-cgo), const SYS_ALARM ideal-int +pkg syscall (linux-386-cgo), const SYS_BDFLUSH ideal-int +pkg syscall (linux-386-cgo), const SYS_BREAK ideal-int +pkg syscall (linux-386-cgo), const SYS_BRK ideal-int +pkg syscall (linux-386-cgo), const SYS_CAPGET ideal-int +pkg syscall (linux-386-cgo), const SYS_CAPSET ideal-int +pkg syscall (linux-386-cgo), const SYS_CHDIR ideal-int +pkg syscall (linux-386-cgo), const SYS_CHMOD ideal-int +pkg syscall (linux-386-cgo), const SYS_CHOWN ideal-int +pkg syscall (linux-386-cgo), const SYS_CHOWN32 ideal-int +pkg syscall (linux-386-cgo), const SYS_CHROOT ideal-int +pkg syscall (linux-386-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-386-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-386-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_CLONE ideal-int +pkg syscall (linux-386-cgo), const SYS_CLOSE ideal-int +pkg syscall (linux-386-cgo), const SYS_CREAT ideal-int +pkg syscall (linux-386-cgo), const SYS_CREATE_MODULE ideal-int +pkg syscall (linux-386-cgo), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-386-cgo), const SYS_DUP ideal-int +pkg syscall (linux-386-cgo), const SYS_DUP2 ideal-int +pkg syscall (linux-386-cgo), const SYS_DUP3 ideal-int +pkg syscall (linux-386-cgo), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-386-cgo), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-386-cgo), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-386-cgo), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-386-cgo), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-386-cgo), const SYS_EVENTFD ideal-int +pkg syscall (linux-386-cgo), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-386-cgo), const SYS_EXECVE ideal-int +pkg syscall (linux-386-cgo), const SYS_EXIT ideal-int +pkg syscall (linux-386-cgo), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-386-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (linux-386-cgo), const SYS_FADVISE64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FADVISE64_64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FALLOCATE ideal-int +pkg syscall (linux-386-cgo), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-386-cgo), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHDIR ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHMOD ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHOWN ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHOWN32 ideal-int +pkg syscall (linux-386-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-386-cgo), const SYS_FCNTL ideal-int +pkg syscall (linux-386-cgo), const SYS_FCNTL64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (linux-386-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_FLOCK ideal-int +pkg syscall (linux-386-cgo), const SYS_FORK ideal-int +pkg syscall (linux-386-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_FSTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_FSTAT64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FSTATAT64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FSTATFS ideal-int +pkg syscall (linux-386-cgo), const SYS_FSTATFS64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FSYNC ideal-int +pkg syscall (linux-386-cgo), const SYS_FTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-386-cgo), const SYS_FTRUNCATE64 ideal-int +pkg syscall (linux-386-cgo), const SYS_FUTEX ideal-int +pkg syscall (linux-386-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-386-cgo), const SYS_GETCPU ideal-int +pkg syscall (linux-386-cgo), const SYS_GETCWD ideal-int +pkg syscall (linux-386-cgo), const SYS_GETDENTS ideal-int +pkg syscall (linux-386-cgo), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETEGID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETEGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETEUID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETEUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETGID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (linux-386-cgo), const SYS_GETGROUPS32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETITIMER ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPGID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPGRP ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPMSG ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPPID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRESGID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRESGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRESUID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRESUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-386-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-386-cgo), const SYS_GETSID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETTID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-386-cgo), const SYS_GETUID ideal-int +pkg syscall (linux-386-cgo), const SYS_GETUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_GETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_GET_KERNEL_SYMS ideal-int +pkg syscall (linux-386-cgo), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-386-cgo), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-386-cgo), const SYS_GET_THREAD_AREA ideal-int +pkg syscall (linux-386-cgo), const SYS_GTTY ideal-int +pkg syscall (linux-386-cgo), const SYS_IDLE ideal-int +pkg syscall (linux-386-cgo), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-386-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-386-cgo), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-386-cgo), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-386-cgo), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-386-cgo), const SYS_IOCTL ideal-int +pkg syscall (linux-386-cgo), const SYS_IOPERM ideal-int +pkg syscall (linux-386-cgo), const SYS_IOPL ideal-int +pkg syscall (linux-386-cgo), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-386-cgo), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-386-cgo), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-386-cgo), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-386-cgo), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-386-cgo), const SYS_IO_SETUP ideal-int +pkg syscall (linux-386-cgo), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-386-cgo), const SYS_IPC ideal-int +pkg syscall (linux-386-cgo), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-386-cgo), const SYS_KEYCTL ideal-int +pkg syscall (linux-386-cgo), const SYS_KILL ideal-int +pkg syscall (linux-386-cgo), const SYS_LCHOWN ideal-int +pkg syscall (linux-386-cgo), const SYS_LCHOWN32 ideal-int +pkg syscall (linux-386-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_LINK ideal-int +pkg syscall (linux-386-cgo), const SYS_LINKAT ideal-int +pkg syscall (linux-386-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_LOCK ideal-int +pkg syscall (linux-386-cgo), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-386-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_LSEEK ideal-int +pkg syscall (linux-386-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_LSTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_LSTAT64 ideal-int +pkg syscall (linux-386-cgo), const SYS_MADVISE ideal-int +pkg syscall (linux-386-cgo), const SYS_MADVISE1 ideal-int +pkg syscall (linux-386-cgo), const SYS_MBIND ideal-int +pkg syscall (linux-386-cgo), const SYS_MIGRATE_PAGES ideal-int +pkg syscall (linux-386-cgo), const SYS_MINCORE ideal-int +pkg syscall (linux-386-cgo), const SYS_MKDIR ideal-int +pkg syscall (linux-386-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (linux-386-cgo), const SYS_MKNOD ideal-int +pkg syscall (linux-386-cgo), const SYS_MKNODAT ideal-int +pkg syscall (linux-386-cgo), const SYS_MLOCK ideal-int +pkg syscall (linux-386-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (linux-386-cgo), const SYS_MMAP ideal-int +pkg syscall (linux-386-cgo), const SYS_MMAP2 ideal-int +pkg syscall (linux-386-cgo), const SYS_MODIFY_LDT ideal-int +pkg syscall (linux-386-cgo), const SYS_MOUNT ideal-int +pkg syscall (linux-386-cgo), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-386-cgo), const SYS_MPROTECT ideal-int +pkg syscall (linux-386-cgo), const SYS_MPX ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-386-cgo), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-386-cgo), const SYS_MREMAP ideal-int +pkg syscall (linux-386-cgo), const SYS_MSYNC ideal-int +pkg syscall (linux-386-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (linux-386-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-386-cgo), const SYS_MUNMAP ideal-int +pkg syscall (linux-386-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-386-cgo), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-386-cgo), const SYS_NICE ideal-int +pkg syscall (linux-386-cgo), const SYS_OLDFSTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_OLDLSTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_OLDOLDUNAME ideal-int +pkg syscall (linux-386-cgo), const SYS_OLDSTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_OLDUNAME ideal-int +pkg syscall (linux-386-cgo), const SYS_OPEN ideal-int +pkg syscall (linux-386-cgo), const SYS_OPENAT ideal-int +pkg syscall (linux-386-cgo), const SYS_PAUSE ideal-int +pkg syscall (linux-386-cgo), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-386-cgo), const SYS_PERSONALITY ideal-int +pkg syscall (linux-386-cgo), const SYS_PIPE ideal-int +pkg syscall (linux-386-cgo), const SYS_PIPE2 ideal-int +pkg syscall (linux-386-cgo), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-386-cgo), const SYS_POLL ideal-int +pkg syscall (linux-386-cgo), const SYS_PPOLL ideal-int +pkg syscall (linux-386-cgo), const SYS_PRCTL ideal-int +pkg syscall (linux-386-cgo), const SYS_PREAD64 ideal-int +pkg syscall (linux-386-cgo), const SYS_PREADV ideal-int +pkg syscall (linux-386-cgo), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-386-cgo), const SYS_PROF ideal-int +pkg syscall (linux-386-cgo), const SYS_PROFIL ideal-int +pkg syscall (linux-386-cgo), const SYS_PSELECT6 ideal-int +pkg syscall (linux-386-cgo), const SYS_PTRACE ideal-int +pkg syscall (linux-386-cgo), const SYS_PUTPMSG ideal-int +pkg syscall (linux-386-cgo), const SYS_PWRITE64 ideal-int +pkg syscall (linux-386-cgo), const SYS_PWRITEV ideal-int +pkg syscall (linux-386-cgo), const SYS_QUERY_MODULE ideal-int +pkg syscall (linux-386-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (linux-386-cgo), const SYS_READ ideal-int +pkg syscall (linux-386-cgo), const SYS_READAHEAD ideal-int +pkg syscall (linux-386-cgo), const SYS_READDIR ideal-int +pkg syscall (linux-386-cgo), const SYS_READLINK ideal-int +pkg syscall (linux-386-cgo), const SYS_READLINKAT ideal-int +pkg syscall (linux-386-cgo), const SYS_READV ideal-int +pkg syscall (linux-386-cgo), const SYS_REBOOT ideal-int +pkg syscall (linux-386-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (linux-386-cgo), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-386-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_RENAME ideal-int +pkg syscall (linux-386-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (linux-386-cgo), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-386-cgo), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-386-cgo), const SYS_RMDIR ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-386-cgo), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-386-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-386-cgo), const SYS_SELECT ideal-int +pkg syscall (linux-386-cgo), const SYS_SENDFILE ideal-int +pkg syscall (linux-386-cgo), const SYS_SENDFILE64 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-386-cgo), const SYS_SETFSGID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETFSGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETFSUID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETFSUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETGID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (linux-386-cgo), const SYS_SETGROUPS32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-386-cgo), const SYS_SETITIMER ideal-int +pkg syscall (linux-386-cgo), const SYS_SETPGID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-386-cgo), const SYS_SETREGID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETREGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETRESGID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETRESGID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETRESUID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETRESUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETREUID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETREUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-386-cgo), const SYS_SETSID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-386-cgo), const SYS_SETUID ideal-int +pkg syscall (linux-386-cgo), const SYS_SETUID32 ideal-int +pkg syscall (linux-386-cgo), const SYS_SETXATTR ideal-int +pkg syscall (linux-386-cgo), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-386-cgo), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-386-cgo), const SYS_SET_THREAD_AREA ideal-int +pkg syscall (linux-386-cgo), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-386-cgo), const SYS_SGETMASK ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGACTION ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGNAL ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGNALFD ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGPENDING ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGPROCMASK ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGRETURN ideal-int +pkg syscall (linux-386-cgo), const SYS_SIGSUSPEND ideal-int +pkg syscall (linux-386-cgo), const SYS_SOCKETCALL ideal-int +pkg syscall (linux-386-cgo), const SYS_SPLICE ideal-int +pkg syscall (linux-386-cgo), const SYS_SSETMASK ideal-int +pkg syscall (linux-386-cgo), const SYS_STAT ideal-int +pkg syscall (linux-386-cgo), const SYS_STAT64 ideal-int +pkg syscall (linux-386-cgo), const SYS_STATFS ideal-int +pkg syscall (linux-386-cgo), const SYS_STATFS64 ideal-int +pkg syscall (linux-386-cgo), const SYS_STIME ideal-int +pkg syscall (linux-386-cgo), const SYS_STTY ideal-int +pkg syscall (linux-386-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (linux-386-cgo), const SYS_SWAPON ideal-int +pkg syscall (linux-386-cgo), const SYS_SYMLINK ideal-int +pkg syscall (linux-386-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-386-cgo), const SYS_SYNC ideal-int +pkg syscall (linux-386-cgo), const SYS_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-386-cgo), const SYS_SYSFS ideal-int +pkg syscall (linux-386-cgo), const SYS_SYSINFO ideal-int +pkg syscall (linux-386-cgo), const SYS_SYSLOG ideal-int +pkg syscall (linux-386-cgo), const SYS_TEE ideal-int +pkg syscall (linux-386-cgo), const SYS_TGKILL ideal-int +pkg syscall (linux-386-cgo), const SYS_TIME ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_TIMES ideal-int +pkg syscall (linux-386-cgo), const SYS_TKILL ideal-int +pkg syscall (linux-386-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (linux-386-cgo), const SYS_TRUNCATE64 ideal-int +pkg syscall (linux-386-cgo), const SYS_UGETRLIMIT ideal-int +pkg syscall (linux-386-cgo), const SYS_ULIMIT ideal-int +pkg syscall (linux-386-cgo), const SYS_UMASK ideal-int +pkg syscall (linux-386-cgo), const SYS_UMOUNT ideal-int +pkg syscall (linux-386-cgo), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-386-cgo), const SYS_UNAME ideal-int +pkg syscall (linux-386-cgo), const SYS_UNLINK ideal-int +pkg syscall (linux-386-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (linux-386-cgo), const SYS_UNSHARE ideal-int +pkg syscall (linux-386-cgo), const SYS_USELIB ideal-int +pkg syscall (linux-386-cgo), const SYS_USTAT ideal-int +pkg syscall (linux-386-cgo), const SYS_UTIME ideal-int +pkg syscall (linux-386-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-386-cgo), const SYS_UTIMES ideal-int +pkg syscall (linux-386-cgo), const SYS_VFORK ideal-int +pkg syscall (linux-386-cgo), const SYS_VHANGUP ideal-int +pkg syscall (linux-386-cgo), const SYS_VM86 ideal-int +pkg syscall (linux-386-cgo), const SYS_VM86OLD ideal-int +pkg syscall (linux-386-cgo), const SYS_VMSPLICE ideal-int +pkg syscall (linux-386-cgo), const SYS_VSERVER ideal-int +pkg syscall (linux-386-cgo), const SYS_WAIT4 ideal-int +pkg syscall (linux-386-cgo), const SYS_WAITID ideal-int +pkg syscall (linux-386-cgo), const SYS_WAITPID ideal-int +pkg syscall (linux-386-cgo), const SYS_WRITE ideal-int +pkg syscall (linux-386-cgo), const SYS_WRITEV ideal-int +pkg syscall (linux-386-cgo), const SYS__LLSEEK ideal-int +pkg syscall (linux-386-cgo), const SYS__NEWSELECT ideal-int +pkg syscall (linux-386-cgo), const SYS__SYSCTL ideal-int +pkg syscall (linux-386-cgo), const S_BLKSIZE ideal-int +pkg syscall (linux-386-cgo), const S_IEXEC ideal-int +pkg syscall (linux-386-cgo), const S_IREAD ideal-int +pkg syscall (linux-386-cgo), const S_IRGRP ideal-int +pkg syscall (linux-386-cgo), const S_IROTH ideal-int +pkg syscall (linux-386-cgo), const S_IRWXG ideal-int +pkg syscall (linux-386-cgo), const S_IRWXO ideal-int +pkg syscall (linux-386-cgo), const S_IRWXU ideal-int +pkg syscall (linux-386-cgo), const S_IWGRP ideal-int +pkg syscall (linux-386-cgo), const S_IWOTH ideal-int +pkg syscall (linux-386-cgo), const S_IWRITE ideal-int +pkg syscall (linux-386-cgo), const S_IXGRP ideal-int +pkg syscall (linux-386-cgo), const S_IXOTH ideal-int +pkg syscall (linux-386-cgo), const SizeofCmsghdr ideal-int +pkg syscall (linux-386-cgo), const SizeofIPMreq ideal-int +pkg syscall (linux-386-cgo), const SizeofIPMreqn ideal-int +pkg syscall (linux-386-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-386-cgo), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-386-cgo), const SizeofIfInfomsg ideal-int +pkg syscall (linux-386-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-386-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-386-cgo), const SizeofInotifyEvent ideal-int +pkg syscall (linux-386-cgo), const SizeofLinger ideal-int +pkg syscall (linux-386-cgo), const SizeofMsghdr ideal-int +pkg syscall (linux-386-cgo), const SizeofNlAttr ideal-int +pkg syscall (linux-386-cgo), const SizeofNlMsgerr ideal-int +pkg syscall (linux-386-cgo), const SizeofNlMsghdr ideal-int +pkg syscall (linux-386-cgo), const SizeofRtAttr ideal-int +pkg syscall (linux-386-cgo), const SizeofRtGenmsg ideal-int +pkg syscall (linux-386-cgo), const SizeofRtMsg ideal-int +pkg syscall (linux-386-cgo), const SizeofRtNexthop ideal-int +pkg syscall (linux-386-cgo), const SizeofSockFilter ideal-int +pkg syscall (linux-386-cgo), const SizeofSockFprog ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-386-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-386-cgo), const SizeofUcred ideal-int +pkg syscall (linux-386-cgo), const TCGETS ideal-int +pkg syscall (linux-386-cgo), const TCP_CONGESTION ideal-int +pkg syscall (linux-386-cgo), const TCP_CORK ideal-int +pkg syscall (linux-386-cgo), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-386-cgo), const TCP_INFO ideal-int +pkg syscall (linux-386-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (linux-386-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-386-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-386-cgo), const TCP_LINGER2 ideal-int +pkg syscall (linux-386-cgo), const TCP_MAXSEG ideal-int +pkg syscall (linux-386-cgo), const TCP_MAXWIN ideal-int +pkg syscall (linux-386-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-386-cgo), const TCP_MD5SIG ideal-int +pkg syscall (linux-386-cgo), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-386-cgo), const TCP_MSS ideal-int +pkg syscall (linux-386-cgo), const TCP_QUICKACK ideal-int +pkg syscall (linux-386-cgo), const TCP_SYNCNT ideal-int +pkg syscall (linux-386-cgo), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-386-cgo), const TCSETS ideal-int +pkg syscall (linux-386-cgo), const TIOCCBRK ideal-int +pkg syscall (linux-386-cgo), const TIOCCONS ideal-int +pkg syscall (linux-386-cgo), const TIOCEXCL ideal-int +pkg syscall (linux-386-cgo), const TIOCGDEV ideal-int +pkg syscall (linux-386-cgo), const TIOCGETD ideal-int +pkg syscall (linux-386-cgo), const TIOCGICOUNT ideal-int +pkg syscall (linux-386-cgo), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-386-cgo), const TIOCGPGRP ideal-int +pkg syscall (linux-386-cgo), const TIOCGPTN ideal-int +pkg syscall (linux-386-cgo), const TIOCGRS485 ideal-int +pkg syscall (linux-386-cgo), const TIOCGSERIAL ideal-int +pkg syscall (linux-386-cgo), const TIOCGSID ideal-int +pkg syscall (linux-386-cgo), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-386-cgo), const TIOCGWINSZ ideal-int +pkg syscall (linux-386-cgo), const TIOCINQ ideal-int +pkg syscall (linux-386-cgo), const TIOCLINUX ideal-int +pkg syscall (linux-386-cgo), const TIOCMBIC ideal-int +pkg syscall (linux-386-cgo), const TIOCMBIS ideal-int +pkg syscall (linux-386-cgo), const TIOCMGET ideal-int +pkg syscall (linux-386-cgo), const TIOCMIWAIT ideal-int +pkg syscall (linux-386-cgo), const TIOCMSET ideal-int +pkg syscall (linux-386-cgo), const TIOCM_CAR ideal-int +pkg syscall (linux-386-cgo), const TIOCM_CD ideal-int +pkg syscall (linux-386-cgo), const TIOCM_CTS ideal-int +pkg syscall (linux-386-cgo), const TIOCM_DSR ideal-int +pkg syscall (linux-386-cgo), const TIOCM_DTR ideal-int +pkg syscall (linux-386-cgo), const TIOCM_LE ideal-int +pkg syscall (linux-386-cgo), const TIOCM_RI ideal-int +pkg syscall (linux-386-cgo), const TIOCM_RNG ideal-int +pkg syscall (linux-386-cgo), const TIOCM_RTS ideal-int +pkg syscall (linux-386-cgo), const TIOCM_SR ideal-int +pkg syscall (linux-386-cgo), const TIOCM_ST ideal-int +pkg syscall (linux-386-cgo), const TIOCNOTTY ideal-int +pkg syscall (linux-386-cgo), const TIOCNXCL ideal-int +pkg syscall (linux-386-cgo), const TIOCOUTQ ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_START ideal-int +pkg syscall (linux-386-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (linux-386-cgo), const TIOCSBRK ideal-int +pkg syscall (linux-386-cgo), const TIOCSCTTY ideal-int +pkg syscall (linux-386-cgo), const TIOCSERCONFIG ideal-int +pkg syscall (linux-386-cgo), const TIOCSERGETLSR ideal-int +pkg syscall (linux-386-cgo), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-386-cgo), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-386-cgo), const TIOCSERGWILD ideal-int +pkg syscall (linux-386-cgo), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-386-cgo), const TIOCSERSWILD ideal-int +pkg syscall (linux-386-cgo), const TIOCSER_TEMT ideal-int +pkg syscall (linux-386-cgo), const TIOCSETD ideal-int +pkg syscall (linux-386-cgo), const TIOCSIG ideal-int +pkg syscall (linux-386-cgo), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-386-cgo), const TIOCSPGRP ideal-int +pkg syscall (linux-386-cgo), const TIOCSPTLCK ideal-int +pkg syscall (linux-386-cgo), const TIOCSRS485 ideal-int +pkg syscall (linux-386-cgo), const TIOCSSERIAL ideal-int +pkg syscall (linux-386-cgo), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-386-cgo), const TIOCSTI ideal-int +pkg syscall (linux-386-cgo), const TIOCSWINSZ ideal-int +pkg syscall (linux-386-cgo), const TOSTOP ideal-int +pkg syscall (linux-386-cgo), const TUNATTACHFILTER ideal-int +pkg syscall (linux-386-cgo), const TUNDETACHFILTER ideal-int +pkg syscall (linux-386-cgo), const TUNGETFEATURES ideal-int +pkg syscall (linux-386-cgo), const TUNGETIFF ideal-int +pkg syscall (linux-386-cgo), const TUNGETSNDBUF ideal-int +pkg syscall (linux-386-cgo), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-386-cgo), const TUNSETDEBUG ideal-int +pkg syscall (linux-386-cgo), const TUNSETGROUP ideal-int +pkg syscall (linux-386-cgo), const TUNSETIFF ideal-int +pkg syscall (linux-386-cgo), const TUNSETLINK ideal-int +pkg syscall (linux-386-cgo), const TUNSETNOCSUM ideal-int +pkg syscall (linux-386-cgo), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-386-cgo), const TUNSETOWNER ideal-int +pkg syscall (linux-386-cgo), const TUNSETPERSIST ideal-int +pkg syscall (linux-386-cgo), const TUNSETSNDBUF ideal-int +pkg syscall (linux-386-cgo), const TUNSETTXFILTER ideal-int +pkg syscall (linux-386-cgo), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-386-cgo), const VDISCARD ideal-int +pkg syscall (linux-386-cgo), const VEOF ideal-int +pkg syscall (linux-386-cgo), const VEOL ideal-int +pkg syscall (linux-386-cgo), const VEOL2 ideal-int +pkg syscall (linux-386-cgo), const VERASE ideal-int +pkg syscall (linux-386-cgo), const VINTR ideal-int +pkg syscall (linux-386-cgo), const VKILL ideal-int +pkg syscall (linux-386-cgo), const VLNEXT ideal-int +pkg syscall (linux-386-cgo), const VMIN ideal-int +pkg syscall (linux-386-cgo), const VQUIT ideal-int +pkg syscall (linux-386-cgo), const VREPRINT ideal-int +pkg syscall (linux-386-cgo), const VSTART ideal-int +pkg syscall (linux-386-cgo), const VSTOP ideal-int +pkg syscall (linux-386-cgo), const VSUSP ideal-int +pkg syscall (linux-386-cgo), const VSWTC ideal-int +pkg syscall (linux-386-cgo), const VTIME ideal-int +pkg syscall (linux-386-cgo), const VWERASE ideal-int +pkg syscall (linux-386-cgo), const WALL ideal-int +pkg syscall (linux-386-cgo), const WCLONE ideal-int +pkg syscall (linux-386-cgo), const WCONTINUED ideal-int +pkg syscall (linux-386-cgo), const WEXITED ideal-int +pkg syscall (linux-386-cgo), const WNOHANG ideal-int +pkg syscall (linux-386-cgo), const WNOTHREAD ideal-int +pkg syscall (linux-386-cgo), const WNOWAIT ideal-int +pkg syscall (linux-386-cgo), const WORDSIZE ideal-int +pkg syscall (linux-386-cgo), const WSTOPPED ideal-int +pkg syscall (linux-386-cgo), const WUNTRACED ideal-int +pkg syscall (linux-386-cgo), const XCASE ideal-int +pkg syscall (linux-386-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-386-cgo), func Access(string, uint32) error +pkg syscall (linux-386-cgo), func Acct(string) error +pkg syscall (linux-386-cgo), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-386-cgo), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-386-cgo), func Bind(int, Sockaddr) error +pkg syscall (linux-386-cgo), func BindToDevice(int, string) error +pkg syscall (linux-386-cgo), func Chroot(string) error +pkg syscall (linux-386-cgo), func Close(int) error +pkg syscall (linux-386-cgo), func CloseOnExec(int) +pkg syscall (linux-386-cgo), func CmsgLen(int) int +pkg syscall (linux-386-cgo), func CmsgSpace(int) int +pkg syscall (linux-386-cgo), func Connect(int, Sockaddr) error +pkg syscall (linux-386-cgo), func Creat(string, uint32) (int, error) +pkg syscall (linux-386-cgo), func DetachLsf(int) error +pkg syscall (linux-386-cgo), func Dup(int) (int, error) +pkg syscall (linux-386-cgo), func Dup2(int, int) error +pkg syscall (linux-386-cgo), func EpollCreate(int) (int, error) +pkg syscall (linux-386-cgo), func EpollCreate1(int) (int, error) +pkg syscall (linux-386-cgo), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-386-cgo), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-386-cgo), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-386-cgo), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-386-cgo), func Fchdir(int) error +pkg syscall (linux-386-cgo), func Fchmod(int, uint32) error +pkg syscall (linux-386-cgo), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-386-cgo), func Fchown(int, int, int) error +pkg syscall (linux-386-cgo), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-386-cgo), func Fdatasync(int) error +pkg syscall (linux-386-cgo), func Flock(int, int) error +pkg syscall (linux-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-386-cgo), func Fstat(int, *Stat_t) error +pkg syscall (linux-386-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-386-cgo), func Fsync(int) error +pkg syscall (linux-386-cgo), func Ftruncate(int, int64) error +pkg syscall (linux-386-cgo), func Futimes(int, []Timeval) error +pkg syscall (linux-386-cgo), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-386-cgo), func Getcwd([]uint8) (int, error) +pkg syscall (linux-386-cgo), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-386-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-386-cgo), func Getpgid(int) (int, error) +pkg syscall (linux-386-cgo), func Getpgrp() int +pkg syscall (linux-386-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-386-cgo), func Getrusage(int, *Rusage) error +pkg syscall (linux-386-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-386-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-386-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-386-cgo), func Gettid() int +pkg syscall (linux-386-cgo), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-386-cgo), func InotifyInit() (int, error) +pkg syscall (linux-386-cgo), func InotifyInit1(int) (int, error) +pkg syscall (linux-386-cgo), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-386-cgo), func Ioperm(int, int, int) error +pkg syscall (linux-386-cgo), func Iopl(int) error +pkg syscall (linux-386-cgo), func Kill(int, Signal) error +pkg syscall (linux-386-cgo), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-386-cgo), func Listen(int, int) error +pkg syscall (linux-386-cgo), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-386-cgo), func LsfSocket(int, int) (int, error) +pkg syscall (linux-386-cgo), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-386-cgo), func Lstat(string, *Stat_t) error +pkg syscall (linux-386-cgo), func Madvise([]uint8, int) error +pkg syscall (linux-386-cgo), func Mkdirat(int, string, uint32) error +pkg syscall (linux-386-cgo), func Mkfifo(string, uint32) error +pkg syscall (linux-386-cgo), func Mknod(string, uint32, int) error +pkg syscall (linux-386-cgo), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-386-cgo), func Mlock([]uint8) error +pkg syscall (linux-386-cgo), func Mlockall(int) error +pkg syscall (linux-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-386-cgo), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-386-cgo), func Mprotect([]uint8, int) error +pkg syscall (linux-386-cgo), func Munlock([]uint8) error +pkg syscall (linux-386-cgo), func Munlockall() error +pkg syscall (linux-386-cgo), func Munmap([]uint8) error +pkg syscall (linux-386-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-386-cgo), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-386-cgo), func NsecToTimespec(int64) Timespec +pkg syscall (linux-386-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (linux-386-cgo), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-386-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-386-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-386-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-386-cgo), func Pause() error +pkg syscall (linux-386-cgo), func Pipe([]int) error +pkg syscall (linux-386-cgo), func PivotRoot(string, string) error +pkg syscall (linux-386-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-386-cgo), func PtraceAttach(int) error +pkg syscall (linux-386-cgo), func PtraceCont(int, int) error +pkg syscall (linux-386-cgo), func PtraceDetach(int) error +pkg syscall (linux-386-cgo), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-386-cgo), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-386-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-386-cgo), func PtraceSetOptions(int, int) error +pkg syscall (linux-386-cgo), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-386-cgo), func PtraceSingleStep(int) error +pkg syscall (linux-386-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func Read(int, []uint8) (int, error) +pkg syscall (linux-386-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-386-cgo), func Reboot(int) error +pkg syscall (linux-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-386-cgo), func Renameat(int, string, int, string) error +pkg syscall (linux-386-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-386-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-386-cgo), func SetLsfPromisc(string, bool) error +pkg syscall (linux-386-cgo), func SetNonblock(int, bool) error +pkg syscall (linux-386-cgo), func Setdomainname([]uint8) error +pkg syscall (linux-386-cgo), func Setfsgid(int) error +pkg syscall (linux-386-cgo), func Setfsuid(int) error +pkg syscall (linux-386-cgo), func Setgid(int) error +pkg syscall (linux-386-cgo), func Setgroups([]int) error +pkg syscall (linux-386-cgo), func Sethostname([]uint8) error +pkg syscall (linux-386-cgo), func Setpgid(int, int) error +pkg syscall (linux-386-cgo), func Setregid(int, int) error +pkg syscall (linux-386-cgo), func Setresgid(int, int, int) error +pkg syscall (linux-386-cgo), func Setresuid(int, int, int) error +pkg syscall (linux-386-cgo), func Setreuid(int, int) error +pkg syscall (linux-386-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-386-cgo), func Setsid() (int, error) +pkg syscall (linux-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-386-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-386-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-386-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-386-cgo), func Settimeofday(*Timeval) error +pkg syscall (linux-386-cgo), func Setuid(int) error +pkg syscall (linux-386-cgo), func Shutdown(int, int) error +pkg syscall (linux-386-cgo), func Socket(int, int, int) (int, error) +pkg syscall (linux-386-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-386-cgo), func Splice(int, *int64, int, *int64, int, int) (int, error) +pkg syscall (linux-386-cgo), func Stat(string, *Stat_t) error +pkg syscall (linux-386-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (linux-386-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-386-cgo), func Sync() +pkg syscall (linux-386-cgo), func SyncFileRange(int, int64, int64, int) error +pkg syscall (linux-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-386-cgo), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-386-cgo), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-386-cgo), func Tgkill(int, int, Signal) error +pkg syscall (linux-386-cgo), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-386-cgo), func Times(*Tms) (uintptr, error) +pkg syscall (linux-386-cgo), func TimespecToNsec(Timespec) int64 +pkg syscall (linux-386-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-386-cgo), func Truncate(string, int64) error +pkg syscall (linux-386-cgo), func Umask(int) int +pkg syscall (linux-386-cgo), func Uname(*Utsname) error +pkg syscall (linux-386-cgo), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-386-cgo), func UnixRights(...int) []uint8 +pkg syscall (linux-386-cgo), func Unlinkat(int, string) error +pkg syscall (linux-386-cgo), func Unmount(string, int) error +pkg syscall (linux-386-cgo), func Unshare(int) error +pkg syscall (linux-386-cgo), func Ustat(int, *Ustat_t) error +pkg syscall (linux-386-cgo), func Utime(string, *Utimbuf) error +pkg syscall (linux-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-386-cgo), func Write(int, []uint8) (int, error) +pkg syscall (linux-386-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-386-cgo), method (*Iovec) SetLen(int) +pkg syscall (linux-386-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (linux-386-cgo), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-386-cgo), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-386-cgo), type Cmsghdr struct +pkg syscall (linux-386-cgo), type Cmsghdr struct, Len uint32 +pkg syscall (linux-386-cgo), type Cmsghdr struct, Level int32 +pkg syscall (linux-386-cgo), type Cmsghdr struct, Type int32 +pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-386-cgo), type Credential struct +pkg syscall (linux-386-cgo), type Credential struct, Gid uint32 +pkg syscall (linux-386-cgo), type Credential struct, Groups []uint32 +pkg syscall (linux-386-cgo), type Credential struct, Uid uint32 +pkg syscall (linux-386-cgo), type Dirent struct +pkg syscall (linux-386-cgo), type Dirent struct, Ino uint64 +pkg syscall (linux-386-cgo), type Dirent struct, Name [256]int8 +pkg syscall (linux-386-cgo), type Dirent struct, Off int64 +pkg syscall (linux-386-cgo), type Dirent struct, Pad_cgo_0 [1]uint8 +pkg syscall (linux-386-cgo), type Dirent struct, Reclen uint16 +pkg syscall (linux-386-cgo), type Dirent struct, Type uint8 +pkg syscall (linux-386-cgo), type EpollEvent struct +pkg syscall (linux-386-cgo), type EpollEvent struct, Events uint32 +pkg syscall (linux-386-cgo), type EpollEvent struct, Fd int32 +pkg syscall (linux-386-cgo), type EpollEvent struct, Pad int32 +pkg syscall (linux-386-cgo), type FdSet struct +pkg syscall (linux-386-cgo), type FdSet struct, Bits [32]int32 +pkg syscall (linux-386-cgo), type Fsid struct +pkg syscall (linux-386-cgo), type Fsid struct, X__val [2]int32 +pkg syscall (linux-386-cgo), type IPMreqn struct +pkg syscall (linux-386-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-386-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-386-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-386-cgo), type IfAddrmsg struct +pkg syscall (linux-386-cgo), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-386-cgo), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-386-cgo), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-386-cgo), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-386-cgo), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-386-cgo), type IfInfomsg struct +pkg syscall (linux-386-cgo), type IfInfomsg struct, Change uint32 +pkg syscall (linux-386-cgo), type IfInfomsg struct, Family uint8 +pkg syscall (linux-386-cgo), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-386-cgo), type IfInfomsg struct, Index int32 +pkg syscall (linux-386-cgo), type IfInfomsg struct, Type uint16 +pkg syscall (linux-386-cgo), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-386-cgo), type Inet4Pktinfo struct +pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-386-cgo), type Inet6Pktinfo struct +pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-386-cgo), type InotifyEvent struct +pkg syscall (linux-386-cgo), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-386-cgo), type InotifyEvent struct, Len uint32 +pkg syscall (linux-386-cgo), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-386-cgo), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-386-cgo), type InotifyEvent struct, Wd int32 +pkg syscall (linux-386-cgo), type Iovec struct +pkg syscall (linux-386-cgo), type Iovec struct, Base *uint8 +pkg syscall (linux-386-cgo), type Iovec struct, Len uint32 +pkg syscall (linux-386-cgo), type Msghdr struct +pkg syscall (linux-386-cgo), type Msghdr struct, Control *uint8 +pkg syscall (linux-386-cgo), type Msghdr struct, Controllen uint32 +pkg syscall (linux-386-cgo), type Msghdr struct, Flags int32 +pkg syscall (linux-386-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (linux-386-cgo), type Msghdr struct, Iovlen uint32 +pkg syscall (linux-386-cgo), type Msghdr struct, Name *uint8 +pkg syscall (linux-386-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (linux-386-cgo), type NetlinkMessage struct +pkg syscall (linux-386-cgo), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-386-cgo), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct +pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-386-cgo), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct +pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-386-cgo), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-386-cgo), type NlAttr struct +pkg syscall (linux-386-cgo), type NlAttr struct, Len uint16 +pkg syscall (linux-386-cgo), type NlAttr struct, Type uint16 +pkg syscall (linux-386-cgo), type NlMsgerr struct +pkg syscall (linux-386-cgo), type NlMsgerr struct, Error int32 +pkg syscall (linux-386-cgo), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-386-cgo), type NlMsghdr struct +pkg syscall (linux-386-cgo), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-386-cgo), type NlMsghdr struct, Len uint32 +pkg syscall (linux-386-cgo), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-386-cgo), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-386-cgo), type NlMsghdr struct, Type uint16 +pkg syscall (linux-386-cgo), type PtraceRegs struct +pkg syscall (linux-386-cgo), type PtraceRegs struct, Eax int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Ebp int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Ebx int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Ecx int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Edi int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Edx int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Eflags int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Eip int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Esi int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Esp int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Orig_eax int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xcs int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xds int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xes int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xfs int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xgs int32 +pkg syscall (linux-386-cgo), type PtraceRegs struct, Xss int32 +pkg syscall (linux-386-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (linux-386-cgo), type RawSockaddr struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (linux-386-cgo), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (linux-386-cgo), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-386-cgo), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-386-cgo), type RawSockaddrNetlink struct +pkg syscall (linux-386-cgo), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-386-cgo), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-386-cgo), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-386-cgo), type RawSockaddrUnix struct +pkg syscall (linux-386-cgo), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-386-cgo), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-386-cgo), type Rlimit struct +pkg syscall (linux-386-cgo), type Rlimit struct, Cur uint64 +pkg syscall (linux-386-cgo), type Rlimit struct, Max uint64 +pkg syscall (linux-386-cgo), type RtAttr struct +pkg syscall (linux-386-cgo), type RtAttr struct, Len uint16 +pkg syscall (linux-386-cgo), type RtAttr struct, Type uint16 +pkg syscall (linux-386-cgo), type RtGenmsg struct +pkg syscall (linux-386-cgo), type RtGenmsg struct, Family uint8 +pkg syscall (linux-386-cgo), type RtMsg struct +pkg syscall (linux-386-cgo), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Family uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Flags uint32 +pkg syscall (linux-386-cgo), type RtMsg struct, Protocol uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Scope uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Src_len uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Table uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Tos uint8 +pkg syscall (linux-386-cgo), type RtMsg struct, Type uint8 +pkg syscall (linux-386-cgo), type RtNexthop struct +pkg syscall (linux-386-cgo), type RtNexthop struct, Flags uint8 +pkg syscall (linux-386-cgo), type RtNexthop struct, Hops uint8 +pkg syscall (linux-386-cgo), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-386-cgo), type RtNexthop struct, Len uint16 +pkg syscall (linux-386-cgo), type Rusage struct, Idrss int32 +pkg syscall (linux-386-cgo), type Rusage struct, Inblock int32 +pkg syscall (linux-386-cgo), type Rusage struct, Isrss int32 +pkg syscall (linux-386-cgo), type Rusage struct, Ixrss int32 +pkg syscall (linux-386-cgo), type Rusage struct, Majflt int32 +pkg syscall (linux-386-cgo), type Rusage struct, Maxrss int32 +pkg syscall (linux-386-cgo), type Rusage struct, Minflt int32 +pkg syscall (linux-386-cgo), type Rusage struct, Msgrcv int32 +pkg syscall (linux-386-cgo), type Rusage struct, Msgsnd int32 +pkg syscall (linux-386-cgo), type Rusage struct, Nivcsw int32 +pkg syscall (linux-386-cgo), type Rusage struct, Nsignals int32 +pkg syscall (linux-386-cgo), type Rusage struct, Nswap int32 +pkg syscall (linux-386-cgo), type Rusage struct, Nvcsw int32 +pkg syscall (linux-386-cgo), type Rusage struct, Oublock int32 +pkg syscall (linux-386-cgo), type Rusage struct, Stime Timeval +pkg syscall (linux-386-cgo), type Rusage struct, Utime Timeval +pkg syscall (linux-386-cgo), type SockFilter struct +pkg syscall (linux-386-cgo), type SockFilter struct, Code uint16 +pkg syscall (linux-386-cgo), type SockFilter struct, Jf uint8 +pkg syscall (linux-386-cgo), type SockFilter struct, Jt uint8 +pkg syscall (linux-386-cgo), type SockFilter struct, K uint32 +pkg syscall (linux-386-cgo), type SockFprog struct +pkg syscall (linux-386-cgo), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-386-cgo), type SockFprog struct, Len uint16 +pkg syscall (linux-386-cgo), type SockFprog struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-386-cgo), type SockaddrNetlink struct +pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-386-cgo), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-386-cgo), type SocketControlMessage struct +pkg syscall (linux-386-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-386-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-386-cgo), type Stat_t struct +pkg syscall (linux-386-cgo), type Stat_t struct, Atim Timespec +pkg syscall (linux-386-cgo), type Stat_t struct, Blksize int32 +pkg syscall (linux-386-cgo), type Stat_t struct, Blocks int64 +pkg syscall (linux-386-cgo), type Stat_t struct, Ctim Timespec +pkg syscall (linux-386-cgo), type Stat_t struct, Dev uint64 +pkg syscall (linux-386-cgo), type Stat_t struct, Gid uint32 +pkg syscall (linux-386-cgo), type Stat_t struct, Ino uint64 +pkg syscall (linux-386-cgo), type Stat_t struct, Mode uint32 +pkg syscall (linux-386-cgo), type Stat_t struct, Mtim Timespec +pkg syscall (linux-386-cgo), type Stat_t struct, Nlink uint32 +pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_1 [2]uint8 +pkg syscall (linux-386-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (linux-386-cgo), type Stat_t struct, Size int64 +pkg syscall (linux-386-cgo), type Stat_t struct, Uid uint32 +pkg syscall (linux-386-cgo), type Stat_t struct, X__pad1 uint16 +pkg syscall (linux-386-cgo), type Stat_t struct, X__pad2 uint16 +pkg syscall (linux-386-cgo), type Stat_t struct, X__st_ino uint32 +pkg syscall (linux-386-cgo), type Statfs_t struct +pkg syscall (linux-386-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-386-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-386-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-386-cgo), type Statfs_t struct, Bsize int32 +pkg syscall (linux-386-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-386-cgo), type Statfs_t struct, Files uint64 +pkg syscall (linux-386-cgo), type Statfs_t struct, Flags int32 +pkg syscall (linux-386-cgo), type Statfs_t struct, Frsize int32 +pkg syscall (linux-386-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-386-cgo), type Statfs_t struct, Namelen int32 +pkg syscall (linux-386-cgo), type Statfs_t struct, Spare [4]int32 +pkg syscall (linux-386-cgo), type Statfs_t struct, Type int32 +pkg syscall (linux-386-cgo), type SysProcAttr struct, Chroot string +pkg syscall (linux-386-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-386-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-386-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-386-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (linux-386-cgo), type Sysinfo_t struct +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Bufferram uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Freehigh uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Freeram uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Freeswap uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Loads [3]uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Sharedram uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Totalhigh uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Totalram uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Totalswap uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, Uptime int32 +pkg syscall (linux-386-cgo), type Sysinfo_t struct, X_f [8]int8 +pkg syscall (linux-386-cgo), type Termios struct +pkg syscall (linux-386-cgo), type Termios struct, Cc [32]uint8 +pkg syscall (linux-386-cgo), type Termios struct, Cflag uint32 +pkg syscall (linux-386-cgo), type Termios struct, Iflag uint32 +pkg syscall (linux-386-cgo), type Termios struct, Ispeed uint32 +pkg syscall (linux-386-cgo), type Termios struct, Lflag uint32 +pkg syscall (linux-386-cgo), type Termios struct, Line uint8 +pkg syscall (linux-386-cgo), type Termios struct, Oflag uint32 +pkg syscall (linux-386-cgo), type Termios struct, Ospeed uint32 +pkg syscall (linux-386-cgo), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-386-cgo), type Time_t int32 +pkg syscall (linux-386-cgo), type Timespec struct, Nsec int32 +pkg syscall (linux-386-cgo), type Timespec struct, Sec int32 +pkg syscall (linux-386-cgo), type Timeval struct, Sec int32 +pkg syscall (linux-386-cgo), type Timeval struct, Usec int32 +pkg syscall (linux-386-cgo), type Timex struct +pkg syscall (linux-386-cgo), type Timex struct, Calcnt int32 +pkg syscall (linux-386-cgo), type Timex struct, Constant int32 +pkg syscall (linux-386-cgo), type Timex struct, Errcnt int32 +pkg syscall (linux-386-cgo), type Timex struct, Esterror int32 +pkg syscall (linux-386-cgo), type Timex struct, Freq int32 +pkg syscall (linux-386-cgo), type Timex struct, Jitcnt int32 +pkg syscall (linux-386-cgo), type Timex struct, Jitter int32 +pkg syscall (linux-386-cgo), type Timex struct, Maxerror int32 +pkg syscall (linux-386-cgo), type Timex struct, Modes uint32 +pkg syscall (linux-386-cgo), type Timex struct, Offset int32 +pkg syscall (linux-386-cgo), type Timex struct, Pad_cgo_0 [44]uint8 +pkg syscall (linux-386-cgo), type Timex struct, Ppsfreq int32 +pkg syscall (linux-386-cgo), type Timex struct, Precision int32 +pkg syscall (linux-386-cgo), type Timex struct, Shift int32 +pkg syscall (linux-386-cgo), type Timex struct, Stabil int32 +pkg syscall (linux-386-cgo), type Timex struct, Status int32 +pkg syscall (linux-386-cgo), type Timex struct, Stbcnt int32 +pkg syscall (linux-386-cgo), type Timex struct, Tai int32 +pkg syscall (linux-386-cgo), type Timex struct, Tick int32 +pkg syscall (linux-386-cgo), type Timex struct, Time Timeval +pkg syscall (linux-386-cgo), type Timex struct, Tolerance int32 +pkg syscall (linux-386-cgo), type Tms struct +pkg syscall (linux-386-cgo), type Tms struct, Cstime int32 +pkg syscall (linux-386-cgo), type Tms struct, Cutime int32 +pkg syscall (linux-386-cgo), type Tms struct, Stime int32 +pkg syscall (linux-386-cgo), type Tms struct, Utime int32 +pkg syscall (linux-386-cgo), type Ucred struct +pkg syscall (linux-386-cgo), type Ucred struct, Gid uint32 +pkg syscall (linux-386-cgo), type Ucred struct, Pid int32 +pkg syscall (linux-386-cgo), type Ucred struct, Uid uint32 +pkg syscall (linux-386-cgo), type Ustat_t struct +pkg syscall (linux-386-cgo), type Ustat_t struct, Fname [6]int8 +pkg syscall (linux-386-cgo), type Ustat_t struct, Fpack [6]int8 +pkg syscall (linux-386-cgo), type Ustat_t struct, Tfree int32 +pkg syscall (linux-386-cgo), type Ustat_t struct, Tinode uint32 +pkg syscall (linux-386-cgo), type Utimbuf struct +pkg syscall (linux-386-cgo), type Utimbuf struct, Actime int32 +pkg syscall (linux-386-cgo), type Utimbuf struct, Modtime int32 +pkg syscall (linux-386-cgo), type Utsname struct +pkg syscall (linux-386-cgo), type Utsname struct, Domainname [65]int8 +pkg syscall (linux-386-cgo), type Utsname struct, Machine [65]int8 +pkg syscall (linux-386-cgo), type Utsname struct, Nodename [65]int8 +pkg syscall (linux-386-cgo), type Utsname struct, Release [65]int8 +pkg syscall (linux-386-cgo), type Utsname struct, Sysname [65]int8 +pkg syscall (linux-386-cgo), type Utsname struct, Version [65]int8 +pkg syscall (linux-386-cgo), type WaitStatus uint32 +pkg syscall (linux-386-cgo), var Stderr int +pkg syscall (linux-386-cgo), var Stdin int +pkg syscall (linux-386-cgo), var Stdout int +pkg syscall (linux-amd64), const AF_ALG ideal-int +pkg syscall (linux-amd64), const AF_APPLETALK ideal-int +pkg syscall (linux-amd64), const AF_ASH ideal-int +pkg syscall (linux-amd64), const AF_ATMPVC ideal-int +pkg syscall (linux-amd64), const AF_ATMSVC ideal-int +pkg syscall (linux-amd64), const AF_AX25 ideal-int +pkg syscall (linux-amd64), const AF_BLUETOOTH ideal-int +pkg syscall (linux-amd64), const AF_BRIDGE ideal-int +pkg syscall (linux-amd64), const AF_CAIF ideal-int +pkg syscall (linux-amd64), const AF_CAN ideal-int +pkg syscall (linux-amd64), const AF_DECnet ideal-int +pkg syscall (linux-amd64), const AF_ECONET ideal-int +pkg syscall (linux-amd64), const AF_FILE ideal-int +pkg syscall (linux-amd64), const AF_IEEE802154 ideal-int +pkg syscall (linux-amd64), const AF_IPX ideal-int +pkg syscall (linux-amd64), const AF_IRDA ideal-int +pkg syscall (linux-amd64), const AF_ISDN ideal-int +pkg syscall (linux-amd64), const AF_IUCV ideal-int +pkg syscall (linux-amd64), const AF_KEY ideal-int +pkg syscall (linux-amd64), const AF_LLC ideal-int +pkg syscall (linux-amd64), const AF_LOCAL ideal-int +pkg syscall (linux-amd64), const AF_MAX ideal-int +pkg syscall (linux-amd64), const AF_NETBEUI ideal-int +pkg syscall (linux-amd64), const AF_NETLINK ideal-int +pkg syscall (linux-amd64), const AF_NETROM ideal-int +pkg syscall (linux-amd64), const AF_PACKET ideal-int +pkg syscall (linux-amd64), const AF_PHONET ideal-int +pkg syscall (linux-amd64), const AF_PPPOX ideal-int +pkg syscall (linux-amd64), const AF_RDS ideal-int +pkg syscall (linux-amd64), const AF_ROSE ideal-int +pkg syscall (linux-amd64), const AF_ROUTE ideal-int +pkg syscall (linux-amd64), const AF_RXRPC ideal-int +pkg syscall (linux-amd64), const AF_SECURITY ideal-int +pkg syscall (linux-amd64), const AF_SNA ideal-int +pkg syscall (linux-amd64), const AF_TIPC ideal-int +pkg syscall (linux-amd64), const AF_WANPIPE ideal-int +pkg syscall (linux-amd64), const AF_X25 ideal-int +pkg syscall (linux-amd64), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-amd64), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-amd64), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-amd64), const ARPHRD_ASH ideal-int +pkg syscall (linux-amd64), const ARPHRD_ATM ideal-int +pkg syscall (linux-amd64), const ARPHRD_AX25 ideal-int +pkg syscall (linux-amd64), const ARPHRD_BIF ideal-int +pkg syscall (linux-amd64), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-amd64), const ARPHRD_CISCO ideal-int +pkg syscall (linux-amd64), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-amd64), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-amd64), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-amd64), const ARPHRD_DLCI ideal-int +pkg syscall (linux-amd64), const ARPHRD_ECONET ideal-int +pkg syscall (linux-amd64), const ARPHRD_EETHER ideal-int +pkg syscall (linux-amd64), const ARPHRD_ETHER ideal-int +pkg syscall (linux-amd64), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-amd64), const ARPHRD_FCAL ideal-int +pkg syscall (linux-amd64), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-amd64), const ARPHRD_FCPL ideal-int +pkg syscall (linux-amd64), const ARPHRD_FCPP ideal-int +pkg syscall (linux-amd64), const ARPHRD_FDDI ideal-int +pkg syscall (linux-amd64), const ARPHRD_FRAD ideal-int +pkg syscall (linux-amd64), const ARPHRD_HDLC ideal-int +pkg syscall (linux-amd64), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-amd64), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-amd64), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-amd64), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-amd64), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-amd64), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-amd64), const ARPHRD_IRDA ideal-int +pkg syscall (linux-amd64), const ARPHRD_LAPB ideal-int +pkg syscall (linux-amd64), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-amd64), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-amd64), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-amd64), const ARPHRD_NETROM ideal-int +pkg syscall (linux-amd64), const ARPHRD_NONE ideal-int +pkg syscall (linux-amd64), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-amd64), const ARPHRD_PPP ideal-int +pkg syscall (linux-amd64), const ARPHRD_PRONET ideal-int +pkg syscall (linux-amd64), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-amd64), const ARPHRD_ROSE ideal-int +pkg syscall (linux-amd64), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-amd64), const ARPHRD_SIT ideal-int +pkg syscall (linux-amd64), const ARPHRD_SKIP ideal-int +pkg syscall (linux-amd64), const ARPHRD_SLIP ideal-int +pkg syscall (linux-amd64), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-amd64), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-amd64), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-amd64), const ARPHRD_VOID ideal-int +pkg syscall (linux-amd64), const ARPHRD_X25 ideal-int +pkg syscall (linux-amd64), const B0 ideal-int +pkg syscall (linux-amd64), const B1000000 ideal-int +pkg syscall (linux-amd64), const B110 ideal-int +pkg syscall (linux-amd64), const B115200 ideal-int +pkg syscall (linux-amd64), const B1152000 ideal-int +pkg syscall (linux-amd64), const B1200 ideal-int +pkg syscall (linux-amd64), const B134 ideal-int +pkg syscall (linux-amd64), const B150 ideal-int +pkg syscall (linux-amd64), const B1500000 ideal-int +pkg syscall (linux-amd64), const B1800 ideal-int +pkg syscall (linux-amd64), const B19200 ideal-int +pkg syscall (linux-amd64), const B200 ideal-int +pkg syscall (linux-amd64), const B2000000 ideal-int +pkg syscall (linux-amd64), const B230400 ideal-int +pkg syscall (linux-amd64), const B2400 ideal-int +pkg syscall (linux-amd64), const B2500000 ideal-int +pkg syscall (linux-amd64), const B300 ideal-int +pkg syscall (linux-amd64), const B3000000 ideal-int +pkg syscall (linux-amd64), const B3500000 ideal-int +pkg syscall (linux-amd64), const B38400 ideal-int +pkg syscall (linux-amd64), const B4000000 ideal-int +pkg syscall (linux-amd64), const B460800 ideal-int +pkg syscall (linux-amd64), const B4800 ideal-int +pkg syscall (linux-amd64), const B50 ideal-int +pkg syscall (linux-amd64), const B500000 ideal-int +pkg syscall (linux-amd64), const B57600 ideal-int +pkg syscall (linux-amd64), const B576000 ideal-int +pkg syscall (linux-amd64), const B600 ideal-int +pkg syscall (linux-amd64), const B75 ideal-int +pkg syscall (linux-amd64), const B921600 ideal-int +pkg syscall (linux-amd64), const B9600 ideal-int +pkg syscall (linux-amd64), const BPF_A ideal-int +pkg syscall (linux-amd64), const BPF_ABS ideal-int +pkg syscall (linux-amd64), const BPF_ADD ideal-int +pkg syscall (linux-amd64), const BPF_ALU ideal-int +pkg syscall (linux-amd64), const BPF_AND ideal-int +pkg syscall (linux-amd64), const BPF_B ideal-int +pkg syscall (linux-amd64), const BPF_DIV ideal-int +pkg syscall (linux-amd64), const BPF_H ideal-int +pkg syscall (linux-amd64), const BPF_IMM ideal-int +pkg syscall (linux-amd64), const BPF_IND ideal-int +pkg syscall (linux-amd64), const BPF_JA ideal-int +pkg syscall (linux-amd64), const BPF_JEQ ideal-int +pkg syscall (linux-amd64), const BPF_JGE ideal-int +pkg syscall (linux-amd64), const BPF_JGT ideal-int +pkg syscall (linux-amd64), const BPF_JMP ideal-int +pkg syscall (linux-amd64), const BPF_JSET ideal-int +pkg syscall (linux-amd64), const BPF_K ideal-int +pkg syscall (linux-amd64), const BPF_LD ideal-int +pkg syscall (linux-amd64), const BPF_LDX ideal-int +pkg syscall (linux-amd64), const BPF_LEN ideal-int +pkg syscall (linux-amd64), const BPF_LSH ideal-int +pkg syscall (linux-amd64), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-amd64), const BPF_MAXINSNS ideal-int +pkg syscall (linux-amd64), const BPF_MEM ideal-int +pkg syscall (linux-amd64), const BPF_MEMWORDS ideal-int +pkg syscall (linux-amd64), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-amd64), const BPF_MISC ideal-int +pkg syscall (linux-amd64), const BPF_MSH ideal-int +pkg syscall (linux-amd64), const BPF_MUL ideal-int +pkg syscall (linux-amd64), const BPF_NEG ideal-int +pkg syscall (linux-amd64), const BPF_OR ideal-int +pkg syscall (linux-amd64), const BPF_RET ideal-int +pkg syscall (linux-amd64), const BPF_RSH ideal-int +pkg syscall (linux-amd64), const BPF_ST ideal-int +pkg syscall (linux-amd64), const BPF_STX ideal-int +pkg syscall (linux-amd64), const BPF_SUB ideal-int +pkg syscall (linux-amd64), const BPF_TAX ideal-int +pkg syscall (linux-amd64), const BPF_TXA ideal-int +pkg syscall (linux-amd64), const BPF_W ideal-int +pkg syscall (linux-amd64), const BPF_X ideal-int +pkg syscall (linux-amd64), const BRKINT ideal-int +pkg syscall (linux-amd64), const CLOCAL ideal-int +pkg syscall (linux-amd64), const CREAD ideal-int +pkg syscall (linux-amd64), const CS5 ideal-int +pkg syscall (linux-amd64), const CS6 ideal-int +pkg syscall (linux-amd64), const CS7 ideal-int +pkg syscall (linux-amd64), const CS8 ideal-int +pkg syscall (linux-amd64), const CSIZE ideal-int +pkg syscall (linux-amd64), const CSTOPB ideal-int +pkg syscall (linux-amd64), const DT_BLK ideal-int +pkg syscall (linux-amd64), const DT_CHR ideal-int +pkg syscall (linux-amd64), const DT_DIR ideal-int +pkg syscall (linux-amd64), const DT_FIFO ideal-int +pkg syscall (linux-amd64), const DT_LNK ideal-int +pkg syscall (linux-amd64), const DT_REG ideal-int +pkg syscall (linux-amd64), const DT_SOCK ideal-int +pkg syscall (linux-amd64), const DT_UNKNOWN ideal-int +pkg syscall (linux-amd64), const DT_WHT ideal-int +pkg syscall (linux-amd64), const EADV Errno +pkg syscall (linux-amd64), const EBADE Errno +pkg syscall (linux-amd64), const EBADFD Errno +pkg syscall (linux-amd64), const EBADMSG Errno +pkg syscall (linux-amd64), const EBADR Errno +pkg syscall (linux-amd64), const EBADRQC Errno +pkg syscall (linux-amd64), const EBADSLT Errno +pkg syscall (linux-amd64), const EBFONT Errno +pkg syscall (linux-amd64), const ECHO ideal-int +pkg syscall (linux-amd64), const ECHOCTL ideal-int +pkg syscall (linux-amd64), const ECHOE ideal-int +pkg syscall (linux-amd64), const ECHOK ideal-int +pkg syscall (linux-amd64), const ECHOKE ideal-int +pkg syscall (linux-amd64), const ECHONL ideal-int +pkg syscall (linux-amd64), const ECHOPRT ideal-int +pkg syscall (linux-amd64), const ECHRNG Errno +pkg syscall (linux-amd64), const ECOMM Errno +pkg syscall (linux-amd64), const EDEADLOCK Errno +pkg syscall (linux-amd64), const EDOTDOT Errno +pkg syscall (linux-amd64), const EISNAM Errno +pkg syscall (linux-amd64), const EKEYEXPIRED Errno +pkg syscall (linux-amd64), const EKEYREJECTED Errno +pkg syscall (linux-amd64), const EKEYREVOKED Errno +pkg syscall (linux-amd64), const EL2HLT Errno +pkg syscall (linux-amd64), const EL2NSYNC Errno +pkg syscall (linux-amd64), const EL3HLT Errno +pkg syscall (linux-amd64), const EL3RST Errno +pkg syscall (linux-amd64), const ELIBACC Errno +pkg syscall (linux-amd64), const ELIBBAD Errno +pkg syscall (linux-amd64), const ELIBEXEC Errno +pkg syscall (linux-amd64), const ELIBMAX Errno +pkg syscall (linux-amd64), const ELIBSCN Errno +pkg syscall (linux-amd64), const ELNRNG Errno +pkg syscall (linux-amd64), const EMEDIUMTYPE Errno +pkg syscall (linux-amd64), const EMULTIHOP Errno +pkg syscall (linux-amd64), const ENAVAIL Errno +pkg syscall (linux-amd64), const ENOANO Errno +pkg syscall (linux-amd64), const ENOCSI Errno +pkg syscall (linux-amd64), const ENODATA Errno +pkg syscall (linux-amd64), const ENOKEY Errno +pkg syscall (linux-amd64), const ENOLINK Errno +pkg syscall (linux-amd64), const ENOMEDIUM Errno +pkg syscall (linux-amd64), const ENONET Errno +pkg syscall (linux-amd64), const ENOPKG Errno +pkg syscall (linux-amd64), const ENOSR Errno +pkg syscall (linux-amd64), const ENOSTR Errno +pkg syscall (linux-amd64), const ENOTNAM Errno +pkg syscall (linux-amd64), const ENOTRECOVERABLE Errno +pkg syscall (linux-amd64), const ENOTUNIQ Errno +pkg syscall (linux-amd64), const EOWNERDEAD Errno +pkg syscall (linux-amd64), const EPOLLERR ideal-int +pkg syscall (linux-amd64), const EPOLLET ideal-int +pkg syscall (linux-amd64), const EPOLLHUP ideal-int +pkg syscall (linux-amd64), const EPOLLIN ideal-int +pkg syscall (linux-amd64), const EPOLLMSG ideal-int +pkg syscall (linux-amd64), const EPOLLONESHOT ideal-int +pkg syscall (linux-amd64), const EPOLLOUT ideal-int +pkg syscall (linux-amd64), const EPOLLPRI ideal-int +pkg syscall (linux-amd64), const EPOLLRDBAND ideal-int +pkg syscall (linux-amd64), const EPOLLRDHUP ideal-int +pkg syscall (linux-amd64), const EPOLLRDNORM ideal-int +pkg syscall (linux-amd64), const EPOLLWRBAND ideal-int +pkg syscall (linux-amd64), const EPOLLWRNORM ideal-int +pkg syscall (linux-amd64), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-amd64), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-amd64), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-amd64), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-amd64), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-amd64), const EPROTO Errno +pkg syscall (linux-amd64), const EREMCHG Errno +pkg syscall (linux-amd64), const EREMOTEIO Errno +pkg syscall (linux-amd64), const ERESTART Errno +pkg syscall (linux-amd64), const ERFKILL Errno +pkg syscall (linux-amd64), const ESRMNT Errno +pkg syscall (linux-amd64), const ESTRPIPE Errno +pkg syscall (linux-amd64), const ETH_P_1588 ideal-int +pkg syscall (linux-amd64), const ETH_P_8021Q ideal-int +pkg syscall (linux-amd64), const ETH_P_802_2 ideal-int +pkg syscall (linux-amd64), const ETH_P_802_3 ideal-int +pkg syscall (linux-amd64), const ETH_P_AARP ideal-int +pkg syscall (linux-amd64), const ETH_P_ALL ideal-int +pkg syscall (linux-amd64), const ETH_P_AOE ideal-int +pkg syscall (linux-amd64), const ETH_P_ARCNET ideal-int +pkg syscall (linux-amd64), const ETH_P_ARP ideal-int +pkg syscall (linux-amd64), const ETH_P_ATALK ideal-int +pkg syscall (linux-amd64), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-amd64), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-amd64), const ETH_P_AX25 ideal-int +pkg syscall (linux-amd64), const ETH_P_BPQ ideal-int +pkg syscall (linux-amd64), const ETH_P_CAIF ideal-int +pkg syscall (linux-amd64), const ETH_P_CAN ideal-int +pkg syscall (linux-amd64), const ETH_P_CONTROL ideal-int +pkg syscall (linux-amd64), const ETH_P_CUST ideal-int +pkg syscall (linux-amd64), const ETH_P_DDCMP ideal-int +pkg syscall (linux-amd64), const ETH_P_DEC ideal-int +pkg syscall (linux-amd64), const ETH_P_DIAG ideal-int +pkg syscall (linux-amd64), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-amd64), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-amd64), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-amd64), const ETH_P_DSA ideal-int +pkg syscall (linux-amd64), const ETH_P_ECONET ideal-int +pkg syscall (linux-amd64), const ETH_P_EDSA ideal-int +pkg syscall (linux-amd64), const ETH_P_FCOE ideal-int +pkg syscall (linux-amd64), const ETH_P_FIP ideal-int +pkg syscall (linux-amd64), const ETH_P_HDLC ideal-int +pkg syscall (linux-amd64), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-amd64), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-amd64), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-amd64), const ETH_P_IP ideal-int +pkg syscall (linux-amd64), const ETH_P_IPV6 ideal-int +pkg syscall (linux-amd64), const ETH_P_IPX ideal-int +pkg syscall (linux-amd64), const ETH_P_IRDA ideal-int +pkg syscall (linux-amd64), const ETH_P_LAT ideal-int +pkg syscall (linux-amd64), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-amd64), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-amd64), const ETH_P_LOOP ideal-int +pkg syscall (linux-amd64), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-amd64), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-amd64), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-amd64), const ETH_P_PAE ideal-int +pkg syscall (linux-amd64), const ETH_P_PAUSE ideal-int +pkg syscall (linux-amd64), const ETH_P_PHONET ideal-int +pkg syscall (linux-amd64), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-amd64), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-amd64), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-amd64), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-amd64), const ETH_P_PUP ideal-int +pkg syscall (linux-amd64), const ETH_P_PUPAT ideal-int +pkg syscall (linux-amd64), const ETH_P_RARP ideal-int +pkg syscall (linux-amd64), const ETH_P_SCA ideal-int +pkg syscall (linux-amd64), const ETH_P_SLOW ideal-int +pkg syscall (linux-amd64), const ETH_P_SNAP ideal-int +pkg syscall (linux-amd64), const ETH_P_TEB ideal-int +pkg syscall (linux-amd64), const ETH_P_TIPC ideal-int +pkg syscall (linux-amd64), const ETH_P_TRAILER ideal-int +pkg syscall (linux-amd64), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-amd64), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-amd64), const ETH_P_WCCP ideal-int +pkg syscall (linux-amd64), const ETH_P_X25 ideal-int +pkg syscall (linux-amd64), const ETIME Errno +pkg syscall (linux-amd64), const EUCLEAN Errno +pkg syscall (linux-amd64), const EUNATCH Errno +pkg syscall (linux-amd64), const EXFULL Errno +pkg syscall (linux-amd64), const FD_CLOEXEC ideal-int +pkg syscall (linux-amd64), const FD_SETSIZE ideal-int +pkg syscall (linux-amd64), const FLUSHO ideal-int +pkg syscall (linux-amd64), const F_DUPFD ideal-int +pkg syscall (linux-amd64), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-amd64), const F_EXLCK ideal-int +pkg syscall (linux-amd64), const F_GETFD ideal-int +pkg syscall (linux-amd64), const F_GETFL ideal-int +pkg syscall (linux-amd64), const F_GETLEASE ideal-int +pkg syscall (linux-amd64), const F_GETLK ideal-int +pkg syscall (linux-amd64), const F_GETLK64 ideal-int +pkg syscall (linux-amd64), const F_GETOWN ideal-int +pkg syscall (linux-amd64), const F_GETOWN_EX ideal-int +pkg syscall (linux-amd64), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-amd64), const F_GETSIG ideal-int +pkg syscall (linux-amd64), const F_LOCK ideal-int +pkg syscall (linux-amd64), const F_NOTIFY ideal-int +pkg syscall (linux-amd64), const F_OK ideal-int +pkg syscall (linux-amd64), const F_RDLCK ideal-int +pkg syscall (linux-amd64), const F_SETFD ideal-int +pkg syscall (linux-amd64), const F_SETFL ideal-int +pkg syscall (linux-amd64), const F_SETLEASE ideal-int +pkg syscall (linux-amd64), const F_SETLK ideal-int +pkg syscall (linux-amd64), const F_SETLK64 ideal-int +pkg syscall (linux-amd64), const F_SETLKW ideal-int +pkg syscall (linux-amd64), const F_SETLKW64 ideal-int +pkg syscall (linux-amd64), const F_SETOWN ideal-int +pkg syscall (linux-amd64), const F_SETOWN_EX ideal-int +pkg syscall (linux-amd64), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-amd64), const F_SETSIG ideal-int +pkg syscall (linux-amd64), const F_SHLCK ideal-int +pkg syscall (linux-amd64), const F_TEST ideal-int +pkg syscall (linux-amd64), const F_TLOCK ideal-int +pkg syscall (linux-amd64), const F_ULOCK ideal-int +pkg syscall (linux-amd64), const F_UNLCK ideal-int +pkg syscall (linux-amd64), const F_WRLCK ideal-int +pkg syscall (linux-amd64), const HUPCL ideal-int +pkg syscall (linux-amd64), const ICANON ideal-int +pkg syscall (linux-amd64), const ICRNL ideal-int +pkg syscall (linux-amd64), const IEXTEN ideal-int +pkg syscall (linux-amd64), const IFA_ADDRESS ideal-int +pkg syscall (linux-amd64), const IFA_ANYCAST ideal-int +pkg syscall (linux-amd64), const IFA_BROADCAST ideal-int +pkg syscall (linux-amd64), const IFA_CACHEINFO ideal-int +pkg syscall (linux-amd64), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-amd64), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-amd64), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-amd64), const IFA_F_NODAD ideal-int +pkg syscall (linux-amd64), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-amd64), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-amd64), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-amd64), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-amd64), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-amd64), const IFA_LABEL ideal-int +pkg syscall (linux-amd64), const IFA_LOCAL ideal-int +pkg syscall (linux-amd64), const IFA_MAX ideal-int +pkg syscall (linux-amd64), const IFA_MULTICAST ideal-int +pkg syscall (linux-amd64), const IFA_UNSPEC ideal-int +pkg syscall (linux-amd64), const IFF_ALLMULTI ideal-int +pkg syscall (linux-amd64), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-amd64), const IFF_DEBUG ideal-int +pkg syscall (linux-amd64), const IFF_DYNAMIC ideal-int +pkg syscall (linux-amd64), const IFF_MASTER ideal-int +pkg syscall (linux-amd64), const IFF_NOARP ideal-int +pkg syscall (linux-amd64), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-amd64), const IFF_NO_PI ideal-int +pkg syscall (linux-amd64), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-amd64), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-amd64), const IFF_PORTSEL ideal-int +pkg syscall (linux-amd64), const IFF_PROMISC ideal-int +pkg syscall (linux-amd64), const IFF_RUNNING ideal-int +pkg syscall (linux-amd64), const IFF_SLAVE ideal-int +pkg syscall (linux-amd64), const IFF_TAP ideal-int +pkg syscall (linux-amd64), const IFF_TUN ideal-int +pkg syscall (linux-amd64), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-amd64), const IFF_VNET_HDR ideal-int +pkg syscall (linux-amd64), const IFLA_ADDRESS ideal-int +pkg syscall (linux-amd64), const IFLA_BROADCAST ideal-int +pkg syscall (linux-amd64), const IFLA_COST ideal-int +pkg syscall (linux-amd64), const IFLA_IFALIAS ideal-int +pkg syscall (linux-amd64), const IFLA_IFNAME ideal-int +pkg syscall (linux-amd64), const IFLA_LINK ideal-int +pkg syscall (linux-amd64), const IFLA_LINKINFO ideal-int +pkg syscall (linux-amd64), const IFLA_LINKMODE ideal-int +pkg syscall (linux-amd64), const IFLA_MAP ideal-int +pkg syscall (linux-amd64), const IFLA_MASTER ideal-int +pkg syscall (linux-amd64), const IFLA_MAX ideal-int +pkg syscall (linux-amd64), const IFLA_MTU ideal-int +pkg syscall (linux-amd64), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-amd64), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-amd64), const IFLA_PRIORITY ideal-int +pkg syscall (linux-amd64), const IFLA_PROTINFO ideal-int +pkg syscall (linux-amd64), const IFLA_QDISC ideal-int +pkg syscall (linux-amd64), const IFLA_STATS ideal-int +pkg syscall (linux-amd64), const IFLA_TXQLEN ideal-int +pkg syscall (linux-amd64), const IFLA_UNSPEC ideal-int +pkg syscall (linux-amd64), const IFLA_WEIGHT ideal-int +pkg syscall (linux-amd64), const IFLA_WIRELESS ideal-int +pkg syscall (linux-amd64), const IFNAMSIZ ideal-int +pkg syscall (linux-amd64), const IGNBRK ideal-int +pkg syscall (linux-amd64), const IGNCR ideal-int +pkg syscall (linux-amd64), const IGNPAR ideal-int +pkg syscall (linux-amd64), const IMAXBEL ideal-int +pkg syscall (linux-amd64), const INLCR ideal-int +pkg syscall (linux-amd64), const INPCK ideal-int +pkg syscall (linux-amd64), const IN_ACCESS ideal-int +pkg syscall (linux-amd64), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-amd64), const IN_ATTRIB ideal-int +pkg syscall (linux-amd64), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-amd64), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-amd64), const IN_CLASSA_NET ideal-int +pkg syscall (linux-amd64), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-amd64), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-amd64), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-amd64), const IN_CLASSB_NET ideal-int +pkg syscall (linux-amd64), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-amd64), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-amd64), const IN_CLASSC_NET ideal-int +pkg syscall (linux-amd64), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-amd64), const IN_CLOEXEC ideal-int +pkg syscall (linux-amd64), const IN_CLOSE ideal-int +pkg syscall (linux-amd64), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-amd64), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-amd64), const IN_CREATE ideal-int +pkg syscall (linux-amd64), const IN_DELETE ideal-int +pkg syscall (linux-amd64), const IN_DELETE_SELF ideal-int +pkg syscall (linux-amd64), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-amd64), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-amd64), const IN_IGNORED ideal-int +pkg syscall (linux-amd64), const IN_ISDIR ideal-int +pkg syscall (linux-amd64), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-amd64), const IN_MASK_ADD ideal-int +pkg syscall (linux-amd64), const IN_MODIFY ideal-int +pkg syscall (linux-amd64), const IN_MOVE ideal-int +pkg syscall (linux-amd64), const IN_MOVED_FROM ideal-int +pkg syscall (linux-amd64), const IN_MOVED_TO ideal-int +pkg syscall (linux-amd64), const IN_MOVE_SELF ideal-int +pkg syscall (linux-amd64), const IN_NONBLOCK ideal-int +pkg syscall (linux-amd64), const IN_ONESHOT ideal-int +pkg syscall (linux-amd64), const IN_ONLYDIR ideal-int +pkg syscall (linux-amd64), const IN_OPEN ideal-int +pkg syscall (linux-amd64), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-amd64), const IN_UNMOUNT ideal-int +pkg syscall (linux-amd64), const IPPROTO_AH ideal-int +pkg syscall (linux-amd64), const IPPROTO_COMP ideal-int +pkg syscall (linux-amd64), const IPPROTO_DCCP ideal-int +pkg syscall (linux-amd64), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-amd64), const IPPROTO_EGP ideal-int +pkg syscall (linux-amd64), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-amd64), const IPPROTO_ESP ideal-int +pkg syscall (linux-amd64), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-amd64), const IPPROTO_GRE ideal-int +pkg syscall (linux-amd64), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-amd64), const IPPROTO_ICMP ideal-int +pkg syscall (linux-amd64), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-amd64), const IPPROTO_IDP ideal-int +pkg syscall (linux-amd64), const IPPROTO_IGMP ideal-int +pkg syscall (linux-amd64), const IPPROTO_IPIP ideal-int +pkg syscall (linux-amd64), const IPPROTO_MTP ideal-int +pkg syscall (linux-amd64), const IPPROTO_NONE ideal-int +pkg syscall (linux-amd64), const IPPROTO_PIM ideal-int +pkg syscall (linux-amd64), const IPPROTO_PUP ideal-int +pkg syscall (linux-amd64), const IPPROTO_RAW ideal-int +pkg syscall (linux-amd64), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-amd64), const IPPROTO_RSVP ideal-int +pkg syscall (linux-amd64), const IPPROTO_SCTP ideal-int +pkg syscall (linux-amd64), const IPPROTO_TP ideal-int +pkg syscall (linux-amd64), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-amd64), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-amd64), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-amd64), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-amd64), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-amd64), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-amd64), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-amd64), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-amd64), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-amd64), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-amd64), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-amd64), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-amd64), const IPV6_MTU ideal-int +pkg syscall (linux-amd64), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-amd64), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-amd64), const IPV6_PKTINFO ideal-int +pkg syscall (linux-amd64), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-amd64), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-amd64), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-amd64), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-amd64), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_RECVERR ideal-int +pkg syscall (linux-amd64), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-amd64), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-amd64), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-amd64), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-amd64), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-amd64), const IPV6_RTHDR ideal-int +pkg syscall (linux-amd64), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-amd64), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-amd64), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-amd64), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-amd64), const IPV6_TCLASS ideal-int +pkg syscall (linux-amd64), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-amd64), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-amd64), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-amd64), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-amd64), const IP_DF ideal-int +pkg syscall (linux-amd64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const IP_FREEBIND ideal-int +pkg syscall (linux-amd64), const IP_HDRINCL ideal-int +pkg syscall (linux-amd64), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-amd64), const IP_MAXPACKET ideal-int +pkg syscall (linux-amd64), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-amd64), const IP_MF ideal-int +pkg syscall (linux-amd64), const IP_MINTTL ideal-int +pkg syscall (linux-amd64), const IP_MSFILTER ideal-int +pkg syscall (linux-amd64), const IP_MSS ideal-int +pkg syscall (linux-amd64), const IP_MTU ideal-int +pkg syscall (linux-amd64), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-amd64), const IP_OFFMASK ideal-int +pkg syscall (linux-amd64), const IP_OPTIONS ideal-int +pkg syscall (linux-amd64), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-amd64), const IP_PASSSEC ideal-int +pkg syscall (linux-amd64), const IP_PKTINFO ideal-int +pkg syscall (linux-amd64), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-amd64), const IP_PMTUDISC ideal-int +pkg syscall (linux-amd64), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-amd64), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-amd64), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-amd64), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-amd64), const IP_RECVERR ideal-int +pkg syscall (linux-amd64), const IP_RECVOPTS ideal-int +pkg syscall (linux-amd64), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-amd64), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-amd64), const IP_RECVTOS ideal-int +pkg syscall (linux-amd64), const IP_RECVTTL ideal-int +pkg syscall (linux-amd64), const IP_RETOPTS ideal-int +pkg syscall (linux-amd64), const IP_RF ideal-int +pkg syscall (linux-amd64), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-amd64), const IP_TRANSPARENT ideal-int +pkg syscall (linux-amd64), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-amd64), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-amd64), const ISIG ideal-int +pkg syscall (linux-amd64), const ISTRIP ideal-int +pkg syscall (linux-amd64), const IUCLC ideal-int +pkg syscall (linux-amd64), const IUTF8 ideal-int +pkg syscall (linux-amd64), const IXANY ideal-int +pkg syscall (linux-amd64), const IXOFF ideal-int +pkg syscall (linux-amd64), const IXON ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-amd64), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-amd64), const LOCK_EX ideal-int +pkg syscall (linux-amd64), const LOCK_NB ideal-int +pkg syscall (linux-amd64), const LOCK_SH ideal-int +pkg syscall (linux-amd64), const LOCK_UN ideal-int +pkg syscall (linux-amd64), const MADV_DOFORK ideal-int +pkg syscall (linux-amd64), const MADV_DONTFORK ideal-int +pkg syscall (linux-amd64), const MADV_DONTNEED ideal-int +pkg syscall (linux-amd64), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-amd64), const MADV_HWPOISON ideal-int +pkg syscall (linux-amd64), const MADV_MERGEABLE ideal-int +pkg syscall (linux-amd64), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-amd64), const MADV_NORMAL ideal-int +pkg syscall (linux-amd64), const MADV_RANDOM ideal-int +pkg syscall (linux-amd64), const MADV_REMOVE ideal-int +pkg syscall (linux-amd64), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-amd64), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-amd64), const MADV_WILLNEED ideal-int +pkg syscall (linux-amd64), const MAP_32BIT ideal-int +pkg syscall (linux-amd64), const MAP_ANON ideal-int +pkg syscall (linux-amd64), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-amd64), const MAP_DENYWRITE ideal-int +pkg syscall (linux-amd64), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-amd64), const MAP_FILE ideal-int +pkg syscall (linux-amd64), const MAP_FIXED ideal-int +pkg syscall (linux-amd64), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-amd64), const MAP_HUGETLB ideal-int +pkg syscall (linux-amd64), const MAP_LOCKED ideal-int +pkg syscall (linux-amd64), const MAP_NONBLOCK ideal-int +pkg syscall (linux-amd64), const MAP_NORESERVE ideal-int +pkg syscall (linux-amd64), const MAP_POPULATE ideal-int +pkg syscall (linux-amd64), const MAP_PRIVATE ideal-int +pkg syscall (linux-amd64), const MAP_SHARED ideal-int +pkg syscall (linux-amd64), const MAP_STACK ideal-int +pkg syscall (linux-amd64), const MAP_TYPE ideal-int +pkg syscall (linux-amd64), const MCL_CURRENT ideal-int +pkg syscall (linux-amd64), const MCL_FUTURE ideal-int +pkg syscall (linux-amd64), const MNT_DETACH ideal-int +pkg syscall (linux-amd64), const MNT_EXPIRE ideal-int +pkg syscall (linux-amd64), const MNT_FORCE ideal-int +pkg syscall (linux-amd64), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-amd64), const MSG_CONFIRM ideal-int +pkg syscall (linux-amd64), const MSG_CTRUNC ideal-int +pkg syscall (linux-amd64), const MSG_DONTROUTE ideal-int +pkg syscall (linux-amd64), const MSG_DONTWAIT ideal-int +pkg syscall (linux-amd64), const MSG_EOR ideal-int +pkg syscall (linux-amd64), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-amd64), const MSG_FIN ideal-int +pkg syscall (linux-amd64), const MSG_MORE ideal-int +pkg syscall (linux-amd64), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-amd64), const MSG_OOB ideal-int +pkg syscall (linux-amd64), const MSG_PEEK ideal-int +pkg syscall (linux-amd64), const MSG_PROXY ideal-int +pkg syscall (linux-amd64), const MSG_RST ideal-int +pkg syscall (linux-amd64), const MSG_SYN ideal-int +pkg syscall (linux-amd64), const MSG_TRUNC ideal-int +pkg syscall (linux-amd64), const MSG_TRYHARD ideal-int +pkg syscall (linux-amd64), const MSG_WAITALL ideal-int +pkg syscall (linux-amd64), const MSG_WAITFORONE ideal-int +pkg syscall (linux-amd64), const MS_ACTIVE ideal-int +pkg syscall (linux-amd64), const MS_ASYNC ideal-int +pkg syscall (linux-amd64), const MS_BIND ideal-int +pkg syscall (linux-amd64), const MS_DIRSYNC ideal-int +pkg syscall (linux-amd64), const MS_INVALIDATE ideal-int +pkg syscall (linux-amd64), const MS_I_VERSION ideal-int +pkg syscall (linux-amd64), const MS_KERNMOUNT ideal-int +pkg syscall (linux-amd64), const MS_MANDLOCK ideal-int +pkg syscall (linux-amd64), const MS_MGC_MSK ideal-int +pkg syscall (linux-amd64), const MS_MGC_VAL ideal-int +pkg syscall (linux-amd64), const MS_MOVE ideal-int +pkg syscall (linux-amd64), const MS_NOATIME ideal-int +pkg syscall (linux-amd64), const MS_NODEV ideal-int +pkg syscall (linux-amd64), const MS_NODIRATIME ideal-int +pkg syscall (linux-amd64), const MS_NOEXEC ideal-int +pkg syscall (linux-amd64), const MS_NOSUID ideal-int +pkg syscall (linux-amd64), const MS_NOUSER ideal-int +pkg syscall (linux-amd64), const MS_POSIXACL ideal-int +pkg syscall (linux-amd64), const MS_PRIVATE ideal-int +pkg syscall (linux-amd64), const MS_RDONLY ideal-int +pkg syscall (linux-amd64), const MS_REC ideal-int +pkg syscall (linux-amd64), const MS_RELATIME ideal-int +pkg syscall (linux-amd64), const MS_REMOUNT ideal-int +pkg syscall (linux-amd64), const MS_RMT_MASK ideal-int +pkg syscall (linux-amd64), const MS_SHARED ideal-int +pkg syscall (linux-amd64), const MS_SILENT ideal-int +pkg syscall (linux-amd64), const MS_SLAVE ideal-int +pkg syscall (linux-amd64), const MS_STRICTATIME ideal-int +pkg syscall (linux-amd64), const MS_SYNC ideal-int +pkg syscall (linux-amd64), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-amd64), const MS_UNBINDABLE ideal-int +pkg syscall (linux-amd64), const NAME_MAX ideal-int +pkg syscall (linux-amd64), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const NETLINK_AUDIT ideal-int +pkg syscall (linux-amd64), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-amd64), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-amd64), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-amd64), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-amd64), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-amd64), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-amd64), const NETLINK_GENERIC ideal-int +pkg syscall (linux-amd64), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-amd64), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-amd64), const NETLINK_ISCSI ideal-int +pkg syscall (linux-amd64), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-amd64), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-amd64), const NETLINK_NFLOG ideal-int +pkg syscall (linux-amd64), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-amd64), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-amd64), const NETLINK_ROUTE ideal-int +pkg syscall (linux-amd64), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-amd64), const NETLINK_SELINUX ideal-int +pkg syscall (linux-amd64), const NETLINK_UNUSED ideal-int +pkg syscall (linux-amd64), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-amd64), const NETLINK_XFRM ideal-int +pkg syscall (linux-amd64), const NLA_ALIGNTO ideal-int +pkg syscall (linux-amd64), const NLA_F_NESTED ideal-int +pkg syscall (linux-amd64), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-amd64), const NLA_HDRLEN ideal-int +pkg syscall (linux-amd64), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-amd64), const NLMSG_DONE ideal-int +pkg syscall (linux-amd64), const NLMSG_ERROR ideal-int +pkg syscall (linux-amd64), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-amd64), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-amd64), const NLMSG_NOOP ideal-int +pkg syscall (linux-amd64), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-amd64), const NLM_F_ACK ideal-int +pkg syscall (linux-amd64), const NLM_F_APPEND ideal-int +pkg syscall (linux-amd64), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-amd64), const NLM_F_CREATE ideal-int +pkg syscall (linux-amd64), const NLM_F_DUMP ideal-int +pkg syscall (linux-amd64), const NLM_F_ECHO ideal-int +pkg syscall (linux-amd64), const NLM_F_EXCL ideal-int +pkg syscall (linux-amd64), const NLM_F_MATCH ideal-int +pkg syscall (linux-amd64), const NLM_F_MULTI ideal-int +pkg syscall (linux-amd64), const NLM_F_REPLACE ideal-int +pkg syscall (linux-amd64), const NLM_F_REQUEST ideal-int +pkg syscall (linux-amd64), const NLM_F_ROOT ideal-int +pkg syscall (linux-amd64), const NOFLSH ideal-int +pkg syscall (linux-amd64), const OCRNL ideal-int +pkg syscall (linux-amd64), const OFDEL ideal-int +pkg syscall (linux-amd64), const OFILL ideal-int +pkg syscall (linux-amd64), const OLCUC ideal-int +pkg syscall (linux-amd64), const ONLCR ideal-int +pkg syscall (linux-amd64), const ONLRET ideal-int +pkg syscall (linux-amd64), const ONOCR ideal-int +pkg syscall (linux-amd64), const OPOST ideal-int +pkg syscall (linux-amd64), const O_ACCMODE ideal-int +pkg syscall (linux-amd64), const O_DIRECT ideal-int +pkg syscall (linux-amd64), const O_DIRECTORY ideal-int +pkg syscall (linux-amd64), const O_DSYNC ideal-int +pkg syscall (linux-amd64), const O_FSYNC ideal-int +pkg syscall (linux-amd64), const O_LARGEFILE ideal-int +pkg syscall (linux-amd64), const O_NDELAY ideal-int +pkg syscall (linux-amd64), const O_NOATIME ideal-int +pkg syscall (linux-amd64), const O_NOFOLLOW ideal-int +pkg syscall (linux-amd64), const O_RSYNC ideal-int +pkg syscall (linux-amd64), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const PACKET_BROADCAST ideal-int +pkg syscall (linux-amd64), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-amd64), const PACKET_HOST ideal-int +pkg syscall (linux-amd64), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-amd64), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-amd64), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-amd64), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-amd64), const PACKET_MULTICAST ideal-int +pkg syscall (linux-amd64), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-amd64), const PACKET_OUTGOING ideal-int +pkg syscall (linux-amd64), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-amd64), const PACKET_RX_RING ideal-int +pkg syscall (linux-amd64), const PACKET_STATISTICS ideal-int +pkg syscall (linux-amd64), const PARENB ideal-int +pkg syscall (linux-amd64), const PARMRK ideal-int +pkg syscall (linux-amd64), const PARODD ideal-int +pkg syscall (linux-amd64), const PENDIN ideal-int +pkg syscall (linux-amd64), const PROT_EXEC ideal-int +pkg syscall (linux-amd64), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-amd64), const PROT_GROWSUP ideal-int +pkg syscall (linux-amd64), const PROT_NONE ideal-int +pkg syscall (linux-amd64), const PROT_READ ideal-int +pkg syscall (linux-amd64), const PROT_WRITE ideal-int +pkg syscall (linux-amd64), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-amd64), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-amd64), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-amd64), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-amd64), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-amd64), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-amd64), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-amd64), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-amd64), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-amd64), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-amd64), const PR_GET_FPEMU ideal-int +pkg syscall (linux-amd64), const PR_GET_FPEXC ideal-int +pkg syscall (linux-amd64), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-amd64), const PR_GET_NAME ideal-int +pkg syscall (linux-amd64), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-amd64), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-amd64), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-amd64), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-amd64), const PR_GET_TIMING ideal-int +pkg syscall (linux-amd64), const PR_GET_TSC ideal-int +pkg syscall (linux-amd64), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-amd64), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-amd64), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-amd64), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-amd64), const PR_SET_FPEMU ideal-int +pkg syscall (linux-amd64), const PR_SET_FPEXC ideal-int +pkg syscall (linux-amd64), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-amd64), const PR_SET_NAME ideal-int +pkg syscall (linux-amd64), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-amd64), const PR_SET_PTRACER ideal-int +pkg syscall (linux-amd64), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-amd64), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-amd64), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-amd64), const PR_SET_TIMING ideal-int +pkg syscall (linux-amd64), const PR_SET_TSC ideal-int +pkg syscall (linux-amd64), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-amd64), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-amd64), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-amd64), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-amd64), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-amd64), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-amd64), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-amd64), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-amd64), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-amd64), const PTRACE_ARCH_PRCTL ideal-int +pkg syscall (linux-amd64), const PTRACE_ATTACH ideal-int +pkg syscall (linux-amd64), const PTRACE_CONT ideal-int +pkg syscall (linux-amd64), const PTRACE_DETACH ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-amd64), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-amd64), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-amd64), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_GETFPXREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_GETREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-amd64), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-amd64), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-amd64), const PTRACE_KILL ideal-int +pkg syscall (linux-amd64), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-amd64), const PTRACE_O_MASK ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-amd64), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-amd64), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-amd64), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-amd64), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-amd64), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-amd64), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-amd64), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-amd64), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_SETFPXREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-amd64), const PTRACE_SETREGS ideal-int +pkg syscall (linux-amd64), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-amd64), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-amd64), const PTRACE_SET_THREAD_AREA ideal-int +pkg syscall (linux-amd64), const PTRACE_SINGLEBLOCK ideal-int +pkg syscall (linux-amd64), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-amd64), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-amd64), const PTRACE_SYSEMU ideal-int +pkg syscall (linux-amd64), const PTRACE_SYSEMU_SINGLESTEP ideal-int +pkg syscall (linux-amd64), const PTRACE_TRACEME ideal-int +pkg syscall (linux-amd64), const PathMax ideal-int +pkg syscall (linux-amd64), const RLIMIT_AS ideal-int +pkg syscall (linux-amd64), const RLIMIT_CORE ideal-int +pkg syscall (linux-amd64), const RLIMIT_CPU ideal-int +pkg syscall (linux-amd64), const RLIMIT_DATA ideal-int +pkg syscall (linux-amd64), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-amd64), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-amd64), const RLIMIT_STACK ideal-int +pkg syscall (linux-amd64), const RLIM_INFINITY ideal-int +pkg syscall (linux-amd64), const RTAX_ADVMSS ideal-int +pkg syscall (linux-amd64), const RTAX_CWND ideal-int +pkg syscall (linux-amd64), const RTAX_FEATURES ideal-int +pkg syscall (linux-amd64), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-amd64), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-amd64), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-amd64), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-amd64), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-amd64), const RTAX_INITCWND ideal-int +pkg syscall (linux-amd64), const RTAX_INITRWND ideal-int +pkg syscall (linux-amd64), const RTAX_LOCK ideal-int +pkg syscall (linux-amd64), const RTAX_MAX ideal-int +pkg syscall (linux-amd64), const RTAX_MTU ideal-int +pkg syscall (linux-amd64), const RTAX_REORDERING ideal-int +pkg syscall (linux-amd64), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-amd64), const RTAX_RTT ideal-int +pkg syscall (linux-amd64), const RTAX_RTTVAR ideal-int +pkg syscall (linux-amd64), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-amd64), const RTAX_UNSPEC ideal-int +pkg syscall (linux-amd64), const RTAX_WINDOW ideal-int +pkg syscall (linux-amd64), const RTA_ALIGNTO ideal-int +pkg syscall (linux-amd64), const RTA_CACHEINFO ideal-int +pkg syscall (linux-amd64), const RTA_DST ideal-int +pkg syscall (linux-amd64), const RTA_FLOW ideal-int +pkg syscall (linux-amd64), const RTA_GATEWAY ideal-int +pkg syscall (linux-amd64), const RTA_IIF ideal-int +pkg syscall (linux-amd64), const RTA_MAX ideal-int +pkg syscall (linux-amd64), const RTA_METRICS ideal-int +pkg syscall (linux-amd64), const RTA_MULTIPATH ideal-int +pkg syscall (linux-amd64), const RTA_OIF ideal-int +pkg syscall (linux-amd64), const RTA_PREFSRC ideal-int +pkg syscall (linux-amd64), const RTA_PRIORITY ideal-int +pkg syscall (linux-amd64), const RTA_SRC ideal-int +pkg syscall (linux-amd64), const RTA_TABLE ideal-int +pkg syscall (linux-amd64), const RTA_UNSPEC ideal-int +pkg syscall (linux-amd64), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-amd64), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-amd64), const RTCF_LOG ideal-int +pkg syscall (linux-amd64), const RTCF_MASQ ideal-int +pkg syscall (linux-amd64), const RTCF_NAT ideal-int +pkg syscall (linux-amd64), const RTCF_VALVE ideal-int +pkg syscall (linux-amd64), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-amd64), const RTF_ADDRCONF ideal-int +pkg syscall (linux-amd64), const RTF_ALLONLINK ideal-int +pkg syscall (linux-amd64), const RTF_BROADCAST ideal-int +pkg syscall (linux-amd64), const RTF_CACHE ideal-int +pkg syscall (linux-amd64), const RTF_DEFAULT ideal-int +pkg syscall (linux-amd64), const RTF_DYNAMIC ideal-int +pkg syscall (linux-amd64), const RTF_FLOW ideal-int +pkg syscall (linux-amd64), const RTF_GATEWAY ideal-int +pkg syscall (linux-amd64), const RTF_HOST ideal-int +pkg syscall (linux-amd64), const RTF_INTERFACE ideal-int +pkg syscall (linux-amd64), const RTF_IRTT ideal-int +pkg syscall (linux-amd64), const RTF_LINKRT ideal-int +pkg syscall (linux-amd64), const RTF_LOCAL ideal-int +pkg syscall (linux-amd64), const RTF_MODIFIED ideal-int +pkg syscall (linux-amd64), const RTF_MSS ideal-int +pkg syscall (linux-amd64), const RTF_MTU ideal-int +pkg syscall (linux-amd64), const RTF_MULTICAST ideal-int +pkg syscall (linux-amd64), const RTF_NAT ideal-int +pkg syscall (linux-amd64), const RTF_NOFORWARD ideal-int +pkg syscall (linux-amd64), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-amd64), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-amd64), const RTF_POLICY ideal-int +pkg syscall (linux-amd64), const RTF_REINSTATE ideal-int +pkg syscall (linux-amd64), const RTF_REJECT ideal-int +pkg syscall (linux-amd64), const RTF_STATIC ideal-int +pkg syscall (linux-amd64), const RTF_THROW ideal-int +pkg syscall (linux-amd64), const RTF_UP ideal-int +pkg syscall (linux-amd64), const RTF_WINDOW ideal-int +pkg syscall (linux-amd64), const RTF_XRESOLVE ideal-int +pkg syscall (linux-amd64), const RTM_BASE ideal-int +pkg syscall (linux-amd64), const RTM_DELACTION ideal-int +pkg syscall (linux-amd64), const RTM_DELADDR ideal-int +pkg syscall (linux-amd64), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-amd64), const RTM_DELLINK ideal-int +pkg syscall (linux-amd64), const RTM_DELNEIGH ideal-int +pkg syscall (linux-amd64), const RTM_DELQDISC ideal-int +pkg syscall (linux-amd64), const RTM_DELROUTE ideal-int +pkg syscall (linux-amd64), const RTM_DELRULE ideal-int +pkg syscall (linux-amd64), const RTM_DELTCLASS ideal-int +pkg syscall (linux-amd64), const RTM_DELTFILTER ideal-int +pkg syscall (linux-amd64), const RTM_F_CLONED ideal-int +pkg syscall (linux-amd64), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-amd64), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-amd64), const RTM_F_PREFIX ideal-int +pkg syscall (linux-amd64), const RTM_GETACTION ideal-int +pkg syscall (linux-amd64), const RTM_GETADDR ideal-int +pkg syscall (linux-amd64), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-amd64), const RTM_GETANYCAST ideal-int +pkg syscall (linux-amd64), const RTM_GETDCB ideal-int +pkg syscall (linux-amd64), const RTM_GETLINK ideal-int +pkg syscall (linux-amd64), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-amd64), const RTM_GETNEIGH ideal-int +pkg syscall (linux-amd64), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-amd64), const RTM_GETQDISC ideal-int +pkg syscall (linux-amd64), const RTM_GETROUTE ideal-int +pkg syscall (linux-amd64), const RTM_GETRULE ideal-int +pkg syscall (linux-amd64), const RTM_GETTCLASS ideal-int +pkg syscall (linux-amd64), const RTM_GETTFILTER ideal-int +pkg syscall (linux-amd64), const RTM_MAX ideal-int +pkg syscall (linux-amd64), const RTM_NEWACTION ideal-int +pkg syscall (linux-amd64), const RTM_NEWADDR ideal-int +pkg syscall (linux-amd64), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-amd64), const RTM_NEWLINK ideal-int +pkg syscall (linux-amd64), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-amd64), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-amd64), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-amd64), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-amd64), const RTM_NEWQDISC ideal-int +pkg syscall (linux-amd64), const RTM_NEWROUTE ideal-int +pkg syscall (linux-amd64), const RTM_NEWRULE ideal-int +pkg syscall (linux-amd64), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-amd64), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-amd64), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-amd64), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-amd64), const RTM_SETDCB ideal-int +pkg syscall (linux-amd64), const RTM_SETLINK ideal-int +pkg syscall (linux-amd64), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-amd64), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-amd64), const RTNH_F_DEAD ideal-int +pkg syscall (linux-amd64), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-amd64), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-amd64), const RTN_ANYCAST ideal-int +pkg syscall (linux-amd64), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-amd64), const RTN_BROADCAST ideal-int +pkg syscall (linux-amd64), const RTN_LOCAL ideal-int +pkg syscall (linux-amd64), const RTN_MAX ideal-int +pkg syscall (linux-amd64), const RTN_MULTICAST ideal-int +pkg syscall (linux-amd64), const RTN_NAT ideal-int +pkg syscall (linux-amd64), const RTN_PROHIBIT ideal-int +pkg syscall (linux-amd64), const RTN_THROW ideal-int +pkg syscall (linux-amd64), const RTN_UNICAST ideal-int +pkg syscall (linux-amd64), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-amd64), const RTN_UNSPEC ideal-int +pkg syscall (linux-amd64), const RTN_XRESOLVE ideal-int +pkg syscall (linux-amd64), const RTPROT_BIRD ideal-int +pkg syscall (linux-amd64), const RTPROT_BOOT ideal-int +pkg syscall (linux-amd64), const RTPROT_DHCP ideal-int +pkg syscall (linux-amd64), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-amd64), const RTPROT_GATED ideal-int +pkg syscall (linux-amd64), const RTPROT_KERNEL ideal-int +pkg syscall (linux-amd64), const RTPROT_MRT ideal-int +pkg syscall (linux-amd64), const RTPROT_NTK ideal-int +pkg syscall (linux-amd64), const RTPROT_RA ideal-int +pkg syscall (linux-amd64), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-amd64), const RTPROT_STATIC ideal-int +pkg syscall (linux-amd64), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-amd64), const RTPROT_XORP ideal-int +pkg syscall (linux-amd64), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-amd64), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-amd64), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-amd64), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-amd64), const RT_CLASS_MAX ideal-int +pkg syscall (linux-amd64), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-amd64), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-amd64), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-amd64), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-amd64), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-amd64), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-amd64), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-amd64), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-amd64), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-amd64), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-amd64), const RT_TABLE_MAX ideal-int +pkg syscall (linux-amd64), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-amd64), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-amd64), const RUSAGE_SELF ideal-int +pkg syscall (linux-amd64), const RUSAGE_THREAD ideal-int +pkg syscall (linux-amd64), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-amd64), const SCM_RIGHTS ideal-int +pkg syscall (linux-amd64), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-amd64), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-amd64), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-amd64), const SIGCHLD Signal +pkg syscall (linux-amd64), const SIGCLD Signal +pkg syscall (linux-amd64), const SIGCONT Signal +pkg syscall (linux-amd64), const SIGIO Signal +pkg syscall (linux-amd64), const SIGIOT Signal +pkg syscall (linux-amd64), const SIGPOLL Signal +pkg syscall (linux-amd64), const SIGPROF Signal +pkg syscall (linux-amd64), const SIGPWR Signal +pkg syscall (linux-amd64), const SIGSTKFLT Signal +pkg syscall (linux-amd64), const SIGSTOP Signal +pkg syscall (linux-amd64), const SIGSYS Signal +pkg syscall (linux-amd64), const SIGTSTP Signal +pkg syscall (linux-amd64), const SIGTTIN Signal +pkg syscall (linux-amd64), const SIGTTOU Signal +pkg syscall (linux-amd64), const SIGUNUSED Signal +pkg syscall (linux-amd64), const SIGURG Signal +pkg syscall (linux-amd64), const SIGUSR1 Signal +pkg syscall (linux-amd64), const SIGUSR2 Signal +pkg syscall (linux-amd64), const SIGVTALRM Signal +pkg syscall (linux-amd64), const SIGWINCH Signal +pkg syscall (linux-amd64), const SIGXCPU Signal +pkg syscall (linux-amd64), const SIGXFSZ Signal +pkg syscall (linux-amd64), const SIOCADDDLCI ideal-int +pkg syscall (linux-amd64), const SIOCADDMULTI ideal-int +pkg syscall (linux-amd64), const SIOCADDRT ideal-int +pkg syscall (linux-amd64), const SIOCATMARK ideal-int +pkg syscall (linux-amd64), const SIOCDARP ideal-int +pkg syscall (linux-amd64), const SIOCDELDLCI ideal-int +pkg syscall (linux-amd64), const SIOCDELMULTI ideal-int +pkg syscall (linux-amd64), const SIOCDELRT ideal-int +pkg syscall (linux-amd64), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-amd64), const SIOCDIFADDR ideal-int +pkg syscall (linux-amd64), const SIOCDRARP ideal-int +pkg syscall (linux-amd64), const SIOCGARP ideal-int +pkg syscall (linux-amd64), const SIOCGIFADDR ideal-int +pkg syscall (linux-amd64), const SIOCGIFBR ideal-int +pkg syscall (linux-amd64), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-amd64), const SIOCGIFCONF ideal-int +pkg syscall (linux-amd64), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-amd64), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-amd64), const SIOCGIFENCAP ideal-int +pkg syscall (linux-amd64), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-amd64), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-amd64), const SIOCGIFINDEX ideal-int +pkg syscall (linux-amd64), const SIOCGIFMAP ideal-int +pkg syscall (linux-amd64), const SIOCGIFMEM ideal-int +pkg syscall (linux-amd64), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-amd64), const SIOCGIFMTU ideal-int +pkg syscall (linux-amd64), const SIOCGIFNAME ideal-int +pkg syscall (linux-amd64), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-amd64), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-amd64), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-amd64), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-amd64), const SIOCGPGRP ideal-int +pkg syscall (linux-amd64), const SIOCGRARP ideal-int +pkg syscall (linux-amd64), const SIOCGSTAMP ideal-int +pkg syscall (linux-amd64), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-amd64), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-amd64), const SIOCRTMSG ideal-int +pkg syscall (linux-amd64), const SIOCSARP ideal-int +pkg syscall (linux-amd64), const SIOCSIFADDR ideal-int +pkg syscall (linux-amd64), const SIOCSIFBR ideal-int +pkg syscall (linux-amd64), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-amd64), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-amd64), const SIOCSIFENCAP ideal-int +pkg syscall (linux-amd64), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-amd64), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-amd64), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-amd64), const SIOCSIFLINK ideal-int +pkg syscall (linux-amd64), const SIOCSIFMAP ideal-int +pkg syscall (linux-amd64), const SIOCSIFMEM ideal-int +pkg syscall (linux-amd64), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-amd64), const SIOCSIFMTU ideal-int +pkg syscall (linux-amd64), const SIOCSIFNAME ideal-int +pkg syscall (linux-amd64), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-amd64), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-amd64), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-amd64), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-amd64), const SIOCSPGRP ideal-int +pkg syscall (linux-amd64), const SIOCSRARP ideal-int +pkg syscall (linux-amd64), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-amd64), const SOCK_DCCP ideal-int +pkg syscall (linux-amd64), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-amd64), const SOCK_PACKET ideal-int +pkg syscall (linux-amd64), const SOCK_RDM ideal-int +pkg syscall (linux-amd64), const SOL_AAL ideal-int +pkg syscall (linux-amd64), const SOL_ATM ideal-int +pkg syscall (linux-amd64), const SOL_DECNET ideal-int +pkg syscall (linux-amd64), const SOL_ICMPV6 ideal-int +pkg syscall (linux-amd64), const SOL_IP ideal-int +pkg syscall (linux-amd64), const SOL_IPV6 ideal-int +pkg syscall (linux-amd64), const SOL_IRDA ideal-int +pkg syscall (linux-amd64), const SOL_PACKET ideal-int +pkg syscall (linux-amd64), const SOL_RAW ideal-int +pkg syscall (linux-amd64), const SOL_TCP ideal-int +pkg syscall (linux-amd64), const SOL_X25 ideal-int +pkg syscall (linux-amd64), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-amd64), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-amd64), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-amd64), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-amd64), const SO_DEBUG ideal-int +pkg syscall (linux-amd64), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-amd64), const SO_DOMAIN ideal-int +pkg syscall (linux-amd64), const SO_ERROR ideal-int +pkg syscall (linux-amd64), const SO_MARK ideal-int +pkg syscall (linux-amd64), const SO_NO_CHECK ideal-int +pkg syscall (linux-amd64), const SO_OOBINLINE ideal-int +pkg syscall (linux-amd64), const SO_PASSCRED ideal-int +pkg syscall (linux-amd64), const SO_PASSSEC ideal-int +pkg syscall (linux-amd64), const SO_PEERCRED ideal-int +pkg syscall (linux-amd64), const SO_PEERNAME ideal-int +pkg syscall (linux-amd64), const SO_PEERSEC ideal-int +pkg syscall (linux-amd64), const SO_PRIORITY ideal-int +pkg syscall (linux-amd64), const SO_PROTOCOL ideal-int +pkg syscall (linux-amd64), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-amd64), const SO_RCVLOWAT ideal-int +pkg syscall (linux-amd64), const SO_RCVTIMEO ideal-int +pkg syscall (linux-amd64), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-amd64), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-amd64), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-amd64), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-amd64), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-amd64), const SO_SNDLOWAT ideal-int +pkg syscall (linux-amd64), const SO_SNDTIMEO ideal-int +pkg syscall (linux-amd64), const SO_TIMESTAMP ideal-int +pkg syscall (linux-amd64), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-amd64), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-amd64), const SO_TYPE ideal-int +pkg syscall (linux-amd64), const SYS_ACCEPT ideal-int +pkg syscall (linux-amd64), const SYS_ACCEPT4 ideal-int +pkg syscall (linux-amd64), const SYS_ACCESS ideal-int +pkg syscall (linux-amd64), const SYS_ACCT ideal-int +pkg syscall (linux-amd64), const SYS_ADD_KEY ideal-int +pkg syscall (linux-amd64), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-amd64), const SYS_AFS_SYSCALL ideal-int +pkg syscall (linux-amd64), const SYS_ALARM ideal-int +pkg syscall (linux-amd64), const SYS_ARCH_PRCTL ideal-int +pkg syscall (linux-amd64), const SYS_BIND ideal-int +pkg syscall (linux-amd64), const SYS_BRK ideal-int +pkg syscall (linux-amd64), const SYS_CAPGET ideal-int +pkg syscall (linux-amd64), const SYS_CAPSET ideal-int +pkg syscall (linux-amd64), const SYS_CHDIR ideal-int +pkg syscall (linux-amd64), const SYS_CHMOD ideal-int +pkg syscall (linux-amd64), const SYS_CHOWN ideal-int +pkg syscall (linux-amd64), const SYS_CHROOT ideal-int +pkg syscall (linux-amd64), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-amd64), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-amd64), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-amd64), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-amd64), const SYS_CLONE ideal-int +pkg syscall (linux-amd64), const SYS_CLOSE ideal-int +pkg syscall (linux-amd64), const SYS_CONNECT ideal-int +pkg syscall (linux-amd64), const SYS_CREAT ideal-int +pkg syscall (linux-amd64), const SYS_CREATE_MODULE ideal-int +pkg syscall (linux-amd64), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-amd64), const SYS_DUP ideal-int +pkg syscall (linux-amd64), const SYS_DUP2 ideal-int +pkg syscall (linux-amd64), const SYS_DUP3 ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_CTL_OLD ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-amd64), const SYS_EPOLL_WAIT_OLD ideal-int +pkg syscall (linux-amd64), const SYS_EVENTFD ideal-int +pkg syscall (linux-amd64), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-amd64), const SYS_EXECVE ideal-int +pkg syscall (linux-amd64), const SYS_EXIT ideal-int +pkg syscall (linux-amd64), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-amd64), const SYS_FACCESSAT ideal-int +pkg syscall (linux-amd64), const SYS_FADVISE64 ideal-int +pkg syscall (linux-amd64), const SYS_FALLOCATE ideal-int +pkg syscall (linux-amd64), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-amd64), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-amd64), const SYS_FCHDIR ideal-int +pkg syscall (linux-amd64), const SYS_FCHMOD ideal-int +pkg syscall (linux-amd64), const SYS_FCHMODAT ideal-int +pkg syscall (linux-amd64), const SYS_FCHOWN ideal-int +pkg syscall (linux-amd64), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-amd64), const SYS_FCNTL ideal-int +pkg syscall (linux-amd64), const SYS_FDATASYNC ideal-int +pkg syscall (linux-amd64), const SYS_FGETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-amd64), const SYS_FLOCK ideal-int +pkg syscall (linux-amd64), const SYS_FORK ideal-int +pkg syscall (linux-amd64), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-amd64), const SYS_FSETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_FSTAT ideal-int +pkg syscall (linux-amd64), const SYS_FSTATFS ideal-int +pkg syscall (linux-amd64), const SYS_FSYNC ideal-int +pkg syscall (linux-amd64), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-amd64), const SYS_FUTEX ideal-int +pkg syscall (linux-amd64), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-amd64), const SYS_GETCWD ideal-int +pkg syscall (linux-amd64), const SYS_GETDENTS ideal-int +pkg syscall (linux-amd64), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-amd64), const SYS_GETEGID ideal-int +pkg syscall (linux-amd64), const SYS_GETEUID ideal-int +pkg syscall (linux-amd64), const SYS_GETGID ideal-int +pkg syscall (linux-amd64), const SYS_GETGROUPS ideal-int +pkg syscall (linux-amd64), const SYS_GETITIMER ideal-int +pkg syscall (linux-amd64), const SYS_GETPEERNAME ideal-int +pkg syscall (linux-amd64), const SYS_GETPGID ideal-int +pkg syscall (linux-amd64), const SYS_GETPGRP ideal-int +pkg syscall (linux-amd64), const SYS_GETPID ideal-int +pkg syscall (linux-amd64), const SYS_GETPMSG ideal-int +pkg syscall (linux-amd64), const SYS_GETPPID ideal-int +pkg syscall (linux-amd64), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-amd64), const SYS_GETRESGID ideal-int +pkg syscall (linux-amd64), const SYS_GETRESUID ideal-int +pkg syscall (linux-amd64), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-amd64), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-amd64), const SYS_GETSID ideal-int +pkg syscall (linux-amd64), const SYS_GETSOCKNAME ideal-int +pkg syscall (linux-amd64), const SYS_GETSOCKOPT ideal-int +pkg syscall (linux-amd64), const SYS_GETTID ideal-int +pkg syscall (linux-amd64), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-amd64), const SYS_GETUID ideal-int +pkg syscall (linux-amd64), const SYS_GETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_GET_KERNEL_SYMS ideal-int +pkg syscall (linux-amd64), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-amd64), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-amd64), const SYS_GET_THREAD_AREA ideal-int +pkg syscall (linux-amd64), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-amd64), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-amd64), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-amd64), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-amd64), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-amd64), const SYS_IOCTL ideal-int +pkg syscall (linux-amd64), const SYS_IOPERM ideal-int +pkg syscall (linux-amd64), const SYS_IOPL ideal-int +pkg syscall (linux-amd64), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-amd64), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-amd64), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-amd64), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-amd64), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-amd64), const SYS_IO_SETUP ideal-int +pkg syscall (linux-amd64), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-amd64), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-amd64), const SYS_KEYCTL ideal-int +pkg syscall (linux-amd64), const SYS_KILL ideal-int +pkg syscall (linux-amd64), const SYS_LCHOWN ideal-int +pkg syscall (linux-amd64), const SYS_LGETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_LINK ideal-int +pkg syscall (linux-amd64), const SYS_LINKAT ideal-int +pkg syscall (linux-amd64), const SYS_LISTEN ideal-int +pkg syscall (linux-amd64), const SYS_LISTXATTR ideal-int +pkg syscall (linux-amd64), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-amd64), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-amd64), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-amd64), const SYS_LSEEK ideal-int +pkg syscall (linux-amd64), const SYS_LSETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_LSTAT ideal-int +pkg syscall (linux-amd64), const SYS_MADVISE ideal-int +pkg syscall (linux-amd64), const SYS_MBIND ideal-int +pkg syscall (linux-amd64), const SYS_MIGRATE_PAGES ideal-int +pkg syscall (linux-amd64), const SYS_MINCORE ideal-int +pkg syscall (linux-amd64), const SYS_MKDIR ideal-int +pkg syscall (linux-amd64), const SYS_MKDIRAT ideal-int +pkg syscall (linux-amd64), const SYS_MKNOD ideal-int +pkg syscall (linux-amd64), const SYS_MKNODAT ideal-int +pkg syscall (linux-amd64), const SYS_MLOCK ideal-int +pkg syscall (linux-amd64), const SYS_MLOCKALL ideal-int +pkg syscall (linux-amd64), const SYS_MMAP ideal-int +pkg syscall (linux-amd64), const SYS_MODIFY_LDT ideal-int +pkg syscall (linux-amd64), const SYS_MOUNT ideal-int +pkg syscall (linux-amd64), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-amd64), const SYS_MPROTECT ideal-int +pkg syscall (linux-amd64), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-amd64), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-amd64), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-amd64), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-amd64), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-amd64), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-amd64), const SYS_MREMAP ideal-int +pkg syscall (linux-amd64), const SYS_MSGCTL ideal-int +pkg syscall (linux-amd64), const SYS_MSGGET ideal-int +pkg syscall (linux-amd64), const SYS_MSGRCV ideal-int +pkg syscall (linux-amd64), const SYS_MSGSND ideal-int +pkg syscall (linux-amd64), const SYS_MSYNC ideal-int +pkg syscall (linux-amd64), const SYS_MUNLOCK ideal-int +pkg syscall (linux-amd64), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-amd64), const SYS_MUNMAP ideal-int +pkg syscall (linux-amd64), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-amd64), const SYS_NEWFSTATAT ideal-int +pkg syscall (linux-amd64), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-amd64), const SYS_OPEN ideal-int +pkg syscall (linux-amd64), const SYS_OPENAT ideal-int +pkg syscall (linux-amd64), const SYS_PAUSE ideal-int +pkg syscall (linux-amd64), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-amd64), const SYS_PERSONALITY ideal-int +pkg syscall (linux-amd64), const SYS_PIPE ideal-int +pkg syscall (linux-amd64), const SYS_PIPE2 ideal-int +pkg syscall (linux-amd64), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-amd64), const SYS_POLL ideal-int +pkg syscall (linux-amd64), const SYS_PPOLL ideal-int +pkg syscall (linux-amd64), const SYS_PRCTL ideal-int +pkg syscall (linux-amd64), const SYS_PREAD64 ideal-int +pkg syscall (linux-amd64), const SYS_PREADV ideal-int +pkg syscall (linux-amd64), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-amd64), const SYS_PSELECT6 ideal-int +pkg syscall (linux-amd64), const SYS_PTRACE ideal-int +pkg syscall (linux-amd64), const SYS_PUTPMSG ideal-int +pkg syscall (linux-amd64), const SYS_PWRITE64 ideal-int +pkg syscall (linux-amd64), const SYS_PWRITEV ideal-int +pkg syscall (linux-amd64), const SYS_QUERY_MODULE ideal-int +pkg syscall (linux-amd64), const SYS_QUOTACTL ideal-int +pkg syscall (linux-amd64), const SYS_READ ideal-int +pkg syscall (linux-amd64), const SYS_READAHEAD ideal-int +pkg syscall (linux-amd64), const SYS_READLINK ideal-int +pkg syscall (linux-amd64), const SYS_READLINKAT ideal-int +pkg syscall (linux-amd64), const SYS_READV ideal-int +pkg syscall (linux-amd64), const SYS_REBOOT ideal-int +pkg syscall (linux-amd64), const SYS_RECVFROM ideal-int +pkg syscall (linux-amd64), const SYS_RECVMMSG ideal-int +pkg syscall (linux-amd64), const SYS_RECVMSG ideal-int +pkg syscall (linux-amd64), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-amd64), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-amd64), const SYS_RENAME ideal-int +pkg syscall (linux-amd64), const SYS_RENAMEAT ideal-int +pkg syscall (linux-amd64), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-amd64), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-amd64), const SYS_RMDIR ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-amd64), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-amd64), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-amd64), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-amd64), const SYS_SECURITY ideal-int +pkg syscall (linux-amd64), const SYS_SELECT ideal-int +pkg syscall (linux-amd64), const SYS_SEMCTL ideal-int +pkg syscall (linux-amd64), const SYS_SEMGET ideal-int +pkg syscall (linux-amd64), const SYS_SEMOP ideal-int +pkg syscall (linux-amd64), const SYS_SEMTIMEDOP ideal-int +pkg syscall (linux-amd64), const SYS_SENDFILE ideal-int +pkg syscall (linux-amd64), const SYS_SENDMSG ideal-int +pkg syscall (linux-amd64), const SYS_SENDTO ideal-int +pkg syscall (linux-amd64), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-amd64), const SYS_SETFSGID ideal-int +pkg syscall (linux-amd64), const SYS_SETFSUID ideal-int +pkg syscall (linux-amd64), const SYS_SETGID ideal-int +pkg syscall (linux-amd64), const SYS_SETGROUPS ideal-int +pkg syscall (linux-amd64), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-amd64), const SYS_SETITIMER ideal-int +pkg syscall (linux-amd64), const SYS_SETPGID ideal-int +pkg syscall (linux-amd64), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-amd64), const SYS_SETREGID ideal-int +pkg syscall (linux-amd64), const SYS_SETRESGID ideal-int +pkg syscall (linux-amd64), const SYS_SETRESUID ideal-int +pkg syscall (linux-amd64), const SYS_SETREUID ideal-int +pkg syscall (linux-amd64), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-amd64), const SYS_SETSID ideal-int +pkg syscall (linux-amd64), const SYS_SETSOCKOPT ideal-int +pkg syscall (linux-amd64), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-amd64), const SYS_SETUID ideal-int +pkg syscall (linux-amd64), const SYS_SETXATTR ideal-int +pkg syscall (linux-amd64), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-amd64), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-amd64), const SYS_SET_THREAD_AREA ideal-int +pkg syscall (linux-amd64), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-amd64), const SYS_SHMAT ideal-int +pkg syscall (linux-amd64), const SYS_SHMCTL ideal-int +pkg syscall (linux-amd64), const SYS_SHMDT ideal-int +pkg syscall (linux-amd64), const SYS_SHMGET ideal-int +pkg syscall (linux-amd64), const SYS_SHUTDOWN ideal-int +pkg syscall (linux-amd64), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-amd64), const SYS_SIGNALFD ideal-int +pkg syscall (linux-amd64), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-amd64), const SYS_SOCKET ideal-int +pkg syscall (linux-amd64), const SYS_SOCKETPAIR ideal-int +pkg syscall (linux-amd64), const SYS_SPLICE ideal-int +pkg syscall (linux-amd64), const SYS_STAT ideal-int +pkg syscall (linux-amd64), const SYS_STATFS ideal-int +pkg syscall (linux-amd64), const SYS_SWAPOFF ideal-int +pkg syscall (linux-amd64), const SYS_SWAPON ideal-int +pkg syscall (linux-amd64), const SYS_SYMLINK ideal-int +pkg syscall (linux-amd64), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-amd64), const SYS_SYNC ideal-int +pkg syscall (linux-amd64), const SYS_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-amd64), const SYS_SYSFS ideal-int +pkg syscall (linux-amd64), const SYS_SYSINFO ideal-int +pkg syscall (linux-amd64), const SYS_SYSLOG ideal-int +pkg syscall (linux-amd64), const SYS_TEE ideal-int +pkg syscall (linux-amd64), const SYS_TGKILL ideal-int +pkg syscall (linux-amd64), const SYS_TIME ideal-int +pkg syscall (linux-amd64), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-amd64), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-amd64), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-amd64), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-amd64), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-amd64), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-amd64), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-amd64), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-amd64), const SYS_TIMES ideal-int +pkg syscall (linux-amd64), const SYS_TKILL ideal-int +pkg syscall (linux-amd64), const SYS_TRUNCATE ideal-int +pkg syscall (linux-amd64), const SYS_TUXCALL ideal-int +pkg syscall (linux-amd64), const SYS_UMASK ideal-int +pkg syscall (linux-amd64), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-amd64), const SYS_UNAME ideal-int +pkg syscall (linux-amd64), const SYS_UNLINK ideal-int +pkg syscall (linux-amd64), const SYS_UNLINKAT ideal-int +pkg syscall (linux-amd64), const SYS_UNSHARE ideal-int +pkg syscall (linux-amd64), const SYS_USELIB ideal-int +pkg syscall (linux-amd64), const SYS_USTAT ideal-int +pkg syscall (linux-amd64), const SYS_UTIME ideal-int +pkg syscall (linux-amd64), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-amd64), const SYS_UTIMES ideal-int +pkg syscall (linux-amd64), const SYS_VFORK ideal-int +pkg syscall (linux-amd64), const SYS_VHANGUP ideal-int +pkg syscall (linux-amd64), const SYS_VMSPLICE ideal-int +pkg syscall (linux-amd64), const SYS_VSERVER ideal-int +pkg syscall (linux-amd64), const SYS_WAIT4 ideal-int +pkg syscall (linux-amd64), const SYS_WAITID ideal-int +pkg syscall (linux-amd64), const SYS_WRITE ideal-int +pkg syscall (linux-amd64), const SYS_WRITEV ideal-int +pkg syscall (linux-amd64), const SYS__SYSCTL ideal-int +pkg syscall (linux-amd64), const S_BLKSIZE ideal-int +pkg syscall (linux-amd64), const S_IEXEC ideal-int +pkg syscall (linux-amd64), const S_IREAD ideal-int +pkg syscall (linux-amd64), const S_IRGRP ideal-int +pkg syscall (linux-amd64), const S_IROTH ideal-int +pkg syscall (linux-amd64), const S_IRWXG ideal-int +pkg syscall (linux-amd64), const S_IRWXO ideal-int +pkg syscall (linux-amd64), const S_IRWXU ideal-int +pkg syscall (linux-amd64), const S_IWGRP ideal-int +pkg syscall (linux-amd64), const S_IWOTH ideal-int +pkg syscall (linux-amd64), const S_IWRITE ideal-int +pkg syscall (linux-amd64), const S_IXGRP ideal-int +pkg syscall (linux-amd64), const S_IXOTH ideal-int +pkg syscall (linux-amd64), const SizeofCmsghdr ideal-int +pkg syscall (linux-amd64), const SizeofIPMreq ideal-int +pkg syscall (linux-amd64), const SizeofIPMreqn ideal-int +pkg syscall (linux-amd64), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-amd64), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-amd64), const SizeofIfInfomsg ideal-int +pkg syscall (linux-amd64), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-amd64), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-amd64), const SizeofInotifyEvent ideal-int +pkg syscall (linux-amd64), const SizeofLinger ideal-int +pkg syscall (linux-amd64), const SizeofMsghdr ideal-int +pkg syscall (linux-amd64), const SizeofNlAttr ideal-int +pkg syscall (linux-amd64), const SizeofNlMsgerr ideal-int +pkg syscall (linux-amd64), const SizeofNlMsghdr ideal-int +pkg syscall (linux-amd64), const SizeofRtAttr ideal-int +pkg syscall (linux-amd64), const SizeofRtGenmsg ideal-int +pkg syscall (linux-amd64), const SizeofRtMsg ideal-int +pkg syscall (linux-amd64), const SizeofRtNexthop ideal-int +pkg syscall (linux-amd64), const SizeofSockFilter ideal-int +pkg syscall (linux-amd64), const SizeofSockFprog ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrAny ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-amd64), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-amd64), const SizeofUcred ideal-int +pkg syscall (linux-amd64), const TCGETS ideal-int +pkg syscall (linux-amd64), const TCP_CONGESTION ideal-int +pkg syscall (linux-amd64), const TCP_CORK ideal-int +pkg syscall (linux-amd64), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-amd64), const TCP_INFO ideal-int +pkg syscall (linux-amd64), const TCP_KEEPCNT ideal-int +pkg syscall (linux-amd64), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-amd64), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-amd64), const TCP_LINGER2 ideal-int +pkg syscall (linux-amd64), const TCP_MAXSEG ideal-int +pkg syscall (linux-amd64), const TCP_MAXWIN ideal-int +pkg syscall (linux-amd64), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-amd64), const TCP_MD5SIG ideal-int +pkg syscall (linux-amd64), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-amd64), const TCP_MSS ideal-int +pkg syscall (linux-amd64), const TCP_QUICKACK ideal-int +pkg syscall (linux-amd64), const TCP_SYNCNT ideal-int +pkg syscall (linux-amd64), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-amd64), const TCSETS ideal-int +pkg syscall (linux-amd64), const TIOCCBRK ideal-int +pkg syscall (linux-amd64), const TIOCCONS ideal-int +pkg syscall (linux-amd64), const TIOCEXCL ideal-int +pkg syscall (linux-amd64), const TIOCGDEV ideal-int +pkg syscall (linux-amd64), const TIOCGETD ideal-int +pkg syscall (linux-amd64), const TIOCGICOUNT ideal-int +pkg syscall (linux-amd64), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-amd64), const TIOCGPGRP ideal-int +pkg syscall (linux-amd64), const TIOCGPTN ideal-int +pkg syscall (linux-amd64), const TIOCGRS485 ideal-int +pkg syscall (linux-amd64), const TIOCGSERIAL ideal-int +pkg syscall (linux-amd64), const TIOCGSID ideal-int +pkg syscall (linux-amd64), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-amd64), const TIOCGWINSZ ideal-int +pkg syscall (linux-amd64), const TIOCINQ ideal-int +pkg syscall (linux-amd64), const TIOCLINUX ideal-int +pkg syscall (linux-amd64), const TIOCMBIC ideal-int +pkg syscall (linux-amd64), const TIOCMBIS ideal-int +pkg syscall (linux-amd64), const TIOCMGET ideal-int +pkg syscall (linux-amd64), const TIOCMIWAIT ideal-int +pkg syscall (linux-amd64), const TIOCMSET ideal-int +pkg syscall (linux-amd64), const TIOCM_CAR ideal-int +pkg syscall (linux-amd64), const TIOCM_CD ideal-int +pkg syscall (linux-amd64), const TIOCM_CTS ideal-int +pkg syscall (linux-amd64), const TIOCM_DSR ideal-int +pkg syscall (linux-amd64), const TIOCM_DTR ideal-int +pkg syscall (linux-amd64), const TIOCM_LE ideal-int +pkg syscall (linux-amd64), const TIOCM_RI ideal-int +pkg syscall (linux-amd64), const TIOCM_RNG ideal-int +pkg syscall (linux-amd64), const TIOCM_RTS ideal-int +pkg syscall (linux-amd64), const TIOCM_SR ideal-int +pkg syscall (linux-amd64), const TIOCM_ST ideal-int +pkg syscall (linux-amd64), const TIOCNOTTY ideal-int +pkg syscall (linux-amd64), const TIOCNXCL ideal-int +pkg syscall (linux-amd64), const TIOCOUTQ ideal-int +pkg syscall (linux-amd64), const TIOCPKT ideal-int +pkg syscall (linux-amd64), const TIOCPKT_DATA ideal-int +pkg syscall (linux-amd64), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-amd64), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-amd64), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-amd64), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-amd64), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-amd64), const TIOCPKT_START ideal-int +pkg syscall (linux-amd64), const TIOCPKT_STOP ideal-int +pkg syscall (linux-amd64), const TIOCSBRK ideal-int +pkg syscall (linux-amd64), const TIOCSCTTY ideal-int +pkg syscall (linux-amd64), const TIOCSERCONFIG ideal-int +pkg syscall (linux-amd64), const TIOCSERGETLSR ideal-int +pkg syscall (linux-amd64), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-amd64), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-amd64), const TIOCSERGWILD ideal-int +pkg syscall (linux-amd64), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-amd64), const TIOCSERSWILD ideal-int +pkg syscall (linux-amd64), const TIOCSER_TEMT ideal-int +pkg syscall (linux-amd64), const TIOCSETD ideal-int +pkg syscall (linux-amd64), const TIOCSIG ideal-int +pkg syscall (linux-amd64), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-amd64), const TIOCSPGRP ideal-int +pkg syscall (linux-amd64), const TIOCSPTLCK ideal-int +pkg syscall (linux-amd64), const TIOCSRS485 ideal-int +pkg syscall (linux-amd64), const TIOCSSERIAL ideal-int +pkg syscall (linux-amd64), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-amd64), const TIOCSTI ideal-int +pkg syscall (linux-amd64), const TIOCSWINSZ ideal-int +pkg syscall (linux-amd64), const TOSTOP ideal-int +pkg syscall (linux-amd64), const TUNATTACHFILTER ideal-int +pkg syscall (linux-amd64), const TUNDETACHFILTER ideal-int +pkg syscall (linux-amd64), const TUNGETFEATURES ideal-int +pkg syscall (linux-amd64), const TUNGETIFF ideal-int +pkg syscall (linux-amd64), const TUNGETSNDBUF ideal-int +pkg syscall (linux-amd64), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-amd64), const TUNSETDEBUG ideal-int +pkg syscall (linux-amd64), const TUNSETGROUP ideal-int +pkg syscall (linux-amd64), const TUNSETIFF ideal-int +pkg syscall (linux-amd64), const TUNSETLINK ideal-int +pkg syscall (linux-amd64), const TUNSETNOCSUM ideal-int +pkg syscall (linux-amd64), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-amd64), const TUNSETOWNER ideal-int +pkg syscall (linux-amd64), const TUNSETPERSIST ideal-int +pkg syscall (linux-amd64), const TUNSETSNDBUF ideal-int +pkg syscall (linux-amd64), const TUNSETTXFILTER ideal-int +pkg syscall (linux-amd64), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-amd64), const VDISCARD ideal-int +pkg syscall (linux-amd64), const VEOF ideal-int +pkg syscall (linux-amd64), const VEOL ideal-int +pkg syscall (linux-amd64), const VEOL2 ideal-int +pkg syscall (linux-amd64), const VERASE ideal-int +pkg syscall (linux-amd64), const VINTR ideal-int +pkg syscall (linux-amd64), const VKILL ideal-int +pkg syscall (linux-amd64), const VLNEXT ideal-int +pkg syscall (linux-amd64), const VMIN ideal-int +pkg syscall (linux-amd64), const VQUIT ideal-int +pkg syscall (linux-amd64), const VREPRINT ideal-int +pkg syscall (linux-amd64), const VSTART ideal-int +pkg syscall (linux-amd64), const VSTOP ideal-int +pkg syscall (linux-amd64), const VSUSP ideal-int +pkg syscall (linux-amd64), const VSWTC ideal-int +pkg syscall (linux-amd64), const VTIME ideal-int +pkg syscall (linux-amd64), const VWERASE ideal-int +pkg syscall (linux-amd64), const WALL ideal-int +pkg syscall (linux-amd64), const WCLONE ideal-int +pkg syscall (linux-amd64), const WCONTINUED ideal-int +pkg syscall (linux-amd64), const WEXITED ideal-int +pkg syscall (linux-amd64), const WNOHANG ideal-int +pkg syscall (linux-amd64), const WNOTHREAD ideal-int +pkg syscall (linux-amd64), const WNOWAIT ideal-int +pkg syscall (linux-amd64), const WORDSIZE ideal-int +pkg syscall (linux-amd64), const WSTOPPED ideal-int +pkg syscall (linux-amd64), const WUNTRACED ideal-int +pkg syscall (linux-amd64), const XCASE ideal-int +pkg syscall (linux-amd64), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-amd64), func Access(string, uint32) error +pkg syscall (linux-amd64), func Acct(string) error +pkg syscall (linux-amd64), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-amd64), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-amd64), func Bind(int, Sockaddr) error +pkg syscall (linux-amd64), func BindToDevice(int, string) error +pkg syscall (linux-amd64), func Chroot(string) error +pkg syscall (linux-amd64), func Close(int) error +pkg syscall (linux-amd64), func CloseOnExec(int) +pkg syscall (linux-amd64), func CmsgLen(int) int +pkg syscall (linux-amd64), func CmsgSpace(int) int +pkg syscall (linux-amd64), func Connect(int, Sockaddr) error +pkg syscall (linux-amd64), func Creat(string, uint32) (int, error) +pkg syscall (linux-amd64), func DetachLsf(int) error +pkg syscall (linux-amd64), func Dup(int) (int, error) +pkg syscall (linux-amd64), func Dup2(int, int) error +pkg syscall (linux-amd64), func EpollCreate(int) (int, error) +pkg syscall (linux-amd64), func EpollCreate1(int) (int, error) +pkg syscall (linux-amd64), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-amd64), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-amd64), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-amd64), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-amd64), func Fchdir(int) error +pkg syscall (linux-amd64), func Fchmod(int, uint32) error +pkg syscall (linux-amd64), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-amd64), func Fchown(int, int, int) error +pkg syscall (linux-amd64), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-amd64), func Fdatasync(int) error +pkg syscall (linux-amd64), func Flock(int, int) error +pkg syscall (linux-amd64), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-amd64), func Fstat(int, *Stat_t) error +pkg syscall (linux-amd64), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-amd64), func Fsync(int) error +pkg syscall (linux-amd64), func Ftruncate(int, int64) error +pkg syscall (linux-amd64), func Futimes(int, []Timeval) error +pkg syscall (linux-amd64), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-amd64), func Getcwd([]uint8) (int, error) +pkg syscall (linux-amd64), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-amd64), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-amd64), func Getpgid(int) (int, error) +pkg syscall (linux-amd64), func Getpgrp() int +pkg syscall (linux-amd64), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-amd64), func Getrusage(int, *Rusage) error +pkg syscall (linux-amd64), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-amd64), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-amd64), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-amd64), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-amd64), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-amd64), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-amd64), func Gettid() int +pkg syscall (linux-amd64), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-amd64), func InotifyInit() (int, error) +pkg syscall (linux-amd64), func InotifyInit1(int) (int, error) +pkg syscall (linux-amd64), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-amd64), func Ioperm(int, int, int) error +pkg syscall (linux-amd64), func Iopl(int) error +pkg syscall (linux-amd64), func Kill(int, Signal) error +pkg syscall (linux-amd64), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-amd64), func Listen(int, int) error +pkg syscall (linux-amd64), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-amd64), func LsfSocket(int, int) (int, error) +pkg syscall (linux-amd64), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-amd64), func Lstat(string, *Stat_t) error +pkg syscall (linux-amd64), func Madvise([]uint8, int) error +pkg syscall (linux-amd64), func Mkdirat(int, string, uint32) error +pkg syscall (linux-amd64), func Mkfifo(string, uint32) error +pkg syscall (linux-amd64), func Mknod(string, uint32, int) error +pkg syscall (linux-amd64), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-amd64), func Mlock([]uint8) error +pkg syscall (linux-amd64), func Mlockall(int) error +pkg syscall (linux-amd64), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-amd64), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-amd64), func Mprotect([]uint8, int) error +pkg syscall (linux-amd64), func Munlock([]uint8) error +pkg syscall (linux-amd64), func Munlockall() error +pkg syscall (linux-amd64), func Munmap([]uint8) error +pkg syscall (linux-amd64), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-amd64), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-amd64), func NsecToTimespec(int64) Timespec +pkg syscall (linux-amd64), func Open(string, int, uint32) (int, error) +pkg syscall (linux-amd64), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-amd64), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-amd64), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-amd64), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-amd64), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-amd64), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-amd64), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-amd64), func Pause() error +pkg syscall (linux-amd64), func Pipe([]int) error +pkg syscall (linux-amd64), func PivotRoot(string, string) error +pkg syscall (linux-amd64), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-amd64), func PtraceAttach(int) error +pkg syscall (linux-amd64), func PtraceCont(int, int) error +pkg syscall (linux-amd64), func PtraceDetach(int) error +pkg syscall (linux-amd64), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-amd64), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-amd64), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64), func PtraceSetOptions(int, int) error +pkg syscall (linux-amd64), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-amd64), func PtraceSingleStep(int) error +pkg syscall (linux-amd64), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-amd64), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func Read(int, []uint8) (int, error) +pkg syscall (linux-amd64), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-amd64), func Reboot(int) error +pkg syscall (linux-amd64), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-amd64), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-amd64), func Renameat(int, string, int, string) error +pkg syscall (linux-amd64), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-amd64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-amd64), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-amd64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-amd64), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-amd64), func SetLsfPromisc(string, bool) error +pkg syscall (linux-amd64), func SetNonblock(int, bool) error +pkg syscall (linux-amd64), func Setdomainname([]uint8) error +pkg syscall (linux-amd64), func Setfsgid(int) error +pkg syscall (linux-amd64), func Setfsuid(int) error +pkg syscall (linux-amd64), func Setgid(int) error +pkg syscall (linux-amd64), func Setgroups([]int) error +pkg syscall (linux-amd64), func Sethostname([]uint8) error +pkg syscall (linux-amd64), func Setpgid(int, int) error +pkg syscall (linux-amd64), func Setregid(int, int) error +pkg syscall (linux-amd64), func Setresgid(int, int, int) error +pkg syscall (linux-amd64), func Setresuid(int, int, int) error +pkg syscall (linux-amd64), func Setreuid(int, int) error +pkg syscall (linux-amd64), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-amd64), func Setsid() (int, error) +pkg syscall (linux-amd64), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-amd64), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-amd64), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-amd64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-amd64), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-amd64), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-amd64), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-amd64), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-amd64), func Settimeofday(*Timeval) error +pkg syscall (linux-amd64), func Setuid(int) error +pkg syscall (linux-amd64), func Shutdown(int, int) error +pkg syscall (linux-amd64), func Socket(int, int, int) (int, error) +pkg syscall (linux-amd64), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-amd64), func Splice(int, *int64, int, *int64, int, int) (int64, error) +pkg syscall (linux-amd64), func Stat(string, *Stat_t) error +pkg syscall (linux-amd64), func Statfs(string, *Statfs_t) error +pkg syscall (linux-amd64), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-amd64), func Sync() +pkg syscall (linux-amd64), func SyncFileRange(int, int64, int64, int) error +pkg syscall (linux-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-amd64), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-amd64), func Tgkill(int, int, Signal) error +pkg syscall (linux-amd64), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-amd64), func Times(*Tms) (uintptr, error) +pkg syscall (linux-amd64), func TimespecToNsec(Timespec) int64 +pkg syscall (linux-amd64), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-amd64), func Truncate(string, int64) error +pkg syscall (linux-amd64), func Umask(int) int +pkg syscall (linux-amd64), func Uname(*Utsname) error +pkg syscall (linux-amd64), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-amd64), func UnixRights(...int) []uint8 +pkg syscall (linux-amd64), func Unlinkat(int, string) error +pkg syscall (linux-amd64), func Unmount(string, int) error +pkg syscall (linux-amd64), func Unshare(int) error +pkg syscall (linux-amd64), func Ustat(int, *Ustat_t) error +pkg syscall (linux-amd64), func Utime(string, *Utimbuf) error +pkg syscall (linux-amd64), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-amd64), func Write(int, []uint8) (int, error) +pkg syscall (linux-amd64), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-amd64), method (*Iovec) SetLen(int) +pkg syscall (linux-amd64), method (*Msghdr) SetControllen(int) +pkg syscall (linux-amd64), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-amd64), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-amd64), type Cmsghdr struct +pkg syscall (linux-amd64), type Cmsghdr struct, Len uint64 +pkg syscall (linux-amd64), type Cmsghdr struct, Level int32 +pkg syscall (linux-amd64), type Cmsghdr struct, Type int32 +pkg syscall (linux-amd64), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-amd64), type Credential struct +pkg syscall (linux-amd64), type Credential struct, Gid uint32 +pkg syscall (linux-amd64), type Credential struct, Groups []uint32 +pkg syscall (linux-amd64), type Credential struct, Uid uint32 +pkg syscall (linux-amd64), type Dirent struct +pkg syscall (linux-amd64), type Dirent struct, Ino uint64 +pkg syscall (linux-amd64), type Dirent struct, Name [256]int8 +pkg syscall (linux-amd64), type Dirent struct, Off int64 +pkg syscall (linux-amd64), type Dirent struct, Pad_cgo_0 [5]uint8 +pkg syscall (linux-amd64), type Dirent struct, Reclen uint16 +pkg syscall (linux-amd64), type Dirent struct, Type uint8 +pkg syscall (linux-amd64), type EpollEvent struct +pkg syscall (linux-amd64), type EpollEvent struct, Events uint32 +pkg syscall (linux-amd64), type EpollEvent struct, Fd int32 +pkg syscall (linux-amd64), type EpollEvent struct, Pad int32 +pkg syscall (linux-amd64), type FdSet struct +pkg syscall (linux-amd64), type FdSet struct, Bits [16]int64 +pkg syscall (linux-amd64), type Fsid struct +pkg syscall (linux-amd64), type Fsid struct, X__val [2]int32 +pkg syscall (linux-amd64), type IPMreqn struct +pkg syscall (linux-amd64), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-amd64), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-amd64), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-amd64), type IfAddrmsg struct +pkg syscall (linux-amd64), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-amd64), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-amd64), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-amd64), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-amd64), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-amd64), type IfInfomsg struct +pkg syscall (linux-amd64), type IfInfomsg struct, Change uint32 +pkg syscall (linux-amd64), type IfInfomsg struct, Family uint8 +pkg syscall (linux-amd64), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-amd64), type IfInfomsg struct, Index int32 +pkg syscall (linux-amd64), type IfInfomsg struct, Type uint16 +pkg syscall (linux-amd64), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-amd64), type Inet4Pktinfo struct +pkg syscall (linux-amd64), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-amd64), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-amd64), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-amd64), type Inet6Pktinfo struct +pkg syscall (linux-amd64), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-amd64), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-amd64), type InotifyEvent struct +pkg syscall (linux-amd64), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-amd64), type InotifyEvent struct, Len uint32 +pkg syscall (linux-amd64), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-amd64), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-amd64), type InotifyEvent struct, Wd int32 +pkg syscall (linux-amd64), type Iovec struct +pkg syscall (linux-amd64), type Iovec struct, Base *uint8 +pkg syscall (linux-amd64), type Iovec struct, Len uint64 +pkg syscall (linux-amd64), type Msghdr struct +pkg syscall (linux-amd64), type Msghdr struct, Control *uint8 +pkg syscall (linux-amd64), type Msghdr struct, Controllen uint64 +pkg syscall (linux-amd64), type Msghdr struct, Flags int32 +pkg syscall (linux-amd64), type Msghdr struct, Iov *Iovec +pkg syscall (linux-amd64), type Msghdr struct, Iovlen uint64 +pkg syscall (linux-amd64), type Msghdr struct, Name *uint8 +pkg syscall (linux-amd64), type Msghdr struct, Namelen uint32 +pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64), type NetlinkMessage struct +pkg syscall (linux-amd64), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-amd64), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-amd64), type NetlinkRouteAttr struct +pkg syscall (linux-amd64), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-amd64), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-amd64), type NetlinkRouteRequest struct +pkg syscall (linux-amd64), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-amd64), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-amd64), type NlAttr struct +pkg syscall (linux-amd64), type NlAttr struct, Len uint16 +pkg syscall (linux-amd64), type NlAttr struct, Type uint16 +pkg syscall (linux-amd64), type NlMsgerr struct +pkg syscall (linux-amd64), type NlMsgerr struct, Error int32 +pkg syscall (linux-amd64), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-amd64), type NlMsghdr struct +pkg syscall (linux-amd64), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-amd64), type NlMsghdr struct, Len uint32 +pkg syscall (linux-amd64), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-amd64), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-amd64), type NlMsghdr struct, Type uint16 +pkg syscall (linux-amd64), type PtraceRegs struct +pkg syscall (linux-amd64), type PtraceRegs struct, Cs uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Ds uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Eflags uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Es uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Fs uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Fs_base uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Gs uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Gs_base uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Orig_rax uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R10 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R11 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R12 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R13 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R14 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R15 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R8 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, R9 uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rax uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rbp uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rbx uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rcx uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rdi uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rdx uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rip uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rsi uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Rsp uint64 +pkg syscall (linux-amd64), type PtraceRegs struct, Ss uint64 +pkg syscall (linux-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (linux-amd64), type RawSockaddr struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (linux-amd64), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-amd64), type RawSockaddrInet6 struct +pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (linux-amd64), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-amd64), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-amd64), type RawSockaddrNetlink struct +pkg syscall (linux-amd64), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-amd64), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-amd64), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-amd64), type RawSockaddrUnix struct +pkg syscall (linux-amd64), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-amd64), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-amd64), type Rlimit struct +pkg syscall (linux-amd64), type Rlimit struct, Cur uint64 +pkg syscall (linux-amd64), type Rlimit struct, Max uint64 +pkg syscall (linux-amd64), type RtAttr struct +pkg syscall (linux-amd64), type RtAttr struct, Len uint16 +pkg syscall (linux-amd64), type RtAttr struct, Type uint16 +pkg syscall (linux-amd64), type RtGenmsg struct +pkg syscall (linux-amd64), type RtGenmsg struct, Family uint8 +pkg syscall (linux-amd64), type RtMsg struct +pkg syscall (linux-amd64), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-amd64), type RtMsg struct, Family uint8 +pkg syscall (linux-amd64), type RtMsg struct, Flags uint32 +pkg syscall (linux-amd64), type RtMsg struct, Protocol uint8 +pkg syscall (linux-amd64), type RtMsg struct, Scope uint8 +pkg syscall (linux-amd64), type RtMsg struct, Src_len uint8 +pkg syscall (linux-amd64), type RtMsg struct, Table uint8 +pkg syscall (linux-amd64), type RtMsg struct, Tos uint8 +pkg syscall (linux-amd64), type RtMsg struct, Type uint8 +pkg syscall (linux-amd64), type RtNexthop struct +pkg syscall (linux-amd64), type RtNexthop struct, Flags uint8 +pkg syscall (linux-amd64), type RtNexthop struct, Hops uint8 +pkg syscall (linux-amd64), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-amd64), type RtNexthop struct, Len uint16 +pkg syscall (linux-amd64), type Rusage struct, Idrss int64 +pkg syscall (linux-amd64), type Rusage struct, Inblock int64 +pkg syscall (linux-amd64), type Rusage struct, Isrss int64 +pkg syscall (linux-amd64), type Rusage struct, Ixrss int64 +pkg syscall (linux-amd64), type Rusage struct, Majflt int64 +pkg syscall (linux-amd64), type Rusage struct, Maxrss int64 +pkg syscall (linux-amd64), type Rusage struct, Minflt int64 +pkg syscall (linux-amd64), type Rusage struct, Msgrcv int64 +pkg syscall (linux-amd64), type Rusage struct, Msgsnd int64 +pkg syscall (linux-amd64), type Rusage struct, Nivcsw int64 +pkg syscall (linux-amd64), type Rusage struct, Nsignals int64 +pkg syscall (linux-amd64), type Rusage struct, Nswap int64 +pkg syscall (linux-amd64), type Rusage struct, Nvcsw int64 +pkg syscall (linux-amd64), type Rusage struct, Oublock int64 +pkg syscall (linux-amd64), type Rusage struct, Stime Timeval +pkg syscall (linux-amd64), type Rusage struct, Utime Timeval +pkg syscall (linux-amd64), type SockFilter struct +pkg syscall (linux-amd64), type SockFilter struct, Code uint16 +pkg syscall (linux-amd64), type SockFilter struct, Jf uint8 +pkg syscall (linux-amd64), type SockFilter struct, Jt uint8 +pkg syscall (linux-amd64), type SockFilter struct, K uint32 +pkg syscall (linux-amd64), type SockFprog struct +pkg syscall (linux-amd64), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-amd64), type SockFprog struct, Len uint16 +pkg syscall (linux-amd64), type SockFprog struct, Pad_cgo_0 [6]uint8 +pkg syscall (linux-amd64), type SockaddrLinklayer struct +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-amd64), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-amd64), type SockaddrNetlink struct +pkg syscall (linux-amd64), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-amd64), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-amd64), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-amd64), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-amd64), type SocketControlMessage struct +pkg syscall (linux-amd64), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-amd64), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-amd64), type Stat_t struct +pkg syscall (linux-amd64), type Stat_t struct, Atim Timespec +pkg syscall (linux-amd64), type Stat_t struct, Blksize int64 +pkg syscall (linux-amd64), type Stat_t struct, Blocks int64 +pkg syscall (linux-amd64), type Stat_t struct, Ctim Timespec +pkg syscall (linux-amd64), type Stat_t struct, Dev uint64 +pkg syscall (linux-amd64), type Stat_t struct, Gid uint32 +pkg syscall (linux-amd64), type Stat_t struct, Ino uint64 +pkg syscall (linux-amd64), type Stat_t struct, Mode uint32 +pkg syscall (linux-amd64), type Stat_t struct, Mtim Timespec +pkg syscall (linux-amd64), type Stat_t struct, Nlink uint64 +pkg syscall (linux-amd64), type Stat_t struct, Rdev uint64 +pkg syscall (linux-amd64), type Stat_t struct, Size int64 +pkg syscall (linux-amd64), type Stat_t struct, Uid uint32 +pkg syscall (linux-amd64), type Stat_t struct, X__pad0 int32 +pkg syscall (linux-amd64), type Stat_t struct, X__unused [3]int64 +pkg syscall (linux-amd64), type Statfs_t struct +pkg syscall (linux-amd64), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-amd64), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-amd64), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-amd64), type Statfs_t struct, Bsize int64 +pkg syscall (linux-amd64), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-amd64), type Statfs_t struct, Files uint64 +pkg syscall (linux-amd64), type Statfs_t struct, Flags int64 +pkg syscall (linux-amd64), type Statfs_t struct, Frsize int64 +pkg syscall (linux-amd64), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-amd64), type Statfs_t struct, Namelen int64 +pkg syscall (linux-amd64), type Statfs_t struct, Spare [4]int64 +pkg syscall (linux-amd64), type Statfs_t struct, Type int64 +pkg syscall (linux-amd64), type SysProcAttr struct, Chroot string +pkg syscall (linux-amd64), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-amd64), type SysProcAttr struct, Noctty bool +pkg syscall (linux-amd64), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-amd64), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-amd64), type SysProcAttr struct, Setctty bool +pkg syscall (linux-amd64), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-amd64), type SysProcAttr struct, Setsid bool +pkg syscall (linux-amd64), type Sysinfo_t struct +pkg syscall (linux-amd64), type Sysinfo_t struct, Bufferram uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Freehigh uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Freeram uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Freeswap uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Loads [3]uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-amd64), type Sysinfo_t struct, Sharedram uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Totalhigh uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Totalram uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Totalswap uint64 +pkg syscall (linux-amd64), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-amd64), type Sysinfo_t struct, Uptime int64 +pkg syscall (linux-amd64), type Sysinfo_t struct, X_f [0]uint8 +pkg syscall (linux-amd64), type Termios struct +pkg syscall (linux-amd64), type Termios struct, Cc [32]uint8 +pkg syscall (linux-amd64), type Termios struct, Cflag uint32 +pkg syscall (linux-amd64), type Termios struct, Iflag uint32 +pkg syscall (linux-amd64), type Termios struct, Ispeed uint32 +pkg syscall (linux-amd64), type Termios struct, Lflag uint32 +pkg syscall (linux-amd64), type Termios struct, Line uint8 +pkg syscall (linux-amd64), type Termios struct, Oflag uint32 +pkg syscall (linux-amd64), type Termios struct, Ospeed uint32 +pkg syscall (linux-amd64), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-amd64), type Time_t int64 +pkg syscall (linux-amd64), type Timespec struct, Nsec int64 +pkg syscall (linux-amd64), type Timespec struct, Sec int64 +pkg syscall (linux-amd64), type Timeval struct, Sec int64 +pkg syscall (linux-amd64), type Timeval struct, Usec int64 +pkg syscall (linux-amd64), type Timex struct +pkg syscall (linux-amd64), type Timex struct, Calcnt int64 +pkg syscall (linux-amd64), type Timex struct, Constant int64 +pkg syscall (linux-amd64), type Timex struct, Errcnt int64 +pkg syscall (linux-amd64), type Timex struct, Esterror int64 +pkg syscall (linux-amd64), type Timex struct, Freq int64 +pkg syscall (linux-amd64), type Timex struct, Jitcnt int64 +pkg syscall (linux-amd64), type Timex struct, Jitter int64 +pkg syscall (linux-amd64), type Timex struct, Maxerror int64 +pkg syscall (linux-amd64), type Timex struct, Modes uint32 +pkg syscall (linux-amd64), type Timex struct, Offset int64 +pkg syscall (linux-amd64), type Timex struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64), type Timex struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64), type Timex struct, Pad_cgo_2 [4]uint8 +pkg syscall (linux-amd64), type Timex struct, Pad_cgo_3 [44]uint8 +pkg syscall (linux-amd64), type Timex struct, Ppsfreq int64 +pkg syscall (linux-amd64), type Timex struct, Precision int64 +pkg syscall (linux-amd64), type Timex struct, Shift int32 +pkg syscall (linux-amd64), type Timex struct, Stabil int64 +pkg syscall (linux-amd64), type Timex struct, Status int32 +pkg syscall (linux-amd64), type Timex struct, Stbcnt int64 +pkg syscall (linux-amd64), type Timex struct, Tai int32 +pkg syscall (linux-amd64), type Timex struct, Tick int64 +pkg syscall (linux-amd64), type Timex struct, Time Timeval +pkg syscall (linux-amd64), type Timex struct, Tolerance int64 +pkg syscall (linux-amd64), type Tms struct +pkg syscall (linux-amd64), type Tms struct, Cstime int64 +pkg syscall (linux-amd64), type Tms struct, Cutime int64 +pkg syscall (linux-amd64), type Tms struct, Stime int64 +pkg syscall (linux-amd64), type Tms struct, Utime int64 +pkg syscall (linux-amd64), type Ucred struct +pkg syscall (linux-amd64), type Ucred struct, Gid uint32 +pkg syscall (linux-amd64), type Ucred struct, Pid int32 +pkg syscall (linux-amd64), type Ucred struct, Uid uint32 +pkg syscall (linux-amd64), type Ustat_t struct +pkg syscall (linux-amd64), type Ustat_t struct, Fname [6]int8 +pkg syscall (linux-amd64), type Ustat_t struct, Fpack [6]int8 +pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64), type Ustat_t struct, Tfree int32 +pkg syscall (linux-amd64), type Ustat_t struct, Tinode uint64 +pkg syscall (linux-amd64), type Utimbuf struct +pkg syscall (linux-amd64), type Utimbuf struct, Actime int64 +pkg syscall (linux-amd64), type Utimbuf struct, Modtime int64 +pkg syscall (linux-amd64), type Utsname struct +pkg syscall (linux-amd64), type Utsname struct, Domainname [65]int8 +pkg syscall (linux-amd64), type Utsname struct, Machine [65]int8 +pkg syscall (linux-amd64), type Utsname struct, Nodename [65]int8 +pkg syscall (linux-amd64), type Utsname struct, Release [65]int8 +pkg syscall (linux-amd64), type Utsname struct, Sysname [65]int8 +pkg syscall (linux-amd64), type Utsname struct, Version [65]int8 +pkg syscall (linux-amd64), type WaitStatus uint32 +pkg syscall (linux-amd64), var Stderr int +pkg syscall (linux-amd64), var Stdin int +pkg syscall (linux-amd64), var Stdout int +pkg syscall (linux-amd64-cgo), const AF_ALG ideal-int +pkg syscall (linux-amd64-cgo), const AF_APPLETALK ideal-int +pkg syscall (linux-amd64-cgo), const AF_ASH ideal-int +pkg syscall (linux-amd64-cgo), const AF_ATMPVC ideal-int +pkg syscall (linux-amd64-cgo), const AF_ATMSVC ideal-int +pkg syscall (linux-amd64-cgo), const AF_AX25 ideal-int +pkg syscall (linux-amd64-cgo), const AF_BLUETOOTH ideal-int +pkg syscall (linux-amd64-cgo), const AF_BRIDGE ideal-int +pkg syscall (linux-amd64-cgo), const AF_CAIF ideal-int +pkg syscall (linux-amd64-cgo), const AF_CAN ideal-int +pkg syscall (linux-amd64-cgo), const AF_DECnet ideal-int +pkg syscall (linux-amd64-cgo), const AF_ECONET ideal-int +pkg syscall (linux-amd64-cgo), const AF_FILE ideal-int +pkg syscall (linux-amd64-cgo), const AF_IEEE802154 ideal-int +pkg syscall (linux-amd64-cgo), const AF_IPX ideal-int +pkg syscall (linux-amd64-cgo), const AF_IRDA ideal-int +pkg syscall (linux-amd64-cgo), const AF_ISDN ideal-int +pkg syscall (linux-amd64-cgo), const AF_IUCV ideal-int +pkg syscall (linux-amd64-cgo), const AF_KEY ideal-int +pkg syscall (linux-amd64-cgo), const AF_LLC ideal-int +pkg syscall (linux-amd64-cgo), const AF_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const AF_MAX ideal-int +pkg syscall (linux-amd64-cgo), const AF_NETBEUI ideal-int +pkg syscall (linux-amd64-cgo), const AF_NETLINK ideal-int +pkg syscall (linux-amd64-cgo), const AF_NETROM ideal-int +pkg syscall (linux-amd64-cgo), const AF_PACKET ideal-int +pkg syscall (linux-amd64-cgo), const AF_PHONET ideal-int +pkg syscall (linux-amd64-cgo), const AF_PPPOX ideal-int +pkg syscall (linux-amd64-cgo), const AF_RDS ideal-int +pkg syscall (linux-amd64-cgo), const AF_ROSE ideal-int +pkg syscall (linux-amd64-cgo), const AF_ROUTE ideal-int +pkg syscall (linux-amd64-cgo), const AF_RXRPC ideal-int +pkg syscall (linux-amd64-cgo), const AF_SECURITY ideal-int +pkg syscall (linux-amd64-cgo), const AF_SNA ideal-int +pkg syscall (linux-amd64-cgo), const AF_TIPC ideal-int +pkg syscall (linux-amd64-cgo), const AF_WANPIPE ideal-int +pkg syscall (linux-amd64-cgo), const AF_X25 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ASH ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ATM ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_AX25 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_BIF ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_CISCO ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_DLCI ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ECONET ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_EETHER ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ETHER ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FCAL ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FCPL ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FCPP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FDDI ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_FRAD ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_HDLC ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_IRDA ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_LAPB ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_NETROM ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_NONE ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_PPP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_PRONET ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_ROSE ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_SIT ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_SKIP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_SLIP ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_VOID ideal-int +pkg syscall (linux-amd64-cgo), const ARPHRD_X25 ideal-int +pkg syscall (linux-amd64-cgo), const B0 ideal-int +pkg syscall (linux-amd64-cgo), const B1000000 ideal-int +pkg syscall (linux-amd64-cgo), const B110 ideal-int +pkg syscall (linux-amd64-cgo), const B115200 ideal-int +pkg syscall (linux-amd64-cgo), const B1152000 ideal-int +pkg syscall (linux-amd64-cgo), const B1200 ideal-int +pkg syscall (linux-amd64-cgo), const B134 ideal-int +pkg syscall (linux-amd64-cgo), const B150 ideal-int +pkg syscall (linux-amd64-cgo), const B1500000 ideal-int +pkg syscall (linux-amd64-cgo), const B1800 ideal-int +pkg syscall (linux-amd64-cgo), const B19200 ideal-int +pkg syscall (linux-amd64-cgo), const B200 ideal-int +pkg syscall (linux-amd64-cgo), const B2000000 ideal-int +pkg syscall (linux-amd64-cgo), const B230400 ideal-int +pkg syscall (linux-amd64-cgo), const B2400 ideal-int +pkg syscall (linux-amd64-cgo), const B2500000 ideal-int +pkg syscall (linux-amd64-cgo), const B300 ideal-int +pkg syscall (linux-amd64-cgo), const B3000000 ideal-int +pkg syscall (linux-amd64-cgo), const B3500000 ideal-int +pkg syscall (linux-amd64-cgo), const B38400 ideal-int +pkg syscall (linux-amd64-cgo), const B4000000 ideal-int +pkg syscall (linux-amd64-cgo), const B460800 ideal-int +pkg syscall (linux-amd64-cgo), const B4800 ideal-int +pkg syscall (linux-amd64-cgo), const B50 ideal-int +pkg syscall (linux-amd64-cgo), const B500000 ideal-int +pkg syscall (linux-amd64-cgo), const B57600 ideal-int +pkg syscall (linux-amd64-cgo), const B576000 ideal-int +pkg syscall (linux-amd64-cgo), const B600 ideal-int +pkg syscall (linux-amd64-cgo), const B75 ideal-int +pkg syscall (linux-amd64-cgo), const B921600 ideal-int +pkg syscall (linux-amd64-cgo), const B9600 ideal-int +pkg syscall (linux-amd64-cgo), const BPF_A ideal-int +pkg syscall (linux-amd64-cgo), const BPF_ABS ideal-int +pkg syscall (linux-amd64-cgo), const BPF_ADD ideal-int +pkg syscall (linux-amd64-cgo), const BPF_ALU ideal-int +pkg syscall (linux-amd64-cgo), const BPF_AND ideal-int +pkg syscall (linux-amd64-cgo), const BPF_B ideal-int +pkg syscall (linux-amd64-cgo), const BPF_DIV ideal-int +pkg syscall (linux-amd64-cgo), const BPF_H ideal-int +pkg syscall (linux-amd64-cgo), const BPF_IMM ideal-int +pkg syscall (linux-amd64-cgo), const BPF_IND ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JA ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JEQ ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JGE ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JGT ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JMP ideal-int +pkg syscall (linux-amd64-cgo), const BPF_JSET ideal-int +pkg syscall (linux-amd64-cgo), const BPF_K ideal-int +pkg syscall (linux-amd64-cgo), const BPF_LD ideal-int +pkg syscall (linux-amd64-cgo), const BPF_LDX ideal-int +pkg syscall (linux-amd64-cgo), const BPF_LEN ideal-int +pkg syscall (linux-amd64-cgo), const BPF_LSH ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MAXINSNS ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MEM ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MEMWORDS ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MISC ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MSH ideal-int +pkg syscall (linux-amd64-cgo), const BPF_MUL ideal-int +pkg syscall (linux-amd64-cgo), const BPF_NEG ideal-int +pkg syscall (linux-amd64-cgo), const BPF_OR ideal-int +pkg syscall (linux-amd64-cgo), const BPF_RET ideal-int +pkg syscall (linux-amd64-cgo), const BPF_RSH ideal-int +pkg syscall (linux-amd64-cgo), const BPF_ST ideal-int +pkg syscall (linux-amd64-cgo), const BPF_STX ideal-int +pkg syscall (linux-amd64-cgo), const BPF_SUB ideal-int +pkg syscall (linux-amd64-cgo), const BPF_TAX ideal-int +pkg syscall (linux-amd64-cgo), const BPF_TXA ideal-int +pkg syscall (linux-amd64-cgo), const BPF_W ideal-int +pkg syscall (linux-amd64-cgo), const BPF_X ideal-int +pkg syscall (linux-amd64-cgo), const BRKINT ideal-int +pkg syscall (linux-amd64-cgo), const CLOCAL ideal-int +pkg syscall (linux-amd64-cgo), const CREAD ideal-int +pkg syscall (linux-amd64-cgo), const CS5 ideal-int +pkg syscall (linux-amd64-cgo), const CS6 ideal-int +pkg syscall (linux-amd64-cgo), const CS7 ideal-int +pkg syscall (linux-amd64-cgo), const CS8 ideal-int +pkg syscall (linux-amd64-cgo), const CSIZE ideal-int +pkg syscall (linux-amd64-cgo), const CSTOPB ideal-int +pkg syscall (linux-amd64-cgo), const DT_BLK ideal-int +pkg syscall (linux-amd64-cgo), const DT_CHR ideal-int +pkg syscall (linux-amd64-cgo), const DT_DIR ideal-int +pkg syscall (linux-amd64-cgo), const DT_FIFO ideal-int +pkg syscall (linux-amd64-cgo), const DT_LNK ideal-int +pkg syscall (linux-amd64-cgo), const DT_REG ideal-int +pkg syscall (linux-amd64-cgo), const DT_SOCK ideal-int +pkg syscall (linux-amd64-cgo), const DT_UNKNOWN ideal-int +pkg syscall (linux-amd64-cgo), const DT_WHT ideal-int +pkg syscall (linux-amd64-cgo), const EADV Errno +pkg syscall (linux-amd64-cgo), const EBADE Errno +pkg syscall (linux-amd64-cgo), const EBADFD Errno +pkg syscall (linux-amd64-cgo), const EBADMSG Errno +pkg syscall (linux-amd64-cgo), const EBADR Errno +pkg syscall (linux-amd64-cgo), const EBADRQC Errno +pkg syscall (linux-amd64-cgo), const EBADSLT Errno +pkg syscall (linux-amd64-cgo), const EBFONT Errno +pkg syscall (linux-amd64-cgo), const ECHO ideal-int +pkg syscall (linux-amd64-cgo), const ECHOCTL ideal-int +pkg syscall (linux-amd64-cgo), const ECHOE ideal-int +pkg syscall (linux-amd64-cgo), const ECHOK ideal-int +pkg syscall (linux-amd64-cgo), const ECHOKE ideal-int +pkg syscall (linux-amd64-cgo), const ECHONL ideal-int +pkg syscall (linux-amd64-cgo), const ECHOPRT ideal-int +pkg syscall (linux-amd64-cgo), const ECHRNG Errno +pkg syscall (linux-amd64-cgo), const ECOMM Errno +pkg syscall (linux-amd64-cgo), const EDEADLOCK Errno +pkg syscall (linux-amd64-cgo), const EDOTDOT Errno +pkg syscall (linux-amd64-cgo), const EISNAM Errno +pkg syscall (linux-amd64-cgo), const EKEYEXPIRED Errno +pkg syscall (linux-amd64-cgo), const EKEYREJECTED Errno +pkg syscall (linux-amd64-cgo), const EKEYREVOKED Errno +pkg syscall (linux-amd64-cgo), const EL2HLT Errno +pkg syscall (linux-amd64-cgo), const EL2NSYNC Errno +pkg syscall (linux-amd64-cgo), const EL3HLT Errno +pkg syscall (linux-amd64-cgo), const EL3RST Errno +pkg syscall (linux-amd64-cgo), const ELIBACC Errno +pkg syscall (linux-amd64-cgo), const ELIBBAD Errno +pkg syscall (linux-amd64-cgo), const ELIBEXEC Errno +pkg syscall (linux-amd64-cgo), const ELIBMAX Errno +pkg syscall (linux-amd64-cgo), const ELIBSCN Errno +pkg syscall (linux-amd64-cgo), const ELNRNG Errno +pkg syscall (linux-amd64-cgo), const EMEDIUMTYPE Errno +pkg syscall (linux-amd64-cgo), const EMULTIHOP Errno +pkg syscall (linux-amd64-cgo), const ENAVAIL Errno +pkg syscall (linux-amd64-cgo), const ENOANO Errno +pkg syscall (linux-amd64-cgo), const ENOCSI Errno +pkg syscall (linux-amd64-cgo), const ENODATA Errno +pkg syscall (linux-amd64-cgo), const ENOKEY Errno +pkg syscall (linux-amd64-cgo), const ENOLINK Errno +pkg syscall (linux-amd64-cgo), const ENOMEDIUM Errno +pkg syscall (linux-amd64-cgo), const ENONET Errno +pkg syscall (linux-amd64-cgo), const ENOPKG Errno +pkg syscall (linux-amd64-cgo), const ENOSR Errno +pkg syscall (linux-amd64-cgo), const ENOSTR Errno +pkg syscall (linux-amd64-cgo), const ENOTNAM Errno +pkg syscall (linux-amd64-cgo), const ENOTRECOVERABLE Errno +pkg syscall (linux-amd64-cgo), const ENOTUNIQ Errno +pkg syscall (linux-amd64-cgo), const EOWNERDEAD Errno +pkg syscall (linux-amd64-cgo), const EPOLLERR ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLET ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLHUP ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLIN ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLMSG ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLONESHOT ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLOUT ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLPRI ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLRDBAND ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLRDHUP ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLRDNORM ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLWRBAND ideal-int +pkg syscall (linux-amd64-cgo), const EPOLLWRNORM ideal-int +pkg syscall (linux-amd64-cgo), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-amd64-cgo), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-amd64-cgo), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-amd64-cgo), const EPROTO Errno +pkg syscall (linux-amd64-cgo), const EREMCHG Errno +pkg syscall (linux-amd64-cgo), const EREMOTEIO Errno +pkg syscall (linux-amd64-cgo), const ERESTART Errno +pkg syscall (linux-amd64-cgo), const ERFKILL Errno +pkg syscall (linux-amd64-cgo), const ESRMNT Errno +pkg syscall (linux-amd64-cgo), const ESTRPIPE Errno +pkg syscall (linux-amd64-cgo), const ETH_P_1588 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_8021Q ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_802_2 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_802_3 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_AARP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ALL ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_AOE ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ARCNET ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ARP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ATALK ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_AX25 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_BPQ ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_CAIF ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_CAN ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_CONTROL ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_CUST ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DDCMP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DEC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DIAG ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_DSA ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_ECONET ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_EDSA ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_FCOE ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_FIP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_HDLC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IPV6 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IPX ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_IRDA ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_LAT ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_LOOP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PAE ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PAUSE ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PHONET ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PUP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_PUPAT ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_RARP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_SCA ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_SLOW ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_SNAP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_TEB ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_TIPC ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_TRAILER ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_WCCP ideal-int +pkg syscall (linux-amd64-cgo), const ETH_P_X25 ideal-int +pkg syscall (linux-amd64-cgo), const ETIME Errno +pkg syscall (linux-amd64-cgo), const EUCLEAN Errno +pkg syscall (linux-amd64-cgo), const EUNATCH Errno +pkg syscall (linux-amd64-cgo), const EXFULL Errno +pkg syscall (linux-amd64-cgo), const FD_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const FD_SETSIZE ideal-int +pkg syscall (linux-amd64-cgo), const FLUSHO ideal-int +pkg syscall (linux-amd64-cgo), const F_DUPFD ideal-int +pkg syscall (linux-amd64-cgo), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const F_EXLCK ideal-int +pkg syscall (linux-amd64-cgo), const F_GETFD ideal-int +pkg syscall (linux-amd64-cgo), const F_GETFL ideal-int +pkg syscall (linux-amd64-cgo), const F_GETLEASE ideal-int +pkg syscall (linux-amd64-cgo), const F_GETLK ideal-int +pkg syscall (linux-amd64-cgo), const F_GETLK64 ideal-int +pkg syscall (linux-amd64-cgo), const F_GETOWN ideal-int +pkg syscall (linux-amd64-cgo), const F_GETOWN_EX ideal-int +pkg syscall (linux-amd64-cgo), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-amd64-cgo), const F_GETSIG ideal-int +pkg syscall (linux-amd64-cgo), const F_LOCK ideal-int +pkg syscall (linux-amd64-cgo), const F_NOTIFY ideal-int +pkg syscall (linux-amd64-cgo), const F_OK ideal-int +pkg syscall (linux-amd64-cgo), const F_RDLCK ideal-int +pkg syscall (linux-amd64-cgo), const F_SETFD ideal-int +pkg syscall (linux-amd64-cgo), const F_SETFL ideal-int +pkg syscall (linux-amd64-cgo), const F_SETLEASE ideal-int +pkg syscall (linux-amd64-cgo), const F_SETLK ideal-int +pkg syscall (linux-amd64-cgo), const F_SETLK64 ideal-int +pkg syscall (linux-amd64-cgo), const F_SETLKW ideal-int +pkg syscall (linux-amd64-cgo), const F_SETLKW64 ideal-int +pkg syscall (linux-amd64-cgo), const F_SETOWN ideal-int +pkg syscall (linux-amd64-cgo), const F_SETOWN_EX ideal-int +pkg syscall (linux-amd64-cgo), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-amd64-cgo), const F_SETSIG ideal-int +pkg syscall (linux-amd64-cgo), const F_SHLCK ideal-int +pkg syscall (linux-amd64-cgo), const F_TEST ideal-int +pkg syscall (linux-amd64-cgo), const F_TLOCK ideal-int +pkg syscall (linux-amd64-cgo), const F_ULOCK ideal-int +pkg syscall (linux-amd64-cgo), const F_UNLCK ideal-int +pkg syscall (linux-amd64-cgo), const F_WRLCK ideal-int +pkg syscall (linux-amd64-cgo), const HUPCL ideal-int +pkg syscall (linux-amd64-cgo), const ICANON ideal-int +pkg syscall (linux-amd64-cgo), const ICRNL ideal-int +pkg syscall (linux-amd64-cgo), const IEXTEN ideal-int +pkg syscall (linux-amd64-cgo), const IFA_ADDRESS ideal-int +pkg syscall (linux-amd64-cgo), const IFA_ANYCAST ideal-int +pkg syscall (linux-amd64-cgo), const IFA_BROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const IFA_CACHEINFO ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_NODAD ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-amd64-cgo), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-amd64-cgo), const IFA_LABEL ideal-int +pkg syscall (linux-amd64-cgo), const IFA_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const IFA_MAX ideal-int +pkg syscall (linux-amd64-cgo), const IFA_MULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const IFA_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const IFF_ALLMULTI ideal-int +pkg syscall (linux-amd64-cgo), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-amd64-cgo), const IFF_DEBUG ideal-int +pkg syscall (linux-amd64-cgo), const IFF_DYNAMIC ideal-int +pkg syscall (linux-amd64-cgo), const IFF_MASTER ideal-int +pkg syscall (linux-amd64-cgo), const IFF_NOARP ideal-int +pkg syscall (linux-amd64-cgo), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-amd64-cgo), const IFF_NO_PI ideal-int +pkg syscall (linux-amd64-cgo), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-amd64-cgo), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-amd64-cgo), const IFF_PORTSEL ideal-int +pkg syscall (linux-amd64-cgo), const IFF_PROMISC ideal-int +pkg syscall (linux-amd64-cgo), const IFF_RUNNING ideal-int +pkg syscall (linux-amd64-cgo), const IFF_SLAVE ideal-int +pkg syscall (linux-amd64-cgo), const IFF_TAP ideal-int +pkg syscall (linux-amd64-cgo), const IFF_TUN ideal-int +pkg syscall (linux-amd64-cgo), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-amd64-cgo), const IFF_VNET_HDR ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_ADDRESS ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_BROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_COST ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_IFALIAS ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_IFNAME ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_LINK ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_LINKINFO ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_LINKMODE ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_MAP ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_MASTER ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_MAX ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_MTU ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_PRIORITY ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_PROTINFO ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_QDISC ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_STATS ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_TXQLEN ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_WEIGHT ideal-int +pkg syscall (linux-amd64-cgo), const IFLA_WIRELESS ideal-int +pkg syscall (linux-amd64-cgo), const IFNAMSIZ ideal-int +pkg syscall (linux-amd64-cgo), const IGNBRK ideal-int +pkg syscall (linux-amd64-cgo), const IGNCR ideal-int +pkg syscall (linux-amd64-cgo), const IGNPAR ideal-int +pkg syscall (linux-amd64-cgo), const IMAXBEL ideal-int +pkg syscall (linux-amd64-cgo), const INLCR ideal-int +pkg syscall (linux-amd64-cgo), const INPCK ideal-int +pkg syscall (linux-amd64-cgo), const IN_ACCESS ideal-int +pkg syscall (linux-amd64-cgo), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-amd64-cgo), const IN_ATTRIB ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSA_NET ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSB_NET ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSC_NET ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLOSE ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-amd64-cgo), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-amd64-cgo), const IN_CREATE ideal-int +pkg syscall (linux-amd64-cgo), const IN_DELETE ideal-int +pkg syscall (linux-amd64-cgo), const IN_DELETE_SELF ideal-int +pkg syscall (linux-amd64-cgo), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-amd64-cgo), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-amd64-cgo), const IN_IGNORED ideal-int +pkg syscall (linux-amd64-cgo), const IN_ISDIR ideal-int +pkg syscall (linux-amd64-cgo), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-amd64-cgo), const IN_MASK_ADD ideal-int +pkg syscall (linux-amd64-cgo), const IN_MODIFY ideal-int +pkg syscall (linux-amd64-cgo), const IN_MOVE ideal-int +pkg syscall (linux-amd64-cgo), const IN_MOVED_FROM ideal-int +pkg syscall (linux-amd64-cgo), const IN_MOVED_TO ideal-int +pkg syscall (linux-amd64-cgo), const IN_MOVE_SELF ideal-int +pkg syscall (linux-amd64-cgo), const IN_NONBLOCK ideal-int +pkg syscall (linux-amd64-cgo), const IN_ONESHOT ideal-int +pkg syscall (linux-amd64-cgo), const IN_ONLYDIR ideal-int +pkg syscall (linux-amd64-cgo), const IN_OPEN ideal-int +pkg syscall (linux-amd64-cgo), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-amd64-cgo), const IN_UNMOUNT ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_AH ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_COMP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_DCCP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_EGP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_ESP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_GRE ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_ICMP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_IDP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_IGMP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_IPIP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_MTP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_NONE ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_PIM ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_PUP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_RAW ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_RSVP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_SCTP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_TP ideal-int +pkg syscall (linux-amd64-cgo), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_MTU ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_PKTINFO ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVERR ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_TCLASS ideal-int +pkg syscall (linux-amd64-cgo), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-amd64-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-amd64-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-amd64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-amd64-cgo), const IP_DF ideal-int +pkg syscall (linux-amd64-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const IP_FREEBIND ideal-int +pkg syscall (linux-amd64-cgo), const IP_HDRINCL ideal-int +pkg syscall (linux-amd64-cgo), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-amd64-cgo), const IP_MAXPACKET ideal-int +pkg syscall (linux-amd64-cgo), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-amd64-cgo), const IP_MF ideal-int +pkg syscall (linux-amd64-cgo), const IP_MINTTL ideal-int +pkg syscall (linux-amd64-cgo), const IP_MSFILTER ideal-int +pkg syscall (linux-amd64-cgo), const IP_MSS ideal-int +pkg syscall (linux-amd64-cgo), const IP_MTU ideal-int +pkg syscall (linux-amd64-cgo), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-amd64-cgo), const IP_OFFMASK ideal-int +pkg syscall (linux-amd64-cgo), const IP_OPTIONS ideal-int +pkg syscall (linux-amd64-cgo), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-amd64-cgo), const IP_PASSSEC ideal-int +pkg syscall (linux-amd64-cgo), const IP_PKTINFO ideal-int +pkg syscall (linux-amd64-cgo), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC ideal-int +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-amd64-cgo), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVERR ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVTOS ideal-int +pkg syscall (linux-amd64-cgo), const IP_RECVTTL ideal-int +pkg syscall (linux-amd64-cgo), const IP_RETOPTS ideal-int +pkg syscall (linux-amd64-cgo), const IP_RF ideal-int +pkg syscall (linux-amd64-cgo), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-amd64-cgo), const IP_TRANSPARENT ideal-int +pkg syscall (linux-amd64-cgo), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-amd64-cgo), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-amd64-cgo), const ISIG ideal-int +pkg syscall (linux-amd64-cgo), const ISTRIP ideal-int +pkg syscall (linux-amd64-cgo), const IUCLC ideal-int +pkg syscall (linux-amd64-cgo), const IUTF8 ideal-int +pkg syscall (linux-amd64-cgo), const IXANY ideal-int +pkg syscall (linux-amd64-cgo), const IXOFF ideal-int +pkg syscall (linux-amd64-cgo), const IXON ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-amd64-cgo), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-amd64-cgo), const LOCK_EX ideal-int +pkg syscall (linux-amd64-cgo), const LOCK_NB ideal-int +pkg syscall (linux-amd64-cgo), const LOCK_SH ideal-int +pkg syscall (linux-amd64-cgo), const LOCK_UN ideal-int +pkg syscall (linux-amd64-cgo), const MADV_DOFORK ideal-int +pkg syscall (linux-amd64-cgo), const MADV_DONTFORK ideal-int +pkg syscall (linux-amd64-cgo), const MADV_DONTNEED ideal-int +pkg syscall (linux-amd64-cgo), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-amd64-cgo), const MADV_HWPOISON ideal-int +pkg syscall (linux-amd64-cgo), const MADV_MERGEABLE ideal-int +pkg syscall (linux-amd64-cgo), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-amd64-cgo), const MADV_NORMAL ideal-int +pkg syscall (linux-amd64-cgo), const MADV_RANDOM ideal-int +pkg syscall (linux-amd64-cgo), const MADV_REMOVE ideal-int +pkg syscall (linux-amd64-cgo), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-amd64-cgo), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-amd64-cgo), const MADV_WILLNEED ideal-int +pkg syscall (linux-amd64-cgo), const MAP_32BIT ideal-int +pkg syscall (linux-amd64-cgo), const MAP_ANON ideal-int +pkg syscall (linux-amd64-cgo), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-amd64-cgo), const MAP_DENYWRITE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_FILE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_FIXED ideal-int +pkg syscall (linux-amd64-cgo), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-amd64-cgo), const MAP_HUGETLB ideal-int +pkg syscall (linux-amd64-cgo), const MAP_LOCKED ideal-int +pkg syscall (linux-amd64-cgo), const MAP_NONBLOCK ideal-int +pkg syscall (linux-amd64-cgo), const MAP_NORESERVE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_POPULATE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_PRIVATE ideal-int +pkg syscall (linux-amd64-cgo), const MAP_SHARED ideal-int +pkg syscall (linux-amd64-cgo), const MAP_STACK ideal-int +pkg syscall (linux-amd64-cgo), const MAP_TYPE ideal-int +pkg syscall (linux-amd64-cgo), const MCL_CURRENT ideal-int +pkg syscall (linux-amd64-cgo), const MCL_FUTURE ideal-int +pkg syscall (linux-amd64-cgo), const MNT_DETACH ideal-int +pkg syscall (linux-amd64-cgo), const MNT_EXPIRE ideal-int +pkg syscall (linux-amd64-cgo), const MNT_FORCE ideal-int +pkg syscall (linux-amd64-cgo), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const MSG_CONFIRM ideal-int +pkg syscall (linux-amd64-cgo), const MSG_CTRUNC ideal-int +pkg syscall (linux-amd64-cgo), const MSG_DONTROUTE ideal-int +pkg syscall (linux-amd64-cgo), const MSG_DONTWAIT ideal-int +pkg syscall (linux-amd64-cgo), const MSG_EOR ideal-int +pkg syscall (linux-amd64-cgo), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-amd64-cgo), const MSG_FIN ideal-int +pkg syscall (linux-amd64-cgo), const MSG_MORE ideal-int +pkg syscall (linux-amd64-cgo), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-amd64-cgo), const MSG_OOB ideal-int +pkg syscall (linux-amd64-cgo), const MSG_PEEK ideal-int +pkg syscall (linux-amd64-cgo), const MSG_PROXY ideal-int +pkg syscall (linux-amd64-cgo), const MSG_RST ideal-int +pkg syscall (linux-amd64-cgo), const MSG_SYN ideal-int +pkg syscall (linux-amd64-cgo), const MSG_TRUNC ideal-int +pkg syscall (linux-amd64-cgo), const MSG_TRYHARD ideal-int +pkg syscall (linux-amd64-cgo), const MSG_WAITALL ideal-int +pkg syscall (linux-amd64-cgo), const MSG_WAITFORONE ideal-int +pkg syscall (linux-amd64-cgo), const MS_ACTIVE ideal-int +pkg syscall (linux-amd64-cgo), const MS_ASYNC ideal-int +pkg syscall (linux-amd64-cgo), const MS_BIND ideal-int +pkg syscall (linux-amd64-cgo), const MS_DIRSYNC ideal-int +pkg syscall (linux-amd64-cgo), const MS_INVALIDATE ideal-int +pkg syscall (linux-amd64-cgo), const MS_I_VERSION ideal-int +pkg syscall (linux-amd64-cgo), const MS_KERNMOUNT ideal-int +pkg syscall (linux-amd64-cgo), const MS_MANDLOCK ideal-int +pkg syscall (linux-amd64-cgo), const MS_MGC_MSK ideal-int +pkg syscall (linux-amd64-cgo), const MS_MGC_VAL ideal-int +pkg syscall (linux-amd64-cgo), const MS_MOVE ideal-int +pkg syscall (linux-amd64-cgo), const MS_NOATIME ideal-int +pkg syscall (linux-amd64-cgo), const MS_NODEV ideal-int +pkg syscall (linux-amd64-cgo), const MS_NODIRATIME ideal-int +pkg syscall (linux-amd64-cgo), const MS_NOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const MS_NOSUID ideal-int +pkg syscall (linux-amd64-cgo), const MS_NOUSER ideal-int +pkg syscall (linux-amd64-cgo), const MS_POSIXACL ideal-int +pkg syscall (linux-amd64-cgo), const MS_PRIVATE ideal-int +pkg syscall (linux-amd64-cgo), const MS_RDONLY ideal-int +pkg syscall (linux-amd64-cgo), const MS_REC ideal-int +pkg syscall (linux-amd64-cgo), const MS_RELATIME ideal-int +pkg syscall (linux-amd64-cgo), const MS_REMOUNT ideal-int +pkg syscall (linux-amd64-cgo), const MS_RMT_MASK ideal-int +pkg syscall (linux-amd64-cgo), const MS_SHARED ideal-int +pkg syscall (linux-amd64-cgo), const MS_SILENT ideal-int +pkg syscall (linux-amd64-cgo), const MS_SLAVE ideal-int +pkg syscall (linux-amd64-cgo), const MS_STRICTATIME ideal-int +pkg syscall (linux-amd64-cgo), const MS_SYNC ideal-int +pkg syscall (linux-amd64-cgo), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-amd64-cgo), const MS_UNBINDABLE ideal-int +pkg syscall (linux-amd64-cgo), const NAME_MAX ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_AUDIT ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_GENERIC ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_ISCSI ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_NFLOG ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_ROUTE ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_SELINUX ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_UNUSED ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-amd64-cgo), const NETLINK_XFRM ideal-int +pkg syscall (linux-amd64-cgo), const NLA_ALIGNTO ideal-int +pkg syscall (linux-amd64-cgo), const NLA_F_NESTED ideal-int +pkg syscall (linux-amd64-cgo), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-amd64-cgo), const NLA_HDRLEN ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_DONE ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_ERROR ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_NOOP ideal-int +pkg syscall (linux-amd64-cgo), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_ACK ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_APPEND ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_CREATE ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_DUMP ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_ECHO ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_EXCL ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_MATCH ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_MULTI ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_REPLACE ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_REQUEST ideal-int +pkg syscall (linux-amd64-cgo), const NLM_F_ROOT ideal-int +pkg syscall (linux-amd64-cgo), const NOFLSH ideal-int +pkg syscall (linux-amd64-cgo), const OCRNL ideal-int +pkg syscall (linux-amd64-cgo), const OFDEL ideal-int +pkg syscall (linux-amd64-cgo), const OFILL ideal-int +pkg syscall (linux-amd64-cgo), const OLCUC ideal-int +pkg syscall (linux-amd64-cgo), const ONLCR ideal-int +pkg syscall (linux-amd64-cgo), const ONLRET ideal-int +pkg syscall (linux-amd64-cgo), const ONOCR ideal-int +pkg syscall (linux-amd64-cgo), const OPOST ideal-int +pkg syscall (linux-amd64-cgo), const O_ACCMODE ideal-int +pkg syscall (linux-amd64-cgo), const O_DIRECT ideal-int +pkg syscall (linux-amd64-cgo), const O_DIRECTORY ideal-int +pkg syscall (linux-amd64-cgo), const O_DSYNC ideal-int +pkg syscall (linux-amd64-cgo), const O_FSYNC ideal-int +pkg syscall (linux-amd64-cgo), const O_LARGEFILE ideal-int +pkg syscall (linux-amd64-cgo), const O_NDELAY ideal-int +pkg syscall (linux-amd64-cgo), const O_NOATIME ideal-int +pkg syscall (linux-amd64-cgo), const O_NOFOLLOW ideal-int +pkg syscall (linux-amd64-cgo), const O_RSYNC ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_BROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_HOST ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_MULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_OUTGOING ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_RX_RING ideal-int +pkg syscall (linux-amd64-cgo), const PACKET_STATISTICS ideal-int +pkg syscall (linux-amd64-cgo), const PARENB ideal-int +pkg syscall (linux-amd64-cgo), const PARMRK ideal-int +pkg syscall (linux-amd64-cgo), const PARODD ideal-int +pkg syscall (linux-amd64-cgo), const PENDIN ideal-int +pkg syscall (linux-amd64-cgo), const PROT_EXEC ideal-int +pkg syscall (linux-amd64-cgo), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-amd64-cgo), const PROT_GROWSUP ideal-int +pkg syscall (linux-amd64-cgo), const PROT_NONE ideal-int +pkg syscall (linux-amd64-cgo), const PROT_READ ideal-int +pkg syscall (linux-amd64-cgo), const PROT_WRITE ideal-int +pkg syscall (linux-amd64-cgo), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-amd64-cgo), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-amd64-cgo), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_FPEMU ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_FPEXC ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_NAME ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_TIMING ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_TSC ideal-int +pkg syscall (linux-amd64-cgo), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-amd64-cgo), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_FPEMU ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_FPEXC ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_NAME ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_PTRACER ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_TIMING ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_TSC ideal-int +pkg syscall (linux-amd64-cgo), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-amd64-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-amd64-cgo), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-amd64-cgo), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-amd64-cgo), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-amd64-cgo), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-amd64-cgo), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_ARCH_PRCTL ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_ATTACH ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_CONT ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_DETACH ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETFPXREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_KILL ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_MASK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETFPXREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETREGS ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SET_THREAD_AREA ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SINGLEBLOCK ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SYSEMU ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_SYSEMU_SINGLESTEP ideal-int +pkg syscall (linux-amd64-cgo), const PTRACE_TRACEME ideal-int +pkg syscall (linux-amd64-cgo), const PathMax ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_AS ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_CORE ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_CPU ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_DATA ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-amd64-cgo), const RLIMIT_STACK ideal-int +pkg syscall (linux-amd64-cgo), const RLIM_INFINITY ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_ADVMSS ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_CWND ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_FEATURES ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_INITCWND ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_INITRWND ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_LOCK ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_MTU ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_REORDERING ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_RTT ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_RTTVAR ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RTAX_WINDOW ideal-int +pkg syscall (linux-amd64-cgo), const RTA_ALIGNTO ideal-int +pkg syscall (linux-amd64-cgo), const RTA_CACHEINFO ideal-int +pkg syscall (linux-amd64-cgo), const RTA_DST ideal-int +pkg syscall (linux-amd64-cgo), const RTA_FLOW ideal-int +pkg syscall (linux-amd64-cgo), const RTA_GATEWAY ideal-int +pkg syscall (linux-amd64-cgo), const RTA_IIF ideal-int +pkg syscall (linux-amd64-cgo), const RTA_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RTA_METRICS ideal-int +pkg syscall (linux-amd64-cgo), const RTA_MULTIPATH ideal-int +pkg syscall (linux-amd64-cgo), const RTA_OIF ideal-int +pkg syscall (linux-amd64-cgo), const RTA_PREFSRC ideal-int +pkg syscall (linux-amd64-cgo), const RTA_PRIORITY ideal-int +pkg syscall (linux-amd64-cgo), const RTA_SRC ideal-int +pkg syscall (linux-amd64-cgo), const RTA_TABLE ideal-int +pkg syscall (linux-amd64-cgo), const RTA_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_LOG ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_MASQ ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_NAT ideal-int +pkg syscall (linux-amd64-cgo), const RTCF_VALVE ideal-int +pkg syscall (linux-amd64-cgo), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-amd64-cgo), const RTF_ADDRCONF ideal-int +pkg syscall (linux-amd64-cgo), const RTF_ALLONLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTF_BROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const RTF_CACHE ideal-int +pkg syscall (linux-amd64-cgo), const RTF_DEFAULT ideal-int +pkg syscall (linux-amd64-cgo), const RTF_DYNAMIC ideal-int +pkg syscall (linux-amd64-cgo), const RTF_FLOW ideal-int +pkg syscall (linux-amd64-cgo), const RTF_GATEWAY ideal-int +pkg syscall (linux-amd64-cgo), const RTF_HOST ideal-int +pkg syscall (linux-amd64-cgo), const RTF_INTERFACE ideal-int +pkg syscall (linux-amd64-cgo), const RTF_IRTT ideal-int +pkg syscall (linux-amd64-cgo), const RTF_LINKRT ideal-int +pkg syscall (linux-amd64-cgo), const RTF_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const RTF_MODIFIED ideal-int +pkg syscall (linux-amd64-cgo), const RTF_MSS ideal-int +pkg syscall (linux-amd64-cgo), const RTF_MTU ideal-int +pkg syscall (linux-amd64-cgo), const RTF_MULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const RTF_NAT ideal-int +pkg syscall (linux-amd64-cgo), const RTF_NOFORWARD ideal-int +pkg syscall (linux-amd64-cgo), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-amd64-cgo), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-amd64-cgo), const RTF_POLICY ideal-int +pkg syscall (linux-amd64-cgo), const RTF_REINSTATE ideal-int +pkg syscall (linux-amd64-cgo), const RTF_REJECT ideal-int +pkg syscall (linux-amd64-cgo), const RTF_STATIC ideal-int +pkg syscall (linux-amd64-cgo), const RTF_THROW ideal-int +pkg syscall (linux-amd64-cgo), const RTF_UP ideal-int +pkg syscall (linux-amd64-cgo), const RTF_WINDOW ideal-int +pkg syscall (linux-amd64-cgo), const RTF_XRESOLVE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_BASE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELACTION ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELADDR ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELNEIGH ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELQDISC ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELRULE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELTCLASS ideal-int +pkg syscall (linux-amd64-cgo), const RTM_DELTFILTER ideal-int +pkg syscall (linux-amd64-cgo), const RTM_F_CLONED ideal-int +pkg syscall (linux-amd64-cgo), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-amd64-cgo), const RTM_F_PREFIX ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETACTION ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETADDR ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETANYCAST ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETDCB ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETNEIGH ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETQDISC ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETRULE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETTCLASS ideal-int +pkg syscall (linux-amd64-cgo), const RTM_GETTFILTER ideal-int +pkg syscall (linux-amd64-cgo), const RTM_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWACTION ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWADDR ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWQDISC ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWROUTE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWRULE ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-amd64-cgo), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-amd64-cgo), const RTM_SETDCB ideal-int +pkg syscall (linux-amd64-cgo), const RTM_SETLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-amd64-cgo), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-amd64-cgo), const RTNH_F_DEAD ideal-int +pkg syscall (linux-amd64-cgo), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-amd64-cgo), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-amd64-cgo), const RTN_ANYCAST ideal-int +pkg syscall (linux-amd64-cgo), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-amd64-cgo), const RTN_BROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const RTN_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const RTN_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RTN_MULTICAST ideal-int +pkg syscall (linux-amd64-cgo), const RTN_NAT ideal-int +pkg syscall (linux-amd64-cgo), const RTN_PROHIBIT ideal-int +pkg syscall (linux-amd64-cgo), const RTN_THROW ideal-int +pkg syscall (linux-amd64-cgo), const RTN_UNICAST ideal-int +pkg syscall (linux-amd64-cgo), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-amd64-cgo), const RTN_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RTN_XRESOLVE ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_BIRD ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_BOOT ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_DHCP ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_GATED ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_KERNEL ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_MRT ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_NTK ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_RA ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_STATIC ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_XORP ideal-int +pkg syscall (linux-amd64-cgo), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-amd64-cgo), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-amd64-cgo), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-amd64-cgo), const RT_CLASS_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-amd64-cgo), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-amd64-cgo), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-amd64-cgo), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-amd64-cgo), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_MAX ideal-int +pkg syscall (linux-amd64-cgo), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-amd64-cgo), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-amd64-cgo), const RUSAGE_SELF ideal-int +pkg syscall (linux-amd64-cgo), const RUSAGE_THREAD ideal-int +pkg syscall (linux-amd64-cgo), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-amd64-cgo), const SCM_RIGHTS ideal-int +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-amd64-cgo), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-amd64-cgo), const SIGCHLD Signal +pkg syscall (linux-amd64-cgo), const SIGCLD Signal +pkg syscall (linux-amd64-cgo), const SIGCONT Signal +pkg syscall (linux-amd64-cgo), const SIGIO Signal +pkg syscall (linux-amd64-cgo), const SIGIOT Signal +pkg syscall (linux-amd64-cgo), const SIGPOLL Signal +pkg syscall (linux-amd64-cgo), const SIGPROF Signal +pkg syscall (linux-amd64-cgo), const SIGPWR Signal +pkg syscall (linux-amd64-cgo), const SIGSTKFLT Signal +pkg syscall (linux-amd64-cgo), const SIGSTOP Signal +pkg syscall (linux-amd64-cgo), const SIGSYS Signal +pkg syscall (linux-amd64-cgo), const SIGTSTP Signal +pkg syscall (linux-amd64-cgo), const SIGTTIN Signal +pkg syscall (linux-amd64-cgo), const SIGTTOU Signal +pkg syscall (linux-amd64-cgo), const SIGUNUSED Signal +pkg syscall (linux-amd64-cgo), const SIGURG Signal +pkg syscall (linux-amd64-cgo), const SIGUSR1 Signal +pkg syscall (linux-amd64-cgo), const SIGUSR2 Signal +pkg syscall (linux-amd64-cgo), const SIGVTALRM Signal +pkg syscall (linux-amd64-cgo), const SIGWINCH Signal +pkg syscall (linux-amd64-cgo), const SIGXCPU Signal +pkg syscall (linux-amd64-cgo), const SIGXFSZ Signal +pkg syscall (linux-amd64-cgo), const SIOCADDDLCI ideal-int +pkg syscall (linux-amd64-cgo), const SIOCADDMULTI ideal-int +pkg syscall (linux-amd64-cgo), const SIOCADDRT ideal-int +pkg syscall (linux-amd64-cgo), const SIOCATMARK ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDARP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDELDLCI ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDELMULTI ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDELRT ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDIFADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCDRARP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGARP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFBR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFCONF ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFENCAP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFINDEX ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFMAP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFMEM ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFMTU ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFNAME ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGPGRP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGRARP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGSTAMP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-amd64-cgo), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-amd64-cgo), const SIOCRTMSG ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSARP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFBR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFENCAP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFLINK ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFMAP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFMEM ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFMTU ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFNAME ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSPGRP ideal-int +pkg syscall (linux-amd64-cgo), const SIOCSRARP ideal-int +pkg syscall (linux-amd64-cgo), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-amd64-cgo), const SOCK_DCCP ideal-int +pkg syscall (linux-amd64-cgo), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-amd64-cgo), const SOCK_PACKET ideal-int +pkg syscall (linux-amd64-cgo), const SOCK_RDM ideal-int +pkg syscall (linux-amd64-cgo), const SOL_AAL ideal-int +pkg syscall (linux-amd64-cgo), const SOL_ATM ideal-int +pkg syscall (linux-amd64-cgo), const SOL_DECNET ideal-int +pkg syscall (linux-amd64-cgo), const SOL_ICMPV6 ideal-int +pkg syscall (linux-amd64-cgo), const SOL_IP ideal-int +pkg syscall (linux-amd64-cgo), const SOL_IPV6 ideal-int +pkg syscall (linux-amd64-cgo), const SOL_IRDA ideal-int +pkg syscall (linux-amd64-cgo), const SOL_PACKET ideal-int +pkg syscall (linux-amd64-cgo), const SOL_RAW ideal-int +pkg syscall (linux-amd64-cgo), const SOL_TCP ideal-int +pkg syscall (linux-amd64-cgo), const SOL_X25 ideal-int +pkg syscall (linux-amd64-cgo), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-amd64-cgo), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-amd64-cgo), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-amd64-cgo), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-amd64-cgo), const SO_DEBUG ideal-int +pkg syscall (linux-amd64-cgo), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-amd64-cgo), const SO_DOMAIN ideal-int +pkg syscall (linux-amd64-cgo), const SO_ERROR ideal-int +pkg syscall (linux-amd64-cgo), const SO_MARK ideal-int +pkg syscall (linux-amd64-cgo), const SO_NO_CHECK ideal-int +pkg syscall (linux-amd64-cgo), const SO_OOBINLINE ideal-int +pkg syscall (linux-amd64-cgo), const SO_PASSCRED ideal-int +pkg syscall (linux-amd64-cgo), const SO_PASSSEC ideal-int +pkg syscall (linux-amd64-cgo), const SO_PEERCRED ideal-int +pkg syscall (linux-amd64-cgo), const SO_PEERNAME ideal-int +pkg syscall (linux-amd64-cgo), const SO_PEERSEC ideal-int +pkg syscall (linux-amd64-cgo), const SO_PRIORITY ideal-int +pkg syscall (linux-amd64-cgo), const SO_PROTOCOL ideal-int +pkg syscall (linux-amd64-cgo), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-amd64-cgo), const SO_RCVLOWAT ideal-int +pkg syscall (linux-amd64-cgo), const SO_RCVTIMEO ideal-int +pkg syscall (linux-amd64-cgo), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-amd64-cgo), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-amd64-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-amd64-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-amd64-cgo), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-amd64-cgo), const SO_SNDLOWAT ideal-int +pkg syscall (linux-amd64-cgo), const SO_SNDTIMEO ideal-int +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMP ideal-int +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-amd64-cgo), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-amd64-cgo), const SO_TYPE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ACCEPT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ACCEPT4 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ACCESS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ACCT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ADD_KEY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-amd64-cgo), const SYS_AFS_SYSCALL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ALARM ideal-int +pkg syscall (linux-amd64-cgo), const SYS_ARCH_PRCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_BIND ideal-int +pkg syscall (linux-amd64-cgo), const SYS_BRK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CAPGET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CAPSET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CHDIR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CHMOD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CHOWN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CHROOT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLONE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CLOSE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CONNECT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CREAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_CREATE_MODULE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_DUP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_DUP2 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_DUP3 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_CTL_OLD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EPOLL_WAIT_OLD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EVENTFD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EXECVE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EXIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FACCESSAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FADVISE64 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FALLOCATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCHDIR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCHMOD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCHMODAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCHOWN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FCNTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FDATASYNC ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FGETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FLOCK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FORK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FSETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FSTAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FSTATFS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FSYNC ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FUTEX ideal-int +pkg syscall (linux-amd64-cgo), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETCWD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETDENTS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETEGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETEUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETGROUPS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETITIMER ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPEERNAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPGRP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPMSG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPPID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETRESGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETRESUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETSID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETSOCKNAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETSOCKOPT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETTID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GET_KERNEL_SYMS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-amd64-cgo), const SYS_GET_THREAD_AREA ideal-int +pkg syscall (linux-amd64-cgo), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IOCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IOPERM ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IOPL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IO_SETUP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_KEYCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_KILL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LCHOWN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LGETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LINK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LINKAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LISTEN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LISTXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LSEEK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LSETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_LSTAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MADVISE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MBIND ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MIGRATE_PAGES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MINCORE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MKDIR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MKDIRAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MKNOD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MKNODAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MLOCK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MLOCKALL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MMAP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MODIFY_LDT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MOUNT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MPROTECT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MREMAP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MSGCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MSGGET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MSGRCV ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MSGSND ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MSYNC ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MUNLOCK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_MUNMAP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_NEWFSTATAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_OPEN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_OPENAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PAUSE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PERSONALITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PIPE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PIPE2 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_POLL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PPOLL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PRCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PREAD64 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PREADV ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PSELECT6 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PTRACE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PUTPMSG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PWRITE64 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_PWRITEV ideal-int +pkg syscall (linux-amd64-cgo), const SYS_QUERY_MODULE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_QUOTACTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_READ ideal-int +pkg syscall (linux-amd64-cgo), const SYS_READAHEAD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_READLINK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_READLINKAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_READV ideal-int +pkg syscall (linux-amd64-cgo), const SYS_REBOOT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RECVFROM ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RECVMMSG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RECVMSG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RENAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RENAMEAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RMDIR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SECURITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SELECT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SEMCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SEMGET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SEMOP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SEMTIMEDOP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SENDFILE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SENDMSG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SENDTO ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETFSGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETFSUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETGROUPS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETITIMER ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETPGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETREGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETRESGID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETRESUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETREUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETSID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETSOCKOPT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETUID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SETXATTR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SET_THREAD_AREA ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SHMAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SHMCTL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SHMDT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SHMGET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SHUTDOWN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SIGNALFD ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SOCKET ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SOCKETPAIR ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SPLICE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_STAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_STATFS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SWAPOFF ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SWAPON ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYMLINK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYNC ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYSFS ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYSINFO ideal-int +pkg syscall (linux-amd64-cgo), const SYS_SYSLOG ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TEE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TGKILL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TIMES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TKILL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TRUNCATE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_TUXCALL ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UMASK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UNAME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UNLINK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UNLINKAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UNSHARE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_USELIB ideal-int +pkg syscall (linux-amd64-cgo), const SYS_USTAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UTIME ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-amd64-cgo), const SYS_UTIMES ideal-int +pkg syscall (linux-amd64-cgo), const SYS_VFORK ideal-int +pkg syscall (linux-amd64-cgo), const SYS_VHANGUP ideal-int +pkg syscall (linux-amd64-cgo), const SYS_VMSPLICE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_VSERVER ideal-int +pkg syscall (linux-amd64-cgo), const SYS_WAIT4 ideal-int +pkg syscall (linux-amd64-cgo), const SYS_WAITID ideal-int +pkg syscall (linux-amd64-cgo), const SYS_WRITE ideal-int +pkg syscall (linux-amd64-cgo), const SYS_WRITEV ideal-int +pkg syscall (linux-amd64-cgo), const SYS__SYSCTL ideal-int +pkg syscall (linux-amd64-cgo), const S_BLKSIZE ideal-int +pkg syscall (linux-amd64-cgo), const S_IEXEC ideal-int +pkg syscall (linux-amd64-cgo), const S_IREAD ideal-int +pkg syscall (linux-amd64-cgo), const S_IRGRP ideal-int +pkg syscall (linux-amd64-cgo), const S_IROTH ideal-int +pkg syscall (linux-amd64-cgo), const S_IRWXG ideal-int +pkg syscall (linux-amd64-cgo), const S_IRWXO ideal-int +pkg syscall (linux-amd64-cgo), const S_IRWXU ideal-int +pkg syscall (linux-amd64-cgo), const S_IWGRP ideal-int +pkg syscall (linux-amd64-cgo), const S_IWOTH ideal-int +pkg syscall (linux-amd64-cgo), const S_IWRITE ideal-int +pkg syscall (linux-amd64-cgo), const S_IXGRP ideal-int +pkg syscall (linux-amd64-cgo), const S_IXOTH ideal-int +pkg syscall (linux-amd64-cgo), const SizeofCmsghdr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIPMreq ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIPMreqn ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-amd64-cgo), const SizeofIfInfomsg ideal-int +pkg syscall (linux-amd64-cgo), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-amd64-cgo), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-amd64-cgo), const SizeofInotifyEvent ideal-int +pkg syscall (linux-amd64-cgo), const SizeofLinger ideal-int +pkg syscall (linux-amd64-cgo), const SizeofMsghdr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofNlAttr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofNlMsgerr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofNlMsghdr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofRtAttr ideal-int +pkg syscall (linux-amd64-cgo), const SizeofRtGenmsg ideal-int +pkg syscall (linux-amd64-cgo), const SizeofRtMsg ideal-int +pkg syscall (linux-amd64-cgo), const SizeofRtNexthop ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockFilter ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockFprog ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrAny ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-amd64-cgo), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-amd64-cgo), const SizeofUcred ideal-int +pkg syscall (linux-amd64-cgo), const TCGETS ideal-int +pkg syscall (linux-amd64-cgo), const TCP_CONGESTION ideal-int +pkg syscall (linux-amd64-cgo), const TCP_CORK ideal-int +pkg syscall (linux-amd64-cgo), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-amd64-cgo), const TCP_INFO ideal-int +pkg syscall (linux-amd64-cgo), const TCP_KEEPCNT ideal-int +pkg syscall (linux-amd64-cgo), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-amd64-cgo), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-amd64-cgo), const TCP_LINGER2 ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MAXSEG ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MAXWIN ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MD5SIG ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-amd64-cgo), const TCP_MSS ideal-int +pkg syscall (linux-amd64-cgo), const TCP_QUICKACK ideal-int +pkg syscall (linux-amd64-cgo), const TCP_SYNCNT ideal-int +pkg syscall (linux-amd64-cgo), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-amd64-cgo), const TCSETS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCCBRK ideal-int +pkg syscall (linux-amd64-cgo), const TIOCCONS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCEXCL ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGDEV ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGETD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGICOUNT ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGPGRP ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGPTN ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGRS485 ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGSERIAL ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGSID ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCGWINSZ ideal-int +pkg syscall (linux-amd64-cgo), const TIOCINQ ideal-int +pkg syscall (linux-amd64-cgo), const TIOCLINUX ideal-int +pkg syscall (linux-amd64-cgo), const TIOCMBIC ideal-int +pkg syscall (linux-amd64-cgo), const TIOCMBIS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCMGET ideal-int +pkg syscall (linux-amd64-cgo), const TIOCMIWAIT ideal-int +pkg syscall (linux-amd64-cgo), const TIOCMSET ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_CAR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_CD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_CTS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_DSR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_DTR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_LE ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_RI ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_RNG ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_RTS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_SR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCM_ST ideal-int +pkg syscall (linux-amd64-cgo), const TIOCNOTTY ideal-int +pkg syscall (linux-amd64-cgo), const TIOCNXCL ideal-int +pkg syscall (linux-amd64-cgo), const TIOCOUTQ ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_DATA ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_START ideal-int +pkg syscall (linux-amd64-cgo), const TIOCPKT_STOP ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSBRK ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSCTTY ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERCONFIG ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERGETLSR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERGWILD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSERSWILD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSER_TEMT ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSETD ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSIG ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSPGRP ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSPTLCK ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSRS485 ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSSERIAL ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSTI ideal-int +pkg syscall (linux-amd64-cgo), const TIOCSWINSZ ideal-int +pkg syscall (linux-amd64-cgo), const TOSTOP ideal-int +pkg syscall (linux-amd64-cgo), const TUNATTACHFILTER ideal-int +pkg syscall (linux-amd64-cgo), const TUNDETACHFILTER ideal-int +pkg syscall (linux-amd64-cgo), const TUNGETFEATURES ideal-int +pkg syscall (linux-amd64-cgo), const TUNGETIFF ideal-int +pkg syscall (linux-amd64-cgo), const TUNGETSNDBUF ideal-int +pkg syscall (linux-amd64-cgo), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETDEBUG ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETGROUP ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETIFF ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETLINK ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETNOCSUM ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETOWNER ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETPERSIST ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETSNDBUF ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETTXFILTER ideal-int +pkg syscall (linux-amd64-cgo), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-amd64-cgo), const VDISCARD ideal-int +pkg syscall (linux-amd64-cgo), const VEOF ideal-int +pkg syscall (linux-amd64-cgo), const VEOL ideal-int +pkg syscall (linux-amd64-cgo), const VEOL2 ideal-int +pkg syscall (linux-amd64-cgo), const VERASE ideal-int +pkg syscall (linux-amd64-cgo), const VINTR ideal-int +pkg syscall (linux-amd64-cgo), const VKILL ideal-int +pkg syscall (linux-amd64-cgo), const VLNEXT ideal-int +pkg syscall (linux-amd64-cgo), const VMIN ideal-int +pkg syscall (linux-amd64-cgo), const VQUIT ideal-int +pkg syscall (linux-amd64-cgo), const VREPRINT ideal-int +pkg syscall (linux-amd64-cgo), const VSTART ideal-int +pkg syscall (linux-amd64-cgo), const VSTOP ideal-int +pkg syscall (linux-amd64-cgo), const VSUSP ideal-int +pkg syscall (linux-amd64-cgo), const VSWTC ideal-int +pkg syscall (linux-amd64-cgo), const VTIME ideal-int +pkg syscall (linux-amd64-cgo), const VWERASE ideal-int +pkg syscall (linux-amd64-cgo), const WALL ideal-int +pkg syscall (linux-amd64-cgo), const WCLONE ideal-int +pkg syscall (linux-amd64-cgo), const WCONTINUED ideal-int +pkg syscall (linux-amd64-cgo), const WEXITED ideal-int +pkg syscall (linux-amd64-cgo), const WNOHANG ideal-int +pkg syscall (linux-amd64-cgo), const WNOTHREAD ideal-int +pkg syscall (linux-amd64-cgo), const WNOWAIT ideal-int +pkg syscall (linux-amd64-cgo), const WORDSIZE ideal-int +pkg syscall (linux-amd64-cgo), const WSTOPPED ideal-int +pkg syscall (linux-amd64-cgo), const WUNTRACED ideal-int +pkg syscall (linux-amd64-cgo), const XCASE ideal-int +pkg syscall (linux-amd64-cgo), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-amd64-cgo), func Access(string, uint32) error +pkg syscall (linux-amd64-cgo), func Acct(string) error +pkg syscall (linux-amd64-cgo), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-amd64-cgo), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-amd64-cgo), func Bind(int, Sockaddr) error +pkg syscall (linux-amd64-cgo), func BindToDevice(int, string) error +pkg syscall (linux-amd64-cgo), func Chroot(string) error +pkg syscall (linux-amd64-cgo), func Close(int) error +pkg syscall (linux-amd64-cgo), func CloseOnExec(int) +pkg syscall (linux-amd64-cgo), func CmsgLen(int) int +pkg syscall (linux-amd64-cgo), func CmsgSpace(int) int +pkg syscall (linux-amd64-cgo), func Connect(int, Sockaddr) error +pkg syscall (linux-amd64-cgo), func Creat(string, uint32) (int, error) +pkg syscall (linux-amd64-cgo), func DetachLsf(int) error +pkg syscall (linux-amd64-cgo), func Dup(int) (int, error) +pkg syscall (linux-amd64-cgo), func Dup2(int, int) error +pkg syscall (linux-amd64-cgo), func EpollCreate(int) (int, error) +pkg syscall (linux-amd64-cgo), func EpollCreate1(int) (int, error) +pkg syscall (linux-amd64-cgo), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-amd64-cgo), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-amd64-cgo), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-amd64-cgo), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-amd64-cgo), func Fchdir(int) error +pkg syscall (linux-amd64-cgo), func Fchmod(int, uint32) error +pkg syscall (linux-amd64-cgo), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-amd64-cgo), func Fchown(int, int, int) error +pkg syscall (linux-amd64-cgo), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-amd64-cgo), func Fdatasync(int) error +pkg syscall (linux-amd64-cgo), func Flock(int, int) error +pkg syscall (linux-amd64-cgo), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-amd64-cgo), func Fstat(int, *Stat_t) error +pkg syscall (linux-amd64-cgo), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-amd64-cgo), func Fsync(int) error +pkg syscall (linux-amd64-cgo), func Ftruncate(int, int64) error +pkg syscall (linux-amd64-cgo), func Futimes(int, []Timeval) error +pkg syscall (linux-amd64-cgo), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-amd64-cgo), func Getcwd([]uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-amd64-cgo), func Getpgid(int) (int, error) +pkg syscall (linux-amd64-cgo), func Getpgrp() int +pkg syscall (linux-amd64-cgo), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-amd64-cgo), func Getrusage(int, *Rusage) error +pkg syscall (linux-amd64-cgo), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-amd64-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-amd64-cgo), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-amd64-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-amd64-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-amd64-cgo), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-amd64-cgo), func Gettid() int +pkg syscall (linux-amd64-cgo), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-amd64-cgo), func InotifyInit() (int, error) +pkg syscall (linux-amd64-cgo), func InotifyInit1(int) (int, error) +pkg syscall (linux-amd64-cgo), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-amd64-cgo), func Ioperm(int, int, int) error +pkg syscall (linux-amd64-cgo), func Iopl(int) error +pkg syscall (linux-amd64-cgo), func Kill(int, Signal) error +pkg syscall (linux-amd64-cgo), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Listen(int, int) error +pkg syscall (linux-amd64-cgo), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-amd64-cgo), func LsfSocket(int, int) (int, error) +pkg syscall (linux-amd64-cgo), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-amd64-cgo), func Lstat(string, *Stat_t) error +pkg syscall (linux-amd64-cgo), func Madvise([]uint8, int) error +pkg syscall (linux-amd64-cgo), func Mkdirat(int, string, uint32) error +pkg syscall (linux-amd64-cgo), func Mkfifo(string, uint32) error +pkg syscall (linux-amd64-cgo), func Mknod(string, uint32, int) error +pkg syscall (linux-amd64-cgo), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-amd64-cgo), func Mlock([]uint8) error +pkg syscall (linux-amd64-cgo), func Mlockall(int) error +pkg syscall (linux-amd64-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-amd64-cgo), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-amd64-cgo), func Mprotect([]uint8, int) error +pkg syscall (linux-amd64-cgo), func Munlock([]uint8) error +pkg syscall (linux-amd64-cgo), func Munlockall() error +pkg syscall (linux-amd64-cgo), func Munmap([]uint8) error +pkg syscall (linux-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-amd64-cgo), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-amd64-cgo), func NsecToTimespec(int64) Timespec +pkg syscall (linux-amd64-cgo), func Open(string, int, uint32) (int, error) +pkg syscall (linux-amd64-cgo), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-amd64-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-amd64-cgo), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-amd64-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-amd64-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-amd64-cgo), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-amd64-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-amd64-cgo), func Pause() error +pkg syscall (linux-amd64-cgo), func Pipe([]int) error +pkg syscall (linux-amd64-cgo), func PivotRoot(string, string) error +pkg syscall (linux-amd64-cgo), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-amd64-cgo), func PtraceAttach(int) error +pkg syscall (linux-amd64-cgo), func PtraceCont(int, int) error +pkg syscall (linux-amd64-cgo), func PtraceDetach(int) error +pkg syscall (linux-amd64-cgo), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-amd64-cgo), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-amd64-cgo), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func PtraceSetOptions(int, int) error +pkg syscall (linux-amd64-cgo), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-amd64-cgo), func PtraceSingleStep(int) error +pkg syscall (linux-amd64-cgo), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-amd64-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func Read(int, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), func Reboot(int) error +pkg syscall (linux-amd64-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-amd64-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-amd64-cgo), func Renameat(int, string, int, string) error +pkg syscall (linux-amd64-cgo), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-amd64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-amd64-cgo), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-amd64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-amd64-cgo), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-amd64-cgo), func SetLsfPromisc(string, bool) error +pkg syscall (linux-amd64-cgo), func SetNonblock(int, bool) error +pkg syscall (linux-amd64-cgo), func Setdomainname([]uint8) error +pkg syscall (linux-amd64-cgo), func Setfsgid(int) error +pkg syscall (linux-amd64-cgo), func Setfsuid(int) error +pkg syscall (linux-amd64-cgo), func Setgid(int) error +pkg syscall (linux-amd64-cgo), func Setgroups([]int) error +pkg syscall (linux-amd64-cgo), func Sethostname([]uint8) error +pkg syscall (linux-amd64-cgo), func Setpgid(int, int) error +pkg syscall (linux-amd64-cgo), func Setregid(int, int) error +pkg syscall (linux-amd64-cgo), func Setresgid(int, int, int) error +pkg syscall (linux-amd64-cgo), func Setresuid(int, int, int) error +pkg syscall (linux-amd64-cgo), func Setreuid(int, int) error +pkg syscall (linux-amd64-cgo), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-amd64-cgo), func Setsid() (int, error) +pkg syscall (linux-amd64-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-amd64-cgo), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-amd64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-amd64-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-amd64-cgo), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-amd64-cgo), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-amd64-cgo), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-amd64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-amd64-cgo), func Settimeofday(*Timeval) error +pkg syscall (linux-amd64-cgo), func Setuid(int) error +pkg syscall (linux-amd64-cgo), func Shutdown(int, int) error +pkg syscall (linux-amd64-cgo), func Socket(int, int, int) (int, error) +pkg syscall (linux-amd64-cgo), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-amd64-cgo), func Splice(int, *int64, int, *int64, int, int) (int64, error) +pkg syscall (linux-amd64-cgo), func Stat(string, *Stat_t) error +pkg syscall (linux-amd64-cgo), func Statfs(string, *Statfs_t) error +pkg syscall (linux-amd64-cgo), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-amd64-cgo), func Sync() +pkg syscall (linux-amd64-cgo), func SyncFileRange(int, int64, int64, int) error +pkg syscall (linux-amd64-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-amd64-cgo), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-amd64-cgo), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-amd64-cgo), func Tgkill(int, int, Signal) error +pkg syscall (linux-amd64-cgo), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-amd64-cgo), func Times(*Tms) (uintptr, error) +pkg syscall (linux-amd64-cgo), func TimespecToNsec(Timespec) int64 +pkg syscall (linux-amd64-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-amd64-cgo), func Truncate(string, int64) error +pkg syscall (linux-amd64-cgo), func Umask(int) int +pkg syscall (linux-amd64-cgo), func Uname(*Utsname) error +pkg syscall (linux-amd64-cgo), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-amd64-cgo), func UnixRights(...int) []uint8 +pkg syscall (linux-amd64-cgo), func Unlinkat(int, string) error +pkg syscall (linux-amd64-cgo), func Unmount(string, int) error +pkg syscall (linux-amd64-cgo), func Unshare(int) error +pkg syscall (linux-amd64-cgo), func Ustat(int, *Ustat_t) error +pkg syscall (linux-amd64-cgo), func Utime(string, *Utimbuf) error +pkg syscall (linux-amd64-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-amd64-cgo), func Write(int, []uint8) (int, error) +pkg syscall (linux-amd64-cgo), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-amd64-cgo), method (*Iovec) SetLen(int) +pkg syscall (linux-amd64-cgo), method (*Msghdr) SetControllen(int) +pkg syscall (linux-amd64-cgo), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-amd64-cgo), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-amd64-cgo), type Cmsghdr struct +pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Len uint64 +pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Level int32 +pkg syscall (linux-amd64-cgo), type Cmsghdr struct, Type int32 +pkg syscall (linux-amd64-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-amd64-cgo), type Credential struct +pkg syscall (linux-amd64-cgo), type Credential struct, Gid uint32 +pkg syscall (linux-amd64-cgo), type Credential struct, Groups []uint32 +pkg syscall (linux-amd64-cgo), type Credential struct, Uid uint32 +pkg syscall (linux-amd64-cgo), type Dirent struct +pkg syscall (linux-amd64-cgo), type Dirent struct, Ino uint64 +pkg syscall (linux-amd64-cgo), type Dirent struct, Name [256]int8 +pkg syscall (linux-amd64-cgo), type Dirent struct, Off int64 +pkg syscall (linux-amd64-cgo), type Dirent struct, Pad_cgo_0 [5]uint8 +pkg syscall (linux-amd64-cgo), type Dirent struct, Reclen uint16 +pkg syscall (linux-amd64-cgo), type Dirent struct, Type uint8 +pkg syscall (linux-amd64-cgo), type EpollEvent struct +pkg syscall (linux-amd64-cgo), type EpollEvent struct, Events uint32 +pkg syscall (linux-amd64-cgo), type EpollEvent struct, Fd int32 +pkg syscall (linux-amd64-cgo), type EpollEvent struct, Pad int32 +pkg syscall (linux-amd64-cgo), type FdSet struct +pkg syscall (linux-amd64-cgo), type FdSet struct, Bits [16]int64 +pkg syscall (linux-amd64-cgo), type Fsid struct +pkg syscall (linux-amd64-cgo), type Fsid struct, X__val [2]int32 +pkg syscall (linux-amd64-cgo), type IPMreqn struct +pkg syscall (linux-amd64-cgo), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-amd64-cgo), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-amd64-cgo), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-amd64-cgo), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Change uint32 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Family uint8 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Index int32 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, Type uint16 +pkg syscall (linux-amd64-cgo), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct +pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct +pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-amd64-cgo), type InotifyEvent struct +pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Len uint32 +pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-amd64-cgo), type InotifyEvent struct, Wd int32 +pkg syscall (linux-amd64-cgo), type Iovec struct +pkg syscall (linux-amd64-cgo), type Iovec struct, Base *uint8 +pkg syscall (linux-amd64-cgo), type Iovec struct, Len uint64 +pkg syscall (linux-amd64-cgo), type Msghdr struct +pkg syscall (linux-amd64-cgo), type Msghdr struct, Control *uint8 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Controllen uint64 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Flags int32 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Iov *Iovec +pkg syscall (linux-amd64-cgo), type Msghdr struct, Iovlen uint64 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Name *uint8 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Namelen uint32 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64-cgo), type NetlinkMessage struct +pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct +pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-amd64-cgo), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct +pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-amd64-cgo), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-amd64-cgo), type NlAttr struct +pkg syscall (linux-amd64-cgo), type NlAttr struct, Len uint16 +pkg syscall (linux-amd64-cgo), type NlAttr struct, Type uint16 +pkg syscall (linux-amd64-cgo), type NlMsgerr struct +pkg syscall (linux-amd64-cgo), type NlMsgerr struct, Error int32 +pkg syscall (linux-amd64-cgo), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-amd64-cgo), type NlMsghdr struct +pkg syscall (linux-amd64-cgo), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-amd64-cgo), type NlMsghdr struct, Len uint32 +pkg syscall (linux-amd64-cgo), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-amd64-cgo), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-amd64-cgo), type NlMsghdr struct, Type uint16 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Cs uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Ds uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Eflags uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Es uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Fs uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Fs_base uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Gs uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Gs_base uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Orig_rax uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R10 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R11 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R12 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R13 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R14 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R15 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R8 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, R9 uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rax uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rbp uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rbx uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rcx uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rdi uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rdx uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rip uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rsi uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Rsp uint64 +pkg syscall (linux-amd64-cgo), type PtraceRegs struct, Ss uint64 +pkg syscall (linux-amd64-cgo), type RawSockaddr struct, Data [14]int8 +pkg syscall (linux-amd64-cgo), type RawSockaddr struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-amd64-cgo), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrNetlink struct +pkg syscall (linux-amd64-cgo), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-amd64-cgo), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-amd64-cgo), type RawSockaddrUnix struct +pkg syscall (linux-amd64-cgo), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-amd64-cgo), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-amd64-cgo), type Rlimit struct +pkg syscall (linux-amd64-cgo), type Rlimit struct, Cur uint64 +pkg syscall (linux-amd64-cgo), type Rlimit struct, Max uint64 +pkg syscall (linux-amd64-cgo), type RtAttr struct +pkg syscall (linux-amd64-cgo), type RtAttr struct, Len uint16 +pkg syscall (linux-amd64-cgo), type RtAttr struct, Type uint16 +pkg syscall (linux-amd64-cgo), type RtGenmsg struct +pkg syscall (linux-amd64-cgo), type RtGenmsg struct, Family uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct +pkg syscall (linux-amd64-cgo), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Family uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Flags uint32 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Protocol uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Scope uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Src_len uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Table uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Tos uint8 +pkg syscall (linux-amd64-cgo), type RtMsg struct, Type uint8 +pkg syscall (linux-amd64-cgo), type RtNexthop struct +pkg syscall (linux-amd64-cgo), type RtNexthop struct, Flags uint8 +pkg syscall (linux-amd64-cgo), type RtNexthop struct, Hops uint8 +pkg syscall (linux-amd64-cgo), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-amd64-cgo), type RtNexthop struct, Len uint16 +pkg syscall (linux-amd64-cgo), type Rusage struct, Idrss int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Inblock int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Isrss int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Ixrss int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Majflt int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Maxrss int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Minflt int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Msgrcv int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Msgsnd int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Nivcsw int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Nsignals int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Nswap int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Nvcsw int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Oublock int64 +pkg syscall (linux-amd64-cgo), type Rusage struct, Stime Timeval +pkg syscall (linux-amd64-cgo), type Rusage struct, Utime Timeval +pkg syscall (linux-amd64-cgo), type SockFilter struct +pkg syscall (linux-amd64-cgo), type SockFilter struct, Code uint16 +pkg syscall (linux-amd64-cgo), type SockFilter struct, Jf uint8 +pkg syscall (linux-amd64-cgo), type SockFilter struct, Jt uint8 +pkg syscall (linux-amd64-cgo), type SockFilter struct, K uint32 +pkg syscall (linux-amd64-cgo), type SockFprog struct +pkg syscall (linux-amd64-cgo), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-amd64-cgo), type SockFprog struct, Len uint16 +pkg syscall (linux-amd64-cgo), type SockFprog struct, Pad_cgo_0 [6]uint8 +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct +pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-amd64-cgo), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-amd64-cgo), type SocketControlMessage struct +pkg syscall (linux-amd64-cgo), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-amd64-cgo), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-amd64-cgo), type Stat_t struct +pkg syscall (linux-amd64-cgo), type Stat_t struct, Atim Timespec +pkg syscall (linux-amd64-cgo), type Stat_t struct, Blksize int64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Blocks int64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Ctim Timespec +pkg syscall (linux-amd64-cgo), type Stat_t struct, Dev uint64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Gid uint32 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Ino uint64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Mode uint32 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Mtim Timespec +pkg syscall (linux-amd64-cgo), type Stat_t struct, Nlink uint64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Rdev uint64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Size int64 +pkg syscall (linux-amd64-cgo), type Stat_t struct, Uid uint32 +pkg syscall (linux-amd64-cgo), type Stat_t struct, X__pad0 int32 +pkg syscall (linux-amd64-cgo), type Stat_t struct, X__unused [3]int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Bsize int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Files uint64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Flags int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Frsize int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Namelen int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Spare [4]int64 +pkg syscall (linux-amd64-cgo), type Statfs_t struct, Type int64 +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Chroot string +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Noctty bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Setctty bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-amd64-cgo), type SysProcAttr struct, Setsid bool +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Bufferram uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Freehigh uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Freeram uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Freeswap uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Loads [3]uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Sharedram uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalhigh uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalram uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Totalswap uint64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Uptime int64 +pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, X_f [0]uint8 +pkg syscall (linux-amd64-cgo), type Termios struct +pkg syscall (linux-amd64-cgo), type Termios struct, Cc [32]uint8 +pkg syscall (linux-amd64-cgo), type Termios struct, Cflag uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Iflag uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Ispeed uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Lflag uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Line uint8 +pkg syscall (linux-amd64-cgo), type Termios struct, Oflag uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Ospeed uint32 +pkg syscall (linux-amd64-cgo), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-amd64-cgo), type Time_t int64 +pkg syscall (linux-amd64-cgo), type Timespec struct, Nsec int64 +pkg syscall (linux-amd64-cgo), type Timespec struct, Sec int64 +pkg syscall (linux-amd64-cgo), type Timeval struct, Sec int64 +pkg syscall (linux-amd64-cgo), type Timeval struct, Usec int64 +pkg syscall (linux-amd64-cgo), type Timex struct +pkg syscall (linux-amd64-cgo), type Timex struct, Calcnt int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Constant int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Errcnt int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Esterror int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Freq int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Jitcnt int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Jitter int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Maxerror int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Modes uint32 +pkg syscall (linux-amd64-cgo), type Timex struct, Offset int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_2 [4]uint8 +pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_3 [44]uint8 +pkg syscall (linux-amd64-cgo), type Timex struct, Ppsfreq int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Precision int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Shift int32 +pkg syscall (linux-amd64-cgo), type Timex struct, Stabil int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Status int32 +pkg syscall (linux-amd64-cgo), type Timex struct, Stbcnt int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Tai int32 +pkg syscall (linux-amd64-cgo), type Timex struct, Tick int64 +pkg syscall (linux-amd64-cgo), type Timex struct, Time Timeval +pkg syscall (linux-amd64-cgo), type Timex struct, Tolerance int64 +pkg syscall (linux-amd64-cgo), type Tms struct +pkg syscall (linux-amd64-cgo), type Tms struct, Cstime int64 +pkg syscall (linux-amd64-cgo), type Tms struct, Cutime int64 +pkg syscall (linux-amd64-cgo), type Tms struct, Stime int64 +pkg syscall (linux-amd64-cgo), type Tms struct, Utime int64 +pkg syscall (linux-amd64-cgo), type Ucred struct +pkg syscall (linux-amd64-cgo), type Ucred struct, Gid uint32 +pkg syscall (linux-amd64-cgo), type Ucred struct, Pid int32 +pkg syscall (linux-amd64-cgo), type Ucred struct, Uid uint32 +pkg syscall (linux-amd64-cgo), type Ustat_t struct +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Fname [6]int8 +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Fpack [6]int8 +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_1 [4]uint8 +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Tfree int32 +pkg syscall (linux-amd64-cgo), type Ustat_t struct, Tinode uint64 +pkg syscall (linux-amd64-cgo), type Utimbuf struct +pkg syscall (linux-amd64-cgo), type Utimbuf struct, Actime int64 +pkg syscall (linux-amd64-cgo), type Utimbuf struct, Modtime int64 +pkg syscall (linux-amd64-cgo), type Utsname struct +pkg syscall (linux-amd64-cgo), type Utsname struct, Domainname [65]int8 +pkg syscall (linux-amd64-cgo), type Utsname struct, Machine [65]int8 +pkg syscall (linux-amd64-cgo), type Utsname struct, Nodename [65]int8 +pkg syscall (linux-amd64-cgo), type Utsname struct, Release [65]int8 +pkg syscall (linux-amd64-cgo), type Utsname struct, Sysname [65]int8 +pkg syscall (linux-amd64-cgo), type Utsname struct, Version [65]int8 +pkg syscall (linux-amd64-cgo), type WaitStatus uint32 +pkg syscall (linux-amd64-cgo), var Stderr int +pkg syscall (linux-amd64-cgo), var Stdin int +pkg syscall (linux-amd64-cgo), var Stdout int +pkg syscall (linux-arm), const AF_ALG ideal-int +pkg syscall (linux-arm), const AF_APPLETALK ideal-int +pkg syscall (linux-arm), const AF_ASH ideal-int +pkg syscall (linux-arm), const AF_ATMPVC ideal-int +pkg syscall (linux-arm), const AF_ATMSVC ideal-int +pkg syscall (linux-arm), const AF_AX25 ideal-int +pkg syscall (linux-arm), const AF_BLUETOOTH ideal-int +pkg syscall (linux-arm), const AF_BRIDGE ideal-int +pkg syscall (linux-arm), const AF_CAIF ideal-int +pkg syscall (linux-arm), const AF_CAN ideal-int +pkg syscall (linux-arm), const AF_DECnet ideal-int +pkg syscall (linux-arm), const AF_ECONET ideal-int +pkg syscall (linux-arm), const AF_FILE ideal-int +pkg syscall (linux-arm), const AF_IEEE802154 ideal-int +pkg syscall (linux-arm), const AF_IPX ideal-int +pkg syscall (linux-arm), const AF_IRDA ideal-int +pkg syscall (linux-arm), const AF_ISDN ideal-int +pkg syscall (linux-arm), const AF_IUCV ideal-int +pkg syscall (linux-arm), const AF_KEY ideal-int +pkg syscall (linux-arm), const AF_LLC ideal-int +pkg syscall (linux-arm), const AF_LOCAL ideal-int +pkg syscall (linux-arm), const AF_MAX ideal-int +pkg syscall (linux-arm), const AF_NETBEUI ideal-int +pkg syscall (linux-arm), const AF_NETLINK ideal-int +pkg syscall (linux-arm), const AF_NETROM ideal-int +pkg syscall (linux-arm), const AF_PACKET ideal-int +pkg syscall (linux-arm), const AF_PHONET ideal-int +pkg syscall (linux-arm), const AF_PPPOX ideal-int +pkg syscall (linux-arm), const AF_RDS ideal-int +pkg syscall (linux-arm), const AF_ROSE ideal-int +pkg syscall (linux-arm), const AF_ROUTE ideal-int +pkg syscall (linux-arm), const AF_RXRPC ideal-int +pkg syscall (linux-arm), const AF_SECURITY ideal-int +pkg syscall (linux-arm), const AF_SNA ideal-int +pkg syscall (linux-arm), const AF_TIPC ideal-int +pkg syscall (linux-arm), const AF_WANPIPE ideal-int +pkg syscall (linux-arm), const AF_X25 ideal-int +pkg syscall (linux-arm), const ARPHRD_ADAPT ideal-int +pkg syscall (linux-arm), const ARPHRD_APPLETLK ideal-int +pkg syscall (linux-arm), const ARPHRD_ARCNET ideal-int +pkg syscall (linux-arm), const ARPHRD_ASH ideal-int +pkg syscall (linux-arm), const ARPHRD_ATM ideal-int +pkg syscall (linux-arm), const ARPHRD_AX25 ideal-int +pkg syscall (linux-arm), const ARPHRD_BIF ideal-int +pkg syscall (linux-arm), const ARPHRD_CHAOS ideal-int +pkg syscall (linux-arm), const ARPHRD_CISCO ideal-int +pkg syscall (linux-arm), const ARPHRD_CSLIP ideal-int +pkg syscall (linux-arm), const ARPHRD_CSLIP6 ideal-int +pkg syscall (linux-arm), const ARPHRD_DDCMP ideal-int +pkg syscall (linux-arm), const ARPHRD_DLCI ideal-int +pkg syscall (linux-arm), const ARPHRD_ECONET ideal-int +pkg syscall (linux-arm), const ARPHRD_EETHER ideal-int +pkg syscall (linux-arm), const ARPHRD_ETHER ideal-int +pkg syscall (linux-arm), const ARPHRD_EUI64 ideal-int +pkg syscall (linux-arm), const ARPHRD_FCAL ideal-int +pkg syscall (linux-arm), const ARPHRD_FCFABRIC ideal-int +pkg syscall (linux-arm), const ARPHRD_FCPL ideal-int +pkg syscall (linux-arm), const ARPHRD_FCPP ideal-int +pkg syscall (linux-arm), const ARPHRD_FDDI ideal-int +pkg syscall (linux-arm), const ARPHRD_FRAD ideal-int +pkg syscall (linux-arm), const ARPHRD_HDLC ideal-int +pkg syscall (linux-arm), const ARPHRD_HIPPI ideal-int +pkg syscall (linux-arm), const ARPHRD_HWX25 ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE1394 ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE802 ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE80211 ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE80211_PRISM ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE80211_RADIOTAP ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE802154 ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE802154_PHY ideal-int +pkg syscall (linux-arm), const ARPHRD_IEEE802_TR ideal-int +pkg syscall (linux-arm), const ARPHRD_INFINIBAND ideal-int +pkg syscall (linux-arm), const ARPHRD_IPDDP ideal-int +pkg syscall (linux-arm), const ARPHRD_IPGRE ideal-int +pkg syscall (linux-arm), const ARPHRD_IRDA ideal-int +pkg syscall (linux-arm), const ARPHRD_LAPB ideal-int +pkg syscall (linux-arm), const ARPHRD_LOCALTLK ideal-int +pkg syscall (linux-arm), const ARPHRD_LOOPBACK ideal-int +pkg syscall (linux-arm), const ARPHRD_METRICOM ideal-int +pkg syscall (linux-arm), const ARPHRD_NETROM ideal-int +pkg syscall (linux-arm), const ARPHRD_NONE ideal-int +pkg syscall (linux-arm), const ARPHRD_PIMREG ideal-int +pkg syscall (linux-arm), const ARPHRD_PPP ideal-int +pkg syscall (linux-arm), const ARPHRD_PRONET ideal-int +pkg syscall (linux-arm), const ARPHRD_RAWHDLC ideal-int +pkg syscall (linux-arm), const ARPHRD_ROSE ideal-int +pkg syscall (linux-arm), const ARPHRD_RSRVD ideal-int +pkg syscall (linux-arm), const ARPHRD_SIT ideal-int +pkg syscall (linux-arm), const ARPHRD_SKIP ideal-int +pkg syscall (linux-arm), const ARPHRD_SLIP ideal-int +pkg syscall (linux-arm), const ARPHRD_SLIP6 ideal-int +pkg syscall (linux-arm), const ARPHRD_TUNNEL ideal-int +pkg syscall (linux-arm), const ARPHRD_TUNNEL6 ideal-int +pkg syscall (linux-arm), const ARPHRD_VOID ideal-int +pkg syscall (linux-arm), const ARPHRD_X25 ideal-int +pkg syscall (linux-arm), const B0 ideal-int +pkg syscall (linux-arm), const B1000000 ideal-int +pkg syscall (linux-arm), const B110 ideal-int +pkg syscall (linux-arm), const B115200 ideal-int +pkg syscall (linux-arm), const B1152000 ideal-int +pkg syscall (linux-arm), const B1200 ideal-int +pkg syscall (linux-arm), const B134 ideal-int +pkg syscall (linux-arm), const B150 ideal-int +pkg syscall (linux-arm), const B1500000 ideal-int +pkg syscall (linux-arm), const B1800 ideal-int +pkg syscall (linux-arm), const B19200 ideal-int +pkg syscall (linux-arm), const B200 ideal-int +pkg syscall (linux-arm), const B2000000 ideal-int +pkg syscall (linux-arm), const B230400 ideal-int +pkg syscall (linux-arm), const B2400 ideal-int +pkg syscall (linux-arm), const B2500000 ideal-int +pkg syscall (linux-arm), const B300 ideal-int +pkg syscall (linux-arm), const B3000000 ideal-int +pkg syscall (linux-arm), const B3500000 ideal-int +pkg syscall (linux-arm), const B38400 ideal-int +pkg syscall (linux-arm), const B4000000 ideal-int +pkg syscall (linux-arm), const B460800 ideal-int +pkg syscall (linux-arm), const B4800 ideal-int +pkg syscall (linux-arm), const B50 ideal-int +pkg syscall (linux-arm), const B500000 ideal-int +pkg syscall (linux-arm), const B57600 ideal-int +pkg syscall (linux-arm), const B576000 ideal-int +pkg syscall (linux-arm), const B600 ideal-int +pkg syscall (linux-arm), const B75 ideal-int +pkg syscall (linux-arm), const B921600 ideal-int +pkg syscall (linux-arm), const B9600 ideal-int +pkg syscall (linux-arm), const BPF_A ideal-int +pkg syscall (linux-arm), const BPF_ABS ideal-int +pkg syscall (linux-arm), const BPF_ADD ideal-int +pkg syscall (linux-arm), const BPF_ALU ideal-int +pkg syscall (linux-arm), const BPF_AND ideal-int +pkg syscall (linux-arm), const BPF_B ideal-int +pkg syscall (linux-arm), const BPF_DIV ideal-int +pkg syscall (linux-arm), const BPF_H ideal-int +pkg syscall (linux-arm), const BPF_IMM ideal-int +pkg syscall (linux-arm), const BPF_IND ideal-int +pkg syscall (linux-arm), const BPF_JA ideal-int +pkg syscall (linux-arm), const BPF_JEQ ideal-int +pkg syscall (linux-arm), const BPF_JGE ideal-int +pkg syscall (linux-arm), const BPF_JGT ideal-int +pkg syscall (linux-arm), const BPF_JMP ideal-int +pkg syscall (linux-arm), const BPF_JSET ideal-int +pkg syscall (linux-arm), const BPF_K ideal-int +pkg syscall (linux-arm), const BPF_LD ideal-int +pkg syscall (linux-arm), const BPF_LDX ideal-int +pkg syscall (linux-arm), const BPF_LEN ideal-int +pkg syscall (linux-arm), const BPF_LSH ideal-int +pkg syscall (linux-arm), const BPF_MAJOR_VERSION ideal-int +pkg syscall (linux-arm), const BPF_MAXINSNS ideal-int +pkg syscall (linux-arm), const BPF_MEM ideal-int +pkg syscall (linux-arm), const BPF_MEMWORDS ideal-int +pkg syscall (linux-arm), const BPF_MINOR_VERSION ideal-int +pkg syscall (linux-arm), const BPF_MISC ideal-int +pkg syscall (linux-arm), const BPF_MSH ideal-int +pkg syscall (linux-arm), const BPF_MUL ideal-int +pkg syscall (linux-arm), const BPF_NEG ideal-int +pkg syscall (linux-arm), const BPF_OR ideal-int +pkg syscall (linux-arm), const BPF_RET ideal-int +pkg syscall (linux-arm), const BPF_RSH ideal-int +pkg syscall (linux-arm), const BPF_ST ideal-int +pkg syscall (linux-arm), const BPF_STX ideal-int +pkg syscall (linux-arm), const BPF_SUB ideal-int +pkg syscall (linux-arm), const BPF_TAX ideal-int +pkg syscall (linux-arm), const BPF_TXA ideal-int +pkg syscall (linux-arm), const BPF_W ideal-int +pkg syscall (linux-arm), const BPF_X ideal-int +pkg syscall (linux-arm), const BRKINT ideal-int +pkg syscall (linux-arm), const CLOCAL ideal-int +pkg syscall (linux-arm), const CREAD ideal-int +pkg syscall (linux-arm), const CS5 ideal-int +pkg syscall (linux-arm), const CS6 ideal-int +pkg syscall (linux-arm), const CS7 ideal-int +pkg syscall (linux-arm), const CS8 ideal-int +pkg syscall (linux-arm), const CSIZE ideal-int +pkg syscall (linux-arm), const CSTOPB ideal-int +pkg syscall (linux-arm), const DT_BLK ideal-int +pkg syscall (linux-arm), const DT_CHR ideal-int +pkg syscall (linux-arm), const DT_DIR ideal-int +pkg syscall (linux-arm), const DT_FIFO ideal-int +pkg syscall (linux-arm), const DT_LNK ideal-int +pkg syscall (linux-arm), const DT_REG ideal-int +pkg syscall (linux-arm), const DT_SOCK ideal-int +pkg syscall (linux-arm), const DT_UNKNOWN ideal-int +pkg syscall (linux-arm), const DT_WHT ideal-int +pkg syscall (linux-arm), const EADV Errno +pkg syscall (linux-arm), const EBADE Errno +pkg syscall (linux-arm), const EBADFD Errno +pkg syscall (linux-arm), const EBADMSG Errno +pkg syscall (linux-arm), const EBADR Errno +pkg syscall (linux-arm), const EBADRQC Errno +pkg syscall (linux-arm), const EBADSLT Errno +pkg syscall (linux-arm), const EBFONT Errno +pkg syscall (linux-arm), const ECHO ideal-int +pkg syscall (linux-arm), const ECHOCTL ideal-int +pkg syscall (linux-arm), const ECHOE ideal-int +pkg syscall (linux-arm), const ECHOK ideal-int +pkg syscall (linux-arm), const ECHOKE ideal-int +pkg syscall (linux-arm), const ECHONL ideal-int +pkg syscall (linux-arm), const ECHOPRT ideal-int +pkg syscall (linux-arm), const ECHRNG Errno +pkg syscall (linux-arm), const ECOMM Errno +pkg syscall (linux-arm), const EDEADLOCK Errno +pkg syscall (linux-arm), const EDOTDOT Errno +pkg syscall (linux-arm), const EHWPOISON Errno +pkg syscall (linux-arm), const EISNAM Errno +pkg syscall (linux-arm), const EKEYEXPIRED Errno +pkg syscall (linux-arm), const EKEYREJECTED Errno +pkg syscall (linux-arm), const EKEYREVOKED Errno +pkg syscall (linux-arm), const EL2HLT Errno +pkg syscall (linux-arm), const EL2NSYNC Errno +pkg syscall (linux-arm), const EL3HLT Errno +pkg syscall (linux-arm), const EL3RST Errno +pkg syscall (linux-arm), const ELF_NGREG ideal-int +pkg syscall (linux-arm), const ELF_PRARGSZ ideal-int +pkg syscall (linux-arm), const ELIBACC Errno +pkg syscall (linux-arm), const ELIBBAD Errno +pkg syscall (linux-arm), const ELIBEXEC Errno +pkg syscall (linux-arm), const ELIBMAX Errno +pkg syscall (linux-arm), const ELIBSCN Errno +pkg syscall (linux-arm), const ELNRNG Errno +pkg syscall (linux-arm), const EMEDIUMTYPE Errno +pkg syscall (linux-arm), const EMULTIHOP Errno +pkg syscall (linux-arm), const ENAVAIL Errno +pkg syscall (linux-arm), const ENOANO Errno +pkg syscall (linux-arm), const ENOCSI Errno +pkg syscall (linux-arm), const ENODATA Errno +pkg syscall (linux-arm), const ENOKEY Errno +pkg syscall (linux-arm), const ENOLINK Errno +pkg syscall (linux-arm), const ENOMEDIUM Errno +pkg syscall (linux-arm), const ENONET Errno +pkg syscall (linux-arm), const ENOPKG Errno +pkg syscall (linux-arm), const ENOSR Errno +pkg syscall (linux-arm), const ENOSTR Errno +pkg syscall (linux-arm), const ENOTNAM Errno +pkg syscall (linux-arm), const ENOTRECOVERABLE Errno +pkg syscall (linux-arm), const ENOTUNIQ Errno +pkg syscall (linux-arm), const EOWNERDEAD Errno +pkg syscall (linux-arm), const EPOLLERR ideal-int +pkg syscall (linux-arm), const EPOLLET ideal-int +pkg syscall (linux-arm), const EPOLLHUP ideal-int +pkg syscall (linux-arm), const EPOLLIN ideal-int +pkg syscall (linux-arm), const EPOLLMSG ideal-int +pkg syscall (linux-arm), const EPOLLONESHOT ideal-int +pkg syscall (linux-arm), const EPOLLOUT ideal-int +pkg syscall (linux-arm), const EPOLLPRI ideal-int +pkg syscall (linux-arm), const EPOLLRDBAND ideal-int +pkg syscall (linux-arm), const EPOLLRDHUP ideal-int +pkg syscall (linux-arm), const EPOLLRDNORM ideal-int +pkg syscall (linux-arm), const EPOLLWRBAND ideal-int +pkg syscall (linux-arm), const EPOLLWRNORM ideal-int +pkg syscall (linux-arm), const EPOLL_CLOEXEC ideal-int +pkg syscall (linux-arm), const EPOLL_CTL_ADD ideal-int +pkg syscall (linux-arm), const EPOLL_CTL_DEL ideal-int +pkg syscall (linux-arm), const EPOLL_CTL_MOD ideal-int +pkg syscall (linux-arm), const EPOLL_NONBLOCK ideal-int +pkg syscall (linux-arm), const EPROTO Errno +pkg syscall (linux-arm), const EREMCHG Errno +pkg syscall (linux-arm), const EREMOTEIO Errno +pkg syscall (linux-arm), const ERESTART Errno +pkg syscall (linux-arm), const ERFKILL Errno +pkg syscall (linux-arm), const ESRMNT Errno +pkg syscall (linux-arm), const ESTRPIPE Errno +pkg syscall (linux-arm), const ETH_P_1588 ideal-int +pkg syscall (linux-arm), const ETH_P_8021Q ideal-int +pkg syscall (linux-arm), const ETH_P_802_2 ideal-int +pkg syscall (linux-arm), const ETH_P_802_3 ideal-int +pkg syscall (linux-arm), const ETH_P_AARP ideal-int +pkg syscall (linux-arm), const ETH_P_ALL ideal-int +pkg syscall (linux-arm), const ETH_P_AOE ideal-int +pkg syscall (linux-arm), const ETH_P_ARCNET ideal-int +pkg syscall (linux-arm), const ETH_P_ARP ideal-int +pkg syscall (linux-arm), const ETH_P_ATALK ideal-int +pkg syscall (linux-arm), const ETH_P_ATMFATE ideal-int +pkg syscall (linux-arm), const ETH_P_ATMMPOA ideal-int +pkg syscall (linux-arm), const ETH_P_AX25 ideal-int +pkg syscall (linux-arm), const ETH_P_BPQ ideal-int +pkg syscall (linux-arm), const ETH_P_CAIF ideal-int +pkg syscall (linux-arm), const ETH_P_CAN ideal-int +pkg syscall (linux-arm), const ETH_P_CONTROL ideal-int +pkg syscall (linux-arm), const ETH_P_CUST ideal-int +pkg syscall (linux-arm), const ETH_P_DDCMP ideal-int +pkg syscall (linux-arm), const ETH_P_DEC ideal-int +pkg syscall (linux-arm), const ETH_P_DIAG ideal-int +pkg syscall (linux-arm), const ETH_P_DNA_DL ideal-int +pkg syscall (linux-arm), const ETH_P_DNA_RC ideal-int +pkg syscall (linux-arm), const ETH_P_DNA_RT ideal-int +pkg syscall (linux-arm), const ETH_P_DSA ideal-int +pkg syscall (linux-arm), const ETH_P_ECONET ideal-int +pkg syscall (linux-arm), const ETH_P_EDSA ideal-int +pkg syscall (linux-arm), const ETH_P_FCOE ideal-int +pkg syscall (linux-arm), const ETH_P_FIP ideal-int +pkg syscall (linux-arm), const ETH_P_HDLC ideal-int +pkg syscall (linux-arm), const ETH_P_IEEE802154 ideal-int +pkg syscall (linux-arm), const ETH_P_IEEEPUP ideal-int +pkg syscall (linux-arm), const ETH_P_IEEEPUPAT ideal-int +pkg syscall (linux-arm), const ETH_P_IP ideal-int +pkg syscall (linux-arm), const ETH_P_IPV6 ideal-int +pkg syscall (linux-arm), const ETH_P_IPX ideal-int +pkg syscall (linux-arm), const ETH_P_IRDA ideal-int +pkg syscall (linux-arm), const ETH_P_LAT ideal-int +pkg syscall (linux-arm), const ETH_P_LINK_CTL ideal-int +pkg syscall (linux-arm), const ETH_P_LOCALTALK ideal-int +pkg syscall (linux-arm), const ETH_P_LOOP ideal-int +pkg syscall (linux-arm), const ETH_P_MOBITEX ideal-int +pkg syscall (linux-arm), const ETH_P_MPLS_MC ideal-int +pkg syscall (linux-arm), const ETH_P_MPLS_UC ideal-int +pkg syscall (linux-arm), const ETH_P_PAE ideal-int +pkg syscall (linux-arm), const ETH_P_PAUSE ideal-int +pkg syscall (linux-arm), const ETH_P_PHONET ideal-int +pkg syscall (linux-arm), const ETH_P_PPPTALK ideal-int +pkg syscall (linux-arm), const ETH_P_PPP_DISC ideal-int +pkg syscall (linux-arm), const ETH_P_PPP_MP ideal-int +pkg syscall (linux-arm), const ETH_P_PPP_SES ideal-int +pkg syscall (linux-arm), const ETH_P_PUP ideal-int +pkg syscall (linux-arm), const ETH_P_PUPAT ideal-int +pkg syscall (linux-arm), const ETH_P_RARP ideal-int +pkg syscall (linux-arm), const ETH_P_SCA ideal-int +pkg syscall (linux-arm), const ETH_P_SLOW ideal-int +pkg syscall (linux-arm), const ETH_P_SNAP ideal-int +pkg syscall (linux-arm), const ETH_P_TEB ideal-int +pkg syscall (linux-arm), const ETH_P_TIPC ideal-int +pkg syscall (linux-arm), const ETH_P_TRAILER ideal-int +pkg syscall (linux-arm), const ETH_P_TR_802_2 ideal-int +pkg syscall (linux-arm), const ETH_P_WAN_PPP ideal-int +pkg syscall (linux-arm), const ETH_P_WCCP ideal-int +pkg syscall (linux-arm), const ETH_P_X25 ideal-int +pkg syscall (linux-arm), const ETIME Errno +pkg syscall (linux-arm), const EUCLEAN Errno +pkg syscall (linux-arm), const EUNATCH Errno +pkg syscall (linux-arm), const EXFULL Errno +pkg syscall (linux-arm), const FD_CLOEXEC ideal-int +pkg syscall (linux-arm), const FD_SETSIZE ideal-int +pkg syscall (linux-arm), const FLUSHO ideal-int +pkg syscall (linux-arm), const F_DUPFD ideal-int +pkg syscall (linux-arm), const F_DUPFD_CLOEXEC ideal-int +pkg syscall (linux-arm), const F_EXLCK ideal-int +pkg syscall (linux-arm), const F_GETFD ideal-int +pkg syscall (linux-arm), const F_GETFL ideal-int +pkg syscall (linux-arm), const F_GETLEASE ideal-int +pkg syscall (linux-arm), const F_GETLK ideal-int +pkg syscall (linux-arm), const F_GETLK64 ideal-int +pkg syscall (linux-arm), const F_GETOWN ideal-int +pkg syscall (linux-arm), const F_GETOWN_EX ideal-int +pkg syscall (linux-arm), const F_GETPIPE_SZ ideal-int +pkg syscall (linux-arm), const F_GETSIG ideal-int +pkg syscall (linux-arm), const F_LOCK ideal-int +pkg syscall (linux-arm), const F_NOTIFY ideal-int +pkg syscall (linux-arm), const F_OK ideal-int +pkg syscall (linux-arm), const F_RDLCK ideal-int +pkg syscall (linux-arm), const F_SETFD ideal-int +pkg syscall (linux-arm), const F_SETFL ideal-int +pkg syscall (linux-arm), const F_SETLEASE ideal-int +pkg syscall (linux-arm), const F_SETLK ideal-int +pkg syscall (linux-arm), const F_SETLK64 ideal-int +pkg syscall (linux-arm), const F_SETLKW ideal-int +pkg syscall (linux-arm), const F_SETLKW64 ideal-int +pkg syscall (linux-arm), const F_SETOWN ideal-int +pkg syscall (linux-arm), const F_SETOWN_EX ideal-int +pkg syscall (linux-arm), const F_SETPIPE_SZ ideal-int +pkg syscall (linux-arm), const F_SETSIG ideal-int +pkg syscall (linux-arm), const F_SHLCK ideal-int +pkg syscall (linux-arm), const F_TEST ideal-int +pkg syscall (linux-arm), const F_TLOCK ideal-int +pkg syscall (linux-arm), const F_ULOCK ideal-int +pkg syscall (linux-arm), const F_UNLCK ideal-int +pkg syscall (linux-arm), const F_WRLCK ideal-int +pkg syscall (linux-arm), const HUPCL ideal-int +pkg syscall (linux-arm), const ICANON ideal-int +pkg syscall (linux-arm), const ICRNL ideal-int +pkg syscall (linux-arm), const IEXTEN ideal-int +pkg syscall (linux-arm), const IFA_ADDRESS ideal-int +pkg syscall (linux-arm), const IFA_ANYCAST ideal-int +pkg syscall (linux-arm), const IFA_BROADCAST ideal-int +pkg syscall (linux-arm), const IFA_CACHEINFO ideal-int +pkg syscall (linux-arm), const IFA_F_DADFAILED ideal-int +pkg syscall (linux-arm), const IFA_F_DEPRECATED ideal-int +pkg syscall (linux-arm), const IFA_F_HOMEADDRESS ideal-int +pkg syscall (linux-arm), const IFA_F_NODAD ideal-int +pkg syscall (linux-arm), const IFA_F_OPTIMISTIC ideal-int +pkg syscall (linux-arm), const IFA_F_PERMANENT ideal-int +pkg syscall (linux-arm), const IFA_F_SECONDARY ideal-int +pkg syscall (linux-arm), const IFA_F_TEMPORARY ideal-int +pkg syscall (linux-arm), const IFA_F_TENTATIVE ideal-int +pkg syscall (linux-arm), const IFA_LABEL ideal-int +pkg syscall (linux-arm), const IFA_LOCAL ideal-int +pkg syscall (linux-arm), const IFA_MAX ideal-int +pkg syscall (linux-arm), const IFA_MULTICAST ideal-int +pkg syscall (linux-arm), const IFA_UNSPEC ideal-int +pkg syscall (linux-arm), const IFF_ALLMULTI ideal-int +pkg syscall (linux-arm), const IFF_AUTOMEDIA ideal-int +pkg syscall (linux-arm), const IFF_DEBUG ideal-int +pkg syscall (linux-arm), const IFF_DYNAMIC ideal-int +pkg syscall (linux-arm), const IFF_MASTER ideal-int +pkg syscall (linux-arm), const IFF_NOARP ideal-int +pkg syscall (linux-arm), const IFF_NOTRAILERS ideal-int +pkg syscall (linux-arm), const IFF_NO_PI ideal-int +pkg syscall (linux-arm), const IFF_ONE_QUEUE ideal-int +pkg syscall (linux-arm), const IFF_POINTOPOINT ideal-int +pkg syscall (linux-arm), const IFF_PORTSEL ideal-int +pkg syscall (linux-arm), const IFF_PROMISC ideal-int +pkg syscall (linux-arm), const IFF_RUNNING ideal-int +pkg syscall (linux-arm), const IFF_SLAVE ideal-int +pkg syscall (linux-arm), const IFF_TAP ideal-int +pkg syscall (linux-arm), const IFF_TUN ideal-int +pkg syscall (linux-arm), const IFF_TUN_EXCL ideal-int +pkg syscall (linux-arm), const IFF_VNET_HDR ideal-int +pkg syscall (linux-arm), const IFLA_ADDRESS ideal-int +pkg syscall (linux-arm), const IFLA_BROADCAST ideal-int +pkg syscall (linux-arm), const IFLA_COST ideal-int +pkg syscall (linux-arm), const IFLA_IFALIAS ideal-int +pkg syscall (linux-arm), const IFLA_IFNAME ideal-int +pkg syscall (linux-arm), const IFLA_LINK ideal-int +pkg syscall (linux-arm), const IFLA_LINKINFO ideal-int +pkg syscall (linux-arm), const IFLA_LINKMODE ideal-int +pkg syscall (linux-arm), const IFLA_MAP ideal-int +pkg syscall (linux-arm), const IFLA_MASTER ideal-int +pkg syscall (linux-arm), const IFLA_MAX ideal-int +pkg syscall (linux-arm), const IFLA_MTU ideal-int +pkg syscall (linux-arm), const IFLA_NET_NS_PID ideal-int +pkg syscall (linux-arm), const IFLA_OPERSTATE ideal-int +pkg syscall (linux-arm), const IFLA_PRIORITY ideal-int +pkg syscall (linux-arm), const IFLA_PROTINFO ideal-int +pkg syscall (linux-arm), const IFLA_QDISC ideal-int +pkg syscall (linux-arm), const IFLA_STATS ideal-int +pkg syscall (linux-arm), const IFLA_TXQLEN ideal-int +pkg syscall (linux-arm), const IFLA_UNSPEC ideal-int +pkg syscall (linux-arm), const IFLA_WEIGHT ideal-int +pkg syscall (linux-arm), const IFLA_WIRELESS ideal-int +pkg syscall (linux-arm), const IFNAMSIZ ideal-int +pkg syscall (linux-arm), const IGNBRK ideal-int +pkg syscall (linux-arm), const IGNCR ideal-int +pkg syscall (linux-arm), const IGNPAR ideal-int +pkg syscall (linux-arm), const IMAXBEL ideal-int +pkg syscall (linux-arm), const INLCR ideal-int +pkg syscall (linux-arm), const INPCK ideal-int +pkg syscall (linux-arm), const IN_ACCESS ideal-int +pkg syscall (linux-arm), const IN_ALL_EVENTS ideal-int +pkg syscall (linux-arm), const IN_ATTRIB ideal-int +pkg syscall (linux-arm), const IN_CLASSA_HOST ideal-int +pkg syscall (linux-arm), const IN_CLASSA_MAX ideal-int +pkg syscall (linux-arm), const IN_CLASSA_NET ideal-int +pkg syscall (linux-arm), const IN_CLASSA_NSHIFT ideal-int +pkg syscall (linux-arm), const IN_CLASSB_HOST ideal-int +pkg syscall (linux-arm), const IN_CLASSB_MAX ideal-int +pkg syscall (linux-arm), const IN_CLASSB_NET ideal-int +pkg syscall (linux-arm), const IN_CLASSB_NSHIFT ideal-int +pkg syscall (linux-arm), const IN_CLASSC_HOST ideal-int +pkg syscall (linux-arm), const IN_CLASSC_NET ideal-int +pkg syscall (linux-arm), const IN_CLASSC_NSHIFT ideal-int +pkg syscall (linux-arm), const IN_CLOEXEC ideal-int +pkg syscall (linux-arm), const IN_CLOSE ideal-int +pkg syscall (linux-arm), const IN_CLOSE_NOWRITE ideal-int +pkg syscall (linux-arm), const IN_CLOSE_WRITE ideal-int +pkg syscall (linux-arm), const IN_CREATE ideal-int +pkg syscall (linux-arm), const IN_DELETE ideal-int +pkg syscall (linux-arm), const IN_DELETE_SELF ideal-int +pkg syscall (linux-arm), const IN_DONT_FOLLOW ideal-int +pkg syscall (linux-arm), const IN_EXCL_UNLINK ideal-int +pkg syscall (linux-arm), const IN_IGNORED ideal-int +pkg syscall (linux-arm), const IN_ISDIR ideal-int +pkg syscall (linux-arm), const IN_LOOPBACKNET ideal-int +pkg syscall (linux-arm), const IN_MASK_ADD ideal-int +pkg syscall (linux-arm), const IN_MODIFY ideal-int +pkg syscall (linux-arm), const IN_MOVE ideal-int +pkg syscall (linux-arm), const IN_MOVED_FROM ideal-int +pkg syscall (linux-arm), const IN_MOVED_TO ideal-int +pkg syscall (linux-arm), const IN_MOVE_SELF ideal-int +pkg syscall (linux-arm), const IN_NONBLOCK ideal-int +pkg syscall (linux-arm), const IN_ONESHOT ideal-int +pkg syscall (linux-arm), const IN_ONLYDIR ideal-int +pkg syscall (linux-arm), const IN_OPEN ideal-int +pkg syscall (linux-arm), const IN_Q_OVERFLOW ideal-int +pkg syscall (linux-arm), const IN_UNMOUNT ideal-int +pkg syscall (linux-arm), const IPPROTO_AH ideal-int +pkg syscall (linux-arm), const IPPROTO_COMP ideal-int +pkg syscall (linux-arm), const IPPROTO_DCCP ideal-int +pkg syscall (linux-arm), const IPPROTO_DSTOPTS ideal-int +pkg syscall (linux-arm), const IPPROTO_EGP ideal-int +pkg syscall (linux-arm), const IPPROTO_ENCAP ideal-int +pkg syscall (linux-arm), const IPPROTO_ESP ideal-int +pkg syscall (linux-arm), const IPPROTO_FRAGMENT ideal-int +pkg syscall (linux-arm), const IPPROTO_GRE ideal-int +pkg syscall (linux-arm), const IPPROTO_HOPOPTS ideal-int +pkg syscall (linux-arm), const IPPROTO_ICMP ideal-int +pkg syscall (linux-arm), const IPPROTO_ICMPV6 ideal-int +pkg syscall (linux-arm), const IPPROTO_IDP ideal-int +pkg syscall (linux-arm), const IPPROTO_IGMP ideal-int +pkg syscall (linux-arm), const IPPROTO_IPIP ideal-int +pkg syscall (linux-arm), const IPPROTO_MTP ideal-int +pkg syscall (linux-arm), const IPPROTO_NONE ideal-int +pkg syscall (linux-arm), const IPPROTO_PIM ideal-int +pkg syscall (linux-arm), const IPPROTO_PUP ideal-int +pkg syscall (linux-arm), const IPPROTO_RAW ideal-int +pkg syscall (linux-arm), const IPPROTO_ROUTING ideal-int +pkg syscall (linux-arm), const IPPROTO_RSVP ideal-int +pkg syscall (linux-arm), const IPPROTO_SCTP ideal-int +pkg syscall (linux-arm), const IPPROTO_TP ideal-int +pkg syscall (linux-arm), const IPPROTO_UDPLITE ideal-int +pkg syscall (linux-arm), const IPV6_2292DSTOPTS ideal-int +pkg syscall (linux-arm), const IPV6_2292HOPLIMIT ideal-int +pkg syscall (linux-arm), const IPV6_2292HOPOPTS ideal-int +pkg syscall (linux-arm), const IPV6_2292PKTINFO ideal-int +pkg syscall (linux-arm), const IPV6_2292PKTOPTIONS ideal-int +pkg syscall (linux-arm), const IPV6_2292RTHDR ideal-int +pkg syscall (linux-arm), const IPV6_ADDRFORM ideal-int +pkg syscall (linux-arm), const IPV6_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const IPV6_AUTHHDR ideal-int +pkg syscall (linux-arm), const IPV6_CHECKSUM ideal-int +pkg syscall (linux-arm), const IPV6_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const IPV6_DSTOPTS ideal-int +pkg syscall (linux-arm), const IPV6_HOPLIMIT ideal-int +pkg syscall (linux-arm), const IPV6_HOPOPTS ideal-int +pkg syscall (linux-arm), const IPV6_IPSEC_POLICY ideal-int +pkg syscall (linux-arm), const IPV6_JOIN_ANYCAST ideal-int +pkg syscall (linux-arm), const IPV6_LEAVE_ANYCAST ideal-int +pkg syscall (linux-arm), const IPV6_MTU ideal-int +pkg syscall (linux-arm), const IPV6_MTU_DISCOVER ideal-int +pkg syscall (linux-arm), const IPV6_NEXTHOP ideal-int +pkg syscall (linux-arm), const IPV6_PKTINFO ideal-int +pkg syscall (linux-arm), const IPV6_PMTUDISC_DO ideal-int +pkg syscall (linux-arm), const IPV6_PMTUDISC_DONT ideal-int +pkg syscall (linux-arm), const IPV6_PMTUDISC_PROBE ideal-int +pkg syscall (linux-arm), const IPV6_PMTUDISC_WANT ideal-int +pkg syscall (linux-arm), const IPV6_RECVDSTOPTS ideal-int +pkg syscall (linux-arm), const IPV6_RECVERR ideal-int +pkg syscall (linux-arm), const IPV6_RECVHOPLIMIT ideal-int +pkg syscall (linux-arm), const IPV6_RECVHOPOPTS ideal-int +pkg syscall (linux-arm), const IPV6_RECVPKTINFO ideal-int +pkg syscall (linux-arm), const IPV6_RECVRTHDR ideal-int +pkg syscall (linux-arm), const IPV6_RECVTCLASS ideal-int +pkg syscall (linux-arm), const IPV6_ROUTER_ALERT ideal-int +pkg syscall (linux-arm), const IPV6_RTHDR ideal-int +pkg syscall (linux-arm), const IPV6_RTHDRDSTOPTS ideal-int +pkg syscall (linux-arm), const IPV6_RTHDR_LOOSE ideal-int +pkg syscall (linux-arm), const IPV6_RTHDR_STRICT ideal-int +pkg syscall (linux-arm), const IPV6_RTHDR_TYPE_0 ideal-int +pkg syscall (linux-arm), const IPV6_RXDSTOPTS ideal-int +pkg syscall (linux-arm), const IPV6_RXHOPOPTS ideal-int +pkg syscall (linux-arm), const IPV6_TCLASS ideal-int +pkg syscall (linux-arm), const IPV6_XFRM_POLICY ideal-int +pkg syscall (linux-arm), const IP_ADD_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const IP_BLOCK_SOURCE ideal-int +pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_LOOP ideal-int +pkg syscall (linux-arm), const IP_DEFAULT_MULTICAST_TTL ideal-int +pkg syscall (linux-arm), const IP_DF ideal-int +pkg syscall (linux-arm), const IP_DROP_SOURCE_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const IP_FREEBIND ideal-int +pkg syscall (linux-arm), const IP_HDRINCL ideal-int +pkg syscall (linux-arm), const IP_IPSEC_POLICY ideal-int +pkg syscall (linux-arm), const IP_MAXPACKET ideal-int +pkg syscall (linux-arm), const IP_MAX_MEMBERSHIPS ideal-int +pkg syscall (linux-arm), const IP_MF ideal-int +pkg syscall (linux-arm), const IP_MINTTL ideal-int +pkg syscall (linux-arm), const IP_MSFILTER ideal-int +pkg syscall (linux-arm), const IP_MSS ideal-int +pkg syscall (linux-arm), const IP_MTU ideal-int +pkg syscall (linux-arm), const IP_MTU_DISCOVER ideal-int +pkg syscall (linux-arm), const IP_OFFMASK ideal-int +pkg syscall (linux-arm), const IP_OPTIONS ideal-int +pkg syscall (linux-arm), const IP_ORIGDSTADDR ideal-int +pkg syscall (linux-arm), const IP_PASSSEC ideal-int +pkg syscall (linux-arm), const IP_PKTINFO ideal-int +pkg syscall (linux-arm), const IP_PKTOPTIONS ideal-int +pkg syscall (linux-arm), const IP_PMTUDISC ideal-int +pkg syscall (linux-arm), const IP_PMTUDISC_DO ideal-int +pkg syscall (linux-arm), const IP_PMTUDISC_DONT ideal-int +pkg syscall (linux-arm), const IP_PMTUDISC_PROBE ideal-int +pkg syscall (linux-arm), const IP_PMTUDISC_WANT ideal-int +pkg syscall (linux-arm), const IP_RECVERR ideal-int +pkg syscall (linux-arm), const IP_RECVOPTS ideal-int +pkg syscall (linux-arm), const IP_RECVORIGDSTADDR ideal-int +pkg syscall (linux-arm), const IP_RECVRETOPTS ideal-int +pkg syscall (linux-arm), const IP_RECVTOS ideal-int +pkg syscall (linux-arm), const IP_RECVTTL ideal-int +pkg syscall (linux-arm), const IP_RETOPTS ideal-int +pkg syscall (linux-arm), const IP_RF ideal-int +pkg syscall (linux-arm), const IP_ROUTER_ALERT ideal-int +pkg syscall (linux-arm), const IP_TRANSPARENT ideal-int +pkg syscall (linux-arm), const IP_UNBLOCK_SOURCE ideal-int +pkg syscall (linux-arm), const IP_XFRM_POLICY ideal-int +pkg syscall (linux-arm), const ISIG ideal-int +pkg syscall (linux-arm), const ISTRIP ideal-int +pkg syscall (linux-arm), const IUCLC ideal-int +pkg syscall (linux-arm), const IUTF8 ideal-int +pkg syscall (linux-arm), const IXANY ideal-int +pkg syscall (linux-arm), const IXOFF ideal-int +pkg syscall (linux-arm), const IXON ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_OFF ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_CAD_ON ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_HALT ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_KEXEC ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_POWER_OFF ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_RESTART2 ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC1 ideal-int +pkg syscall (linux-arm), const LINUX_REBOOT_MAGIC2 ideal-int +pkg syscall (linux-arm), const LOCK_EX ideal-int +pkg syscall (linux-arm), const LOCK_NB ideal-int +pkg syscall (linux-arm), const LOCK_SH ideal-int +pkg syscall (linux-arm), const LOCK_UN ideal-int +pkg syscall (linux-arm), const MADV_DOFORK ideal-int +pkg syscall (linux-arm), const MADV_DONTFORK ideal-int +pkg syscall (linux-arm), const MADV_DONTNEED ideal-int +pkg syscall (linux-arm), const MADV_HUGEPAGE ideal-int +pkg syscall (linux-arm), const MADV_HWPOISON ideal-int +pkg syscall (linux-arm), const MADV_MERGEABLE ideal-int +pkg syscall (linux-arm), const MADV_NOHUGEPAGE ideal-int +pkg syscall (linux-arm), const MADV_NORMAL ideal-int +pkg syscall (linux-arm), const MADV_RANDOM ideal-int +pkg syscall (linux-arm), const MADV_REMOVE ideal-int +pkg syscall (linux-arm), const MADV_SEQUENTIAL ideal-int +pkg syscall (linux-arm), const MADV_UNMERGEABLE ideal-int +pkg syscall (linux-arm), const MADV_WILLNEED ideal-int +pkg syscall (linux-arm), const MAP_ANON ideal-int +pkg syscall (linux-arm), const MAP_ANONYMOUS ideal-int +pkg syscall (linux-arm), const MAP_DENYWRITE ideal-int +pkg syscall (linux-arm), const MAP_EXECUTABLE ideal-int +pkg syscall (linux-arm), const MAP_FILE ideal-int +pkg syscall (linux-arm), const MAP_FIXED ideal-int +pkg syscall (linux-arm), const MAP_GROWSDOWN ideal-int +pkg syscall (linux-arm), const MAP_LOCKED ideal-int +pkg syscall (linux-arm), const MAP_NONBLOCK ideal-int +pkg syscall (linux-arm), const MAP_NORESERVE ideal-int +pkg syscall (linux-arm), const MAP_POPULATE ideal-int +pkg syscall (linux-arm), const MAP_PRIVATE ideal-int +pkg syscall (linux-arm), const MAP_SHARED ideal-int +pkg syscall (linux-arm), const MAP_TYPE ideal-int +pkg syscall (linux-arm), const MCL_CURRENT ideal-int +pkg syscall (linux-arm), const MCL_FUTURE ideal-int +pkg syscall (linux-arm), const MNT_DETACH ideal-int +pkg syscall (linux-arm), const MNT_EXPIRE ideal-int +pkg syscall (linux-arm), const MNT_FORCE ideal-int +pkg syscall (linux-arm), const MSG_CMSG_CLOEXEC ideal-int +pkg syscall (linux-arm), const MSG_CONFIRM ideal-int +pkg syscall (linux-arm), const MSG_CTRUNC ideal-int +pkg syscall (linux-arm), const MSG_DONTROUTE ideal-int +pkg syscall (linux-arm), const MSG_DONTWAIT ideal-int +pkg syscall (linux-arm), const MSG_EOR ideal-int +pkg syscall (linux-arm), const MSG_ERRQUEUE ideal-int +pkg syscall (linux-arm), const MSG_FIN ideal-int +pkg syscall (linux-arm), const MSG_MORE ideal-int +pkg syscall (linux-arm), const MSG_NOSIGNAL ideal-int +pkg syscall (linux-arm), const MSG_OOB ideal-int +pkg syscall (linux-arm), const MSG_PEEK ideal-int +pkg syscall (linux-arm), const MSG_PROXY ideal-int +pkg syscall (linux-arm), const MSG_RST ideal-int +pkg syscall (linux-arm), const MSG_SYN ideal-int +pkg syscall (linux-arm), const MSG_TRUNC ideal-int +pkg syscall (linux-arm), const MSG_TRYHARD ideal-int +pkg syscall (linux-arm), const MSG_WAITALL ideal-int +pkg syscall (linux-arm), const MSG_WAITFORONE ideal-int +pkg syscall (linux-arm), const MS_ACTIVE ideal-int +pkg syscall (linux-arm), const MS_ASYNC ideal-int +pkg syscall (linux-arm), const MS_BIND ideal-int +pkg syscall (linux-arm), const MS_DIRSYNC ideal-int +pkg syscall (linux-arm), const MS_INVALIDATE ideal-int +pkg syscall (linux-arm), const MS_I_VERSION ideal-int +pkg syscall (linux-arm), const MS_KERNMOUNT ideal-int +pkg syscall (linux-arm), const MS_MANDLOCK ideal-int +pkg syscall (linux-arm), const MS_MGC_MSK ideal-int +pkg syscall (linux-arm), const MS_MGC_VAL ideal-int +pkg syscall (linux-arm), const MS_MOVE ideal-int +pkg syscall (linux-arm), const MS_NOATIME ideal-int +pkg syscall (linux-arm), const MS_NODEV ideal-int +pkg syscall (linux-arm), const MS_NODIRATIME ideal-int +pkg syscall (linux-arm), const MS_NOEXEC ideal-int +pkg syscall (linux-arm), const MS_NOSUID ideal-int +pkg syscall (linux-arm), const MS_NOUSER ideal-int +pkg syscall (linux-arm), const MS_POSIXACL ideal-int +pkg syscall (linux-arm), const MS_PRIVATE ideal-int +pkg syscall (linux-arm), const MS_RDONLY ideal-int +pkg syscall (linux-arm), const MS_REC ideal-int +pkg syscall (linux-arm), const MS_RELATIME ideal-int +pkg syscall (linux-arm), const MS_REMOUNT ideal-int +pkg syscall (linux-arm), const MS_RMT_MASK ideal-int +pkg syscall (linux-arm), const MS_SHARED ideal-int +pkg syscall (linux-arm), const MS_SILENT ideal-int +pkg syscall (linux-arm), const MS_SLAVE ideal-int +pkg syscall (linux-arm), const MS_STRICTATIME ideal-int +pkg syscall (linux-arm), const MS_SYNC ideal-int +pkg syscall (linux-arm), const MS_SYNCHRONOUS ideal-int +pkg syscall (linux-arm), const MS_UNBINDABLE ideal-int +pkg syscall (linux-arm), const NAME_MAX ideal-int +pkg syscall (linux-arm), const NETLINK_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const NETLINK_AUDIT ideal-int +pkg syscall (linux-arm), const NETLINK_BROADCAST_ERROR ideal-int +pkg syscall (linux-arm), const NETLINK_CONNECTOR ideal-int +pkg syscall (linux-arm), const NETLINK_DNRTMSG ideal-int +pkg syscall (linux-arm), const NETLINK_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const NETLINK_ECRYPTFS ideal-int +pkg syscall (linux-arm), const NETLINK_FIB_LOOKUP ideal-int +pkg syscall (linux-arm), const NETLINK_FIREWALL ideal-int +pkg syscall (linux-arm), const NETLINK_GENERIC ideal-int +pkg syscall (linux-arm), const NETLINK_INET_DIAG ideal-int +pkg syscall (linux-arm), const NETLINK_IP6_FW ideal-int +pkg syscall (linux-arm), const NETLINK_ISCSI ideal-int +pkg syscall (linux-arm), const NETLINK_KOBJECT_UEVENT ideal-int +pkg syscall (linux-arm), const NETLINK_NETFILTER ideal-int +pkg syscall (linux-arm), const NETLINK_NFLOG ideal-int +pkg syscall (linux-arm), const NETLINK_NO_ENOBUFS ideal-int +pkg syscall (linux-arm), const NETLINK_PKTINFO ideal-int +pkg syscall (linux-arm), const NETLINK_RDMA ideal-int +pkg syscall (linux-arm), const NETLINK_ROUTE ideal-int +pkg syscall (linux-arm), const NETLINK_SCSITRANSPORT ideal-int +pkg syscall (linux-arm), const NETLINK_SELINUX ideal-int +pkg syscall (linux-arm), const NETLINK_UNUSED ideal-int +pkg syscall (linux-arm), const NETLINK_USERSOCK ideal-int +pkg syscall (linux-arm), const NETLINK_XFRM ideal-int +pkg syscall (linux-arm), const NLA_ALIGNTO ideal-int +pkg syscall (linux-arm), const NLA_F_NESTED ideal-int +pkg syscall (linux-arm), const NLA_F_NET_BYTEORDER ideal-int +pkg syscall (linux-arm), const NLA_HDRLEN ideal-int +pkg syscall (linux-arm), const NLMSG_ALIGNTO ideal-int +pkg syscall (linux-arm), const NLMSG_DONE ideal-int +pkg syscall (linux-arm), const NLMSG_ERROR ideal-int +pkg syscall (linux-arm), const NLMSG_HDRLEN ideal-int +pkg syscall (linux-arm), const NLMSG_MIN_TYPE ideal-int +pkg syscall (linux-arm), const NLMSG_NOOP ideal-int +pkg syscall (linux-arm), const NLMSG_OVERRUN ideal-int +pkg syscall (linux-arm), const NLM_F_ACK ideal-int +pkg syscall (linux-arm), const NLM_F_APPEND ideal-int +pkg syscall (linux-arm), const NLM_F_ATOMIC ideal-int +pkg syscall (linux-arm), const NLM_F_CREATE ideal-int +pkg syscall (linux-arm), const NLM_F_DUMP ideal-int +pkg syscall (linux-arm), const NLM_F_ECHO ideal-int +pkg syscall (linux-arm), const NLM_F_EXCL ideal-int +pkg syscall (linux-arm), const NLM_F_MATCH ideal-int +pkg syscall (linux-arm), const NLM_F_MULTI ideal-int +pkg syscall (linux-arm), const NLM_F_REPLACE ideal-int +pkg syscall (linux-arm), const NLM_F_REQUEST ideal-int +pkg syscall (linux-arm), const NLM_F_ROOT ideal-int +pkg syscall (linux-arm), const NOFLSH ideal-int +pkg syscall (linux-arm), const OCRNL ideal-int +pkg syscall (linux-arm), const OFDEL ideal-int +pkg syscall (linux-arm), const OFILL ideal-int +pkg syscall (linux-arm), const OLCUC ideal-int +pkg syscall (linux-arm), const ONLCR ideal-int +pkg syscall (linux-arm), const ONLRET ideal-int +pkg syscall (linux-arm), const ONOCR ideal-int +pkg syscall (linux-arm), const OPOST ideal-int +pkg syscall (linux-arm), const O_ACCMODE ideal-int +pkg syscall (linux-arm), const O_DIRECT ideal-int +pkg syscall (linux-arm), const O_DIRECTORY ideal-int +pkg syscall (linux-arm), const O_DSYNC ideal-int +pkg syscall (linux-arm), const O_FSYNC ideal-int +pkg syscall (linux-arm), const O_LARGEFILE ideal-int +pkg syscall (linux-arm), const O_NDELAY ideal-int +pkg syscall (linux-arm), const O_NOATIME ideal-int +pkg syscall (linux-arm), const O_NOFOLLOW ideal-int +pkg syscall (linux-arm), const O_RSYNC ideal-int +pkg syscall (linux-arm), const PACKET_ADD_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const PACKET_BROADCAST ideal-int +pkg syscall (linux-arm), const PACKET_DROP_MEMBERSHIP ideal-int +pkg syscall (linux-arm), const PACKET_FASTROUTE ideal-int +pkg syscall (linux-arm), const PACKET_HOST ideal-int +pkg syscall (linux-arm), const PACKET_LOOPBACK ideal-int +pkg syscall (linux-arm), const PACKET_MR_ALLMULTI ideal-int +pkg syscall (linux-arm), const PACKET_MR_MULTICAST ideal-int +pkg syscall (linux-arm), const PACKET_MR_PROMISC ideal-int +pkg syscall (linux-arm), const PACKET_MULTICAST ideal-int +pkg syscall (linux-arm), const PACKET_OTHERHOST ideal-int +pkg syscall (linux-arm), const PACKET_OUTGOING ideal-int +pkg syscall (linux-arm), const PACKET_RECV_OUTPUT ideal-int +pkg syscall (linux-arm), const PACKET_RX_RING ideal-int +pkg syscall (linux-arm), const PACKET_STATISTICS ideal-int +pkg syscall (linux-arm), const PARENB ideal-int +pkg syscall (linux-arm), const PARMRK ideal-int +pkg syscall (linux-arm), const PARODD ideal-int +pkg syscall (linux-arm), const PENDIN ideal-int +pkg syscall (linux-arm), const PROT_EXEC ideal-int +pkg syscall (linux-arm), const PROT_GROWSDOWN ideal-int +pkg syscall (linux-arm), const PROT_GROWSUP ideal-int +pkg syscall (linux-arm), const PROT_NONE ideal-int +pkg syscall (linux-arm), const PROT_READ ideal-int +pkg syscall (linux-arm), const PROT_WRITE ideal-int +pkg syscall (linux-arm), const PR_CAPBSET_DROP ideal-int +pkg syscall (linux-arm), const PR_CAPBSET_READ ideal-int +pkg syscall (linux-arm), const PR_CLEAR_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm), const PR_ENDIAN_BIG ideal-int +pkg syscall (linux-arm), const PR_ENDIAN_LITTLE ideal-int +pkg syscall (linux-arm), const PR_ENDIAN_PPC_LITTLE ideal-int +pkg syscall (linux-arm), const PR_FPEMU_NOPRINT ideal-int +pkg syscall (linux-arm), const PR_FPEMU_SIGFPE ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_ASYNC ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_DISABLED ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_DIV ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_INV ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_NONRECOV ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_OVF ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_PRECISE ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_RES ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_SW_ENABLE ideal-int +pkg syscall (linux-arm), const PR_FP_EXC_UND ideal-int +pkg syscall (linux-arm), const PR_GET_DUMPABLE ideal-int +pkg syscall (linux-arm), const PR_GET_ENDIAN ideal-int +pkg syscall (linux-arm), const PR_GET_FPEMU ideal-int +pkg syscall (linux-arm), const PR_GET_FPEXC ideal-int +pkg syscall (linux-arm), const PR_GET_KEEPCAPS ideal-int +pkg syscall (linux-arm), const PR_GET_NAME ideal-int +pkg syscall (linux-arm), const PR_GET_PDEATHSIG ideal-int +pkg syscall (linux-arm), const PR_GET_SECCOMP ideal-int +pkg syscall (linux-arm), const PR_GET_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm), const PR_GET_SECUREBITS ideal-int +pkg syscall (linux-arm), const PR_GET_TIMERSLACK ideal-int +pkg syscall (linux-arm), const PR_GET_TIMING ideal-int +pkg syscall (linux-arm), const PR_GET_TSC ideal-int +pkg syscall (linux-arm), const PR_GET_UNALIGN ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_CLEAR ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_DEFAULT ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_EARLY ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_GET ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_LATE ideal-int +pkg syscall (linux-arm), const PR_MCE_KILL_SET ideal-int +pkg syscall (linux-arm), const PR_SECCOMP_FILTER_EVENT ideal-int +pkg syscall (linux-arm), const PR_SECCOMP_FILTER_SYSCALL ideal-int +pkg syscall (linux-arm), const PR_SET_DUMPABLE ideal-int +pkg syscall (linux-arm), const PR_SET_ENDIAN ideal-int +pkg syscall (linux-arm), const PR_SET_FPEMU ideal-int +pkg syscall (linux-arm), const PR_SET_FPEXC ideal-int +pkg syscall (linux-arm), const PR_SET_KEEPCAPS ideal-int +pkg syscall (linux-arm), const PR_SET_NAME ideal-int +pkg syscall (linux-arm), const PR_SET_PDEATHSIG ideal-int +pkg syscall (linux-arm), const PR_SET_PTRACER ideal-int +pkg syscall (linux-arm), const PR_SET_SECCOMP ideal-int +pkg syscall (linux-arm), const PR_SET_SECCOMP_FILTER ideal-int +pkg syscall (linux-arm), const PR_SET_SECUREBITS ideal-int +pkg syscall (linux-arm), const PR_SET_TIMERSLACK ideal-int +pkg syscall (linux-arm), const PR_SET_TIMING ideal-int +pkg syscall (linux-arm), const PR_SET_TSC ideal-int +pkg syscall (linux-arm), const PR_SET_UNALIGN ideal-int +pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_DISABLE ideal-int +pkg syscall (linux-arm), const PR_TASK_PERF_EVENTS_ENABLE ideal-int +pkg syscall (linux-arm), const PR_TIMING_STATISTICAL ideal-int +pkg syscall (linux-arm), const PR_TIMING_TIMESTAMP ideal-int +pkg syscall (linux-arm), const PR_TSC_ENABLE ideal-int +pkg syscall (linux-arm), const PR_TSC_SIGSEGV ideal-int +pkg syscall (linux-arm), const PR_UNALIGN_NOPRINT ideal-int +pkg syscall (linux-arm), const PR_UNALIGN_SIGBUS ideal-int +pkg syscall (linux-arm), const PTRACE_ATTACH ideal-int +pkg syscall (linux-arm), const PTRACE_CONT ideal-int +pkg syscall (linux-arm), const PTRACE_DETACH ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_CLONE ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_EXEC ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_EXIT ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_FORK ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_VFORK ideal-int +pkg syscall (linux-arm), const PTRACE_EVENT_VFORK_DONE ideal-int +pkg syscall (linux-arm), const PTRACE_GETCRUNCHREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GETEVENTMSG ideal-int +pkg syscall (linux-arm), const PTRACE_GETFPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GETHBPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GETREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GETREGSET ideal-int +pkg syscall (linux-arm), const PTRACE_GETSIGINFO ideal-int +pkg syscall (linux-arm), const PTRACE_GETVFPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GETWMMXREGS ideal-int +pkg syscall (linux-arm), const PTRACE_GET_THREAD_AREA ideal-int +pkg syscall (linux-arm), const PTRACE_KILL ideal-int +pkg syscall (linux-arm), const PTRACE_OLDSETOPTIONS ideal-int +pkg syscall (linux-arm), const PTRACE_O_MASK ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACECLONE ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACEEXEC ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACEEXIT ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACEFORK ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACESYSGOOD ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACEVFORK ideal-int +pkg syscall (linux-arm), const PTRACE_O_TRACEVFORKDONE ideal-int +pkg syscall (linux-arm), const PTRACE_PEEKDATA ideal-int +pkg syscall (linux-arm), const PTRACE_PEEKTEXT ideal-int +pkg syscall (linux-arm), const PTRACE_PEEKUSR ideal-int +pkg syscall (linux-arm), const PTRACE_POKEDATA ideal-int +pkg syscall (linux-arm), const PTRACE_POKETEXT ideal-int +pkg syscall (linux-arm), const PTRACE_POKEUSR ideal-int +pkg syscall (linux-arm), const PTRACE_SETCRUNCHREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SETFPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SETHBPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SETOPTIONS ideal-int +pkg syscall (linux-arm), const PTRACE_SETREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SETREGSET ideal-int +pkg syscall (linux-arm), const PTRACE_SETSIGINFO ideal-int +pkg syscall (linux-arm), const PTRACE_SETVFPREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SETWMMXREGS ideal-int +pkg syscall (linux-arm), const PTRACE_SET_SYSCALL ideal-int +pkg syscall (linux-arm), const PTRACE_SINGLESTEP ideal-int +pkg syscall (linux-arm), const PTRACE_SYSCALL ideal-int +pkg syscall (linux-arm), const PTRACE_TRACEME ideal-int +pkg syscall (linux-arm), const PT_DATA_ADDR ideal-int +pkg syscall (linux-arm), const PT_TEXT_ADDR ideal-int +pkg syscall (linux-arm), const PT_TEXT_END_ADDR ideal-int +pkg syscall (linux-arm), const PathMax ideal-int +pkg syscall (linux-arm), const RLIMIT_AS ideal-int +pkg syscall (linux-arm), const RLIMIT_CORE ideal-int +pkg syscall (linux-arm), const RLIMIT_CPU ideal-int +pkg syscall (linux-arm), const RLIMIT_DATA ideal-int +pkg syscall (linux-arm), const RLIMIT_FSIZE ideal-int +pkg syscall (linux-arm), const RLIMIT_NOFILE ideal-int +pkg syscall (linux-arm), const RLIMIT_STACK ideal-int +pkg syscall (linux-arm), const RLIM_INFINITY ideal-int +pkg syscall (linux-arm), const RTAX_ADVMSS ideal-int +pkg syscall (linux-arm), const RTAX_CWND ideal-int +pkg syscall (linux-arm), const RTAX_FEATURES ideal-int +pkg syscall (linux-arm), const RTAX_FEATURE_ALLFRAG ideal-int +pkg syscall (linux-arm), const RTAX_FEATURE_ECN ideal-int +pkg syscall (linux-arm), const RTAX_FEATURE_SACK ideal-int +pkg syscall (linux-arm), const RTAX_FEATURE_TIMESTAMP ideal-int +pkg syscall (linux-arm), const RTAX_HOPLIMIT ideal-int +pkg syscall (linux-arm), const RTAX_INITCWND ideal-int +pkg syscall (linux-arm), const RTAX_INITRWND ideal-int +pkg syscall (linux-arm), const RTAX_LOCK ideal-int +pkg syscall (linux-arm), const RTAX_MAX ideal-int +pkg syscall (linux-arm), const RTAX_MTU ideal-int +pkg syscall (linux-arm), const RTAX_REORDERING ideal-int +pkg syscall (linux-arm), const RTAX_RTO_MIN ideal-int +pkg syscall (linux-arm), const RTAX_RTT ideal-int +pkg syscall (linux-arm), const RTAX_RTTVAR ideal-int +pkg syscall (linux-arm), const RTAX_SSTHRESH ideal-int +pkg syscall (linux-arm), const RTAX_UNSPEC ideal-int +pkg syscall (linux-arm), const RTAX_WINDOW ideal-int +pkg syscall (linux-arm), const RTA_ALIGNTO ideal-int +pkg syscall (linux-arm), const RTA_CACHEINFO ideal-int +pkg syscall (linux-arm), const RTA_DST ideal-int +pkg syscall (linux-arm), const RTA_FLOW ideal-int +pkg syscall (linux-arm), const RTA_GATEWAY ideal-int +pkg syscall (linux-arm), const RTA_IIF ideal-int +pkg syscall (linux-arm), const RTA_MAX ideal-int +pkg syscall (linux-arm), const RTA_METRICS ideal-int +pkg syscall (linux-arm), const RTA_MULTIPATH ideal-int +pkg syscall (linux-arm), const RTA_OIF ideal-int +pkg syscall (linux-arm), const RTA_PREFSRC ideal-int +pkg syscall (linux-arm), const RTA_PRIORITY ideal-int +pkg syscall (linux-arm), const RTA_SRC ideal-int +pkg syscall (linux-arm), const RTA_TABLE ideal-int +pkg syscall (linux-arm), const RTA_UNSPEC ideal-int +pkg syscall (linux-arm), const RTCF_DIRECTSRC ideal-int +pkg syscall (linux-arm), const RTCF_DOREDIRECT ideal-int +pkg syscall (linux-arm), const RTCF_LOG ideal-int +pkg syscall (linux-arm), const RTCF_MASQ ideal-int +pkg syscall (linux-arm), const RTCF_NAT ideal-int +pkg syscall (linux-arm), const RTCF_VALVE ideal-int +pkg syscall (linux-arm), const RTF_ADDRCLASSMASK ideal-int +pkg syscall (linux-arm), const RTF_ADDRCONF ideal-int +pkg syscall (linux-arm), const RTF_ALLONLINK ideal-int +pkg syscall (linux-arm), const RTF_BROADCAST ideal-int +pkg syscall (linux-arm), const RTF_CACHE ideal-int +pkg syscall (linux-arm), const RTF_DEFAULT ideal-int +pkg syscall (linux-arm), const RTF_DYNAMIC ideal-int +pkg syscall (linux-arm), const RTF_FLOW ideal-int +pkg syscall (linux-arm), const RTF_GATEWAY ideal-int +pkg syscall (linux-arm), const RTF_HOST ideal-int +pkg syscall (linux-arm), const RTF_INTERFACE ideal-int +pkg syscall (linux-arm), const RTF_IRTT ideal-int +pkg syscall (linux-arm), const RTF_LINKRT ideal-int +pkg syscall (linux-arm), const RTF_LOCAL ideal-int +pkg syscall (linux-arm), const RTF_MODIFIED ideal-int +pkg syscall (linux-arm), const RTF_MSS ideal-int +pkg syscall (linux-arm), const RTF_MTU ideal-int +pkg syscall (linux-arm), const RTF_MULTICAST ideal-int +pkg syscall (linux-arm), const RTF_NAT ideal-int +pkg syscall (linux-arm), const RTF_NOFORWARD ideal-int +pkg syscall (linux-arm), const RTF_NONEXTHOP ideal-int +pkg syscall (linux-arm), const RTF_NOPMTUDISC ideal-int +pkg syscall (linux-arm), const RTF_POLICY ideal-int +pkg syscall (linux-arm), const RTF_REINSTATE ideal-int +pkg syscall (linux-arm), const RTF_REJECT ideal-int +pkg syscall (linux-arm), const RTF_STATIC ideal-int +pkg syscall (linux-arm), const RTF_THROW ideal-int +pkg syscall (linux-arm), const RTF_UP ideal-int +pkg syscall (linux-arm), const RTF_WINDOW ideal-int +pkg syscall (linux-arm), const RTF_XRESOLVE ideal-int +pkg syscall (linux-arm), const RTM_BASE ideal-int +pkg syscall (linux-arm), const RTM_DELACTION ideal-int +pkg syscall (linux-arm), const RTM_DELADDR ideal-int +pkg syscall (linux-arm), const RTM_DELADDRLABEL ideal-int +pkg syscall (linux-arm), const RTM_DELLINK ideal-int +pkg syscall (linux-arm), const RTM_DELNEIGH ideal-int +pkg syscall (linux-arm), const RTM_DELQDISC ideal-int +pkg syscall (linux-arm), const RTM_DELROUTE ideal-int +pkg syscall (linux-arm), const RTM_DELRULE ideal-int +pkg syscall (linux-arm), const RTM_DELTCLASS ideal-int +pkg syscall (linux-arm), const RTM_DELTFILTER ideal-int +pkg syscall (linux-arm), const RTM_F_CLONED ideal-int +pkg syscall (linux-arm), const RTM_F_EQUALIZE ideal-int +pkg syscall (linux-arm), const RTM_F_NOTIFY ideal-int +pkg syscall (linux-arm), const RTM_F_PREFIX ideal-int +pkg syscall (linux-arm), const RTM_GETACTION ideal-int +pkg syscall (linux-arm), const RTM_GETADDR ideal-int +pkg syscall (linux-arm), const RTM_GETADDRLABEL ideal-int +pkg syscall (linux-arm), const RTM_GETANYCAST ideal-int +pkg syscall (linux-arm), const RTM_GETDCB ideal-int +pkg syscall (linux-arm), const RTM_GETLINK ideal-int +pkg syscall (linux-arm), const RTM_GETMULTICAST ideal-int +pkg syscall (linux-arm), const RTM_GETNEIGH ideal-int +pkg syscall (linux-arm), const RTM_GETNEIGHTBL ideal-int +pkg syscall (linux-arm), const RTM_GETQDISC ideal-int +pkg syscall (linux-arm), const RTM_GETROUTE ideal-int +pkg syscall (linux-arm), const RTM_GETRULE ideal-int +pkg syscall (linux-arm), const RTM_GETTCLASS ideal-int +pkg syscall (linux-arm), const RTM_GETTFILTER ideal-int +pkg syscall (linux-arm), const RTM_MAX ideal-int +pkg syscall (linux-arm), const RTM_NEWACTION ideal-int +pkg syscall (linux-arm), const RTM_NEWADDR ideal-int +pkg syscall (linux-arm), const RTM_NEWADDRLABEL ideal-int +pkg syscall (linux-arm), const RTM_NEWLINK ideal-int +pkg syscall (linux-arm), const RTM_NEWNDUSEROPT ideal-int +pkg syscall (linux-arm), const RTM_NEWNEIGH ideal-int +pkg syscall (linux-arm), const RTM_NEWNEIGHTBL ideal-int +pkg syscall (linux-arm), const RTM_NEWPREFIX ideal-int +pkg syscall (linux-arm), const RTM_NEWQDISC ideal-int +pkg syscall (linux-arm), const RTM_NEWROUTE ideal-int +pkg syscall (linux-arm), const RTM_NEWRULE ideal-int +pkg syscall (linux-arm), const RTM_NEWTCLASS ideal-int +pkg syscall (linux-arm), const RTM_NEWTFILTER ideal-int +pkg syscall (linux-arm), const RTM_NR_FAMILIES ideal-int +pkg syscall (linux-arm), const RTM_NR_MSGTYPES ideal-int +pkg syscall (linux-arm), const RTM_SETDCB ideal-int +pkg syscall (linux-arm), const RTM_SETLINK ideal-int +pkg syscall (linux-arm), const RTM_SETNEIGHTBL ideal-int +pkg syscall (linux-arm), const RTNH_ALIGNTO ideal-int +pkg syscall (linux-arm), const RTNH_F_DEAD ideal-int +pkg syscall (linux-arm), const RTNH_F_ONLINK ideal-int +pkg syscall (linux-arm), const RTNH_F_PERVASIVE ideal-int +pkg syscall (linux-arm), const RTN_ANYCAST ideal-int +pkg syscall (linux-arm), const RTN_BLACKHOLE ideal-int +pkg syscall (linux-arm), const RTN_BROADCAST ideal-int +pkg syscall (linux-arm), const RTN_LOCAL ideal-int +pkg syscall (linux-arm), const RTN_MAX ideal-int +pkg syscall (linux-arm), const RTN_MULTICAST ideal-int +pkg syscall (linux-arm), const RTN_NAT ideal-int +pkg syscall (linux-arm), const RTN_PROHIBIT ideal-int +pkg syscall (linux-arm), const RTN_THROW ideal-int +pkg syscall (linux-arm), const RTN_UNICAST ideal-int +pkg syscall (linux-arm), const RTN_UNREACHABLE ideal-int +pkg syscall (linux-arm), const RTN_UNSPEC ideal-int +pkg syscall (linux-arm), const RTN_XRESOLVE ideal-int +pkg syscall (linux-arm), const RTPROT_BIRD ideal-int +pkg syscall (linux-arm), const RTPROT_BOOT ideal-int +pkg syscall (linux-arm), const RTPROT_DHCP ideal-int +pkg syscall (linux-arm), const RTPROT_DNROUTED ideal-int +pkg syscall (linux-arm), const RTPROT_GATED ideal-int +pkg syscall (linux-arm), const RTPROT_KERNEL ideal-int +pkg syscall (linux-arm), const RTPROT_MRT ideal-int +pkg syscall (linux-arm), const RTPROT_NTK ideal-int +pkg syscall (linux-arm), const RTPROT_RA ideal-int +pkg syscall (linux-arm), const RTPROT_REDIRECT ideal-int +pkg syscall (linux-arm), const RTPROT_STATIC ideal-int +pkg syscall (linux-arm), const RTPROT_UNSPEC ideal-int +pkg syscall (linux-arm), const RTPROT_XORP ideal-int +pkg syscall (linux-arm), const RTPROT_ZEBRA ideal-int +pkg syscall (linux-arm), const RT_CLASS_DEFAULT ideal-int +pkg syscall (linux-arm), const RT_CLASS_LOCAL ideal-int +pkg syscall (linux-arm), const RT_CLASS_MAIN ideal-int +pkg syscall (linux-arm), const RT_CLASS_MAX ideal-int +pkg syscall (linux-arm), const RT_CLASS_UNSPEC ideal-int +pkg syscall (linux-arm), const RT_SCOPE_HOST ideal-int +pkg syscall (linux-arm), const RT_SCOPE_LINK ideal-int +pkg syscall (linux-arm), const RT_SCOPE_NOWHERE ideal-int +pkg syscall (linux-arm), const RT_SCOPE_SITE ideal-int +pkg syscall (linux-arm), const RT_SCOPE_UNIVERSE ideal-int +pkg syscall (linux-arm), const RT_TABLE_COMPAT ideal-int +pkg syscall (linux-arm), const RT_TABLE_DEFAULT ideal-int +pkg syscall (linux-arm), const RT_TABLE_LOCAL ideal-int +pkg syscall (linux-arm), const RT_TABLE_MAIN ideal-int +pkg syscall (linux-arm), const RT_TABLE_MAX ideal-int +pkg syscall (linux-arm), const RT_TABLE_UNSPEC ideal-int +pkg syscall (linux-arm), const RUSAGE_CHILDREN ideal-int +pkg syscall (linux-arm), const RUSAGE_SELF ideal-int +pkg syscall (linux-arm), const RUSAGE_THREAD ideal-int +pkg syscall (linux-arm), const SCM_CREDENTIALS ideal-int +pkg syscall (linux-arm), const SCM_RIGHTS ideal-int +pkg syscall (linux-arm), const SCM_TIMESTAMP ideal-int +pkg syscall (linux-arm), const SCM_TIMESTAMPING ideal-int +pkg syscall (linux-arm), const SCM_TIMESTAMPNS ideal-int +pkg syscall (linux-arm), const SIGCHLD Signal +pkg syscall (linux-arm), const SIGCLD Signal +pkg syscall (linux-arm), const SIGCONT Signal +pkg syscall (linux-arm), const SIGIO Signal +pkg syscall (linux-arm), const SIGIOT Signal +pkg syscall (linux-arm), const SIGPOLL Signal +pkg syscall (linux-arm), const SIGPROF Signal +pkg syscall (linux-arm), const SIGPWR Signal +pkg syscall (linux-arm), const SIGSTKFLT Signal +pkg syscall (linux-arm), const SIGSTOP Signal +pkg syscall (linux-arm), const SIGSYS Signal +pkg syscall (linux-arm), const SIGTSTP Signal +pkg syscall (linux-arm), const SIGTTIN Signal +pkg syscall (linux-arm), const SIGTTOU Signal +pkg syscall (linux-arm), const SIGUNUSED Signal +pkg syscall (linux-arm), const SIGURG Signal +pkg syscall (linux-arm), const SIGUSR1 Signal +pkg syscall (linux-arm), const SIGUSR2 Signal +pkg syscall (linux-arm), const SIGVTALRM Signal +pkg syscall (linux-arm), const SIGWINCH Signal +pkg syscall (linux-arm), const SIGXCPU Signal +pkg syscall (linux-arm), const SIGXFSZ Signal +pkg syscall (linux-arm), const SIOCADDDLCI ideal-int +pkg syscall (linux-arm), const SIOCADDMULTI ideal-int +pkg syscall (linux-arm), const SIOCADDRT ideal-int +pkg syscall (linux-arm), const SIOCATMARK ideal-int +pkg syscall (linux-arm), const SIOCDARP ideal-int +pkg syscall (linux-arm), const SIOCDELDLCI ideal-int +pkg syscall (linux-arm), const SIOCDELMULTI ideal-int +pkg syscall (linux-arm), const SIOCDELRT ideal-int +pkg syscall (linux-arm), const SIOCDEVPRIVATE ideal-int +pkg syscall (linux-arm), const SIOCDIFADDR ideal-int +pkg syscall (linux-arm), const SIOCDRARP ideal-int +pkg syscall (linux-arm), const SIOCGARP ideal-int +pkg syscall (linux-arm), const SIOCGIFADDR ideal-int +pkg syscall (linux-arm), const SIOCGIFBR ideal-int +pkg syscall (linux-arm), const SIOCGIFBRDADDR ideal-int +pkg syscall (linux-arm), const SIOCGIFCONF ideal-int +pkg syscall (linux-arm), const SIOCGIFCOUNT ideal-int +pkg syscall (linux-arm), const SIOCGIFDSTADDR ideal-int +pkg syscall (linux-arm), const SIOCGIFENCAP ideal-int +pkg syscall (linux-arm), const SIOCGIFFLAGS ideal-int +pkg syscall (linux-arm), const SIOCGIFHWADDR ideal-int +pkg syscall (linux-arm), const SIOCGIFINDEX ideal-int +pkg syscall (linux-arm), const SIOCGIFMAP ideal-int +pkg syscall (linux-arm), const SIOCGIFMEM ideal-int +pkg syscall (linux-arm), const SIOCGIFMETRIC ideal-int +pkg syscall (linux-arm), const SIOCGIFMTU ideal-int +pkg syscall (linux-arm), const SIOCGIFNAME ideal-int +pkg syscall (linux-arm), const SIOCGIFNETMASK ideal-int +pkg syscall (linux-arm), const SIOCGIFPFLAGS ideal-int +pkg syscall (linux-arm), const SIOCGIFSLAVE ideal-int +pkg syscall (linux-arm), const SIOCGIFTXQLEN ideal-int +pkg syscall (linux-arm), const SIOCGPGRP ideal-int +pkg syscall (linux-arm), const SIOCGRARP ideal-int +pkg syscall (linux-arm), const SIOCGSTAMP ideal-int +pkg syscall (linux-arm), const SIOCGSTAMPNS ideal-int +pkg syscall (linux-arm), const SIOCPROTOPRIVATE ideal-int +pkg syscall (linux-arm), const SIOCRTMSG ideal-int +pkg syscall (linux-arm), const SIOCSARP ideal-int +pkg syscall (linux-arm), const SIOCSIFADDR ideal-int +pkg syscall (linux-arm), const SIOCSIFBR ideal-int +pkg syscall (linux-arm), const SIOCSIFBRDADDR ideal-int +pkg syscall (linux-arm), const SIOCSIFDSTADDR ideal-int +pkg syscall (linux-arm), const SIOCSIFENCAP ideal-int +pkg syscall (linux-arm), const SIOCSIFFLAGS ideal-int +pkg syscall (linux-arm), const SIOCSIFHWADDR ideal-int +pkg syscall (linux-arm), const SIOCSIFHWBROADCAST ideal-int +pkg syscall (linux-arm), const SIOCSIFLINK ideal-int +pkg syscall (linux-arm), const SIOCSIFMAP ideal-int +pkg syscall (linux-arm), const SIOCSIFMEM ideal-int +pkg syscall (linux-arm), const SIOCSIFMETRIC ideal-int +pkg syscall (linux-arm), const SIOCSIFMTU ideal-int +pkg syscall (linux-arm), const SIOCSIFNAME ideal-int +pkg syscall (linux-arm), const SIOCSIFNETMASK ideal-int +pkg syscall (linux-arm), const SIOCSIFPFLAGS ideal-int +pkg syscall (linux-arm), const SIOCSIFSLAVE ideal-int +pkg syscall (linux-arm), const SIOCSIFTXQLEN ideal-int +pkg syscall (linux-arm), const SIOCSPGRP ideal-int +pkg syscall (linux-arm), const SIOCSRARP ideal-int +pkg syscall (linux-arm), const SOCK_CLOEXEC ideal-int +pkg syscall (linux-arm), const SOCK_DCCP ideal-int +pkg syscall (linux-arm), const SOCK_NONBLOCK ideal-int +pkg syscall (linux-arm), const SOCK_PACKET ideal-int +pkg syscall (linux-arm), const SOCK_RDM ideal-int +pkg syscall (linux-arm), const SOL_AAL ideal-int +pkg syscall (linux-arm), const SOL_ATM ideal-int +pkg syscall (linux-arm), const SOL_DECNET ideal-int +pkg syscall (linux-arm), const SOL_ICMPV6 ideal-int +pkg syscall (linux-arm), const SOL_IP ideal-int +pkg syscall (linux-arm), const SOL_IPV6 ideal-int +pkg syscall (linux-arm), const SOL_IRDA ideal-int +pkg syscall (linux-arm), const SOL_PACKET ideal-int +pkg syscall (linux-arm), const SOL_RAW ideal-int +pkg syscall (linux-arm), const SOL_TCP ideal-int +pkg syscall (linux-arm), const SOL_X25 ideal-int +pkg syscall (linux-arm), const SO_ACCEPTCONN ideal-int +pkg syscall (linux-arm), const SO_ATTACH_FILTER ideal-int +pkg syscall (linux-arm), const SO_BINDTODEVICE ideal-int +pkg syscall (linux-arm), const SO_BSDCOMPAT ideal-int +pkg syscall (linux-arm), const SO_DEBUG ideal-int +pkg syscall (linux-arm), const SO_DETACH_FILTER ideal-int +pkg syscall (linux-arm), const SO_DOMAIN ideal-int +pkg syscall (linux-arm), const SO_ERROR ideal-int +pkg syscall (linux-arm), const SO_MARK ideal-int +pkg syscall (linux-arm), const SO_NO_CHECK ideal-int +pkg syscall (linux-arm), const SO_OOBINLINE ideal-int +pkg syscall (linux-arm), const SO_PASSCRED ideal-int +pkg syscall (linux-arm), const SO_PASSSEC ideal-int +pkg syscall (linux-arm), const SO_PEERCRED ideal-int +pkg syscall (linux-arm), const SO_PEERNAME ideal-int +pkg syscall (linux-arm), const SO_PEERSEC ideal-int +pkg syscall (linux-arm), const SO_PRIORITY ideal-int +pkg syscall (linux-arm), const SO_PROTOCOL ideal-int +pkg syscall (linux-arm), const SO_RCVBUFFORCE ideal-int +pkg syscall (linux-arm), const SO_RCVLOWAT ideal-int +pkg syscall (linux-arm), const SO_RCVTIMEO ideal-int +pkg syscall (linux-arm), const SO_RXQ_OVFL ideal-int +pkg syscall (linux-arm), const SO_SECURITY_AUTHENTICATION ideal-int +pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int +pkg syscall (linux-arm), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int +pkg syscall (linux-arm), const SO_SNDBUFFORCE ideal-int +pkg syscall (linux-arm), const SO_SNDLOWAT ideal-int +pkg syscall (linux-arm), const SO_SNDTIMEO ideal-int +pkg syscall (linux-arm), const SO_TIMESTAMP ideal-int +pkg syscall (linux-arm), const SO_TIMESTAMPING ideal-int +pkg syscall (linux-arm), const SO_TIMESTAMPNS ideal-int +pkg syscall (linux-arm), const SO_TYPE ideal-int +pkg syscall (linux-arm), const SYS_ACCEPT ideal-int +pkg syscall (linux-arm), const SYS_ACCEPT4 ideal-int +pkg syscall (linux-arm), const SYS_ACCESS ideal-int +pkg syscall (linux-arm), const SYS_ACCT ideal-int +pkg syscall (linux-arm), const SYS_ADD_KEY ideal-int +pkg syscall (linux-arm), const SYS_ADJTIMEX ideal-int +pkg syscall (linux-arm), const SYS_ALARM ideal-int +pkg syscall (linux-arm), const SYS_ARM_FADVISE64_64 ideal-int +pkg syscall (linux-arm), const SYS_ARM_SYNC_FILE_RANGE ideal-int +pkg syscall (linux-arm), const SYS_BDFLUSH ideal-int +pkg syscall (linux-arm), const SYS_BIND ideal-int +pkg syscall (linux-arm), const SYS_BRK ideal-int +pkg syscall (linux-arm), const SYS_CAPGET ideal-int +pkg syscall (linux-arm), const SYS_CAPSET ideal-int +pkg syscall (linux-arm), const SYS_CHDIR ideal-int +pkg syscall (linux-arm), const SYS_CHMOD ideal-int +pkg syscall (linux-arm), const SYS_CHOWN ideal-int +pkg syscall (linux-arm), const SYS_CHOWN32 ideal-int +pkg syscall (linux-arm), const SYS_CHROOT ideal-int +pkg syscall (linux-arm), const SYS_CLOCK_ADJTIME ideal-int +pkg syscall (linux-arm), const SYS_CLOCK_GETRES ideal-int +pkg syscall (linux-arm), const SYS_CLOCK_GETTIME ideal-int +pkg syscall (linux-arm), const SYS_CLOCK_NANOSLEEP ideal-int +pkg syscall (linux-arm), const SYS_CLOCK_SETTIME ideal-int +pkg syscall (linux-arm), const SYS_CLONE ideal-int +pkg syscall (linux-arm), const SYS_CLOSE ideal-int +pkg syscall (linux-arm), const SYS_CONNECT ideal-int +pkg syscall (linux-arm), const SYS_CREAT ideal-int +pkg syscall (linux-arm), const SYS_DELETE_MODULE ideal-int +pkg syscall (linux-arm), const SYS_DUP ideal-int +pkg syscall (linux-arm), const SYS_DUP2 ideal-int +pkg syscall (linux-arm), const SYS_DUP3 ideal-int +pkg syscall (linux-arm), const SYS_EPOLL_CREATE ideal-int +pkg syscall (linux-arm), const SYS_EPOLL_CREATE1 ideal-int +pkg syscall (linux-arm), const SYS_EPOLL_CTL ideal-int +pkg syscall (linux-arm), const SYS_EPOLL_PWAIT ideal-int +pkg syscall (linux-arm), const SYS_EPOLL_WAIT ideal-int +pkg syscall (linux-arm), const SYS_EVENTFD ideal-int +pkg syscall (linux-arm), const SYS_EVENTFD2 ideal-int +pkg syscall (linux-arm), const SYS_EXECVE ideal-int +pkg syscall (linux-arm), const SYS_EXIT ideal-int +pkg syscall (linux-arm), const SYS_EXIT_GROUP ideal-int +pkg syscall (linux-arm), const SYS_FACCESSAT ideal-int +pkg syscall (linux-arm), const SYS_FALLOCATE ideal-int +pkg syscall (linux-arm), const SYS_FANOTIFY_INIT ideal-int +pkg syscall (linux-arm), const SYS_FANOTIFY_MARK ideal-int +pkg syscall (linux-arm), const SYS_FCHDIR ideal-int +pkg syscall (linux-arm), const SYS_FCHMOD ideal-int +pkg syscall (linux-arm), const SYS_FCHMODAT ideal-int +pkg syscall (linux-arm), const SYS_FCHOWN ideal-int +pkg syscall (linux-arm), const SYS_FCHOWN32 ideal-int +pkg syscall (linux-arm), const SYS_FCHOWNAT ideal-int +pkg syscall (linux-arm), const SYS_FCNTL ideal-int +pkg syscall (linux-arm), const SYS_FCNTL64 ideal-int +pkg syscall (linux-arm), const SYS_FDATASYNC ideal-int +pkg syscall (linux-arm), const SYS_FGETXATTR ideal-int +pkg syscall (linux-arm), const SYS_FLISTXATTR ideal-int +pkg syscall (linux-arm), const SYS_FLOCK ideal-int +pkg syscall (linux-arm), const SYS_FORK ideal-int +pkg syscall (linux-arm), const SYS_FREMOVEXATTR ideal-int +pkg syscall (linux-arm), const SYS_FSETXATTR ideal-int +pkg syscall (linux-arm), const SYS_FSTAT ideal-int +pkg syscall (linux-arm), const SYS_FSTAT64 ideal-int +pkg syscall (linux-arm), const SYS_FSTATAT64 ideal-int +pkg syscall (linux-arm), const SYS_FSTATFS ideal-int +pkg syscall (linux-arm), const SYS_FSTATFS64 ideal-int +pkg syscall (linux-arm), const SYS_FSYNC ideal-int +pkg syscall (linux-arm), const SYS_FTRUNCATE ideal-int +pkg syscall (linux-arm), const SYS_FTRUNCATE64 ideal-int +pkg syscall (linux-arm), const SYS_FUTEX ideal-int +pkg syscall (linux-arm), const SYS_FUTIMESAT ideal-int +pkg syscall (linux-arm), const SYS_GETCPU ideal-int +pkg syscall (linux-arm), const SYS_GETCWD ideal-int +pkg syscall (linux-arm), const SYS_GETDENTS ideal-int +pkg syscall (linux-arm), const SYS_GETDENTS64 ideal-int +pkg syscall (linux-arm), const SYS_GETEGID ideal-int +pkg syscall (linux-arm), const SYS_GETEGID32 ideal-int +pkg syscall (linux-arm), const SYS_GETEUID ideal-int +pkg syscall (linux-arm), const SYS_GETEUID32 ideal-int +pkg syscall (linux-arm), const SYS_GETGID ideal-int +pkg syscall (linux-arm), const SYS_GETGID32 ideal-int +pkg syscall (linux-arm), const SYS_GETGROUPS ideal-int +pkg syscall (linux-arm), const SYS_GETGROUPS32 ideal-int +pkg syscall (linux-arm), const SYS_GETITIMER ideal-int +pkg syscall (linux-arm), const SYS_GETPEERNAME ideal-int +pkg syscall (linux-arm), const SYS_GETPGID ideal-int +pkg syscall (linux-arm), const SYS_GETPGRP ideal-int +pkg syscall (linux-arm), const SYS_GETPID ideal-int +pkg syscall (linux-arm), const SYS_GETPPID ideal-int +pkg syscall (linux-arm), const SYS_GETPRIORITY ideal-int +pkg syscall (linux-arm), const SYS_GETRESGID ideal-int +pkg syscall (linux-arm), const SYS_GETRESGID32 ideal-int +pkg syscall (linux-arm), const SYS_GETRESUID ideal-int +pkg syscall (linux-arm), const SYS_GETRESUID32 ideal-int +pkg syscall (linux-arm), const SYS_GETRLIMIT ideal-int +pkg syscall (linux-arm), const SYS_GETRUSAGE ideal-int +pkg syscall (linux-arm), const SYS_GETSID ideal-int +pkg syscall (linux-arm), const SYS_GETSOCKNAME ideal-int +pkg syscall (linux-arm), const SYS_GETSOCKOPT ideal-int +pkg syscall (linux-arm), const SYS_GETTID ideal-int +pkg syscall (linux-arm), const SYS_GETTIMEOFDAY ideal-int +pkg syscall (linux-arm), const SYS_GETUID ideal-int +pkg syscall (linux-arm), const SYS_GETUID32 ideal-int +pkg syscall (linux-arm), const SYS_GETXATTR ideal-int +pkg syscall (linux-arm), const SYS_GET_MEMPOLICY ideal-int +pkg syscall (linux-arm), const SYS_GET_ROBUST_LIST ideal-int +pkg syscall (linux-arm), const SYS_INIT_MODULE ideal-int +pkg syscall (linux-arm), const SYS_INOTIFY_ADD_WATCH ideal-int +pkg syscall (linux-arm), const SYS_INOTIFY_INIT ideal-int +pkg syscall (linux-arm), const SYS_INOTIFY_INIT1 ideal-int +pkg syscall (linux-arm), const SYS_INOTIFY_RM_WATCH ideal-int +pkg syscall (linux-arm), const SYS_IOCTL ideal-int +pkg syscall (linux-arm), const SYS_IOPRIO_GET ideal-int +pkg syscall (linux-arm), const SYS_IOPRIO_SET ideal-int +pkg syscall (linux-arm), const SYS_IO_CANCEL ideal-int +pkg syscall (linux-arm), const SYS_IO_DESTROY ideal-int +pkg syscall (linux-arm), const SYS_IO_GETEVENTS ideal-int +pkg syscall (linux-arm), const SYS_IO_SETUP ideal-int +pkg syscall (linux-arm), const SYS_IO_SUBMIT ideal-int +pkg syscall (linux-arm), const SYS_IPC ideal-int +pkg syscall (linux-arm), const SYS_KEXEC_LOAD ideal-int +pkg syscall (linux-arm), const SYS_KEYCTL ideal-int +pkg syscall (linux-arm), const SYS_KILL ideal-int +pkg syscall (linux-arm), const SYS_LCHOWN ideal-int +pkg syscall (linux-arm), const SYS_LCHOWN32 ideal-int +pkg syscall (linux-arm), const SYS_LGETXATTR ideal-int +pkg syscall (linux-arm), const SYS_LINK ideal-int +pkg syscall (linux-arm), const SYS_LINKAT ideal-int +pkg syscall (linux-arm), const SYS_LISTEN ideal-int +pkg syscall (linux-arm), const SYS_LISTXATTR ideal-int +pkg syscall (linux-arm), const SYS_LLISTXATTR ideal-int +pkg syscall (linux-arm), const SYS_LOOKUP_DCOOKIE ideal-int +pkg syscall (linux-arm), const SYS_LREMOVEXATTR ideal-int +pkg syscall (linux-arm), const SYS_LSEEK ideal-int +pkg syscall (linux-arm), const SYS_LSETXATTR ideal-int +pkg syscall (linux-arm), const SYS_LSTAT ideal-int +pkg syscall (linux-arm), const SYS_LSTAT64 ideal-int +pkg syscall (linux-arm), const SYS_MADVISE ideal-int +pkg syscall (linux-arm), const SYS_MBIND ideal-int +pkg syscall (linux-arm), const SYS_MINCORE ideal-int +pkg syscall (linux-arm), const SYS_MKDIR ideal-int +pkg syscall (linux-arm), const SYS_MKDIRAT ideal-int +pkg syscall (linux-arm), const SYS_MKNOD ideal-int +pkg syscall (linux-arm), const SYS_MKNODAT ideal-int +pkg syscall (linux-arm), const SYS_MLOCK ideal-int +pkg syscall (linux-arm), const SYS_MLOCKALL ideal-int +pkg syscall (linux-arm), const SYS_MMAP ideal-int +pkg syscall (linux-arm), const SYS_MMAP2 ideal-int +pkg syscall (linux-arm), const SYS_MOUNT ideal-int +pkg syscall (linux-arm), const SYS_MOVE_PAGES ideal-int +pkg syscall (linux-arm), const SYS_MPROTECT ideal-int +pkg syscall (linux-arm), const SYS_MQ_GETSETATTR ideal-int +pkg syscall (linux-arm), const SYS_MQ_NOTIFY ideal-int +pkg syscall (linux-arm), const SYS_MQ_OPEN ideal-int +pkg syscall (linux-arm), const SYS_MQ_TIMEDRECEIVE ideal-int +pkg syscall (linux-arm), const SYS_MQ_TIMEDSEND ideal-int +pkg syscall (linux-arm), const SYS_MQ_UNLINK ideal-int +pkg syscall (linux-arm), const SYS_MREMAP ideal-int +pkg syscall (linux-arm), const SYS_MSGCTL ideal-int +pkg syscall (linux-arm), const SYS_MSGGET ideal-int +pkg syscall (linux-arm), const SYS_MSGRCV ideal-int +pkg syscall (linux-arm), const SYS_MSGSND ideal-int +pkg syscall (linux-arm), const SYS_MSYNC ideal-int +pkg syscall (linux-arm), const SYS_MUNLOCK ideal-int +pkg syscall (linux-arm), const SYS_MUNLOCKALL ideal-int +pkg syscall (linux-arm), const SYS_MUNMAP ideal-int +pkg syscall (linux-arm), const SYS_NAME_TO_HANDLE_AT ideal-int +pkg syscall (linux-arm), const SYS_NANOSLEEP ideal-int +pkg syscall (linux-arm), const SYS_NFSSERVCTL ideal-int +pkg syscall (linux-arm), const SYS_NICE ideal-int +pkg syscall (linux-arm), const SYS_OABI_SYSCALL_BASE ideal-int +pkg syscall (linux-arm), const SYS_OPEN ideal-int +pkg syscall (linux-arm), const SYS_OPENAT ideal-int +pkg syscall (linux-arm), const SYS_OPEN_BY_HANDLE_AT ideal-int +pkg syscall (linux-arm), const SYS_PAUSE ideal-int +pkg syscall (linux-arm), const SYS_PCICONFIG_IOBASE ideal-int +pkg syscall (linux-arm), const SYS_PCICONFIG_READ ideal-int +pkg syscall (linux-arm), const SYS_PCICONFIG_WRITE ideal-int +pkg syscall (linux-arm), const SYS_PERF_EVENT_OPEN ideal-int +pkg syscall (linux-arm), const SYS_PERSONALITY ideal-int +pkg syscall (linux-arm), const SYS_PIPE ideal-int +pkg syscall (linux-arm), const SYS_PIPE2 ideal-int +pkg syscall (linux-arm), const SYS_PIVOT_ROOT ideal-int +pkg syscall (linux-arm), const SYS_POLL ideal-int +pkg syscall (linux-arm), const SYS_PPOLL ideal-int +pkg syscall (linux-arm), const SYS_PRCTL ideal-int +pkg syscall (linux-arm), const SYS_PREAD64 ideal-int +pkg syscall (linux-arm), const SYS_PREADV ideal-int +pkg syscall (linux-arm), const SYS_PRLIMIT64 ideal-int +pkg syscall (linux-arm), const SYS_PROCESS_VM_READV ideal-int +pkg syscall (linux-arm), const SYS_PROCESS_VM_WRITEV ideal-int +pkg syscall (linux-arm), const SYS_PSELECT6 ideal-int +pkg syscall (linux-arm), const SYS_PTRACE ideal-int +pkg syscall (linux-arm), const SYS_PWRITE64 ideal-int +pkg syscall (linux-arm), const SYS_PWRITEV ideal-int +pkg syscall (linux-arm), const SYS_QUOTACTL ideal-int +pkg syscall (linux-arm), const SYS_READ ideal-int +pkg syscall (linux-arm), const SYS_READAHEAD ideal-int +pkg syscall (linux-arm), const SYS_READDIR ideal-int +pkg syscall (linux-arm), const SYS_READLINK ideal-int +pkg syscall (linux-arm), const SYS_READLINKAT ideal-int +pkg syscall (linux-arm), const SYS_READV ideal-int +pkg syscall (linux-arm), const SYS_REBOOT ideal-int +pkg syscall (linux-arm), const SYS_RECV ideal-int +pkg syscall (linux-arm), const SYS_RECVFROM ideal-int +pkg syscall (linux-arm), const SYS_RECVMMSG ideal-int +pkg syscall (linux-arm), const SYS_RECVMSG ideal-int +pkg syscall (linux-arm), const SYS_REMAP_FILE_PAGES ideal-int +pkg syscall (linux-arm), const SYS_REMOVEXATTR ideal-int +pkg syscall (linux-arm), const SYS_RENAME ideal-int +pkg syscall (linux-arm), const SYS_RENAMEAT ideal-int +pkg syscall (linux-arm), const SYS_REQUEST_KEY ideal-int +pkg syscall (linux-arm), const SYS_RESTART_SYSCALL ideal-int +pkg syscall (linux-arm), const SYS_RMDIR ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGACTION ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGPENDING ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGPROCMASK ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGQUEUEINFO ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGRETURN ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGSUSPEND ideal-int +pkg syscall (linux-arm), const SYS_RT_SIGTIMEDWAIT ideal-int +pkg syscall (linux-arm), const SYS_RT_TGSIGQUEUEINFO ideal-int +pkg syscall (linux-arm), const SYS_SCHED_GETAFFINITY ideal-int +pkg syscall (linux-arm), const SYS_SCHED_GETPARAM ideal-int +pkg syscall (linux-arm), const SYS_SCHED_GETSCHEDULER ideal-int +pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MAX ideal-int +pkg syscall (linux-arm), const SYS_SCHED_GET_PRIORITY_MIN ideal-int +pkg syscall (linux-arm), const SYS_SCHED_RR_GET_INTERVAL ideal-int +pkg syscall (linux-arm), const SYS_SCHED_SETAFFINITY ideal-int +pkg syscall (linux-arm), const SYS_SCHED_SETPARAM ideal-int +pkg syscall (linux-arm), const SYS_SCHED_SETSCHEDULER ideal-int +pkg syscall (linux-arm), const SYS_SCHED_YIELD ideal-int +pkg syscall (linux-arm), const SYS_SELECT ideal-int +pkg syscall (linux-arm), const SYS_SEMCTL ideal-int +pkg syscall (linux-arm), const SYS_SEMGET ideal-int +pkg syscall (linux-arm), const SYS_SEMOP ideal-int +pkg syscall (linux-arm), const SYS_SEMTIMEDOP ideal-int +pkg syscall (linux-arm), const SYS_SEND ideal-int +pkg syscall (linux-arm), const SYS_SENDFILE ideal-int +pkg syscall (linux-arm), const SYS_SENDFILE64 ideal-int +pkg syscall (linux-arm), const SYS_SENDMMSG ideal-int +pkg syscall (linux-arm), const SYS_SENDMSG ideal-int +pkg syscall (linux-arm), const SYS_SENDTO ideal-int +pkg syscall (linux-arm), const SYS_SETDOMAINNAME ideal-int +pkg syscall (linux-arm), const SYS_SETFSGID ideal-int +pkg syscall (linux-arm), const SYS_SETFSGID32 ideal-int +pkg syscall (linux-arm), const SYS_SETFSUID ideal-int +pkg syscall (linux-arm), const SYS_SETFSUID32 ideal-int +pkg syscall (linux-arm), const SYS_SETGID ideal-int +pkg syscall (linux-arm), const SYS_SETGID32 ideal-int +pkg syscall (linux-arm), const SYS_SETGROUPS ideal-int +pkg syscall (linux-arm), const SYS_SETGROUPS32 ideal-int +pkg syscall (linux-arm), const SYS_SETHOSTNAME ideal-int +pkg syscall (linux-arm), const SYS_SETITIMER ideal-int +pkg syscall (linux-arm), const SYS_SETNS ideal-int +pkg syscall (linux-arm), const SYS_SETPGID ideal-int +pkg syscall (linux-arm), const SYS_SETPRIORITY ideal-int +pkg syscall (linux-arm), const SYS_SETREGID ideal-int +pkg syscall (linux-arm), const SYS_SETREGID32 ideal-int +pkg syscall (linux-arm), const SYS_SETRESGID ideal-int +pkg syscall (linux-arm), const SYS_SETRESGID32 ideal-int +pkg syscall (linux-arm), const SYS_SETRESUID ideal-int +pkg syscall (linux-arm), const SYS_SETRESUID32 ideal-int +pkg syscall (linux-arm), const SYS_SETREUID ideal-int +pkg syscall (linux-arm), const SYS_SETREUID32 ideal-int +pkg syscall (linux-arm), const SYS_SETRLIMIT ideal-int +pkg syscall (linux-arm), const SYS_SETSID ideal-int +pkg syscall (linux-arm), const SYS_SETSOCKOPT ideal-int +pkg syscall (linux-arm), const SYS_SETTIMEOFDAY ideal-int +pkg syscall (linux-arm), const SYS_SETUID ideal-int +pkg syscall (linux-arm), const SYS_SETUID32 ideal-int +pkg syscall (linux-arm), const SYS_SETXATTR ideal-int +pkg syscall (linux-arm), const SYS_SET_MEMPOLICY ideal-int +pkg syscall (linux-arm), const SYS_SET_ROBUST_LIST ideal-int +pkg syscall (linux-arm), const SYS_SET_TID_ADDRESS ideal-int +pkg syscall (linux-arm), const SYS_SHMAT ideal-int +pkg syscall (linux-arm), const SYS_SHMCTL ideal-int +pkg syscall (linux-arm), const SYS_SHMDT ideal-int +pkg syscall (linux-arm), const SYS_SHMGET ideal-int +pkg syscall (linux-arm), const SYS_SHUTDOWN ideal-int +pkg syscall (linux-arm), const SYS_SIGACTION ideal-int +pkg syscall (linux-arm), const SYS_SIGALTSTACK ideal-int +pkg syscall (linux-arm), const SYS_SIGNALFD ideal-int +pkg syscall (linux-arm), const SYS_SIGNALFD4 ideal-int +pkg syscall (linux-arm), const SYS_SIGPENDING ideal-int +pkg syscall (linux-arm), const SYS_SIGPROCMASK ideal-int +pkg syscall (linux-arm), const SYS_SIGRETURN ideal-int +pkg syscall (linux-arm), const SYS_SIGSUSPEND ideal-int +pkg syscall (linux-arm), const SYS_SOCKET ideal-int +pkg syscall (linux-arm), const SYS_SOCKETCALL ideal-int +pkg syscall (linux-arm), const SYS_SOCKETPAIR ideal-int +pkg syscall (linux-arm), const SYS_SPLICE ideal-int +pkg syscall (linux-arm), const SYS_STAT ideal-int +pkg syscall (linux-arm), const SYS_STAT64 ideal-int +pkg syscall (linux-arm), const SYS_STATFS ideal-int +pkg syscall (linux-arm), const SYS_STATFS64 ideal-int +pkg syscall (linux-arm), const SYS_STIME ideal-int +pkg syscall (linux-arm), const SYS_SWAPOFF ideal-int +pkg syscall (linux-arm), const SYS_SWAPON ideal-int +pkg syscall (linux-arm), const SYS_SYMLINK ideal-int +pkg syscall (linux-arm), const SYS_SYMLINKAT ideal-int +pkg syscall (linux-arm), const SYS_SYNC ideal-int +pkg syscall (linux-arm), const SYS_SYNCFS ideal-int +pkg syscall (linux-arm), const SYS_SYSCALL ideal-int +pkg syscall (linux-arm), const SYS_SYSCALL_BASE ideal-int +pkg syscall (linux-arm), const SYS_SYSFS ideal-int +pkg syscall (linux-arm), const SYS_SYSINFO ideal-int +pkg syscall (linux-arm), const SYS_SYSLOG ideal-int +pkg syscall (linux-arm), const SYS_TEE ideal-int +pkg syscall (linux-arm), const SYS_TGKILL ideal-int +pkg syscall (linux-arm), const SYS_TIME ideal-int +pkg syscall (linux-arm), const SYS_TIMERFD_CREATE ideal-int +pkg syscall (linux-arm), const SYS_TIMERFD_GETTIME ideal-int +pkg syscall (linux-arm), const SYS_TIMERFD_SETTIME ideal-int +pkg syscall (linux-arm), const SYS_TIMER_CREATE ideal-int +pkg syscall (linux-arm), const SYS_TIMER_DELETE ideal-int +pkg syscall (linux-arm), const SYS_TIMER_GETOVERRUN ideal-int +pkg syscall (linux-arm), const SYS_TIMER_GETTIME ideal-int +pkg syscall (linux-arm), const SYS_TIMER_SETTIME ideal-int +pkg syscall (linux-arm), const SYS_TIMES ideal-int +pkg syscall (linux-arm), const SYS_TKILL ideal-int +pkg syscall (linux-arm), const SYS_TRUNCATE ideal-int +pkg syscall (linux-arm), const SYS_TRUNCATE64 ideal-int +pkg syscall (linux-arm), const SYS_UGETRLIMIT ideal-int +pkg syscall (linux-arm), const SYS_UMASK ideal-int +pkg syscall (linux-arm), const SYS_UMOUNT ideal-int +pkg syscall (linux-arm), const SYS_UMOUNT2 ideal-int +pkg syscall (linux-arm), const SYS_UNAME ideal-int +pkg syscall (linux-arm), const SYS_UNLINK ideal-int +pkg syscall (linux-arm), const SYS_UNLINKAT ideal-int +pkg syscall (linux-arm), const SYS_UNSHARE ideal-int +pkg syscall (linux-arm), const SYS_USELIB ideal-int +pkg syscall (linux-arm), const SYS_USTAT ideal-int +pkg syscall (linux-arm), const SYS_UTIME ideal-int +pkg syscall (linux-arm), const SYS_UTIMENSAT ideal-int +pkg syscall (linux-arm), const SYS_UTIMES ideal-int +pkg syscall (linux-arm), const SYS_VFORK ideal-int +pkg syscall (linux-arm), const SYS_VHANGUP ideal-int +pkg syscall (linux-arm), const SYS_VMSPLICE ideal-int +pkg syscall (linux-arm), const SYS_VSERVER ideal-int +pkg syscall (linux-arm), const SYS_WAIT4 ideal-int +pkg syscall (linux-arm), const SYS_WAITID ideal-int +pkg syscall (linux-arm), const SYS_WRITE ideal-int +pkg syscall (linux-arm), const SYS_WRITEV ideal-int +pkg syscall (linux-arm), const SYS__LLSEEK ideal-int +pkg syscall (linux-arm), const SYS__NEWSELECT ideal-int +pkg syscall (linux-arm), const SYS__SYSCTL ideal-int +pkg syscall (linux-arm), const S_BLKSIZE ideal-int +pkg syscall (linux-arm), const S_IEXEC ideal-int +pkg syscall (linux-arm), const S_IREAD ideal-int +pkg syscall (linux-arm), const S_IRGRP ideal-int +pkg syscall (linux-arm), const S_IROTH ideal-int +pkg syscall (linux-arm), const S_IRWXG ideal-int +pkg syscall (linux-arm), const S_IRWXO ideal-int +pkg syscall (linux-arm), const S_IRWXU ideal-int +pkg syscall (linux-arm), const S_IWGRP ideal-int +pkg syscall (linux-arm), const S_IWOTH ideal-int +pkg syscall (linux-arm), const S_IWRITE ideal-int +pkg syscall (linux-arm), const S_IXGRP ideal-int +pkg syscall (linux-arm), const S_IXOTH ideal-int +pkg syscall (linux-arm), const SizeofCmsghdr ideal-int +pkg syscall (linux-arm), const SizeofIPMreq ideal-int +pkg syscall (linux-arm), const SizeofIPMreqn ideal-int +pkg syscall (linux-arm), const SizeofIPv6Mreq ideal-int +pkg syscall (linux-arm), const SizeofIfAddrmsg ideal-int +pkg syscall (linux-arm), const SizeofIfInfomsg ideal-int +pkg syscall (linux-arm), const SizeofInet4Pktinfo ideal-int +pkg syscall (linux-arm), const SizeofInet6Pktinfo ideal-int +pkg syscall (linux-arm), const SizeofInotifyEvent ideal-int +pkg syscall (linux-arm), const SizeofLinger ideal-int +pkg syscall (linux-arm), const SizeofMsghdr ideal-int +pkg syscall (linux-arm), const SizeofNlAttr ideal-int +pkg syscall (linux-arm), const SizeofNlMsgerr ideal-int +pkg syscall (linux-arm), const SizeofNlMsghdr ideal-int +pkg syscall (linux-arm), const SizeofRtAttr ideal-int +pkg syscall (linux-arm), const SizeofRtGenmsg ideal-int +pkg syscall (linux-arm), const SizeofRtMsg ideal-int +pkg syscall (linux-arm), const SizeofRtNexthop ideal-int +pkg syscall (linux-arm), const SizeofSockFilter ideal-int +pkg syscall (linux-arm), const SizeofSockFprog ideal-int +pkg syscall (linux-arm), const SizeofSockaddrAny ideal-int +pkg syscall (linux-arm), const SizeofSockaddrInet4 ideal-int +pkg syscall (linux-arm), const SizeofSockaddrInet6 ideal-int +pkg syscall (linux-arm), const SizeofSockaddrLinklayer ideal-int +pkg syscall (linux-arm), const SizeofSockaddrNetlink ideal-int +pkg syscall (linux-arm), const SizeofSockaddrUnix ideal-int +pkg syscall (linux-arm), const SizeofUcred ideal-int +pkg syscall (linux-arm), const TCGETS ideal-int +pkg syscall (linux-arm), const TCP_CONGESTION ideal-int +pkg syscall (linux-arm), const TCP_CORK ideal-int +pkg syscall (linux-arm), const TCP_DEFER_ACCEPT ideal-int +pkg syscall (linux-arm), const TCP_INFO ideal-int +pkg syscall (linux-arm), const TCP_KEEPCNT ideal-int +pkg syscall (linux-arm), const TCP_KEEPIDLE ideal-int +pkg syscall (linux-arm), const TCP_KEEPINTVL ideal-int +pkg syscall (linux-arm), const TCP_LINGER2 ideal-int +pkg syscall (linux-arm), const TCP_MAXSEG ideal-int +pkg syscall (linux-arm), const TCP_MAXWIN ideal-int +pkg syscall (linux-arm), const TCP_MAX_WINSHIFT ideal-int +pkg syscall (linux-arm), const TCP_MD5SIG ideal-int +pkg syscall (linux-arm), const TCP_MD5SIG_MAXKEYLEN ideal-int +pkg syscall (linux-arm), const TCP_MSS ideal-int +pkg syscall (linux-arm), const TCP_QUICKACK ideal-int +pkg syscall (linux-arm), const TCP_SYNCNT ideal-int +pkg syscall (linux-arm), const TCP_WINDOW_CLAMP ideal-int +pkg syscall (linux-arm), const TCSETS ideal-int +pkg syscall (linux-arm), const TIOCCBRK ideal-int +pkg syscall (linux-arm), const TIOCCONS ideal-int +pkg syscall (linux-arm), const TIOCEXCL ideal-int +pkg syscall (linux-arm), const TIOCGDEV ideal-int +pkg syscall (linux-arm), const TIOCGETD ideal-int +pkg syscall (linux-arm), const TIOCGICOUNT ideal-int +pkg syscall (linux-arm), const TIOCGLCKTRMIOS ideal-int +pkg syscall (linux-arm), const TIOCGPGRP ideal-int +pkg syscall (linux-arm), const TIOCGPTN ideal-int +pkg syscall (linux-arm), const TIOCGRS485 ideal-int +pkg syscall (linux-arm), const TIOCGSERIAL ideal-int +pkg syscall (linux-arm), const TIOCGSID ideal-int +pkg syscall (linux-arm), const TIOCGSOFTCAR ideal-int +pkg syscall (linux-arm), const TIOCGWINSZ ideal-int +pkg syscall (linux-arm), const TIOCINQ ideal-int +pkg syscall (linux-arm), const TIOCLINUX ideal-int +pkg syscall (linux-arm), const TIOCMBIC ideal-int +pkg syscall (linux-arm), const TIOCMBIS ideal-int +pkg syscall (linux-arm), const TIOCMGET ideal-int +pkg syscall (linux-arm), const TIOCMIWAIT ideal-int +pkg syscall (linux-arm), const TIOCMSET ideal-int +pkg syscall (linux-arm), const TIOCM_CAR ideal-int +pkg syscall (linux-arm), const TIOCM_CD ideal-int +pkg syscall (linux-arm), const TIOCM_CTS ideal-int +pkg syscall (linux-arm), const TIOCM_DSR ideal-int +pkg syscall (linux-arm), const TIOCM_DTR ideal-int +pkg syscall (linux-arm), const TIOCM_LE ideal-int +pkg syscall (linux-arm), const TIOCM_RI ideal-int +pkg syscall (linux-arm), const TIOCM_RNG ideal-int +pkg syscall (linux-arm), const TIOCM_RTS ideal-int +pkg syscall (linux-arm), const TIOCM_SR ideal-int +pkg syscall (linux-arm), const TIOCM_ST ideal-int +pkg syscall (linux-arm), const TIOCNOTTY ideal-int +pkg syscall (linux-arm), const TIOCNXCL ideal-int +pkg syscall (linux-arm), const TIOCOUTQ ideal-int +pkg syscall (linux-arm), const TIOCPKT ideal-int +pkg syscall (linux-arm), const TIOCPKT_DATA ideal-int +pkg syscall (linux-arm), const TIOCPKT_DOSTOP ideal-int +pkg syscall (linux-arm), const TIOCPKT_FLUSHREAD ideal-int +pkg syscall (linux-arm), const TIOCPKT_FLUSHWRITE ideal-int +pkg syscall (linux-arm), const TIOCPKT_IOCTL ideal-int +pkg syscall (linux-arm), const TIOCPKT_NOSTOP ideal-int +pkg syscall (linux-arm), const TIOCPKT_START ideal-int +pkg syscall (linux-arm), const TIOCPKT_STOP ideal-int +pkg syscall (linux-arm), const TIOCSBRK ideal-int +pkg syscall (linux-arm), const TIOCSCTTY ideal-int +pkg syscall (linux-arm), const TIOCSERCONFIG ideal-int +pkg syscall (linux-arm), const TIOCSERGETLSR ideal-int +pkg syscall (linux-arm), const TIOCSERGETMULTI ideal-int +pkg syscall (linux-arm), const TIOCSERGSTRUCT ideal-int +pkg syscall (linux-arm), const TIOCSERGWILD ideal-int +pkg syscall (linux-arm), const TIOCSERSETMULTI ideal-int +pkg syscall (linux-arm), const TIOCSERSWILD ideal-int +pkg syscall (linux-arm), const TIOCSER_TEMT ideal-int +pkg syscall (linux-arm), const TIOCSETD ideal-int +pkg syscall (linux-arm), const TIOCSIG ideal-int +pkg syscall (linux-arm), const TIOCSLCKTRMIOS ideal-int +pkg syscall (linux-arm), const TIOCSPGRP ideal-int +pkg syscall (linux-arm), const TIOCSPTLCK ideal-int +pkg syscall (linux-arm), const TIOCSRS485 ideal-int +pkg syscall (linux-arm), const TIOCSSERIAL ideal-int +pkg syscall (linux-arm), const TIOCSSOFTCAR ideal-int +pkg syscall (linux-arm), const TIOCSTI ideal-int +pkg syscall (linux-arm), const TIOCSWINSZ ideal-int +pkg syscall (linux-arm), const TIOCVHANGUP ideal-int +pkg syscall (linux-arm), const TOSTOP ideal-int +pkg syscall (linux-arm), const TUNATTACHFILTER ideal-int +pkg syscall (linux-arm), const TUNDETACHFILTER ideal-int +pkg syscall (linux-arm), const TUNGETFEATURES ideal-int +pkg syscall (linux-arm), const TUNGETIFF ideal-int +pkg syscall (linux-arm), const TUNGETSNDBUF ideal-int +pkg syscall (linux-arm), const TUNGETVNETHDRSZ ideal-int +pkg syscall (linux-arm), const TUNSETDEBUG ideal-int +pkg syscall (linux-arm), const TUNSETGROUP ideal-int +pkg syscall (linux-arm), const TUNSETIFF ideal-int +pkg syscall (linux-arm), const TUNSETLINK ideal-int +pkg syscall (linux-arm), const TUNSETNOCSUM ideal-int +pkg syscall (linux-arm), const TUNSETOFFLOAD ideal-int +pkg syscall (linux-arm), const TUNSETOWNER ideal-int +pkg syscall (linux-arm), const TUNSETPERSIST ideal-int +pkg syscall (linux-arm), const TUNSETSNDBUF ideal-int +pkg syscall (linux-arm), const TUNSETTXFILTER ideal-int +pkg syscall (linux-arm), const TUNSETVNETHDRSZ ideal-int +pkg syscall (linux-arm), const VDISCARD ideal-int +pkg syscall (linux-arm), const VEOF ideal-int +pkg syscall (linux-arm), const VEOL ideal-int +pkg syscall (linux-arm), const VEOL2 ideal-int +pkg syscall (linux-arm), const VERASE ideal-int +pkg syscall (linux-arm), const VINTR ideal-int +pkg syscall (linux-arm), const VKILL ideal-int +pkg syscall (linux-arm), const VLNEXT ideal-int +pkg syscall (linux-arm), const VMIN ideal-int +pkg syscall (linux-arm), const VQUIT ideal-int +pkg syscall (linux-arm), const VREPRINT ideal-int +pkg syscall (linux-arm), const VSTART ideal-int +pkg syscall (linux-arm), const VSTOP ideal-int +pkg syscall (linux-arm), const VSUSP ideal-int +pkg syscall (linux-arm), const VSWTC ideal-int +pkg syscall (linux-arm), const VTIME ideal-int +pkg syscall (linux-arm), const VWERASE ideal-int +pkg syscall (linux-arm), const WALL ideal-int +pkg syscall (linux-arm), const WCLONE ideal-int +pkg syscall (linux-arm), const WCONTINUED ideal-int +pkg syscall (linux-arm), const WEXITED ideal-int +pkg syscall (linux-arm), const WNOHANG ideal-int +pkg syscall (linux-arm), const WNOTHREAD ideal-int +pkg syscall (linux-arm), const WNOWAIT ideal-int +pkg syscall (linux-arm), const WORDSIZE ideal-int +pkg syscall (linux-arm), const WSTOPPED ideal-int +pkg syscall (linux-arm), const WUNTRACED ideal-int +pkg syscall (linux-arm), const XCASE ideal-int +pkg syscall (linux-arm), func Accept(int) (int, Sockaddr, error) +pkg syscall (linux-arm), func Access(string, uint32) error +pkg syscall (linux-arm), func Acct(string) error +pkg syscall (linux-arm), func Adjtimex(*Timex) (int, error) +pkg syscall (linux-arm), func AttachLsf(int, []SockFilter) error +pkg syscall (linux-arm), func Bind(int, Sockaddr) error +pkg syscall (linux-arm), func BindToDevice(int, string) error +pkg syscall (linux-arm), func Chroot(string) error +pkg syscall (linux-arm), func Close(int) error +pkg syscall (linux-arm), func CloseOnExec(int) +pkg syscall (linux-arm), func CmsgLen(int) int +pkg syscall (linux-arm), func CmsgSpace(int) int +pkg syscall (linux-arm), func Connect(int, Sockaddr) error +pkg syscall (linux-arm), func Creat(string, uint32) (int, error) +pkg syscall (linux-arm), func DetachLsf(int) error +pkg syscall (linux-arm), func Dup(int) (int, error) +pkg syscall (linux-arm), func Dup2(int, int) error +pkg syscall (linux-arm), func EpollCreate(int) (int, error) +pkg syscall (linux-arm), func EpollCreate1(int) (int, error) +pkg syscall (linux-arm), func EpollCtl(int, int, int, *EpollEvent) error +pkg syscall (linux-arm), func EpollWait(int, []EpollEvent, int) (int, error) +pkg syscall (linux-arm), func Faccessat(int, string, uint32, int) error +pkg syscall (linux-arm), func Fallocate(int, uint32, int64, int64) error +pkg syscall (linux-arm), func Fchdir(int) error +pkg syscall (linux-arm), func Fchmod(int, uint32) error +pkg syscall (linux-arm), func Fchmodat(int, string, uint32, int) error +pkg syscall (linux-arm), func Fchown(int, int, int) error +pkg syscall (linux-arm), func Fchownat(int, string, int, int, int) error +pkg syscall (linux-arm), func Fdatasync(int) error +pkg syscall (linux-arm), func Flock(int, int) error +pkg syscall (linux-arm), func ForkExec(string, []string, *ProcAttr) (int, error) +pkg syscall (linux-arm), func Fstat(int, *Stat_t) error +pkg syscall (linux-arm), func Fstatfs(int, *Statfs_t) error +pkg syscall (linux-arm), func Fsync(int) error +pkg syscall (linux-arm), func Ftruncate(int, int64) error +pkg syscall (linux-arm), func Futimes(int, []Timeval) error +pkg syscall (linux-arm), func Futimesat(int, string, []Timeval) error +pkg syscall (linux-arm), func Getcwd([]uint8) (int, error) +pkg syscall (linux-arm), func Getdents(int, []uint8) (int, error) +pkg syscall (linux-arm), func Getpeername(int) (Sockaddr, error) +pkg syscall (linux-arm), func Getpgid(int) (int, error) +pkg syscall (linux-arm), func Getpgrp() int +pkg syscall (linux-arm), func Getrlimit(int, *Rlimit) error +pkg syscall (linux-arm), func Getrusage(int, *Rusage) error +pkg syscall (linux-arm), func Getsockname(int) (Sockaddr, error) +pkg syscall (linux-arm), func GetsockoptIPMreq(int, int, int) (*IPMreq, error) +pkg syscall (linux-arm), func GetsockoptIPMreqn(int, int, int) (*IPMreqn, error) +pkg syscall (linux-arm), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error) +pkg syscall (linux-arm), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error) +pkg syscall (linux-arm), func GetsockoptInt(int, int, int) (int, error) +pkg syscall (linux-arm), func Gettid() int +pkg syscall (linux-arm), func InotifyAddWatch(int, string, uint32) (int, error) +pkg syscall (linux-arm), func InotifyInit() (int, error) +pkg syscall (linux-arm), func InotifyInit1(int) (int, error) +pkg syscall (linux-arm), func InotifyRmWatch(int, uint32) (int, error) +pkg syscall (linux-arm), func Kill(int, Signal) error +pkg syscall (linux-arm), func Klogctl(int, []uint8) (int, error) +pkg syscall (linux-arm), func Listen(int, int) error +pkg syscall (linux-arm), func LsfJump(int, int, int, int) *SockFilter +pkg syscall (linux-arm), func LsfSocket(int, int) (int, error) +pkg syscall (linux-arm), func LsfStmt(int, int) *SockFilter +pkg syscall (linux-arm), func Lstat(string, *Stat_t) error +pkg syscall (linux-arm), func Madvise([]uint8, int) error +pkg syscall (linux-arm), func Mkdirat(int, string, uint32) error +pkg syscall (linux-arm), func Mkfifo(string, uint32) error +pkg syscall (linux-arm), func Mknod(string, uint32, int) error +pkg syscall (linux-arm), func Mknodat(int, string, uint32, int) error +pkg syscall (linux-arm), func Mlock([]uint8) error +pkg syscall (linux-arm), func Mlockall(int) error +pkg syscall (linux-arm), func Mmap(int, int64, int, int, int) ([]uint8, error) +pkg syscall (linux-arm), func Mount(string, string, string, uintptr, string) error +pkg syscall (linux-arm), func Mprotect([]uint8, int) error +pkg syscall (linux-arm), func Munlock([]uint8) error +pkg syscall (linux-arm), func Munlockall() error +pkg syscall (linux-arm), func Munmap([]uint8) error +pkg syscall (linux-arm), func Nanosleep(*Timespec, *Timespec) error +pkg syscall (linux-arm), func NetlinkRIB(int, int) ([]uint8, error) +pkg syscall (linux-arm), func NsecToTimespec(int64) Timespec +pkg syscall (linux-arm), func Open(string, int, uint32) (int, error) +pkg syscall (linux-arm), func Openat(int, string, int, uint32) (int, error) +pkg syscall (linux-arm), func ParseDirent([]uint8, int, []string) (int, int, []string) +pkg syscall (linux-arm), func ParseNetlinkMessage([]uint8) ([]NetlinkMessage, error) +pkg syscall (linux-arm), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error) +pkg syscall (linux-arm), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error) +pkg syscall (linux-arm), func ParseUnixCredentials(*SocketControlMessage) (*Ucred, error) +pkg syscall (linux-arm), func ParseUnixRights(*SocketControlMessage) ([]int, error) +pkg syscall (linux-arm), func Pause() error +pkg syscall (linux-arm), func Pipe([]int) error +pkg syscall (linux-arm), func PivotRoot(string, string) error +pkg syscall (linux-arm), func Pread(int, []uint8, int64) (int, error) +pkg syscall (linux-arm), func PtraceAttach(int) error +pkg syscall (linux-arm), func PtraceCont(int, int) error +pkg syscall (linux-arm), func PtraceDetach(int) error +pkg syscall (linux-arm), func PtraceGetEventMsg(int) (uint, error) +pkg syscall (linux-arm), func PtraceGetRegs(int, *PtraceRegs) error +pkg syscall (linux-arm), func PtracePeekData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm), func PtracePeekText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm), func PtracePokeData(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm), func PtracePokeText(int, uintptr, []uint8) (int, error) +pkg syscall (linux-arm), func PtraceSetOptions(int, int) error +pkg syscall (linux-arm), func PtraceSetRegs(int, *PtraceRegs) error +pkg syscall (linux-arm), func PtraceSingleStep(int) error +pkg syscall (linux-arm), func Pwrite(int, []uint8, int64) (int, error) +pkg syscall (linux-arm), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func Read(int, []uint8) (int, error) +pkg syscall (linux-arm), func ReadDirent(int, []uint8) (int, error) +pkg syscall (linux-arm), func Reboot(int) error +pkg syscall (linux-arm), func Recvfrom(int, []uint8, int) (int, Sockaddr, error) +pkg syscall (linux-arm), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error) +pkg syscall (linux-arm), func Renameat(int, string, int, string) error +pkg syscall (linux-arm), func Seek(int, int64, int) (int64, error) +pkg syscall (linux-arm), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) (int, error) +pkg syscall (linux-arm), func Sendfile(int, int, *int64, int) (int, error) +pkg syscall (linux-arm), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error +pkg syscall (linux-arm), func Sendto(int, []uint8, int, Sockaddr) error +pkg syscall (linux-arm), func SetLsfPromisc(string, bool) error +pkg syscall (linux-arm), func SetNonblock(int, bool) error +pkg syscall (linux-arm), func Setdomainname([]uint8) error +pkg syscall (linux-arm), func Setfsgid(int) error +pkg syscall (linux-arm), func Setfsuid(int) error +pkg syscall (linux-arm), func Setgid(int) error +pkg syscall (linux-arm), func Setgroups([]int) error +pkg syscall (linux-arm), func Sethostname([]uint8) error +pkg syscall (linux-arm), func Setpgid(int, int) error +pkg syscall (linux-arm), func Setregid(int, int) error +pkg syscall (linux-arm), func Setresgid(int, int, int) error +pkg syscall (linux-arm), func Setresuid(int, int, int) error +pkg syscall (linux-arm), func Setreuid(int, int) error +pkg syscall (linux-arm), func Setrlimit(int, *Rlimit) error +pkg syscall (linux-arm), func Setsid() (int, error) +pkg syscall (linux-arm), func SetsockoptIPMreq(int, int, int, *IPMreq) error +pkg syscall (linux-arm), func SetsockoptIPMreqn(int, int, int, *IPMreqn) error +pkg syscall (linux-arm), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error +pkg syscall (linux-arm), func SetsockoptInet4Addr(int, int, int, [4]uint8) error +pkg syscall (linux-arm), func SetsockoptInt(int, int, int, int) error +pkg syscall (linux-arm), func SetsockoptLinger(int, int, int, *Linger) error +pkg syscall (linux-arm), func SetsockoptString(int, int, int, string) error +pkg syscall (linux-arm), func SetsockoptTimeval(int, int, int, *Timeval) error +pkg syscall (linux-arm), func Settimeofday(*Timeval) error +pkg syscall (linux-arm), func Setuid(int) error +pkg syscall (linux-arm), func Shutdown(int, int) error +pkg syscall (linux-arm), func Socket(int, int, int) (int, error) +pkg syscall (linux-arm), func Socketpair(int, int, int) ([2]int, error) +pkg syscall (linux-arm), func Splice(int, *int64, int, *int64, int, int) (int, error) +pkg syscall (linux-arm), func Stat(string, *Stat_t) error +pkg syscall (linux-arm), func Statfs(string, *Statfs_t) error +pkg syscall (linux-arm), func StringSlicePtr([]string) []*uint8 +pkg syscall (linux-arm), func Sync() +pkg syscall (linux-arm), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (linux-arm), func Sysinfo(*Sysinfo_t) error +pkg syscall (linux-arm), func Tee(int, int, int, int) (int64, error) +pkg syscall (linux-arm), func Tgkill(int, int, Signal) error +pkg syscall (linux-arm), func Time(*Time_t) (Time_t, error) +pkg syscall (linux-arm), func Times(*Tms) (uintptr, error) +pkg syscall (linux-arm), func TimespecToNsec(Timespec) int64 +pkg syscall (linux-arm), func Truncate(string, int64) error +pkg syscall (linux-arm), func Umask(int) int +pkg syscall (linux-arm), func Uname(*Utsname) error +pkg syscall (linux-arm), func UnixCredentials(*Ucred) []uint8 +pkg syscall (linux-arm), func UnixRights(...int) []uint8 +pkg syscall (linux-arm), func Unlinkat(int, string) error +pkg syscall (linux-arm), func Unmount(string, int) error +pkg syscall (linux-arm), func Unshare(int) error +pkg syscall (linux-arm), func Ustat(int, *Ustat_t) error +pkg syscall (linux-arm), func Utime(string, *Utimbuf) error +pkg syscall (linux-arm), func Wait4(int, *WaitStatus, int, *Rusage) (int, error) +pkg syscall (linux-arm), func Write(int, []uint8) (int, error) +pkg syscall (linux-arm), method (*Cmsghdr) SetLen(int) +pkg syscall (linux-arm), method (*Iovec) SetLen(int) +pkg syscall (linux-arm), method (*Msghdr) SetControllen(int) +pkg syscall (linux-arm), method (*PtraceRegs) PC() uint64 +pkg syscall (linux-arm), method (*PtraceRegs) SetPC(uint64) +pkg syscall (linux-arm), type Cmsghdr struct +pkg syscall (linux-arm), type Cmsghdr struct, Len uint32 +pkg syscall (linux-arm), type Cmsghdr struct, Level int32 +pkg syscall (linux-arm), type Cmsghdr struct, Type int32 +pkg syscall (linux-arm), type Cmsghdr struct, X__cmsg_data [0]uint8 +pkg syscall (linux-arm), type Credential struct +pkg syscall (linux-arm), type Credential struct, Gid uint32 +pkg syscall (linux-arm), type Credential struct, Groups []uint32 +pkg syscall (linux-arm), type Credential struct, Uid uint32 +pkg syscall (linux-arm), type Dirent struct +pkg syscall (linux-arm), type Dirent struct, Ino uint64 +pkg syscall (linux-arm), type Dirent struct, Name [256]uint8 +pkg syscall (linux-arm), type Dirent struct, Off int64 +pkg syscall (linux-arm), type Dirent struct, Pad_cgo_0 [5]uint8 +pkg syscall (linux-arm), type Dirent struct, Reclen uint16 +pkg syscall (linux-arm), type Dirent struct, Type uint8 +pkg syscall (linux-arm), type EpollEvent struct +pkg syscall (linux-arm), type EpollEvent struct, Events uint32 +pkg syscall (linux-arm), type EpollEvent struct, Fd int32 +pkg syscall (linux-arm), type EpollEvent struct, Pad int32 +pkg syscall (linux-arm), type EpollEvent struct, PadFd int32 +pkg syscall (linux-arm), type FdSet struct +pkg syscall (linux-arm), type FdSet struct, Bits [32]int32 +pkg syscall (linux-arm), type Fsid struct +pkg syscall (linux-arm), type Fsid struct, X__val [2]int32 +pkg syscall (linux-arm), type IPMreqn struct +pkg syscall (linux-arm), type IPMreqn struct, Address [4]uint8 +pkg syscall (linux-arm), type IPMreqn struct, Ifindex int32 +pkg syscall (linux-arm), type IPMreqn struct, Multiaddr [4]uint8 +pkg syscall (linux-arm), type IfAddrmsg struct +pkg syscall (linux-arm), type IfAddrmsg struct, Family uint8 +pkg syscall (linux-arm), type IfAddrmsg struct, Flags uint8 +pkg syscall (linux-arm), type IfAddrmsg struct, Index uint32 +pkg syscall (linux-arm), type IfAddrmsg struct, Prefixlen uint8 +pkg syscall (linux-arm), type IfAddrmsg struct, Scope uint8 +pkg syscall (linux-arm), type IfInfomsg struct +pkg syscall (linux-arm), type IfInfomsg struct, Change uint32 +pkg syscall (linux-arm), type IfInfomsg struct, Family uint8 +pkg syscall (linux-arm), type IfInfomsg struct, Flags uint32 +pkg syscall (linux-arm), type IfInfomsg struct, Index int32 +pkg syscall (linux-arm), type IfInfomsg struct, Type uint16 +pkg syscall (linux-arm), type IfInfomsg struct, X__ifi_pad uint8 +pkg syscall (linux-arm), type Inet4Pktinfo struct +pkg syscall (linux-arm), type Inet4Pktinfo struct, Addr [4]uint8 +pkg syscall (linux-arm), type Inet4Pktinfo struct, Ifindex int32 +pkg syscall (linux-arm), type Inet4Pktinfo struct, Spec_dst [4]uint8 +pkg syscall (linux-arm), type Inet6Pktinfo struct +pkg syscall (linux-arm), type Inet6Pktinfo struct, Addr [16]uint8 +pkg syscall (linux-arm), type Inet6Pktinfo struct, Ifindex uint32 +pkg syscall (linux-arm), type InotifyEvent struct +pkg syscall (linux-arm), type InotifyEvent struct, Cookie uint32 +pkg syscall (linux-arm), type InotifyEvent struct, Len uint32 +pkg syscall (linux-arm), type InotifyEvent struct, Mask uint32 +pkg syscall (linux-arm), type InotifyEvent struct, Name [0]uint8 +pkg syscall (linux-arm), type InotifyEvent struct, Wd int32 +pkg syscall (linux-arm), type Iovec struct +pkg syscall (linux-arm), type Iovec struct, Base *uint8 +pkg syscall (linux-arm), type Iovec struct, Len uint32 +pkg syscall (linux-arm), type Msghdr struct +pkg syscall (linux-arm), type Msghdr struct, Control *uint8 +pkg syscall (linux-arm), type Msghdr struct, Controllen uint32 +pkg syscall (linux-arm), type Msghdr struct, Flags int32 +pkg syscall (linux-arm), type Msghdr struct, Iov *Iovec +pkg syscall (linux-arm), type Msghdr struct, Iovlen uint32 +pkg syscall (linux-arm), type Msghdr struct, Name *uint8 +pkg syscall (linux-arm), type Msghdr struct, Namelen uint32 +pkg syscall (linux-arm), type NetlinkMessage struct +pkg syscall (linux-arm), type NetlinkMessage struct, Data []uint8 +pkg syscall (linux-arm), type NetlinkMessage struct, Header NlMsghdr +pkg syscall (linux-arm), type NetlinkRouteAttr struct +pkg syscall (linux-arm), type NetlinkRouteAttr struct, Attr RtAttr +pkg syscall (linux-arm), type NetlinkRouteAttr struct, Value []uint8 +pkg syscall (linux-arm), type NetlinkRouteRequest struct +pkg syscall (linux-arm), type NetlinkRouteRequest struct, Data RtGenmsg +pkg syscall (linux-arm), type NetlinkRouteRequest struct, Header NlMsghdr +pkg syscall (linux-arm), type NlAttr struct +pkg syscall (linux-arm), type NlAttr struct, Len uint16 +pkg syscall (linux-arm), type NlAttr struct, Type uint16 +pkg syscall (linux-arm), type NlMsgerr struct +pkg syscall (linux-arm), type NlMsgerr struct, Error int32 +pkg syscall (linux-arm), type NlMsgerr struct, Msg NlMsghdr +pkg syscall (linux-arm), type NlMsghdr struct +pkg syscall (linux-arm), type NlMsghdr struct, Flags uint16 +pkg syscall (linux-arm), type NlMsghdr struct, Len uint32 +pkg syscall (linux-arm), type NlMsghdr struct, Pid uint32 +pkg syscall (linux-arm), type NlMsghdr struct, Seq uint32 +pkg syscall (linux-arm), type NlMsghdr struct, Type uint16 +pkg syscall (linux-arm), type PtraceRegs struct +pkg syscall (linux-arm), type PtraceRegs struct, Uregs [18]uint32 +pkg syscall (linux-arm), type RawSockaddr struct, Data [14]uint8 +pkg syscall (linux-arm), type RawSockaddr struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrAny struct, Pad [96]uint8 +pkg syscall (linux-arm), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (linux-arm), type RawSockaddrInet6 struct +pkg syscall (linux-arm), type RawSockaddrInet6 struct, Addr [16]uint8 +pkg syscall (linux-arm), type RawSockaddrInet6 struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrInet6 struct, Flowinfo uint32 +pkg syscall (linux-arm), type RawSockaddrInet6 struct, Port uint16 +pkg syscall (linux-arm), type RawSockaddrInet6 struct, Scope_id uint32 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Ifindex int32 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-arm), type RawSockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-arm), type RawSockaddrNetlink struct +pkg syscall (linux-arm), type RawSockaddrNetlink struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrNetlink struct, Groups uint32 +pkg syscall (linux-arm), type RawSockaddrNetlink struct, Pad uint16 +pkg syscall (linux-arm), type RawSockaddrNetlink struct, Pid uint32 +pkg syscall (linux-arm), type RawSockaddrUnix struct +pkg syscall (linux-arm), type RawSockaddrUnix struct, Family uint16 +pkg syscall (linux-arm), type RawSockaddrUnix struct, Path [108]int8 +pkg syscall (linux-arm), type Rlimit struct +pkg syscall (linux-arm), type Rlimit struct, Cur uint64 +pkg syscall (linux-arm), type Rlimit struct, Max uint64 +pkg syscall (linux-arm), type RtAttr struct +pkg syscall (linux-arm), type RtAttr struct, Len uint16 +pkg syscall (linux-arm), type RtAttr struct, Type uint16 +pkg syscall (linux-arm), type RtGenmsg struct +pkg syscall (linux-arm), type RtGenmsg struct, Family uint8 +pkg syscall (linux-arm), type RtMsg struct +pkg syscall (linux-arm), type RtMsg struct, Dst_len uint8 +pkg syscall (linux-arm), type RtMsg struct, Family uint8 +pkg syscall (linux-arm), type RtMsg struct, Flags uint32 +pkg syscall (linux-arm), type RtMsg struct, Protocol uint8 +pkg syscall (linux-arm), type RtMsg struct, Scope uint8 +pkg syscall (linux-arm), type RtMsg struct, Src_len uint8 +pkg syscall (linux-arm), type RtMsg struct, Table uint8 +pkg syscall (linux-arm), type RtMsg struct, Tos uint8 +pkg syscall (linux-arm), type RtMsg struct, Type uint8 +pkg syscall (linux-arm), type RtNexthop struct +pkg syscall (linux-arm), type RtNexthop struct, Flags uint8 +pkg syscall (linux-arm), type RtNexthop struct, Hops uint8 +pkg syscall (linux-arm), type RtNexthop struct, Ifindex int32 +pkg syscall (linux-arm), type RtNexthop struct, Len uint16 +pkg syscall (linux-arm), type Rusage struct, Idrss int32 +pkg syscall (linux-arm), type Rusage struct, Inblock int32 +pkg syscall (linux-arm), type Rusage struct, Isrss int32 +pkg syscall (linux-arm), type Rusage struct, Ixrss int32 +pkg syscall (linux-arm), type Rusage struct, Majflt int32 +pkg syscall (linux-arm), type Rusage struct, Maxrss int32 +pkg syscall (linux-arm), type Rusage struct, Minflt int32 +pkg syscall (linux-arm), type Rusage struct, Msgrcv int32 +pkg syscall (linux-arm), type Rusage struct, Msgsnd int32 +pkg syscall (linux-arm), type Rusage struct, Nivcsw int32 +pkg syscall (linux-arm), type Rusage struct, Nsignals int32 +pkg syscall (linux-arm), type Rusage struct, Nswap int32 +pkg syscall (linux-arm), type Rusage struct, Nvcsw int32 +pkg syscall (linux-arm), type Rusage struct, Oublock int32 +pkg syscall (linux-arm), type Rusage struct, Stime Timeval +pkg syscall (linux-arm), type Rusage struct, Utime Timeval +pkg syscall (linux-arm), type SockFilter struct +pkg syscall (linux-arm), type SockFilter struct, Code uint16 +pkg syscall (linux-arm), type SockFilter struct, Jf uint8 +pkg syscall (linux-arm), type SockFilter struct, Jt uint8 +pkg syscall (linux-arm), type SockFilter struct, K uint32 +pkg syscall (linux-arm), type SockFprog struct +pkg syscall (linux-arm), type SockFprog struct, Filter *SockFilter +pkg syscall (linux-arm), type SockFprog struct, Len uint16 +pkg syscall (linux-arm), type SockFprog struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm), type SockaddrLinklayer struct +pkg syscall (linux-arm), type SockaddrLinklayer struct, Addr [8]uint8 +pkg syscall (linux-arm), type SockaddrLinklayer struct, Halen uint8 +pkg syscall (linux-arm), type SockaddrLinklayer struct, Hatype uint16 +pkg syscall (linux-arm), type SockaddrLinklayer struct, Ifindex int +pkg syscall (linux-arm), type SockaddrLinklayer struct, Pkttype uint8 +pkg syscall (linux-arm), type SockaddrLinklayer struct, Protocol uint16 +pkg syscall (linux-arm), type SockaddrNetlink struct +pkg syscall (linux-arm), type SockaddrNetlink struct, Family uint16 +pkg syscall (linux-arm), type SockaddrNetlink struct, Groups uint32 +pkg syscall (linux-arm), type SockaddrNetlink struct, Pad uint16 +pkg syscall (linux-arm), type SockaddrNetlink struct, Pid uint32 +pkg syscall (linux-arm), type SocketControlMessage struct +pkg syscall (linux-arm), type SocketControlMessage struct, Data []uint8 +pkg syscall (linux-arm), type SocketControlMessage struct, Header Cmsghdr +pkg syscall (linux-arm), type Stat_t struct +pkg syscall (linux-arm), type Stat_t struct, Atim Timespec +pkg syscall (linux-arm), type Stat_t struct, Blksize int32 +pkg syscall (linux-arm), type Stat_t struct, Blocks int64 +pkg syscall (linux-arm), type Stat_t struct, Ctim Timespec +pkg syscall (linux-arm), type Stat_t struct, Dev uint64 +pkg syscall (linux-arm), type Stat_t struct, Gid uint32 +pkg syscall (linux-arm), type Stat_t struct, Ino uint64 +pkg syscall (linux-arm), type Stat_t struct, Mode uint32 +pkg syscall (linux-arm), type Stat_t struct, Mtim Timespec +pkg syscall (linux-arm), type Stat_t struct, Nlink uint32 +pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_0 [2]uint8 +pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_1 [6]uint8 +pkg syscall (linux-arm), type Stat_t struct, Pad_cgo_2 [4]uint8 +pkg syscall (linux-arm), type Stat_t struct, Rdev uint64 +pkg syscall (linux-arm), type Stat_t struct, Size int64 +pkg syscall (linux-arm), type Stat_t struct, Uid uint32 +pkg syscall (linux-arm), type Stat_t struct, X__pad1 uint16 +pkg syscall (linux-arm), type Stat_t struct, X__pad2 uint16 +pkg syscall (linux-arm), type Stat_t struct, X__st_ino uint32 +pkg syscall (linux-arm), type Statfs_t struct +pkg syscall (linux-arm), type Statfs_t struct, Bavail uint64 +pkg syscall (linux-arm), type Statfs_t struct, Bfree uint64 +pkg syscall (linux-arm), type Statfs_t struct, Blocks uint64 +pkg syscall (linux-arm), type Statfs_t struct, Bsize int32 +pkg syscall (linux-arm), type Statfs_t struct, Ffree uint64 +pkg syscall (linux-arm), type Statfs_t struct, Files uint64 +pkg syscall (linux-arm), type Statfs_t struct, Flags int32 +pkg syscall (linux-arm), type Statfs_t struct, Frsize int32 +pkg syscall (linux-arm), type Statfs_t struct, Fsid Fsid +pkg syscall (linux-arm), type Statfs_t struct, Namelen int32 +pkg syscall (linux-arm), type Statfs_t struct, Pad_cgo_0 [4]uint8 +pkg syscall (linux-arm), type Statfs_t struct, Spare [4]int32 +pkg syscall (linux-arm), type Statfs_t struct, Type int32 +pkg syscall (linux-arm), type SysProcAttr struct, Chroot string +pkg syscall (linux-arm), type SysProcAttr struct, Credential *Credential +pkg syscall (linux-arm), type SysProcAttr struct, Noctty bool +pkg syscall (linux-arm), type SysProcAttr struct, Pdeathsig Signal +pkg syscall (linux-arm), type SysProcAttr struct, Ptrace bool +pkg syscall (linux-arm), type SysProcAttr struct, Setctty bool +pkg syscall (linux-arm), type SysProcAttr struct, Setpgid bool +pkg syscall (linux-arm), type SysProcAttr struct, Setsid bool +pkg syscall (linux-arm), type Sysinfo_t struct +pkg syscall (linux-arm), type Sysinfo_t struct, Bufferram uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Freehigh uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Freeram uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Freeswap uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Loads [3]uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Pad uint16 +pkg syscall (linux-arm), type Sysinfo_t struct, Procs uint16 +pkg syscall (linux-arm), type Sysinfo_t struct, Sharedram uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Totalhigh uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Totalram uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Totalswap uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Unit uint32 +pkg syscall (linux-arm), type Sysinfo_t struct, Uptime int32 +pkg syscall (linux-arm), type Sysinfo_t struct, X_f [8]uint8 +pkg syscall (linux-arm), type Termios struct +pkg syscall (linux-arm), type Termios struct, Cc [32]uint8 +pkg syscall (linux-arm), type Termios struct, Cflag uint32 +pkg syscall (linux-arm), type Termios struct, Iflag uint32 +pkg syscall (linux-arm), type Termios struct, Ispeed uint32 +pkg syscall (linux-arm), type Termios struct, Lflag uint32 +pkg syscall (linux-arm), type Termios struct, Line uint8 +pkg syscall (linux-arm), type Termios struct, Oflag uint32 +pkg syscall (linux-arm), type Termios struct, Ospeed uint32 +pkg syscall (linux-arm), type Termios struct, Pad_cgo_0 [3]uint8 +pkg syscall (linux-arm), type Time_t int32 +pkg syscall (linux-arm), type Timespec struct, Nsec int32 +pkg syscall (linux-arm), type Timespec struct, Sec int32 +pkg syscall (linux-arm), type Timeval struct, Sec int32 +pkg syscall (linux-arm), type Timeval struct, Usec int32 +pkg syscall (linux-arm), type Timex struct +pkg syscall (linux-arm), type Timex struct, Calcnt int32 +pkg syscall (linux-arm), type Timex struct, Constant int32 +pkg syscall (linux-arm), type Timex struct, Errcnt int32 +pkg syscall (linux-arm), type Timex struct, Esterror int32 +pkg syscall (linux-arm), type Timex struct, Freq int32 +pkg syscall (linux-arm), type Timex struct, Jitcnt int32 +pkg syscall (linux-arm), type Timex struct, Jitter int32 +pkg syscall (linux-arm), type Timex struct, Maxerror int32 +pkg syscall (linux-arm), type Timex struct, Modes uint32 +pkg syscall (linux-arm), type Timex struct, Offset int32 +pkg syscall (linux-arm), type Timex struct, Pad_cgo_0 [44]uint8 +pkg syscall (linux-arm), type Timex struct, Ppsfreq int32 +pkg syscall (linux-arm), type Timex struct, Precision int32 +pkg syscall (linux-arm), type Timex struct, Shift int32 +pkg syscall (linux-arm), type Timex struct, Stabil int32 +pkg syscall (linux-arm), type Timex struct, Status int32 +pkg syscall (linux-arm), type Timex struct, Stbcnt int32 +pkg syscall (linux-arm), type Timex struct, Tai int32 +pkg syscall (linux-arm), type Timex struct, Tick int32 +pkg syscall (linux-arm), type Timex struct, Time Timeval +pkg syscall (linux-arm), type Timex struct, Tolerance int32 +pkg syscall (linux-arm), type Tms struct +pkg syscall (linux-arm), type Tms struct, Cstime int32 +pkg syscall (linux-arm), type Tms struct, Cutime int32 +pkg syscall (linux-arm), type Tms struct, Stime int32 +pkg syscall (linux-arm), type Tms struct, Utime int32 +pkg syscall (linux-arm), type Ucred struct +pkg syscall (linux-arm), type Ucred struct, Gid uint32 +pkg syscall (linux-arm), type Ucred struct, Pid int32 +pkg syscall (linux-arm), type Ucred struct, Uid uint32 +pkg syscall (linux-arm), type Ustat_t struct +pkg syscall (linux-arm), type Ustat_t struct, Fname [6]uint8 +pkg syscall (linux-arm), type Ustat_t struct, Fpack [6]uint8 +pkg syscall (linux-arm), type Ustat_t struct, Tfree int32 +pkg syscall (linux-arm), type Ustat_t struct, Tinode uint32 +pkg syscall (linux-arm), type Utimbuf struct +pkg syscall (linux-arm), type Utimbuf struct, Actime int32 +pkg syscall (linux-arm), type Utimbuf struct, Modtime int32 +pkg syscall (linux-arm), type Utsname struct +pkg syscall (linux-arm), type Utsname struct, Domainname [65]uint8 +pkg syscall (linux-arm), type Utsname struct, Machine [65]uint8 +pkg syscall (linux-arm), type Utsname struct, Nodename [65]uint8 +pkg syscall (linux-arm), type Utsname struct, Release [65]uint8 +pkg syscall (linux-arm), type Utsname struct, Sysname [65]uint8 +pkg syscall (linux-arm), type Utsname struct, Version [65]uint8 +pkg syscall (linux-arm), type WaitStatus uint32 +pkg syscall (linux-arm), var Stderr int +pkg syscall (linux-arm), var Stdin int +pkg syscall (linux-arm), var Stdout int +pkg syscall (windows-386), const AF_NETBIOS ideal-int +pkg syscall (windows-386), const APPLICATION_ERROR ideal-int +pkg syscall (windows-386), const AUTHTYPE_CLIENT ideal-int +pkg syscall (windows-386), const AUTHTYPE_SERVER ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE_TS ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASE ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_EV ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_MICROSOFT_ROOT ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_NT_AUTH ideal-int +pkg syscall (windows-386), const CERT_CHAIN_POLICY_SSL ideal-int +pkg syscall (windows-386), const CERT_E_CN_NO_MATCH ideal-int +pkg syscall (windows-386), const CERT_E_EXPIRED ideal-int +pkg syscall (windows-386), const CERT_E_PURPOSE ideal-int +pkg syscall (windows-386), const CERT_E_ROLE ideal-int +pkg syscall (windows-386), const CERT_E_UNTRUSTEDROOT ideal-int +pkg syscall (windows-386), const CERT_STORE_ADD_ALWAYS ideal-int +pkg syscall (windows-386), const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG ideal-int +pkg syscall (windows-386), const CERT_STORE_PROV_MEMORY ideal-int +pkg syscall (windows-386), const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT ideal-int +pkg syscall (windows-386), const CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-386), const CERT_TRUST_INVALID_BASIC_CONSTRAINTS ideal-int +pkg syscall (windows-386), const CERT_TRUST_INVALID_EXTENSION ideal-int +pkg syscall (windows-386), const CERT_TRUST_INVALID_NAME_CONSTRAINTS ideal-int +pkg syscall (windows-386), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_CYCLIC ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_EXPLICIT_DISTRUST ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_SIGNATURE_VALID ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_TIME_VALID ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_NOT_VALID_FOR_USAGE ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_OFFLINE_REVOCATION ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_REVOKED ideal-int +pkg syscall (windows-386), const CERT_TRUST_IS_UNTRUSTED_ROOT ideal-int +pkg syscall (windows-386), const CERT_TRUST_NO_ERROR ideal-int +pkg syscall (windows-386), const CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY ideal-int +pkg syscall (windows-386), const CERT_TRUST_REVOCATION_STATUS_UNKNOWN ideal-int +pkg syscall (windows-386), const CREATE_ALWAYS ideal-int +pkg syscall (windows-386), const CREATE_NEW ideal-int +pkg syscall (windows-386), const CREATE_UNICODE_ENVIRONMENT ideal-int +pkg syscall (windows-386), const CRYPT_DEFAULT_CONTAINER_OPTIONAL ideal-int +pkg syscall (windows-386), const CRYPT_DELETEKEYSET ideal-int +pkg syscall (windows-386), const CRYPT_MACHINE_KEYSET ideal-int +pkg syscall (windows-386), const CRYPT_NEWKEYSET ideal-int +pkg syscall (windows-386), const CRYPT_SILENT ideal-int +pkg syscall (windows-386), const CRYPT_VERIFYCONTEXT ideal-int +pkg syscall (windows-386), const DNS_TYPE_A ideal-int +pkg syscall (windows-386), const DNS_TYPE_A6 ideal-int +pkg syscall (windows-386), const DNS_TYPE_AAAA ideal-int +pkg syscall (windows-386), const DNS_TYPE_ADDRS ideal-int +pkg syscall (windows-386), const DNS_TYPE_AFSDB ideal-int +pkg syscall (windows-386), const DNS_TYPE_ALL ideal-int +pkg syscall (windows-386), const DNS_TYPE_ANY ideal-int +pkg syscall (windows-386), const DNS_TYPE_ATMA ideal-int +pkg syscall (windows-386), const DNS_TYPE_AXFR ideal-int +pkg syscall (windows-386), const DNS_TYPE_CERT ideal-int +pkg syscall (windows-386), const DNS_TYPE_CNAME ideal-int +pkg syscall (windows-386), const DNS_TYPE_DHCID ideal-int +pkg syscall (windows-386), const DNS_TYPE_DNAME ideal-int +pkg syscall (windows-386), const DNS_TYPE_DNSKEY ideal-int +pkg syscall (windows-386), const DNS_TYPE_DS ideal-int +pkg syscall (windows-386), const DNS_TYPE_EID ideal-int +pkg syscall (windows-386), const DNS_TYPE_GID ideal-int +pkg syscall (windows-386), const DNS_TYPE_GPOS ideal-int +pkg syscall (windows-386), const DNS_TYPE_HINFO ideal-int +pkg syscall (windows-386), const DNS_TYPE_ISDN ideal-int +pkg syscall (windows-386), const DNS_TYPE_IXFR ideal-int +pkg syscall (windows-386), const DNS_TYPE_KEY ideal-int +pkg syscall (windows-386), const DNS_TYPE_KX ideal-int +pkg syscall (windows-386), const DNS_TYPE_LOC ideal-int +pkg syscall (windows-386), const DNS_TYPE_MAILA ideal-int +pkg syscall (windows-386), const DNS_TYPE_MAILB ideal-int +pkg syscall (windows-386), const DNS_TYPE_MB ideal-int +pkg syscall (windows-386), const DNS_TYPE_MD ideal-int +pkg syscall (windows-386), const DNS_TYPE_MF ideal-int +pkg syscall (windows-386), const DNS_TYPE_MG ideal-int +pkg syscall (windows-386), const DNS_TYPE_MINFO ideal-int +pkg syscall (windows-386), const DNS_TYPE_MR ideal-int +pkg syscall (windows-386), const DNS_TYPE_MX ideal-int +pkg syscall (windows-386), const DNS_TYPE_NAPTR ideal-int +pkg syscall (windows-386), const DNS_TYPE_NBSTAT ideal-int +pkg syscall (windows-386), const DNS_TYPE_NIMLOC ideal-int +pkg syscall (windows-386), const DNS_TYPE_NS ideal-int +pkg syscall (windows-386), const DNS_TYPE_NSAP ideal-int +pkg syscall (windows-386), const DNS_TYPE_NSAPPTR ideal-int +pkg syscall (windows-386), const DNS_TYPE_NSEC ideal-int +pkg syscall (windows-386), const DNS_TYPE_NULL ideal-int +pkg syscall (windows-386), const DNS_TYPE_NXT ideal-int +pkg syscall (windows-386), const DNS_TYPE_OPT ideal-int +pkg syscall (windows-386), const DNS_TYPE_PTR ideal-int +pkg syscall (windows-386), const DNS_TYPE_PX ideal-int +pkg syscall (windows-386), const DNS_TYPE_RP ideal-int +pkg syscall (windows-386), const DNS_TYPE_RRSIG ideal-int +pkg syscall (windows-386), const DNS_TYPE_RT ideal-int +pkg syscall (windows-386), const DNS_TYPE_SIG ideal-int +pkg syscall (windows-386), const DNS_TYPE_SINK ideal-int +pkg syscall (windows-386), const DNS_TYPE_SOA ideal-int +pkg syscall (windows-386), const DNS_TYPE_SRV ideal-int +pkg syscall (windows-386), const DNS_TYPE_TEXT ideal-int +pkg syscall (windows-386), const DNS_TYPE_TKEY ideal-int +pkg syscall (windows-386), const DNS_TYPE_TSIG ideal-int +pkg syscall (windows-386), const DNS_TYPE_UID ideal-int +pkg syscall (windows-386), const DNS_TYPE_UINFO ideal-int +pkg syscall (windows-386), const DNS_TYPE_UNSPEC ideal-int +pkg syscall (windows-386), const DNS_TYPE_WINS ideal-int +pkg syscall (windows-386), const DNS_TYPE_WINSR ideal-int +pkg syscall (windows-386), const DNS_TYPE_WKS ideal-int +pkg syscall (windows-386), const DNS_TYPE_X25 ideal-int +pkg syscall (windows-386), const DUPLICATE_CLOSE_SOURCE ideal-int +pkg syscall (windows-386), const DUPLICATE_SAME_ACCESS ideal-int +pkg syscall (windows-386), const EADV Errno +pkg syscall (windows-386), const EBADE Errno +pkg syscall (windows-386), const EBADFD Errno +pkg syscall (windows-386), const EBADMSG Errno +pkg syscall (windows-386), const EBADR Errno +pkg syscall (windows-386), const EBADRQC Errno +pkg syscall (windows-386), const EBADSLT Errno +pkg syscall (windows-386), const EBFONT Errno +pkg syscall (windows-386), const ECHRNG Errno +pkg syscall (windows-386), const ECOMM Errno +pkg syscall (windows-386), const EDEADLOCK Errno +pkg syscall (windows-386), const EDOTDOT Errno +pkg syscall (windows-386), const EISNAM Errno +pkg syscall (windows-386), const EKEYEXPIRED Errno +pkg syscall (windows-386), const EKEYREJECTED Errno +pkg syscall (windows-386), const EKEYREVOKED Errno +pkg syscall (windows-386), const EL2HLT Errno +pkg syscall (windows-386), const EL2NSYNC Errno +pkg syscall (windows-386), const EL3HLT Errno +pkg syscall (windows-386), const EL3RST Errno +pkg syscall (windows-386), const ELIBACC Errno +pkg syscall (windows-386), const ELIBBAD Errno +pkg syscall (windows-386), const ELIBEXEC Errno +pkg syscall (windows-386), const ELIBMAX Errno +pkg syscall (windows-386), const ELIBSCN Errno +pkg syscall (windows-386), const ELNRNG Errno +pkg syscall (windows-386), const EMEDIUMTYPE Errno +pkg syscall (windows-386), const EMULTIHOP Errno +pkg syscall (windows-386), const ENAVAIL Errno +pkg syscall (windows-386), const ENOANO Errno +pkg syscall (windows-386), const ENOCSI Errno +pkg syscall (windows-386), const ENODATA Errno +pkg syscall (windows-386), const ENOKEY Errno +pkg syscall (windows-386), const ENOLINK Errno +pkg syscall (windows-386), const ENOMEDIUM Errno +pkg syscall (windows-386), const ENONET Errno +pkg syscall (windows-386), const ENOPKG Errno +pkg syscall (windows-386), const ENOSR Errno +pkg syscall (windows-386), const ENOSTR Errno +pkg syscall (windows-386), const ENOTNAM Errno +pkg syscall (windows-386), const ENOTRECOVERABLE Errno +pkg syscall (windows-386), const ENOTUNIQ Errno +pkg syscall (windows-386), const EOWNERDEAD Errno +pkg syscall (windows-386), const EPROTO Errno +pkg syscall (windows-386), const EREMCHG Errno +pkg syscall (windows-386), const EREMOTEIO Errno +pkg syscall (windows-386), const ERESTART Errno +pkg syscall (windows-386), const ERROR_ACCESS_DENIED Errno +pkg syscall (windows-386), const ERROR_ALREADY_EXISTS Errno +pkg syscall (windows-386), const ERROR_BROKEN_PIPE Errno +pkg syscall (windows-386), const ERROR_BUFFER_OVERFLOW Errno +pkg syscall (windows-386), const ERROR_ENVVAR_NOT_FOUND Errno +pkg syscall (windows-386), const ERROR_FILE_EXISTS Errno +pkg syscall (windows-386), const ERROR_FILE_NOT_FOUND Errno +pkg syscall (windows-386), const ERROR_INSUFFICIENT_BUFFER Errno +pkg syscall (windows-386), const ERROR_IO_PENDING Errno +pkg syscall (windows-386), const ERROR_MOD_NOT_FOUND Errno +pkg syscall (windows-386), const ERROR_NO_MORE_FILES Errno +pkg syscall (windows-386), const ERROR_OPERATION_ABORTED Errno +pkg syscall (windows-386), const ERROR_PATH_NOT_FOUND Errno +pkg syscall (windows-386), const ERROR_PROC_NOT_FOUND Errno +pkg syscall (windows-386), const ESRMNT Errno +pkg syscall (windows-386), const ESTRPIPE Errno +pkg syscall (windows-386), const ETIME Errno +pkg syscall (windows-386), const EUCLEAN Errno +pkg syscall (windows-386), const EUNATCH Errno +pkg syscall (windows-386), const EWINDOWS Errno +pkg syscall (windows-386), const EXFULL Errno +pkg syscall (windows-386), const FILE_ACTION_ADDED ideal-int +pkg syscall (windows-386), const FILE_ACTION_MODIFIED ideal-int +pkg syscall (windows-386), const FILE_ACTION_REMOVED ideal-int +pkg syscall (windows-386), const FILE_ACTION_RENAMED_NEW_NAME ideal-int +pkg syscall (windows-386), const FILE_ACTION_RENAMED_OLD_NAME ideal-int +pkg syscall (windows-386), const FILE_APPEND_DATA ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_ARCHIVE ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_DIRECTORY ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_HIDDEN ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_NORMAL ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_READONLY ideal-int +pkg syscall (windows-386), const FILE_ATTRIBUTE_SYSTEM ideal-int +pkg syscall (windows-386), const FILE_BEGIN ideal-int +pkg syscall (windows-386), const FILE_CURRENT ideal-int +pkg syscall (windows-386), const FILE_END ideal-int +pkg syscall (windows-386), const FILE_FLAG_BACKUP_SEMANTICS ideal-int +pkg syscall (windows-386), const FILE_FLAG_OVERLAPPED ideal-int +pkg syscall (windows-386), const FILE_LIST_DIRECTORY ideal-int +pkg syscall (windows-386), const FILE_MAP_COPY ideal-int +pkg syscall (windows-386), const FILE_MAP_EXECUTE ideal-int +pkg syscall (windows-386), const FILE_MAP_READ ideal-int +pkg syscall (windows-386), const FILE_MAP_WRITE ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_ATTRIBUTES ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_CREATION ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_DIR_NAME ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_FILE_NAME ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_LAST_ACCESS ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_LAST_WRITE ideal-int +pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_SIZE ideal-int +pkg syscall (windows-386), const FILE_SHARE_DELETE ideal-int +pkg syscall (windows-386), const FILE_SHARE_READ ideal-int +pkg syscall (windows-386), const FILE_SHARE_WRITE ideal-int +pkg syscall (windows-386), const FILE_TYPE_CHAR ideal-int +pkg syscall (windows-386), const FILE_TYPE_DISK ideal-int +pkg syscall (windows-386), const FILE_TYPE_PIPE ideal-int +pkg syscall (windows-386), const FILE_TYPE_REMOTE ideal-int +pkg syscall (windows-386), const FILE_TYPE_UNKNOWN ideal-int +pkg syscall (windows-386), const FILE_WRITE_ATTRIBUTES ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_ALLOCATE_BUFFER ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_ARGUMENT_ARRAY ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_HMODULE ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_STRING ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_FROM_SYSTEM ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_IGNORE_INSERTS ideal-int +pkg syscall (windows-386), const FORMAT_MESSAGE_MAX_WIDTH_MASK ideal-int +pkg syscall (windows-386), const GENERIC_ALL ideal-int +pkg syscall (windows-386), const GENERIC_EXECUTE ideal-int +pkg syscall (windows-386), const GENERIC_READ ideal-int +pkg syscall (windows-386), const GENERIC_WRITE ideal-int +pkg syscall (windows-386), const GetFileExInfoStandard ideal-int +pkg syscall (windows-386), const GetFileExMaxInfoLevel ideal-int +pkg syscall (windows-386), const HANDLE_FLAG_INHERIT ideal-int +pkg syscall (windows-386), const HKEY_CLASSES_ROOT ideal-int +pkg syscall (windows-386), const HKEY_CURRENT_CONFIG ideal-int +pkg syscall (windows-386), const HKEY_CURRENT_USER ideal-int +pkg syscall (windows-386), const HKEY_DYN_DATA ideal-int +pkg syscall (windows-386), const HKEY_LOCAL_MACHINE ideal-int +pkg syscall (windows-386), const HKEY_PERFORMANCE_DATA ideal-int +pkg syscall (windows-386), const HKEY_USERS ideal-int +pkg syscall (windows-386), const IFF_POINTTOPOINT ideal-int +pkg syscall (windows-386), const IGNORE ideal-int +pkg syscall (windows-386), const INFINITE ideal-int +pkg syscall (windows-386), const INVALID_FILE_ATTRIBUTES ideal-int +pkg syscall (windows-386), const InvalidHandle Handle +pkg syscall (windows-386), const KEY_ALL_ACCESS ideal-int +pkg syscall (windows-386), const KEY_CREATE_LINK ideal-int +pkg syscall (windows-386), const KEY_CREATE_SUB_KEY ideal-int +pkg syscall (windows-386), const KEY_ENUMERATE_SUB_KEYS ideal-int +pkg syscall (windows-386), const KEY_EXECUTE ideal-int +pkg syscall (windows-386), const KEY_NOTIFY ideal-int +pkg syscall (windows-386), const KEY_QUERY_VALUE ideal-int +pkg syscall (windows-386), const KEY_READ ideal-int +pkg syscall (windows-386), const KEY_SET_VALUE ideal-int +pkg syscall (windows-386), const KEY_WOW64_32KEY ideal-int +pkg syscall (windows-386), const KEY_WOW64_64KEY ideal-int +pkg syscall (windows-386), const KEY_WRITE ideal-int +pkg syscall (windows-386), const LANG_ENGLISH ideal-int +pkg syscall (windows-386), const MAXLEN_IFDESCR ideal-int +pkg syscall (windows-386), const MAXLEN_PHYSADDR ideal-int +pkg syscall (windows-386), const MAX_ADAPTER_ADDRESS_LENGTH ideal-int +pkg syscall (windows-386), const MAX_ADAPTER_DESCRIPTION_LENGTH ideal-int +pkg syscall (windows-386), const MAX_ADAPTER_NAME_LENGTH ideal-int +pkg syscall (windows-386), const MAX_COMPUTERNAME_LENGTH ideal-int +pkg syscall (windows-386), const MAX_INTERFACE_NAME_LEN ideal-int +pkg syscall (windows-386), const MAX_LONG_PATH ideal-int +pkg syscall (windows-386), const MAX_PATH ideal-int +pkg syscall (windows-386), const MaxTokenInfoClass ideal-int +pkg syscall (windows-386), const NameCanonical ideal-int +pkg syscall (windows-386), const NameCanonicalEx ideal-int +pkg syscall (windows-386), const NameDisplay ideal-int +pkg syscall (windows-386), const NameDnsDomain ideal-int +pkg syscall (windows-386), const NameFullyQualifiedDN ideal-int +pkg syscall (windows-386), const NameSamCompatible ideal-int +pkg syscall (windows-386), const NameServicePrincipal ideal-int +pkg syscall (windows-386), const NameUniqueId ideal-int +pkg syscall (windows-386), const NameUnknown ideal-int +pkg syscall (windows-386), const NameUserPrincipal ideal-int +pkg syscall (windows-386), const OPEN_ALWAYS ideal-int +pkg syscall (windows-386), const OPEN_EXISTING ideal-int +pkg syscall (windows-386), const PAGE_EXECUTE_READ ideal-int +pkg syscall (windows-386), const PAGE_EXECUTE_READWRITE ideal-int +pkg syscall (windows-386), const PAGE_EXECUTE_WRITECOPY ideal-int +pkg syscall (windows-386), const PAGE_READONLY ideal-int +pkg syscall (windows-386), const PAGE_READWRITE ideal-int +pkg syscall (windows-386), const PAGE_WRITECOPY ideal-int +pkg syscall (windows-386), const PKCS_7_ASN_ENCODING ideal-int +pkg syscall (windows-386), const PROCESS_QUERY_INFORMATION ideal-int +pkg syscall (windows-386), const PROV_DH_SCHANNEL ideal-int +pkg syscall (windows-386), const PROV_DSS ideal-int +pkg syscall (windows-386), const PROV_DSS_DH ideal-int +pkg syscall (windows-386), const PROV_EC_ECDSA_FULL ideal-int +pkg syscall (windows-386), const PROV_EC_ECDSA_SIG ideal-int +pkg syscall (windows-386), const PROV_EC_ECNRA_FULL ideal-int +pkg syscall (windows-386), const PROV_EC_ECNRA_SIG ideal-int +pkg syscall (windows-386), const PROV_FORTEZZA ideal-int +pkg syscall (windows-386), const PROV_INTEL_SEC ideal-int +pkg syscall (windows-386), const PROV_MS_EXCHANGE ideal-int +pkg syscall (windows-386), const PROV_REPLACE_OWF ideal-int +pkg syscall (windows-386), const PROV_RNG ideal-int +pkg syscall (windows-386), const PROV_RSA_AES ideal-int +pkg syscall (windows-386), const PROV_RSA_FULL ideal-int +pkg syscall (windows-386), const PROV_RSA_SCHANNEL ideal-int +pkg syscall (windows-386), const PROV_RSA_SIG ideal-int +pkg syscall (windows-386), const PROV_SPYRUS_LYNKS ideal-int +pkg syscall (windows-386), const PROV_SSL ideal-int +pkg syscall (windows-386), const REG_BINARY ideal-int +pkg syscall (windows-386), const REG_DWORD ideal-int +pkg syscall (windows-386), const REG_DWORD_BIG_ENDIAN ideal-int +pkg syscall (windows-386), const REG_DWORD_LITTLE_ENDIAN ideal-int +pkg syscall (windows-386), const REG_EXPAND_SZ ideal-int +pkg syscall (windows-386), const REG_FULL_RESOURCE_DESCRIPTOR ideal-int +pkg syscall (windows-386), const REG_LINK ideal-int +pkg syscall (windows-386), const REG_MULTI_SZ ideal-int +pkg syscall (windows-386), const REG_NONE ideal-int +pkg syscall (windows-386), const REG_QWORD ideal-int +pkg syscall (windows-386), const REG_QWORD_LITTLE_ENDIAN ideal-int +pkg syscall (windows-386), const REG_RESOURCE_LIST ideal-int +pkg syscall (windows-386), const REG_RESOURCE_REQUIREMENTS_LIST ideal-int +pkg syscall (windows-386), const REG_SZ ideal-int +pkg syscall (windows-386), const SIO_GET_INTERFACE_LIST ideal-int +pkg syscall (windows-386), const SO_UPDATE_ACCEPT_CONTEXT ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_ALL ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_EXECUTE ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_READ ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_REQUIRED ideal-int +pkg syscall (windows-386), const STANDARD_RIGHTS_WRITE ideal-int +pkg syscall (windows-386), const STARTF_USESHOWWINDOW ideal-int +pkg syscall (windows-386), const STARTF_USESTDHANDLES ideal-int +pkg syscall (windows-386), const STD_ERROR_HANDLE ideal-int +pkg syscall (windows-386), const STD_INPUT_HANDLE ideal-int +pkg syscall (windows-386), const STD_OUTPUT_HANDLE ideal-int +pkg syscall (windows-386), const SUBLANG_ENGLISH_US ideal-int +pkg syscall (windows-386), const SW_FORCEMINIMIZE ideal-int +pkg syscall (windows-386), const SW_HIDE ideal-int +pkg syscall (windows-386), const SW_MAXIMIZE ideal-int +pkg syscall (windows-386), const SW_MINIMIZE ideal-int +pkg syscall (windows-386), const SW_NORMAL ideal-int +pkg syscall (windows-386), const SW_RESTORE ideal-int +pkg syscall (windows-386), const SW_SHOW ideal-int +pkg syscall (windows-386), const SW_SHOWDEFAULT ideal-int +pkg syscall (windows-386), const SW_SHOWMAXIMIZED ideal-int +pkg syscall (windows-386), const SW_SHOWMINIMIZED ideal-int +pkg syscall (windows-386), const SW_SHOWMINNOACTIVE ideal-int +pkg syscall (windows-386), const SW_SHOWNA ideal-int +pkg syscall (windows-386), const SW_SHOWNOACTIVATE ideal-int +pkg syscall (windows-386), const SW_SHOWNORMAL ideal-int +pkg syscall (windows-386), const SYNCHRONIZE ideal-int +pkg syscall (windows-386), const S_IWRITE ideal-int +pkg syscall (windows-386), const SidTypeAlias ideal-int +pkg syscall (windows-386), const SidTypeComputer ideal-int +pkg syscall (windows-386), const SidTypeDeletedAccount ideal-int +pkg syscall (windows-386), const SidTypeDomain ideal-int +pkg syscall (windows-386), const SidTypeGroup ideal-int +pkg syscall (windows-386), const SidTypeInvalid ideal-int +pkg syscall (windows-386), const SidTypeLabel ideal-int +pkg syscall (windows-386), const SidTypeUnknown ideal-int +pkg syscall (windows-386), const SidTypeUser ideal-int +pkg syscall (windows-386), const SidTypeWellKnownGroup ideal-int +pkg syscall (windows-386), const TF_DISCONNECT ideal-int +pkg syscall (windows-386), const TF_REUSE_SOCKET ideal-int +pkg syscall (windows-386), const TF_USE_DEFAULT_WORKER ideal-int +pkg syscall (windows-386), const TF_USE_KERNEL_APC ideal-int +pkg syscall (windows-386), const TF_USE_SYSTEM_THREAD ideal-int +pkg syscall (windows-386), const TF_WRITE_BEHIND ideal-int +pkg syscall (windows-386), const TIME_ZONE_ID_DAYLIGHT ideal-int +pkg syscall (windows-386), const TIME_ZONE_ID_STANDARD ideal-int +pkg syscall (windows-386), const TIME_ZONE_ID_UNKNOWN ideal-int +pkg syscall (windows-386), const TOKEN_ADJUST_DEFAULT ideal-int +pkg syscall (windows-386), const TOKEN_ADJUST_GROUPS ideal-int +pkg syscall (windows-386), const TOKEN_ADJUST_PRIVILEGES ideal-int +pkg syscall (windows-386), const TOKEN_ALL_ACCESS ideal-int +pkg syscall (windows-386), const TOKEN_ASSIGN_PRIMARY ideal-int +pkg syscall (windows-386), const TOKEN_DUPLICATE ideal-int +pkg syscall (windows-386), const TOKEN_EXECUTE ideal-int +pkg syscall (windows-386), const TOKEN_IMPERSONATE ideal-int +pkg syscall (windows-386), const TOKEN_QUERY ideal-int +pkg syscall (windows-386), const TOKEN_QUERY_SOURCE ideal-int +pkg syscall (windows-386), const TOKEN_READ ideal-int +pkg syscall (windows-386), const TOKEN_WRITE ideal-int +pkg syscall (windows-386), const TRUNCATE_EXISTING ideal-int +pkg syscall (windows-386), const TokenAccessInformation ideal-int +pkg syscall (windows-386), const TokenAuditPolicy ideal-int +pkg syscall (windows-386), const TokenDefaultDacl ideal-int +pkg syscall (windows-386), const TokenElevation ideal-int +pkg syscall (windows-386), const TokenElevationType ideal-int +pkg syscall (windows-386), const TokenGroups ideal-int +pkg syscall (windows-386), const TokenGroupsAndPrivileges ideal-int +pkg syscall (windows-386), const TokenHasRestrictions ideal-int +pkg syscall (windows-386), const TokenImpersonationLevel ideal-int +pkg syscall (windows-386), const TokenIntegrityLevel ideal-int +pkg syscall (windows-386), const TokenLinkedToken ideal-int +pkg syscall (windows-386), const TokenLogonSid ideal-int +pkg syscall (windows-386), const TokenMandatoryPolicy ideal-int +pkg syscall (windows-386), const TokenOrigin ideal-int +pkg syscall (windows-386), const TokenOwner ideal-int +pkg syscall (windows-386), const TokenPrimaryGroup ideal-int +pkg syscall (windows-386), const TokenPrivileges ideal-int +pkg syscall (windows-386), const TokenRestrictedSids ideal-int +pkg syscall (windows-386), const TokenSandBoxInert ideal-int +pkg syscall (windows-386), const TokenSessionId ideal-int +pkg syscall (windows-386), const TokenSessionReference ideal-int +pkg syscall (windows-386), const TokenSource ideal-int +pkg syscall (windows-386), const TokenStatistics ideal-int +pkg syscall (windows-386), const TokenType ideal-int +pkg syscall (windows-386), const TokenUIAccess ideal-int +pkg syscall (windows-386), const TokenUser ideal-int +pkg syscall (windows-386), const TokenVirtualizationAllowed ideal-int +pkg syscall (windows-386), const TokenVirtualizationEnabled ideal-int +pkg syscall (windows-386), const USAGE_MATCH_TYPE_AND ideal-int +pkg syscall (windows-386), const USAGE_MATCH_TYPE_OR ideal-int +pkg syscall (windows-386), const WAIT_ABANDONED ideal-int +pkg syscall (windows-386), const WAIT_FAILED ideal-int +pkg syscall (windows-386), const WAIT_OBJECT_0 ideal-int +pkg syscall (windows-386), const WAIT_TIMEOUT ideal-int +pkg syscall (windows-386), const WSADESCRIPTION_LEN ideal-int +pkg syscall (windows-386), const WSASYS_STATUS_LEN ideal-int +pkg syscall (windows-386), const X509_ASN_ENCODING ideal-int +pkg syscall (windows-386), func Accept(Handle) (Handle, Sockaddr, error) +pkg syscall (windows-386), func AcceptEx(Handle, Handle, *uint8, uint32, uint32, uint32, *uint32, *Overlapped) error +pkg syscall (windows-386), func Bind(Handle, Sockaddr) error +pkg syscall (windows-386), func CancelIo(Handle) error +pkg syscall (windows-386), func CertAddCertificateContextToStore(Handle, *CertContext, uint32, **CertContext) error +pkg syscall (windows-386), func CertCloseStore(Handle, uint32) error +pkg syscall (windows-386), func CertCreateCertificateContext(uint32, *uint8, uint32) (*CertContext, error) +pkg syscall (windows-386), func CertEnumCertificatesInStore(Handle, *CertContext) (*CertContext, error) +pkg syscall (windows-386), func CertFreeCertificateChain(*CertChainContext) +pkg syscall (windows-386), func CertFreeCertificateContext(*CertContext) error +pkg syscall (windows-386), func CertGetCertificateChain(Handle, *CertContext, *Filetime, Handle, *CertChainPara, uint32, uintptr, **CertChainContext) error +pkg syscall (windows-386), func CertOpenStore(uintptr, uint32, uintptr, uint32, uintptr) (Handle, error) +pkg syscall (windows-386), func CertOpenSystemStore(Handle, *uint16) (Handle, error) +pkg syscall (windows-386), func CertVerifyCertificateChainPolicy(uintptr, *CertChainContext, *CertChainPolicyPara, *CertChainPolicyStatus) error +pkg syscall (windows-386), func Close(Handle) error +pkg syscall (windows-386), func CloseHandle(Handle) error +pkg syscall (windows-386), func CloseOnExec(Handle) +pkg syscall (windows-386), func Closesocket(Handle) error +pkg syscall (windows-386), func CommandLineToArgv(*uint16, *int32) (*[8192]*[8192]uint16, error) +pkg syscall (windows-386), func ComputerName() (string, error) +pkg syscall (windows-386), func Connect(Handle, Sockaddr) error +pkg syscall (windows-386), func ConvertSidToStringSid(*SID, **uint16) error +pkg syscall (windows-386), func ConvertStringSidToSid(*uint16, **SID) error +pkg syscall (windows-386), func CopySid(uint32, *SID, *SID) error +pkg syscall (windows-386), func CreateDirectory(*uint16, *SecurityAttributes) error +pkg syscall (windows-386), func CreateFile(*uint16, uint32, uint32, *SecurityAttributes, uint32, uint32, int32) (Handle, error) +pkg syscall (windows-386), func CreateFileMapping(Handle, *SecurityAttributes, uint32, uint32, uint32, *uint16) (Handle, error) +pkg syscall (windows-386), func CreateIoCompletionPort(Handle, Handle, uint32, uint32) (Handle, error) +pkg syscall (windows-386), func CreatePipe(*Handle, *Handle, *SecurityAttributes, uint32) error +pkg syscall (windows-386), func CreateProcess(*uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error +pkg syscall (windows-386), func CryptAcquireContext(*Handle, *uint16, *uint16, uint32, uint32) error +pkg syscall (windows-386), func CryptGenRandom(Handle, uint32, *uint8) error +pkg syscall (windows-386), func CryptReleaseContext(Handle, uint32) error +pkg syscall (windows-386), func DeleteFile(*uint16) error +pkg syscall (windows-386), func DnsQuery(string, uint16, uint32, *uint8, **DNSRecord, *uint8) error +pkg syscall (windows-386), func DnsRecordListFree(*DNSRecord, uint32) +pkg syscall (windows-386), func DuplicateHandle(Handle, Handle, Handle, *Handle, uint32, bool, uint32) error +pkg syscall (windows-386), func EscapeArg(string) string +pkg syscall (windows-386), func ExitProcess(uint32) +pkg syscall (windows-386), func Fchdir(Handle) error +pkg syscall (windows-386), func Fchmod(Handle, uint32) error +pkg syscall (windows-386), func Fchown(Handle, int, int) error +pkg syscall (windows-386), func FindClose(Handle) error +pkg syscall (windows-386), func FindFirstFile(*uint16, *Win32finddata) (Handle, error) +pkg syscall (windows-386), func FindNextFile(Handle, *Win32finddata) error +pkg syscall (windows-386), func FlushFileBuffers(Handle) error +pkg syscall (windows-386), func FlushViewOfFile(uintptr, uintptr) error +pkg syscall (windows-386), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *uint8) (uint32, error) +pkg syscall (windows-386), func FreeEnvironmentStrings(*uint16) error +pkg syscall (windows-386), func FreeLibrary(Handle) error +pkg syscall (windows-386), func Fsync(Handle) error +pkg syscall (windows-386), func Ftruncate(Handle, int64) error +pkg syscall (windows-386), func GetAcceptExSockaddrs(*uint8, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32) +pkg syscall (windows-386), func GetAdaptersInfo(*IpAdapterInfo, *uint32) error +pkg syscall (windows-386), func GetCommandLine() *uint16 +pkg syscall (windows-386), func GetComputerName(*uint16, *uint32) error +pkg syscall (windows-386), func GetCurrentDirectory(uint32, *uint16) (uint32, error) +pkg syscall (windows-386), func GetCurrentProcess() (Handle, error) +pkg syscall (windows-386), func GetEnvironmentStrings() (*uint16, error) +pkg syscall (windows-386), func GetEnvironmentVariable(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-386), func GetExitCodeProcess(Handle, *uint32) error +pkg syscall (windows-386), func GetFileAttributes(*uint16) (uint32, error) +pkg syscall (windows-386), func GetFileAttributesEx(*uint16, uint32, *uint8) error +pkg syscall (windows-386), func GetFileInformationByHandle(Handle, *ByHandleFileInformation) error +pkg syscall (windows-386), func GetFileType(Handle) (uint32, error) +pkg syscall (windows-386), func GetFullPathName(*uint16, uint32, *uint16, **uint16) (uint32, error) +pkg syscall (windows-386), func GetHostByName(string) (*Hostent, error) +pkg syscall (windows-386), func GetIfEntry(*MibIfRow) error +pkg syscall (windows-386), func GetLastError() error +pkg syscall (windows-386), func GetLengthSid(*SID) uint32 +pkg syscall (windows-386), func GetLongPathName(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-386), func GetProcAddress(Handle, string) (uintptr, error) +pkg syscall (windows-386), func GetProcessTimes(Handle, *Filetime, *Filetime, *Filetime, *Filetime) error +pkg syscall (windows-386), func GetProtoByName(string) (*Protoent, error) +pkg syscall (windows-386), func GetQueuedCompletionStatus(Handle, *uint32, *uint32, **Overlapped, uint32) error +pkg syscall (windows-386), func GetServByName(string, string) (*Servent, error) +pkg syscall (windows-386), func GetShortPathName(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-386), func GetStartupInfo(*StartupInfo) error +pkg syscall (windows-386), func GetStdHandle(int) (Handle, error) +pkg syscall (windows-386), func GetSystemTimeAsFileTime(*Filetime) +pkg syscall (windows-386), func GetTempPath(uint32, *uint16) (uint32, error) +pkg syscall (windows-386), func GetTimeZoneInformation(*Timezoneinformation) (uint32, error) +pkg syscall (windows-386), func GetTokenInformation(Token, uint32, *uint8, uint32, *uint32) error +pkg syscall (windows-386), func GetUserNameEx(uint32, *uint16, *uint32) error +pkg syscall (windows-386), func GetUserProfileDirectory(Token, *uint16, *uint32) error +pkg syscall (windows-386), func GetVersion() (uint32, error) +pkg syscall (windows-386), func Getpeername(Handle) (Sockaddr, error) +pkg syscall (windows-386), func Getsockname(Handle) (Sockaddr, error) +pkg syscall (windows-386), func GetsockoptInt(Handle, int, int) (int, error) +pkg syscall (windows-386), func Listen(Handle, int) error +pkg syscall (windows-386), func LoadDLL(string) (*DLL, error) +pkg syscall (windows-386), func LoadLibrary(string) (Handle, error) +pkg syscall (windows-386), func LocalFree(Handle) (Handle, error) +pkg syscall (windows-386), func LookupAccountName(*uint16, *uint16, *SID, *uint32, *uint16, *uint32, *uint32) error +pkg syscall (windows-386), func LookupAccountSid(*uint16, *SID, *uint16, *uint32, *uint16, *uint32, *uint32) error +pkg syscall (windows-386), func LookupSID(string, string) (*SID, string, uint32, error) +pkg syscall (windows-386), func MapViewOfFile(Handle, uint32, uint32, uint32, uintptr) (uintptr, error) +pkg syscall (windows-386), func MoveFile(*uint16, *uint16) error +pkg syscall (windows-386), func MustLoadDLL(string) *DLL +pkg syscall (windows-386), func NetApiBufferFree(*uint8) error +pkg syscall (windows-386), func NetUserGetInfo(*uint16, *uint16, uint32, **uint8) error +pkg syscall (windows-386), func NewCallback(interface{}) uintptr +pkg syscall (windows-386), func NewLazyDLL(string) *LazyDLL +pkg syscall (windows-386), func NsecToFiletime(int64) Filetime +pkg syscall (windows-386), func Ntohs(uint16) uint16 +pkg syscall (windows-386), func Open(string, int, uint32) (Handle, error) +pkg syscall (windows-386), func OpenCurrentProcessToken() (Token, error) +pkg syscall (windows-386), func OpenProcess(uint32, bool, uint32) (Handle, error) +pkg syscall (windows-386), func OpenProcessToken(Handle, uint32, *Token) error +pkg syscall (windows-386), func Pipe([]Handle) error +pkg syscall (windows-386), func PostQueuedCompletionStatus(Handle, uint32, uint32, *Overlapped) error +pkg syscall (windows-386), func Read(Handle, []uint8) (int, error) +pkg syscall (windows-386), func ReadDirectoryChanges(Handle, *uint8, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error +pkg syscall (windows-386), func ReadFile(Handle, []uint8, *uint32, *Overlapped) error +pkg syscall (windows-386), func Recvfrom(Handle, []uint8, int) (int, Sockaddr, error) +pkg syscall (windows-386), func RegCloseKey(Handle) error +pkg syscall (windows-386), func RegEnumKeyEx(Handle, uint32, *uint16, *uint32, *uint32, *uint16, *uint32, *Filetime) error +pkg syscall (windows-386), func RegOpenKeyEx(Handle, *uint16, uint32, uint32, *Handle) error +pkg syscall (windows-386), func RegQueryInfoKey(Handle, *uint16, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *Filetime) error +pkg syscall (windows-386), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *uint8, *uint32) error +pkg syscall (windows-386), func RemoveDirectory(*uint16) error +pkg syscall (windows-386), func Seek(Handle, int64, int) (int64, error) +pkg syscall (windows-386), func Sendto(Handle, []uint8, int, Sockaddr) error +pkg syscall (windows-386), func SetCurrentDirectory(*uint16) error +pkg syscall (windows-386), func SetEndOfFile(Handle) error +pkg syscall (windows-386), func SetEnvironmentVariable(*uint16, *uint16) error +pkg syscall (windows-386), func SetFileAttributes(*uint16, uint32) error +pkg syscall (windows-386), func SetFilePointer(Handle, int32, *int32, uint32) (uint32, error) +pkg syscall (windows-386), func SetFileTime(Handle, *Filetime, *Filetime, *Filetime) error +pkg syscall (windows-386), func SetHandleInformation(Handle, uint32, uint32) error +pkg syscall (windows-386), func SetNonblock(Handle, bool) error +pkg syscall (windows-386), func Setsockopt(Handle, int32, int32, *uint8, int32) error +pkg syscall (windows-386), func SetsockoptIPMreq(Handle, int, int, *IPMreq) error +pkg syscall (windows-386), func SetsockoptIPv6Mreq(Handle, int, int, *IPv6Mreq) error +pkg syscall (windows-386), func SetsockoptInet4Addr(Handle, int, int, [4]uint8) error +pkg syscall (windows-386), func SetsockoptInt(Handle, int, int, int) error +pkg syscall (windows-386), func SetsockoptLinger(Handle, int, int, *Linger) error +pkg syscall (windows-386), func SetsockoptTimeval(Handle, int, int, *Timeval) error +pkg syscall (windows-386), func Shutdown(Handle, int) error +pkg syscall (windows-386), func Socket(int, int, int) (Handle, error) +pkg syscall (windows-386), func StringToSid(string) (*SID, error) +pkg syscall (windows-386), func StringToUTF16(string) []uint16 +pkg syscall (windows-386), func StringToUTF16Ptr(string) *uint16 +pkg syscall (windows-386), func Syscall(uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), func Syscall12(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), func Syscall15(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-386), func TerminateProcess(Handle, uint32) error +pkg syscall (windows-386), func TranslateAccountName(string, uint32, uint32, int) (string, error) +pkg syscall (windows-386), func TranslateName(*uint16, uint32, uint32, *uint16, *uint32) error +pkg syscall (windows-386), func TransmitFile(Handle, Handle, uint32, uint32, *Overlapped, *TransmitFileBuffers, uint32) error +pkg syscall (windows-386), func UTF16ToString([]uint16) string +pkg syscall (windows-386), func UnmapViewOfFile(uintptr) error +pkg syscall (windows-386), func VirtualLock(uintptr, uintptr) error +pkg syscall (windows-386), func VirtualUnlock(uintptr, uintptr) error +pkg syscall (windows-386), func WSACleanup() error +pkg syscall (windows-386), func WSAIoctl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped, uintptr) error +pkg syscall (windows-386), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *uint8) error +pkg syscall (windows-386), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *uint8) error +pkg syscall (windows-386), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *uint8) error +pkg syscall (windows-386), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *uint8) error +pkg syscall (windows-386), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *uint8) error +pkg syscall (windows-386), func WSAStartup(uint32, *WSAData) error +pkg syscall (windows-386), func WaitForSingleObject(Handle, uint32) (uint32, error) +pkg syscall (windows-386), func Write(Handle, []uint8) (int, error) +pkg syscall (windows-386), func WriteFile(Handle, []uint8, *uint32, *Overlapped) error +pkg syscall (windows-386), method (*DLL) FindProc(string) (*Proc, error) +pkg syscall (windows-386), method (*DLL) MustFindProc(string) *Proc +pkg syscall (windows-386), method (*DLL) Release() error +pkg syscall (windows-386), method (*DLLError) Error() string +pkg syscall (windows-386), method (*Filetime) Nanoseconds() int64 +pkg syscall (windows-386), method (*LazyDLL) Handle() uintptr +pkg syscall (windows-386), method (*LazyDLL) Load() error +pkg syscall (windows-386), method (*LazyDLL) NewProc(string) *LazyProc +pkg syscall (windows-386), method (*LazyProc) Addr() uintptr +pkg syscall (windows-386), method (*LazyProc) Call(...uintptr) (uintptr, uintptr, error) +pkg syscall (windows-386), method (*LazyProc) Find() error +pkg syscall (windows-386), method (*Proc) Addr() uintptr +pkg syscall (windows-386), method (*Proc) Call(...uintptr) (uintptr, uintptr, error) +pkg syscall (windows-386), method (*RawSockaddrAny) Sockaddr() (Sockaddr, error) +pkg syscall (windows-386), method (*SID) Copy() (*SID, error) +pkg syscall (windows-386), method (*SID) Len() int +pkg syscall (windows-386), method (*SID) LookupAccount(string) (string, string, uint32, error) +pkg syscall (windows-386), method (*SID) String() (string, error) +pkg syscall (windows-386), method (*Timeval) Nanoseconds() int64 +pkg syscall (windows-386), method (Token) Close() error +pkg syscall (windows-386), method (Token) GetTokenPrimaryGroup() (*Tokenprimarygroup, error) +pkg syscall (windows-386), method (Token) GetTokenUser() (*Tokenuser, error) +pkg syscall (windows-386), method (Token) GetUserProfileDirectory() (string, error) +pkg syscall (windows-386), type ByHandleFileInformation struct +pkg syscall (windows-386), type ByHandleFileInformation struct, CreationTime Filetime +pkg syscall (windows-386), type ByHandleFileInformation struct, FileAttributes uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexHigh uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexLow uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, FileSizeHigh uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, FileSizeLow uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, LastAccessTime Filetime +pkg syscall (windows-386), type ByHandleFileInformation struct, LastWriteTime Filetime +pkg syscall (windows-386), type ByHandleFileInformation struct, NumberOfLinks uint32 +pkg syscall (windows-386), type ByHandleFileInformation struct, VolumeSerialNumber uint32 +pkg syscall (windows-386), type CertChainContext struct +pkg syscall (windows-386), type CertChainContext struct, ChainCount uint32 +pkg syscall (windows-386), type CertChainContext struct, Chains **CertSimpleChain +pkg syscall (windows-386), type CertChainContext struct, HasRevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertChainContext struct, LowerQualityChainCount uint32 +pkg syscall (windows-386), type CertChainContext struct, LowerQualityChains **CertChainContext +pkg syscall (windows-386), type CertChainContext struct, RevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertChainContext struct, Size uint32 +pkg syscall (windows-386), type CertChainContext struct, TrustStatus CertTrustStatus +pkg syscall (windows-386), type CertChainElement struct +pkg syscall (windows-386), type CertChainElement struct, ApplicationUsage *CertEnhKeyUsage +pkg syscall (windows-386), type CertChainElement struct, CertContext *CertContext +pkg syscall (windows-386), type CertChainElement struct, ExtendedErrorInfo *uint16 +pkg syscall (windows-386), type CertChainElement struct, IssuanceUsage *CertEnhKeyUsage +pkg syscall (windows-386), type CertChainElement struct, RevocationInfo *CertRevocationInfo +pkg syscall (windows-386), type CertChainElement struct, Size uint32 +pkg syscall (windows-386), type CertChainElement struct, TrustStatus CertTrustStatus +pkg syscall (windows-386), type CertChainPara struct +pkg syscall (windows-386), type CertChainPara struct, CacheResync *Filetime +pkg syscall (windows-386), type CertChainPara struct, CheckRevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertChainPara struct, RequestedUsage CertUsageMatch +pkg syscall (windows-386), type CertChainPara struct, RequstedIssuancePolicy CertUsageMatch +pkg syscall (windows-386), type CertChainPara struct, RevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertChainPara struct, Size uint32 +pkg syscall (windows-386), type CertChainPara struct, URLRetrievalTimeout uint32 +pkg syscall (windows-386), type CertChainPolicyPara struct +pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara uintptr +pkg syscall (windows-386), type CertChainPolicyPara struct, Flags uint32 +pkg syscall (windows-386), type CertChainPolicyPara struct, Size uint32 +pkg syscall (windows-386), type CertChainPolicyStatus struct +pkg syscall (windows-386), type CertChainPolicyStatus struct, ChainIndex uint32 +pkg syscall (windows-386), type CertChainPolicyStatus struct, ElementIndex uint32 +pkg syscall (windows-386), type CertChainPolicyStatus struct, Error uint32 +pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr +pkg syscall (windows-386), type CertChainPolicyStatus struct, Size uint32 +pkg syscall (windows-386), type CertContext struct +pkg syscall (windows-386), type CertContext struct, CertInfo uintptr +pkg syscall (windows-386), type CertContext struct, EncodedCert *uint8 +pkg syscall (windows-386), type CertContext struct, EncodingType uint32 +pkg syscall (windows-386), type CertContext struct, Length uint32 +pkg syscall (windows-386), type CertContext struct, Store Handle +pkg syscall (windows-386), type CertEnhKeyUsage struct +pkg syscall (windows-386), type CertEnhKeyUsage struct, Length uint32 +pkg syscall (windows-386), type CertEnhKeyUsage struct, UsageIdentifiers **uint8 +pkg syscall (windows-386), type CertRevocationInfo struct +pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo uintptr +pkg syscall (windows-386), type CertRevocationInfo struct, FreshnessTime uint32 +pkg syscall (windows-386), type CertRevocationInfo struct, HasFreshnessTime uint32 +pkg syscall (windows-386), type CertRevocationInfo struct, OidSpecificInfo uintptr +pkg syscall (windows-386), type CertRevocationInfo struct, RevocationOid *uint8 +pkg syscall (windows-386), type CertRevocationInfo struct, RevocationResult uint32 +pkg syscall (windows-386), type CertRevocationInfo struct, Size uint32 +pkg syscall (windows-386), type CertSimpleChain struct +pkg syscall (windows-386), type CertSimpleChain struct, Elements **CertChainElement +pkg syscall (windows-386), type CertSimpleChain struct, HasRevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertSimpleChain struct, NumElements uint32 +pkg syscall (windows-386), type CertSimpleChain struct, RevocationFreshnessTime uint32 +pkg syscall (windows-386), type CertSimpleChain struct, Size uint32 +pkg syscall (windows-386), type CertSimpleChain struct, TrustListInfo uintptr +pkg syscall (windows-386), type CertSimpleChain struct, TrustStatus CertTrustStatus +pkg syscall (windows-386), type CertTrustStatus struct +pkg syscall (windows-386), type CertTrustStatus struct, ErrorStatus uint32 +pkg syscall (windows-386), type CertTrustStatus struct, InfoStatus uint32 +pkg syscall (windows-386), type CertUsageMatch struct +pkg syscall (windows-386), type CertUsageMatch struct, Type uint32 +pkg syscall (windows-386), type CertUsageMatch struct, Usage CertEnhKeyUsage +pkg syscall (windows-386), type DLL struct +pkg syscall (windows-386), type DLL struct, Handle Handle +pkg syscall (windows-386), type DLL struct, Name string +pkg syscall (windows-386), type DLLError struct +pkg syscall (windows-386), type DLLError struct, Err error +pkg syscall (windows-386), type DLLError struct, Msg string +pkg syscall (windows-386), type DLLError struct, ObjName string +pkg syscall (windows-386), type DNSMXData struct +pkg syscall (windows-386), type DNSMXData struct, NameExchange *uint16 +pkg syscall (windows-386), type DNSMXData struct, Pad uint16 +pkg syscall (windows-386), type DNSMXData struct, Preference uint16 +pkg syscall (windows-386), type DNSPTRData struct +pkg syscall (windows-386), type DNSPTRData struct, Host *uint16 +pkg syscall (windows-386), type DNSRecord struct +pkg syscall (windows-386), type DNSRecord struct, Data [40]uint8 +pkg syscall (windows-386), type DNSRecord struct, Dw uint32 +pkg syscall (windows-386), type DNSRecord struct, Length uint16 +pkg syscall (windows-386), type DNSRecord struct, Name *uint16 +pkg syscall (windows-386), type DNSRecord struct, Next *DNSRecord +pkg syscall (windows-386), type DNSRecord struct, Reserved uint32 +pkg syscall (windows-386), type DNSRecord struct, Ttl uint32 +pkg syscall (windows-386), type DNSRecord struct, Type uint16 +pkg syscall (windows-386), type DNSSRVData struct +pkg syscall (windows-386), type DNSSRVData struct, Pad uint16 +pkg syscall (windows-386), type DNSSRVData struct, Port uint16 +pkg syscall (windows-386), type DNSSRVData struct, Priority uint16 +pkg syscall (windows-386), type DNSSRVData struct, Target *uint16 +pkg syscall (windows-386), type DNSSRVData struct, Weight uint16 +pkg syscall (windows-386), type DNSTXTData struct +pkg syscall (windows-386), type DNSTXTData struct, StringArray [1]*uint16 +pkg syscall (windows-386), type DNSTXTData struct, StringCount uint16 +pkg syscall (windows-386), type FileNotifyInformation struct +pkg syscall (windows-386), type FileNotifyInformation struct, Action uint32 +pkg syscall (windows-386), type FileNotifyInformation struct, FileName uint16 +pkg syscall (windows-386), type FileNotifyInformation struct, FileNameLength uint32 +pkg syscall (windows-386), type FileNotifyInformation struct, NextEntryOffset uint32 +pkg syscall (windows-386), type Filetime struct +pkg syscall (windows-386), type Filetime struct, HighDateTime uint32 +pkg syscall (windows-386), type Filetime struct, LowDateTime uint32 +pkg syscall (windows-386), type Handle uintptr +pkg syscall (windows-386), type Hostent struct +pkg syscall (windows-386), type Hostent struct, AddrList **uint8 +pkg syscall (windows-386), type Hostent struct, AddrType uint16 +pkg syscall (windows-386), type Hostent struct, Aliases **uint8 +pkg syscall (windows-386), type Hostent struct, Length uint16 +pkg syscall (windows-386), type Hostent struct, Name *uint8 +pkg syscall (windows-386), type InterfaceInfo struct +pkg syscall (windows-386), type InterfaceInfo struct, Address SockaddrGen +pkg syscall (windows-386), type InterfaceInfo struct, BroadcastAddress SockaddrGen +pkg syscall (windows-386), type InterfaceInfo struct, Flags uint32 +pkg syscall (windows-386), type InterfaceInfo struct, Netmask SockaddrGen +pkg syscall (windows-386), type IpAdapterInfo struct +pkg syscall (windows-386), type IpAdapterInfo struct, AdapterName [260]uint8 +pkg syscall (windows-386), type IpAdapterInfo struct, Address [8]uint8 +pkg syscall (windows-386), type IpAdapterInfo struct, AddressLength uint32 +pkg syscall (windows-386), type IpAdapterInfo struct, ComboIndex uint32 +pkg syscall (windows-386), type IpAdapterInfo struct, CurrentIpAddress *IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, Description [132]uint8 +pkg syscall (windows-386), type IpAdapterInfo struct, DhcpEnabled uint32 +pkg syscall (windows-386), type IpAdapterInfo struct, DhcpServer IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, GatewayList IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, HaveWins bool +pkg syscall (windows-386), type IpAdapterInfo struct, Index uint32 +pkg syscall (windows-386), type IpAdapterInfo struct, IpAddressList IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, LeaseExpires int64 +pkg syscall (windows-386), type IpAdapterInfo struct, LeaseObtained int64 +pkg syscall (windows-386), type IpAdapterInfo struct, Next *IpAdapterInfo +pkg syscall (windows-386), type IpAdapterInfo struct, PrimaryWinsServer IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, SecondaryWinsServer IpAddrString +pkg syscall (windows-386), type IpAdapterInfo struct, Type uint32 +pkg syscall (windows-386), type IpAddrString struct +pkg syscall (windows-386), type IpAddrString struct, Context uint32 +pkg syscall (windows-386), type IpAddrString struct, IpAddress IpAddressString +pkg syscall (windows-386), type IpAddrString struct, IpMask IpMaskString +pkg syscall (windows-386), type IpAddrString struct, Next *IpAddrString +pkg syscall (windows-386), type IpAddressString struct +pkg syscall (windows-386), type IpAddressString struct, String [16]uint8 +pkg syscall (windows-386), type IpMaskString struct +pkg syscall (windows-386), type LazyDLL struct +pkg syscall (windows-386), type LazyDLL struct, Name string +pkg syscall (windows-386), type LazyProc struct +pkg syscall (windows-386), type LazyProc struct, Name string +pkg syscall (windows-386), type MibIfRow struct +pkg syscall (windows-386), type MibIfRow struct, AdminStatus uint32 +pkg syscall (windows-386), type MibIfRow struct, Descr [256]uint8 +pkg syscall (windows-386), type MibIfRow struct, DescrLen uint32 +pkg syscall (windows-386), type MibIfRow struct, InDiscards uint32 +pkg syscall (windows-386), type MibIfRow struct, InErrors uint32 +pkg syscall (windows-386), type MibIfRow struct, InNUcastPkts uint32 +pkg syscall (windows-386), type MibIfRow struct, InOctets uint32 +pkg syscall (windows-386), type MibIfRow struct, InUcastPkts uint32 +pkg syscall (windows-386), type MibIfRow struct, InUnknownProtos uint32 +pkg syscall (windows-386), type MibIfRow struct, Index uint32 +pkg syscall (windows-386), type MibIfRow struct, LastChange uint32 +pkg syscall (windows-386), type MibIfRow struct, Mtu uint32 +pkg syscall (windows-386), type MibIfRow struct, Name [256]uint16 +pkg syscall (windows-386), type MibIfRow struct, OperStatus uint32 +pkg syscall (windows-386), type MibIfRow struct, OutDiscards uint32 +pkg syscall (windows-386), type MibIfRow struct, OutErrors uint32 +pkg syscall (windows-386), type MibIfRow struct, OutNUcastPkts uint32 +pkg syscall (windows-386), type MibIfRow struct, OutOctets uint32 +pkg syscall (windows-386), type MibIfRow struct, OutQLen uint32 +pkg syscall (windows-386), type MibIfRow struct, OutUcastPkts uint32 +pkg syscall (windows-386), type MibIfRow struct, PhysAddr [8]uint8 +pkg syscall (windows-386), type MibIfRow struct, PhysAddrLen uint32 +pkg syscall (windows-386), type MibIfRow struct, Speed uint32 +pkg syscall (windows-386), type MibIfRow struct, Type uint32 +pkg syscall (windows-386), type Overlapped struct +pkg syscall (windows-386), type Overlapped struct, HEvent Handle +pkg syscall (windows-386), type Overlapped struct, Internal uintptr +pkg syscall (windows-386), type Overlapped struct, InternalHigh uintptr +pkg syscall (windows-386), type Overlapped struct, Offset uint32 +pkg syscall (windows-386), type Overlapped struct, OffsetHigh uint32 +pkg syscall (windows-386), type Proc struct +pkg syscall (windows-386), type Proc struct, Dll *DLL +pkg syscall (windows-386), type Proc struct, Name string +pkg syscall (windows-386), type ProcessInformation struct +pkg syscall (windows-386), type ProcessInformation struct, Process Handle +pkg syscall (windows-386), type ProcessInformation struct, ProcessId uint32 +pkg syscall (windows-386), type ProcessInformation struct, Thread Handle +pkg syscall (windows-386), type ProcessInformation struct, ThreadId uint32 +pkg syscall (windows-386), type Protoent struct +pkg syscall (windows-386), type Protoent struct, Aliases **uint8 +pkg syscall (windows-386), type Protoent struct, Name *uint8 +pkg syscall (windows-386), type Protoent struct, Proto uint16 +pkg syscall (windows-386), type RawSockaddr struct, Data [14]int8 +pkg syscall (windows-386), type RawSockaddr struct, Family uint16 +pkg syscall (windows-386), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (windows-386), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (windows-386), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (windows-386), type Rusage struct, CreationTime Filetime +pkg syscall (windows-386), type Rusage struct, ExitTime Filetime +pkg syscall (windows-386), type Rusage struct, KernelTime Filetime +pkg syscall (windows-386), type Rusage struct, UserTime Filetime +pkg syscall (windows-386), type SID struct +pkg syscall (windows-386), type SIDAndAttributes struct +pkg syscall (windows-386), type SIDAndAttributes struct, Attributes uint32 +pkg syscall (windows-386), type SIDAndAttributes struct, Sid *SID +pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct +pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct, AuthType uint32 +pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct, Checks uint32 +pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct, ServerName *uint16 +pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct, Size uint32 +pkg syscall (windows-386), type SecurityAttributes struct +pkg syscall (windows-386), type SecurityAttributes struct, InheritHandle uint32 +pkg syscall (windows-386), type SecurityAttributes struct, Length uint32 +pkg syscall (windows-386), type SecurityAttributes struct, SecurityDescriptor uintptr +pkg syscall (windows-386), type Servent struct +pkg syscall (windows-386), type Servent struct, Aliases **uint8 +pkg syscall (windows-386), type Servent struct, Name *uint8 +pkg syscall (windows-386), type Servent struct, Port uint16 +pkg syscall (windows-386), type Servent struct, Proto *uint8 +pkg syscall (windows-386), type SockaddrGen [24]uint8 +pkg syscall (windows-386), type StartupInfo struct +pkg syscall (windows-386), type StartupInfo struct, Cb uint32 +pkg syscall (windows-386), type StartupInfo struct, Desktop *uint16 +pkg syscall (windows-386), type StartupInfo struct, FillAttribute uint32 +pkg syscall (windows-386), type StartupInfo struct, Flags uint32 +pkg syscall (windows-386), type StartupInfo struct, ShowWindow uint16 +pkg syscall (windows-386), type StartupInfo struct, StdErr Handle +pkg syscall (windows-386), type StartupInfo struct, StdInput Handle +pkg syscall (windows-386), type StartupInfo struct, StdOutput Handle +pkg syscall (windows-386), type StartupInfo struct, Title *uint16 +pkg syscall (windows-386), type StartupInfo struct, X uint32 +pkg syscall (windows-386), type StartupInfo struct, XCountChars uint32 +pkg syscall (windows-386), type StartupInfo struct, XSize uint32 +pkg syscall (windows-386), type StartupInfo struct, Y uint32 +pkg syscall (windows-386), type StartupInfo struct, YCountChars uint32 +pkg syscall (windows-386), type StartupInfo struct, YSize uint32 +pkg syscall (windows-386), type SysProcAttr struct, CmdLine string +pkg syscall (windows-386), type SysProcAttr struct, HideWindow bool +pkg syscall (windows-386), type Systemtime struct +pkg syscall (windows-386), type Systemtime struct, Day uint16 +pkg syscall (windows-386), type Systemtime struct, DayOfWeek uint16 +pkg syscall (windows-386), type Systemtime struct, Hour uint16 +pkg syscall (windows-386), type Systemtime struct, Milliseconds uint16 +pkg syscall (windows-386), type Systemtime struct, Minute uint16 +pkg syscall (windows-386), type Systemtime struct, Month uint16 +pkg syscall (windows-386), type Systemtime struct, Second uint16 +pkg syscall (windows-386), type Systemtime struct, Year uint16 +pkg syscall (windows-386), type Timespec struct, Nsec int64 +pkg syscall (windows-386), type Timespec struct, Sec int64 +pkg syscall (windows-386), type Timeval struct, Sec int32 +pkg syscall (windows-386), type Timeval struct, Usec int32 +pkg syscall (windows-386), type Timezoneinformation struct +pkg syscall (windows-386), type Timezoneinformation struct, Bias int32 +pkg syscall (windows-386), type Timezoneinformation struct, DaylightBias int32 +pkg syscall (windows-386), type Timezoneinformation struct, DaylightDate Systemtime +pkg syscall (windows-386), type Timezoneinformation struct, DaylightName [32]uint16 +pkg syscall (windows-386), type Timezoneinformation struct, StandardBias int32 +pkg syscall (windows-386), type Timezoneinformation struct, StandardDate Systemtime +pkg syscall (windows-386), type Timezoneinformation struct, StandardName [32]uint16 +pkg syscall (windows-386), type Token uintptr +pkg syscall (windows-386), type Tokenprimarygroup struct +pkg syscall (windows-386), type Tokenprimarygroup struct, PrimaryGroup *SID +pkg syscall (windows-386), type Tokenuser struct +pkg syscall (windows-386), type Tokenuser struct, User SIDAndAttributes +pkg syscall (windows-386), type TransmitFileBuffers struct +pkg syscall (windows-386), type TransmitFileBuffers struct, Head uintptr +pkg syscall (windows-386), type TransmitFileBuffers struct, HeadLength uint32 +pkg syscall (windows-386), type TransmitFileBuffers struct, Tail uintptr +pkg syscall (windows-386), type TransmitFileBuffers struct, TailLength uint32 +pkg syscall (windows-386), type UserInfo10 struct +pkg syscall (windows-386), type UserInfo10 struct, Comment *uint16 +pkg syscall (windows-386), type UserInfo10 struct, FullName *uint16 +pkg syscall (windows-386), type UserInfo10 struct, Name *uint16 +pkg syscall (windows-386), type UserInfo10 struct, UsrComment *uint16 +pkg syscall (windows-386), type WSABuf struct +pkg syscall (windows-386), type WSABuf struct, Buf *uint8 +pkg syscall (windows-386), type WSABuf struct, Len uint32 +pkg syscall (windows-386), type WSAData struct +pkg syscall (windows-386), type WSAData struct, Description [257]uint8 +pkg syscall (windows-386), type WSAData struct, HighVersion uint16 +pkg syscall (windows-386), type WSAData struct, MaxSockets uint16 +pkg syscall (windows-386), type WSAData struct, MaxUdpDg uint16 +pkg syscall (windows-386), type WSAData struct, SystemStatus [129]uint8 +pkg syscall (windows-386), type WSAData struct, VendorInfo *uint8 +pkg syscall (windows-386), type WSAData struct, Version uint16 +pkg syscall (windows-386), type WaitStatus struct +pkg syscall (windows-386), type WaitStatus struct, ExitCode uint32 +pkg syscall (windows-386), type Win32FileAttributeData struct +pkg syscall (windows-386), type Win32FileAttributeData struct, CreationTime Filetime +pkg syscall (windows-386), type Win32FileAttributeData struct, FileAttributes uint32 +pkg syscall (windows-386), type Win32FileAttributeData struct, FileSizeHigh uint32 +pkg syscall (windows-386), type Win32FileAttributeData struct, FileSizeLow uint32 +pkg syscall (windows-386), type Win32FileAttributeData struct, LastAccessTime Filetime +pkg syscall (windows-386), type Win32FileAttributeData struct, LastWriteTime Filetime +pkg syscall (windows-386), type Win32finddata struct +pkg syscall (windows-386), type Win32finddata struct, AlternateFileName [13]uint16 +pkg syscall (windows-386), type Win32finddata struct, CreationTime Filetime +pkg syscall (windows-386), type Win32finddata struct, FileAttributes uint32 +pkg syscall (windows-386), type Win32finddata struct, FileName [259]uint16 +pkg syscall (windows-386), type Win32finddata struct, FileSizeHigh uint32 +pkg syscall (windows-386), type Win32finddata struct, FileSizeLow uint32 +pkg syscall (windows-386), type Win32finddata struct, LastAccessTime Filetime +pkg syscall (windows-386), type Win32finddata struct, LastWriteTime Filetime +pkg syscall (windows-386), type Win32finddata struct, Reserved0 uint32 +pkg syscall (windows-386), type Win32finddata struct, Reserved1 uint32 +pkg syscall (windows-386), var OID_PKIX_KP_SERVER_AUTH []uint8 +pkg syscall (windows-386), var OID_SERVER_GATED_CRYPTO []uint8 +pkg syscall (windows-386), var OID_SGC_NETSCAPE []uint8 +pkg syscall (windows-386), var Stderr Handle +pkg syscall (windows-386), var Stdin Handle +pkg syscall (windows-386), var Stdout Handle +pkg syscall (windows-amd64), const AF_NETBIOS ideal-int +pkg syscall (windows-amd64), const APPLICATION_ERROR ideal-int +pkg syscall (windows-amd64), const AUTHTYPE_CLIENT ideal-int +pkg syscall (windows-amd64), const AUTHTYPE_SERVER ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_AUTHENTICODE ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_AUTHENTICODE_TS ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_BASE ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_EV ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_MICROSOFT_ROOT ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_NT_AUTH ideal-int +pkg syscall (windows-amd64), const CERT_CHAIN_POLICY_SSL ideal-int +pkg syscall (windows-amd64), const CERT_E_CN_NO_MATCH ideal-int +pkg syscall (windows-amd64), const CERT_E_EXPIRED ideal-int +pkg syscall (windows-amd64), const CERT_E_PURPOSE ideal-int +pkg syscall (windows-amd64), const CERT_E_ROLE ideal-int +pkg syscall (windows-amd64), const CERT_E_UNTRUSTEDROOT ideal-int +pkg syscall (windows-amd64), const CERT_STORE_ADD_ALWAYS ideal-int +pkg syscall (windows-amd64), const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG ideal-int +pkg syscall (windows-amd64), const CERT_STORE_PROV_MEMORY ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_BASIC_CONSTRAINTS ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_EXTENSION ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_NAME_CONSTRAINTS ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_INVALID_POLICY_CONSTRAINTS ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_CYCLIC ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_EXPLICIT_DISTRUST ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_SIGNATURE_VALID ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_TIME_VALID ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_NOT_VALID_FOR_USAGE ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_OFFLINE_REVOCATION ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_REVOKED ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_IS_UNTRUSTED_ROOT ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_NO_ERROR ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY ideal-int +pkg syscall (windows-amd64), const CERT_TRUST_REVOCATION_STATUS_UNKNOWN ideal-int +pkg syscall (windows-amd64), const CREATE_ALWAYS ideal-int +pkg syscall (windows-amd64), const CREATE_NEW ideal-int +pkg syscall (windows-amd64), const CREATE_UNICODE_ENVIRONMENT ideal-int +pkg syscall (windows-amd64), const CRYPT_DEFAULT_CONTAINER_OPTIONAL ideal-int +pkg syscall (windows-amd64), const CRYPT_DELETEKEYSET ideal-int +pkg syscall (windows-amd64), const CRYPT_MACHINE_KEYSET ideal-int +pkg syscall (windows-amd64), const CRYPT_NEWKEYSET ideal-int +pkg syscall (windows-amd64), const CRYPT_SILENT ideal-int +pkg syscall (windows-amd64), const CRYPT_VERIFYCONTEXT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_A ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_A6 ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_AAAA ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_ADDRS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_AFSDB ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_ALL ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_ANY ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_ATMA ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_AXFR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_CERT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_CNAME ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_DHCID ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_DNAME ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_DNSKEY ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_DS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_EID ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_GID ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_GPOS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_HINFO ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_ISDN ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_IXFR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_KEY ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_KX ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_LOC ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MAILA ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MAILB ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MB ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MD ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MF ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MG ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MINFO ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_MX ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NAPTR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NBSTAT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NIMLOC ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NSAP ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NSAPPTR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NSEC ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NULL ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_NXT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_OPT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_PTR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_PX ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_RP ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_RRSIG ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_RT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_SIG ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_SINK ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_SOA ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_SRV ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_TEXT ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_TKEY ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_TSIG ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_UID ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_UINFO ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_UNSPEC ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_WINS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_WINSR ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_WKS ideal-int +pkg syscall (windows-amd64), const DNS_TYPE_X25 ideal-int +pkg syscall (windows-amd64), const DUPLICATE_CLOSE_SOURCE ideal-int +pkg syscall (windows-amd64), const DUPLICATE_SAME_ACCESS ideal-int +pkg syscall (windows-amd64), const EADV Errno +pkg syscall (windows-amd64), const EBADE Errno +pkg syscall (windows-amd64), const EBADFD Errno +pkg syscall (windows-amd64), const EBADMSG Errno +pkg syscall (windows-amd64), const EBADR Errno +pkg syscall (windows-amd64), const EBADRQC Errno +pkg syscall (windows-amd64), const EBADSLT Errno +pkg syscall (windows-amd64), const EBFONT Errno +pkg syscall (windows-amd64), const ECHRNG Errno +pkg syscall (windows-amd64), const ECOMM Errno +pkg syscall (windows-amd64), const EDEADLOCK Errno +pkg syscall (windows-amd64), const EDOTDOT Errno +pkg syscall (windows-amd64), const EISNAM Errno +pkg syscall (windows-amd64), const EKEYEXPIRED Errno +pkg syscall (windows-amd64), const EKEYREJECTED Errno +pkg syscall (windows-amd64), const EKEYREVOKED Errno +pkg syscall (windows-amd64), const EL2HLT Errno +pkg syscall (windows-amd64), const EL2NSYNC Errno +pkg syscall (windows-amd64), const EL3HLT Errno +pkg syscall (windows-amd64), const EL3RST Errno +pkg syscall (windows-amd64), const ELIBACC Errno +pkg syscall (windows-amd64), const ELIBBAD Errno +pkg syscall (windows-amd64), const ELIBEXEC Errno +pkg syscall (windows-amd64), const ELIBMAX Errno +pkg syscall (windows-amd64), const ELIBSCN Errno +pkg syscall (windows-amd64), const ELNRNG Errno +pkg syscall (windows-amd64), const EMEDIUMTYPE Errno +pkg syscall (windows-amd64), const EMULTIHOP Errno +pkg syscall (windows-amd64), const ENAVAIL Errno +pkg syscall (windows-amd64), const ENOANO Errno +pkg syscall (windows-amd64), const ENOCSI Errno +pkg syscall (windows-amd64), const ENODATA Errno +pkg syscall (windows-amd64), const ENOKEY Errno +pkg syscall (windows-amd64), const ENOLINK Errno +pkg syscall (windows-amd64), const ENOMEDIUM Errno +pkg syscall (windows-amd64), const ENONET Errno +pkg syscall (windows-amd64), const ENOPKG Errno +pkg syscall (windows-amd64), const ENOSR Errno +pkg syscall (windows-amd64), const ENOSTR Errno +pkg syscall (windows-amd64), const ENOTNAM Errno +pkg syscall (windows-amd64), const ENOTRECOVERABLE Errno +pkg syscall (windows-amd64), const ENOTUNIQ Errno +pkg syscall (windows-amd64), const EOWNERDEAD Errno +pkg syscall (windows-amd64), const EPROTO Errno +pkg syscall (windows-amd64), const EREMCHG Errno +pkg syscall (windows-amd64), const EREMOTEIO Errno +pkg syscall (windows-amd64), const ERESTART Errno +pkg syscall (windows-amd64), const ERROR_ACCESS_DENIED Errno +pkg syscall (windows-amd64), const ERROR_ALREADY_EXISTS Errno +pkg syscall (windows-amd64), const ERROR_BROKEN_PIPE Errno +pkg syscall (windows-amd64), const ERROR_BUFFER_OVERFLOW Errno +pkg syscall (windows-amd64), const ERROR_ENVVAR_NOT_FOUND Errno +pkg syscall (windows-amd64), const ERROR_FILE_EXISTS Errno +pkg syscall (windows-amd64), const ERROR_FILE_NOT_FOUND Errno +pkg syscall (windows-amd64), const ERROR_INSUFFICIENT_BUFFER Errno +pkg syscall (windows-amd64), const ERROR_IO_PENDING Errno +pkg syscall (windows-amd64), const ERROR_MOD_NOT_FOUND Errno +pkg syscall (windows-amd64), const ERROR_NO_MORE_FILES Errno +pkg syscall (windows-amd64), const ERROR_OPERATION_ABORTED Errno +pkg syscall (windows-amd64), const ERROR_PATH_NOT_FOUND Errno +pkg syscall (windows-amd64), const ERROR_PROC_NOT_FOUND Errno +pkg syscall (windows-amd64), const ESRMNT Errno +pkg syscall (windows-amd64), const ESTRPIPE Errno +pkg syscall (windows-amd64), const ETIME Errno +pkg syscall (windows-amd64), const EUCLEAN Errno +pkg syscall (windows-amd64), const EUNATCH Errno +pkg syscall (windows-amd64), const EWINDOWS Errno +pkg syscall (windows-amd64), const EXFULL Errno +pkg syscall (windows-amd64), const FILE_ACTION_ADDED ideal-int +pkg syscall (windows-amd64), const FILE_ACTION_MODIFIED ideal-int +pkg syscall (windows-amd64), const FILE_ACTION_REMOVED ideal-int +pkg syscall (windows-amd64), const FILE_ACTION_RENAMED_NEW_NAME ideal-int +pkg syscall (windows-amd64), const FILE_ACTION_RENAMED_OLD_NAME ideal-int +pkg syscall (windows-amd64), const FILE_APPEND_DATA ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_ARCHIVE ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_DIRECTORY ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_HIDDEN ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_NORMAL ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_READONLY ideal-int +pkg syscall (windows-amd64), const FILE_ATTRIBUTE_SYSTEM ideal-int +pkg syscall (windows-amd64), const FILE_BEGIN ideal-int +pkg syscall (windows-amd64), const FILE_CURRENT ideal-int +pkg syscall (windows-amd64), const FILE_END ideal-int +pkg syscall (windows-amd64), const FILE_FLAG_BACKUP_SEMANTICS ideal-int +pkg syscall (windows-amd64), const FILE_FLAG_OVERLAPPED ideal-int +pkg syscall (windows-amd64), const FILE_LIST_DIRECTORY ideal-int +pkg syscall (windows-amd64), const FILE_MAP_COPY ideal-int +pkg syscall (windows-amd64), const FILE_MAP_EXECUTE ideal-int +pkg syscall (windows-amd64), const FILE_MAP_READ ideal-int +pkg syscall (windows-amd64), const FILE_MAP_WRITE ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_ATTRIBUTES ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_CREATION ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_DIR_NAME ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_FILE_NAME ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_LAST_ACCESS ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_LAST_WRITE ideal-int +pkg syscall (windows-amd64), const FILE_NOTIFY_CHANGE_SIZE ideal-int +pkg syscall (windows-amd64), const FILE_SHARE_DELETE ideal-int +pkg syscall (windows-amd64), const FILE_SHARE_READ ideal-int +pkg syscall (windows-amd64), const FILE_SHARE_WRITE ideal-int +pkg syscall (windows-amd64), const FILE_TYPE_CHAR ideal-int +pkg syscall (windows-amd64), const FILE_TYPE_DISK ideal-int +pkg syscall (windows-amd64), const FILE_TYPE_PIPE ideal-int +pkg syscall (windows-amd64), const FILE_TYPE_REMOTE ideal-int +pkg syscall (windows-amd64), const FILE_TYPE_UNKNOWN ideal-int +pkg syscall (windows-amd64), const FILE_WRITE_ATTRIBUTES ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_ALLOCATE_BUFFER ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_ARGUMENT_ARRAY ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_HMODULE ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_STRING ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_FROM_SYSTEM ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_IGNORE_INSERTS ideal-int +pkg syscall (windows-amd64), const FORMAT_MESSAGE_MAX_WIDTH_MASK ideal-int +pkg syscall (windows-amd64), const GENERIC_ALL ideal-int +pkg syscall (windows-amd64), const GENERIC_EXECUTE ideal-int +pkg syscall (windows-amd64), const GENERIC_READ ideal-int +pkg syscall (windows-amd64), const GENERIC_WRITE ideal-int +pkg syscall (windows-amd64), const GetFileExInfoStandard ideal-int +pkg syscall (windows-amd64), const GetFileExMaxInfoLevel ideal-int +pkg syscall (windows-amd64), const HANDLE_FLAG_INHERIT ideal-int +pkg syscall (windows-amd64), const HKEY_CLASSES_ROOT ideal-int +pkg syscall (windows-amd64), const HKEY_CURRENT_CONFIG ideal-int +pkg syscall (windows-amd64), const HKEY_CURRENT_USER ideal-int +pkg syscall (windows-amd64), const HKEY_DYN_DATA ideal-int +pkg syscall (windows-amd64), const HKEY_LOCAL_MACHINE ideal-int +pkg syscall (windows-amd64), const HKEY_PERFORMANCE_DATA ideal-int +pkg syscall (windows-amd64), const HKEY_USERS ideal-int +pkg syscall (windows-amd64), const IFF_POINTTOPOINT ideal-int +pkg syscall (windows-amd64), const IGNORE ideal-int +pkg syscall (windows-amd64), const INFINITE ideal-int +pkg syscall (windows-amd64), const INVALID_FILE_ATTRIBUTES ideal-int +pkg syscall (windows-amd64), const InvalidHandle Handle +pkg syscall (windows-amd64), const KEY_ALL_ACCESS ideal-int +pkg syscall (windows-amd64), const KEY_CREATE_LINK ideal-int +pkg syscall (windows-amd64), const KEY_CREATE_SUB_KEY ideal-int +pkg syscall (windows-amd64), const KEY_ENUMERATE_SUB_KEYS ideal-int +pkg syscall (windows-amd64), const KEY_EXECUTE ideal-int +pkg syscall (windows-amd64), const KEY_NOTIFY ideal-int +pkg syscall (windows-amd64), const KEY_QUERY_VALUE ideal-int +pkg syscall (windows-amd64), const KEY_READ ideal-int +pkg syscall (windows-amd64), const KEY_SET_VALUE ideal-int +pkg syscall (windows-amd64), const KEY_WOW64_32KEY ideal-int +pkg syscall (windows-amd64), const KEY_WOW64_64KEY ideal-int +pkg syscall (windows-amd64), const KEY_WRITE ideal-int +pkg syscall (windows-amd64), const LANG_ENGLISH ideal-int +pkg syscall (windows-amd64), const MAXLEN_IFDESCR ideal-int +pkg syscall (windows-amd64), const MAXLEN_PHYSADDR ideal-int +pkg syscall (windows-amd64), const MAX_ADAPTER_ADDRESS_LENGTH ideal-int +pkg syscall (windows-amd64), const MAX_ADAPTER_DESCRIPTION_LENGTH ideal-int +pkg syscall (windows-amd64), const MAX_ADAPTER_NAME_LENGTH ideal-int +pkg syscall (windows-amd64), const MAX_COMPUTERNAME_LENGTH ideal-int +pkg syscall (windows-amd64), const MAX_INTERFACE_NAME_LEN ideal-int +pkg syscall (windows-amd64), const MAX_LONG_PATH ideal-int +pkg syscall (windows-amd64), const MAX_PATH ideal-int +pkg syscall (windows-amd64), const MaxTokenInfoClass ideal-int +pkg syscall (windows-amd64), const NameCanonical ideal-int +pkg syscall (windows-amd64), const NameCanonicalEx ideal-int +pkg syscall (windows-amd64), const NameDisplay ideal-int +pkg syscall (windows-amd64), const NameDnsDomain ideal-int +pkg syscall (windows-amd64), const NameFullyQualifiedDN ideal-int +pkg syscall (windows-amd64), const NameSamCompatible ideal-int +pkg syscall (windows-amd64), const NameServicePrincipal ideal-int +pkg syscall (windows-amd64), const NameUniqueId ideal-int +pkg syscall (windows-amd64), const NameUnknown ideal-int +pkg syscall (windows-amd64), const NameUserPrincipal ideal-int +pkg syscall (windows-amd64), const OPEN_ALWAYS ideal-int +pkg syscall (windows-amd64), const OPEN_EXISTING ideal-int +pkg syscall (windows-amd64), const PAGE_EXECUTE_READ ideal-int +pkg syscall (windows-amd64), const PAGE_EXECUTE_READWRITE ideal-int +pkg syscall (windows-amd64), const PAGE_EXECUTE_WRITECOPY ideal-int +pkg syscall (windows-amd64), const PAGE_READONLY ideal-int +pkg syscall (windows-amd64), const PAGE_READWRITE ideal-int +pkg syscall (windows-amd64), const PAGE_WRITECOPY ideal-int +pkg syscall (windows-amd64), const PKCS_7_ASN_ENCODING ideal-int +pkg syscall (windows-amd64), const PROCESS_QUERY_INFORMATION ideal-int +pkg syscall (windows-amd64), const PROV_DH_SCHANNEL ideal-int +pkg syscall (windows-amd64), const PROV_DSS ideal-int +pkg syscall (windows-amd64), const PROV_DSS_DH ideal-int +pkg syscall (windows-amd64), const PROV_EC_ECDSA_FULL ideal-int +pkg syscall (windows-amd64), const PROV_EC_ECDSA_SIG ideal-int +pkg syscall (windows-amd64), const PROV_EC_ECNRA_FULL ideal-int +pkg syscall (windows-amd64), const PROV_EC_ECNRA_SIG ideal-int +pkg syscall (windows-amd64), const PROV_FORTEZZA ideal-int +pkg syscall (windows-amd64), const PROV_INTEL_SEC ideal-int +pkg syscall (windows-amd64), const PROV_MS_EXCHANGE ideal-int +pkg syscall (windows-amd64), const PROV_REPLACE_OWF ideal-int +pkg syscall (windows-amd64), const PROV_RNG ideal-int +pkg syscall (windows-amd64), const PROV_RSA_AES ideal-int +pkg syscall (windows-amd64), const PROV_RSA_FULL ideal-int +pkg syscall (windows-amd64), const PROV_RSA_SCHANNEL ideal-int +pkg syscall (windows-amd64), const PROV_RSA_SIG ideal-int +pkg syscall (windows-amd64), const PROV_SPYRUS_LYNKS ideal-int +pkg syscall (windows-amd64), const PROV_SSL ideal-int +pkg syscall (windows-amd64), const REG_BINARY ideal-int +pkg syscall (windows-amd64), const REG_DWORD ideal-int +pkg syscall (windows-amd64), const REG_DWORD_BIG_ENDIAN ideal-int +pkg syscall (windows-amd64), const REG_DWORD_LITTLE_ENDIAN ideal-int +pkg syscall (windows-amd64), const REG_EXPAND_SZ ideal-int +pkg syscall (windows-amd64), const REG_FULL_RESOURCE_DESCRIPTOR ideal-int +pkg syscall (windows-amd64), const REG_LINK ideal-int +pkg syscall (windows-amd64), const REG_MULTI_SZ ideal-int +pkg syscall (windows-amd64), const REG_NONE ideal-int +pkg syscall (windows-amd64), const REG_QWORD ideal-int +pkg syscall (windows-amd64), const REG_QWORD_LITTLE_ENDIAN ideal-int +pkg syscall (windows-amd64), const REG_RESOURCE_LIST ideal-int +pkg syscall (windows-amd64), const REG_RESOURCE_REQUIREMENTS_LIST ideal-int +pkg syscall (windows-amd64), const REG_SZ ideal-int +pkg syscall (windows-amd64), const SIO_GET_INTERFACE_LIST ideal-int +pkg syscall (windows-amd64), const SO_UPDATE_ACCEPT_CONTEXT ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_ALL ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_EXECUTE ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_READ ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_REQUIRED ideal-int +pkg syscall (windows-amd64), const STANDARD_RIGHTS_WRITE ideal-int +pkg syscall (windows-amd64), const STARTF_USESHOWWINDOW ideal-int +pkg syscall (windows-amd64), const STARTF_USESTDHANDLES ideal-int +pkg syscall (windows-amd64), const STD_ERROR_HANDLE ideal-int +pkg syscall (windows-amd64), const STD_INPUT_HANDLE ideal-int +pkg syscall (windows-amd64), const STD_OUTPUT_HANDLE ideal-int +pkg syscall (windows-amd64), const SUBLANG_ENGLISH_US ideal-int +pkg syscall (windows-amd64), const SW_FORCEMINIMIZE ideal-int +pkg syscall (windows-amd64), const SW_HIDE ideal-int +pkg syscall (windows-amd64), const SW_MAXIMIZE ideal-int +pkg syscall (windows-amd64), const SW_MINIMIZE ideal-int +pkg syscall (windows-amd64), const SW_NORMAL ideal-int +pkg syscall (windows-amd64), const SW_RESTORE ideal-int +pkg syscall (windows-amd64), const SW_SHOW ideal-int +pkg syscall (windows-amd64), const SW_SHOWDEFAULT ideal-int +pkg syscall (windows-amd64), const SW_SHOWMAXIMIZED ideal-int +pkg syscall (windows-amd64), const SW_SHOWMINIMIZED ideal-int +pkg syscall (windows-amd64), const SW_SHOWMINNOACTIVE ideal-int +pkg syscall (windows-amd64), const SW_SHOWNA ideal-int +pkg syscall (windows-amd64), const SW_SHOWNOACTIVATE ideal-int +pkg syscall (windows-amd64), const SW_SHOWNORMAL ideal-int +pkg syscall (windows-amd64), const SYNCHRONIZE ideal-int +pkg syscall (windows-amd64), const S_IWRITE ideal-int +pkg syscall (windows-amd64), const SidTypeAlias ideal-int +pkg syscall (windows-amd64), const SidTypeComputer ideal-int +pkg syscall (windows-amd64), const SidTypeDeletedAccount ideal-int +pkg syscall (windows-amd64), const SidTypeDomain ideal-int +pkg syscall (windows-amd64), const SidTypeGroup ideal-int +pkg syscall (windows-amd64), const SidTypeInvalid ideal-int +pkg syscall (windows-amd64), const SidTypeLabel ideal-int +pkg syscall (windows-amd64), const SidTypeUnknown ideal-int +pkg syscall (windows-amd64), const SidTypeUser ideal-int +pkg syscall (windows-amd64), const SidTypeWellKnownGroup ideal-int +pkg syscall (windows-amd64), const TF_DISCONNECT ideal-int +pkg syscall (windows-amd64), const TF_REUSE_SOCKET ideal-int +pkg syscall (windows-amd64), const TF_USE_DEFAULT_WORKER ideal-int +pkg syscall (windows-amd64), const TF_USE_KERNEL_APC ideal-int +pkg syscall (windows-amd64), const TF_USE_SYSTEM_THREAD ideal-int +pkg syscall (windows-amd64), const TF_WRITE_BEHIND ideal-int +pkg syscall (windows-amd64), const TIME_ZONE_ID_DAYLIGHT ideal-int +pkg syscall (windows-amd64), const TIME_ZONE_ID_STANDARD ideal-int +pkg syscall (windows-amd64), const TIME_ZONE_ID_UNKNOWN ideal-int +pkg syscall (windows-amd64), const TOKEN_ADJUST_DEFAULT ideal-int +pkg syscall (windows-amd64), const TOKEN_ADJUST_GROUPS ideal-int +pkg syscall (windows-amd64), const TOKEN_ADJUST_PRIVILEGES ideal-int +pkg syscall (windows-amd64), const TOKEN_ALL_ACCESS ideal-int +pkg syscall (windows-amd64), const TOKEN_ASSIGN_PRIMARY ideal-int +pkg syscall (windows-amd64), const TOKEN_DUPLICATE ideal-int +pkg syscall (windows-amd64), const TOKEN_EXECUTE ideal-int +pkg syscall (windows-amd64), const TOKEN_IMPERSONATE ideal-int +pkg syscall (windows-amd64), const TOKEN_QUERY ideal-int +pkg syscall (windows-amd64), const TOKEN_QUERY_SOURCE ideal-int +pkg syscall (windows-amd64), const TOKEN_READ ideal-int +pkg syscall (windows-amd64), const TOKEN_WRITE ideal-int +pkg syscall (windows-amd64), const TRUNCATE_EXISTING ideal-int +pkg syscall (windows-amd64), const TokenAccessInformation ideal-int +pkg syscall (windows-amd64), const TokenAuditPolicy ideal-int +pkg syscall (windows-amd64), const TokenDefaultDacl ideal-int +pkg syscall (windows-amd64), const TokenElevation ideal-int +pkg syscall (windows-amd64), const TokenElevationType ideal-int +pkg syscall (windows-amd64), const TokenGroups ideal-int +pkg syscall (windows-amd64), const TokenGroupsAndPrivileges ideal-int +pkg syscall (windows-amd64), const TokenHasRestrictions ideal-int +pkg syscall (windows-amd64), const TokenImpersonationLevel ideal-int +pkg syscall (windows-amd64), const TokenIntegrityLevel ideal-int +pkg syscall (windows-amd64), const TokenLinkedToken ideal-int +pkg syscall (windows-amd64), const TokenLogonSid ideal-int +pkg syscall (windows-amd64), const TokenMandatoryPolicy ideal-int +pkg syscall (windows-amd64), const TokenOrigin ideal-int +pkg syscall (windows-amd64), const TokenOwner ideal-int +pkg syscall (windows-amd64), const TokenPrimaryGroup ideal-int +pkg syscall (windows-amd64), const TokenPrivileges ideal-int +pkg syscall (windows-amd64), const TokenRestrictedSids ideal-int +pkg syscall (windows-amd64), const TokenSandBoxInert ideal-int +pkg syscall (windows-amd64), const TokenSessionId ideal-int +pkg syscall (windows-amd64), const TokenSessionReference ideal-int +pkg syscall (windows-amd64), const TokenSource ideal-int +pkg syscall (windows-amd64), const TokenStatistics ideal-int +pkg syscall (windows-amd64), const TokenType ideal-int +pkg syscall (windows-amd64), const TokenUIAccess ideal-int +pkg syscall (windows-amd64), const TokenUser ideal-int +pkg syscall (windows-amd64), const TokenVirtualizationAllowed ideal-int +pkg syscall (windows-amd64), const TokenVirtualizationEnabled ideal-int +pkg syscall (windows-amd64), const USAGE_MATCH_TYPE_AND ideal-int +pkg syscall (windows-amd64), const USAGE_MATCH_TYPE_OR ideal-int +pkg syscall (windows-amd64), const WAIT_ABANDONED ideal-int +pkg syscall (windows-amd64), const WAIT_FAILED ideal-int +pkg syscall (windows-amd64), const WAIT_OBJECT_0 ideal-int +pkg syscall (windows-amd64), const WAIT_TIMEOUT ideal-int +pkg syscall (windows-amd64), const WSADESCRIPTION_LEN ideal-int +pkg syscall (windows-amd64), const WSASYS_STATUS_LEN ideal-int +pkg syscall (windows-amd64), const X509_ASN_ENCODING ideal-int +pkg syscall (windows-amd64), func Accept(Handle) (Handle, Sockaddr, error) +pkg syscall (windows-amd64), func AcceptEx(Handle, Handle, *uint8, uint32, uint32, uint32, *uint32, *Overlapped) error +pkg syscall (windows-amd64), func Bind(Handle, Sockaddr) error +pkg syscall (windows-amd64), func CancelIo(Handle) error +pkg syscall (windows-amd64), func CertAddCertificateContextToStore(Handle, *CertContext, uint32, **CertContext) error +pkg syscall (windows-amd64), func CertCloseStore(Handle, uint32) error +pkg syscall (windows-amd64), func CertCreateCertificateContext(uint32, *uint8, uint32) (*CertContext, error) +pkg syscall (windows-amd64), func CertEnumCertificatesInStore(Handle, *CertContext) (*CertContext, error) +pkg syscall (windows-amd64), func CertFreeCertificateChain(*CertChainContext) +pkg syscall (windows-amd64), func CertFreeCertificateContext(*CertContext) error +pkg syscall (windows-amd64), func CertGetCertificateChain(Handle, *CertContext, *Filetime, Handle, *CertChainPara, uint32, uintptr, **CertChainContext) error +pkg syscall (windows-amd64), func CertOpenStore(uintptr, uint32, uintptr, uint32, uintptr) (Handle, error) +pkg syscall (windows-amd64), func CertOpenSystemStore(Handle, *uint16) (Handle, error) +pkg syscall (windows-amd64), func CertVerifyCertificateChainPolicy(uintptr, *CertChainContext, *CertChainPolicyPara, *CertChainPolicyStatus) error +pkg syscall (windows-amd64), func Close(Handle) error +pkg syscall (windows-amd64), func CloseHandle(Handle) error +pkg syscall (windows-amd64), func CloseOnExec(Handle) +pkg syscall (windows-amd64), func Closesocket(Handle) error +pkg syscall (windows-amd64), func CommandLineToArgv(*uint16, *int32) (*[8192]*[8192]uint16, error) +pkg syscall (windows-amd64), func ComputerName() (string, error) +pkg syscall (windows-amd64), func Connect(Handle, Sockaddr) error +pkg syscall (windows-amd64), func ConvertSidToStringSid(*SID, **uint16) error +pkg syscall (windows-amd64), func ConvertStringSidToSid(*uint16, **SID) error +pkg syscall (windows-amd64), func CopySid(uint32, *SID, *SID) error +pkg syscall (windows-amd64), func CreateDirectory(*uint16, *SecurityAttributes) error +pkg syscall (windows-amd64), func CreateFile(*uint16, uint32, uint32, *SecurityAttributes, uint32, uint32, int32) (Handle, error) +pkg syscall (windows-amd64), func CreateFileMapping(Handle, *SecurityAttributes, uint32, uint32, uint32, *uint16) (Handle, error) +pkg syscall (windows-amd64), func CreateIoCompletionPort(Handle, Handle, uint32, uint32) (Handle, error) +pkg syscall (windows-amd64), func CreatePipe(*Handle, *Handle, *SecurityAttributes, uint32) error +pkg syscall (windows-amd64), func CreateProcess(*uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error +pkg syscall (windows-amd64), func CryptAcquireContext(*Handle, *uint16, *uint16, uint32, uint32) error +pkg syscall (windows-amd64), func CryptGenRandom(Handle, uint32, *uint8) error +pkg syscall (windows-amd64), func CryptReleaseContext(Handle, uint32) error +pkg syscall (windows-amd64), func DeleteFile(*uint16) error +pkg syscall (windows-amd64), func DnsQuery(string, uint16, uint32, *uint8, **DNSRecord, *uint8) error +pkg syscall (windows-amd64), func DnsRecordListFree(*DNSRecord, uint32) +pkg syscall (windows-amd64), func DuplicateHandle(Handle, Handle, Handle, *Handle, uint32, bool, uint32) error +pkg syscall (windows-amd64), func EscapeArg(string) string +pkg syscall (windows-amd64), func ExitProcess(uint32) +pkg syscall (windows-amd64), func Fchdir(Handle) error +pkg syscall (windows-amd64), func Fchmod(Handle, uint32) error +pkg syscall (windows-amd64), func Fchown(Handle, int, int) error +pkg syscall (windows-amd64), func FindClose(Handle) error +pkg syscall (windows-amd64), func FindFirstFile(*uint16, *Win32finddata) (Handle, error) +pkg syscall (windows-amd64), func FindNextFile(Handle, *Win32finddata) error +pkg syscall (windows-amd64), func FlushFileBuffers(Handle) error +pkg syscall (windows-amd64), func FlushViewOfFile(uintptr, uintptr) error +pkg syscall (windows-amd64), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *uint8) (uint32, error) +pkg syscall (windows-amd64), func FreeEnvironmentStrings(*uint16) error +pkg syscall (windows-amd64), func FreeLibrary(Handle) error +pkg syscall (windows-amd64), func Fsync(Handle) error +pkg syscall (windows-amd64), func Ftruncate(Handle, int64) error +pkg syscall (windows-amd64), func GetAcceptExSockaddrs(*uint8, uint32, uint32, uint32, **RawSockaddrAny, *int32, **RawSockaddrAny, *int32) +pkg syscall (windows-amd64), func GetAdaptersInfo(*IpAdapterInfo, *uint32) error +pkg syscall (windows-amd64), func GetCommandLine() *uint16 +pkg syscall (windows-amd64), func GetComputerName(*uint16, *uint32) error +pkg syscall (windows-amd64), func GetCurrentDirectory(uint32, *uint16) (uint32, error) +pkg syscall (windows-amd64), func GetCurrentProcess() (Handle, error) +pkg syscall (windows-amd64), func GetEnvironmentStrings() (*uint16, error) +pkg syscall (windows-amd64), func GetEnvironmentVariable(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-amd64), func GetExitCodeProcess(Handle, *uint32) error +pkg syscall (windows-amd64), func GetFileAttributes(*uint16) (uint32, error) +pkg syscall (windows-amd64), func GetFileAttributesEx(*uint16, uint32, *uint8) error +pkg syscall (windows-amd64), func GetFileInformationByHandle(Handle, *ByHandleFileInformation) error +pkg syscall (windows-amd64), func GetFileType(Handle) (uint32, error) +pkg syscall (windows-amd64), func GetFullPathName(*uint16, uint32, *uint16, **uint16) (uint32, error) +pkg syscall (windows-amd64), func GetHostByName(string) (*Hostent, error) +pkg syscall (windows-amd64), func GetIfEntry(*MibIfRow) error +pkg syscall (windows-amd64), func GetLastError() error +pkg syscall (windows-amd64), func GetLengthSid(*SID) uint32 +pkg syscall (windows-amd64), func GetLongPathName(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-amd64), func GetProcAddress(Handle, string) (uintptr, error) +pkg syscall (windows-amd64), func GetProcessTimes(Handle, *Filetime, *Filetime, *Filetime, *Filetime) error +pkg syscall (windows-amd64), func GetProtoByName(string) (*Protoent, error) +pkg syscall (windows-amd64), func GetQueuedCompletionStatus(Handle, *uint32, *uint32, **Overlapped, uint32) error +pkg syscall (windows-amd64), func GetServByName(string, string) (*Servent, error) +pkg syscall (windows-amd64), func GetShortPathName(*uint16, *uint16, uint32) (uint32, error) +pkg syscall (windows-amd64), func GetStartupInfo(*StartupInfo) error +pkg syscall (windows-amd64), func GetStdHandle(int) (Handle, error) +pkg syscall (windows-amd64), func GetSystemTimeAsFileTime(*Filetime) +pkg syscall (windows-amd64), func GetTempPath(uint32, *uint16) (uint32, error) +pkg syscall (windows-amd64), func GetTimeZoneInformation(*Timezoneinformation) (uint32, error) +pkg syscall (windows-amd64), func GetTokenInformation(Token, uint32, *uint8, uint32, *uint32) error +pkg syscall (windows-amd64), func GetUserNameEx(uint32, *uint16, *uint32) error +pkg syscall (windows-amd64), func GetUserProfileDirectory(Token, *uint16, *uint32) error +pkg syscall (windows-amd64), func GetVersion() (uint32, error) +pkg syscall (windows-amd64), func Getpeername(Handle) (Sockaddr, error) +pkg syscall (windows-amd64), func Getsockname(Handle) (Sockaddr, error) +pkg syscall (windows-amd64), func GetsockoptInt(Handle, int, int) (int, error) +pkg syscall (windows-amd64), func Listen(Handle, int) error +pkg syscall (windows-amd64), func LoadDLL(string) (*DLL, error) +pkg syscall (windows-amd64), func LoadLibrary(string) (Handle, error) +pkg syscall (windows-amd64), func LocalFree(Handle) (Handle, error) +pkg syscall (windows-amd64), func LookupAccountName(*uint16, *uint16, *SID, *uint32, *uint16, *uint32, *uint32) error +pkg syscall (windows-amd64), func LookupAccountSid(*uint16, *SID, *uint16, *uint32, *uint16, *uint32, *uint32) error +pkg syscall (windows-amd64), func LookupSID(string, string) (*SID, string, uint32, error) +pkg syscall (windows-amd64), func MapViewOfFile(Handle, uint32, uint32, uint32, uintptr) (uintptr, error) +pkg syscall (windows-amd64), func MoveFile(*uint16, *uint16) error +pkg syscall (windows-amd64), func MustLoadDLL(string) *DLL +pkg syscall (windows-amd64), func NetApiBufferFree(*uint8) error +pkg syscall (windows-amd64), func NetUserGetInfo(*uint16, *uint16, uint32, **uint8) error +pkg syscall (windows-amd64), func NewCallback(interface{}) uintptr +pkg syscall (windows-amd64), func NewLazyDLL(string) *LazyDLL +pkg syscall (windows-amd64), func NsecToFiletime(int64) Filetime +pkg syscall (windows-amd64), func Ntohs(uint16) uint16 +pkg syscall (windows-amd64), func Open(string, int, uint32) (Handle, error) +pkg syscall (windows-amd64), func OpenCurrentProcessToken() (Token, error) +pkg syscall (windows-amd64), func OpenProcess(uint32, bool, uint32) (Handle, error) +pkg syscall (windows-amd64), func OpenProcessToken(Handle, uint32, *Token) error +pkg syscall (windows-amd64), func Pipe([]Handle) error +pkg syscall (windows-amd64), func PostQueuedCompletionStatus(Handle, uint32, uint32, *Overlapped) error +pkg syscall (windows-amd64), func Read(Handle, []uint8) (int, error) +pkg syscall (windows-amd64), func ReadDirectoryChanges(Handle, *uint8, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error +pkg syscall (windows-amd64), func ReadFile(Handle, []uint8, *uint32, *Overlapped) error +pkg syscall (windows-amd64), func Recvfrom(Handle, []uint8, int) (int, Sockaddr, error) +pkg syscall (windows-amd64), func RegCloseKey(Handle) error +pkg syscall (windows-amd64), func RegEnumKeyEx(Handle, uint32, *uint16, *uint32, *uint32, *uint16, *uint32, *Filetime) error +pkg syscall (windows-amd64), func RegOpenKeyEx(Handle, *uint16, uint32, uint32, *Handle) error +pkg syscall (windows-amd64), func RegQueryInfoKey(Handle, *uint16, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *uint32, *Filetime) error +pkg syscall (windows-amd64), func RegQueryValueEx(Handle, *uint16, *uint32, *uint32, *uint8, *uint32) error +pkg syscall (windows-amd64), func RemoveDirectory(*uint16) error +pkg syscall (windows-amd64), func Seek(Handle, int64, int) (int64, error) +pkg syscall (windows-amd64), func Sendto(Handle, []uint8, int, Sockaddr) error +pkg syscall (windows-amd64), func SetCurrentDirectory(*uint16) error +pkg syscall (windows-amd64), func SetEndOfFile(Handle) error +pkg syscall (windows-amd64), func SetEnvironmentVariable(*uint16, *uint16) error +pkg syscall (windows-amd64), func SetFileAttributes(*uint16, uint32) error +pkg syscall (windows-amd64), func SetFilePointer(Handle, int32, *int32, uint32) (uint32, error) +pkg syscall (windows-amd64), func SetFileTime(Handle, *Filetime, *Filetime, *Filetime) error +pkg syscall (windows-amd64), func SetHandleInformation(Handle, uint32, uint32) error +pkg syscall (windows-amd64), func SetNonblock(Handle, bool) error +pkg syscall (windows-amd64), func Setsockopt(Handle, int32, int32, *uint8, int32) error +pkg syscall (windows-amd64), func SetsockoptIPMreq(Handle, int, int, *IPMreq) error +pkg syscall (windows-amd64), func SetsockoptIPv6Mreq(Handle, int, int, *IPv6Mreq) error +pkg syscall (windows-amd64), func SetsockoptInet4Addr(Handle, int, int, [4]uint8) error +pkg syscall (windows-amd64), func SetsockoptInt(Handle, int, int, int) error +pkg syscall (windows-amd64), func SetsockoptLinger(Handle, int, int, *Linger) error +pkg syscall (windows-amd64), func SetsockoptTimeval(Handle, int, int, *Timeval) error +pkg syscall (windows-amd64), func Shutdown(Handle, int) error +pkg syscall (windows-amd64), func Socket(int, int, int) (Handle, error) +pkg syscall (windows-amd64), func StringToSid(string) (*SID, error) +pkg syscall (windows-amd64), func StringToUTF16(string) []uint16 +pkg syscall (windows-amd64), func StringToUTF16Ptr(string) *uint16 +pkg syscall (windows-amd64), func Syscall(uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func Syscall12(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func Syscall15(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) +pkg syscall (windows-amd64), func TerminateProcess(Handle, uint32) error +pkg syscall (windows-amd64), func TranslateAccountName(string, uint32, uint32, int) (string, error) +pkg syscall (windows-amd64), func TranslateName(*uint16, uint32, uint32, *uint16, *uint32) error +pkg syscall (windows-amd64), func TransmitFile(Handle, Handle, uint32, uint32, *Overlapped, *TransmitFileBuffers, uint32) error +pkg syscall (windows-amd64), func UTF16ToString([]uint16) string +pkg syscall (windows-amd64), func UnmapViewOfFile(uintptr) error +pkg syscall (windows-amd64), func VirtualLock(uintptr, uintptr) error +pkg syscall (windows-amd64), func VirtualUnlock(uintptr, uintptr) error +pkg syscall (windows-amd64), func WSACleanup() error +pkg syscall (windows-amd64), func WSAIoctl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped, uintptr) error +pkg syscall (windows-amd64), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *uint8) error +pkg syscall (windows-amd64), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *uint8) error +pkg syscall (windows-amd64), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *uint8) error +pkg syscall (windows-amd64), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *uint8) error +pkg syscall (windows-amd64), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *uint8) error +pkg syscall (windows-amd64), func WSAStartup(uint32, *WSAData) error +pkg syscall (windows-amd64), func WaitForSingleObject(Handle, uint32) (uint32, error) +pkg syscall (windows-amd64), func Write(Handle, []uint8) (int, error) +pkg syscall (windows-amd64), func WriteFile(Handle, []uint8, *uint32, *Overlapped) error +pkg syscall (windows-amd64), method (*DLL) FindProc(string) (*Proc, error) +pkg syscall (windows-amd64), method (*DLL) MustFindProc(string) *Proc +pkg syscall (windows-amd64), method (*DLL) Release() error +pkg syscall (windows-amd64), method (*DLLError) Error() string +pkg syscall (windows-amd64), method (*Filetime) Nanoseconds() int64 +pkg syscall (windows-amd64), method (*LazyDLL) Handle() uintptr +pkg syscall (windows-amd64), method (*LazyDLL) Load() error +pkg syscall (windows-amd64), method (*LazyDLL) NewProc(string) *LazyProc +pkg syscall (windows-amd64), method (*LazyProc) Addr() uintptr +pkg syscall (windows-amd64), method (*LazyProc) Call(...uintptr) (uintptr, uintptr, error) +pkg syscall (windows-amd64), method (*LazyProc) Find() error +pkg syscall (windows-amd64), method (*Proc) Addr() uintptr +pkg syscall (windows-amd64), method (*Proc) Call(...uintptr) (uintptr, uintptr, error) +pkg syscall (windows-amd64), method (*RawSockaddrAny) Sockaddr() (Sockaddr, error) +pkg syscall (windows-amd64), method (*SID) Copy() (*SID, error) +pkg syscall (windows-amd64), method (*SID) Len() int +pkg syscall (windows-amd64), method (*SID) LookupAccount(string) (string, string, uint32, error) +pkg syscall (windows-amd64), method (*SID) String() (string, error) +pkg syscall (windows-amd64), method (*Timeval) Nanoseconds() int64 +pkg syscall (windows-amd64), method (Token) Close() error +pkg syscall (windows-amd64), method (Token) GetTokenPrimaryGroup() (*Tokenprimarygroup, error) +pkg syscall (windows-amd64), method (Token) GetTokenUser() (*Tokenuser, error) +pkg syscall (windows-amd64), method (Token) GetUserProfileDirectory() (string, error) +pkg syscall (windows-amd64), type ByHandleFileInformation struct +pkg syscall (windows-amd64), type ByHandleFileInformation struct, CreationTime Filetime +pkg syscall (windows-amd64), type ByHandleFileInformation struct, FileAttributes uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, FileIndexHigh uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, FileIndexLow uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, FileSizeHigh uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, FileSizeLow uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, LastAccessTime Filetime +pkg syscall (windows-amd64), type ByHandleFileInformation struct, LastWriteTime Filetime +pkg syscall (windows-amd64), type ByHandleFileInformation struct, NumberOfLinks uint32 +pkg syscall (windows-amd64), type ByHandleFileInformation struct, VolumeSerialNumber uint32 +pkg syscall (windows-amd64), type CertChainContext struct +pkg syscall (windows-amd64), type CertChainContext struct, ChainCount uint32 +pkg syscall (windows-amd64), type CertChainContext struct, Chains **CertSimpleChain +pkg syscall (windows-amd64), type CertChainContext struct, HasRevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertChainContext struct, LowerQualityChainCount uint32 +pkg syscall (windows-amd64), type CertChainContext struct, LowerQualityChains **CertChainContext +pkg syscall (windows-amd64), type CertChainContext struct, RevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertChainContext struct, Size uint32 +pkg syscall (windows-amd64), type CertChainContext struct, TrustStatus CertTrustStatus +pkg syscall (windows-amd64), type CertChainElement struct +pkg syscall (windows-amd64), type CertChainElement struct, ApplicationUsage *CertEnhKeyUsage +pkg syscall (windows-amd64), type CertChainElement struct, CertContext *CertContext +pkg syscall (windows-amd64), type CertChainElement struct, ExtendedErrorInfo *uint16 +pkg syscall (windows-amd64), type CertChainElement struct, IssuanceUsage *CertEnhKeyUsage +pkg syscall (windows-amd64), type CertChainElement struct, RevocationInfo *CertRevocationInfo +pkg syscall (windows-amd64), type CertChainElement struct, Size uint32 +pkg syscall (windows-amd64), type CertChainElement struct, TrustStatus CertTrustStatus +pkg syscall (windows-amd64), type CertChainPara struct +pkg syscall (windows-amd64), type CertChainPara struct, CacheResync *Filetime +pkg syscall (windows-amd64), type CertChainPara struct, CheckRevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertChainPara struct, RequestedUsage CertUsageMatch +pkg syscall (windows-amd64), type CertChainPara struct, RequstedIssuancePolicy CertUsageMatch +pkg syscall (windows-amd64), type CertChainPara struct, RevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertChainPara struct, Size uint32 +pkg syscall (windows-amd64), type CertChainPara struct, URLRetrievalTimeout uint32 +pkg syscall (windows-amd64), type CertChainPolicyPara struct +pkg syscall (windows-amd64), type CertChainPolicyPara struct, ExtraPolicyPara uintptr +pkg syscall (windows-amd64), type CertChainPolicyPara struct, Flags uint32 +pkg syscall (windows-amd64), type CertChainPolicyPara struct, Size uint32 +pkg syscall (windows-amd64), type CertChainPolicyStatus struct +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ChainIndex uint32 +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ElementIndex uint32 +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, Error uint32 +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr +pkg syscall (windows-amd64), type CertChainPolicyStatus struct, Size uint32 +pkg syscall (windows-amd64), type CertContext struct +pkg syscall (windows-amd64), type CertContext struct, CertInfo uintptr +pkg syscall (windows-amd64), type CertContext struct, EncodedCert *uint8 +pkg syscall (windows-amd64), type CertContext struct, EncodingType uint32 +pkg syscall (windows-amd64), type CertContext struct, Length uint32 +pkg syscall (windows-amd64), type CertContext struct, Store Handle +pkg syscall (windows-amd64), type CertEnhKeyUsage struct +pkg syscall (windows-amd64), type CertEnhKeyUsage struct, Length uint32 +pkg syscall (windows-amd64), type CertEnhKeyUsage struct, UsageIdentifiers **uint8 +pkg syscall (windows-amd64), type CertRevocationInfo struct +pkg syscall (windows-amd64), type CertRevocationInfo struct, CrlInfo uintptr +pkg syscall (windows-amd64), type CertRevocationInfo struct, FreshnessTime uint32 +pkg syscall (windows-amd64), type CertRevocationInfo struct, HasFreshnessTime uint32 +pkg syscall (windows-amd64), type CertRevocationInfo struct, OidSpecificInfo uintptr +pkg syscall (windows-amd64), type CertRevocationInfo struct, RevocationOid *uint8 +pkg syscall (windows-amd64), type CertRevocationInfo struct, RevocationResult uint32 +pkg syscall (windows-amd64), type CertRevocationInfo struct, Size uint32 +pkg syscall (windows-amd64), type CertSimpleChain struct +pkg syscall (windows-amd64), type CertSimpleChain struct, Elements **CertChainElement +pkg syscall (windows-amd64), type CertSimpleChain struct, HasRevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertSimpleChain struct, NumElements uint32 +pkg syscall (windows-amd64), type CertSimpleChain struct, RevocationFreshnessTime uint32 +pkg syscall (windows-amd64), type CertSimpleChain struct, Size uint32 +pkg syscall (windows-amd64), type CertSimpleChain struct, TrustListInfo uintptr +pkg syscall (windows-amd64), type CertSimpleChain struct, TrustStatus CertTrustStatus +pkg syscall (windows-amd64), type CertTrustStatus struct +pkg syscall (windows-amd64), type CertTrustStatus struct, ErrorStatus uint32 +pkg syscall (windows-amd64), type CertTrustStatus struct, InfoStatus uint32 +pkg syscall (windows-amd64), type CertUsageMatch struct +pkg syscall (windows-amd64), type CertUsageMatch struct, Type uint32 +pkg syscall (windows-amd64), type CertUsageMatch struct, Usage CertEnhKeyUsage +pkg syscall (windows-amd64), type DLL struct +pkg syscall (windows-amd64), type DLL struct, Handle Handle +pkg syscall (windows-amd64), type DLL struct, Name string +pkg syscall (windows-amd64), type DLLError struct +pkg syscall (windows-amd64), type DLLError struct, Err error +pkg syscall (windows-amd64), type DLLError struct, Msg string +pkg syscall (windows-amd64), type DLLError struct, ObjName string +pkg syscall (windows-amd64), type DNSMXData struct +pkg syscall (windows-amd64), type DNSMXData struct, NameExchange *uint16 +pkg syscall (windows-amd64), type DNSMXData struct, Pad uint16 +pkg syscall (windows-amd64), type DNSMXData struct, Preference uint16 +pkg syscall (windows-amd64), type DNSPTRData struct +pkg syscall (windows-amd64), type DNSPTRData struct, Host *uint16 +pkg syscall (windows-amd64), type DNSRecord struct +pkg syscall (windows-amd64), type DNSRecord struct, Data [40]uint8 +pkg syscall (windows-amd64), type DNSRecord struct, Dw uint32 +pkg syscall (windows-amd64), type DNSRecord struct, Length uint16 +pkg syscall (windows-amd64), type DNSRecord struct, Name *uint16 +pkg syscall (windows-amd64), type DNSRecord struct, Next *DNSRecord +pkg syscall (windows-amd64), type DNSRecord struct, Reserved uint32 +pkg syscall (windows-amd64), type DNSRecord struct, Ttl uint32 +pkg syscall (windows-amd64), type DNSRecord struct, Type uint16 +pkg syscall (windows-amd64), type DNSSRVData struct +pkg syscall (windows-amd64), type DNSSRVData struct, Pad uint16 +pkg syscall (windows-amd64), type DNSSRVData struct, Port uint16 +pkg syscall (windows-amd64), type DNSSRVData struct, Priority uint16 +pkg syscall (windows-amd64), type DNSSRVData struct, Target *uint16 +pkg syscall (windows-amd64), type DNSSRVData struct, Weight uint16 +pkg syscall (windows-amd64), type DNSTXTData struct +pkg syscall (windows-amd64), type DNSTXTData struct, StringArray [1]*uint16 +pkg syscall (windows-amd64), type DNSTXTData struct, StringCount uint16 +pkg syscall (windows-amd64), type FileNotifyInformation struct +pkg syscall (windows-amd64), type FileNotifyInformation struct, Action uint32 +pkg syscall (windows-amd64), type FileNotifyInformation struct, FileName uint16 +pkg syscall (windows-amd64), type FileNotifyInformation struct, FileNameLength uint32 +pkg syscall (windows-amd64), type FileNotifyInformation struct, NextEntryOffset uint32 +pkg syscall (windows-amd64), type Filetime struct +pkg syscall (windows-amd64), type Filetime struct, HighDateTime uint32 +pkg syscall (windows-amd64), type Filetime struct, LowDateTime uint32 +pkg syscall (windows-amd64), type Handle uintptr +pkg syscall (windows-amd64), type Hostent struct +pkg syscall (windows-amd64), type Hostent struct, AddrList **uint8 +pkg syscall (windows-amd64), type Hostent struct, AddrType uint16 +pkg syscall (windows-amd64), type Hostent struct, Aliases **uint8 +pkg syscall (windows-amd64), type Hostent struct, Length uint16 +pkg syscall (windows-amd64), type Hostent struct, Name *uint8 +pkg syscall (windows-amd64), type InterfaceInfo struct +pkg syscall (windows-amd64), type InterfaceInfo struct, Address SockaddrGen +pkg syscall (windows-amd64), type InterfaceInfo struct, BroadcastAddress SockaddrGen +pkg syscall (windows-amd64), type InterfaceInfo struct, Flags uint32 +pkg syscall (windows-amd64), type InterfaceInfo struct, Netmask SockaddrGen +pkg syscall (windows-amd64), type IpAdapterInfo struct +pkg syscall (windows-amd64), type IpAdapterInfo struct, AdapterName [260]uint8 +pkg syscall (windows-amd64), type IpAdapterInfo struct, Address [8]uint8 +pkg syscall (windows-amd64), type IpAdapterInfo struct, AddressLength uint32 +pkg syscall (windows-amd64), type IpAdapterInfo struct, ComboIndex uint32 +pkg syscall (windows-amd64), type IpAdapterInfo struct, CurrentIpAddress *IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, Description [132]uint8 +pkg syscall (windows-amd64), type IpAdapterInfo struct, DhcpEnabled uint32 +pkg syscall (windows-amd64), type IpAdapterInfo struct, DhcpServer IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, GatewayList IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, HaveWins bool +pkg syscall (windows-amd64), type IpAdapterInfo struct, Index uint32 +pkg syscall (windows-amd64), type IpAdapterInfo struct, IpAddressList IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, LeaseExpires int64 +pkg syscall (windows-amd64), type IpAdapterInfo struct, LeaseObtained int64 +pkg syscall (windows-amd64), type IpAdapterInfo struct, Next *IpAdapterInfo +pkg syscall (windows-amd64), type IpAdapterInfo struct, PrimaryWinsServer IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, SecondaryWinsServer IpAddrString +pkg syscall (windows-amd64), type IpAdapterInfo struct, Type uint32 +pkg syscall (windows-amd64), type IpAddrString struct +pkg syscall (windows-amd64), type IpAddrString struct, Context uint32 +pkg syscall (windows-amd64), type IpAddrString struct, IpAddress IpAddressString +pkg syscall (windows-amd64), type IpAddrString struct, IpMask IpMaskString +pkg syscall (windows-amd64), type IpAddrString struct, Next *IpAddrString +pkg syscall (windows-amd64), type IpAddressString struct +pkg syscall (windows-amd64), type IpAddressString struct, String [16]uint8 +pkg syscall (windows-amd64), type IpMaskString struct +pkg syscall (windows-amd64), type LazyDLL struct +pkg syscall (windows-amd64), type LazyDLL struct, Name string +pkg syscall (windows-amd64), type LazyProc struct +pkg syscall (windows-amd64), type LazyProc struct, Name string +pkg syscall (windows-amd64), type MibIfRow struct +pkg syscall (windows-amd64), type MibIfRow struct, AdminStatus uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Descr [256]uint8 +pkg syscall (windows-amd64), type MibIfRow struct, DescrLen uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InDiscards uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InErrors uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InNUcastPkts uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InOctets uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InUcastPkts uint32 +pkg syscall (windows-amd64), type MibIfRow struct, InUnknownProtos uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Index uint32 +pkg syscall (windows-amd64), type MibIfRow struct, LastChange uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Mtu uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Name [256]uint16 +pkg syscall (windows-amd64), type MibIfRow struct, OperStatus uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutDiscards uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutErrors uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutNUcastPkts uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutOctets uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutQLen uint32 +pkg syscall (windows-amd64), type MibIfRow struct, OutUcastPkts uint32 +pkg syscall (windows-amd64), type MibIfRow struct, PhysAddr [8]uint8 +pkg syscall (windows-amd64), type MibIfRow struct, PhysAddrLen uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Speed uint32 +pkg syscall (windows-amd64), type MibIfRow struct, Type uint32 +pkg syscall (windows-amd64), type Overlapped struct +pkg syscall (windows-amd64), type Overlapped struct, HEvent Handle +pkg syscall (windows-amd64), type Overlapped struct, Internal uintptr +pkg syscall (windows-amd64), type Overlapped struct, InternalHigh uintptr +pkg syscall (windows-amd64), type Overlapped struct, Offset uint32 +pkg syscall (windows-amd64), type Overlapped struct, OffsetHigh uint32 +pkg syscall (windows-amd64), type Proc struct +pkg syscall (windows-amd64), type Proc struct, Dll *DLL +pkg syscall (windows-amd64), type Proc struct, Name string +pkg syscall (windows-amd64), type ProcessInformation struct +pkg syscall (windows-amd64), type ProcessInformation struct, Process Handle +pkg syscall (windows-amd64), type ProcessInformation struct, ProcessId uint32 +pkg syscall (windows-amd64), type ProcessInformation struct, Thread Handle +pkg syscall (windows-amd64), type ProcessInformation struct, ThreadId uint32 +pkg syscall (windows-amd64), type Protoent struct +pkg syscall (windows-amd64), type Protoent struct, Aliases **uint8 +pkg syscall (windows-amd64), type Protoent struct, Name *uint8 +pkg syscall (windows-amd64), type Protoent struct, Proto uint16 +pkg syscall (windows-amd64), type RawSockaddr struct, Data [14]int8 +pkg syscall (windows-amd64), type RawSockaddr struct, Family uint16 +pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [96]int8 +pkg syscall (windows-amd64), type RawSockaddrInet4 struct, Family uint16 +pkg syscall (windows-amd64), type RawSockaddrInet4 struct, Zero [8]uint8 +pkg syscall (windows-amd64), type Rusage struct, CreationTime Filetime +pkg syscall (windows-amd64), type Rusage struct, ExitTime Filetime +pkg syscall (windows-amd64), type Rusage struct, KernelTime Filetime +pkg syscall (windows-amd64), type Rusage struct, UserTime Filetime +pkg syscall (windows-amd64), type SID struct +pkg syscall (windows-amd64), type SIDAndAttributes struct +pkg syscall (windows-amd64), type SIDAndAttributes struct, Attributes uint32 +pkg syscall (windows-amd64), type SIDAndAttributes struct, Sid *SID +pkg syscall (windows-amd64), type SSLExtraCertChainPolicyPara struct +pkg syscall (windows-amd64), type SSLExtraCertChainPolicyPara struct, AuthType uint32 +pkg syscall (windows-amd64), type SSLExtraCertChainPolicyPara struct, Checks uint32 +pkg syscall (windows-amd64), type SSLExtraCertChainPolicyPara struct, ServerName *uint16 +pkg syscall (windows-amd64), type SSLExtraCertChainPolicyPara struct, Size uint32 +pkg syscall (windows-amd64), type SecurityAttributes struct +pkg syscall (windows-amd64), type SecurityAttributes struct, InheritHandle uint32 +pkg syscall (windows-amd64), type SecurityAttributes struct, Length uint32 +pkg syscall (windows-amd64), type SecurityAttributes struct, SecurityDescriptor uintptr +pkg syscall (windows-amd64), type Servent struct +pkg syscall (windows-amd64), type Servent struct, Aliases **uint8 +pkg syscall (windows-amd64), type Servent struct, Name *uint8 +pkg syscall (windows-amd64), type Servent struct, Port uint16 +pkg syscall (windows-amd64), type Servent struct, Proto *uint8 +pkg syscall (windows-amd64), type SockaddrGen [24]uint8 +pkg syscall (windows-amd64), type StartupInfo struct +pkg syscall (windows-amd64), type StartupInfo struct, Cb uint32 +pkg syscall (windows-amd64), type StartupInfo struct, Desktop *uint16 +pkg syscall (windows-amd64), type StartupInfo struct, FillAttribute uint32 +pkg syscall (windows-amd64), type StartupInfo struct, Flags uint32 +pkg syscall (windows-amd64), type StartupInfo struct, ShowWindow uint16 +pkg syscall (windows-amd64), type StartupInfo struct, StdErr Handle +pkg syscall (windows-amd64), type StartupInfo struct, StdInput Handle +pkg syscall (windows-amd64), type StartupInfo struct, StdOutput Handle +pkg syscall (windows-amd64), type StartupInfo struct, Title *uint16 +pkg syscall (windows-amd64), type StartupInfo struct, X uint32 +pkg syscall (windows-amd64), type StartupInfo struct, XCountChars uint32 +pkg syscall (windows-amd64), type StartupInfo struct, XSize uint32 +pkg syscall (windows-amd64), type StartupInfo struct, Y uint32 +pkg syscall (windows-amd64), type StartupInfo struct, YCountChars uint32 +pkg syscall (windows-amd64), type StartupInfo struct, YSize uint32 +pkg syscall (windows-amd64), type SysProcAttr struct, CmdLine string +pkg syscall (windows-amd64), type SysProcAttr struct, HideWindow bool +pkg syscall (windows-amd64), type Systemtime struct +pkg syscall (windows-amd64), type Systemtime struct, Day uint16 +pkg syscall (windows-amd64), type Systemtime struct, DayOfWeek uint16 +pkg syscall (windows-amd64), type Systemtime struct, Hour uint16 +pkg syscall (windows-amd64), type Systemtime struct, Milliseconds uint16 +pkg syscall (windows-amd64), type Systemtime struct, Minute uint16 +pkg syscall (windows-amd64), type Systemtime struct, Month uint16 +pkg syscall (windows-amd64), type Systemtime struct, Second uint16 +pkg syscall (windows-amd64), type Systemtime struct, Year uint16 +pkg syscall (windows-amd64), type Timespec struct, Nsec int64 +pkg syscall (windows-amd64), type Timespec struct, Sec int64 +pkg syscall (windows-amd64), type Timeval struct, Sec int32 +pkg syscall (windows-amd64), type Timeval struct, Usec int32 +pkg syscall (windows-amd64), type Timezoneinformation struct +pkg syscall (windows-amd64), type Timezoneinformation struct, Bias int32 +pkg syscall (windows-amd64), type Timezoneinformation struct, DaylightBias int32 +pkg syscall (windows-amd64), type Timezoneinformation struct, DaylightDate Systemtime +pkg syscall (windows-amd64), type Timezoneinformation struct, DaylightName [32]uint16 +pkg syscall (windows-amd64), type Timezoneinformation struct, StandardBias int32 +pkg syscall (windows-amd64), type Timezoneinformation struct, StandardDate Systemtime +pkg syscall (windows-amd64), type Timezoneinformation struct, StandardName [32]uint16 +pkg syscall (windows-amd64), type Token uintptr +pkg syscall (windows-amd64), type Tokenprimarygroup struct +pkg syscall (windows-amd64), type Tokenprimarygroup struct, PrimaryGroup *SID +pkg syscall (windows-amd64), type Tokenuser struct +pkg syscall (windows-amd64), type Tokenuser struct, User SIDAndAttributes +pkg syscall (windows-amd64), type TransmitFileBuffers struct +pkg syscall (windows-amd64), type TransmitFileBuffers struct, Head uintptr +pkg syscall (windows-amd64), type TransmitFileBuffers struct, HeadLength uint32 +pkg syscall (windows-amd64), type TransmitFileBuffers struct, Tail uintptr +pkg syscall (windows-amd64), type TransmitFileBuffers struct, TailLength uint32 +pkg syscall (windows-amd64), type UserInfo10 struct +pkg syscall (windows-amd64), type UserInfo10 struct, Comment *uint16 +pkg syscall (windows-amd64), type UserInfo10 struct, FullName *uint16 +pkg syscall (windows-amd64), type UserInfo10 struct, Name *uint16 +pkg syscall (windows-amd64), type UserInfo10 struct, UsrComment *uint16 +pkg syscall (windows-amd64), type WSABuf struct +pkg syscall (windows-amd64), type WSABuf struct, Buf *uint8 +pkg syscall (windows-amd64), type WSABuf struct, Len uint32 +pkg syscall (windows-amd64), type WSAData struct +pkg syscall (windows-amd64), type WSAData struct, Description [257]uint8 +pkg syscall (windows-amd64), type WSAData struct, HighVersion uint16 +pkg syscall (windows-amd64), type WSAData struct, MaxSockets uint16 +pkg syscall (windows-amd64), type WSAData struct, MaxUdpDg uint16 +pkg syscall (windows-amd64), type WSAData struct, SystemStatus [129]uint8 +pkg syscall (windows-amd64), type WSAData struct, VendorInfo *uint8 +pkg syscall (windows-amd64), type WSAData struct, Version uint16 +pkg syscall (windows-amd64), type WaitStatus struct +pkg syscall (windows-amd64), type WaitStatus struct, ExitCode uint32 +pkg syscall (windows-amd64), type Win32FileAttributeData struct +pkg syscall (windows-amd64), type Win32FileAttributeData struct, CreationTime Filetime +pkg syscall (windows-amd64), type Win32FileAttributeData struct, FileAttributes uint32 +pkg syscall (windows-amd64), type Win32FileAttributeData struct, FileSizeHigh uint32 +pkg syscall (windows-amd64), type Win32FileAttributeData struct, FileSizeLow uint32 +pkg syscall (windows-amd64), type Win32FileAttributeData struct, LastAccessTime Filetime +pkg syscall (windows-amd64), type Win32FileAttributeData struct, LastWriteTime Filetime +pkg syscall (windows-amd64), type Win32finddata struct +pkg syscall (windows-amd64), type Win32finddata struct, AlternateFileName [13]uint16 +pkg syscall (windows-amd64), type Win32finddata struct, CreationTime Filetime +pkg syscall (windows-amd64), type Win32finddata struct, FileAttributes uint32 +pkg syscall (windows-amd64), type Win32finddata struct, FileName [259]uint16 +pkg syscall (windows-amd64), type Win32finddata struct, FileSizeHigh uint32 +pkg syscall (windows-amd64), type Win32finddata struct, FileSizeLow uint32 +pkg syscall (windows-amd64), type Win32finddata struct, LastAccessTime Filetime +pkg syscall (windows-amd64), type Win32finddata struct, LastWriteTime Filetime +pkg syscall (windows-amd64), type Win32finddata struct, Reserved0 uint32 +pkg syscall (windows-amd64), type Win32finddata struct, Reserved1 uint32 +pkg syscall (windows-amd64), var OID_PKIX_KP_SERVER_AUTH []uint8 +pkg syscall (windows-amd64), var OID_SERVER_GATED_CRYPTO []uint8 +pkg syscall (windows-amd64), var OID_SGC_NETSCAPE []uint8 +pkg syscall (windows-amd64), var Stderr Handle +pkg syscall (windows-amd64), var Stdin Handle +pkg syscall (windows-amd64), var Stdout Handle +pkg syscall, const AF_INET ideal-int +pkg syscall, const AF_INET6 ideal-int +pkg syscall, const AF_UNIX ideal-int +pkg syscall, const AF_UNSPEC ideal-int +pkg syscall, const E2BIG Errno +pkg syscall, const EACCES Errno +pkg syscall, const EADDRINUSE Errno +pkg syscall, const EADDRNOTAVAIL Errno +pkg syscall, const EAFNOSUPPORT Errno +pkg syscall, const EAGAIN Errno +pkg syscall, const EALREADY Errno +pkg syscall, const EBADF Errno +pkg syscall, const EBUSY Errno +pkg syscall, const ECANCELED Errno +pkg syscall, const ECHILD Errno +pkg syscall, const ECONNABORTED Errno +pkg syscall, const ECONNREFUSED Errno +pkg syscall, const ECONNRESET Errno +pkg syscall, const EDEADLK Errno +pkg syscall, const EDESTADDRREQ Errno +pkg syscall, const EDOM Errno +pkg syscall, const EDQUOT Errno +pkg syscall, const EEXIST Errno +pkg syscall, const EFAULT Errno +pkg syscall, const EFBIG Errno +pkg syscall, const EHOSTDOWN Errno +pkg syscall, const EHOSTUNREACH Errno +pkg syscall, const EIDRM Errno +pkg syscall, const EILSEQ Errno +pkg syscall, const EINPROGRESS Errno +pkg syscall, const EINTR Errno +pkg syscall, const EINVAL Errno +pkg syscall, const EIO Errno +pkg syscall, const EISCONN Errno +pkg syscall, const EISDIR Errno +pkg syscall, const ELOOP Errno +pkg syscall, const EMFILE Errno +pkg syscall, const EMLINK Errno +pkg syscall, const EMSGSIZE Errno +pkg syscall, const ENAMETOOLONG Errno +pkg syscall, const ENETDOWN Errno +pkg syscall, const ENETRESET Errno +pkg syscall, const ENETUNREACH Errno +pkg syscall, const ENFILE Errno +pkg syscall, const ENOBUFS Errno +pkg syscall, const ENODEV Errno +pkg syscall, const ENOENT Errno +pkg syscall, const ENOEXEC Errno +pkg syscall, const ENOLCK Errno +pkg syscall, const ENOMEM Errno +pkg syscall, const ENOMSG Errno +pkg syscall, const ENOPROTOOPT Errno +pkg syscall, const ENOSPC Errno +pkg syscall, const ENOSYS Errno +pkg syscall, const ENOTBLK Errno +pkg syscall, const ENOTCONN Errno +pkg syscall, const ENOTDIR Errno +pkg syscall, const ENOTEMPTY Errno +pkg syscall, const ENOTSOCK Errno +pkg syscall, const ENOTSUP Errno +pkg syscall, const ENOTTY Errno +pkg syscall, const ENXIO Errno +pkg syscall, const EOPNOTSUPP Errno +pkg syscall, const EOVERFLOW Errno +pkg syscall, const EPERM Errno +pkg syscall, const EPFNOSUPPORT Errno +pkg syscall, const EPIPE Errno +pkg syscall, const EPROTONOSUPPORT Errno +pkg syscall, const EPROTOTYPE Errno +pkg syscall, const ERANGE Errno +pkg syscall, const EREMOTE Errno +pkg syscall, const EROFS Errno +pkg syscall, const ESHUTDOWN Errno +pkg syscall, const ESOCKTNOSUPPORT Errno +pkg syscall, const ESPIPE Errno +pkg syscall, const ESRCH Errno +pkg syscall, const ESTALE Errno +pkg syscall, const ETIMEDOUT Errno +pkg syscall, const ETOOMANYREFS Errno +pkg syscall, const ETXTBSY Errno +pkg syscall, const EUSERS Errno +pkg syscall, const EWOULDBLOCK Errno +pkg syscall, const EXDEV Errno +pkg syscall, const IFF_BROADCAST ideal-int +pkg syscall, const IFF_LOOPBACK ideal-int +pkg syscall, const IFF_MULTICAST ideal-int +pkg syscall, const IFF_UP ideal-int +pkg syscall, const IPPROTO_IP ideal-int +pkg syscall, const IPPROTO_IPV6 ideal-int +pkg syscall, const IPPROTO_TCP ideal-int +pkg syscall, const IPPROTO_UDP ideal-int +pkg syscall, const IPV6_JOIN_GROUP ideal-int +pkg syscall, const IPV6_LEAVE_GROUP ideal-int +pkg syscall, const IPV6_MULTICAST_HOPS ideal-int +pkg syscall, const IPV6_MULTICAST_IF ideal-int +pkg syscall, const IPV6_MULTICAST_LOOP ideal-int +pkg syscall, const IPV6_UNICAST_HOPS ideal-int +pkg syscall, const IPV6_V6ONLY ideal-int +pkg syscall, const IP_ADD_MEMBERSHIP ideal-int +pkg syscall, const IP_DROP_MEMBERSHIP ideal-int +pkg syscall, const IP_MULTICAST_IF ideal-int +pkg syscall, const IP_MULTICAST_LOOP ideal-int +pkg syscall, const IP_MULTICAST_TTL ideal-int +pkg syscall, const IP_TOS ideal-int +pkg syscall, const IP_TTL ideal-int +pkg syscall, const ImplementsGetwd ideal-bool +pkg syscall, const O_APPEND ideal-int +pkg syscall, const O_ASYNC ideal-int +pkg syscall, const O_CLOEXEC ideal-int +pkg syscall, const O_CREAT ideal-int +pkg syscall, const O_EXCL ideal-int +pkg syscall, const O_NOCTTY ideal-int +pkg syscall, const O_NONBLOCK ideal-int +pkg syscall, const O_RDONLY ideal-int +pkg syscall, const O_RDWR ideal-int +pkg syscall, const O_SYNC ideal-int +pkg syscall, const O_TRUNC ideal-int +pkg syscall, const O_WRONLY ideal-int +pkg syscall, const SHUT_RD ideal-int +pkg syscall, const SHUT_RDWR ideal-int +pkg syscall, const SHUT_WR ideal-int +pkg syscall, const SIGABRT Signal +pkg syscall, const SIGALRM Signal +pkg syscall, const SIGBUS Signal +pkg syscall, const SIGFPE Signal +pkg syscall, const SIGHUP Signal +pkg syscall, const SIGILL Signal +pkg syscall, const SIGINT Signal +pkg syscall, const SIGKILL Signal +pkg syscall, const SIGPIPE Signal +pkg syscall, const SIGQUIT Signal +pkg syscall, const SIGSEGV Signal +pkg syscall, const SIGTERM Signal +pkg syscall, const SIGTRAP Signal +pkg syscall, const SOCK_DGRAM ideal-int +pkg syscall, const SOCK_RAW ideal-int +pkg syscall, const SOCK_SEQPACKET ideal-int +pkg syscall, const SOCK_STREAM ideal-int +pkg syscall, const SOL_SOCKET ideal-int +pkg syscall, const SOMAXCONN ideal-int +pkg syscall, const SO_BROADCAST ideal-int +pkg syscall, const SO_DONTROUTE ideal-int +pkg syscall, const SO_KEEPALIVE ideal-int +pkg syscall, const SO_LINGER ideal-int +pkg syscall, const SO_RCVBUF ideal-int +pkg syscall, const SO_REUSEADDR ideal-int +pkg syscall, const SO_SNDBUF ideal-int +pkg syscall, const S_IFBLK ideal-int +pkg syscall, const S_IFCHR ideal-int +pkg syscall, const S_IFDIR ideal-int +pkg syscall, const S_IFIFO ideal-int +pkg syscall, const S_IFLNK ideal-int +pkg syscall, const S_IFMT ideal-int +pkg syscall, const S_IFREG ideal-int +pkg syscall, const S_IFSOCK ideal-int +pkg syscall, const S_IRUSR ideal-int +pkg syscall, const S_ISGID ideal-int +pkg syscall, const S_ISUID ideal-int +pkg syscall, const S_ISVTX ideal-int +pkg syscall, const S_IWUSR ideal-int +pkg syscall, const S_IXUSR ideal-int +pkg syscall, const TCP_NODELAY ideal-int +pkg syscall, func Chdir(string) error +pkg syscall, func Chmod(string, uint32) error +pkg syscall, func Chown(string, int, int) error +pkg syscall, func Clearenv() +pkg syscall, func Environ() []string +pkg syscall, func Exec(string, []string, []string) error +pkg syscall, func Exit(int) +pkg syscall, func Getegid() int +pkg syscall, func Getenv(string) (string, bool) +pkg syscall, func Geteuid() int +pkg syscall, func Getgid() int +pkg syscall, func Getgroups() ([]int, error) +pkg syscall, func Getpagesize() int +pkg syscall, func Getpid() int +pkg syscall, func Getppid() int +pkg syscall, func Gettimeofday(*Timeval) error +pkg syscall, func Getuid() int +pkg syscall, func Getwd() (string, error) +pkg syscall, func Lchown(string, int, int) error +pkg syscall, func Link(string, string) error +pkg syscall, func Mkdir(string, uint32) error +pkg syscall, func NsecToTimeval(int64) Timeval +pkg syscall, func Readlink(string, []uint8) (int, error) +pkg syscall, func Rename(string, string) error +pkg syscall, func Rmdir(string) error +pkg syscall, func Setenv(string, string) error +pkg syscall, func StartProcess(string, []string, *ProcAttr) (int, uintptr, error) +pkg syscall, func StringBytePtr(string) *uint8 +pkg syscall, func StringByteSlice(string) []uint8 +pkg syscall, func Symlink(string, string) error +pkg syscall, func Unlink(string) error +pkg syscall, func Utimes(string, []Timeval) error +pkg syscall, method (*Timespec) Nano() int64 +pkg syscall, method (*Timespec) Unix() (int64, int64) +pkg syscall, method (*Timeval) Nano() int64 +pkg syscall, method (*Timeval) Unix() (int64, int64) +pkg syscall, method (Errno) Error() string +pkg syscall, method (Errno) Temporary() bool +pkg syscall, method (Errno) Timeout() bool +pkg syscall, method (Signal) Signal() +pkg syscall, method (Signal) String() string +pkg syscall, method (WaitStatus) Continued() bool +pkg syscall, method (WaitStatus) CoreDump() bool +pkg syscall, method (WaitStatus) ExitStatus() int +pkg syscall, method (WaitStatus) Exited() bool +pkg syscall, method (WaitStatus) Signal() Signal +pkg syscall, method (WaitStatus) Signaled() bool +pkg syscall, method (WaitStatus) StopSignal() Signal +pkg syscall, method (WaitStatus) Stopped() bool +pkg syscall, method (WaitStatus) TrapCause() int +pkg syscall, type Errno uintptr +pkg syscall, type IPMreq struct +pkg syscall, type IPMreq struct, Interface [4]uint8 +pkg syscall, type IPMreq struct, Multiaddr [4]uint8 +pkg syscall, type IPv6Mreq struct +pkg syscall, type IPv6Mreq struct, Interface uint32 +pkg syscall, type IPv6Mreq struct, Multiaddr [16]uint8 +pkg syscall, type Linger struct +pkg syscall, type Linger struct, Linger int32 +pkg syscall, type Linger struct, Onoff int32 +pkg syscall, type ProcAttr struct +pkg syscall, type ProcAttr struct, Dir string +pkg syscall, type ProcAttr struct, Env []string +pkg syscall, type ProcAttr struct, Files []uintptr +pkg syscall, type ProcAttr struct, Sys *SysProcAttr +pkg syscall, type RawSockaddr struct +pkg syscall, type RawSockaddrAny struct +pkg syscall, type RawSockaddrAny struct, Addr RawSockaddr +pkg syscall, type RawSockaddrInet4 struct +pkg syscall, type RawSockaddrInet4 struct, Addr [4]uint8 +pkg syscall, type RawSockaddrInet4 struct, Port uint16 +pkg syscall, type Rusage struct +pkg syscall, type Signal int +pkg syscall, type Sockaddr interface, unexported methods +pkg syscall, type SockaddrInet4 struct +pkg syscall, type SockaddrInet4 struct, Addr [4]uint8 +pkg syscall, type SockaddrInet4 struct, Port int +pkg syscall, type SockaddrInet6 struct +pkg syscall, type SockaddrInet6 struct, Addr [16]uint8 +pkg syscall, type SockaddrInet6 struct, Port int +pkg syscall, type SockaddrInet6 struct, ZoneId uint32 +pkg syscall, type SockaddrUnix struct +pkg syscall, type SockaddrUnix struct, Name string +pkg syscall, type SysProcAttr struct +pkg syscall, type Timespec struct +pkg syscall, type Timeval struct +pkg syscall, var ForkLock sync.RWMutex +pkg syscall, var SocketDisableIPv6 bool +pkg testing, func Benchmark(func(*B)) BenchmarkResult +pkg testing, func Main(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) +pkg testing, func RunBenchmarks(func(string, string) (bool, error), []InternalBenchmark) +pkg testing, func RunExamples(func(string, string) (bool, error), []InternalExample) bool +pkg testing, func RunTests(func(string, string) (bool, error), []InternalTest) bool +pkg testing, func Short() bool +pkg testing, method (*B) Error(...interface{}) +pkg testing, method (*B) Errorf(string, ...interface{}) +pkg testing, method (*B) Fail() +pkg testing, method (*B) FailNow() +pkg testing, method (*B) Failed() bool +pkg testing, method (*B) Fatal(...interface{}) +pkg testing, method (*B) Fatalf(string, ...interface{}) +pkg testing, method (*B) Log(...interface{}) +pkg testing, method (*B) Logf(string, ...interface{}) +pkg testing, method (*B) ResetTimer() +pkg testing, method (*B) SetBytes(int64) +pkg testing, method (*B) StartTimer() +pkg testing, method (*B) StopTimer() +pkg testing, method (*T) Error(...interface{}) +pkg testing, method (*T) Errorf(string, ...interface{}) +pkg testing, method (*T) Fail() +pkg testing, method (*T) FailNow() +pkg testing, method (*T) Failed() bool +pkg testing, method (*T) Fatal(...interface{}) +pkg testing, method (*T) Fatalf(string, ...interface{}) +pkg testing, method (*T) Log(...interface{}) +pkg testing, method (*T) Logf(string, ...interface{}) +pkg testing, method (*T) Parallel() +pkg testing, method (BenchmarkResult) NsPerOp() int64 +pkg testing, method (BenchmarkResult) String() string +pkg testing, type B struct +pkg testing, type B struct, N int +pkg testing, type BenchmarkResult struct +pkg testing, type BenchmarkResult struct, Bytes int64 +pkg testing, type BenchmarkResult struct, N int +pkg testing, type BenchmarkResult struct, T time.Duration +pkg testing, type InternalBenchmark struct +pkg testing, type InternalBenchmark struct, F func(*B) +pkg testing, type InternalBenchmark struct, Name string +pkg testing, type InternalExample struct +pkg testing, type InternalExample struct, F func() +pkg testing, type InternalExample struct, Name string +pkg testing, type InternalExample struct, Output string +pkg testing, type InternalTest struct +pkg testing, type InternalTest struct, F func(*T) +pkg testing, type InternalTest struct, Name string +pkg testing, type T struct +pkg testing/iotest, func DataErrReader(io.Reader) io.Reader +pkg testing/iotest, func HalfReader(io.Reader) io.Reader +pkg testing/iotest, func NewReadLogger(string, io.Reader) io.Reader +pkg testing/iotest, func NewWriteLogger(string, io.Writer) io.Writer +pkg testing/iotest, func OneByteReader(io.Reader) io.Reader +pkg testing/iotest, func TimeoutReader(io.Reader) io.Reader +pkg testing/iotest, func TruncateWriter(io.Writer, int64) io.Writer +pkg testing/iotest, var ErrTimeout error +pkg testing/quick, func Check(interface{}, *Config) error +pkg testing/quick, func CheckEqual(interface{}, interface{}, *Config) error +pkg testing/quick, func Value(reflect.Type, *rand.Rand) (reflect.Value, bool) +pkg testing/quick, method (*CheckEqualError) Error() string +pkg testing/quick, method (*CheckError) Error() string +pkg testing/quick, method (SetupError) Error() string +pkg testing/quick, type CheckEqualError struct +pkg testing/quick, type CheckEqualError struct, Out1 []interface{} +pkg testing/quick, type CheckEqualError struct, Out2 []interface{} +pkg testing/quick, type CheckEqualError struct, embedded CheckError +pkg testing/quick, type CheckError struct +pkg testing/quick, type CheckError struct, Count int +pkg testing/quick, type CheckError struct, In []interface{} +pkg testing/quick, type Config struct +pkg testing/quick, type Config struct, MaxCount int +pkg testing/quick, type Config struct, MaxCountScale float64 +pkg testing/quick, type Config struct, Rand *rand.Rand +pkg testing/quick, type Config struct, Values func([]reflect.Value, *rand.Rand) +pkg testing/quick, type Generator interface { Generate } +pkg testing/quick, type Generator interface, Generate(*rand.Rand, int) reflect.Value +pkg testing/quick, type SetupError string +pkg text/scanner, const Char ideal-int +pkg text/scanner, const Comment ideal-int +pkg text/scanner, const EOF ideal-int +pkg text/scanner, const Float ideal-int +pkg text/scanner, const GoTokens ideal-int +pkg text/scanner, const GoWhitespace ideal-int +pkg text/scanner, const Ident ideal-int +pkg text/scanner, const Int ideal-int +pkg text/scanner, const RawString ideal-int +pkg text/scanner, const ScanChars ideal-int +pkg text/scanner, const ScanComments ideal-int +pkg text/scanner, const ScanFloats ideal-int +pkg text/scanner, const ScanIdents ideal-int +pkg text/scanner, const ScanInts ideal-int +pkg text/scanner, const ScanRawStrings ideal-int +pkg text/scanner, const ScanStrings ideal-int +pkg text/scanner, const SkipComments ideal-int +pkg text/scanner, const String ideal-int +pkg text/scanner, func TokenString(int32) string +pkg text/scanner, method (*Position) IsValid() bool +pkg text/scanner, method (*Scanner) Init(io.Reader) *Scanner +pkg text/scanner, method (*Scanner) IsValid() bool +pkg text/scanner, method (*Scanner) Next() int32 +pkg text/scanner, method (*Scanner) Peek() int32 +pkg text/scanner, method (*Scanner) Pos() Position +pkg text/scanner, method (*Scanner) Scan() int32 +pkg text/scanner, method (*Scanner) TokenText() string +pkg text/scanner, method (Position) String() string +pkg text/scanner, method (Scanner) String() string +pkg text/scanner, type Position struct +pkg text/scanner, type Position struct, Column int +pkg text/scanner, type Position struct, Filename string +pkg text/scanner, type Position struct, Line int +pkg text/scanner, type Position struct, Offset int +pkg text/scanner, type Scanner struct +pkg text/scanner, type Scanner struct, Error func(*Scanner, string) +pkg text/scanner, type Scanner struct, ErrorCount int +pkg text/scanner, type Scanner struct, Mode uint +pkg text/scanner, type Scanner struct, Whitespace uint64 +pkg text/scanner, type Scanner struct, embedded Position +pkg text/tabwriter, const AlignRight uint +pkg text/tabwriter, const Debug uint +pkg text/tabwriter, const DiscardEmptyColumns uint +pkg text/tabwriter, const Escape ideal-char +pkg text/tabwriter, const FilterHTML uint +pkg text/tabwriter, const StripEscape uint +pkg text/tabwriter, const TabIndent uint +pkg text/tabwriter, func NewWriter(io.Writer, int, int, int, uint8, uint) *Writer +pkg text/tabwriter, method (*Writer) Flush() error +pkg text/tabwriter, method (*Writer) Init(io.Writer, int, int, int, uint8, uint) *Writer +pkg text/tabwriter, method (*Writer) Write([]uint8) (int, error) +pkg text/tabwriter, type Writer struct +pkg text/template, func HTMLEscape(io.Writer, []uint8) +pkg text/template, func HTMLEscapeString(string) string +pkg text/template, func HTMLEscaper(...interface{}) string +pkg text/template, func JSEscape(io.Writer, []uint8) +pkg text/template, func JSEscapeString(string) string +pkg text/template, func JSEscaper(...interface{}) string +pkg text/template, func Must(*Template, error) *Template +pkg text/template, func New(string) *Template +pkg text/template, func ParseFiles(...string) (*Template, error) +pkg text/template, func ParseGlob(string) (*Template, error) +pkg text/template, func URLQueryEscaper(...interface{}) string +pkg text/template, method (*Template) AddParseTree(string, *parse.Tree) (*Template, error) +pkg text/template, method (*Template) Clone() (*Template, error) +pkg text/template, method (*Template) Delims(string, string) *Template +pkg text/template, method (*Template) Execute(io.Writer, interface{}) error +pkg text/template, method (*Template) ExecuteTemplate(io.Writer, string, interface{}) error +pkg text/template, method (*Template) Funcs(FuncMap) *Template +pkg text/template, method (*Template) Lookup(string) *Template +pkg text/template, method (*Template) Name() string +pkg text/template, method (*Template) New(string) *Template +pkg text/template, method (*Template) Parse(string) (*Template, error) +pkg text/template, method (*Template) ParseFiles(...string) (*Template, error) +pkg text/template, method (*Template) ParseGlob(string) (*Template, error) +pkg text/template, method (*Template) Templates() []*Template +pkg text/template, type FuncMap map[string]interface{} +pkg text/template, type Template struct +pkg text/template, type Template struct, embedded *parse.Tree +pkg text/template/parse, const NodeAction NodeType +pkg text/template/parse, const NodeBool NodeType +pkg text/template/parse, const NodeCommand NodeType +pkg text/template/parse, const NodeDot NodeType +pkg text/template/parse, const NodeField NodeType +pkg text/template/parse, const NodeIdentifier NodeType +pkg text/template/parse, const NodeIf NodeType +pkg text/template/parse, const NodeList NodeType +pkg text/template/parse, const NodeNumber NodeType +pkg text/template/parse, const NodePipe NodeType +pkg text/template/parse, const NodeRange NodeType +pkg text/template/parse, const NodeString NodeType +pkg text/template/parse, const NodeTemplate NodeType +pkg text/template/parse, const NodeText NodeType +pkg text/template/parse, const NodeVariable NodeType +pkg text/template/parse, const NodeWith NodeType +pkg text/template/parse, func IsEmptyTree(Node) bool +pkg text/template/parse, func New(string, ...map[string]interface{}) *Tree +pkg text/template/parse, func NewIdentifier(string) *IdentifierNode +pkg text/template/parse, func Parse(string, string, string, string, ...map[string]interface{}) (map[string]*Tree, error) +pkg text/template/parse, method (*ActionNode) Copy() Node +pkg text/template/parse, method (*ActionNode) String() string +pkg text/template/parse, method (*BoolNode) Copy() Node +pkg text/template/parse, method (*BoolNode) String() string +pkg text/template/parse, method (*BranchNode) String() string +pkg text/template/parse, method (*CommandNode) Copy() Node +pkg text/template/parse, method (*CommandNode) String() string +pkg text/template/parse, method (*DotNode) Copy() Node +pkg text/template/parse, method (*DotNode) String() string +pkg text/template/parse, method (*DotNode) Type() NodeType +pkg text/template/parse, method (*FieldNode) Copy() Node +pkg text/template/parse, method (*FieldNode) String() string +pkg text/template/parse, method (*IdentifierNode) Copy() Node +pkg text/template/parse, method (*IdentifierNode) String() string +pkg text/template/parse, method (*IfNode) Copy() Node +pkg text/template/parse, method (*IfNode) String() string +pkg text/template/parse, method (*ListNode) Copy() Node +pkg text/template/parse, method (*ListNode) CopyList() *ListNode +pkg text/template/parse, method (*ListNode) String() string +pkg text/template/parse, method (*NumberNode) Copy() Node +pkg text/template/parse, method (*NumberNode) String() string +pkg text/template/parse, method (*PipeNode) Copy() Node +pkg text/template/parse, method (*PipeNode) CopyPipe() *PipeNode +pkg text/template/parse, method (*PipeNode) String() string +pkg text/template/parse, method (*RangeNode) Copy() Node +pkg text/template/parse, method (*RangeNode) String() string +pkg text/template/parse, method (*StringNode) Copy() Node +pkg text/template/parse, method (*StringNode) String() string +pkg text/template/parse, method (*TemplateNode) Copy() Node +pkg text/template/parse, method (*TemplateNode) String() string +pkg text/template/parse, method (*TextNode) Copy() Node +pkg text/template/parse, method (*TextNode) String() string +pkg text/template/parse, method (*Tree) Parse(string, string, string, map[string]*Tree, ...map[string]interface{}) (*Tree, error) +pkg text/template/parse, method (*VariableNode) Copy() Node +pkg text/template/parse, method (*VariableNode) String() string +pkg text/template/parse, method (*WithNode) Copy() Node +pkg text/template/parse, method (*WithNode) String() string +pkg text/template/parse, method (ActionNode) Type() NodeType +pkg text/template/parse, method (BoolNode) Type() NodeType +pkg text/template/parse, method (BranchNode) Type() NodeType +pkg text/template/parse, method (CommandNode) Type() NodeType +pkg text/template/parse, method (FieldNode) Type() NodeType +pkg text/template/parse, method (IdentifierNode) Type() NodeType +pkg text/template/parse, method (IfNode) Type() NodeType +pkg text/template/parse, method (ListNode) Type() NodeType +pkg text/template/parse, method (NodeType) Type() NodeType +pkg text/template/parse, method (NumberNode) Type() NodeType +pkg text/template/parse, method (PipeNode) Type() NodeType +pkg text/template/parse, method (RangeNode) Type() NodeType +pkg text/template/parse, method (StringNode) Type() NodeType +pkg text/template/parse, method (TemplateNode) Type() NodeType +pkg text/template/parse, method (TextNode) Type() NodeType +pkg text/template/parse, method (VariableNode) Type() NodeType +pkg text/template/parse, method (WithNode) Type() NodeType +pkg text/template/parse, type ActionNode struct +pkg text/template/parse, type ActionNode struct, Line int +pkg text/template/parse, type ActionNode struct, Pipe *PipeNode +pkg text/template/parse, type ActionNode struct, embedded NodeType +pkg text/template/parse, type BoolNode struct +pkg text/template/parse, type BoolNode struct, True bool +pkg text/template/parse, type BoolNode struct, embedded NodeType +pkg text/template/parse, type BranchNode struct +pkg text/template/parse, type BranchNode struct, ElseList *ListNode +pkg text/template/parse, type BranchNode struct, Line int +pkg text/template/parse, type BranchNode struct, List *ListNode +pkg text/template/parse, type BranchNode struct, Pipe *PipeNode +pkg text/template/parse, type BranchNode struct, embedded NodeType +pkg text/template/parse, type CommandNode struct +pkg text/template/parse, type CommandNode struct, Args []Node +pkg text/template/parse, type CommandNode struct, embedded NodeType +pkg text/template/parse, type DotNode bool +pkg text/template/parse, type FieldNode struct +pkg text/template/parse, type FieldNode struct, Ident []string +pkg text/template/parse, type FieldNode struct, embedded NodeType +pkg text/template/parse, type IdentifierNode struct +pkg text/template/parse, type IdentifierNode struct, Ident string +pkg text/template/parse, type IdentifierNode struct, embedded NodeType +pkg text/template/parse, type IfNode struct +pkg text/template/parse, type IfNode struct, embedded BranchNode +pkg text/template/parse, type ListNode struct +pkg text/template/parse, type ListNode struct, Nodes []Node +pkg text/template/parse, type ListNode struct, embedded NodeType +pkg text/template/parse, type Node interface { Copy, String, Type } +pkg text/template/parse, type Node interface, Copy() Node +pkg text/template/parse, type Node interface, String() string +pkg text/template/parse, type Node interface, Type() NodeType +pkg text/template/parse, type NodeType int +pkg text/template/parse, type NumberNode struct +pkg text/template/parse, type NumberNode struct, Complex128 complex128 +pkg text/template/parse, type NumberNode struct, Float64 float64 +pkg text/template/parse, type NumberNode struct, Int64 int64 +pkg text/template/parse, type NumberNode struct, IsComplex bool +pkg text/template/parse, type NumberNode struct, IsFloat bool +pkg text/template/parse, type NumberNode struct, IsInt bool +pkg text/template/parse, type NumberNode struct, IsUint bool +pkg text/template/parse, type NumberNode struct, Text string +pkg text/template/parse, type NumberNode struct, Uint64 uint64 +pkg text/template/parse, type NumberNode struct, embedded NodeType +pkg text/template/parse, type PipeNode struct +pkg text/template/parse, type PipeNode struct, Cmds []*CommandNode +pkg text/template/parse, type PipeNode struct, Decl []*VariableNode +pkg text/template/parse, type PipeNode struct, Line int +pkg text/template/parse, type PipeNode struct, embedded NodeType +pkg text/template/parse, type RangeNode struct +pkg text/template/parse, type RangeNode struct, embedded BranchNode +pkg text/template/parse, type StringNode struct +pkg text/template/parse, type StringNode struct, Quoted string +pkg text/template/parse, type StringNode struct, Text string +pkg text/template/parse, type StringNode struct, embedded NodeType +pkg text/template/parse, type TemplateNode struct +pkg text/template/parse, type TemplateNode struct, Line int +pkg text/template/parse, type TemplateNode struct, Name string +pkg text/template/parse, type TemplateNode struct, Pipe *PipeNode +pkg text/template/parse, type TemplateNode struct, embedded NodeType +pkg text/template/parse, type TextNode struct +pkg text/template/parse, type TextNode struct, Text []uint8 +pkg text/template/parse, type TextNode struct, embedded NodeType +pkg text/template/parse, type Tree struct +pkg text/template/parse, type Tree struct, Name string +pkg text/template/parse, type Tree struct, Root *ListNode +pkg text/template/parse, type VariableNode struct +pkg text/template/parse, type VariableNode struct, Ident []string +pkg text/template/parse, type VariableNode struct, embedded NodeType +pkg text/template/parse, type WithNode struct +pkg text/template/parse, type WithNode struct, embedded BranchNode +pkg time, const ANSIC ideal-string +pkg time, const April Month +pkg time, const August Month +pkg time, const December Month +pkg time, const February Month +pkg time, const Friday Weekday +pkg time, const Hour Duration +pkg time, const January Month +pkg time, const July Month +pkg time, const June Month +pkg time, const Kitchen ideal-string +pkg time, const March Month +pkg time, const May Month +pkg time, const Microsecond Duration +pkg time, const Millisecond Duration +pkg time, const Minute Duration +pkg time, const Monday Weekday +pkg time, const Nanosecond Duration +pkg time, const November Month +pkg time, const October Month +pkg time, const RFC1123 ideal-string +pkg time, const RFC1123Z ideal-string +pkg time, const RFC3339 ideal-string +pkg time, const RFC3339Nano ideal-string +pkg time, const RFC822 ideal-string +pkg time, const RFC822Z ideal-string +pkg time, const RFC850 ideal-string +pkg time, const RubyDate ideal-string +pkg time, const Saturday Weekday +pkg time, const Second Duration +pkg time, const September Month +pkg time, const Stamp ideal-string +pkg time, const StampMicro ideal-string +pkg time, const StampMilli ideal-string +pkg time, const StampNano ideal-string +pkg time, const Sunday Weekday +pkg time, const Thursday Weekday +pkg time, const Tuesday Weekday +pkg time, const UnixDate ideal-string +pkg time, const Wednesday Weekday +pkg time, func After(Duration) <-chan Time +pkg time, func AfterFunc(Duration, func()) *Timer +pkg time, func Date(int, Month, int, int, int, int, int, *Location) Time +pkg time, func FixedZone(string, int) *Location +pkg time, func LoadLocation(string) (*Location, error) +pkg time, func NewTicker(Duration) *Ticker +pkg time, func NewTimer(Duration) *Timer +pkg time, func Now() Time +pkg time, func Parse(string, string) (Time, error) +pkg time, func ParseDuration(string) (Duration, error) +pkg time, func Since(Time) Duration +pkg time, func Sleep(Duration) +pkg time, func Tick(Duration) <-chan Time +pkg time, func Unix(int64, int64) Time +pkg time, method (*Location) String() string +pkg time, method (*ParseError) Error() string +pkg time, method (*Ticker) Stop() +pkg time, method (*Time) GobDecode([]uint8) error +pkg time, method (*Time) UnmarshalJSON([]uint8) error +pkg time, method (*Timer) Stop() bool +pkg time, method (Duration) Hours() float64 +pkg time, method (Duration) Minutes() float64 +pkg time, method (Duration) Nanoseconds() int64 +pkg time, method (Duration) Seconds() float64 +pkg time, method (Duration) String() string +pkg time, method (Month) String() string +pkg time, method (Time) Add(Duration) Time +pkg time, method (Time) AddDate(int, int, int) Time +pkg time, method (Time) After(Time) bool +pkg time, method (Time) Before(Time) bool +pkg time, method (Time) Clock() (int, int, int) +pkg time, method (Time) Date() (int, Month, int) +pkg time, method (Time) Day() int +pkg time, method (Time) Equal(Time) bool +pkg time, method (Time) Format(string) string +pkg time, method (Time) GobEncode() ([]uint8, error) +pkg time, method (Time) Hour() int +pkg time, method (Time) ISOWeek() (int, int) +pkg time, method (Time) In(*Location) Time +pkg time, method (Time) IsZero() bool +pkg time, method (Time) Local() Time +pkg time, method (Time) Location() *Location +pkg time, method (Time) MarshalJSON() ([]uint8, error) +pkg time, method (Time) Minute() int +pkg time, method (Time) Month() Month +pkg time, method (Time) Nanosecond() int +pkg time, method (Time) Second() int +pkg time, method (Time) String() string +pkg time, method (Time) Sub(Time) Duration +pkg time, method (Time) UTC() Time +pkg time, method (Time) Unix() int64 +pkg time, method (Time) UnixNano() int64 +pkg time, method (Time) Weekday() Weekday +pkg time, method (Time) Year() int +pkg time, method (Time) Zone() (string, int) +pkg time, method (Weekday) String() string +pkg time, type Duration int64 +pkg time, type Location struct +pkg time, type Month int +pkg time, type ParseError struct +pkg time, type ParseError struct, Layout string +pkg time, type ParseError struct, LayoutElem string +pkg time, type ParseError struct, Message string +pkg time, type ParseError struct, Value string +pkg time, type ParseError struct, ValueElem string +pkg time, type Ticker struct +pkg time, type Ticker struct, C <-chan Time +pkg time, type Time struct +pkg time, type Timer struct +pkg time, type Timer struct, C <-chan Time +pkg time, type Weekday int +pkg time, var Local *Location +pkg time, var UTC *Location +pkg unicode, const LowerCase ideal-int +pkg unicode, const MaxASCII ideal-char +pkg unicode, const MaxCase ideal-int +pkg unicode, const MaxLatin1 ideal-char +pkg unicode, const MaxRune ideal-char +pkg unicode, const ReplacementChar ideal-char +pkg unicode, const TitleCase ideal-int +pkg unicode, const UpperCase ideal-int +pkg unicode, const UpperLower ideal-char +pkg unicode, const Version ideal-string +pkg unicode, func Is(*RangeTable, int32) bool +pkg unicode, func IsControl(int32) bool +pkg unicode, func IsDigit(int32) bool +pkg unicode, func IsGraphic(int32) bool +pkg unicode, func IsLetter(int32) bool +pkg unicode, func IsLower(int32) bool +pkg unicode, func IsMark(int32) bool +pkg unicode, func IsNumber(int32) bool +pkg unicode, func IsOneOf([]*RangeTable, int32) bool +pkg unicode, func IsPrint(int32) bool +pkg unicode, func IsPunct(int32) bool +pkg unicode, func IsSpace(int32) bool +pkg unicode, func IsSymbol(int32) bool +pkg unicode, func IsTitle(int32) bool +pkg unicode, func IsUpper(int32) bool +pkg unicode, func SimpleFold(int32) int32 +pkg unicode, func To(int, int32) int32 +pkg unicode, func ToLower(int32) int32 +pkg unicode, func ToTitle(int32) int32 +pkg unicode, func ToUpper(int32) int32 +pkg unicode, method (SpecialCase) ToLower(int32) int32 +pkg unicode, method (SpecialCase) ToTitle(int32) int32 +pkg unicode, method (SpecialCase) ToUpper(int32) int32 +pkg unicode, type CaseRange struct +pkg unicode, type CaseRange struct, Delta d +pkg unicode, type CaseRange struct, Hi uint32 +pkg unicode, type CaseRange struct, Lo uint32 +pkg unicode, type Range16 struct +pkg unicode, type Range16 struct, Hi uint16 +pkg unicode, type Range16 struct, Lo uint16 +pkg unicode, type Range16 struct, Stride uint16 +pkg unicode, type Range32 struct +pkg unicode, type Range32 struct, Hi uint32 +pkg unicode, type Range32 struct, Lo uint32 +pkg unicode, type Range32 struct, Stride uint32 +pkg unicode, type RangeTable struct +pkg unicode, type RangeTable struct, R16 []Range16 +pkg unicode, type RangeTable struct, R32 []Range32 +pkg unicode, type SpecialCase []CaseRange +pkg unicode, var ASCII_Hex_Digit *RangeTable +pkg unicode, var Arabic *RangeTable +pkg unicode, var Armenian *RangeTable +pkg unicode, var Avestan *RangeTable +pkg unicode, var AzeriCase SpecialCase +pkg unicode, var Balinese *RangeTable +pkg unicode, var Bamum *RangeTable +pkg unicode, var Batak *RangeTable +pkg unicode, var Bengali *RangeTable +pkg unicode, var Bidi_Control *RangeTable +pkg unicode, var Bopomofo *RangeTable +pkg unicode, var Brahmi *RangeTable +pkg unicode, var Braille *RangeTable +pkg unicode, var Buginese *RangeTable +pkg unicode, var Buhid *RangeTable +pkg unicode, var C *RangeTable +pkg unicode, var Canadian_Aboriginal *RangeTable +pkg unicode, var Carian *RangeTable +pkg unicode, var CaseRanges []CaseRange +pkg unicode, var Categories map[string]*RangeTable +pkg unicode, var Cc *RangeTable +pkg unicode, var Cf *RangeTable +pkg unicode, var Cham *RangeTable +pkg unicode, var Cherokee *RangeTable +pkg unicode, var Co *RangeTable +pkg unicode, var Common *RangeTable +pkg unicode, var Coptic *RangeTable +pkg unicode, var Cs *RangeTable +pkg unicode, var Cuneiform *RangeTable +pkg unicode, var Cypriot *RangeTable +pkg unicode, var Cyrillic *RangeTable +pkg unicode, var Dash *RangeTable +pkg unicode, var Deprecated *RangeTable +pkg unicode, var Deseret *RangeTable +pkg unicode, var Devanagari *RangeTable +pkg unicode, var Diacritic *RangeTable +pkg unicode, var Digit *RangeTable +pkg unicode, var Egyptian_Hieroglyphs *RangeTable +pkg unicode, var Ethiopic *RangeTable +pkg unicode, var Extender *RangeTable +pkg unicode, var FoldCategory map[string]*RangeTable +pkg unicode, var FoldScript map[string]*RangeTable +pkg unicode, var Georgian *RangeTable +pkg unicode, var Glagolitic *RangeTable +pkg unicode, var Gothic *RangeTable +pkg unicode, var GraphicRanges []*RangeTable +pkg unicode, var Greek *RangeTable +pkg unicode, var Gujarati *RangeTable +pkg unicode, var Gurmukhi *RangeTable +pkg unicode, var Han *RangeTable +pkg unicode, var Hangul *RangeTable +pkg unicode, var Hanunoo *RangeTable +pkg unicode, var Hebrew *RangeTable +pkg unicode, var Hex_Digit *RangeTable +pkg unicode, var Hiragana *RangeTable +pkg unicode, var Hyphen *RangeTable +pkg unicode, var IDS_Binary_Operator *RangeTable +pkg unicode, var IDS_Trinary_Operator *RangeTable +pkg unicode, var Ideographic *RangeTable +pkg unicode, var Imperial_Aramaic *RangeTable +pkg unicode, var Inherited *RangeTable +pkg unicode, var Inscriptional_Pahlavi *RangeTable +pkg unicode, var Inscriptional_Parthian *RangeTable +pkg unicode, var Javanese *RangeTable +pkg unicode, var Join_Control *RangeTable +pkg unicode, var Kaithi *RangeTable +pkg unicode, var Kannada *RangeTable +pkg unicode, var Katakana *RangeTable +pkg unicode, var Kayah_Li *RangeTable +pkg unicode, var Kharoshthi *RangeTable +pkg unicode, var Khmer *RangeTable +pkg unicode, var L *RangeTable +pkg unicode, var Lao *RangeTable +pkg unicode, var Latin *RangeTable +pkg unicode, var Lepcha *RangeTable +pkg unicode, var Letter *RangeTable +pkg unicode, var Limbu *RangeTable +pkg unicode, var Linear_B *RangeTable +pkg unicode, var Lisu *RangeTable +pkg unicode, var Ll *RangeTable +pkg unicode, var Lm *RangeTable +pkg unicode, var Lo *RangeTable +pkg unicode, var Logical_Order_Exception *RangeTable +pkg unicode, var Lower *RangeTable +pkg unicode, var Lt *RangeTable +pkg unicode, var Lu *RangeTable +pkg unicode, var Lycian *RangeTable +pkg unicode, var Lydian *RangeTable +pkg unicode, var M *RangeTable +pkg unicode, var Malayalam *RangeTable +pkg unicode, var Mandaic *RangeTable +pkg unicode, var Mark *RangeTable +pkg unicode, var Mc *RangeTable +pkg unicode, var Me *RangeTable +pkg unicode, var Meetei_Mayek *RangeTable +pkg unicode, var Mn *RangeTable +pkg unicode, var Mongolian *RangeTable +pkg unicode, var Myanmar *RangeTable +pkg unicode, var N *RangeTable +pkg unicode, var Nd *RangeTable +pkg unicode, var New_Tai_Lue *RangeTable +pkg unicode, var Nko *RangeTable +pkg unicode, var Nl *RangeTable +pkg unicode, var No *RangeTable +pkg unicode, var Noncharacter_Code_Point *RangeTable +pkg unicode, var Number *RangeTable +pkg unicode, var Ogham *RangeTable +pkg unicode, var Ol_Chiki *RangeTable +pkg unicode, var Old_Italic *RangeTable +pkg unicode, var Old_Persian *RangeTable +pkg unicode, var Old_South_Arabian *RangeTable +pkg unicode, var Old_Turkic *RangeTable +pkg unicode, var Oriya *RangeTable +pkg unicode, var Osmanya *RangeTable +pkg unicode, var Other *RangeTable +pkg unicode, var Other_Alphabetic *RangeTable +pkg unicode, var Other_Default_Ignorable_Code_Point *RangeTable +pkg unicode, var Other_Grapheme_Extend *RangeTable +pkg unicode, var Other_ID_Continue *RangeTable +pkg unicode, var Other_ID_Start *RangeTable +pkg unicode, var Other_Lowercase *RangeTable +pkg unicode, var Other_Math *RangeTable +pkg unicode, var Other_Uppercase *RangeTable +pkg unicode, var P *RangeTable +pkg unicode, var Pattern_Syntax *RangeTable +pkg unicode, var Pattern_White_Space *RangeTable +pkg unicode, var Pc *RangeTable +pkg unicode, var Pd *RangeTable +pkg unicode, var Pe *RangeTable +pkg unicode, var Pf *RangeTable +pkg unicode, var Phags_Pa *RangeTable +pkg unicode, var Phoenician *RangeTable +pkg unicode, var Pi *RangeTable +pkg unicode, var Po *RangeTable +pkg unicode, var PrintRanges []*RangeTable +pkg unicode, var Properties map[string]*RangeTable +pkg unicode, var Ps *RangeTable +pkg unicode, var Punct *RangeTable +pkg unicode, var Quotation_Mark *RangeTable +pkg unicode, var Radical *RangeTable +pkg unicode, var Rejang *RangeTable +pkg unicode, var Runic *RangeTable +pkg unicode, var S *RangeTable +pkg unicode, var STerm *RangeTable +pkg unicode, var Samaritan *RangeTable +pkg unicode, var Saurashtra *RangeTable +pkg unicode, var Sc *RangeTable +pkg unicode, var Scripts map[string]*RangeTable +pkg unicode, var Shavian *RangeTable +pkg unicode, var Sinhala *RangeTable +pkg unicode, var Sk *RangeTable +pkg unicode, var Sm *RangeTable +pkg unicode, var So *RangeTable +pkg unicode, var Soft_Dotted *RangeTable +pkg unicode, var Space *RangeTable +pkg unicode, var Sundanese *RangeTable +pkg unicode, var Syloti_Nagri *RangeTable +pkg unicode, var Symbol *RangeTable +pkg unicode, var Syriac *RangeTable +pkg unicode, var Tagalog *RangeTable +pkg unicode, var Tagbanwa *RangeTable +pkg unicode, var Tai_Le *RangeTable +pkg unicode, var Tai_Tham *RangeTable +pkg unicode, var Tai_Viet *RangeTable +pkg unicode, var Tamil *RangeTable +pkg unicode, var Telugu *RangeTable +pkg unicode, var Terminal_Punctuation *RangeTable +pkg unicode, var Thaana *RangeTable +pkg unicode, var Thai *RangeTable +pkg unicode, var Tibetan *RangeTable +pkg unicode, var Tifinagh *RangeTable +pkg unicode, var Title *RangeTable +pkg unicode, var TurkishCase SpecialCase +pkg unicode, var Ugaritic *RangeTable +pkg unicode, var Unified_Ideograph *RangeTable +pkg unicode, var Upper *RangeTable +pkg unicode, var Vai *RangeTable +pkg unicode, var Variation_Selector *RangeTable +pkg unicode, var White_Space *RangeTable +pkg unicode, var Yi *RangeTable +pkg unicode, var Z *RangeTable +pkg unicode, var Zl *RangeTable +pkg unicode, var Zp *RangeTable +pkg unicode, var Zs *RangeTable +pkg unicode/utf16, func Decode([]uint16) []int32 +pkg unicode/utf16, func DecodeRune(int32, int32) int32 +pkg unicode/utf16, func Encode([]int32) []uint16 +pkg unicode/utf16, func EncodeRune(int32) (int32, int32) +pkg unicode/utf16, func IsSurrogate(int32) bool +pkg unicode/utf8, const MaxRune ideal-char +pkg unicode/utf8, const RuneError ideal-char +pkg unicode/utf8, const RuneSelf ideal-int +pkg unicode/utf8, const UTFMax ideal-int +pkg unicode/utf8, func DecodeLastRune([]uint8) (int32, int) +pkg unicode/utf8, func DecodeLastRuneInString(string) (int32, int) +pkg unicode/utf8, func DecodeRune([]uint8) (int32, int) +pkg unicode/utf8, func DecodeRuneInString(string) (int32, int) +pkg unicode/utf8, func EncodeRune([]uint8, int32) int +pkg unicode/utf8, func FullRune([]uint8) bool +pkg unicode/utf8, func FullRuneInString(string) bool +pkg unicode/utf8, func RuneCount([]uint8) int +pkg unicode/utf8, func RuneCountInString(string) int +pkg unicode/utf8, func RuneLen(int32) int +pkg unicode/utf8, func RuneStart(uint8) bool +pkg unicode/utf8, func Valid([]uint8) bool +pkg unicode/utf8, func ValidString(string) bool diff --git a/platform/dbops/binaries/go/go/bin/go b/platform/dbops/binaries/go/go/bin/go new file mode 100644 index 0000000000000000000000000000000000000000..5117197544705e89f5c0d7c7faca2f2513b7c9f6 --- /dev/null +++ b/platform/dbops/binaries/go/go/bin/go @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4565f55b45b9c06b8f0b12c26d48edf0e0e62906991b3ee0e5a75fc81d0c116d +size 12684651 diff --git a/platform/dbops/binaries/go/go/bin/gofmt b/platform/dbops/binaries/go/go/bin/gofmt new file mode 100644 index 0000000000000000000000000000000000000000..978985dbf7381f868c1a8b80b2ab300fa3ed2597 --- /dev/null +++ b/platform/dbops/binaries/go/go/bin/gofmt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44c2d06ed2ff6e0cc0246009c53d10f8f17795833b17b95627cd20363834396 +size 2614924 diff --git a/platform/dbops/binaries/go/go/codereview.cfg b/platform/dbops/binaries/go/go/codereview.cfg new file mode 100644 index 0000000000000000000000000000000000000000..718a5fe52ba04bc3eafd27a3d7a680acd0859632 --- /dev/null +++ b/platform/dbops/binaries/go/go/codereview.cfg @@ -0,0 +1,2 @@ +branch: release-branch.go1.22 +parent-branch: master diff --git a/platform/dbops/binaries/go/go/doc/asm.html b/platform/dbops/binaries/go/go/doc/asm.html new file mode 100644 index 0000000000000000000000000000000000000000..dd395ec8331467cd237355b280b92b687ee8c8da --- /dev/null +++ b/platform/dbops/binaries/go/go/doc/asm.html @@ -0,0 +1,1073 @@ + + +

A Quick Guide to Go's Assembler

+ +

+This document is a quick outline of the unusual form of assembly language used by the gc Go compiler. +The document is not comprehensive. +

+ +

+The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail +elsewhere. +If you plan to write assembly language, you should read that document although much of it is Plan 9-specific. +The current document provides a summary of the syntax and the differences with +what is explained in that document, and +describes the peculiarities that apply when writing assembly code to interact with Go. +

+ +

+The most important thing to know about Go's assembler is that it is not a direct representation of the underlying machine. +Some of the details map precisely to the machine, but some do not. +This is because the compiler suite (see +this description) +needs no assembler pass in the usual pipeline. +Instead, the compiler operates on a kind of semi-abstract instruction set, +and instruction selection occurs partly after code generation. +The assembler works on the semi-abstract form, so +when you see an instruction like MOV +what the toolchain actually generates for that operation might +not be a move instruction at all, perhaps a clear or load. +Or it might correspond exactly to the machine instruction with that name. +In general, machine-specific operations tend to appear as themselves, while more general concepts like +memory move and subroutine call and return are more abstract. +The details vary with architecture, and we apologize for the imprecision; the situation is not well-defined. +

+ +

+The assembler program is a way to parse a description of that +semi-abstract instruction set and turn it into instructions to be +input to the linker. +If you want to see what the instructions look like in assembly for a given architecture, say amd64, there +are many examples in the sources of the standard library, in packages such as +runtime and +math/big. +You can also examine what the compiler emits as assembly code +(the actual output may differ from what you see here): +

+ +
+$ cat x.go
+package main
+
+func main() {
+	println(3)
+}
+$ GOOS=linux GOARCH=amd64 go tool compile -S x.go        # or: go build -gcflags -S x.go
+"".main STEXT size=74 args=0x0 locals=0x10
+	0x0000 00000 (x.go:3)	TEXT	"".main(SB), $16-0
+	0x0000 00000 (x.go:3)	MOVQ	(TLS), CX
+	0x0009 00009 (x.go:3)	CMPQ	SP, 16(CX)
+	0x000d 00013 (x.go:3)	JLS	67
+	0x000f 00015 (x.go:3)	SUBQ	$16, SP
+	0x0013 00019 (x.go:3)	MOVQ	BP, 8(SP)
+	0x0018 00024 (x.go:3)	LEAQ	8(SP), BP
+	0x001d 00029 (x.go:3)	FUNCDATA	$0, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
+	0x001d 00029 (x.go:3)	FUNCDATA	$1, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
+	0x001d 00029 (x.go:3)	FUNCDATA	$2, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
+	0x001d 00029 (x.go:4)	PCDATA	$0, $0
+	0x001d 00029 (x.go:4)	PCDATA	$1, $0
+	0x001d 00029 (x.go:4)	CALL	runtime.printlock(SB)
+	0x0022 00034 (x.go:4)	MOVQ	$3, (SP)
+	0x002a 00042 (x.go:4)	CALL	runtime.printint(SB)
+	0x002f 00047 (x.go:4)	CALL	runtime.printnl(SB)
+	0x0034 00052 (x.go:4)	CALL	runtime.printunlock(SB)
+	0x0039 00057 (x.go:5)	MOVQ	8(SP), BP
+	0x003e 00062 (x.go:5)	ADDQ	$16, SP
+	0x0042 00066 (x.go:5)	RET
+	0x0043 00067 (x.go:5)	NOP
+	0x0043 00067 (x.go:3)	PCDATA	$1, $-1
+	0x0043 00067 (x.go:3)	PCDATA	$0, $-1
+	0x0043 00067 (x.go:3)	CALL	runtime.morestack_noctxt(SB)
+	0x0048 00072 (x.go:3)	JMP	0
+...
+
+ +

+The FUNCDATA and PCDATA directives contain information +for use by the garbage collector; they are introduced by the compiler. +

+ +

+To see what gets put in the binary after linking, use go tool objdump: +

+ +
+$ go build -o x.exe x.go
+$ go tool objdump -s main.main x.exe
+TEXT main.main(SB) /tmp/x.go
+  x.go:3		0x10501c0		65488b0c2530000000	MOVQ GS:0x30, CX
+  x.go:3		0x10501c9		483b6110		CMPQ 0x10(CX), SP
+  x.go:3		0x10501cd		7634			JBE 0x1050203
+  x.go:3		0x10501cf		4883ec10		SUBQ $0x10, SP
+  x.go:3		0x10501d3		48896c2408		MOVQ BP, 0x8(SP)
+  x.go:3		0x10501d8		488d6c2408		LEAQ 0x8(SP), BP
+  x.go:4		0x10501dd		e86e45fdff		CALL runtime.printlock(SB)
+  x.go:4		0x10501e2		48c7042403000000	MOVQ $0x3, 0(SP)
+  x.go:4		0x10501ea		e8e14cfdff		CALL runtime.printint(SB)
+  x.go:4		0x10501ef		e8ec47fdff		CALL runtime.printnl(SB)
+  x.go:4		0x10501f4		e8d745fdff		CALL runtime.printunlock(SB)
+  x.go:5		0x10501f9		488b6c2408		MOVQ 0x8(SP), BP
+  x.go:5		0x10501fe		4883c410		ADDQ $0x10, SP
+  x.go:5		0x1050202		c3			RET
+  x.go:3		0x1050203		e83882ffff		CALL runtime.morestack_noctxt(SB)
+  x.go:3		0x1050208		ebb6			JMP main.main(SB)
+
+ +

Constants

+ +

+Although the assembler takes its guidance from the Plan 9 assemblers, +it is a distinct program, so there are some differences. +One is in constant evaluation. +Constant expressions in the assembler are parsed using Go's operator +precedence, not the C-like precedence of the original. +Thus 3&1<<2 is 4, not 0—it parses as (3&1)<<2 +not 3&(1<<2). +Also, constants are always evaluated as 64-bit unsigned integers. +Thus -2 is not the integer value minus two, +but the unsigned 64-bit integer with the same bit pattern. +The distinction rarely matters but +to avoid ambiguity, division or right shift where the right operand's +high bit is set is rejected. +

+ +

Symbols

+ +

+Some symbols, such as R1 or LR, +are predefined and refer to registers. +The exact set depends on the architecture. +

+ +

+There are four predeclared symbols that refer to pseudo-registers. +These are not real registers, but rather virtual registers maintained by +the toolchain, such as a frame pointer. +The set of pseudo-registers is the same for all architectures: +

+ +
    + +
  • +FP: Frame pointer: arguments and locals. +
  • + +
  • +PC: Program counter: +jumps and branches. +
  • + +
  • +SB: Static base pointer: global symbols. +
  • + +
  • +SP: Stack pointer: the highest address within the local stack frame. +
  • + +
+ +

+All user-defined symbols are written as offsets to the pseudo-registers +FP (arguments and locals) and SB (globals). +

+ +

+The SB pseudo-register can be thought of as the origin of memory, so the symbol foo(SB) +is the name foo as an address in memory. +This form is used to name global functions and data. +Adding <> to the name, as in foo<>(SB), makes the name +visible only in the current source file, like a top-level static declaration in a C file. +Adding an offset to the name refers to that offset from the symbol's address, so +foo+4(SB) is four bytes past the start of foo. +

+ +

+The FP pseudo-register is a virtual frame pointer +used to refer to function arguments. +The compilers maintain a virtual frame pointer and refer to the arguments on the stack as offsets from that pseudo-register. +Thus 0(FP) is the first argument to the function, +8(FP) is the second (on a 64-bit machine), and so on. +However, when referring to a function argument this way, it is necessary to place a name +at the beginning, as in first_arg+0(FP) and second_arg+8(FP). +(The meaning of the offset—offset from the frame pointer—distinct +from its use with SB, where it is an offset from the symbol.) +The assembler enforces this convention, rejecting plain 0(FP) and 8(FP). +The actual name is semantically irrelevant but should be used to document +the argument's name. +It is worth stressing that FP is always a +pseudo-register, not a hardware +register, even on architectures with a hardware frame pointer. +

+ +

+For assembly functions with Go prototypes, go vet will check that the argument names +and offsets match. +On 32-bit systems, the low and high 32 bits of a 64-bit value are distinguished by adding +a _lo or _hi suffix to the name, as in arg_lo+0(FP) or arg_hi+4(FP). +If a Go prototype does not name its result, the expected assembly name is ret. +

+ +

+The SP pseudo-register is a virtual stack pointer +used to refer to frame-local variables and the arguments being +prepared for function calls. +It points to the highest address within the local stack frame, so references should use negative offsets +in the range [−framesize, 0): +x-8(SP), y-4(SP), and so on. +

+ +

+On architectures with a hardware register named SP, +the name prefix distinguishes +references to the virtual stack pointer from references to the architectural +SP register. +That is, x-8(SP) and -8(SP) +are different memory locations: +the first refers to the virtual stack pointer pseudo-register, +while the second refers to the +hardware's SP register. +

+ +

+On machines where SP and PC are +traditionally aliases for a physical, numbered register, +in the Go assembler the names SP and PC +are still treated specially; +for instance, references to SP require a symbol, +much like FP. +To access the actual hardware register use the true R name. +For example, on the ARM architecture the hardware +SP and PC are accessible as +R13 and R15. +

+ +

+Branches and direct jumps are always written as offsets to the PC, or as +jumps to labels: +

+ +
+label:
+	MOVW $0, R1
+	JMP label
+
+ +

+Each label is visible only within the function in which it is defined. +It is therefore permitted for multiple functions in a file to define +and use the same label names. +Direct jumps and call instructions can target text symbols, +such as name(SB), but not offsets from symbols, +such as name+4(SB). +

+ +

+Instructions, registers, and assembler directives are always in UPPER CASE to remind you +that assembly programming is a fraught endeavor. +(Exception: the g register renaming on ARM.) +

+ +

+In Go object files and binaries, the full name of a symbol is the +package path followed by a period and the symbol name: +fmt.Printf or math/rand.Int. +Because the assembler's parser treats period and slash as punctuation, +those strings cannot be used directly as identifier names. +Instead, the assembler allows the middle dot character U+00B7 +and the division slash U+2215 in identifiers and rewrites them to +plain period and slash. +Within an assembler source file, the symbols above are written as +fmt·Printf and math∕rand·Int. +The assembly listings generated by the compilers when using the -S flag +show the period and slash directly instead of the Unicode replacements +required by the assemblers. +

+ +

+Most hand-written assembly files do not include the full package path +in symbol names, because the linker inserts the package path of the current +object file at the beginning of any name starting with a period: +in an assembly source file within the math/rand package implementation, +the package's Int function can be referred to as ·Int. +This convention avoids the need to hard-code a package's import path in its +own source code, making it easier to move the code from one location to another. +

+ +

Directives

+ +

+The assembler uses various directives to bind text and data to symbol names. +For example, here is a simple complete function definition. The TEXT +directive declares the symbol runtime·profileloop and the instructions +that follow form the body of the function. +The last instruction in a TEXT block must be some sort of jump, usually a RET (pseudo-)instruction. +(If it's not, the linker will append a jump-to-itself instruction; there is no fallthrough in TEXTs.) +After the symbol, the arguments are flags (see below) +and the frame size, a constant (but see below): +

+ +
+TEXT runtime·profileloop(SB),NOSPLIT,$8
+	MOVQ	$runtime·profileloop1(SB), CX
+	MOVQ	CX, 0(SP)
+	CALL	runtime·externalthreadhandler(SB)
+	RET
+
+ +

+In the general case, the frame size is followed by an argument size, separated by a minus sign. +(It's not a subtraction, just idiosyncratic syntax.) +The frame size $24-8 states that the function has a 24-byte frame +and is called with 8 bytes of argument, which live on the caller's frame. +If NOSPLIT is not specified for the TEXT, +the argument size must be provided. +For assembly functions with Go prototypes, go vet will check that the +argument size is correct. +

+ +

+Note that the symbol name uses a middle dot to separate the components and is specified as an offset from the +static base pseudo-register SB. +This function would be called from Go source for package runtime using the +simple name profileloop. +

+ +

+Global data symbols are defined by a sequence of initializing +DATA directives followed by a GLOBL directive. +Each DATA directive initializes a section of the +corresponding memory. +The memory not explicitly initialized is zeroed. +The general form of the DATA directive is + +

+DATA	symbol+offset(SB)/width, value
+
+ +

+which initializes the symbol memory at the given offset and width with the given value. +The DATA directives for a given symbol must be written with increasing offsets. +

+ +

+The GLOBL directive declares a symbol to be global. +The arguments are optional flags and the size of the data being declared as a global, +which will have initial value all zeros unless a DATA directive +has initialized it. +The GLOBL directive must follow any corresponding DATA directives. +

+ +

+For example, +

+ +
+DATA divtab<>+0x00(SB)/4, $0xf4f8fcff
+DATA divtab<>+0x04(SB)/4, $0xe6eaedf0
+...
+DATA divtab<>+0x3c(SB)/4, $0x81828384
+GLOBL divtab<>(SB), RODATA, $64
+
+GLOBL runtime·tlsoffset(SB), NOPTR, $4
+
+ +

+declares and initializes divtab<>, a read-only 64-byte table of 4-byte integer values, +and declares runtime·tlsoffset, a 4-byte, implicitly zeroed variable that +contains no pointers. +

+ +

+There may be one or two arguments to the directives. +If there are two, the first is a bit mask of flags, +which can be written as numeric expressions, added or or-ed together, +or can be set symbolically for easier absorption by a human. +Their values, defined in the standard #include file textflag.h, are: +

+ +
    +
  • +NOPROF = 1 +
    +(For TEXT items.) +Don't profile the marked function. This flag is deprecated. +
  • +
  • +DUPOK = 2 +
    +It is legal to have multiple instances of this symbol in a single binary. +The linker will choose one of the duplicates to use. +
  • +
  • +NOSPLIT = 4 +
    +(For TEXT items.) +Don't insert the preamble to check if the stack must be split. +The frame for the routine, plus anything it calls, must fit in the +spare space remaining in the current stack segment. +Used to protect routines such as the stack splitting code itself. +
  • +
  • +RODATA = 8 +
    +(For DATA and GLOBL items.) +Put this data in a read-only section. +
  • +
  • +NOPTR = 16 +
    +(For DATA and GLOBL items.) +This data contains no pointers and therefore does not need to be +scanned by the garbage collector. +
  • +
  • +WRAPPER = 32 +
    +(For TEXT items.) +This is a wrapper function and should not count as disabling recover. +
  • +
  • +NEEDCTXT = 64 +
    +(For TEXT items.) +This function is a closure so it uses its incoming context register. +
  • +
  • +LOCAL = 128 +
    +This symbol is local to the dynamic shared object. +
  • +
  • +TLSBSS = 256 +
    +(For DATA and GLOBL items.) +Put this data in thread local storage. +
  • +
  • +NOFRAME = 512 +
    +(For TEXT items.) +Do not insert instructions to allocate a stack frame and save/restore the return +address, even if this is not a leaf function. +Only valid on functions that declare a frame size of 0. +
  • +
  • +TOPFRAME = 2048 +
    +(For TEXT items.) +Function is the outermost frame of the call stack. Traceback should stop at this function. +
  • +
+ +

Special instructions

+ +

+The PCALIGN pseudo-instruction is used to indicate that the next instruction should be aligned +to a specified boundary by padding with no-op instructions. +

+ +

+It is currently supported on arm64, amd64, ppc64, loong64 and riscv64. + +For example, the start of the MOVD instruction below is aligned to 32 bytes: +

+PCALIGN $32
+MOVD $2, R0
+
+

+ +

Interacting with Go types and constants

+ +

+If a package has any .s files, then go build will direct +the compiler to emit a special header called go_asm.h, +which the .s files can then #include. +The file contains symbolic #define constants for the +offsets of Go struct fields, the sizes of Go struct types, and most +Go const declarations defined in the current package. +Go assembly should avoid making assumptions about the layout of Go +types and instead use these constants. +This improves the readability of assembly code, and keeps it robust to +changes in data layout either in the Go type definitions or in the +layout rules used by the Go compiler. +

+ +

+Constants are of the form const_name. +For example, given the Go declaration const bufSize = +1024, assembly code can refer to the value of this constant +as const_bufSize. +

+ +

+Field offsets are of the form type_field. +Struct sizes are of the form type__size. +For example, consider the following Go definition: +

+ +
+type reader struct {
+	buf [bufSize]byte
+	r   int
+}
+
+ +

+Assembly can refer to the size of this struct +as reader__size and the offsets of the two fields +as reader_buf and reader_r. +Hence, if register R1 contains a pointer to +a reader, assembly can reference the r field +as reader_r(R1). +

+ +

+If any of these #define names are ambiguous (for example, +a struct with a _size field), #include +"go_asm.h" will fail with a "redefinition of macro" error. +

+ +

Runtime Coordination

+ +

+For garbage collection to run correctly, the runtime must know the +location of pointers in all global data and in most stack frames. +The Go compiler emits this information when compiling Go source files, +but assembly programs must define it explicitly. +

+ +

+A data symbol marked with the NOPTR flag (see above) +is treated as containing no pointers to runtime-allocated data. +A data symbol with the RODATA flag +is allocated in read-only memory and is therefore treated +as implicitly marked NOPTR. +A data symbol with a total size smaller than a pointer +is also treated as implicitly marked NOPTR. +It is not possible to define a symbol containing pointers in an assembly source file; +such a symbol must be defined in a Go source file instead. +Assembly source can still refer to the symbol by name +even without DATA and GLOBL directives. +A good general rule of thumb is to define all non-RODATA +symbols in Go instead of in assembly. +

+ +

+Each function also needs annotations giving the location of +live pointers in its arguments, results, and local stack frame. +For an assembly function with no pointer results and +either no local stack frame or no function calls, +the only requirement is to define a Go prototype for the function +in a Go source file in the same package. The name of the assembly +function must not contain the package name component (for example, +function Syscall in package syscall should +use the name ·Syscall instead of the equivalent name +syscall·Syscall in its TEXT directive). +For more complex situations, explicit annotation is needed. +These annotations use pseudo-instructions defined in the standard +#include file funcdata.h. +

+ +

+If a function has no arguments and no results, +the pointer information can be omitted. +This is indicated by an argument size annotation of $n-0 +on the TEXT instruction. +Otherwise, pointer information must be provided by +a Go prototype for the function in a Go source file, +even for assembly functions not called directly from Go. +(The prototype will also let go vet check the argument references.) +At the start of the function, the arguments are assumed +to be initialized but the results are assumed uninitialized. +If the results will hold live pointers during a call instruction, +the function should start by zeroing the results and then +executing the pseudo-instruction GO_RESULTS_INITIALIZED. +This instruction records that the results are now initialized +and should be scanned during stack movement and garbage collection. +It is typically easier to arrange that assembly functions do not +return pointers or do not contain call instructions; +no assembly functions in the standard library use +GO_RESULTS_INITIALIZED. +

+ +

+If a function has no local stack frame, +the pointer information can be omitted. +This is indicated by a local frame size annotation of $0-n +on the TEXT instruction. +The pointer information can also be omitted if the +function contains no call instructions. +Otherwise, the local stack frame must not contain pointers, +and the assembly must confirm this fact by executing the +pseudo-instruction NO_LOCAL_POINTERS. +Because stack resizing is implemented by moving the stack, +the stack pointer may change during any function call: +even pointers to stack data must not be kept in local variables. +

+ +

+Assembly functions should always be given Go prototypes, +both to provide pointer information for the arguments and results +and to let go vet check that +the offsets being used to access them are correct. +

+ +

Architecture-specific details

+ +

+It is impractical to list all the instructions and other details for each machine. +To see what instructions are defined for a given machine, say ARM, +look in the source for the obj support library for +that architecture, located in the directory src/cmd/internal/obj/arm. +In that directory is a file a.out.go; it contains +a long list of constants starting with A, like this: +

+ +
+const (
+	AAND = obj.ABaseARM + obj.A_ARCHSPECIFIC + iota
+	AEOR
+	ASUB
+	ARSB
+	AADD
+	...
+
+ +

+This is the list of instructions and their spellings as known to the assembler and linker for that architecture. +Each instruction begins with an initial capital A in this list, so AAND +represents the bitwise and instruction, +AND (without the leading A), +and is written in assembly source as AND. +The enumeration is mostly in alphabetical order. +(The architecture-independent AXXX, defined in the +cmd/internal/obj package, +represents an invalid instruction). +The sequence of the A names has nothing to do with the actual +encoding of the machine instructions. +The cmd/internal/obj package takes care of that detail. +

+ +

+The instructions for both the 386 and AMD64 architectures are listed in +cmd/internal/obj/x86/a.out.go. +

+ +

+The architectures share syntax for common addressing modes such as +(R1) (register indirect), +4(R1) (register indirect with offset), and +$foo(SB) (absolute address). +The assembler also supports some (not necessarily all) addressing modes +specific to each architecture. +The sections below list these. +

+ +

+One detail evident in the examples from the previous sections is that data in the instructions flows from left to right: +MOVQ $0, CX clears CX. +This rule applies even on architectures where the conventional notation uses the opposite direction. +

+ +

+Here follow some descriptions of key Go-specific details for the supported architectures. +

+ +

32-bit Intel 386

+ +

+The runtime pointer to the g structure is maintained +through the value of an otherwise unused (as far as Go is concerned) register in the MMU. +In the runtime package, assembly code can include go_tls.h, which defines +an OS- and architecture-dependent macro get_tls for accessing this register. +The get_tls macro takes one argument, which is the register to load the +g pointer into. +

+ +

+For example, the sequence to load g and m +using CX looks like this: +

+ +
+#include "go_tls.h"
+#include "go_asm.h"
+...
+get_tls(CX)
+MOVL	g(CX), AX     // Move g into AX.
+MOVL	g_m(AX), BX   // Move g.m into BX.
+
+ +

+The get_tls macro is also defined on amd64. +

+ +

+Addressing modes: +

+ +
    + +
  • +(DI)(BX*2): The location at address DI plus BX*2. +
  • + +
  • +64(DI)(BX*2): The location at address DI plus BX*2 plus 64. +These modes accept only 1, 2, 4, and 8 as scale factors. +
  • + +
+ +

+When using the compiler and assembler's +-dynlink or -shared modes, +any load or store of a fixed memory location such as a global variable +must be assumed to overwrite CX. +Therefore, to be safe for use with these modes, +assembly sources should typically avoid CX except between memory references. +

+ +

64-bit Intel 386 (a.k.a. amd64)

+ +

+The two architectures behave largely the same at the assembler level. +Assembly code to access the m and g +pointers on the 64-bit version is the same as on the 32-bit 386, +except it uses MOVQ rather than MOVL: +

+ +
+get_tls(CX)
+MOVQ	g(CX), AX     // Move g into AX.
+MOVQ	g_m(AX), BX   // Move g.m into BX.
+
+ +

+Register BP is callee-save. +The assembler automatically inserts BP save/restore when frame size is larger than zero. +Using BP as a general purpose register is allowed, +however it can interfere with sampling-based profiling. +

+ +

ARM

+ +

+The registers R10 and R11 +are reserved by the compiler and linker. +

+ +

+R10 points to the g (goroutine) structure. +Within assembler source code, this pointer must be referred to as g; +the name R10 is not recognized. +

+ +

+To make it easier for people and compilers to write assembly, the ARM linker +allows general addressing forms and pseudo-operations like DIV or MOD +that may not be expressible using a single hardware instruction. +It implements these forms as multiple instructions, often using the R11 register +to hold temporary values. +Hand-written assembly can use R11, but doing so requires +being sure that the linker is not also using it to implement any of the other +instructions in the function. +

+ +

+When defining a TEXT, specifying frame size $-4 +tells the linker that this is a leaf function that does not need to save LR on entry. +

+ +

+The name SP always refers to the virtual stack pointer described earlier. +For the hardware register, use R13. +

+ +

+Condition code syntax is to append a period and the one- or two-letter code to the instruction, +as in MOVW.EQ. +Multiple codes may be appended: MOVM.IA.W. +The order of the code modifiers is irrelevant. +

+ +

+Addressing modes: +

+ +
    + +
  • +R0->16 +
    +R0>>16 +
    +R0<<16 +
    +R0@>16: +For <<, left shift R0 by 16 bits. +The other codes are -> (arithmetic right shift), +>> (logical right shift), and +@> (rotate right). +
  • + +
  • +R0->R1 +
    +R0>>R1 +
    +R0<<R1 +
    +R0@>R1: +For <<, left shift R0 by the count in R1. +The other codes are -> (arithmetic right shift), +>> (logical right shift), and +@> (rotate right). + +
  • + +
  • +[R0,g,R12-R15]: For multi-register instructions, the set comprising +R0, g, and R12 through R15 inclusive. +
  • + +
  • +(R5, R6): Destination register pair. +
  • + +
+ +

ARM64

+ +

+R18 is the "platform register", reserved on the Apple platform. +To prevent accidental misuse, the register is named R18_PLATFORM. +R27 and R28 are reserved by the compiler and linker. +R29 is the frame pointer. +R30 is the link register. +

+ +

+Instruction modifiers are appended to the instruction following a period. +The only modifiers are P (postincrement) and W +(preincrement): +MOVW.P, MOVW.W +

+ +

+Addressing modes: +

+ +
    + +
  • +R0->16 +
    +R0>>16 +
    +R0<<16 +
    +R0@>16: +These are the same as on the 32-bit ARM. +
  • + +
  • +$(8<<12): +Left shift the immediate value 8 by 12 bits. +
  • + +
  • +8(R0): +Add the value of R0 and 8. +
  • + +
  • +(R2)(R0): +The location at R0 plus R2. +
  • + +
  • +R0.UXTB +
    +R0.UXTB<<imm: +UXTB: extract an 8-bit value from the low-order bits of R0 and zero-extend it to the size of R0. +R0.UXTB<<imm: left shift the result of R0.UXTB by imm bits. +The imm value can be 0, 1, 2, 3, or 4. +The other extensions include UXTH (16-bit), UXTW (32-bit), and UXTX (64-bit). +
  • + +
  • +R0.SXTB +
    +R0.SXTB<<imm: +SXTB: extract an 8-bit value from the low-order bits of R0 and sign-extend it to the size of R0. +R0.SXTB<<imm: left shift the result of R0.SXTB by imm bits. +The imm value can be 0, 1, 2, 3, or 4. +The other extensions include SXTH (16-bit), SXTW (32-bit), and SXTX (64-bit). +
  • + +
  • +(R5, R6): Register pair for LDAXP/LDP/LDXP/STLXP/STP/STP. +
  • + +
+ +

+Reference: Go ARM64 Assembly Instructions Reference Manual +

+ +

PPC64

+ +

+This assembler is used by GOARCH values ppc64 and ppc64le. +

+ +

+Reference: Go PPC64 Assembly Instructions Reference Manual +

+ +

IBM z/Architecture, a.k.a. s390x

+ +

+The registers R10 and R11 are reserved. +The assembler uses them to hold temporary values when assembling some instructions. +

+ +

+R13 points to the g (goroutine) structure. +This register must be referred to as g; the name R13 is not recognized. +

+ +

+R15 points to the stack frame and should typically only be accessed using the +virtual registers SP and FP. +

+ +

+Load- and store-multiple instructions operate on a range of registers. +The range of registers is specified by a start register and an end register. +For example, LMG (R9), R5, R7 would load +R5, R6 and R7 with the 64-bit values at +0(R9), 8(R9) and 16(R9) respectively. +

+ +

+Storage-and-storage instructions such as MVC and XC are written +with the length as the first argument. +For example, XC $8, (R9), (R9) would clear +eight bytes at the address specified in R9. +

+ +

+If a vector instruction takes a length or an index as an argument then it will be the +first argument. +For example, VLEIF $1, $16, V2 will load +the value sixteen into index one of V2. +Care should be taken when using vector instructions to ensure that they are available at +runtime. +To use vector instructions a machine must have both the vector facility (bit 129 in the +facility list) and kernel support. +Without kernel support a vector instruction will have no effect (it will be equivalent +to a NOP instruction). +

+ +

+Addressing modes: +

+ +
    + +
  • +(R5)(R6*1): The location at R5 plus R6. +It is a scaled mode as on the x86, but the only scale allowed is 1. +
  • + +
+ +

MIPS, MIPS64

+ +

+General purpose registers are named R0 through R31, +floating point registers are F0 through F31. +

+ +

+R30 is reserved to point to g. +R23 is used as a temporary register. +

+ +

+In a TEXT directive, the frame size $-4 for MIPS or +$-8 for MIPS64 instructs the linker not to save LR. +

+ +

+SP refers to the virtual stack pointer. +For the hardware register, use R29. +

+ +

+Addressing modes: +

+ +
    + +
  • +16(R1): The location at R1 plus 16. +
  • + +
  • +(R1): Alias for 0(R1). +
  • + +
+ +

+The value of GOMIPS environment variable (hardfloat or +softfloat) is made available to assembly code by predefining either +GOMIPS_hardfloat or GOMIPS_softfloat. +

+ +

+The value of GOMIPS64 environment variable (hardfloat or +softfloat) is made available to assembly code by predefining either +GOMIPS64_hardfloat or GOMIPS64_softfloat. +

+ +

Unsupported opcodes

+ +

+The assemblers are designed to support the compiler so not all hardware instructions +are defined for all architectures: if the compiler doesn't generate it, it might not be there. +If you need to use a missing instruction, there are two ways to proceed. +One is to update the assembler to support that instruction, which is straightforward +but only worthwhile if it's likely the instruction will be used again. +Instead, for simple one-off cases, it's possible to use the BYTE +and WORD directives +to lay down explicit data into the instruction stream within a TEXT. +Here's how the 386 runtime defines the 64-bit atomic load function. +

+ +
+// uint64 atomicload64(uint64 volatile* addr);
+// so actually
+// void atomicload64(uint64 *res, uint64 volatile *addr);
+TEXT runtime·atomicload64(SB), NOSPLIT, $0-12
+	MOVL	ptr+0(FP), AX
+	TESTL	$7, AX
+	JZ	2(PC)
+	MOVL	0, AX // crash with nil ptr deref
+	LEAL	ret_lo+4(FP), BX
+	// MOVQ (%EAX), %MM0
+	BYTE $0x0f; BYTE $0x6f; BYTE $0x00
+	// MOVQ %MM0, 0(%EBX)
+	BYTE $0x0f; BYTE $0x7f; BYTE $0x03
+	// EMMS
+	BYTE $0x0F; BYTE $0x77
+	RET
+
diff --git a/platform/dbops/binaries/go/go/doc/go1.17_spec.html b/platform/dbops/binaries/go/go/doc/go1.17_spec.html new file mode 100644 index 0000000000000000000000000000000000000000..c87d9aff3cc3ddf2e4cab766cd46a675cde28e11 --- /dev/null +++ b/platform/dbops/binaries/go/go/doc/go1.17_spec.html @@ -0,0 +1,6864 @@ + + +

Introduction

+ +

+This is the reference manual for the Go programming language as it was for +language version 1.17, in October 2021, before the introduction of generics. +It is provided for historical interest. +The current reference manual can be found here. +For more information and other documents, see go.dev. +

+ +

+Go is a general-purpose language designed with systems programming +in mind. It is strongly typed and garbage-collected and has explicit +support for concurrent programming. Programs are constructed from +packages, whose properties allow efficient management of +dependencies. +

+ +

+The grammar is compact and simple to parse, allowing for easy analysis +by automatic tools such as integrated development environments. +

+ +

Notation

+

+The syntax is specified using Extended Backus-Naur Form (EBNF): +

+ +
+Production  = production_name "=" [ Expression ] "." .
+Expression  = Alternative { "|" Alternative } .
+Alternative = Term { Term } .
+Term        = production_name | token [ "…" token ] | Group | Option | Repetition .
+Group       = "(" Expression ")" .
+Option      = "[" Expression "]" .
+Repetition  = "{" Expression "}" .
+
+ +

+Productions are expressions constructed from terms and the following +operators, in increasing precedence: +

+
+|   alternation
+()  grouping
+[]  option (0 or 1 times)
+{}  repetition (0 to n times)
+
+ +

+Lower-case production names are used to identify lexical tokens. +Non-terminals are in CamelCase. Lexical tokens are enclosed in +double quotes "" or back quotes ``. +

+ +

+The form a … b represents the set of characters from +a through b as alternatives. The horizontal +ellipsis is also used elsewhere in the spec to informally denote various +enumerations or code snippets that are not further specified. The character +(as opposed to the three characters ...) is not a token of the Go +language. +

+ +

Source code representation

+ +

+Source code is Unicode text encoded in +UTF-8. The text is not +canonicalized, so a single accented code point is distinct from the +same character constructed from combining an accent and a letter; +those are treated as two code points. For simplicity, this document +will use the unqualified term character to refer to a Unicode code point +in the source text. +

+

+Each code point is distinct; for instance, upper and lower case letters +are different characters. +

+

+Implementation restriction: For compatibility with other tools, a +compiler may disallow the NUL character (U+0000) in the source text. +

+

+Implementation restriction: For compatibility with other tools, a +compiler may ignore a UTF-8-encoded byte order mark +(U+FEFF) if it is the first Unicode code point in the source text. +A byte order mark may be disallowed anywhere else in the source. +

+ +

Characters

+ +

+The following terms are used to denote specific Unicode character classes: +

+
+newline        = /* the Unicode code point U+000A */ .
+unicode_char   = /* an arbitrary Unicode code point except newline */ .
+unicode_letter = /* a Unicode code point classified as "Letter" */ .
+unicode_digit  = /* a Unicode code point classified as "Number, decimal digit" */ .
+
+ +

+In The Unicode Standard 8.0, +Section 4.5 "General Category" defines a set of character categories. +Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo +as Unicode letters, and those in the Number category Nd as Unicode digits. +

+ +

Letters and digits

+ +

+The underscore character _ (U+005F) is considered a letter. +

+
+letter        = unicode_letter | "_" .
+decimal_digit = "0" … "9" .
+binary_digit  = "0" | "1" .
+octal_digit   = "0" … "7" .
+hex_digit     = "0" … "9" | "A" … "F" | "a" … "f" .
+
+ +

Lexical elements

+ +

Comments

+ +

+Comments serve as program documentation. There are two forms: +

+ +
    +
  1. +Line comments start with the character sequence // +and stop at the end of the line. +
  2. +
  3. +General comments start with the character sequence /* +and stop with the first subsequent character sequence */. +
  4. +
+ +

+A comment cannot start inside a rune or +string literal, or inside a comment. +A general comment containing no newlines acts like a space. +Any other comment acts like a newline. +

+ +

Tokens

+ +

+Tokens form the vocabulary of the Go language. +There are four classes: identifiers, keywords, operators +and punctuation, and literals. White space, formed from +spaces (U+0020), horizontal tabs (U+0009), +carriage returns (U+000D), and newlines (U+000A), +is ignored except as it separates tokens +that would otherwise combine into a single token. Also, a newline or end of file +may trigger the insertion of a semicolon. +While breaking the input into tokens, +the next token is the longest sequence of characters that form a +valid token. +

+ +

Semicolons

+ +

+The formal grammar uses semicolons ";" as terminators in +a number of productions. Go programs may omit most of these semicolons +using the following two rules: +

+ +
    +
  1. +When the input is broken into tokens, a semicolon is automatically inserted +into the token stream immediately after a line's final token if that token is + +
  2. + +
  3. +To allow complex statements to occupy a single line, a semicolon +may be omitted before a closing ")" or "}". +
  4. +
+ +

+To reflect idiomatic use, code examples in this document elide semicolons +using these rules. +

+ + +

Identifiers

+ +

+Identifiers name program entities such as variables and types. +An identifier is a sequence of one or more letters and digits. +The first character in an identifier must be a letter. +

+
+identifier = letter { letter | unicode_digit } .
+
+
+a
+_x9
+ThisVariableIsExported
+αβ
+
+ +

+Some identifiers are predeclared. +

+ + +

Keywords

+ +

+The following keywords are reserved and may not be used as identifiers. +

+
+break        default      func         interface    select
+case         defer        go           map          struct
+chan         else         goto         package      switch
+const        fallthrough  if           range        type
+continue     for          import       return       var
+
+ +

Operators and punctuation

+ +

+The following character sequences represent operators +(including assignment operators) and punctuation: +

+
++    &     +=    &=     &&    ==    !=    (    )
+-    |     -=    |=     ||    <     <=    [    ]
+*    ^     *=    ^=     <-    >     >=    {    }
+/    <<    /=    <<=    ++    =     :=    ,    ;
+%    >>    %=    >>=    --    !     ...   .    :
+     &^          &^=
+
+ +

Integer literals

+ +

+An integer literal is a sequence of digits representing an +integer constant. +An optional prefix sets a non-decimal base: 0b or 0B +for binary, 0, 0o, or 0O for octal, +and 0x or 0X for hexadecimal. +A single 0 is considered a decimal zero. +In hexadecimal literals, letters a through f +and A through F represent values 10 through 15. +

+ +

+For readability, an underscore character _ may appear after +a base prefix or between successive digits; such underscores do not change +the literal's value. +

+
+int_lit        = decimal_lit | binary_lit | octal_lit | hex_lit .
+decimal_lit    = "0" | ( "1" … "9" ) [ [ "_" ] decimal_digits ] .
+binary_lit     = "0" ( "b" | "B" ) [ "_" ] binary_digits .
+octal_lit      = "0" [ "o" | "O" ] [ "_" ] octal_digits .
+hex_lit        = "0" ( "x" | "X" ) [ "_" ] hex_digits .
+
+decimal_digits = decimal_digit { [ "_" ] decimal_digit } .
+binary_digits  = binary_digit { [ "_" ] binary_digit } .
+octal_digits   = octal_digit { [ "_" ] octal_digit } .
+hex_digits     = hex_digit { [ "_" ] hex_digit } .
+
+ +
+42
+4_2
+0600
+0_600
+0o600
+0O600       // second character is capital letter 'O'
+0xBadFace
+0xBad_Face
+0x_67_7a_2f_cc_40_c6
+170141183460469231731687303715884105727
+170_141183_460469_231731_687303_715884_105727
+
+_42         // an identifier, not an integer literal
+42_         // invalid: _ must separate successive digits
+4__2        // invalid: only one _ at a time
+0_xBadFace  // invalid: _ must separate successive digits
+
+ + +

Floating-point literals

+ +

+A floating-point literal is a decimal or hexadecimal representation of a +floating-point constant. +

+ +

+A decimal floating-point literal consists of an integer part (decimal digits), +a decimal point, a fractional part (decimal digits), and an exponent part +(e or E followed by an optional sign and decimal digits). +One of the integer part or the fractional part may be elided; one of the decimal point +or the exponent part may be elided. +An exponent value exp scales the mantissa (integer and fractional part) by 10exp. +

+ +

+A hexadecimal floating-point literal consists of a 0x or 0X +prefix, an integer part (hexadecimal digits), a radix point, a fractional part (hexadecimal digits), +and an exponent part (p or P followed by an optional sign and decimal digits). +One of the integer part or the fractional part may be elided; the radix point may be elided as well, +but the exponent part is required. (This syntax matches the one given in IEEE 754-2008 §5.12.3.) +An exponent value exp scales the mantissa (integer and fractional part) by 2exp. +

+ +

+For readability, an underscore character _ may appear after +a base prefix or between successive digits; such underscores do not change +the literal value. +

+ +
+float_lit         = decimal_float_lit | hex_float_lit .
+
+decimal_float_lit = decimal_digits "." [ decimal_digits ] [ decimal_exponent ] |
+                    decimal_digits decimal_exponent |
+                    "." decimal_digits [ decimal_exponent ] .
+decimal_exponent  = ( "e" | "E" ) [ "+" | "-" ] decimal_digits .
+
+hex_float_lit     = "0" ( "x" | "X" ) hex_mantissa hex_exponent .
+hex_mantissa      = [ "_" ] hex_digits "." [ hex_digits ] |
+                    [ "_" ] hex_digits |
+                    "." hex_digits .
+hex_exponent      = ( "p" | "P" ) [ "+" | "-" ] decimal_digits .
+
+ +
+0.
+72.40
+072.40       // == 72.40
+2.71828
+1.e+0
+6.67428e-11
+1E6
+.25
+.12345E+5
+1_5.         // == 15.0
+0.15e+0_2    // == 15.0
+
+0x1p-2       // == 0.25
+0x2.p10      // == 2048.0
+0x1.Fp+0     // == 1.9375
+0X.8p-0      // == 0.5
+0X_1FFFP-16  // == 0.1249847412109375
+0x15e-2      // == 0x15e - 2 (integer subtraction)
+
+0x.p1        // invalid: mantissa has no digits
+1p-2         // invalid: p exponent requires hexadecimal mantissa
+0x1.5e-2     // invalid: hexadecimal mantissa requires p exponent
+1_.5         // invalid: _ must separate successive digits
+1._5         // invalid: _ must separate successive digits
+1.5_e1       // invalid: _ must separate successive digits
+1.5e_1       // invalid: _ must separate successive digits
+1.5e1_       // invalid: _ must separate successive digits
+
+ + +

Imaginary literals

+ +

+An imaginary literal represents the imaginary part of a +complex constant. +It consists of an integer or +floating-point literal +followed by the lower-case letter i. +The value of an imaginary literal is the value of the respective +integer or floating-point literal multiplied by the imaginary unit i. +

+ +
+imaginary_lit = (decimal_digits | int_lit | float_lit) "i" .
+
+ +

+For backward compatibility, an imaginary literal's integer part consisting +entirely of decimal digits (and possibly underscores) is considered a decimal +integer, even if it starts with a leading 0. +

+ +
+0i
+0123i         // == 123i for backward-compatibility
+0o123i        // == 0o123 * 1i == 83i
+0xabci        // == 0xabc * 1i == 2748i
+0.i
+2.71828i
+1.e+0i
+6.67428e-11i
+1E6i
+.25i
+.12345E+5i
+0x1p-2i       // == 0x1p-2 * 1i == 0.25i
+
+ + +

Rune literals

+ +

+A rune literal represents a rune constant, +an integer value identifying a Unicode code point. +A rune literal is expressed as one or more characters enclosed in single quotes, +as in 'x' or '\n'. +Within the quotes, any character may appear except newline and unescaped single +quote. A single quoted character represents the Unicode value +of the character itself, +while multi-character sequences beginning with a backslash encode +values in various formats. +

+ +

+The simplest form represents the single character within the quotes; +since Go source text is Unicode characters encoded in UTF-8, multiple +UTF-8-encoded bytes may represent a single integer value. For +instance, the literal 'a' holds a single byte representing +a literal a, Unicode U+0061, value 0x61, while +'ä' holds two bytes (0xc3 0xa4) representing +a literal a-dieresis, U+00E4, value 0xe4. +

+ +

+Several backslash escapes allow arbitrary values to be encoded as +ASCII text. There are four ways to represent the integer value +as a numeric constant: \x followed by exactly two hexadecimal +digits; \u followed by exactly four hexadecimal digits; +\U followed by exactly eight hexadecimal digits, and a +plain backslash \ followed by exactly three octal digits. +In each case the value of the literal is the value represented by +the digits in the corresponding base. +

+ +

+Although these representations all result in an integer, they have +different valid ranges. Octal escapes must represent a value between +0 and 255 inclusive. Hexadecimal escapes satisfy this condition +by construction. The escapes \u and \U +represent Unicode code points so within them some values are illegal, +in particular those above 0x10FFFF and surrogate halves. +

+ +

+After a backslash, certain single-character escapes represent special values: +

+ +
+\a   U+0007 alert or bell
+\b   U+0008 backspace
+\f   U+000C form feed
+\n   U+000A line feed or newline
+\r   U+000D carriage return
+\t   U+0009 horizontal tab
+\v   U+000B vertical tab
+\\   U+005C backslash
+\'   U+0027 single quote  (valid escape only within rune literals)
+\"   U+0022 double quote  (valid escape only within string literals)
+
+ +

+All other sequences starting with a backslash are illegal inside rune literals. +

+
+rune_lit         = "'" ( unicode_value | byte_value ) "'" .
+unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
+byte_value       = octal_byte_value | hex_byte_value .
+octal_byte_value = `\` octal_digit octal_digit octal_digit .
+hex_byte_value   = `\` "x" hex_digit hex_digit .
+little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
+big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit
+                           hex_digit hex_digit hex_digit hex_digit .
+escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
+
+ +
+'a'
+'ä'
+'本'
+'\t'
+'\000'
+'\007'
+'\377'
+'\x07'
+'\xff'
+'\u12e4'
+'\U00101234'
+'\''         // rune literal containing single quote character
+'aa'         // illegal: too many characters
+'\xa'        // illegal: too few hexadecimal digits
+'\0'         // illegal: too few octal digits
+'\uDFFF'     // illegal: surrogate half
+'\U00110000' // illegal: invalid Unicode code point
+
+ + +

String literals

+ +

+A string literal represents a string constant +obtained from concatenating a sequence of characters. There are two forms: +raw string literals and interpreted string literals. +

+ +

+Raw string literals are character sequences between back quotes, as in +`foo`. Within the quotes, any character may appear except +back quote. The value of a raw string literal is the +string composed of the uninterpreted (implicitly UTF-8-encoded) characters +between the quotes; +in particular, backslashes have no special meaning and the string may +contain newlines. +Carriage return characters ('\r') inside raw string literals +are discarded from the raw string value. +

+ +

+Interpreted string literals are character sequences between double +quotes, as in "bar". +Within the quotes, any character may appear except newline and unescaped double quote. +The text between the quotes forms the +value of the literal, with backslash escapes interpreted as they +are in rune literals (except that \' is illegal and +\" is legal), with the same restrictions. +The three-digit octal (\nnn) +and two-digit hexadecimal (\xnn) escapes represent individual +bytes of the resulting string; all other escapes represent +the (possibly multi-byte) UTF-8 encoding of individual characters. +Thus inside a string literal \377 and \xFF represent +a single byte of value 0xFF=255, while ÿ, +\u00FF, \U000000FF and \xc3\xbf represent +the two bytes 0xc3 0xbf of the UTF-8 encoding of character +U+00FF. +

+ +
+string_lit             = raw_string_lit | interpreted_string_lit .
+raw_string_lit         = "`" { unicode_char | newline } "`" .
+interpreted_string_lit = `"` { unicode_value | byte_value } `"` .
+
+ +
+`abc`                // same as "abc"
+`\n
+\n`                  // same as "\\n\n\\n"
+"\n"
+"\""                 // same as `"`
+"Hello, world!\n"
+"日本語"
+"\u65e5本\U00008a9e"
+"\xff\u00FF"
+"\uD800"             // illegal: surrogate half
+"\U00110000"         // illegal: invalid Unicode code point
+
+ +

+These examples all represent the same string: +

+ +
+"日本語"                                 // UTF-8 input text
+`日本語`                                 // UTF-8 input text as a raw literal
+"\u65e5\u672c\u8a9e"                    // the explicit Unicode code points
+"\U000065e5\U0000672c\U00008a9e"        // the explicit Unicode code points
+"\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"  // the explicit UTF-8 bytes
+
+ +

+If the source code represents a character as two code points, such as +a combining form involving an accent and a letter, the result will be +an error if placed in a rune literal (it is not a single code +point), and will appear as two code points if placed in a string +literal. +

+ + +

Constants

+ +

There are boolean constants, +rune constants, +integer constants, +floating-point constants, complex constants, +and string constants. Rune, integer, floating-point, +and complex constants are +collectively called numeric constants. +

+ +

+A constant value is represented by a +rune, +integer, +floating-point, +imaginary, +or +string literal, +an identifier denoting a constant, +a constant expression, +a conversion with a result that is a constant, or +the result value of some built-in functions such as +unsafe.Sizeof applied to any value, +cap or len applied to +some expressions, +real and imag applied to a complex constant +and complex applied to numeric constants. +The boolean truth values are represented by the predeclared constants +true and false. The predeclared identifier +iota denotes an integer constant. +

+ +

+In general, complex constants are a form of +constant expression +and are discussed in that section. +

+ +

+Numeric constants represent exact values of arbitrary precision and do not overflow. +Consequently, there are no constants denoting the IEEE-754 negative zero, infinity, +and not-a-number values. +

+ +

+Constants may be typed or untyped. +Literal constants, true, false, iota, +and certain constant expressions +containing only untyped constant operands are untyped. +

+ +

+A constant may be given a type explicitly by a constant declaration +or conversion, or implicitly when used in a +variable declaration or an +assignment or as an +operand in an expression. +It is an error if the constant value +cannot be represented as a value of the respective type. +

+ +

+An untyped constant has a default type which is the type to which the +constant is implicitly converted in contexts where a typed value is required, +for instance, in a short variable declaration +such as i := 0 where there is no explicit type. +The default type of an untyped constant is bool, rune, +int, float64, complex128 or string +respectively, depending on whether it is a boolean, rune, integer, floating-point, +complex, or string constant. +

+ +

+Implementation restriction: Although numeric constants have arbitrary +precision in the language, a compiler may implement them using an +internal representation with limited precision. That said, every +implementation must: +

+ +
    +
  • Represent integer constants with at least 256 bits.
  • + +
  • Represent floating-point constants, including the parts of + a complex constant, with a mantissa of at least 256 bits + and a signed binary exponent of at least 16 bits.
  • + +
  • Give an error if unable to represent an integer constant + precisely.
  • + +
  • Give an error if unable to represent a floating-point or + complex constant due to overflow.
  • + +
  • Round to the nearest representable constant if unable to + represent a floating-point or complex constant due to limits + on precision.
  • +
+ +

+These requirements apply both to literal constants and to the result +of evaluating constant +expressions. +

+ + +

Variables

+ +

+A variable is a storage location for holding a value. +The set of permissible values is determined by the +variable's type. +

+ +

+A variable declaration +or, for function parameters and results, the signature +of a function declaration +or function literal reserves +storage for a named variable. + +Calling the built-in function new +or taking the address of a composite literal +allocates storage for a variable at run time. +Such an anonymous variable is referred to via a (possibly implicit) +pointer indirection. +

+ +

+Structured variables of array, slice, +and struct types have elements and fields that may +be addressed individually. Each such element +acts like a variable. +

+ +

+The static type (or just type) of a variable is the +type given in its declaration, the type provided in the +new call or composite literal, or the type of +an element of a structured variable. +Variables of interface type also have a distinct dynamic type, +which is the concrete type of the value assigned to the variable at run time +(unless the value is the predeclared identifier nil, +which has no type). +The dynamic type may vary during execution but values stored in interface +variables are always assignable +to the static type of the variable. +

+ +
+var x interface{}  // x is nil and has static type interface{}
+var v *T           // v has value nil, static type *T
+x = 42             // x has value 42 and dynamic type int
+x = v              // x has value (*T)(nil) and dynamic type *T
+
+ +

+A variable's value is retrieved by referring to the variable in an +expression; it is the most recent value +assigned to the variable. +If a variable has not yet been assigned a value, its value is the +zero value for its type. +

+ + +

Types

+ +

+A type determines a set of values together with operations and methods specific +to those values. A type may be denoted by a type name, if it has one, +or specified using a type literal, which composes a type from existing types. +

+ +
+Type      = TypeName | TypeLit | "(" Type ")" .
+TypeName  = identifier | QualifiedIdent .
+TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
+	    SliceType | MapType | ChannelType .
+
+ +

+The language predeclares certain type names. +Others are introduced with type declarations. +Composite types—array, struct, pointer, function, +interface, slice, map, and channel types—may be constructed using +type literals. +

+ +

+Each type T has an underlying type: If T +is one of the predeclared boolean, numeric, or string types, or a type literal, +the corresponding underlying +type is T itself. Otherwise, T's underlying type +is the underlying type of the type to which T refers in its +type declaration. +

+ +
+type (
+	A1 = string
+	A2 = A1
+)
+
+type (
+	B1 string
+	B2 B1
+	B3 []B1
+	B4 B3
+)
+
+ +

+The underlying type of string, A1, A2, B1, +and B2 is string. +The underlying type of []B1, B3, and B4 is []B1. +

+ +

Method sets

+

+A type has a (possibly empty) method set associated with it. +The method set of an interface type is its interface. +The method set of any other type T consists of all +methods declared with receiver type T. +The method set of the corresponding pointer type *T +is the set of all methods declared with receiver *T or T +(that is, it also contains the method set of T). +Further rules apply to structs containing embedded fields, as described +in the section on struct types. +Any other type has an empty method set. +In a method set, each method must have a +unique +non-blank method name. +

+ +

+The method set of a type determines the interfaces that the +type implements +and the methods that can be called +using a receiver of that type. +

+ +

Boolean types

+ +

+A boolean type represents the set of Boolean truth values +denoted by the predeclared constants true +and false. The predeclared boolean type is bool; +it is a defined type. +

+ +

Numeric types

+ +

+A numeric type represents sets of integer or floating-point values. +The predeclared architecture-independent numeric types are: +

+ +
+uint8       the set of all unsigned  8-bit integers (0 to 255)
+uint16      the set of all unsigned 16-bit integers (0 to 65535)
+uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
+uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
+
+int8        the set of all signed  8-bit integers (-128 to 127)
+int16       the set of all signed 16-bit integers (-32768 to 32767)
+int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
+int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
+
+float32     the set of all IEEE-754 32-bit floating-point numbers
+float64     the set of all IEEE-754 64-bit floating-point numbers
+
+complex64   the set of all complex numbers with float32 real and imaginary parts
+complex128  the set of all complex numbers with float64 real and imaginary parts
+
+byte        alias for uint8
+rune        alias for int32
+
+ +

+The value of an n-bit integer is n bits wide and represented using +two's complement arithmetic. +

+ +

+There is also a set of predeclared numeric types with implementation-specific sizes: +

+ +
+uint     either 32 or 64 bits
+int      same size as uint
+uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value
+
+ +

+To avoid portability issues all numeric types are defined +types and thus distinct except +byte, which is an alias for uint8, and +rune, which is an alias for int32. +Explicit conversions +are required when different numeric types are mixed in an expression +or assignment. For instance, int32 and int +are not the same type even though they may have the same size on a +particular architecture. +

+ +

String types

+ +

+A string type represents the set of string values. +A string value is a (possibly empty) sequence of bytes. +The number of bytes is called the length of the string and is never negative. +Strings are immutable: once created, +it is impossible to change the contents of a string. +The predeclared string type is string; +it is a defined type. +

+ +

+The length of a string s can be discovered using +the built-in function len. +The length is a compile-time constant if the string is a constant. +A string's bytes can be accessed by integer indices +0 through len(s)-1. +It is illegal to take the address of such an element; if +s[i] is the i'th byte of a +string, &s[i] is invalid. +

+ + +

Array types

+ +

+An array is a numbered sequence of elements of a single +type, called the element type. +The number of elements is called the length of the array and is never negative. +

+ +
+ArrayType   = "[" ArrayLength "]" ElementType .
+ArrayLength = Expression .
+ElementType = Type .
+
+ +

+The length is part of the array's type; it must evaluate to a +non-negative constant +representable by a value +of type int. +The length of array a can be discovered +using the built-in function len. +The elements can be addressed by integer indices +0 through len(a)-1. +Array types are always one-dimensional but may be composed to form +multi-dimensional types. +

+ +
+[32]byte
+[2*N] struct { x, y int32 }
+[1000]*float64
+[3][5]int
+[2][2][2]float64  // same as [2]([2]([2]float64))
+
+ +

Slice types

+ +

+A slice is a descriptor for a contiguous segment of an underlying array and +provides access to a numbered sequence of elements from that array. +A slice type denotes the set of all slices of arrays of its element type. +The number of elements is called the length of the slice and is never negative. +The value of an uninitialized slice is nil. +

+ +
+SliceType = "[" "]" ElementType .
+
+ +

+The length of a slice s can be discovered by the built-in function +len; unlike with arrays it may change during +execution. The elements can be addressed by integer indices +0 through len(s)-1. The slice index of a +given element may be less than the index of the same element in the +underlying array. +

+

+A slice, once initialized, is always associated with an underlying +array that holds its elements. A slice therefore shares storage +with its array and with other slices of the same array; by contrast, +distinct arrays always represent distinct storage. +

+

+The array underlying a slice may extend past the end of the slice. +The capacity is a measure of that extent: it is the sum of +the length of the slice and the length of the array beyond the slice; +a slice of length up to that capacity can be created by +slicing a new one from the original slice. +The capacity of a slice a can be discovered using the +built-in function cap(a). +

+ +

+A new, initialized slice value for a given element type T is +made using the built-in function +make, +which takes a slice type +and parameters specifying the length and optionally the capacity. +A slice created with make always allocates a new, hidden array +to which the returned slice value refers. That is, executing +

+ +
+make([]T, length, capacity)
+
+ +

+produces the same slice as allocating an array and slicing +it, so these two expressions are equivalent: +

+ +
+make([]int, 50, 100)
+new([100]int)[0:50]
+
+ +

+Like arrays, slices are always one-dimensional but may be composed to construct +higher-dimensional objects. +With arrays of arrays, the inner arrays are, by construction, always the same length; +however with slices of slices (or arrays of slices), the inner lengths may vary dynamically. +Moreover, the inner slices must be initialized individually. +

+ +

Struct types

+ +

+A struct is a sequence of named elements, called fields, each of which has a +name and a type. Field names may be specified explicitly (IdentifierList) or +implicitly (EmbeddedField). +Within a struct, non-blank field names must +be unique. +

+ +
+StructType    = "struct" "{" { FieldDecl ";" } "}" .
+FieldDecl     = (IdentifierList Type | EmbeddedField) [ Tag ] .
+EmbeddedField = [ "*" ] TypeName .
+Tag           = string_lit .
+
+ +
+// An empty struct.
+struct {}
+
+// A struct with 6 fields.
+struct {
+	x, y int
+	u float32
+	_ float32  // padding
+	A *[]int
+	F func()
+}
+
+ +

+A field declared with a type but no explicit field name is called an embedded field. +An embedded field must be specified as +a type name T or as a pointer to a non-interface type name *T, +and T itself may not be +a pointer type. The unqualified type name acts as the field name. +

+ +
+// A struct with four embedded fields of types T1, *T2, P.T3 and *P.T4
+struct {
+	T1        // field name is T1
+	*T2       // field name is T2
+	P.T3      // field name is T3
+	*P.T4     // field name is T4
+	x, y int  // field names are x and y
+}
+
+ +

+The following declaration is illegal because field names must be unique +in a struct type: +

+ +
+struct {
+	T     // conflicts with embedded field *T and *P.T
+	*T    // conflicts with embedded field T and *P.T
+	*P.T  // conflicts with embedded field T and *T
+}
+
+ +

+A field or method f of an +embedded field in a struct x is called promoted if +x.f is a legal selector that denotes +that field or method f. +

+ +

+Promoted fields act like ordinary fields +of a struct except that they cannot be used as field names in +composite literals of the struct. +

+ +

+Given a struct type S and a defined type +T, promoted methods are included in the method set of the struct as follows: +

+
    +
  • + If S contains an embedded field T, + the method sets of S + and *S both include promoted methods with receiver + T. The method set of *S also + includes promoted methods with receiver *T. +
  • + +
  • + If S contains an embedded field *T, + the method sets of S and *S both + include promoted methods with receiver T or + *T. +
  • +
+ +

+A field declaration may be followed by an optional string literal tag, +which becomes an attribute for all the fields in the corresponding +field declaration. An empty tag string is equivalent to an absent tag. +The tags are made visible through a reflection interface +and take part in type identity for structs +but are otherwise ignored. +

+ +
+struct {
+	x, y float64 ""  // an empty tag string is like an absent tag
+	name string  "any string is permitted as a tag"
+	_    [4]byte "ceci n'est pas un champ de structure"
+}
+
+// A struct corresponding to a TimeStamp protocol buffer.
+// The tag strings define the protocol buffer field numbers;
+// they follow the convention outlined by the reflect package.
+struct {
+	microsec  uint64 `protobuf:"1"`
+	serverIP6 uint64 `protobuf:"2"`
+}
+
+ +

Pointer types

+ +

+A pointer type denotes the set of all pointers to variables of a given +type, called the base type of the pointer. +The value of an uninitialized pointer is nil. +

+ +
+PointerType = "*" BaseType .
+BaseType    = Type .
+
+ +
+*Point
+*[4]int
+
+ +

Function types

+ +

+A function type denotes the set of all functions with the same parameter +and result types. The value of an uninitialized variable of function type +is nil. +

+ +
+FunctionType   = "func" Signature .
+Signature      = Parameters [ Result ] .
+Result         = Parameters | Type .
+Parameters     = "(" [ ParameterList [ "," ] ] ")" .
+ParameterList  = ParameterDecl { "," ParameterDecl } .
+ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
+
+ +

+Within a list of parameters or results, the names (IdentifierList) +must either all be present or all be absent. If present, each name +stands for one item (parameter or result) of the specified type and +all non-blank names in the signature +must be unique. +If absent, each type stands for one item of that type. +Parameter and result +lists are always parenthesized except that if there is exactly +one unnamed result it may be written as an unparenthesized type. +

+ +

+The final incoming parameter in a function signature may have +a type prefixed with .... +A function with such a parameter is called variadic and +may be invoked with zero or more arguments for that parameter. +

+ +
+func()
+func(x int) int
+func(a, _ int, z float32) bool
+func(a, b int, z float32) (bool)
+func(prefix string, values ...int)
+func(a, b int, z float64, opt ...interface{}) (success bool)
+func(int, int, float64) (float64, *[]int)
+func(n int) func(p *T)
+
+ + +

Interface types

+ +

+An interface type specifies a method set called its interface. +A variable of interface type can store a value of any type with a method set +that is any superset of the interface. Such a type is said to +implement the interface. +The value of an uninitialized variable of interface type is nil. +

+ +
+InterfaceType      = "interface" "{" { ( MethodSpec | InterfaceTypeName ) ";" } "}" .
+MethodSpec         = MethodName Signature .
+MethodName         = identifier .
+InterfaceTypeName  = TypeName .
+
+ +

+An interface type may specify methods explicitly through method specifications, +or it may embed methods of other interfaces through interface type names. +

+ +
+// A simple File interface.
+interface {
+	Read([]byte) (int, error)
+	Write([]byte) (int, error)
+	Close() error
+}
+
+ +

+The name of each explicitly specified method must be unique +and not blank. +

+ +
+interface {
+	String() string
+	String() string  // illegal: String not unique
+	_(x int)         // illegal: method must have non-blank name
+}
+
+ +

+More than one type may implement an interface. +For instance, if two types S1 and S2 +have the method set +

+ +
+func (p T) Read(p []byte) (n int, err error)
+func (p T) Write(p []byte) (n int, err error)
+func (p T) Close() error
+
+ +

+(where T stands for either S1 or S2) +then the File interface is implemented by both S1 and +S2, regardless of what other methods +S1 and S2 may have or share. +

+ +

+A type implements any interface comprising any subset of its methods +and may therefore implement several distinct interfaces. For +instance, all types implement the empty interface: +

+ +
+interface{}
+
+ +

+Similarly, consider this interface specification, +which appears within a type declaration +to define an interface called Locker: +

+ +
+type Locker interface {
+	Lock()
+	Unlock()
+}
+
+ +

+If S1 and S2 also implement +

+ +
+func (p T) Lock() { … }
+func (p T) Unlock() { … }
+
+ +

+they implement the Locker interface as well +as the File interface. +

+ +

+An interface T may use a (possibly qualified) interface type +name E in place of a method specification. This is called +embedding interface E in T. +The method set of T is the union +of the method sets of T’s explicitly declared methods and of +T’s embedded interfaces. +

+ +
+type Reader interface {
+	Read(p []byte) (n int, err error)
+	Close() error
+}
+
+type Writer interface {
+	Write(p []byte) (n int, err error)
+	Close() error
+}
+
+// ReadWriter's methods are Read, Write, and Close.
+type ReadWriter interface {
+	Reader  // includes methods of Reader in ReadWriter's method set
+	Writer  // includes methods of Writer in ReadWriter's method set
+}
+
+ +

+A union of method sets contains the (exported and non-exported) +methods of each method set exactly once, and methods with the +same names must +have identical signatures. +

+ +
+type ReadCloser interface {
+	Reader   // includes methods of Reader in ReadCloser's method set
+	Close()  // illegal: signatures of Reader.Close and Close are different
+}
+
+ +

+An interface type T may not embed itself +or any interface type that embeds T, recursively. +

+ +
+// illegal: Bad cannot embed itself
+type Bad interface {
+	Bad
+}
+
+// illegal: Bad1 cannot embed itself using Bad2
+type Bad1 interface {
+	Bad2
+}
+type Bad2 interface {
+	Bad1
+}
+
+ +

Map types

+ +

+A map is an unordered group of elements of one type, called the +element type, indexed by a set of unique keys of another type, +called the key type. +The value of an uninitialized map is nil. +

+ +
+MapType     = "map" "[" KeyType "]" ElementType .
+KeyType     = Type .
+
+ +

+The comparison operators +== and != must be fully defined +for operands of the key type; thus the key type must not be a function, map, or +slice. +If the key type is an interface type, these +comparison operators must be defined for the dynamic key values; +failure will cause a run-time panic. + +

+ +
+map[string]int
+map[*T]struct{ x, y float64 }
+map[string]interface{}
+
+ +

+The number of map elements is called its length. +For a map m, it can be discovered using the +built-in function len +and may change during execution. Elements may be added during execution +using assignments and retrieved with +index expressions; they may be removed with the +delete built-in function. +

+

+A new, empty map value is made using the built-in +function make, +which takes the map type and an optional capacity hint as arguments: +

+ +
+make(map[string]int)
+make(map[string]int, 100)
+
+ +

+The initial capacity does not bound its size: +maps grow to accommodate the number of items +stored in them, with the exception of nil maps. +A nil map is equivalent to an empty map except that no elements +may be added. +

+ +

Channel types

+ +

+A channel provides a mechanism for +concurrently executing functions +to communicate by +sending and +receiving +values of a specified element type. +The value of an uninitialized channel is nil. +

+ +
+ChannelType = ( "chan" | "chan" "<-" | "<-" "chan" ) ElementType .
+
+ +

+The optional <- operator specifies the channel direction, +send or receive. If no direction is given, the channel is +bidirectional. +A channel may be constrained only to send or only to receive by +assignment or +explicit conversion. +

+ +
+chan T          // can be used to send and receive values of type T
+chan<- float64  // can only be used to send float64s
+<-chan int      // can only be used to receive ints
+
+ +

+The <- operator associates with the leftmost chan +possible: +

+ +
+chan<- chan int    // same as chan<- (chan int)
+chan<- <-chan int  // same as chan<- (<-chan int)
+<-chan <-chan int  // same as <-chan (<-chan int)
+chan (<-chan int)
+
+ +

+A new, initialized channel +value can be made using the built-in function +make, +which takes the channel type and an optional capacity as arguments: +

+ +
+make(chan int, 100)
+
+ +

+The capacity, in number of elements, sets the size of the buffer in the channel. +If the capacity is zero or absent, the channel is unbuffered and communication +succeeds only when both a sender and receiver are ready. Otherwise, the channel +is buffered and communication succeeds without blocking if the buffer +is not full (sends) or not empty (receives). +A nil channel is never ready for communication. +

+ +

+A channel may be closed with the built-in function +close. +The multi-valued assignment form of the +receive operator +reports whether a received value was sent before +the channel was closed. +

+ +

+A single channel may be used in +send statements, +receive operations, +and calls to the built-in functions +cap and +len +by any number of goroutines without further synchronization. +Channels act as first-in-first-out queues. +For example, if one goroutine sends values on a channel +and a second goroutine receives them, the values are +received in the order sent. +

+ +

Properties of types and values

+ +

Type identity

+ +

+Two types are either identical or different. +

+ +

+A defined type is always different from any other type. +Otherwise, two types are identical if their underlying type literals are +structurally equivalent; that is, they have the same literal structure and corresponding +components have identical types. In detail: +

+ +
    +
  • Two array types are identical if they have identical element types and + the same array length.
  • + +
  • Two slice types are identical if they have identical element types.
  • + +
  • Two struct types are identical if they have the same sequence of fields, + and if corresponding fields have the same names, and identical types, + and identical tags. + Non-exported field names from different + packages are always different.
  • + +
  • Two pointer types are identical if they have identical base types.
  • + +
  • Two function types are identical if they have the same number of parameters + and result values, corresponding parameter and result types are + identical, and either both functions are variadic or neither is. + Parameter and result names are not required to match.
  • + +
  • Two interface types are identical if they have the same set of methods + with the same names and identical function types. + Non-exported method names from different + packages are always different. The order of the methods is irrelevant.
  • + +
  • Two map types are identical if they have identical key and element types.
  • + +
  • Two channel types are identical if they have identical element types and + the same direction.
  • +
+ +

+Given the declarations +

+ +
+type (
+	A0 = []string
+	A1 = A0
+	A2 = struct{ a, b int }
+	A3 = int
+	A4 = func(A3, float64) *A0
+	A5 = func(x int, _ float64) *[]string
+)
+
+type (
+	B0 A0
+	B1 []string
+	B2 struct{ a, b int }
+	B3 struct{ a, c int }
+	B4 func(int, float64) *B0
+	B5 func(x int, y float64) *A1
+)
+
+type	C0 = B0
+
+ +

+these types are identical: +

+ +
+A0, A1, and []string
+A2 and struct{ a, b int }
+A3 and int
+A4, func(int, float64) *[]string, and A5
+
+B0 and C0
+[]int and []int
+struct{ a, b *T5 } and struct{ a, b *T5 }
+func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
+
+ +

+B0 and B1 are different because they are new types +created by distinct type definitions; +func(int, float64) *B0 and func(x int, y float64) *[]string +are different because B0 is different from []string. +

+ + +

Assignability

+ +

+A value x is assignable to a variable of type T +("x is assignable to T") if one of the following conditions applies: +

+ +
    +
  • +x's type is identical to T. +
  • +
  • +x's type V and T have identical +underlying types and at least one of V +or T is not a defined type. +
  • +
  • +T is an interface type and +x implements T. +
  • +
  • +x is a bidirectional channel value, T is a channel type, +x's type V and T have identical element types, +and at least one of V or T is not a defined type. +
  • +
  • +x is the predeclared identifier nil and T +is a pointer, function, slice, map, channel, or interface type. +
  • +
  • +x is an untyped constant +representable +by a value of type T. +
  • +
+ + +

Representability

+ +

+A constant x is representable +by a value of type T if one of the following conditions applies: +

+ +
    +
  • +x is in the set of values determined by T. +
  • + +
  • +T is a floating-point type and x can be rounded to T's +precision without overflow. Rounding uses IEEE 754 round-to-even rules but with an IEEE +negative zero further simplified to an unsigned zero. Note that constant values never result +in an IEEE negative zero, NaN, or infinity. +
  • + +
  • +T is a complex type, and x's +components real(x) and imag(x) +are representable by values of T's component type (float32 or +float64). +
  • +
+ +
+x                   T           x is representable by a value of T because
+
+'a'                 byte        97 is in the set of byte values
+97                  rune        rune is an alias for int32, and 97 is in the set of 32-bit integers
+"foo"               string      "foo" is in the set of string values
+1024                int16       1024 is in the set of 16-bit integers
+42.0                byte        42 is in the set of unsigned 8-bit integers
+1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
+2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
+-1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
+0i                  int         0 is an integer value
+(42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
+
+ +
+x                   T           x is not representable by a value of T because
+
+0                   bool        0 is not in the set of boolean values
+'a'                 string      'a' is a rune, it is not in the set of string values
+1024                byte        1024 is not in the set of unsigned 8-bit integers
+-1                  uint16      -1 is not in the set of unsigned 16-bit integers
+1.1                 int         1.1 is not an integer value
+42i                 float32     (0 + 42i) is not in the set of float32 values
+1e1000              float64     1e1000 overflows to IEEE +Inf after rounding
+
+ + +

Blocks

+ +

+A block is a possibly empty sequence of declarations and statements +within matching brace brackets. +

+ +
+Block = "{" StatementList "}" .
+StatementList = { Statement ";" } .
+
+ +

+In addition to explicit blocks in the source code, there are implicit blocks: +

+ +
    +
  1. The universe block encompasses all Go source text.
  2. + +
  3. Each package has a package block containing all + Go source text for that package.
  4. + +
  5. Each file has a file block containing all Go source text + in that file.
  6. + +
  7. Each "if", + "for", and + "switch" + statement is considered to be in its own implicit block.
  8. + +
  9. Each clause in a "switch" + or "select" statement + acts as an implicit block.
  10. +
+ +

+Blocks nest and influence scoping. +

+ + +

Declarations and scope

+ +

+A declaration binds a non-blank identifier to a +constant, +type, +variable, +function, +label, or +package. +Every identifier in a program must be declared. +No identifier may be declared twice in the same block, and +no identifier may be declared in both the file and package block. +

+ +

+The blank identifier may be used like any other identifier +in a declaration, but it does not introduce a binding and thus is not declared. +In the package block, the identifier init may only be used for +init function declarations, +and like the blank identifier it does not introduce a new binding. +

+ +
+Declaration   = ConstDecl | TypeDecl | VarDecl .
+TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .
+
+ +

+The scope of a declared identifier is the extent of source text in which +the identifier denotes the specified constant, type, variable, function, label, or package. +

+ +

+Go is lexically scoped using blocks: +

+ +
    +
  1. The scope of a predeclared identifier is the universe block.
  2. + +
  3. The scope of an identifier denoting a constant, type, variable, + or function (but not method) declared at top level (outside any + function) is the package block.
  4. + +
  5. The scope of the package name of an imported package is the file block + of the file containing the import declaration.
  6. + +
  7. The scope of an identifier denoting a method receiver, function parameter, + or result variable is the function body.
  8. + +
  9. The scope of a constant or variable identifier declared + inside a function begins at the end of the ConstSpec or VarSpec + (ShortVarDecl for short variable declarations) + and ends at the end of the innermost containing block.
  10. + +
  11. The scope of a type identifier declared inside a function + begins at the identifier in the TypeSpec + and ends at the end of the innermost containing block.
  12. +
+ +

+An identifier declared in a block may be redeclared in an inner block. +While the identifier of the inner declaration is in scope, it denotes +the entity declared by the inner declaration. +

+ +

+The package clause is not a declaration; the package name +does not appear in any scope. Its purpose is to identify the files belonging +to the same package and to specify the default package name for import +declarations. +

+ + +

Label scopes

+ +

+Labels are declared by labeled statements and are +used in the "break", +"continue", and +"goto" statements. +It is illegal to define a label that is never used. +In contrast to other identifiers, labels are not block scoped and do +not conflict with identifiers that are not labels. The scope of a label +is the body of the function in which it is declared and excludes +the body of any nested function. +

+ + +

Blank identifier

+ +

+The blank identifier is represented by the underscore character _. +It serves as an anonymous placeholder instead of a regular (non-blank) +identifier and has special meaning in declarations, +as an operand, and in assignments. +

+ + +

Predeclared identifiers

+ +

+The following identifiers are implicitly declared in the +universe block: +

+
+Types:
+	bool byte complex64 complex128 error float32 float64
+	int int8 int16 int32 int64 rune string
+	uint uint8 uint16 uint32 uint64 uintptr
+
+Constants:
+	true false iota
+
+Zero value:
+	nil
+
+Functions:
+	append cap close complex copy delete imag len
+	make new panic print println real recover
+
+ + +

Exported identifiers

+ +

+An identifier may be exported to permit access to it from another package. +An identifier is exported if both: +

+
    +
  1. the first character of the identifier's name is a Unicode upper case + letter (Unicode class "Lu"); and
  2. +
  3. the identifier is declared in the package block + or it is a field name or + method name.
  4. +
+

+All other identifiers are not exported. +

+ + +

Uniqueness of identifiers

+ +

+Given a set of identifiers, an identifier is called unique if it is +different from every other in the set. +Two identifiers are different if they are spelled differently, or if they +appear in different packages and are not +exported. Otherwise, they are the same. +

+ +

Constant declarations

+ +

+A constant declaration binds a list of identifiers (the names of +the constants) to the values of a list of constant expressions. +The number of identifiers must be equal +to the number of expressions, and the nth identifier on +the left is bound to the value of the nth expression on the +right. +

+ +
+ConstDecl      = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
+ConstSpec      = IdentifierList [ [ Type ] "=" ExpressionList ] .
+
+IdentifierList = identifier { "," identifier } .
+ExpressionList = Expression { "," Expression } .
+
+ +

+If the type is present, all constants take the type specified, and +the expressions must be assignable to that type. +If the type is omitted, the constants take the +individual types of the corresponding expressions. +If the expression values are untyped constants, +the declared constants remain untyped and the constant identifiers +denote the constant values. For instance, if the expression is a +floating-point literal, the constant identifier denotes a floating-point +constant, even if the literal's fractional part is zero. +

+ +
+const Pi float64 = 3.14159265358979323846
+const zero = 0.0         // untyped floating-point constant
+const (
+	size int64 = 1024
+	eof        = -1  // untyped integer constant
+)
+const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
+const u, v float32 = 0, 3    // u = 0.0, v = 3.0
+
+ +

+Within a parenthesized const declaration list the +expression list may be omitted from any but the first ConstSpec. +Such an empty list is equivalent to the textual substitution of the +first preceding non-empty expression list and its type if any. +Omitting the list of expressions is therefore equivalent to +repeating the previous list. The number of identifiers must be equal +to the number of expressions in the previous list. +Together with the iota constant generator +this mechanism permits light-weight declaration of sequential values: +

+ +
+const (
+	Sunday = iota
+	Monday
+	Tuesday
+	Wednesday
+	Thursday
+	Friday
+	Partyday
+	numberOfDays  // this constant is not exported
+)
+
+ + +

Iota

+ +

+Within a constant declaration, the predeclared identifier +iota represents successive untyped integer +constants. Its value is the index of the respective ConstSpec +in that constant declaration, starting at zero. +It can be used to construct a set of related constants: +

+ +
+const (
+	c0 = iota  // c0 == 0
+	c1 = iota  // c1 == 1
+	c2 = iota  // c2 == 2
+)
+
+const (
+	a = 1 << iota  // a == 1  (iota == 0)
+	b = 1 << iota  // b == 2  (iota == 1)
+	c = 3          // c == 3  (iota == 2, unused)
+	d = 1 << iota  // d == 8  (iota == 3)
+)
+
+const (
+	u         = iota * 42  // u == 0     (untyped integer constant)
+	v float64 = iota * 42  // v == 42.0  (float64 constant)
+	w         = iota * 42  // w == 84    (untyped integer constant)
+)
+
+const x = iota  // x == 0
+const y = iota  // y == 0
+
+ +

+By definition, multiple uses of iota in the same ConstSpec all have the same value: +

+ +
+const (
+	bit0, mask0 = 1 << iota, 1<<iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
+	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
+	_, _                                  //                        (iota == 2, unused)
+	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
+)
+
+ +

+This last example exploits the implicit repetition +of the last non-empty expression list. +

+ + +

Type declarations

+ +

+A type declaration binds an identifier, the type name, to a type. +Type declarations come in two forms: alias declarations and type definitions. +

+ +
+TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
+TypeSpec = AliasDecl | TypeDef .
+
+ +

Alias declarations

+ +

+An alias declaration binds an identifier to the given type. +

+ +
+AliasDecl = identifier "=" Type .
+
+ +

+Within the scope of +the identifier, it serves as an alias for the type. +

+ +
+type (
+	nodeList = []*Node  // nodeList and []*Node are identical types
+	Polar    = polar    // Polar and polar denote identical types
+)
+
+ + +

Type definitions

+ +

+A type definition creates a new, distinct type with the same +underlying type and operations as the given type, +and binds an identifier to it. +

+ +
+TypeDef = identifier Type .
+
+ +

+The new type is called a defined type. +It is different from any other type, +including the type it is created from. +

+ +
+type (
+	Point struct{ x, y float64 }  // Point and struct{ x, y float64 } are different types
+	polar Point                   // polar and Point denote different types
+)
+
+type TreeNode struct {
+	left, right *TreeNode
+	value *Comparable
+}
+
+type Block interface {
+	BlockSize() int
+	Encrypt(src, dst []byte)
+	Decrypt(src, dst []byte)
+}
+
+ +

+A defined type may have methods associated with it. +It does not inherit any methods bound to the given type, +but the method set +of an interface type or of elements of a composite type remains unchanged: +

+ +
+// A Mutex is a data type with two methods, Lock and Unlock.
+type Mutex struct         { /* Mutex fields */ }
+func (m *Mutex) Lock()    { /* Lock implementation */ }
+func (m *Mutex) Unlock()  { /* Unlock implementation */ }
+
+// NewMutex has the same composition as Mutex but its method set is empty.
+type NewMutex Mutex
+
+// The method set of PtrMutex's underlying type *Mutex remains unchanged,
+// but the method set of PtrMutex is empty.
+type PtrMutex *Mutex
+
+// The method set of *PrintableMutex contains the methods
+// Lock and Unlock bound to its embedded field Mutex.
+type PrintableMutex struct {
+	Mutex
+}
+
+// MyBlock is an interface type that has the same method set as Block.
+type MyBlock Block
+
+ +

+Type definitions may be used to define different boolean, numeric, +or string types and associate methods with them: +

+ +
+type TimeZone int
+
+const (
+	EST TimeZone = -(5 + iota)
+	CST
+	MST
+	PST
+)
+
+func (tz TimeZone) String() string {
+	return fmt.Sprintf("GMT%+dh", tz)
+}
+
+ + +

Variable declarations

+ +

+A variable declaration creates one or more variables, +binds corresponding identifiers to them, and gives each a type and an initial value. +

+ +
+VarDecl     = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) .
+VarSpec     = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) .
+
+ +
+var i int
+var U, V, W float64
+var k = 0
+var x, y float32 = -1, -2
+var (
+	i       int
+	u, v, s = 2.0, 3.0, "bar"
+)
+var re, im = complexSqrt(-1)
+var _, found = entries[name]  // map lookup; only interested in "found"
+
+ +

+If a list of expressions is given, the variables are initialized +with the expressions following the rules for assignments. +Otherwise, each variable is initialized to its zero value. +

+ +

+If a type is present, each variable is given that type. +Otherwise, each variable is given the type of the corresponding +initialization value in the assignment. +If that value is an untyped constant, it is first implicitly +converted to its default type; +if it is an untyped boolean value, it is first implicitly converted to type bool. +The predeclared value nil cannot be used to initialize a variable +with no explicit type. +

+ +
+var d = math.Sin(0.5)  // d is float64
+var i = 42             // i is int
+var t, ok = x.(T)      // t is T, ok is bool
+var n = nil            // illegal
+
+ +

+Implementation restriction: A compiler may make it illegal to declare a variable +inside a function body if the variable is +never used. +

+ +

Short variable declarations

+ +

+A short variable declaration uses the syntax: +

+ +
+ShortVarDecl = IdentifierList ":=" ExpressionList .
+
+ +

+It is shorthand for a regular variable declaration +with initializer expressions but no types: +

+ +
+"var" IdentifierList = ExpressionList .
+
+ +
+i, j := 0, 10
+f := func() int { return 7 }
+ch := make(chan int)
+r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
+_, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
+
+ +

+Unlike regular variable declarations, a short variable declaration may redeclare +variables provided they were originally declared earlier in the same block +(or the parameter lists if the block is the function body) with the same type, +and at least one of the non-blank variables is new. +As a consequence, redeclaration can only appear in a multi-variable short declaration. +Redeclaration does not introduce a new variable; it just assigns a new value to the original. +

+ +
+field1, offset := nextField(str, 0)
+field2, offset := nextField(str, offset)  // redeclares offset
+a, a := 1, 2                              // illegal: double declaration of a or no new variable if a was declared elsewhere
+
+ +

+Short variable declarations may appear only inside functions. +In some contexts such as the initializers for +"if", +"for", or +"switch" statements, +they can be used to declare local temporary variables. +

+ +

Function declarations

+ +

+A function declaration binds an identifier, the function name, +to a function. +

+ +
+FunctionDecl = "func" FunctionName Signature [ FunctionBody ] .
+FunctionName = identifier .
+FunctionBody = Block .
+
+ +

+If the function's signature declares +result parameters, the function body's statement list must end in +a terminating statement. +

+ +
+func IndexRune(s string, r rune) int {
+	for i, c := range s {
+		if c == r {
+			return i
+		}
+	}
+	// invalid: missing return statement
+}
+
+ +

+A function declaration may omit the body. Such a declaration provides the +signature for a function implemented outside Go, such as an assembly routine. +

+ +
+func min(x int, y int) int {
+	if x < y {
+		return x
+	}
+	return y
+}
+
+func flushICache(begin, end uintptr)  // implemented externally
+
+ +

Method declarations

+ +

+A method is a function with a receiver. +A method declaration binds an identifier, the method name, to a method, +and associates the method with the receiver's base type. +

+ +
+MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
+Receiver   = Parameters .
+
+ +

+The receiver is specified via an extra parameter section preceding the method +name. That parameter section must declare a single non-variadic parameter, the receiver. +Its type must be a defined type T or a +pointer to a defined type T. T is called the receiver +base type. A receiver base type cannot be a pointer or interface type and +it must be defined in the same package as the method. +The method is said to be bound to its receiver base type and the method name +is visible only within selectors for type T +or *T. +

+ +

+A non-blank receiver identifier must be +unique in the method signature. +If the receiver's value is not referenced inside the body of the method, +its identifier may be omitted in the declaration. The same applies in +general to parameters of functions and methods. +

+ +

+For a base type, the non-blank names of methods bound to it must be unique. +If the base type is a struct type, +the non-blank method and field names must be distinct. +

+ +

+Given defined type Point, the declarations +

+ +
+func (p *Point) Length() float64 {
+	return math.Sqrt(p.x * p.x + p.y * p.y)
+}
+
+func (p *Point) Scale(factor float64) {
+	p.x *= factor
+	p.y *= factor
+}
+
+ +

+bind the methods Length and Scale, +with receiver type *Point, +to the base type Point. +

+ +

+The type of a method is the type of a function with the receiver as first +argument. For instance, the method Scale has type +

+ +
+func(p *Point, factor float64)
+
+ +

+However, a function declared this way is not a method. +

+ + +

Expressions

+ +

+An expression specifies the computation of a value by applying +operators and functions to operands. +

+ +

Operands

+ +

+Operands denote the elementary values in an expression. An operand may be a +literal, a (possibly qualified) +non-blank identifier denoting a +constant, +variable, or +function, +or a parenthesized expression. +

+ +

+The blank identifier may appear as an +operand only on the left-hand side of an assignment. +

+ +
+Operand     = Literal | OperandName | "(" Expression ")" .
+Literal     = BasicLit | CompositeLit | FunctionLit .
+BasicLit    = int_lit | float_lit | imaginary_lit | rune_lit | string_lit .
+OperandName = identifier | QualifiedIdent .
+
+ +

Qualified identifiers

+ +

+A qualified identifier is an identifier qualified with a package name prefix. +Both the package name and the identifier must not be +blank. +

+ +
+QualifiedIdent = PackageName "." identifier .
+
+ +

+A qualified identifier accesses an identifier in a different package, which +must be imported. +The identifier must be exported and +declared in the package block of that package. +

+ +
+math.Sin	// denotes the Sin function in package math
+
+ +

Composite literals

+ +

+Composite literals construct values for structs, arrays, slices, and maps +and create a new value each time they are evaluated. +They consist of the type of the literal followed by a brace-bound list of elements. +Each element may optionally be preceded by a corresponding key. +

+ +
+CompositeLit  = LiteralType LiteralValue .
+LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
+                SliceType | MapType | TypeName .
+LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
+ElementList   = KeyedElement { "," KeyedElement } .
+KeyedElement  = [ Key ":" ] Element .
+Key           = FieldName | Expression | LiteralValue .
+FieldName     = identifier .
+Element       = Expression | LiteralValue .
+
+ +

+The LiteralType's underlying type must be a struct, array, slice, or map type +(the grammar enforces this constraint except when the type is given +as a TypeName). +The types of the elements and keys must be assignable +to the respective field, element, and key types of the literal type; +there is no additional conversion. +The key is interpreted as a field name for struct literals, +an index for array and slice literals, and a key for map literals. +For map literals, all elements must have a key. It is an error +to specify multiple elements with the same field name or +constant key value. For non-constant map keys, see the section on +evaluation order. +

+ +

+For struct literals the following rules apply: +

+
    +
  • A key must be a field name declared in the struct type. +
  • +
  • An element list that does not contain any keys must + list an element for each struct field in the + order in which the fields are declared. +
  • +
  • If any element has a key, every element must have a key. +
  • +
  • An element list that contains keys does not need to + have an element for each struct field. Omitted fields + get the zero value for that field. +
  • +
  • A literal may omit the element list; such a literal evaluates + to the zero value for its type. +
  • +
  • It is an error to specify an element for a non-exported + field of a struct belonging to a different package. +
  • +
+ +

+Given the declarations +

+
+type Point3D struct { x, y, z float64 }
+type Line struct { p, q Point3D }
+
+ +

+one may write +

+ +
+origin := Point3D{}                            // zero value for Point3D
+line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
+
+ +

+For array and slice literals the following rules apply: +

+
    +
  • Each element has an associated integer index marking + its position in the array. +
  • +
  • An element with a key uses the key as its index. The + key must be a non-negative constant + representable by + a value of type int; and if it is typed + it must be of integer type. +
  • +
  • An element without a key uses the previous element's index plus one. + If the first element has no key, its index is zero. +
  • +
+ +

+Taking the address of a composite literal +generates a pointer to a unique variable initialized +with the literal's value. +

+ +
+var pointer *Point3D = &Point3D{y: 1000}
+
+ +

+Note that the zero value for a slice or map +type is not the same as an initialized but empty value of the same type. +Consequently, taking the address of an empty slice or map composite literal +does not have the same effect as allocating a new slice or map value with +new. +

+ +
+p1 := &[]int{}    // p1 points to an initialized, empty slice with value []int{} and length 0
+p2 := new([]int)  // p2 points to an uninitialized slice with value nil and length 0
+
+ +

+The length of an array literal is the length specified in the literal type. +If fewer elements than the length are provided in the literal, the missing +elements are set to the zero value for the array element type. +It is an error to provide elements with index values outside the index range +of the array. The notation ... specifies an array length equal +to the maximum element index plus one. +

+ +
+buffer := [10]string{}             // len(buffer) == 10
+intSet := [6]int{1, 2, 3, 5}       // len(intSet) == 6
+days := [...]string{"Sat", "Sun"}  // len(days) == 2
+
+ +

+A slice literal describes the entire underlying array literal. +Thus the length and capacity of a slice literal are the maximum +element index plus one. A slice literal has the form +

+ +
+[]T{x1, x2, … xn}
+
+ +

+and is shorthand for a slice operation applied to an array: +

+ +
+tmp := [n]T{x1, x2, … xn}
+tmp[0 : n]
+
+ +

+Within a composite literal of array, slice, or map type T, +elements or map keys that are themselves composite literals may elide the respective +literal type if it is identical to the element or key type of T. +Similarly, elements or keys that are addresses of composite literals may elide +the &T when the element or key type is *T. +

+ +
+[...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
+[][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
+[][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
+map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
+map[Point]string{{0, 0}: "orig"}    // same as map[Point]string{Point{0, 0}: "orig"}
+
+type PPoint *Point
+[2]*Point{{1.5, -3.5}, {}}          // same as [2]*Point{&Point{1.5, -3.5}, &Point{}}
+[2]PPoint{{1.5, -3.5}, {}}          // same as [2]PPoint{PPoint(&Point{1.5, -3.5}), PPoint(&Point{})}
+
+ +

+A parsing ambiguity arises when a composite literal using the +TypeName form of the LiteralType appears as an operand between the +keyword and the opening brace of the block +of an "if", "for", or "switch" statement, and the composite literal +is not enclosed in parentheses, square brackets, or curly braces. +In this rare case, the opening brace of the literal is erroneously parsed +as the one introducing the block of statements. To resolve the ambiguity, +the composite literal must appear within parentheses. +

+ +
+if x == (T{a,b,c}[i]) { … }
+if (x == T{a,b,c}[i]) { … }
+
+ +

+Examples of valid array, slice, and map literals: +

+ +
+// list of prime numbers
+primes := []int{2, 3, 5, 7, 9, 2147483647}
+
+// vowels[ch] is true if ch is a vowel
+vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}
+
+// the array [10]float32{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1}
+filter := [10]float32{-1, 4: -0.1, -0.1, 9: -1}
+
+// frequencies in Hz for equal-tempered scale (A4 = 440Hz)
+noteFrequency := map[string]float32{
+	"C0": 16.35, "D0": 18.35, "E0": 20.60, "F0": 21.83,
+	"G0": 24.50, "A0": 27.50, "B0": 30.87,
+}
+
+ + +

Function literals

+ +

+A function literal represents an anonymous function. +

+ +
+FunctionLit = "func" Signature FunctionBody .
+
+ +
+func(a, b int, z float64) bool { return a*b < int(z) }
+
+ +

+A function literal can be assigned to a variable or invoked directly. +

+ +
+f := func(x, y int) int { return x + y }
+func(ch chan int) { ch <- ACK }(replyChan)
+
+ +

+Function literals are closures: they may refer to variables +defined in a surrounding function. Those variables are then shared between +the surrounding function and the function literal, and they survive as long +as they are accessible. +

+ + +

Primary expressions

+ +

+Primary expressions are the operands for unary and binary expressions. +

+ +
+PrimaryExpr =
+	Operand |
+	Conversion |
+	MethodExpr |
+	PrimaryExpr Selector |
+	PrimaryExpr Index |
+	PrimaryExpr Slice |
+	PrimaryExpr TypeAssertion |
+	PrimaryExpr Arguments .
+
+Selector       = "." identifier .
+Index          = "[" Expression "]" .
+Slice          = "[" [ Expression ] ":" [ Expression ] "]" |
+                 "[" [ Expression ] ":" Expression ":" Expression "]" .
+TypeAssertion  = "." "(" Type ")" .
+Arguments      = "(" [ ( ExpressionList | Type [ "," ExpressionList ] ) [ "..." ] [ "," ] ] ")" .
+
+ + +
+x
+2
+(s + ".txt")
+f(3.1415, true)
+Point{1, 2}
+m["foo"]
+s[i : j + 1]
+obj.color
+f.p[i].x()
+
+ + +

Selectors

+ +

+For a primary expression x +that is not a package name, the +selector expression +

+ +
+x.f
+
+ +

+denotes the field or method f of the value x +(or sometimes *x; see below). +The identifier f is called the (field or method) selector; +it must not be the blank identifier. +The type of the selector expression is the type of f. +If x is a package name, see the section on +qualified identifiers. +

+ +

+A selector f may denote a field or method f of +a type T, or it may refer +to a field or method f of a nested +embedded field of T. +The number of embedded fields traversed +to reach f is called its depth in T. +The depth of a field or method f +declared in T is zero. +The depth of a field or method f declared in +an embedded field A in T is the +depth of f in A plus one. +

+ +

+The following rules apply to selectors: +

+ +
    +
  1. +For a value x of type T or *T +where T is not a pointer or interface type, +x.f denotes the field or method at the shallowest depth +in T where there +is such an f. +If there is not exactly one f +with shallowest depth, the selector expression is illegal. +
  2. + +
  3. +For a value x of type I where I +is an interface type, x.f denotes the actual method with name +f of the dynamic value of x. +If there is no method with name f in the +method set of I, the selector +expression is illegal. +
  4. + +
  5. +As an exception, if the type of x is a defined +pointer type and (*x).f is a valid selector expression denoting a field +(but not a method), x.f is shorthand for (*x).f. +
  6. + +
  7. +In all other cases, x.f is illegal. +
  8. + +
  9. +If x is of pointer type and has the value +nil and x.f denotes a struct field, +assigning to or evaluating x.f +causes a run-time panic. +
  10. + +
  11. +If x is of interface type and has the value +nil, calling or +evaluating the method x.f +causes a run-time panic. +
  12. +
+ +

+For example, given the declarations: +

+ +
+type T0 struct {
+	x int
+}
+
+func (*T0) M0()
+
+type T1 struct {
+	y int
+}
+
+func (T1) M1()
+
+type T2 struct {
+	z int
+	T1
+	*T0
+}
+
+func (*T2) M2()
+
+type Q *T2
+
+var t T2     // with t.T0 != nil
+var p *T2    // with p != nil and (*p).T0 != nil
+var q Q = p
+
+ +

+one may write: +

+ +
+t.z          // t.z
+t.y          // t.T1.y
+t.x          // (*t.T0).x
+
+p.z          // (*p).z
+p.y          // (*p).T1.y
+p.x          // (*(*p).T0).x
+
+q.x          // (*(*q).T0).x        (*q).x is a valid field selector
+
+p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
+p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
+p.M2()       // p.M2()              M2 expects *T2 receiver
+t.M2()       // (&t).M2()           M2 expects *T2 receiver, see section on Calls
+
+ +

+but the following is invalid: +

+ +
+q.M0()       // (*q).M0 is valid but not a field selector
+
+ + +

Method expressions

+ +

+If M is in the method set of type T, +T.M is a function that is callable as a regular function +with the same arguments as M prefixed by an additional +argument that is the receiver of the method. +

+ +
+MethodExpr    = ReceiverType "." MethodName .
+ReceiverType  = Type .
+
+ +

+Consider a struct type T with two methods, +Mv, whose receiver is of type T, and +Mp, whose receiver is of type *T. +

+ +
+type T struct {
+	a int
+}
+func (tv  T) Mv(a int) int         { return 0 }  // value receiver
+func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
+
+var t T
+
+ +

+The expression +

+ +
+T.Mv
+
+ +

+yields a function equivalent to Mv but +with an explicit receiver as its first argument; it has signature +

+ +
+func(tv T, a int) int
+
+ +

+That function may be called normally with an explicit receiver, so +these five invocations are equivalent: +

+ +
+t.Mv(7)
+T.Mv(t, 7)
+(T).Mv(t, 7)
+f1 := T.Mv; f1(t, 7)
+f2 := (T).Mv; f2(t, 7)
+
+ +

+Similarly, the expression +

+ +
+(*T).Mp
+
+ +

+yields a function value representing Mp with signature +

+ +
+func(tp *T, f float32) float32
+
+ +

+For a method with a value receiver, one can derive a function +with an explicit pointer receiver, so +

+ +
+(*T).Mv
+
+ +

+yields a function value representing Mv with signature +

+ +
+func(tv *T, a int) int
+
+ +

+Such a function indirects through the receiver to create a value +to pass as the receiver to the underlying method; +the method does not overwrite the value whose address is passed in +the function call. +

+ +

+The final case, a value-receiver function for a pointer-receiver method, +is illegal because pointer-receiver methods are not in the method set +of the value type. +

+ +

+Function values derived from methods are called with function call syntax; +the receiver is provided as the first argument to the call. +That is, given f := T.Mv, f is invoked +as f(t, 7) not t.f(7). +To construct a function that binds the receiver, use a +function literal or +method value. +

+ +

+It is legal to derive a function value from a method of an interface type. +The resulting function takes an explicit receiver of that interface type. +

+ +

Method values

+ +

+If the expression x has static type T and +M is in the method set of type T, +x.M is called a method value. +The method value x.M is a function value that is callable +with the same arguments as a method call of x.M. +The expression x is evaluated and saved during the evaluation of the +method value; the saved copy is then used as the receiver in any calls, +which may be executed later. +

+ +
+type S struct { *T }
+type T int
+func (t T) M() { print(t) }
+
+t := new(T)
+s := S{T: t}
+f := t.M                    // receiver *t is evaluated and stored in f
+g := s.M                    // receiver *(s.T) is evaluated and stored in g
+*t = 42                     // does not affect stored receivers in f and g
+
+ +

+The type T may be an interface or non-interface type. +

+ +

+As in the discussion of method expressions above, +consider a struct type T with two methods, +Mv, whose receiver is of type T, and +Mp, whose receiver is of type *T. +

+ +
+type T struct {
+	a int
+}
+func (tv  T) Mv(a int) int         { return 0 }  // value receiver
+func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
+
+var t T
+var pt *T
+func makeT() T
+
+ +

+The expression +

+ +
+t.Mv
+
+ +

+yields a function value of type +

+ +
+func(int) int
+
+ +

+These two invocations are equivalent: +

+ +
+t.Mv(7)
+f := t.Mv; f(7)
+
+ +

+Similarly, the expression +

+ +
+pt.Mp
+
+ +

+yields a function value of type +

+ +
+func(float32) float32
+
+ +

+As with selectors, a reference to a non-interface method with a value receiver +using a pointer will automatically dereference that pointer: pt.Mv is equivalent to (*pt).Mv. +

+ +

+As with method calls, a reference to a non-interface method with a pointer receiver +using an addressable value will automatically take the address of that value: t.Mp is equivalent to (&t).Mp. +

+ +
+f := t.Mv; f(7)   // like t.Mv(7)
+f := pt.Mp; f(7)  // like pt.Mp(7)
+f := pt.Mv; f(7)  // like (*pt).Mv(7)
+f := t.Mp; f(7)   // like (&t).Mp(7)
+f := makeT().Mp   // invalid: result of makeT() is not addressable
+
+ +

+Although the examples above use non-interface types, it is also legal to create a method value +from a value of interface type. +

+ +
+var i interface { M(int) } = myVal
+f := i.M; f(7)  // like i.M(7)
+
+ + +

Index expressions

+ +

+A primary expression of the form +

+ +
+a[x]
+
+ +

+denotes the element of the array, pointer to array, slice, string or map a indexed by x. +The value x is called the index or map key, respectively. +The following rules apply: +

+ +

+If a is not a map: +

+
    +
  • the index x must be of integer type or an untyped constant
  • +
  • a constant index must be non-negative and + representable by a value of type int
  • +
  • a constant index that is untyped is given type int
  • +
  • the index x is in range if 0 <= x < len(a), + otherwise it is out of range
  • +
+ +

+For a of array type A: +

+
    +
  • a constant index must be in range
  • +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the array element at index x and the type of + a[x] is the element type of A
  • +
+ +

+For a of pointer to array type: +

+
    +
  • a[x] is shorthand for (*a)[x]
  • +
+ +

+For a of slice type S: +

+
    +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the slice element at index x and the type of + a[x] is the element type of S
  • +
+ +

+For a of string type: +

+
    +
  • a constant index must be in range + if the string a is also constant
  • +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the non-constant byte value at index x and the type of + a[x] is byte
  • +
  • a[x] may not be assigned to
  • +
+ +

+For a of map type M: +

+
    +
  • x's type must be + assignable + to the key type of M
  • +
  • if the map contains an entry with key x, + a[x] is the map element with key x + and the type of a[x] is the element type of M
  • +
  • if the map is nil or does not contain such an entry, + a[x] is the zero value + for the element type of M
  • +
+ +

+Otherwise a[x] is illegal. +

+ +

+An index expression on a map a of type map[K]V +used in an assignment or initialization of the special form +

+ +
+v, ok = a[x]
+v, ok := a[x]
+var v, ok = a[x]
+
+ +

+yields an additional untyped boolean value. The value of ok is +true if the key x is present in the map, and +false otherwise. +

+ +

+Assigning to an element of a nil map causes a +run-time panic. +

+ + +

Slice expressions

+ +

+Slice expressions construct a substring or slice from a string, array, pointer +to array, or slice. There are two variants: a simple form that specifies a low +and high bound, and a full form that also specifies a bound on the capacity. +

+ +

Simple slice expressions

+ +

+For a string, array, pointer to array, or slice a, the primary expression +

+ +
+a[low : high]
+
+ +

+constructs a substring or slice. The indices low and +high select which elements of operand a appear +in the result. The result has indices starting at 0 and length equal to +high - low. +After slicing the array a +

+ +
+a := [5]int{1, 2, 3, 4, 5}
+s := a[1:4]
+
+ +

+the slice s has type []int, length 3, capacity 4, and elements +

+ +
+s[0] == 2
+s[1] == 3
+s[2] == 4
+
+ +

+For convenience, any of the indices may be omitted. A missing low +index defaults to zero; a missing high index defaults to the length of the +sliced operand: +

+ +
+a[2:]  // same as a[2 : len(a)]
+a[:3]  // same as a[0 : 3]
+a[:]   // same as a[0 : len(a)]
+
+ +

+If a is a pointer to an array, a[low : high] is shorthand for +(*a)[low : high]. +

+ +

+For arrays or strings, the indices are in range if +0 <= low <= high <= len(a), +otherwise they are out of range. +For slices, the upper index bound is the slice capacity cap(a) rather than the length. +A constant index must be non-negative and +representable by a value of type +int; for arrays or constant strings, constant indices must also be in range. +If both indices are constant, they must satisfy low <= high. +If the indices are out of range at run time, a run-time panic occurs. +

+ +

+Except for untyped strings, if the sliced operand is a string or slice, +the result of the slice operation is a non-constant value of the same type as the operand. +For untyped string operands the result is a non-constant value of type string. +If the sliced operand is an array, it must be addressable +and the result of the slice operation is a slice with the same element type as the array. +

+ +

+If the sliced operand of a valid slice expression is a nil slice, the result +is a nil slice. Otherwise, if the result is a slice, it shares its underlying +array with the operand. +

+ +
+var a [10]int
+s1 := a[3:7]   // underlying array of s1 is array a; &s1[2] == &a[5]
+s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &s2[1] == &a[5]
+s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
+
+ + +

Full slice expressions

+ +

+For an array, pointer to array, or slice a (but not a string), the primary expression +

+ +
+a[low : high : max]
+
+ +

+constructs a slice of the same type, and with the same length and elements as the simple slice +expression a[low : high]. Additionally, it controls the resulting slice's capacity +by setting it to max - low. Only the first index may be omitted; it defaults to 0. +After slicing the array a +

+ +
+a := [5]int{1, 2, 3, 4, 5}
+t := a[1:3:5]
+
+ +

+the slice t has type []int, length 2, capacity 4, and elements +

+ +
+t[0] == 2
+t[1] == 3
+
+ +

+As for simple slice expressions, if a is a pointer to an array, +a[low : high : max] is shorthand for (*a)[low : high : max]. +If the sliced operand is an array, it must be addressable. +

+ +

+The indices are in range if 0 <= low <= high <= max <= cap(a), +otherwise they are out of range. +A constant index must be non-negative and +representable by a value of type +int; for arrays, constant indices must also be in range. +If multiple indices are constant, the constants that are present must be in range relative to each +other. +If the indices are out of range at run time, a run-time panic occurs. +

+ +

Type assertions

+ +

+For an expression x of interface type +and a type T, the primary expression +

+ +
+x.(T)
+
+ +

+asserts that x is not nil +and that the value stored in x is of type T. +The notation x.(T) is called a type assertion. +

+

+More precisely, if T is not an interface type, x.(T) asserts +that the dynamic type of x is identical +to the type T. +In this case, T must implement the (interface) type of x; +otherwise the type assertion is invalid since it is not possible for x +to store a value of type T. +If T is an interface type, x.(T) asserts that the dynamic type +of x implements the interface T. +

+

+If the type assertion holds, the value of the expression is the value +stored in x and its type is T. If the type assertion is false, +a run-time panic occurs. +In other words, even though the dynamic type of x +is known only at run time, the type of x.(T) is +known to be T in a correct program. +

+ +
+var x interface{} = 7          // x has dynamic type int and value 7
+i := x.(int)                   // i has type int and value 7
+
+type I interface { m() }
+
+func f(y I) {
+	s := y.(string)        // illegal: string does not implement I (missing method m)
+	r := y.(io.Reader)     // r has type io.Reader and the dynamic type of y must implement both I and io.Reader
+	…
+}
+
+ +

+A type assertion used in an assignment or initialization of the special form +

+ +
+v, ok = x.(T)
+v, ok := x.(T)
+var v, ok = x.(T)
+var v, ok interface{} = x.(T) // dynamic types of v and ok are T and bool
+
+ +

+yields an additional untyped boolean value. The value of ok is true +if the assertion holds. Otherwise it is false and the value of v is +the zero value for type T. +No run-time panic occurs in this case. +

+ + +

Calls

+ +

+Given an expression f of function type +F, +

+ +
+f(a1, a2, … an)
+
+ +

+calls f with arguments a1, a2, … an. +Except for one special case, arguments must be single-valued expressions +assignable to the parameter types of +F and are evaluated before the function is called. +The type of the expression is the result type +of F. +A method invocation is similar but the method itself +is specified as a selector upon a value of the receiver type for +the method. +

+ +
+math.Atan2(x, y)  // function call
+var pt *Point
+pt.Scale(3.5)     // method call with receiver pt
+
+ +

+In a function call, the function value and arguments are evaluated in +the usual order. +After they are evaluated, the parameters of the call are passed by value to the function +and the called function begins execution. +The return parameters of the function are passed by value +back to the caller when the function returns. +

+ +

+Calling a nil function value +causes a run-time panic. +

+ +

+As a special case, if the return values of a function or method +g are equal in number and individually +assignable to the parameters of another function or method +f, then the call f(g(parameters_of_g)) +will invoke f after binding the return values of +g to the parameters of f in order. The call +of f must contain no parameters other than the call of g, +and g must have at least one return value. +If f has a final ... parameter, it is +assigned the return values of g that remain after +assignment of regular parameters. +

+ +
+func Split(s string, pos int) (string, string) {
+	return s[0:pos], s[pos:]
+}
+
+func Join(s, t string) string {
+	return s + t
+}
+
+if Join(Split(value, len(value)/2)) != value {
+	log.Panic("test fails")
+}
+
+ +

+A method call x.m() is valid if the method set +of (the type of) x contains m and the +argument list can be assigned to the parameter list of m. +If x is addressable and &x's method +set contains m, x.m() is shorthand +for (&x).m(): +

+ +
+var p Point
+p.Scale(3.5)
+
+ +

+There is no distinct method type and there are no method literals. +

+ +

Passing arguments to ... parameters

+ +

+If f is variadic with a final +parameter p of type ...T, then within f +the type of p is equivalent to type []T. +If f is invoked with no actual arguments for p, +the value passed to p is nil. +Otherwise, the value passed is a new slice +of type []T with a new underlying array whose successive elements +are the actual arguments, which all must be assignable +to T. The length and capacity of the slice is therefore +the number of arguments bound to p and may differ for each +call site. +

+ +

+Given the function and calls +

+
+func Greeting(prefix string, who ...string)
+Greeting("nobody")
+Greeting("hello:", "Joe", "Anna", "Eileen")
+
+ +

+within Greeting, who will have the value +nil in the first call, and +[]string{"Joe", "Anna", "Eileen"} in the second. +

+ +

+If the final argument is assignable to a slice type []T and +is followed by ..., it is passed unchanged as the value +for a ...T parameter. In this case no new slice is created. +

+ +

+Given the slice s and call +

+ +
+s := []string{"James", "Jasmine"}
+Greeting("goodbye:", s...)
+
+ +

+within Greeting, who will have the same value as s +with the same underlying array. +

+ + +

Operators

+ +

+Operators combine operands into expressions. +

+ +
+Expression = UnaryExpr | Expression binary_op Expression .
+UnaryExpr  = PrimaryExpr | unary_op UnaryExpr .
+
+binary_op  = "||" | "&&" | rel_op | add_op | mul_op .
+rel_op     = "==" | "!=" | "<" | "<=" | ">" | ">=" .
+add_op     = "+" | "-" | "|" | "^" .
+mul_op     = "*" | "/" | "%" | "<<" | ">>" | "&" | "&^" .
+
+unary_op   = "+" | "-" | "!" | "^" | "*" | "&" | "<-" .
+
+ +

+Comparisons are discussed elsewhere. +For other binary operators, the operand types must be identical +unless the operation involves shifts or untyped constants. +For operations involving constants only, see the section on +constant expressions. +

+ +

+Except for shift operations, if one operand is an untyped constant +and the other operand is not, the constant is implicitly converted +to the type of the other operand. +

+ +

+The right operand in a shift expression must have integer type +or be an untyped constant representable by a +value of type uint. +If the left operand of a non-constant shift expression is an untyped constant, +it is first implicitly converted to the type it would assume if the shift expression were +replaced by its left operand alone. +

+ +
+var a [1024]byte
+var s uint = 33
+
+// The results of the following examples are given for 64-bit ints.
+var i = 1<<s                   // 1 has type int
+var j int32 = 1<<s             // 1 has type int32; j == 0
+var k = uint64(1<<s)           // 1 has type uint64; k == 1<<33
+var m int = 1.0<<s             // 1.0 has type int; m == 1<<33
+var n = 1.0<<s == j            // 1.0 has type int32; n == true
+var o = 1<<s == 2<<s           // 1 and 2 have type int; o == false
+var p = 1<<s == 1<<33          // 1 has type int; p == true
+var u = 1.0<<s                 // illegal: 1.0 has type float64, cannot shift
+var u1 = 1.0<<s != 0           // illegal: 1.0 has type float64, cannot shift
+var u2 = 1<<s != 1.0           // illegal: 1 has type float64, cannot shift
+var v float32 = 1<<s           // illegal: 1 has type float32, cannot shift
+var w int64 = 1.0<<33          // 1.0<<33 is a constant shift expression; w == 1<<33
+var x = a[1.0<<s]              // panics: 1.0 has type int, but 1<<33 overflows array bounds
+var b = make([]byte, 1.0<<s)   // 1.0 has type int; len(b) == 1<<33
+
+// The results of the following examples are given for 32-bit ints,
+// which means the shifts will overflow.
+var mm int = 1.0<<s            // 1.0 has type int; mm == 0
+var oo = 1<<s == 2<<s          // 1 and 2 have type int; oo == true
+var pp = 1<<s == 1<<33         // illegal: 1 has type int, but 1<<33 overflows int
+var xx = a[1.0<<s]             // 1.0 has type int; xx == a[0]
+var bb = make([]byte, 1.0<<s)  // 1.0 has type int; len(bb) == 0
+
+ +

Operator precedence

+

+Unary operators have the highest precedence. +As the ++ and -- operators form +statements, not expressions, they fall +outside the operator hierarchy. +As a consequence, statement *p++ is the same as (*p)++. +

+ +

+There are five precedence levels for binary operators. +Multiplication operators bind strongest, followed by addition +operators, comparison operators, && (logical AND), +and finally || (logical OR): +

+ +
+Precedence    Operator
+    5             *  /  %  <<  >>  &  &^
+    4             +  -  |  ^
+    3             ==  !=  <  <=  >  >=
+    2             &&
+    1             ||
+
+ +

+Binary operators of the same precedence associate from left to right. +For instance, x / y * z is the same as (x / y) * z. +

+ +
++x
+23 + 3*x[i]
+x <= f()
+^a >> b
+f() || g()
+x == y+1 && <-chanInt > 0
+
+ + +

Arithmetic operators

+

+Arithmetic operators apply to numeric values and yield a result of the same +type as the first operand. The four standard arithmetic operators (+, +-, *, /) apply to integer, +floating-point, and complex types; + also applies to strings. +The bitwise logical and shift operators apply to integers only. +

+ +
++    sum                    integers, floats, complex values, strings
+-    difference             integers, floats, complex values
+*    product                integers, floats, complex values
+/    quotient               integers, floats, complex values
+%    remainder              integers
+
+&    bitwise AND            integers
+|    bitwise OR             integers
+^    bitwise XOR            integers
+&^   bit clear (AND NOT)    integers
+
+<<   left shift             integer << integer >= 0
+>>   right shift            integer >> integer >= 0
+
+ + +

Integer operators

+ +

+For two integer values x and y, the integer quotient +q = x / y and remainder r = x % y satisfy the following +relationships: +

+ +
+x = q*y + r  and  |r| < |y|
+
+ +

+with x / y truncated towards zero +("truncated division"). +

+ +
+ x     y     x / y     x % y
+ 5     3       1         2
+-5     3      -1        -2
+ 5    -3      -1         2
+-5    -3       1        -2
+
+ +

+The one exception to this rule is that if the dividend x is +the most negative value for the int type of x, the quotient +q = x / -1 is equal to x (and r = 0) +due to two's-complement integer overflow: +

+ +
+			 x, q
+int8                     -128
+int16                  -32768
+int32             -2147483648
+int64    -9223372036854775808
+
+ +

+If the divisor is a constant, it must not be zero. +If the divisor is zero at run time, a run-time panic occurs. +If the dividend is non-negative and the divisor is a constant power of 2, +the division may be replaced by a right shift, and computing the remainder may +be replaced by a bitwise AND operation: +

+ +
+ x     x / 4     x % 4     x >> 2     x & 3
+ 11      2         3         2          3
+-11     -2        -3        -3          1
+
+ +

+The shift operators shift the left operand by the shift count specified by the +right operand, which must be non-negative. If the shift count is negative at run time, +a run-time panic occurs. +The shift operators implement arithmetic shifts if the left operand is a signed +integer and logical shifts if it is an unsigned integer. +There is no upper limit on the shift count. Shifts behave +as if the left operand is shifted n times by 1 for a shift +count of n. +As a result, x << 1 is the same as x*2 +and x >> 1 is the same as +x/2 but truncated towards negative infinity. +

+ +

+For integer operands, the unary operators ++, -, and ^ are defined as +follows: +

+ +
++x                          is 0 + x
+-x    negation              is 0 - x
+^x    bitwise complement    is m ^ x  with m = "all bits set to 1" for unsigned x
+                                      and  m = -1 for signed x
+
+ + +

Integer overflow

+ +

+For unsigned integer values, the operations +, +-, *, and << are +computed modulo 2n, where n is the bit width of +the unsigned integer's type. +Loosely speaking, these unsigned integer operations +discard high bits upon overflow, and programs may rely on "wrap around". +

+

+For signed integers, the operations +, +-, *, /, and << may legally +overflow and the resulting value exists and is deterministically defined +by the signed integer representation, the operation, and its operands. +Overflow does not cause a run-time panic. +A compiler may not optimize code under the assumption that overflow does +not occur. For instance, it may not assume that x < x + 1 is always true. +

+ + +

Floating-point operators

+ +

+For floating-point and complex numbers, ++x is the same as x, +while -x is the negation of x. +The result of a floating-point or complex division by zero is not specified beyond the +IEEE-754 standard; whether a run-time panic +occurs is implementation-specific. +

+ +

+An implementation may combine multiple floating-point operations into a single +fused operation, possibly across statements, and produce a result that differs +from the value obtained by executing and rounding the instructions individually. +An explicit floating-point type conversion rounds to +the precision of the target type, preventing fusion that would discard that rounding. +

+ +

+For instance, some architectures provide a "fused multiply and add" (FMA) instruction +that computes x*y + z without rounding the intermediate result x*y. +These examples show when a Go implementation can use that instruction: +

+ +
+// FMA allowed for computing r, because x*y is not explicitly rounded:
+r  = x*y + z
+r  = z;   r += x*y
+t  = x*y; r = t + z
+*p = x*y; r = *p + z
+r  = x*y + float64(z)
+
+// FMA disallowed for computing r, because it would omit rounding of x*y:
+r  = float64(x*y) + z
+r  = z; r += float64(x*y)
+t  = float64(x*y); r = t + z
+
+ +

String concatenation

+ +

+Strings can be concatenated using the + operator +or the += assignment operator: +

+ +
+s := "hi" + string(c)
+s += " and good bye"
+
+ +

+String addition creates a new string by concatenating the operands. +

+ + +

Comparison operators

+ +

+Comparison operators compare two operands and yield an untyped boolean value. +

+ +
+==    equal
+!=    not equal
+<     less
+<=    less or equal
+>     greater
+>=    greater or equal
+
+ +

+In any comparison, the first operand +must be assignable +to the type of the second operand, or vice versa. +

+

+The equality operators == and != apply +to operands that are comparable. +The ordering operators <, <=, >, and >= +apply to operands that are ordered. +These terms and the result of the comparisons are defined as follows: +

+ +
    +
  • + Boolean values are comparable. + Two boolean values are equal if they are either both + true or both false. +
  • + +
  • + Integer values are comparable and ordered, in the usual way. +
  • + +
  • + Floating-point values are comparable and ordered, + as defined by the IEEE-754 standard. +
  • + +
  • + Complex values are comparable. + Two complex values u and v are + equal if both real(u) == real(v) and + imag(u) == imag(v). +
  • + +
  • + String values are comparable and ordered, lexically byte-wise. +
  • + +
  • + Pointer values are comparable. + Two pointer values are equal if they point to the same variable or if both have value nil. + Pointers to distinct zero-size variables may or may not be equal. +
  • + +
  • + Channel values are comparable. + Two channel values are equal if they were created by the same call to + make + or if both have value nil. +
  • + +
  • + Interface values are comparable. + Two interface values are equal if they have identical dynamic types + and equal dynamic values or if both have value nil. +
  • + +
  • + A value x of non-interface type X and + a value t of interface type T are comparable when values + of type X are comparable and + X implements T. + They are equal if t's dynamic type is identical to X + and t's dynamic value is equal to x. +
  • + +
  • + Struct values are comparable if all their fields are comparable. + Two struct values are equal if their corresponding + non-blank fields are equal. +
  • + +
  • + Array values are comparable if values of the array element type are comparable. + Two array values are equal if their corresponding elements are equal. +
  • +
+ +

+A comparison of two interface values with identical dynamic types +causes a run-time panic if values +of that type are not comparable. This behavior applies not only to direct interface +value comparisons but also when comparing arrays of interface values +or structs with interface-valued fields. +

+ +

+Slice, map, and function values are not comparable. +However, as a special case, a slice, map, or function value may +be compared to the predeclared identifier nil. +Comparison of pointer, channel, and interface values to nil +is also allowed and follows from the general rules above. +

+ +
+const c = 3 < 4            // c is the untyped boolean constant true
+
+type MyBool bool
+var x, y int
+var (
+	// The result of a comparison is an untyped boolean.
+	// The usual assignment rules apply.
+	b3        = x == y // b3 has type bool
+	b4 bool   = x == y // b4 has type bool
+	b5 MyBool = x == y // b5 has type MyBool
+)
+
+ +

Logical operators

+ +

+Logical operators apply to boolean values +and yield a result of the same type as the operands. +The right operand is evaluated conditionally. +

+ +
+&&    conditional AND    p && q  is  "if p then q else false"
+||    conditional OR     p || q  is  "if p then true else q"
+!     NOT                !p      is  "not p"
+
+ + +

Address operators

+ +

+For an operand x of type T, the address operation +&x generates a pointer of type *T to x. +The operand must be addressable, +that is, either a variable, pointer indirection, or slice indexing +operation; or a field selector of an addressable struct operand; +or an array indexing operation of an addressable array. +As an exception to the addressability requirement, x may also be a +(possibly parenthesized) +composite literal. +If the evaluation of x would cause a run-time panic, +then the evaluation of &x does too. +

+ +

+For an operand x of pointer type *T, the pointer +indirection *x denotes the variable of type T pointed +to by x. +If x is nil, an attempt to evaluate *x +will cause a run-time panic. +

+ +
+&x
+&a[f(2)]
+&Point{2, 3}
+*p
+*pf(x)
+
+var x *int = nil
+*x   // causes a run-time panic
+&*x  // causes a run-time panic
+
+ + +

Receive operator

+ +

+For an operand ch of channel type, +the value of the receive operation <-ch is the value received +from the channel ch. The channel direction must permit receive operations, +and the type of the receive operation is the element type of the channel. +The expression blocks until a value is available. +Receiving from a nil channel blocks forever. +A receive operation on a closed channel can always proceed +immediately, yielding the element type's zero value +after any previously sent values have been received. +

+ +
+v1 := <-ch
+v2 = <-ch
+f(<-ch)
+<-strobe  // wait until clock pulse and discard received value
+
+ +

+A receive expression used in an assignment or initialization of the special form +

+ +
+x, ok = <-ch
+x, ok := <-ch
+var x, ok = <-ch
+var x, ok T = <-ch
+
+ +

+yields an additional untyped boolean result reporting whether the +communication succeeded. The value of ok is true +if the value received was delivered by a successful send operation to the +channel, or false if it is a zero value generated because the +channel is closed and empty. +

+ + +

Conversions

+ +

+A conversion changes the type of an expression +to the type specified by the conversion. +A conversion may appear literally in the source, or it may be implied +by the context in which an expression appears. +

+ +

+An explicit conversion is an expression of the form T(x) +where T is a type and x is an expression +that can be converted to type T. +

+ +
+Conversion = Type "(" Expression [ "," ] ")" .
+
+ +

+If the type starts with the operator * or <-, +or if the type starts with the keyword func +and has no result list, it must be parenthesized when +necessary to avoid ambiguity: +

+ +
+*Point(p)        // same as *(Point(p))
+(*Point)(p)      // p is converted to *Point
+<-chan int(c)    // same as <-(chan int(c))
+(<-chan int)(c)  // c is converted to <-chan int
+func()(x)        // function signature func() x
+(func())(x)      // x is converted to func()
+(func() int)(x)  // x is converted to func() int
+func() int(x)    // x is converted to func() int (unambiguous)
+
+ +

+A constant value x can be converted to +type T if x is representable +by a value of T. +As a special case, an integer constant x can be explicitly converted to a +string type using the +same rule +as for non-constant x. +

+ +

+Converting a constant yields a typed constant as result. +

+ +
+uint(iota)               // iota value of type uint
+float32(2.718281828)     // 2.718281828 of type float32
+complex128(1)            // 1.0 + 0.0i of type complex128
+float32(0.49999999)      // 0.5 of type float32
+float64(-1e-1000)        // 0.0 of type float64
+string('x')              // "x" of type string
+string(0x266c)           // "♬" of type string
+MyString("foo" + "bar")  // "foobar" of type MyString
+string([]byte{'a'})      // not a constant: []byte{'a'} is not a constant
+(*int)(nil)              // not a constant: nil is not a constant, *int is not a boolean, numeric, or string type
+int(1.2)                 // illegal: 1.2 cannot be represented as an int
+string(65.0)             // illegal: 65.0 is not an integer constant
+
+ +

+A non-constant value x can be converted to type T +in any of these cases: +

+ +
    +
  • + x is assignable + to T. +
  • +
  • + ignoring struct tags (see below), + x's type and T have identical + underlying types. +
  • +
  • + ignoring struct tags (see below), + x's type and T are pointer types + that are not defined types, + and their pointer base types have identical underlying types. +
  • +
  • + x's type and T are both integer or floating + point types. +
  • +
  • + x's type and T are both complex types. +
  • +
  • + x is an integer or a slice of bytes or runes + and T is a string type. +
  • +
  • + x is a string and T is a slice of bytes or runes. +
  • +
  • + x is a slice, T is a pointer to an array, + and the slice and array types have identical element types. +
  • +
+ +

+Struct tags are ignored when comparing struct types +for identity for the purpose of conversion: +

+ +
+type Person struct {
+	Name    string
+	Address *struct {
+		Street string
+		City   string
+	}
+}
+
+var data *struct {
+	Name    string `json:"name"`
+	Address *struct {
+		Street string `json:"street"`
+		City   string `json:"city"`
+	} `json:"address"`
+}
+
+var person = (*Person)(data)  // ignoring tags, the underlying types are identical
+
+ +

+Specific rules apply to (non-constant) conversions between numeric types or +to and from a string type. +These conversions may change the representation of x +and incur a run-time cost. +All other conversions only change the type but not the representation +of x. +

+ +

+There is no linguistic mechanism to convert between pointers and integers. +The package unsafe +implements this functionality under +restricted circumstances. +

+ +

Conversions between numeric types

+ +

+For the conversion of non-constant numeric values, the following rules apply: +

+ +
    +
  1. +When converting between integer types, if the value is a signed integer, it is +sign extended to implicit infinite precision; otherwise it is zero extended. +It is then truncated to fit in the result type's size. +For example, if v := uint16(0x10F0), then uint32(int8(v)) == 0xFFFFFFF0. +The conversion always yields a valid value; there is no indication of overflow. +
  2. +
  3. +When converting a floating-point number to an integer, the fraction is discarded +(truncation towards zero). +
  4. +
  5. +When converting an integer or floating-point number to a floating-point type, +or a complex number to another complex type, the result value is rounded +to the precision specified by the destination type. +For instance, the value of a variable x of type float32 +may be stored using additional precision beyond that of an IEEE-754 32-bit number, +but float32(x) represents the result of rounding x's value to +32-bit precision. Similarly, x + 0.1 may use more than 32 bits +of precision, but float32(x + 0.1) does not. +
  6. +
+ +

+In all non-constant conversions involving floating-point or complex values, +if the result type cannot represent the value the conversion +succeeds but the result value is implementation-dependent. +

+ +

Conversions to and from a string type

+ +
    +
  1. +Converting a signed or unsigned integer value to a string type yields a +string containing the UTF-8 representation of the integer. Values outside +the range of valid Unicode code points are converted to "\uFFFD". + +
    +string('a')       // "a"
    +string(-1)        // "\ufffd" == "\xef\xbf\xbd"
    +string(0xf8)      // "\u00f8" == "ø" == "\xc3\xb8"
    +type MyString string
    +MyString(0x65e5)  // "\u65e5" == "日" == "\xe6\x97\xa5"
    +
    +
  2. + +
  3. +Converting a slice of bytes to a string type yields +a string whose successive bytes are the elements of the slice. + +
    +string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'})   // "hellø"
    +string([]byte{})                                     // ""
    +string([]byte(nil))                                  // ""
    +
    +type MyBytes []byte
    +string(MyBytes{'h', 'e', 'l', 'l', '\xc3', '\xb8'})  // "hellø"
    +
    +
  4. + +
  5. +Converting a slice of runes to a string type yields +a string that is the concatenation of the individual rune values +converted to strings. + +
    +string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    +string([]rune{})                         // ""
    +string([]rune(nil))                      // ""
    +
    +type MyRunes []rune
    +string(MyRunes{0x767d, 0x9d6c, 0x7fd4})  // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    +
    +
  6. + +
  7. +Converting a value of a string type to a slice of bytes type +yields a slice whose successive elements are the bytes of the string. + +
    +[]byte("hellø")   // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    +[]byte("")        // []byte{}
    +
    +MyBytes("hellø")  // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    +
    +
  8. + +
  9. +Converting a value of a string type to a slice of runes type +yields a slice containing the individual Unicode code points of the string. + +
    +[]rune(MyString("白鵬翔"))  // []rune{0x767d, 0x9d6c, 0x7fd4}
    +[]rune("")                 // []rune{}
    +
    +MyRunes("白鵬翔")           // []rune{0x767d, 0x9d6c, 0x7fd4}
    +
    +
  10. +
+ +

Conversions from slice to array pointer

+ +

+Converting a slice to an array pointer yields a pointer to the underlying array of the slice. +If the length of the slice is less than the length of the array, +a run-time panic occurs. +

+ +
+s := make([]byte, 2, 4)
+s0 := (*[0]byte)(s)      // s0 != nil
+s1 := (*[1]byte)(s[1:])  // &s1[0] == &s[1]
+s2 := (*[2]byte)(s)      // &s2[0] == &s[0]
+s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
+
+var t []string
+t0 := (*[0]string)(t)    // t0 == nil
+t1 := (*[1]string)(t)    // panics: len([1]string) > len(t)
+
+u := make([]byte, 0)
+u0 := (*[0]byte)(u)      // u0 != nil
+
+ +

Constant expressions

+ +

+Constant expressions may contain only constant +operands and are evaluated at compile time. +

+ +

+Untyped boolean, numeric, and string constants may be used as operands +wherever it is legal to use an operand of boolean, numeric, or string type, +respectively. +

+ +

+A constant comparison always yields +an untyped boolean constant. If the left operand of a constant +shift expression is an untyped constant, the +result is an integer constant; otherwise it is a constant of the same +type as the left operand, which must be of +integer type. +

+ +

+Any other operation on untyped constants results in an untyped constant of the +same kind; that is, a boolean, integer, floating-point, complex, or string +constant. +If the untyped operands of a binary operation (other than a shift) are of +different kinds, the result is of the operand's kind that appears later in this +list: integer, rune, floating-point, complex. +For example, an untyped integer constant divided by an +untyped complex constant yields an untyped complex constant. +

+ +
+const a = 2 + 3.0          // a == 5.0   (untyped floating-point constant)
+const b = 15 / 4           // b == 3     (untyped integer constant)
+const c = 15 / 4.0         // c == 3.75  (untyped floating-point constant)
+const Θ float64 = 3/2      // Θ == 1.0   (type float64, 3/2 is integer division)
+const Π float64 = 3/2.     // Π == 1.5   (type float64, 3/2. is float division)
+const d = 1 << 3.0         // d == 8     (untyped integer constant)
+const e = 1.0 << 3         // e == 8     (untyped integer constant)
+const f = int32(1) << 33   // illegal    (constant 8589934592 overflows int32)
+const g = float64(2) >> 1  // illegal    (float64(2) is a typed floating-point constant)
+const h = "foo" > "bar"    // h == true  (untyped boolean constant)
+const j = true             // j == true  (untyped boolean constant)
+const k = 'w' + 1          // k == 'x'   (untyped rune constant)
+const l = "hi"             // l == "hi"  (untyped string constant)
+const m = string(k)        // m == "x"   (type string)
+const Σ = 1 - 0.707i       //            (untyped complex constant)
+const Δ = Σ + 2.0e-4       //            (untyped complex constant)
+const Φ = iota*1i - 1/1i   //            (untyped complex constant)
+
+ +

+Applying the built-in function complex to untyped +integer, rune, or floating-point constants yields +an untyped complex constant. +

+ +
+const ic = complex(0, c)   // ic == 3.75i  (untyped complex constant)
+const iΘ = complex(0, Θ)   // iΘ == 1i     (type complex128)
+
+ +

+Constant expressions are always evaluated exactly; intermediate values and the +constants themselves may require precision significantly larger than supported +by any predeclared type in the language. The following are legal declarations: +

+ +
+const Huge = 1 << 100         // Huge == 1267650600228229401496703205376  (untyped integer constant)
+const Four int8 = Huge >> 98  // Four == 4                                (type int8)
+
+ +

+The divisor of a constant division or remainder operation must not be zero: +

+ +
+3.14 / 0.0   // illegal: division by zero
+
+ +

+The values of typed constants must always be accurately +representable by values +of the constant type. The following constant expressions are illegal: +

+ +
+uint(-1)     // -1 cannot be represented as a uint
+int(3.14)    // 3.14 cannot be represented as an int
+int64(Huge)  // 1267650600228229401496703205376 cannot be represented as an int64
+Four * 300   // operand 300 cannot be represented as an int8 (type of Four)
+Four * 100   // product 400 cannot be represented as an int8 (type of Four)
+
+ +

+The mask used by the unary bitwise complement operator ^ matches +the rule for non-constants: the mask is all 1s for unsigned constants +and -1 for signed and untyped constants. +

+ +
+^1         // untyped integer constant, equal to -2
+uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
+^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
+int8(^1)   // same as int8(-2)
+^int8(1)   // same as -1 ^ int8(1) = -2
+
+ +

+Implementation restriction: A compiler may use rounding while +computing untyped floating-point or complex constant expressions; see +the implementation restriction in the section +on constants. This rounding may cause a +floating-point constant expression to be invalid in an integer +context, even if it would be integral when calculated using infinite +precision, and vice versa. +

+ + +

Order of evaluation

+ +

+At package level, initialization dependencies +determine the evaluation order of individual initialization expressions in +variable declarations. +Otherwise, when evaluating the operands of an +expression, assignment, or +return statement, +all function calls, method calls, and +communication operations are evaluated in lexical left-to-right +order. +

+ +

+For example, in the (function-local) assignment +

+
+y[f()], ok = g(h(), i()+x[j()], <-c), k()
+
+

+the function calls and communication happen in the order +f(), h(), i(), j(), +<-c, g(), and k(). +However, the order of those events compared to the evaluation +and indexing of x and the evaluation +of y is not specified. +

+ +
+a := 1
+f := func() int { a++; return a }
+x := []int{a, f()}            // x may be [1, 2] or [2, 2]: evaluation order between a and f() is not specified
+m := map[int]int{a: 1, a: 2}  // m may be {2: 1} or {2: 2}: evaluation order between the two map assignments is not specified
+n := map[int]int{a: f()}      // n may be {2: 3} or {3: 3}: evaluation order between the key and the value is not specified
+
+ +

+At package level, initialization dependencies override the left-to-right rule +for individual initialization expressions, but not for operands within each +expression: +

+ +
+var a, b, c = f() + v(), g(), sqr(u()) + v()
+
+func f() int        { return c }
+func g() int        { return a }
+func sqr(x int) int { return x*x }
+
+// functions u and v are independent of all other variables and functions
+
+ +

+The function calls happen in the order +u(), sqr(), v(), +f(), v(), and g(). +

+ +

+Floating-point operations within a single expression are evaluated according to +the associativity of the operators. Explicit parentheses affect the evaluation +by overriding the default associativity. +In the expression x + (y + z) the addition y + z +is performed before adding x. +

+ +

Statements

+ +

+Statements control execution. +

+ +
+Statement =
+	Declaration | LabeledStmt | SimpleStmt |
+	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
+	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
+	DeferStmt .
+
+SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
+
+ +

Terminating statements

+ +

+A terminating statement interrupts the regular flow of control in +a block. The following statements are terminating: +

+ +
    +
  1. + A "return" or + "goto" statement. + +
    +
  2. + +
  3. + A call to the built-in function + panic. + +
    +
  4. + +
  5. + A block in which the statement list ends in a terminating statement. + +
    +
  6. + +
  7. + An "if" statement in which: +
      +
    • the "else" branch is present, and
    • +
    • both branches are terminating statements.
    • +
    +
  8. + +
  9. + A "for" statement in which: +
      +
    • there are no "break" statements referring to the "for" statement, and
    • +
    • the loop condition is absent, and
    • +
    • the "for" statement does not use a range clause.
    • +
    +
  10. + +
  11. + A "switch" statement in which: +
      +
    • there are no "break" statements referring to the "switch" statement,
    • +
    • there is a default case, and
    • +
    • the statement lists in each case, including the default, end in a terminating + statement, or a possibly labeled "fallthrough" + statement.
    • +
    +
  12. + +
  13. + A "select" statement in which: +
      +
    • there are no "break" statements referring to the "select" statement, and
    • +
    • the statement lists in each case, including the default if present, + end in a terminating statement.
    • +
    +
  14. + +
  15. + A labeled statement labeling + a terminating statement. +
  16. +
+ +

+All other statements are not terminating. +

+ +

+A statement list ends in a terminating statement if the list +is not empty and its final non-empty statement is terminating. +

+ + +

Empty statements

+ +

+The empty statement does nothing. +

+ +
+EmptyStmt = .
+
+ + +

Labeled statements

+ +

+A labeled statement may be the target of a goto, +break or continue statement. +

+ +
+LabeledStmt = Label ":" Statement .
+Label       = identifier .
+
+ +
+Error: log.Panic("error encountered")
+
+ + +

Expression statements

+ +

+With the exception of specific built-in functions, +function and method calls and +receive operations +can appear in statement context. Such statements may be parenthesized. +

+ +
+ExpressionStmt = Expression .
+
+ +

+The following built-in functions are not permitted in statement context: +

+ +
+append cap complex imag len make new real
+unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice
+
+ +
+h(x+y)
+f.Close()
+<-ch
+(<-ch)
+len("foo")  // illegal if len is the built-in function
+
+ + +

Send statements

+ +

+A send statement sends a value on a channel. +The channel expression must be of channel type, +the channel direction must permit send operations, +and the type of the value to be sent must be assignable +to the channel's element type. +

+ +
+SendStmt = Channel "<-" Expression .
+Channel  = Expression .
+
+ +

+Both the channel and the value expression are evaluated before communication +begins. Communication blocks until the send can proceed. +A send on an unbuffered channel can proceed if a receiver is ready. +A send on a buffered channel can proceed if there is room in the buffer. +A send on a closed channel proceeds by causing a run-time panic. +A send on a nil channel blocks forever. +

+ +
+ch <- 3  // send value 3 to channel ch
+
+ + +

IncDec statements

+ +

+The "++" and "--" statements increment or decrement their operands +by the untyped constant 1. +As with an assignment, the operand must be addressable +or a map index expression. +

+ +
+IncDecStmt = Expression ( "++" | "--" ) .
+
+ +

+The following assignment statements are semantically +equivalent: +

+ +
+IncDec statement    Assignment
+x++                 x += 1
+x--                 x -= 1
+
+ + +

Assignments

+ +
+Assignment = ExpressionList assign_op ExpressionList .
+
+assign_op = [ add_op | mul_op ] "=" .
+
+ +

+Each left-hand side operand must be addressable, +a map index expression, or (for = assignments only) the +blank identifier. +Operands may be parenthesized. +

+ +
+x = 1
+*p = f()
+a[i] = 23
+(k) = <-ch  // same as: k = <-ch
+
+ +

+An assignment operation x op= +y where op is a binary arithmetic operator +is equivalent to x = x op +(y) but evaluates x +only once. The op= construct is a single token. +In assignment operations, both the left- and right-hand expression lists +must contain exactly one single-valued expression, and the left-hand +expression must not be the blank identifier. +

+ +
+a[i] <<= 2
+i &^= 1<<n
+
+ +

+A tuple assignment assigns the individual elements of a multi-valued +operation to a list of variables. There are two forms. In the +first, the right hand operand is a single multi-valued expression +such as a function call, a channel or +map operation, or a type assertion. +The number of operands on the left +hand side must match the number of values. For instance, if +f is a function returning two values, +

+ +
+x, y = f()
+
+ +

+assigns the first value to x and the second to y. +In the second form, the number of operands on the left must equal the number +of expressions on the right, each of which must be single-valued, and the +nth expression on the right is assigned to the nth +operand on the left: +

+ +
+one, two, three = '一', '二', '三'
+
+ +

+The blank identifier provides a way to +ignore right-hand side values in an assignment: +

+ +
+_ = x       // evaluate x but ignore it
+x, _ = f()  // evaluate f() but ignore second result value
+
+ +

+The assignment proceeds in two phases. +First, the operands of index expressions +and pointer indirections +(including implicit pointer indirections in selectors) +on the left and the expressions on the right are all +evaluated in the usual order. +Second, the assignments are carried out in left-to-right order. +

+ +
+a, b = b, a  // exchange a and b
+
+x := []int{1, 2, 3}
+i := 0
+i, x[i] = 1, 2  // set i = 1, x[0] = 2
+
+i = 0
+x[i], i = 2, 1  // set x[0] = 2, i = 1
+
+x[0], x[0] = 1, 2  // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
+
+x[1], x[3] = 4, 5  // set x[1] = 4, then panic setting x[3] = 5.
+
+type Point struct { x, y int }
+var p *Point
+x[2], p.x = 6, 7  // set x[2] = 6, then panic setting p.x = 7
+
+i = 2
+x = []int{3, 5, 7}
+for i, x[i] = range x {  // set i, x[2] = 0, x[0]
+	break
+}
+// after this loop, i == 0 and x == []int{3, 5, 3}
+
+ +

+In assignments, each value must be assignable +to the type of the operand to which it is assigned, with the following special cases: +

+ +
    +
  1. + Any typed value may be assigned to the blank identifier. +
  2. + +
  3. + If an untyped constant + is assigned to a variable of interface type or the blank identifier, + the constant is first implicitly converted to its + default type. +
  4. + +
  5. + If an untyped boolean value is assigned to a variable of interface type or + the blank identifier, it is first implicitly converted to type bool. +
  6. +
+ +

If statements

+ +

+"If" statements specify the conditional execution of two branches +according to the value of a boolean expression. If the expression +evaluates to true, the "if" branch is executed, otherwise, if +present, the "else" branch is executed. +

+ +
+IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .
+
+ +
+if x > max {
+	x = max
+}
+
+ +

+The expression may be preceded by a simple statement, which +executes before the expression is evaluated. +

+ +
+if x := f(); x < y {
+	return x
+} else if x > z {
+	return z
+} else {
+	return y
+}
+
+ + +

Switch statements

+ +

+"Switch" statements provide multi-way execution. +An expression or type is compared to the "cases" +inside the "switch" to determine which branch +to execute. +

+ +
+SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
+
+ +

+There are two forms: expression switches and type switches. +In an expression switch, the cases contain expressions that are compared +against the value of the switch expression. +In a type switch, the cases contain types that are compared against the +type of a specially annotated switch expression. +The switch expression is evaluated exactly once in a switch statement. +

+ +

Expression switches

+ +

+In an expression switch, +the switch expression is evaluated and +the case expressions, which need not be constants, +are evaluated left-to-right and top-to-bottom; the first one that equals the +switch expression +triggers execution of the statements of the associated case; +the other cases are skipped. +If no case matches and there is a "default" case, +its statements are executed. +There can be at most one default case and it may appear anywhere in the +"switch" statement. +A missing switch expression is equivalent to the boolean value +true. +

+ +
+ExprSwitchStmt = "switch" [ SimpleStmt ";" ] [ Expression ] "{" { ExprCaseClause } "}" .
+ExprCaseClause = ExprSwitchCase ":" StatementList .
+ExprSwitchCase = "case" ExpressionList | "default" .
+
+ +

+If the switch expression evaluates to an untyped constant, it is first implicitly +converted to its default type. +The predeclared untyped value nil cannot be used as a switch expression. +The switch expression type must be comparable. +

+ +

+If a case expression is untyped, it is first implicitly converted +to the type of the switch expression. +For each (possibly converted) case expression x and the value t +of the switch expression, x == t must be a valid comparison. +

+ +

+In other words, the switch expression is treated as if it were used to declare and +initialize a temporary variable t without explicit type; it is that +value of t against which each case expression x is tested +for equality. +

+ +

+In a case or default clause, the last non-empty statement +may be a (possibly labeled) +"fallthrough" statement to +indicate that control should flow from the end of this clause to +the first statement of the next clause. +Otherwise control flows to the end of the "switch" statement. +A "fallthrough" statement may appear as the last statement of all +but the last clause of an expression switch. +

+ +

+The switch expression may be preceded by a simple statement, which +executes before the expression is evaluated. +

+ +
+switch tag {
+default: s3()
+case 0, 1, 2, 3: s1()
+case 4, 5, 6, 7: s2()
+}
+
+switch x := f(); {  // missing switch expression means "true"
+case x < 0: return -x
+default: return x
+}
+
+switch {
+case x < y: f1()
+case x < z: f2()
+case x == 4: f3()
+}
+
+ +

+Implementation restriction: A compiler may disallow multiple case +expressions evaluating to the same constant. +For instance, the current compilers disallow duplicate integer, +floating point, or string constants in case expressions. +

+ +

Type switches

+ +

+A type switch compares types rather than values. It is otherwise similar +to an expression switch. It is marked by a special switch expression that +has the form of a type assertion +using the keyword type rather than an actual type: +

+ +
+switch x.(type) {
+// cases
+}
+
+ +

+Cases then match actual types T against the dynamic type of the +expression x. As with type assertions, x must be of +interface type, and each non-interface type +T listed in a case must implement the type of x. +The types listed in the cases of a type switch must all be +different. +

+ +
+TypeSwitchStmt  = "switch" [ SimpleStmt ";" ] TypeSwitchGuard "{" { TypeCaseClause } "}" .
+TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
+TypeCaseClause  = TypeSwitchCase ":" StatementList .
+TypeSwitchCase  = "case" TypeList | "default" .
+TypeList        = Type { "," Type } .
+
+ +

+The TypeSwitchGuard may include a +short variable declaration. +When that form is used, the variable is declared at the end of the +TypeSwitchCase in the implicit block of each clause. +In clauses with a case listing exactly one type, the variable +has that type; otherwise, the variable has the type of the expression +in the TypeSwitchGuard. +

+ +

+Instead of a type, a case may use the predeclared identifier +nil; +that case is selected when the expression in the TypeSwitchGuard +is a nil interface value. +There may be at most one nil case. +

+ +

+Given an expression x of type interface{}, +the following type switch: +

+ +
+switch i := x.(type) {
+case nil:
+	printString("x is nil")                // type of i is type of x (interface{})
+case int:
+	printInt(i)                            // type of i is int
+case float64:
+	printFloat64(i)                        // type of i is float64
+case func(int) float64:
+	printFunction(i)                       // type of i is func(int) float64
+case bool, string:
+	printString("type is bool or string")  // type of i is type of x (interface{})
+default:
+	printString("don't know the type")     // type of i is type of x (interface{})
+}
+
+ +

+could be rewritten: +

+ +
+v := x  // x is evaluated exactly once
+if v == nil {
+	i := v                                 // type of i is type of x (interface{})
+	printString("x is nil")
+} else if i, isInt := v.(int); isInt {
+	printInt(i)                            // type of i is int
+} else if i, isFloat64 := v.(float64); isFloat64 {
+	printFloat64(i)                        // type of i is float64
+} else if i, isFunc := v.(func(int) float64); isFunc {
+	printFunction(i)                       // type of i is func(int) float64
+} else {
+	_, isBool := v.(bool)
+	_, isString := v.(string)
+	if isBool || isString {
+		i := v                         // type of i is type of x (interface{})
+		printString("type is bool or string")
+	} else {
+		i := v                         // type of i is type of x (interface{})
+		printString("don't know the type")
+	}
+}
+
+ +

+The type switch guard may be preceded by a simple statement, which +executes before the guard is evaluated. +

+ +

+The "fallthrough" statement is not permitted in a type switch. +

+ +

For statements

+ +

+A "for" statement specifies repeated execution of a block. There are three forms: +The iteration may be controlled by a single condition, a "for" clause, or a "range" clause. +

+ +
+ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
+Condition = Expression .
+
+ +

For statements with single condition

+ +

+In its simplest form, a "for" statement specifies the repeated execution of +a block as long as a boolean condition evaluates to true. +The condition is evaluated before each iteration. +If the condition is absent, it is equivalent to the boolean value +true. +

+ +
+for a < b {
+	a *= 2
+}
+
+ +

For statements with for clause

+ +

+A "for" statement with a ForClause is also controlled by its condition, but +additionally it may specify an init +and a post statement, such as an assignment, +an increment or decrement statement. The init statement may be a +short variable declaration, but the post statement must not. +Variables declared by the init statement are re-used in each iteration. +

+ +
+ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] .
+InitStmt = SimpleStmt .
+PostStmt = SimpleStmt .
+
+ +
+for i := 0; i < 10; i++ {
+	f(i)
+}
+
+ +

+If non-empty, the init statement is executed once before evaluating the +condition for the first iteration; +the post statement is executed after each execution of the block (and +only if the block was executed). +Any element of the ForClause may be empty but the +semicolons are +required unless there is only a condition. +If the condition is absent, it is equivalent to the boolean value +true. +

+ +
+for cond { S() }    is the same as    for ; cond ; { S() }
+for      { S() }    is the same as    for true     { S() }
+
+ +

For statements with range clause

+ +

+A "for" statement with a "range" clause +iterates through all entries of an array, slice, string or map, +or values received on a channel. For each entry it assigns iteration values +to corresponding iteration variables if present and then executes the block. +

+ +
+RangeClause = [ ExpressionList "=" | IdentifierList ":=" ] "range" Expression .
+
+ +

+The expression on the right in the "range" clause is called the range expression, +which may be an array, pointer to an array, slice, string, map, or channel permitting +receive operations. +As with an assignment, if present the operands on the left must be +addressable or map index expressions; they +denote the iteration variables. If the range expression is a channel, at most +one iteration variable is permitted, otherwise there may be up to two. +If the last iteration variable is the blank identifier, +the range clause is equivalent to the same clause without that identifier. +

+ +

+The range expression x is evaluated once before beginning the loop, +with one exception: if at most one iteration variable is present and +len(x) is constant, +the range expression is not evaluated. +

+ +

+Function calls on the left are evaluated once per iteration. +For each iteration, iteration values are produced as follows +if the respective iteration variables are present: +

+ +
+Range expression                          1st value          2nd value
+
+array or slice  a  [n]E, *[n]E, or []E    index    i  int    a[i]       E
+string          s  string type            index    i  int    see below  rune
+map             m  map[K]V                key      k  K      m[k]       V
+channel         c  chan E, <-chan E       element  e  E
+
+ +
    +
  1. +For an array, pointer to array, or slice value a, the index iteration +values are produced in increasing order, starting at element index 0. +If at most one iteration variable is present, the range loop produces +iteration values from 0 up to len(a)-1 and does not index into the array +or slice itself. For a nil slice, the number of iterations is 0. +
  2. + +
  3. +For a string value, the "range" clause iterates over the Unicode code points +in the string starting at byte index 0. On successive iterations, the index value will be the +index of the first byte of successive UTF-8-encoded code points in the string, +and the second value, of type rune, will be the value of +the corresponding code point. If the iteration encounters an invalid +UTF-8 sequence, the second value will be 0xFFFD, +the Unicode replacement character, and the next iteration will advance +a single byte in the string. +
  4. + +
  5. +The iteration order over maps is not specified +and is not guaranteed to be the same from one iteration to the next. +If a map entry that has not yet been reached is removed during iteration, +the corresponding iteration value will not be produced. If a map entry is +created during iteration, that entry may be produced during the iteration or +may be skipped. The choice may vary for each entry created and from one +iteration to the next. +If the map is nil, the number of iterations is 0. +
  6. + +
  7. +For channels, the iteration values produced are the successive values sent on +the channel until the channel is closed. If the channel +is nil, the range expression blocks forever. +
  8. +
+ +

+The iteration values are assigned to the respective +iteration variables as in an assignment statement. +

+ +

+The iteration variables may be declared by the "range" clause using a form of +short variable declaration +(:=). +In this case their types are set to the types of the respective iteration values +and their scope is the block of the "for" +statement; they are re-used in each iteration. +If the iteration variables are declared outside the "for" statement, +after execution their values will be those of the last iteration. +

+ +
+var testdata *struct {
+	a *[7]int
+}
+for i, _ := range testdata.a {
+	// testdata.a is never evaluated; len(testdata.a) is constant
+	// i ranges from 0 to 6
+	f(i)
+}
+
+var a [10]string
+for i, s := range a {
+	// type of i is int
+	// type of s is string
+	// s == a[i]
+	g(i, s)
+}
+
+var key string
+var val interface{}  // element type of m is assignable to val
+m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6}
+for key, val = range m {
+	h(key, val)
+}
+// key == last map key encountered in iteration
+// val == map[key]
+
+var ch chan Work = producer()
+for w := range ch {
+	doWork(w)
+}
+
+// empty a channel
+for range ch {}
+
+ + +

Go statements

+ +

+A "go" statement starts the execution of a function call +as an independent concurrent thread of control, or goroutine, +within the same address space. +

+ +
+GoStmt = "go" Expression .
+
+ +

+The expression must be a function or method call; it cannot be parenthesized. +Calls of built-in functions are restricted as for +expression statements. +

+ +

+The function value and parameters are +evaluated as usual +in the calling goroutine, but +unlike with a regular call, program execution does not wait +for the invoked function to complete. +Instead, the function begins executing independently +in a new goroutine. +When the function terminates, its goroutine also terminates. +If the function has any return values, they are discarded when the +function completes. +

+ +
+go Server()
+go func(ch chan<- bool) { for { sleep(10); ch <- true }} (c)
+
+ + +

Select statements

+ +

+A "select" statement chooses which of a set of possible +send or +receive +operations will proceed. +It looks similar to a +"switch" statement but with the +cases all referring to communication operations. +

+ +
+SelectStmt = "select" "{" { CommClause } "}" .
+CommClause = CommCase ":" StatementList .
+CommCase   = "case" ( SendStmt | RecvStmt ) | "default" .
+RecvStmt   = [ ExpressionList "=" | IdentifierList ":=" ] RecvExpr .
+RecvExpr   = Expression .
+
+ +

+A case with a RecvStmt may assign the result of a RecvExpr to one or +two variables, which may be declared using a +short variable declaration. +The RecvExpr must be a (possibly parenthesized) receive operation. +There can be at most one default case and it may appear anywhere +in the list of cases. +

+ +

+Execution of a "select" statement proceeds in several steps: +

+ +
    +
  1. +For all the cases in the statement, the channel operands of receive operations +and the channel and right-hand-side expressions of send statements are +evaluated exactly once, in source order, upon entering the "select" statement. +The result is a set of channels to receive from or send to, +and the corresponding values to send. +Any side effects in that evaluation will occur irrespective of which (if any) +communication operation is selected to proceed. +Expressions on the left-hand side of a RecvStmt with a short variable declaration +or assignment are not yet evaluated. +
  2. + +
  3. +If one or more of the communications can proceed, +a single one that can proceed is chosen via a uniform pseudo-random selection. +Otherwise, if there is a default case, that case is chosen. +If there is no default case, the "select" statement blocks until +at least one of the communications can proceed. +
  4. + +
  5. +Unless the selected case is the default case, the respective communication +operation is executed. +
  6. + +
  7. +If the selected case is a RecvStmt with a short variable declaration or +an assignment, the left-hand side expressions are evaluated and the +received value (or values) are assigned. +
  8. + +
  9. +The statement list of the selected case is executed. +
  10. +
+ +

+Since communication on nil channels can never proceed, +a select with only nil channels and no default case blocks forever. +

+ +
+var a []int
+var c, c1, c2, c3, c4 chan int
+var i1, i2 int
+select {
+case i1 = <-c1:
+	print("received ", i1, " from c1\n")
+case c2 <- i2:
+	print("sent ", i2, " to c2\n")
+case i3, ok := (<-c3):  // same as: i3, ok := <-c3
+	if ok {
+		print("received ", i3, " from c3\n")
+	} else {
+		print("c3 is closed\n")
+	}
+case a[f()] = <-c4:
+	// same as:
+	// case t := <-c4
+	//	a[f()] = t
+default:
+	print("no communication\n")
+}
+
+for {  // send random sequence of bits to c
+	select {
+	case c <- 0:  // note: no statement, no fallthrough, no folding of cases
+	case c <- 1:
+	}
+}
+
+select {}  // block forever
+
+ + +

Return statements

+ +

+A "return" statement in a function F terminates the execution +of F, and optionally provides one or more result values. +Any functions deferred by F +are executed before F returns to its caller. +

+ +
+ReturnStmt = "return" [ ExpressionList ] .
+
+ +

+In a function without a result type, a "return" statement must not +specify any result values. +

+
+func noResult() {
+	return
+}
+
+ +

+There are three ways to return values from a function with a result +type: +

+ +
    +
  1. The return value or values may be explicitly listed + in the "return" statement. Each expression must be single-valued + and assignable + to the corresponding element of the function's result type. +
    +func simpleF() int {
    +	return 2
    +}
    +
    +func complexF1() (re float64, im float64) {
    +	return -7.0, -4.0
    +}
    +
    +
  2. +
  3. The expression list in the "return" statement may be a single + call to a multi-valued function. The effect is as if each value + returned from that function were assigned to a temporary + variable with the type of the respective value, followed by a + "return" statement listing these variables, at which point the + rules of the previous case apply. +
    +func complexF2() (re float64, im float64) {
    +	return complexF1()
    +}
    +
    +
  4. +
  5. The expression list may be empty if the function's result + type specifies names for its result parameters. + The result parameters act as ordinary local variables + and the function may assign values to them as necessary. + The "return" statement returns the values of these variables. +
    +func complexF3() (re float64, im float64) {
    +	re = 7.0
    +	im = 4.0
    +	return
    +}
    +
    +func (devnull) Write(p []byte) (n int, _ error) {
    +	n = len(p)
    +	return
    +}
    +
    +
  6. +
+ +

+Regardless of how they are declared, all the result values are initialized to +the zero values for their type upon entry to the +function. A "return" statement that specifies results sets the result parameters before +any deferred functions are executed. +

+ +

+Implementation restriction: A compiler may disallow an empty expression list +in a "return" statement if a different entity (constant, type, or variable) +with the same name as a result parameter is in +scope at the place of the return. +

+ +
+func f(n int) (res int, err error) {
+	if _, err := f(n-1); err != nil {
+		return  // invalid return statement: err is shadowed
+	}
+	return
+}
+
+ +

Break statements

+ +

+A "break" statement terminates execution of the innermost +"for", +"switch", or +"select" statement +within the same function. +

+ +
+BreakStmt = "break" [ Label ] .
+
+ +

+If there is a label, it must be that of an enclosing +"for", "switch", or "select" statement, +and that is the one whose execution terminates. +

+ +
+OuterLoop:
+	for i = 0; i < n; i++ {
+		for j = 0; j < m; j++ {
+			switch a[i][j] {
+			case nil:
+				state = Error
+				break OuterLoop
+			case item:
+				state = Found
+				break OuterLoop
+			}
+		}
+	}
+
+ +

Continue statements

+ +

+A "continue" statement begins the next iteration of the +innermost "for" loop at its post statement. +The "for" loop must be within the same function. +

+ +
+ContinueStmt = "continue" [ Label ] .
+
+ +

+If there is a label, it must be that of an enclosing +"for" statement, and that is the one whose execution +advances. +

+ +
+RowLoop:
+	for y, row := range rows {
+		for x, data := range row {
+			if data == endOfRow {
+				continue RowLoop
+			}
+			row[x] = data + bias(x, y)
+		}
+	}
+
+ +

Goto statements

+ +

+A "goto" statement transfers control to the statement with the corresponding label +within the same function. +

+ +
+GotoStmt = "goto" Label .
+
+ +
+goto Error
+
+ +

+Executing the "goto" statement must not cause any variables to come into +scope that were not already in scope at the point of the goto. +For instance, this example: +

+ +
+	goto L  // BAD
+	v := 3
+L:
+
+ +

+is erroneous because the jump to label L skips +the creation of v. +

+ +

+A "goto" statement outside a block cannot jump to a label inside that block. +For instance, this example: +

+ +
+if n%2 == 1 {
+	goto L1
+}
+for n > 0 {
+	f()
+	n--
+L1:
+	f()
+	n--
+}
+
+ +

+is erroneous because the label L1 is inside +the "for" statement's block but the goto is not. +

+ +

Fallthrough statements

+ +

+A "fallthrough" statement transfers control to the first statement of the +next case clause in an expression "switch" statement. +It may be used only as the final non-empty statement in such a clause. +

+ +
+FallthroughStmt = "fallthrough" .
+
+ + +

Defer statements

+ +

+A "defer" statement invokes a function whose execution is deferred +to the moment the surrounding function returns, either because the +surrounding function executed a return statement, +reached the end of its function body, +or because the corresponding goroutine is panicking. +

+ +
+DeferStmt = "defer" Expression .
+
+ +

+The expression must be a function or method call; it cannot be parenthesized. +Calls of built-in functions are restricted as for +expression statements. +

+ +

+Each time a "defer" statement +executes, the function value and parameters to the call are +evaluated as usual +and saved anew but the actual function is not invoked. +Instead, deferred functions are invoked immediately before +the surrounding function returns, in the reverse order +they were deferred. That is, if the surrounding function +returns through an explicit return statement, +deferred functions are executed after any result parameters are set +by that return statement but before the function returns to its caller. +If a deferred function value evaluates +to nil, execution panics +when the function is invoked, not when the "defer" statement is executed. +

+ +

+For instance, if the deferred function is +a function literal and the surrounding +function has named result parameters that +are in scope within the literal, the deferred function may access and modify +the result parameters before they are returned. +If the deferred function has any return values, they are discarded when +the function completes. +(See also the section on handling panics.) +

+ +
+lock(l)
+defer unlock(l)  // unlocking happens before surrounding function returns
+
+// prints 3 2 1 0 before surrounding function returns
+for i := 0; i <= 3; i++ {
+	defer fmt.Print(i)
+}
+
+// f returns 42
+func f() (result int) {
+	defer func() {
+		// result is accessed after it was set to 6 by the return statement
+		result *= 7
+	}()
+	return 6
+}
+
+ +

Built-in functions

+ +

+Built-in functions are +predeclared. +They are called like any other function but some of them +accept a type instead of an expression as the first argument. +

+ +

+The built-in functions do not have standard Go types, +so they can only appear in call expressions; +they cannot be used as function values. +

+ +

Close

+ +

+For a channel c, the built-in function close(c) +records that no more values will be sent on the channel. +It is an error if c is a receive-only channel. +Sending to or closing a closed channel causes a run-time panic. +Closing the nil channel also causes a run-time panic. +After calling close, and after any previously +sent values have been received, receive operations will return +the zero value for the channel's type without blocking. +The multi-valued receive operation +returns a received value along with an indication of whether the channel is closed. +

+ + +

Length and capacity

+ +

+The built-in functions len and cap take arguments +of various types and return a result of type int. +The implementation guarantees that the result always fits into an int. +

+ +
+Call      Argument type    Result
+
+len(s)    string type      string length in bytes
+          [n]T, *[n]T      array length (== n)
+          []T              slice length
+          map[K]T          map length (number of defined keys)
+          chan T           number of elements queued in channel buffer
+
+cap(s)    [n]T, *[n]T      array length (== n)
+          []T              slice capacity
+          chan T           channel buffer capacity
+
+ +

+The capacity of a slice is the number of elements for which there is +space allocated in the underlying array. +At any time the following relationship holds: +

+ +
+0 <= len(s) <= cap(s)
+
+ +

+The length of a nil slice, map or channel is 0. +The capacity of a nil slice or channel is 0. +

+ +

+The expression len(s) is constant if +s is a string constant. The expressions len(s) and +cap(s) are constants if the type of s is an array +or pointer to an array and the expression s does not contain +channel receives or (non-constant) +function calls; in this case s is not evaluated. +Otherwise, invocations of len and cap are not +constant and s is evaluated. +

+ +
+const (
+	c1 = imag(2i)                    // imag(2i) = 2.0 is a constant
+	c2 = len([10]float64{2})         // [10]float64{2} contains no function calls
+	c3 = len([10]float64{c1})        // [10]float64{c1} contains no function calls
+	c4 = len([10]float64{imag(2i)})  // imag(2i) is a constant and no function call is issued
+	c5 = len([10]float64{imag(z)})   // invalid: imag(z) is a (non-constant) function call
+)
+var z complex128
+
+ +

Allocation

+ +

+The built-in function new takes a type T, +allocates storage for a variable of that type +at run time, and returns a value of type *T +pointing to it. +The variable is initialized as described in the section on +initial values. +

+ +
+new(T)
+
+ +

+For instance +

+ +
+type S struct { a int; b float64 }
+new(S)
+
+ +

+allocates storage for a variable of type S, +initializes it (a=0, b=0.0), +and returns a value of type *S containing the address +of the location. +

+ +

Making slices, maps and channels

+ +

+The built-in function make takes a type T, +which must be a slice, map or channel type, +optionally followed by a type-specific list of expressions. +It returns a value of type T (not *T). +The memory is initialized as described in the section on +initial values. +

+ +
+Call             Type T     Result
+
+make(T, n)       slice      slice of type T with length n and capacity n
+make(T, n, m)    slice      slice of type T with length n and capacity m
+
+make(T)          map        map of type T
+make(T, n)       map        map of type T with initial space for approximately n elements
+
+make(T)          channel    unbuffered channel of type T
+make(T, n)       channel    buffered channel of type T, buffer size n
+
+ + +

+Each of the size arguments n and m must be of integer type +or an untyped constant. +A constant size argument must be non-negative and representable +by a value of type int; if it is an untyped constant it is given type int. +If both n and m are provided and are constant, then +n must be no larger than m. +If n is negative or larger than m at run time, +a run-time panic occurs. +

+ +
+s := make([]int, 10, 100)       // slice with len(s) == 10, cap(s) == 100
+s := make([]int, 1e3)           // slice with len(s) == cap(s) == 1000
+s := make([]int, 1<<63)         // illegal: len(s) is not representable by a value of type int
+s := make([]int, 10, 0)         // illegal: len(s) > cap(s)
+c := make(chan int, 10)         // channel with a buffer size of 10
+m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
+
+ +

+Calling make with a map type and size hint n will +create a map with initial space to hold n map elements. +The precise behavior is implementation-dependent. +

+ + +

Appending to and copying slices

+ +

+The built-in functions append and copy assist in +common slice operations. +For both functions, the result is independent of whether the memory referenced +by the arguments overlaps. +

+ +

+The variadic function append +appends zero or more values x +to s of type S, which must be a slice type, and +returns the resulting slice, also of type S. +The values x are passed to a parameter of type ...T +where T is the element type of +S and the respective +parameter passing rules apply. +As a special case, append also accepts a first argument +assignable to type []byte with a second argument of +string type followed by .... This form appends the +bytes of the string. +

+ +
+append(s S, x ...T) S  // T is the element type of S
+
+ +

+If the capacity of s is not large enough to fit the additional +values, append allocates a new, sufficiently large underlying +array that fits both the existing slice elements and the additional values. +Otherwise, append re-uses the underlying array. +

+ +
+s0 := []int{0, 0}
+s1 := append(s0, 2)                // append a single element     s1 == []int{0, 0, 2}
+s2 := append(s1, 3, 5, 7)          // append multiple elements    s2 == []int{0, 0, 2, 3, 5, 7}
+s3 := append(s2, s0...)            // append a slice              s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
+s4 := append(s3[3:6], s3[2:]...)   // append overlapping slice    s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
+
+var t []interface{}
+t = append(t, 42, 3.1415, "foo")   //                             t == []interface{}{42, 3.1415, "foo"}
+
+var b []byte
+b = append(b, "bar"...)            // append string contents      b == []byte{'b', 'a', 'r' }
+
+ +

+The function copy copies slice elements from +a source src to a destination dst and returns the +number of elements copied. +Both arguments must have identical element type T and must be +assignable to a slice of type []T. +The number of elements copied is the minimum of +len(src) and len(dst). +As a special case, copy also accepts a destination argument assignable +to type []byte with a source argument of a string type. +This form copies the bytes from the string into the byte slice. +

+ +
+copy(dst, src []T) int
+copy(dst []byte, src string) int
+
+ +

+Examples: +

+ +
+var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
+var s = make([]int, 6)
+var b = make([]byte, 5)
+n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
+n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
+n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
+
+ + +

Deletion of map elements

+ +

+The built-in function delete removes the element with key +k from a map m. The +type of k must be assignable +to the key type of m. +

+ +
+delete(m, k)  // remove element m[k] from map m
+
+ +

+If the map m is nil or the element m[k] +does not exist, delete is a no-op. +

+ + +

Manipulating complex numbers

+ +

+Three functions assemble and disassemble complex numbers. +The built-in function complex constructs a complex +value from a floating-point real and imaginary part, while +real and imag +extract the real and imaginary parts of a complex value. +

+ +
+complex(realPart, imaginaryPart floatT) complexT
+real(complexT) floatT
+imag(complexT) floatT
+
+ +

+The type of the arguments and return value correspond. +For complex, the two arguments must be of the same +floating-point type and the return type is the complex type +with the corresponding floating-point constituents: +complex64 for float32 arguments, and +complex128 for float64 arguments. +If one of the arguments evaluates to an untyped constant, it is first implicitly +converted to the type of the other argument. +If both arguments evaluate to untyped constants, they must be non-complex +numbers or their imaginary parts must be zero, and the return value of +the function is an untyped complex constant. +

+ +

+For real and imag, the argument must be +of complex type, and the return type is the corresponding floating-point +type: float32 for a complex64 argument, and +float64 for a complex128 argument. +If the argument evaluates to an untyped constant, it must be a number, +and the return value of the function is an untyped floating-point constant. +

+ +

+The real and imag functions together form the inverse of +complex, so for a value z of a complex type Z, +z == Z(complex(real(z), imag(z))). +

+ +

+If the operands of these functions are all constants, the return +value is a constant. +

+ +
+var a = complex(2, -2)             // complex128
+const b = complex(1.0, -1.4)       // untyped complex constant 1 - 1.4i
+x := float32(math.Cos(math.Pi/2))  // float32
+var c64 = complex(5, -x)           // complex64
+var s int = complex(1, 0)          // untyped complex constant 1 + 0i can be converted to int
+_ = complex(1, 2<<s)               // illegal: 2 assumes floating-point type, cannot shift
+var rl = real(c64)                 // float32
+var im = imag(a)                   // float64
+const c = imag(b)                  // untyped constant -1.4
+_ = imag(3 << s)                   // illegal: 3 assumes complex type, cannot shift
+
+ +

Handling panics

+ +

Two built-in functions, panic and recover, +assist in reporting and handling run-time panics +and program-defined error conditions. +

+ +
+func panic(interface{})
+func recover() interface{}
+
+ +

+While executing a function F, +an explicit call to panic or a run-time panic +terminates the execution of F. +Any functions deferred by F +are then executed as usual. +Next, any deferred functions run by F's caller are run, +and so on up to any deferred by the top-level function in the executing goroutine. +At that point, the program is terminated and the error +condition is reported, including the value of the argument to panic. +This termination sequence is called panicking. +

+ +
+panic(42)
+panic("unreachable")
+panic(Error("cannot parse"))
+
+ +

+The recover function allows a program to manage behavior +of a panicking goroutine. +Suppose a function G defers a function D that calls +recover and a panic occurs in a function on the same goroutine in which G +is executing. +When the running of deferred functions reaches D, +the return value of D's call to recover will be the value passed to the call of panic. +If D returns normally, without starting a new +panic, the panicking sequence stops. In that case, +the state of functions called between G and the call to panic +is discarded, and normal execution resumes. +Any functions deferred by G before D are then run and G's +execution terminates by returning to its caller. +

+ +

+The return value of recover is nil if any of the following conditions holds: +

+
    +
  • +panic's argument was nil; +
  • +
  • +the goroutine is not panicking; +
  • +
  • +recover was not called directly by a deferred function. +
  • +
+ +

+The protect function in the example below invokes +the function argument g and protects callers from +run-time panics raised by g. +

+ +
+func protect(g func()) {
+	defer func() {
+		log.Println("done")  // Println executes normally even if there is a panic
+		if x := recover(); x != nil {
+			log.Printf("run time panic: %v", x)
+		}
+	}()
+	log.Println("start")
+	g()
+}
+
+ + +

Bootstrapping

+ +

+Current implementations provide several built-in functions useful during +bootstrapping. These functions are documented for completeness but are not +guaranteed to stay in the language. They do not return a result. +

+ +
+Function   Behavior
+
+print      prints all arguments; formatting of arguments is implementation-specific
+println    like print but prints spaces between arguments and a newline at the end
+
+ +

+Implementation restriction: print and println need not +accept arbitrary argument types, but printing of boolean, numeric, and string +types must be supported. +

+ +

Packages

+ +

+Go programs are constructed by linking together packages. +A package in turn is constructed from one or more source files +that together declare constants, types, variables and functions +belonging to the package and which are accessible in all files +of the same package. Those elements may be +exported and used in another package. +

+ +

Source file organization

+ +

+Each source file consists of a package clause defining the package +to which it belongs, followed by a possibly empty set of import +declarations that declare packages whose contents it wishes to use, +followed by a possibly empty set of declarations of functions, +types, variables, and constants. +

+ +
+SourceFile       = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } .
+
+ +

Package clause

+ +

+A package clause begins each source file and defines the package +to which the file belongs. +

+ +
+PackageClause  = "package" PackageName .
+PackageName    = identifier .
+
+ +

+The PackageName must not be the blank identifier. +

+ +
+package math
+
+ +

+A set of files sharing the same PackageName form the implementation of a package. +An implementation may require that all source files for a package inhabit the same directory. +

+ +

Import declarations

+ +

+An import declaration states that the source file containing the declaration +depends on functionality of the imported package +(§Program initialization and execution) +and enables access to exported identifiers +of that package. +The import names an identifier (PackageName) to be used for access and an ImportPath +that specifies the package to be imported. +

+ +
+ImportDecl       = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) .
+ImportSpec       = [ "." | PackageName ] ImportPath .
+ImportPath       = string_lit .
+
+ +

+The PackageName is used in qualified identifiers +to access exported identifiers of the package within the importing source file. +It is declared in the file block. +If the PackageName is omitted, it defaults to the identifier specified in the +package clause of the imported package. +If an explicit period (.) appears instead of a name, all the +package's exported identifiers declared in that package's +package block will be declared in the importing source +file's file block and must be accessed without a qualifier. +

+ +

+The interpretation of the ImportPath is implementation-dependent but +it is typically a substring of the full file name of the compiled +package and may be relative to a repository of installed packages. +

+ +

+Implementation restriction: A compiler may restrict ImportPaths to +non-empty strings using only characters belonging to +Unicode's +L, M, N, P, and S general categories (the Graphic characters without +spaces) and may also exclude the characters +!"#$%&'()*,:;<=>?[\]^`{|} +and the Unicode replacement character U+FFFD. +

+ +

+Assume we have compiled a package containing the package clause +package math, which exports function Sin, and +installed the compiled package in the file identified by +"lib/math". +This table illustrates how Sin is accessed in files +that import the package after the +various types of import declaration. +

+ +
+Import declaration          Local name of Sin
+
+import   "lib/math"         math.Sin
+import m "lib/math"         m.Sin
+import . "lib/math"         Sin
+
+ +

+An import declaration declares a dependency relation between +the importing and imported package. +It is illegal for a package to import itself, directly or indirectly, +or to directly import a package without +referring to any of its exported identifiers. To import a package solely for +its side-effects (initialization), use the blank +identifier as explicit package name: +

+ +
+import _ "lib/math"
+
+ + +

An example package

+ +

+Here is a complete Go package that implements a concurrent prime sieve. +

+ +
+package main
+
+import "fmt"
+
+// Send the sequence 2, 3, 4, … to channel 'ch'.
+func generate(ch chan<- int) {
+	for i := 2; ; i++ {
+		ch <- i  // Send 'i' to channel 'ch'.
+	}
+}
+
+// Copy the values from channel 'src' to channel 'dst',
+// removing those divisible by 'prime'.
+func filter(src <-chan int, dst chan<- int, prime int) {
+	for i := range src {  // Loop over values received from 'src'.
+		if i%prime != 0 {
+			dst <- i  // Send 'i' to channel 'dst'.
+		}
+	}
+}
+
+// The prime sieve: Daisy-chain filter processes together.
+func sieve() {
+	ch := make(chan int)  // Create a new channel.
+	go generate(ch)       // Start generate() as a subprocess.
+	for {
+		prime := <-ch
+		fmt.Print(prime, "\n")
+		ch1 := make(chan int)
+		go filter(ch, ch1, prime)
+		ch = ch1
+	}
+}
+
+func main() {
+	sieve()
+}
+
+ +

Program initialization and execution

+ +

The zero value

+

+When storage is allocated for a variable, +either through a declaration or a call of new, or when +a new value is created, either through a composite literal or a call +of make, +and no explicit initialization is provided, the variable or value is +given a default value. Each element of such a variable or value is +set to the zero value for its type: false for booleans, +0 for numeric types, "" +for strings, and nil for pointers, functions, interfaces, slices, channels, and maps. +This initialization is done recursively, so for instance each element of an +array of structs will have its fields zeroed if no value is specified. +

+

+These two simple declarations are equivalent: +

+ +
+var i int
+var i int = 0
+
+ +

+After +

+ +
+type T struct { i int; f float64; next *T }
+t := new(T)
+
+ +

+the following holds: +

+ +
+t.i == 0
+t.f == 0.0
+t.next == nil
+
+ +

+The same would also be true after +

+ +
+var t T
+
+ +

Package initialization

+ +

+Within a package, package-level variable initialization proceeds stepwise, +with each step selecting the variable earliest in declaration order +which has no dependencies on uninitialized variables. +

+ +

+More precisely, a package-level variable is considered ready for +initialization if it is not yet initialized and either has +no initialization expression or +its initialization expression has no dependencies on uninitialized variables. +Initialization proceeds by repeatedly initializing the next package-level +variable that is earliest in declaration order and ready for initialization, +until there are no variables ready for initialization. +

+ +

+If any variables are still uninitialized when this +process ends, those variables are part of one or more initialization cycles, +and the program is not valid. +

+ +

+Multiple variables on the left-hand side of a variable declaration initialized +by single (multi-valued) expression on the right-hand side are initialized +together: If any of the variables on the left-hand side is initialized, all +those variables are initialized in the same step. +

+ +
+var x = a
+var a, b = f() // a and b are initialized together, before x is initialized
+
+ +

+For the purpose of package initialization, blank +variables are treated like any other variables in declarations. +

+ +

+The declaration order of variables declared in multiple files is determined +by the order in which the files are presented to the compiler: Variables +declared in the first file are declared before any of the variables declared +in the second file, and so on. +

+ +

+Dependency analysis does not rely on the actual values of the +variables, only on lexical references to them in the source, +analyzed transitively. For instance, if a variable x's +initialization expression refers to a function whose body refers to +variable y then x depends on y. +Specifically: +

+ +
    +
  • +A reference to a variable or function is an identifier denoting that +variable or function. +
  • + +
  • +A reference to a method m is a +method value or +method expression of the form +t.m, where the (static) type of t is +not an interface type, and the method m is in the +method set of t. +It is immaterial whether the resulting function value +t.m is invoked. +
  • + +
  • +A variable, function, or method x depends on a variable +y if x's initialization expression or body +(for functions and methods) contains a reference to y +or to a function or method that depends on y. +
  • +
+ +

+For example, given the declarations +

+ +
+var (
+	a = c + b  // == 9
+	b = f()    // == 4
+	c = f()    // == 5
+	d = 3      // == 5 after initialization has finished
+)
+
+func f() int {
+	d++
+	return d
+}
+
+ +

+the initialization order is d, b, c, a. +Note that the order of subexpressions in initialization expressions is irrelevant: +a = c + b and a = b + c result in the same initialization +order in this example. +

+ +

+Dependency analysis is performed per package; only references referring +to variables, functions, and (non-interface) methods declared in the current +package are considered. If other, hidden, data dependencies exists between +variables, the initialization order between those variables is unspecified. +

+ +

+For instance, given the declarations +

+ +
+var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
+var _ = sideEffect()  // unrelated to x, a, or b
+var a = b
+var b = 42
+
+type I interface      { ab() []int }
+type T struct{}
+func (T) ab() []int   { return []int{a, b} }
+
+ +

+the variable a will be initialized after b but +whether x is initialized before b, between +b and a, or after a, and +thus also the moment at which sideEffect() is called (before +or after x is initialized) is not specified. +

+ +

+Variables may also be initialized using functions named init +declared in the package block, with no arguments and no result parameters. +

+ +
+func init() { … }
+
+ +

+Multiple such functions may be defined per package, even within a single +source file. In the package block, the init identifier can +be used only to declare init functions, yet the identifier +itself is not declared. Thus +init functions cannot be referred to from anywhere +in a program. +

+ +

+A package with no imports is initialized by assigning initial values +to all its package-level variables followed by calling all init +functions in the order they appear in the source, possibly in multiple files, +as presented to the compiler. +If a package has imports, the imported packages are initialized +before initializing the package itself. If multiple packages import +a package, the imported package will be initialized only once. +The importing of packages, by construction, guarantees that there +can be no cyclic initialization dependencies. +

+ +

+Package initialization—variable initialization and the invocation of +init functions—happens in a single goroutine, +sequentially, one package at a time. +An init function may launch other goroutines, which can run +concurrently with the initialization code. However, initialization +always sequences +the init functions: it will not invoke the next one +until the previous one has returned. +

+ +

+To ensure reproducible initialization behavior, build systems are encouraged +to present multiple files belonging to the same package in lexical file name +order to a compiler. +

+ + +

Program execution

+

+A complete program is created by linking a single, unimported package +called the main package with all the packages it imports, transitively. +The main package must +have package name main and +declare a function main that takes no +arguments and returns no value. +

+ +
+func main() { … }
+
+ +

+Program execution begins by initializing the main package and then +invoking the function main. +When that function invocation returns, the program exits. +It does not wait for other (non-main) goroutines to complete. +

+ +

Errors

+ +

+The predeclared type error is defined as +

+ +
+type error interface {
+	Error() string
+}
+
+ +

+It is the conventional interface for representing an error condition, +with the nil value representing no error. +For instance, a function to read data from a file might be defined: +

+ +
+func Read(f *File, b []byte) (n int, err error)
+
+ +

Run-time panics

+ +

+Execution errors such as attempting to index an array out +of bounds trigger a run-time panic equivalent to a call of +the built-in function panic +with a value of the implementation-defined interface type runtime.Error. +That type satisfies the predeclared interface type +error. +The exact error values that +represent distinct run-time error conditions are unspecified. +

+ +
+package runtime
+
+type Error interface {
+	error
+	// and perhaps other methods
+}
+
+ +

System considerations

+ +

Package unsafe

+ +

+The built-in package unsafe, known to the compiler +and accessible through the import path "unsafe", +provides facilities for low-level programming including operations +that violate the type system. A package using unsafe +must be vetted manually for type safety and may not be portable. +The package provides the following interface: +

+ +
+package unsafe
+
+type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type
+type Pointer *ArbitraryType
+
+func Alignof(variable ArbitraryType) uintptr
+func Offsetof(selector ArbitraryType) uintptr
+func Sizeof(variable ArbitraryType) uintptr
+
+type IntegerType int  // shorthand for an integer type; it is not a real type
+func Add(ptr Pointer, len IntegerType) Pointer
+func Slice(ptr *ArbitraryType, len IntegerType) []ArbitraryType
+
+ +

+A Pointer is a pointer type but a Pointer +value may not be dereferenced. +Any pointer or value of underlying type uintptr can be converted to +a type of underlying type Pointer and vice versa. +The effect of converting between Pointer and uintptr is implementation-defined. +

+ +
+var f float64
+bits = *(*uint64)(unsafe.Pointer(&f))
+
+type ptr unsafe.Pointer
+bits = *(*uint64)(ptr(&f))
+
+var p ptr = nil
+
+ +

+The functions Alignof and Sizeof take an expression x +of any type and return the alignment or size, respectively, of a hypothetical variable v +as if v was declared via var v = x. +

+

+The function Offsetof takes a (possibly parenthesized) selector +s.f, denoting a field f of the struct denoted by s +or *s, and returns the field offset in bytes relative to the struct's address. +If f is an embedded field, it must be reachable +without pointer indirections through fields of the struct. +For a struct s with field f: +

+ +
+uintptr(unsafe.Pointer(&s)) + unsafe.Offsetof(s.f) == uintptr(unsafe.Pointer(&s.f))
+
+ +

+Computer architectures may require memory addresses to be aligned; +that is, for addresses of a variable to be a multiple of a factor, +the variable's type's alignment. The function Alignof +takes an expression denoting a variable of any type and returns the +alignment of the (type of the) variable in bytes. For a variable +x: +

+ +
+uintptr(unsafe.Pointer(&x)) % unsafe.Alignof(x) == 0
+
+ +

+Calls to Alignof, Offsetof, and +Sizeof are compile-time constant expressions of type uintptr. +

+ +

+The function Add adds len to ptr +and returns the updated pointer unsafe.Pointer(uintptr(ptr) + uintptr(len)). +The len argument must be of integer type or an untyped constant. +A constant len argument must be representable by a value of type int; +if it is an untyped constant it is given type int. +The rules for valid uses of Pointer still apply. +

+ +

+The function Slice returns a slice whose underlying array starts at ptr +and whose length and capacity are len. +Slice(ptr, len) is equivalent to +

+ +
+(*[len]ArbitraryType)(unsafe.Pointer(ptr))[:]
+
+ +

+except that, as a special case, if ptr +is nil and len is zero, +Slice returns nil. +

+ +

+The len argument must be of integer type or an untyped constant. +A constant len argument must be non-negative and representable by a value of type int; +if it is an untyped constant it is given type int. +At run time, if len is negative, +or if ptr is nil and len is not zero, +a run-time panic occurs. +

+ +

Size and alignment guarantees

+ +

+For the numeric types, the following sizes are guaranteed: +

+ +
+type                                 size in bytes
+
+byte, uint8, int8                     1
+uint16, int16                         2
+uint32, int32, float32                4
+uint64, int64, float64, complex64     8
+complex128                           16
+
+ +

+The following minimal alignment properties are guaranteed: +

+
    +
  1. For a variable x of any type: unsafe.Alignof(x) is at least 1. +
  2. + +
  3. For a variable x of struct type: unsafe.Alignof(x) is the largest of + all the values unsafe.Alignof(x.f) for each field f of x, but at least 1. +
  4. + +
  5. For a variable x of array type: unsafe.Alignof(x) is the same as + the alignment of a variable of the array's element type. +
  6. +
+ +

+A struct or array type has size zero if it contains no fields (or elements, respectively) that have a size greater than zero. Two distinct zero-size variables may have the same address in memory. +

diff --git a/platform/dbops/binaries/go/go/doc/go_mem.html b/platform/dbops/binaries/go/go/doc/go_mem.html new file mode 100644 index 0000000000000000000000000000000000000000..026c1172e3a4c0ea9fa8f147202471f083b2cae8 --- /dev/null +++ b/platform/dbops/binaries/go/go/doc/go_mem.html @@ -0,0 +1,977 @@ + + + + +

Introduction

+ +

+The Go memory model specifies the conditions under which +reads of a variable in one goroutine can be guaranteed to +observe values produced by writes to the same variable in a different goroutine. +

+ + +

Advice

+ +

+Programs that modify data being simultaneously accessed by multiple goroutines +must serialize such access. +

+ +

+To serialize access, protect the data with channel operations or other synchronization primitives +such as those in the sync +and sync/atomic packages. +

+ +

+If you must read the rest of this document to understand the behavior of your program, +you are being too clever. +

+ +

+Don't be clever. +

+ +

Informal Overview

+ +

+Go approaches its memory model in much the same way as the rest of the language, +aiming to keep the semantics simple, understandable, and useful. +This section gives a general overview of the approach and should suffice for most programmers. +The memory model is specified more formally in the next section. +

+ +

+A data race is defined as +a write to a memory location happening concurrently with another read or write to that same location, +unless all the accesses involved are atomic data accesses as provided by the sync/atomic package. +As noted already, programmers are strongly encouraged to use appropriate synchronization +to avoid data races. +In the absence of data races, Go programs behave as if all the goroutines +were multiplexed onto a single processor. +This property is sometimes referred to as DRF-SC: data-race-free programs +execute in a sequentially consistent manner. +

+ +

+While programmers should write Go programs without data races, +there are limitations to what a Go implementation can do in response to a data race. +An implementation may always react to a data race by reporting the race and terminating the program. +Otherwise, each read of a single-word-sized or sub-word-sized memory location +must observe a value actually written to that location (perhaps by a concurrent executing goroutine) +and not yet overwritten. +These implementation constraints make Go more like Java or JavaScript, +in that most races have a limited number of outcomes, +and less like C and C++, where the meaning of any program with a race +is entirely undefined, and the compiler may do anything at all. +Go's approach aims to make errant programs more reliable and easier to debug, +while still insisting that races are errors and that tools can diagnose and report them. +

+ +

Memory Model

+ +

+The following formal definition of Go's memory model closely follows +the approach presented by Hans-J. Boehm and Sarita V. Adve in +“Foundations of the C++ Concurrency Memory Model”, +published in PLDI 2008. +The definition of data-race-free programs and the guarantee of sequential consistency +for race-free programs are equivalent to the ones in that work. +

+ +

+The memory model describes the requirements on program executions, +which are made up of goroutine executions, +which in turn are made up of memory operations. +

+ +

+A memory operation is modeled by four details: +

+
    +
  • its kind, indicating whether it is an ordinary data read, an ordinary data write, +or a synchronizing operation such as an atomic data access, +a mutex operation, or a channel operation, +
  • its location in the program, +
  • the memory location or variable being accessed, and +
  • the values read or written by the operation. +
+

+Some memory operations are read-like, including read, atomic read, mutex lock, and channel receive. +Other memory operations are write-like, including write, atomic write, mutex unlock, channel send, and channel close. +Some, such as atomic compare-and-swap, are both read-like and write-like. +

+ +

+A goroutine execution is modeled as a set of memory operations executed by a single goroutine. +

+ +

+Requirement 1: +The memory operations in each goroutine must correspond to a correct sequential execution of that goroutine, +given the values read from and written to memory. +That execution must be consistent with the sequenced before relation, +defined as the partial order requirements set out by the Go language specification +for Go's control flow constructs as well as the order of evaluation for expressions. +

+ +

+A Go program execution is modeled as a set of goroutine executions, +together with a mapping W that specifies the write-like operation that each read-like operation reads from. +(Multiple executions of the same program can have different program executions.) +

+ +

+Requirement 2: +For a given program execution, the mapping W, when limited to synchronizing operations, +must be explainable by some implicit total order of the synchronizing operations +that is consistent with sequencing and the values read and written by those operations. +

+ +

+The synchronized before relation is a partial order on synchronizing memory operations, +derived from W. +If a synchronizing read-like memory operation r +observes a synchronizing write-like memory operation w +(that is, if W(r) = w), +then w is synchronized before r. +Informally, the synchronized before relation is a subset of the implied total order +mentioned in the previous paragraph, +limited to the information that W directly observes. +

+ +

+The happens before relation is defined as the transitive closure of the +union of the sequenced before and synchronized before relations. +

+ +

+Requirement 3: +For an ordinary (non-synchronizing) data read r on a memory location x, +W(r) must be a write w that is visible to r, +where visible means that both of the following hold: +

+ +
    +
  1. w happens before r. +
  2. w does not happen before any other write w' (to x) that happens before r. +
+ +

+A read-write data race on memory location x +consists of a read-like memory operation r on x +and a write-like memory operation w on x, +at least one of which is non-synchronizing, +which are unordered by happens before +(that is, neither r happens before w +nor w happens before r). +

+ +

+A write-write data race on memory location x +consists of two write-like memory operations w and w' on x, +at least one of which is non-synchronizing, +which are unordered by happens before. +

+ +

+Note that if there are no read-write or write-write data races on memory location x, +then any read r on x has only one possible W(r): +the single w that immediately precedes it in the happens before order. +

+ +

+More generally, it can be shown that any Go program that is data-race-free, +meaning it has no program executions with read-write or write-write data races, +can only have outcomes explained by some sequentially consistent interleaving +of the goroutine executions. +(The proof is the same as Section 7 of Boehm and Adve's paper cited above.) +This property is called DRF-SC. +

+ +

+The intent of the formal definition is to match +the DRF-SC guarantee provided to race-free programs +by other languages, including C, C++, Java, JavaScript, Rust, and Swift. +

+ +

+Certain Go language operations such as goroutine creation and memory allocation +act as synchronization operations. +The effect of these operations on the synchronized-before partial order +is documented in the “Synchronization” section below. +Individual packages are responsible for providing similar documentation +for their own operations. +

+ +

Implementation Restrictions for Programs Containing Data Races

+ +

+The preceding section gave a formal definition of data-race-free program execution. +This section informally describes the semantics that implementations must provide +for programs that do contain races. +

+ +

+Any implementation can, upon detecting a data race, +report the race and halt execution of the program. +Implementations using ThreadSanitizer +(accessed with “go build -race”) +do exactly this. +

+ +

+A read of an array, struct, or complex number +may by implemented as a read of each individual sub-value +(array element, struct field, or real/imaginary component), +in any order. +Similarly, a write of an array, struct, or complex number +may be implemented as a write of each individual sub-value, +in any order. +

+ +

+A read r of a memory location x +holding a value +that is not larger than a machine word must observe +some write w such that r does not happen before w +and there is no write w' such that w happens before w' +and w' happens before r. +That is, each read must observe a value written by a preceding or concurrent write. +

+ +

+Additionally, observation of acausal and “out of thin air” writes is disallowed. +

+ +

+Reads of memory locations larger than a single machine word +are encouraged but not required to meet the same semantics +as word-sized memory locations, +observing a single allowed write w. +For performance reasons, +implementations may instead treat larger operations +as a set of individual machine-word-sized operations +in an unspecified order. +This means that races on multiword data structures +can lead to inconsistent values not corresponding to a single write. +When the values depend on the consistency +of internal (pointer, length) or (pointer, type) pairs, +as can be the case for interface values, maps, +slices, and strings in most Go implementations, +such races can in turn lead to arbitrary memory corruption. +

+ +

+Examples of incorrect synchronization are given in the +“Incorrect synchronization” section below. +

+ +

+Examples of the limitations on implementations are given in the +“Incorrect compilation” section below. +

+ +

Synchronization

+ +

Initialization

+ +

+Program initialization runs in a single goroutine, +but that goroutine may create other goroutines, +which run concurrently. +

+ +

+If a package p imports package q, the completion of +q's init functions happens before the start of any of p's. +

+ +

+The completion of all init functions is synchronized before +the start of the function main.main. +

+ +

Goroutine creation

+ +

+The go statement that starts a new goroutine +is synchronized before the start of the goroutine's execution. +

+ +

+For example, in this program: +

+ +
+var a string
+
+func f() {
+	print(a)
+}
+
+func hello() {
+	a = "hello, world"
+	go f()
+}
+
+ +

+calling hello will print "hello, world" +at some point in the future (perhaps after hello has returned). +

+ +

Goroutine destruction

+ +

+The exit of a goroutine is not guaranteed to be synchronized before +any event in the program. +For example, in this program: +

+ +
+var a string
+
+func hello() {
+	go func() { a = "hello" }()
+	print(a)
+}
+
+ +

+the assignment to a is not followed by +any synchronization event, so it is not guaranteed to be +observed by any other goroutine. +In fact, an aggressive compiler might delete the entire go statement. +

+ +

+If the effects of a goroutine must be observed by another goroutine, +use a synchronization mechanism such as a lock or channel +communication to establish a relative ordering. +

+ +

Channel communication

+ +

+Channel communication is the main method of synchronization +between goroutines. Each send on a particular channel +is matched to a corresponding receive from that channel, +usually in a different goroutine. +

+ +

+A send on a channel is synchronized before the completion of the +corresponding receive from that channel. +

+ +

+This program: +

+ +
+var c = make(chan int, 10)
+var a string
+
+func f() {
+	a = "hello, world"
+	c <- 0
+}
+
+func main() {
+	go f()
+	<-c
+	print(a)
+}
+
+ +

+is guaranteed to print "hello, world". The write to a +is sequenced before the send on c, which is synchronized before +the corresponding receive on c completes, which is sequenced before +the print. +

+ +

+The closing of a channel is synchronized before a receive that returns a zero value +because the channel is closed. +

+ +

+In the previous example, replacing +c <- 0 with close(c) +yields a program with the same guaranteed behavior. +

+ +

+A receive from an unbuffered channel is synchronized before the completion of +the corresponding send on that channel. +

+ +

+This program (as above, but with the send and receive statements swapped and +using an unbuffered channel): +

+ +
+var c = make(chan int)
+var a string
+
+func f() {
+	a = "hello, world"
+	<-c
+}
+
+func main() {
+	go f()
+	c <- 0
+	print(a)
+}
+
+ +

+is also guaranteed to print "hello, world". The write to a +is sequenced before the receive on c, which is synchronized before +the corresponding send on c completes, which is sequenced +before the print. +

+ +

+If the channel were buffered (e.g., c = make(chan int, 1)) +then the program would not be guaranteed to print +"hello, world". (It might print the empty string, +crash, or do something else.) +

+ +

+The kth receive on a channel with capacity C is synchronized before the completion of the k+Cth send from that channel completes. +

+ +

+This rule generalizes the previous rule to buffered channels. +It allows a counting semaphore to be modeled by a buffered channel: +the number of items in the channel corresponds to the number of active uses, +the capacity of the channel corresponds to the maximum number of simultaneous uses, +sending an item acquires the semaphore, and receiving an item releases +the semaphore. +This is a common idiom for limiting concurrency. +

+ +

+This program starts a goroutine for every entry in the work list, but the +goroutines coordinate using the limit channel to ensure +that at most three are running work functions at a time. +

+ +
+var limit = make(chan int, 3)
+
+func main() {
+	for _, w := range work {
+		go func(w func()) {
+			limit <- 1
+			w()
+			<-limit
+		}(w)
+	}
+	select{}
+}
+
+ +

Locks

+ +

+The sync package implements two lock data types, +sync.Mutex and sync.RWMutex. +

+ +

+For any sync.Mutex or sync.RWMutex variable l and n < m, +call n of l.Unlock() is synchronized before call m of l.Lock() returns. +

+ +

+This program: +

+ +
+var l sync.Mutex
+var a string
+
+func f() {
+	a = "hello, world"
+	l.Unlock()
+}
+
+func main() {
+	l.Lock()
+	go f()
+	l.Lock()
+	print(a)
+}
+
+ +

+is guaranteed to print "hello, world". +The first call to l.Unlock() (in f) is synchronized +before the second call to l.Lock() (in main) returns, +which is sequenced before the print. +

+ +

+For any call to l.RLock on a sync.RWMutex variable l, +there is an n such that the nth call to l.Unlock +is synchronized before the return from l.RLock, +and the matching call to l.RUnlock is synchronized before the return from call n+1 to l.Lock. +

+ +

+A successful call to l.TryLock (or l.TryRLock) +is equivalent to a call to l.Lock (or l.RLock). +An unsuccessful call has no synchronizing effect at all. +As far as the memory model is concerned, +l.TryLock (or l.TryRLock) +may be considered to be able to return false +even when the mutex l is unlocked. +

+ +

Once

+ +

+The sync package provides a safe mechanism for +initialization in the presence of multiple goroutines +through the use of the Once type. +Multiple threads can execute once.Do(f) for a particular f, +but only one will run f(), and the other calls block +until f() has returned. +

+ +

+The completion of a single call of f() from once.Do(f) +is synchronized before the return of any call of once.Do(f). +

+ +

+In this program: +

+ +
+var a string
+var once sync.Once
+
+func setup() {
+	a = "hello, world"
+}
+
+func doprint() {
+	once.Do(setup)
+	print(a)
+}
+
+func twoprint() {
+	go doprint()
+	go doprint()
+}
+
+ +

+calling twoprint will call setup exactly +once. +The setup function will complete before either call +of print. +The result will be that "hello, world" will be printed +twice. +

+ +

Atomic Values

+ +

+The APIs in the sync/atomic +package are collectively “atomic operations” +that can be used to synchronize the execution of different goroutines. +If the effect of an atomic operation A is observed by atomic operation B, +then A is synchronized before B. +All the atomic operations executed in a program behave as though executed +in some sequentially consistent order. +

+ +

+The preceding definition has the same semantics as C++’s sequentially consistent atomics +and Java’s volatile variables. +

+ +

Finalizers

+ +

+The runtime package provides +a SetFinalizer function that adds a finalizer to be called when +a particular object is no longer reachable by the program. +A call to SetFinalizer(x, f) is synchronized before the finalization call f(x). +

+ +

Additional Mechanisms

+ +

+The sync package provides additional synchronization abstractions, +including condition variables, +lock-free maps, +allocation pools, +and +wait groups. +The documentation for each of these specifies the guarantees it +makes concerning synchronization. +

+ +

+Other packages that provide synchronization abstractions +should document the guarantees they make too. +

+ + +

Incorrect synchronization

+ +

+Programs with races are incorrect and +can exhibit non-sequentially consistent executions. +In particular, note that a read r may observe the value written by any write w +that executes concurrently with r. +Even if this occurs, it does not imply that reads happening after r +will observe writes that happened before w. +

+ +

+In this program: +

+ +
+var a, b int
+
+func f() {
+	a = 1
+	b = 2
+}
+
+func g() {
+	print(b)
+	print(a)
+}
+
+func main() {
+	go f()
+	g()
+}
+
+ +

+it can happen that g prints 2 and then 0. +

+ +

+This fact invalidates a few common idioms. +

+ +

+Double-checked locking is an attempt to avoid the overhead of synchronization. +For example, the twoprint program might be +incorrectly written as: +

+ +
+var a string
+var done bool
+
+func setup() {
+	a = "hello, world"
+	done = true
+}
+
+func doprint() {
+	if !done {
+		once.Do(setup)
+	}
+	print(a)
+}
+
+func twoprint() {
+	go doprint()
+	go doprint()
+}
+
+ +

+but there is no guarantee that, in doprint, observing the write to done +implies observing the write to a. This +version can (incorrectly) print an empty string +instead of "hello, world". +

+ +

+Another incorrect idiom is busy waiting for a value, as in: +

+ +
+var a string
+var done bool
+
+func setup() {
+	a = "hello, world"
+	done = true
+}
+
+func main() {
+	go setup()
+	for !done {
+	}
+	print(a)
+}
+
+ +

+As before, there is no guarantee that, in main, +observing the write to done +implies observing the write to a, so this program could +print an empty string too. +Worse, there is no guarantee that the write to done will ever +be observed by main, since there are no synchronization +events between the two threads. The loop in main is not +guaranteed to finish. +

+ +

+There are subtler variants on this theme, such as this program. +

+ +
+type T struct {
+	msg string
+}
+
+var g *T
+
+func setup() {
+	t := new(T)
+	t.msg = "hello, world"
+	g = t
+}
+
+func main() {
+	go setup()
+	for g == nil {
+	}
+	print(g.msg)
+}
+
+ +

+Even if main observes g != nil and exits its loop, +there is no guarantee that it will observe the initialized +value for g.msg. +

+ +

+In all these examples, the solution is the same: +use explicit synchronization. +

+ +

Incorrect compilation

+ +

+The Go memory model restricts compiler optimizations as much as it does Go programs. +Some compiler optimizations that would be valid in single-threaded programs are not valid in all Go programs. +In particular, a compiler must not introduce writes that do not exist in the original program, +it must not allow a single read to observe multiple values, +and it must not allow a single write to write multiple values. +

+ +

+All the following examples assume that `*p` and `*q` refer to +memory locations accessible to multiple goroutines. +

+ +

+Not introducing data races into race-free programs means not moving +writes out of conditional statements in which they appear. +For example, a compiler must not invert the conditional in this program: +

+ +
+*p = 1
+if cond {
+	*p = 2
+}
+
+ +

+That is, the compiler must not rewrite the program into this one: +

+ +
+*p = 2
+if !cond {
+	*p = 1
+}
+
+ +

+If cond is false and another goroutine is reading *p, +then in the original program, the other goroutine can only observe any prior value of *p and 1. +In the rewritten program, the other goroutine can observe 2, which was previously impossible. +

+ +

+Not introducing data races also means not assuming that loops terminate. +For example, a compiler must in general not move the accesses to *p or *q +ahead of the loop in this program: +

+ +
+n := 0
+for e := list; e != nil; e = e.next {
+	n++
+}
+i := *p
+*q = 1
+
+ +

+If list pointed to a cyclic list, +then the original program would never access *p or *q, +but the rewritten program would. +(Moving `*p` ahead would be safe if the compiler can prove `*p` will not panic; +moving `*q` ahead would also require the compiler proving that no other +goroutine can access `*q`.) +

+ +

+Not introducing data races also means not assuming that called functions +always return or are free of synchronization operations. +For example, a compiler must not move the accesses to *p or *q +ahead of the function call in this program +(at least not without direct knowledge of the precise behavior of f): +

+ +
+f()
+i := *p
+*q = 1
+
+ +

+If the call never returned, then once again the original program +would never access *p or *q, but the rewritten program would. +And if the call contained synchronizing operations, then the original program +could establish happens before edges preceding the accesses +to *p and *q, but the rewritten program would not. +

+ +

+Not allowing a single read to observe multiple values means +not reloading local variables from shared memory. +For example, a compiler must not discard i and reload it +a second time from *p in this program: +

+ +
+i := *p
+if i < 0 || i >= len(funcs) {
+	panic("invalid function index")
+}
+... complex code ...
+// compiler must NOT reload i = *p here
+funcs[i]()
+
+ +

+If the complex code needs many registers, a compiler for single-threaded programs +could discard i without saving a copy and then reload +i = *p just before +funcs[i](). +A Go compiler must not, because the value of *p may have changed. +(Instead, the compiler could spill i to the stack.) +

+ +

+Not allowing a single write to write multiple values also means not using +the memory where a local variable will be written as temporary storage before the write. +For example, a compiler must not use *p as temporary storage in this program: +

+ +
+*p = i + *p/2
+
+ +

+That is, it must not rewrite the program into this one: +

+ +
+*p /= 2
+*p += i
+
+ +

+If i and *p start equal to 2, +the original code does *p = 3, +so a racing thread can read only 2 or 3 from *p. +The rewritten code does *p = 1 and then *p = 3, +allowing a racing thread to read 1 as well. +

+ +

+Note that all these optimizations are permitted in C/C++ compilers: +a Go compiler sharing a back end with a C/C++ compiler must take care +to disable optimizations that are invalid for Go. +

+ +

+Note that the prohibition on introducing data races +does not apply if the compiler can prove that the races +do not affect correct execution on the target platform. +For example, on essentially all CPUs, it is valid to rewrite +

+ +
+n := 0
+for i := 0; i < m; i++ {
+	n += *shared
+}
+
+ +into: + +
+n := 0
+local := *shared
+for i := 0; i < m; i++ {
+	n += local
+}
+
+ +

+provided it can be proved that *shared will not fault on access, +because the potential added read will not affect any existing concurrent reads or writes. +On the other hand, the rewrite would not be valid in a source-to-source translator. +

+ +

Conclusion

+ +

+Go programmers writing data-race-free programs can rely on +sequentially consistent execution of those programs, +just as in essentially all other modern programming languages. +

+ +

+When it comes to programs with races, +both programmers and compilers should remember the advice: +don't be clever. +

diff --git a/platform/dbops/binaries/go/go/doc/go_spec.html b/platform/dbops/binaries/go/go/doc/go_spec.html new file mode 100644 index 0000000000000000000000000000000000000000..7b9dd3862a344a48615efce27cd4143be90463fe --- /dev/null +++ b/platform/dbops/binaries/go/go/doc/go_spec.html @@ -0,0 +1,8754 @@ + + +

Introduction

+ +

+This is the reference manual for the Go programming language. +The pre-Go1.18 version, without generics, can be found +here. +For more information and other documents, see go.dev. +

+ +

+Go is a general-purpose language designed with systems programming +in mind. It is strongly typed and garbage-collected and has explicit +support for concurrent programming. Programs are constructed from +packages, whose properties allow efficient management of +dependencies. +

+ +

+The syntax is compact and simple to parse, allowing for easy analysis +by automatic tools such as integrated development environments. +

+ +

Notation

+

+The syntax is specified using a +variant +of Extended Backus-Naur Form (EBNF): +

+ +
+Syntax      = { Production } .
+Production  = production_name "=" [ Expression ] "." .
+Expression  = Term { "|" Term } .
+Term        = Factor { Factor } .
+Factor      = production_name | token [ "…" token ] | Group | Option | Repetition .
+Group       = "(" Expression ")" .
+Option      = "[" Expression "]" .
+Repetition  = "{" Expression "}" .
+
+ +

+Productions are expressions constructed from terms and the following +operators, in increasing precedence: +

+
+|   alternation
+()  grouping
+[]  option (0 or 1 times)
+{}  repetition (0 to n times)
+
+ +

+Lowercase production names are used to identify lexical (terminal) tokens. +Non-terminals are in CamelCase. Lexical tokens are enclosed in +double quotes "" or back quotes ``. +

+ +

+The form a … b represents the set of characters from +a through b as alternatives. The horizontal +ellipsis is also used elsewhere in the spec to informally denote various +enumerations or code snippets that are not further specified. The character +(as opposed to the three characters ...) is not a token of the Go +language. +

+ +

+A link of the form [Go 1.xx] indicates that a described +language feature (or some aspect of it) was changed or added with language version 1.xx and +thus requires at minimum that language version to build. +For details, see the linked section +in the appendix. +

+ +

Source code representation

+ +

+Source code is Unicode text encoded in +UTF-8. The text is not +canonicalized, so a single accented code point is distinct from the +same character constructed from combining an accent and a letter; +those are treated as two code points. For simplicity, this document +will use the unqualified term character to refer to a Unicode code point +in the source text. +

+

+Each code point is distinct; for instance, uppercase and lowercase letters +are different characters. +

+

+Implementation restriction: For compatibility with other tools, a +compiler may disallow the NUL character (U+0000) in the source text. +

+

+Implementation restriction: For compatibility with other tools, a +compiler may ignore a UTF-8-encoded byte order mark +(U+FEFF) if it is the first Unicode code point in the source text. +A byte order mark may be disallowed anywhere else in the source. +

+ +

Characters

+ +

+The following terms are used to denote specific Unicode character categories: +

+
+newline        = /* the Unicode code point U+000A */ .
+unicode_char   = /* an arbitrary Unicode code point except newline */ .
+unicode_letter = /* a Unicode code point categorized as "Letter" */ .
+unicode_digit  = /* a Unicode code point categorized as "Number, decimal digit" */ .
+
+ +

+In The Unicode Standard 8.0, +Section 4.5 "General Category" defines a set of character categories. +Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo +as Unicode letters, and those in the Number category Nd as Unicode digits. +

+ +

Letters and digits

+ +

+The underscore character _ (U+005F) is considered a lowercase letter. +

+
+letter        = unicode_letter | "_" .
+decimal_digit = "0" … "9" .
+binary_digit  = "0" | "1" .
+octal_digit   = "0" … "7" .
+hex_digit     = "0" … "9" | "A" … "F" | "a" … "f" .
+
+ +

Lexical elements

+ +

Comments

+ +

+Comments serve as program documentation. There are two forms: +

+ +
    +
  1. +Line comments start with the character sequence // +and stop at the end of the line. +
  2. +
  3. +General comments start with the character sequence /* +and stop with the first subsequent character sequence */. +
  4. +
+ +

+A comment cannot start inside a rune or +string literal, or inside a comment. +A general comment containing no newlines acts like a space. +Any other comment acts like a newline. +

+ +

Tokens

+ +

+Tokens form the vocabulary of the Go language. +There are four classes: identifiers, keywords, operators +and punctuation, and literals. White space, formed from +spaces (U+0020), horizontal tabs (U+0009), +carriage returns (U+000D), and newlines (U+000A), +is ignored except as it separates tokens +that would otherwise combine into a single token. Also, a newline or end of file +may trigger the insertion of a semicolon. +While breaking the input into tokens, +the next token is the longest sequence of characters that form a +valid token. +

+ +

Semicolons

+ +

+The formal syntax uses semicolons ";" as terminators in +a number of productions. Go programs may omit most of these semicolons +using the following two rules: +

+ +
    +
  1. +When the input is broken into tokens, a semicolon is automatically inserted +into the token stream immediately after a line's final token if that token is + +
  2. + +
  3. +To allow complex statements to occupy a single line, a semicolon +may be omitted before a closing ")" or "}". +
  4. +
+ +

+To reflect idiomatic use, code examples in this document elide semicolons +using these rules. +

+ + +

Identifiers

+ +

+Identifiers name program entities such as variables and types. +An identifier is a sequence of one or more letters and digits. +The first character in an identifier must be a letter. +

+
+identifier = letter { letter | unicode_digit } .
+
+
+a
+_x9
+ThisVariableIsExported
+αβ
+
+ +

+Some identifiers are predeclared. +

+ + +

Keywords

+ +

+The following keywords are reserved and may not be used as identifiers. +

+
+break        default      func         interface    select
+case         defer        go           map          struct
+chan         else         goto         package      switch
+const        fallthrough  if           range        type
+continue     for          import       return       var
+
+ +

Operators and punctuation

+ +

+The following character sequences represent operators +(including assignment operators) and punctuation +[Go 1.18]: +

+
++    &     +=    &=     &&    ==    !=    (    )
+-    |     -=    |=     ||    <     <=    [    ]
+*    ^     *=    ^=     <-    >     >=    {    }
+/    <<    /=    <<=    ++    =     :=    ,    ;
+%    >>    %=    >>=    --    !     ...   .    :
+     &^          &^=          ~
+
+ +

Integer literals

+ +

+An integer literal is a sequence of digits representing an +integer constant. +An optional prefix sets a non-decimal base: 0b or 0B +for binary, 0, 0o, or 0O for octal, +and 0x or 0X for hexadecimal +[Go 1.13]. +A single 0 is considered a decimal zero. +In hexadecimal literals, letters a through f +and A through F represent values 10 through 15. +

+ +

+For readability, an underscore character _ may appear after +a base prefix or between successive digits; such underscores do not change +the literal's value. +

+
+int_lit        = decimal_lit | binary_lit | octal_lit | hex_lit .
+decimal_lit    = "0" | ( "1" … "9" ) [ [ "_" ] decimal_digits ] .
+binary_lit     = "0" ( "b" | "B" ) [ "_" ] binary_digits .
+octal_lit      = "0" [ "o" | "O" ] [ "_" ] octal_digits .
+hex_lit        = "0" ( "x" | "X" ) [ "_" ] hex_digits .
+
+decimal_digits = decimal_digit { [ "_" ] decimal_digit } .
+binary_digits  = binary_digit { [ "_" ] binary_digit } .
+octal_digits   = octal_digit { [ "_" ] octal_digit } .
+hex_digits     = hex_digit { [ "_" ] hex_digit } .
+
+ +
+42
+4_2
+0600
+0_600
+0o600
+0O600       // second character is capital letter 'O'
+0xBadFace
+0xBad_Face
+0x_67_7a_2f_cc_40_c6
+170141183460469231731687303715884105727
+170_141183_460469_231731_687303_715884_105727
+
+_42         // an identifier, not an integer literal
+42_         // invalid: _ must separate successive digits
+4__2        // invalid: only one _ at a time
+0_xBadFace  // invalid: _ must separate successive digits
+
+ + +

Floating-point literals

+ +

+A floating-point literal is a decimal or hexadecimal representation of a +floating-point constant. +

+ +

+A decimal floating-point literal consists of an integer part (decimal digits), +a decimal point, a fractional part (decimal digits), and an exponent part +(e or E followed by an optional sign and decimal digits). +One of the integer part or the fractional part may be elided; one of the decimal point +or the exponent part may be elided. +An exponent value exp scales the mantissa (integer and fractional part) by 10exp. +

+ +

+A hexadecimal floating-point literal consists of a 0x or 0X +prefix, an integer part (hexadecimal digits), a radix point, a fractional part (hexadecimal digits), +and an exponent part (p or P followed by an optional sign and decimal digits). +One of the integer part or the fractional part may be elided; the radix point may be elided as well, +but the exponent part is required. (This syntax matches the one given in IEEE 754-2008 §5.12.3.) +An exponent value exp scales the mantissa (integer and fractional part) by 2exp +[Go 1.13]. +

+ +

+For readability, an underscore character _ may appear after +a base prefix or between successive digits; such underscores do not change +the literal value. +

+ +
+float_lit         = decimal_float_lit | hex_float_lit .
+
+decimal_float_lit = decimal_digits "." [ decimal_digits ] [ decimal_exponent ] |
+                    decimal_digits decimal_exponent |
+                    "." decimal_digits [ decimal_exponent ] .
+decimal_exponent  = ( "e" | "E" ) [ "+" | "-" ] decimal_digits .
+
+hex_float_lit     = "0" ( "x" | "X" ) hex_mantissa hex_exponent .
+hex_mantissa      = [ "_" ] hex_digits "." [ hex_digits ] |
+                    [ "_" ] hex_digits |
+                    "." hex_digits .
+hex_exponent      = ( "p" | "P" ) [ "+" | "-" ] decimal_digits .
+
+ +
+0.
+72.40
+072.40       // == 72.40
+2.71828
+1.e+0
+6.67428e-11
+1E6
+.25
+.12345E+5
+1_5.         // == 15.0
+0.15e+0_2    // == 15.0
+
+0x1p-2       // == 0.25
+0x2.p10      // == 2048.0
+0x1.Fp+0     // == 1.9375
+0X.8p-0      // == 0.5
+0X_1FFFP-16  // == 0.1249847412109375
+0x15e-2      // == 0x15e - 2 (integer subtraction)
+
+0x.p1        // invalid: mantissa has no digits
+1p-2         // invalid: p exponent requires hexadecimal mantissa
+0x1.5e-2     // invalid: hexadecimal mantissa requires p exponent
+1_.5         // invalid: _ must separate successive digits
+1._5         // invalid: _ must separate successive digits
+1.5_e1       // invalid: _ must separate successive digits
+1.5e_1       // invalid: _ must separate successive digits
+1.5e1_       // invalid: _ must separate successive digits
+
+ + +

Imaginary literals

+ +

+An imaginary literal represents the imaginary part of a +complex constant. +It consists of an integer or +floating-point literal +followed by the lowercase letter i. +The value of an imaginary literal is the value of the respective +integer or floating-point literal multiplied by the imaginary unit i +[Go 1.13] +

+ +
+imaginary_lit = (decimal_digits | int_lit | float_lit) "i" .
+
+ +

+For backward compatibility, an imaginary literal's integer part consisting +entirely of decimal digits (and possibly underscores) is considered a decimal +integer, even if it starts with a leading 0. +

+ +
+0i
+0123i         // == 123i for backward-compatibility
+0o123i        // == 0o123 * 1i == 83i
+0xabci        // == 0xabc * 1i == 2748i
+0.i
+2.71828i
+1.e+0i
+6.67428e-11i
+1E6i
+.25i
+.12345E+5i
+0x1p-2i       // == 0x1p-2 * 1i == 0.25i
+
+ + +

Rune literals

+ +

+A rune literal represents a rune constant, +an integer value identifying a Unicode code point. +A rune literal is expressed as one or more characters enclosed in single quotes, +as in 'x' or '\n'. +Within the quotes, any character may appear except newline and unescaped single +quote. A single quoted character represents the Unicode value +of the character itself, +while multi-character sequences beginning with a backslash encode +values in various formats. +

+ +

+The simplest form represents the single character within the quotes; +since Go source text is Unicode characters encoded in UTF-8, multiple +UTF-8-encoded bytes may represent a single integer value. For +instance, the literal 'a' holds a single byte representing +a literal a, Unicode U+0061, value 0x61, while +'ä' holds two bytes (0xc3 0xa4) representing +a literal a-dieresis, U+00E4, value 0xe4. +

+ +

+Several backslash escapes allow arbitrary values to be encoded as +ASCII text. There are four ways to represent the integer value +as a numeric constant: \x followed by exactly two hexadecimal +digits; \u followed by exactly four hexadecimal digits; +\U followed by exactly eight hexadecimal digits, and a +plain backslash \ followed by exactly three octal digits. +In each case the value of the literal is the value represented by +the digits in the corresponding base. +

+ +

+Although these representations all result in an integer, they have +different valid ranges. Octal escapes must represent a value between +0 and 255 inclusive. Hexadecimal escapes satisfy this condition +by construction. The escapes \u and \U +represent Unicode code points so within them some values are illegal, +in particular those above 0x10FFFF and surrogate halves. +

+ +

+After a backslash, certain single-character escapes represent special values: +

+ +
+\a   U+0007 alert or bell
+\b   U+0008 backspace
+\f   U+000C form feed
+\n   U+000A line feed or newline
+\r   U+000D carriage return
+\t   U+0009 horizontal tab
+\v   U+000B vertical tab
+\\   U+005C backslash
+\'   U+0027 single quote  (valid escape only within rune literals)
+\"   U+0022 double quote  (valid escape only within string literals)
+
+ +

+An unrecognized character following a backslash in a rune literal is illegal. +

+ +
+rune_lit         = "'" ( unicode_value | byte_value ) "'" .
+unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
+byte_value       = octal_byte_value | hex_byte_value .
+octal_byte_value = `\` octal_digit octal_digit octal_digit .
+hex_byte_value   = `\` "x" hex_digit hex_digit .
+little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
+big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit
+                           hex_digit hex_digit hex_digit hex_digit .
+escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
+
+ +
+'a'
+'ä'
+'本'
+'\t'
+'\000'
+'\007'
+'\377'
+'\x07'
+'\xff'
+'\u12e4'
+'\U00101234'
+'\''         // rune literal containing single quote character
+'aa'         // illegal: too many characters
+'\k'         // illegal: k is not recognized after a backslash
+'\xa'        // illegal: too few hexadecimal digits
+'\0'         // illegal: too few octal digits
+'\400'       // illegal: octal value over 255
+'\uDFFF'     // illegal: surrogate half
+'\U00110000' // illegal: invalid Unicode code point
+
+ + +

String literals

+ +

+A string literal represents a string constant +obtained from concatenating a sequence of characters. There are two forms: +raw string literals and interpreted string literals. +

+ +

+Raw string literals are character sequences between back quotes, as in +`foo`. Within the quotes, any character may appear except +back quote. The value of a raw string literal is the +string composed of the uninterpreted (implicitly UTF-8-encoded) characters +between the quotes; +in particular, backslashes have no special meaning and the string may +contain newlines. +Carriage return characters ('\r') inside raw string literals +are discarded from the raw string value. +

+ +

+Interpreted string literals are character sequences between double +quotes, as in "bar". +Within the quotes, any character may appear except newline and unescaped double quote. +The text between the quotes forms the +value of the literal, with backslash escapes interpreted as they +are in rune literals (except that \' is illegal and +\" is legal), with the same restrictions. +The three-digit octal (\nnn) +and two-digit hexadecimal (\xnn) escapes represent individual +bytes of the resulting string; all other escapes represent +the (possibly multi-byte) UTF-8 encoding of individual characters. +Thus inside a string literal \377 and \xFF represent +a single byte of value 0xFF=255, while ÿ, +\u00FF, \U000000FF and \xc3\xbf represent +the two bytes 0xc3 0xbf of the UTF-8 encoding of character +U+00FF. +

+ +
+string_lit             = raw_string_lit | interpreted_string_lit .
+raw_string_lit         = "`" { unicode_char | newline } "`" .
+interpreted_string_lit = `"` { unicode_value | byte_value } `"` .
+
+ +
+`abc`                // same as "abc"
+`\n
+\n`                  // same as "\\n\n\\n"
+"\n"
+"\""                 // same as `"`
+"Hello, world!\n"
+"日本語"
+"\u65e5本\U00008a9e"
+"\xff\u00FF"
+"\uD800"             // illegal: surrogate half
+"\U00110000"         // illegal: invalid Unicode code point
+
+ +

+These examples all represent the same string: +

+ +
+"日本語"                                 // UTF-8 input text
+`日本語`                                 // UTF-8 input text as a raw literal
+"\u65e5\u672c\u8a9e"                    // the explicit Unicode code points
+"\U000065e5\U0000672c\U00008a9e"        // the explicit Unicode code points
+"\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"  // the explicit UTF-8 bytes
+
+ +

+If the source code represents a character as two code points, such as +a combining form involving an accent and a letter, the result will be +an error if placed in a rune literal (it is not a single code +point), and will appear as two code points if placed in a string +literal. +

+ + +

Constants

+ +

There are boolean constants, +rune constants, +integer constants, +floating-point constants, complex constants, +and string constants. Rune, integer, floating-point, +and complex constants are +collectively called numeric constants. +

+ +

+A constant value is represented by a +rune, +integer, +floating-point, +imaginary, +or +string literal, +an identifier denoting a constant, +a constant expression, +a conversion with a result that is a constant, or +the result value of some built-in functions such as +min or max applied to constant arguments, +unsafe.Sizeof applied to certain values, +cap or len applied to +some expressions, +real and imag applied to a complex constant +and complex applied to numeric constants. +The boolean truth values are represented by the predeclared constants +true and false. The predeclared identifier +iota denotes an integer constant. +

+ +

+In general, complex constants are a form of +constant expression +and are discussed in that section. +

+ +

+Numeric constants represent exact values of arbitrary precision and do not overflow. +Consequently, there are no constants denoting the IEEE-754 negative zero, infinity, +and not-a-number values. +

+ +

+Constants may be typed or untyped. +Literal constants, true, false, iota, +and certain constant expressions +containing only untyped constant operands are untyped. +

+ +

+A constant may be given a type explicitly by a constant declaration +or conversion, or implicitly when used in a +variable declaration or an +assignment statement or as an +operand in an expression. +It is an error if the constant value +cannot be represented as a value of the respective type. +If the type is a type parameter, the constant is converted into a non-constant +value of the type parameter. +

+ +

+An untyped constant has a default type which is the type to which the +constant is implicitly converted in contexts where a typed value is required, +for instance, in a short variable declaration +such as i := 0 where there is no explicit type. +The default type of an untyped constant is bool, rune, +int, float64, complex128, or string +respectively, depending on whether it is a boolean, rune, integer, floating-point, +complex, or string constant. +

+ +

+Implementation restriction: Although numeric constants have arbitrary +precision in the language, a compiler may implement them using an +internal representation with limited precision. That said, every +implementation must: +

+ +
    +
  • Represent integer constants with at least 256 bits.
  • + +
  • Represent floating-point constants, including the parts of + a complex constant, with a mantissa of at least 256 bits + and a signed binary exponent of at least 16 bits.
  • + +
  • Give an error if unable to represent an integer constant + precisely.
  • + +
  • Give an error if unable to represent a floating-point or + complex constant due to overflow.
  • + +
  • Round to the nearest representable constant if unable to + represent a floating-point or complex constant due to limits + on precision.
  • +
+ +

+These requirements apply both to literal constants and to the result +of evaluating constant +expressions. +

+ + +

Variables

+ +

+A variable is a storage location for holding a value. +The set of permissible values is determined by the +variable's type. +

+ +

+A variable declaration +or, for function parameters and results, the signature +of a function declaration +or function literal reserves +storage for a named variable. + +Calling the built-in function new +or taking the address of a composite literal +allocates storage for a variable at run time. +Such an anonymous variable is referred to via a (possibly implicit) +pointer indirection. +

+ +

+Structured variables of array, slice, +and struct types have elements and fields that may +be addressed individually. Each such element +acts like a variable. +

+ +

+The static type (or just type) of a variable is the +type given in its declaration, the type provided in the +new call or composite literal, or the type of +an element of a structured variable. +Variables of interface type also have a distinct dynamic type, +which is the (non-interface) type of the value assigned to the variable at run time +(unless the value is the predeclared identifier nil, +which has no type). +The dynamic type may vary during execution but values stored in interface +variables are always assignable +to the static type of the variable. +

+ +
+var x interface{}  // x is nil and has static type interface{}
+var v *T           // v has value nil, static type *T
+x = 42             // x has value 42 and dynamic type int
+x = v              // x has value (*T)(nil) and dynamic type *T
+
+ +

+A variable's value is retrieved by referring to the variable in an +expression; it is the most recent value +assigned to the variable. +If a variable has not yet been assigned a value, its value is the +zero value for its type. +

+ + +

Types

+ +

+A type determines a set of values together with operations and methods specific +to those values. A type may be denoted by a type name, if it has one, which must be +followed by type arguments if the type is generic. +A type may also be specified using a type literal, which composes a type +from existing types. +

+ +
+Type      = TypeName [ TypeArgs ] | TypeLit | "(" Type ")" .
+TypeName  = identifier | QualifiedIdent .
+TypeArgs  = "[" TypeList [ "," ] "]" .
+TypeList  = Type { "," Type } .
+TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
+            SliceType | MapType | ChannelType .
+
+ +

+The language predeclares certain type names. +Others are introduced with type declarations +or type parameter lists. +Composite types—array, struct, pointer, function, +interface, slice, map, and channel types—may be constructed using +type literals. +

+ +

+Predeclared types, defined types, and type parameters are called named types. +An alias denotes a named type if the type given in the alias declaration is a named type. +

+ +

Boolean types

+ +

+A boolean type represents the set of Boolean truth values +denoted by the predeclared constants true +and false. The predeclared boolean type is bool; +it is a defined type. +

+ +

Numeric types

+ +

+An integer, floating-point, or complex type +represents the set of integer, floating-point, or complex values, respectively. +They are collectively called numeric types. +The predeclared architecture-independent numeric types are: +

+ +
+uint8       the set of all unsigned  8-bit integers (0 to 255)
+uint16      the set of all unsigned 16-bit integers (0 to 65535)
+uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
+uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
+
+int8        the set of all signed  8-bit integers (-128 to 127)
+int16       the set of all signed 16-bit integers (-32768 to 32767)
+int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
+int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
+
+float32     the set of all IEEE-754 32-bit floating-point numbers
+float64     the set of all IEEE-754 64-bit floating-point numbers
+
+complex64   the set of all complex numbers with float32 real and imaginary parts
+complex128  the set of all complex numbers with float64 real and imaginary parts
+
+byte        alias for uint8
+rune        alias for int32
+
+ +

+The value of an n-bit integer is n bits wide and represented using +two's complement arithmetic. +

+ +

+There is also a set of predeclared integer types with implementation-specific sizes: +

+ +
+uint     either 32 or 64 bits
+int      same size as uint
+uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value
+
+ +

+To avoid portability issues all numeric types are defined +types and thus distinct except +byte, which is an alias for uint8, and +rune, which is an alias for int32. +Explicit conversions +are required when different numeric types are mixed in an expression +or assignment. For instance, int32 and int +are not the same type even though they may have the same size on a +particular architecture. +

+ +

String types

+ +

+A string type represents the set of string values. +A string value is a (possibly empty) sequence of bytes. +The number of bytes is called the length of the string and is never negative. +Strings are immutable: once created, +it is impossible to change the contents of a string. +The predeclared string type is string; +it is a defined type. +

+ +

+The length of a string s can be discovered using +the built-in function len. +The length is a compile-time constant if the string is a constant. +A string's bytes can be accessed by integer indices +0 through len(s)-1. +It is illegal to take the address of such an element; if +s[i] is the i'th byte of a +string, &s[i] is invalid. +

+ + +

Array types

+ +

+An array is a numbered sequence of elements of a single +type, called the element type. +The number of elements is called the length of the array and is never negative. +

+ +
+ArrayType   = "[" ArrayLength "]" ElementType .
+ArrayLength = Expression .
+ElementType = Type .
+
+ +

+The length is part of the array's type; it must evaluate to a +non-negative constant +representable by a value +of type int. +The length of array a can be discovered +using the built-in function len. +The elements can be addressed by integer indices +0 through len(a)-1. +Array types are always one-dimensional but may be composed to form +multi-dimensional types. +

+ +
+[32]byte
+[2*N] struct { x, y int32 }
+[1000]*float64
+[3][5]int
+[2][2][2]float64  // same as [2]([2]([2]float64))
+
+ +

+An array type T may not have an element of type T, +or of a type containing T as a component, directly or indirectly, +if those containing types are only array or struct types. +

+ +
+// invalid array types
+type (
+	T1 [10]T1                 // element type of T1 is T1
+	T2 [10]struct{ f T2 }     // T2 contains T2 as component of a struct
+	T3 [10]T4                 // T3 contains T3 as component of a struct in T4
+	T4 struct{ f T3 }         // T4 contains T4 as component of array T3 in a struct
+)
+
+// valid array types
+type (
+	T5 [10]*T5                // T5 contains T5 as component of a pointer
+	T6 [10]func() T6          // T6 contains T6 as component of a function type
+	T7 [10]struct{ f []T7 }   // T7 contains T7 as component of a slice in a struct
+)
+
+ +

Slice types

+ +

+A slice is a descriptor for a contiguous segment of an underlying array and +provides access to a numbered sequence of elements from that array. +A slice type denotes the set of all slices of arrays of its element type. +The number of elements is called the length of the slice and is never negative. +The value of an uninitialized slice is nil. +

+ +
+SliceType = "[" "]" ElementType .
+
+ +

+The length of a slice s can be discovered by the built-in function +len; unlike with arrays it may change during +execution. The elements can be addressed by integer indices +0 through len(s)-1. The slice index of a +given element may be less than the index of the same element in the +underlying array. +

+

+A slice, once initialized, is always associated with an underlying +array that holds its elements. A slice therefore shares storage +with its array and with other slices of the same array; by contrast, +distinct arrays always represent distinct storage. +

+

+The array underlying a slice may extend past the end of the slice. +The capacity is a measure of that extent: it is the sum of +the length of the slice and the length of the array beyond the slice; +a slice of length up to that capacity can be created by +slicing a new one from the original slice. +The capacity of a slice a can be discovered using the +built-in function cap(a). +

+ +

+A new, initialized slice value for a given element type T may be +made using the built-in function +make, +which takes a slice type +and parameters specifying the length and optionally the capacity. +A slice created with make always allocates a new, hidden array +to which the returned slice value refers. That is, executing +

+ +
+make([]T, length, capacity)
+
+ +

+produces the same slice as allocating an array and slicing +it, so these two expressions are equivalent: +

+ +
+make([]int, 50, 100)
+new([100]int)[0:50]
+
+ +

+Like arrays, slices are always one-dimensional but may be composed to construct +higher-dimensional objects. +With arrays of arrays, the inner arrays are, by construction, always the same length; +however with slices of slices (or arrays of slices), the inner lengths may vary dynamically. +Moreover, the inner slices must be initialized individually. +

+ +

Struct types

+ +

+A struct is a sequence of named elements, called fields, each of which has a +name and a type. Field names may be specified explicitly (IdentifierList) or +implicitly (EmbeddedField). +Within a struct, non-blank field names must +be unique. +

+ +
+StructType    = "struct" "{" { FieldDecl ";" } "}" .
+FieldDecl     = (IdentifierList Type | EmbeddedField) [ Tag ] .
+EmbeddedField = [ "*" ] TypeName [ TypeArgs ] .
+Tag           = string_lit .
+
+ +
+// An empty struct.
+struct {}
+
+// A struct with 6 fields.
+struct {
+	x, y int
+	u float32
+	_ float32  // padding
+	A *[]int
+	F func()
+}
+
+ +

+A field declared with a type but no explicit field name is called an embedded field. +An embedded field must be specified as +a type name T or as a pointer to a non-interface type name *T, +and T itself may not be +a pointer type. The unqualified type name acts as the field name. +

+ +
+// A struct with four embedded fields of types T1, *T2, P.T3 and *P.T4
+struct {
+	T1        // field name is T1
+	*T2       // field name is T2
+	P.T3      // field name is T3
+	*P.T4     // field name is T4
+	x, y int  // field names are x and y
+}
+
+ +

+The following declaration is illegal because field names must be unique +in a struct type: +

+ +
+struct {
+	T     // conflicts with embedded field *T and *P.T
+	*T    // conflicts with embedded field T and *P.T
+	*P.T  // conflicts with embedded field T and *T
+}
+
+ +

+A field or method f of an +embedded field in a struct x is called promoted if +x.f is a legal selector that denotes +that field or method f. +

+ +

+Promoted fields act like ordinary fields +of a struct except that they cannot be used as field names in +composite literals of the struct. +

+ +

+Given a struct type S and a named type +T, promoted methods are included in the method set of the struct as follows: +

+
    +
  • + If S contains an embedded field T, + the method sets of S + and *S both include promoted methods with receiver + T. The method set of *S also + includes promoted methods with receiver *T. +
  • + +
  • + If S contains an embedded field *T, + the method sets of S and *S both + include promoted methods with receiver T or + *T. +
  • +
+ +

+A field declaration may be followed by an optional string literal tag, +which becomes an attribute for all the fields in the corresponding +field declaration. An empty tag string is equivalent to an absent tag. +The tags are made visible through a reflection interface +and take part in type identity for structs +but are otherwise ignored. +

+ +
+struct {
+	x, y float64 ""  // an empty tag string is like an absent tag
+	name string  "any string is permitted as a tag"
+	_    [4]byte "ceci n'est pas un champ de structure"
+}
+
+// A struct corresponding to a TimeStamp protocol buffer.
+// The tag strings define the protocol buffer field numbers;
+// they follow the convention outlined by the reflect package.
+struct {
+	microsec  uint64 `protobuf:"1"`
+	serverIP6 uint64 `protobuf:"2"`
+}
+
+ +

+A struct type T may not contain a field of type T, +or of a type containing T as a component, directly or indirectly, +if those containing types are only array or struct types. +

+ +
+// invalid struct types
+type (
+	T1 struct{ T1 }            // T1 contains a field of T1
+	T2 struct{ f [10]T2 }      // T2 contains T2 as component of an array
+	T3 struct{ T4 }            // T3 contains T3 as component of an array in struct T4
+	T4 struct{ f [10]T3 }      // T4 contains T4 as component of struct T3 in an array
+)
+
+// valid struct types
+type (
+	T5 struct{ f *T5 }         // T5 contains T5 as component of a pointer
+	T6 struct{ f func() T6 }   // T6 contains T6 as component of a function type
+	T7 struct{ f [10][]T7 }    // T7 contains T7 as component of a slice in an array
+)
+
+ +

Pointer types

+ +

+A pointer type denotes the set of all pointers to variables of a given +type, called the base type of the pointer. +The value of an uninitialized pointer is nil. +

+ +
+PointerType = "*" BaseType .
+BaseType    = Type .
+
+ +
+*Point
+*[4]int
+
+ +

Function types

+ +

+A function type denotes the set of all functions with the same parameter +and result types. The value of an uninitialized variable of function type +is nil. +

+ +
+FunctionType   = "func" Signature .
+Signature      = Parameters [ Result ] .
+Result         = Parameters | Type .
+Parameters     = "(" [ ParameterList [ "," ] ] ")" .
+ParameterList  = ParameterDecl { "," ParameterDecl } .
+ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
+
+ +

+Within a list of parameters or results, the names (IdentifierList) +must either all be present or all be absent. If present, each name +stands for one item (parameter or result) of the specified type and +all non-blank names in the signature +must be unique. +If absent, each type stands for one item of that type. +Parameter and result +lists are always parenthesized except that if there is exactly +one unnamed result it may be written as an unparenthesized type. +

+ +

+The final incoming parameter in a function signature may have +a type prefixed with .... +A function with such a parameter is called variadic and +may be invoked with zero or more arguments for that parameter. +

+ +
+func()
+func(x int) int
+func(a, _ int, z float32) bool
+func(a, b int, z float32) (bool)
+func(prefix string, values ...int)
+func(a, b int, z float64, opt ...interface{}) (success bool)
+func(int, int, float64) (float64, *[]int)
+func(n int) func(p *T)
+
+ +

Interface types

+ +

+An interface type defines a type set. +A variable of interface type can store a value of any type that is in the type +set of the interface. Such a type is said to +implement the interface. +The value of an uninitialized variable of interface type is nil. +

+ +
+InterfaceType  = "interface" "{" { InterfaceElem ";" } "}" .
+InterfaceElem  = MethodElem | TypeElem .
+MethodElem     = MethodName Signature .
+MethodName     = identifier .
+TypeElem       = TypeTerm { "|" TypeTerm } .
+TypeTerm       = Type | UnderlyingType .
+UnderlyingType = "~" Type .
+
+ +

+An interface type is specified by a list of interface elements. +An interface element is either a method or a type element, +where a type element is a union of one or more type terms. +A type term is either a single type or a single underlying type. +

+ +

Basic interfaces

+ +

+In its most basic form an interface specifies a (possibly empty) list of methods. +The type set defined by such an interface is the set of types which implement all of +those methods, and the corresponding method set consists +exactly of the methods specified by the interface. +Interfaces whose type sets can be defined entirely by a list of methods are called +basic interfaces. +

+ +
+// A simple File interface.
+interface {
+	Read([]byte) (int, error)
+	Write([]byte) (int, error)
+	Close() error
+}
+
+ +

+The name of each explicitly specified method must be unique +and not blank. +

+ +
+interface {
+	String() string
+	String() string  // illegal: String not unique
+	_(x int)         // illegal: method must have non-blank name
+}
+
+ +

+More than one type may implement an interface. +For instance, if two types S1 and S2 +have the method set +

+ +
+func (p T) Read(p []byte) (n int, err error)
+func (p T) Write(p []byte) (n int, err error)
+func (p T) Close() error
+
+ +

+(where T stands for either S1 or S2) +then the File interface is implemented by both S1 and +S2, regardless of what other methods +S1 and S2 may have or share. +

+ +

+Every type that is a member of the type set of an interface implements that interface. +Any given type may implement several distinct interfaces. +For instance, all types implement the empty interface which stands for the set +of all (non-interface) types: +

+ +
+interface{}
+
+ +

+For convenience, the predeclared type any is an alias for the empty interface. +[Go 1.18] +

+ +

+Similarly, consider this interface specification, +which appears within a type declaration +to define an interface called Locker: +

+ +
+type Locker interface {
+	Lock()
+	Unlock()
+}
+
+ +

+If S1 and S2 also implement +

+ +
+func (p T) Lock() { … }
+func (p T) Unlock() { … }
+
+ +

+they implement the Locker interface as well +as the File interface. +

+ +

Embedded interfaces

+ +

+In a slightly more general form +an interface T may use a (possibly qualified) interface type +name E as an interface element. This is called +embedding interface E in T +[Go 1.14]. +The type set of T is the intersection of the type sets +defined by T's explicitly declared methods and the type sets +of T’s embedded interfaces. +In other words, the type set of T is the set of all types that implement all the +explicitly declared methods of T and also all the methods of +E +[Go 1.18]. +

+ +
+type Reader interface {
+	Read(p []byte) (n int, err error)
+	Close() error
+}
+
+type Writer interface {
+	Write(p []byte) (n int, err error)
+	Close() error
+}
+
+// ReadWriter's methods are Read, Write, and Close.
+type ReadWriter interface {
+	Reader  // includes methods of Reader in ReadWriter's method set
+	Writer  // includes methods of Writer in ReadWriter's method set
+}
+
+ +

+When embedding interfaces, methods with the +same names must +have identical signatures. +

+ +
+type ReadCloser interface {
+	Reader   // includes methods of Reader in ReadCloser's method set
+	Close()  // illegal: signatures of Reader.Close and Close are different
+}
+
+ +

General interfaces

+ +

+In their most general form, an interface element may also be an arbitrary type term +T, or a term of the form ~T specifying the underlying type T, +or a union of terms t1|t2|…|tn +[Go 1.18]. +Together with method specifications, these elements enable the precise +definition of an interface's type set as follows: +

+ +
    +
  • The type set of the empty interface is the set of all non-interface types. +
  • + +
  • The type set of a non-empty interface is the intersection of the type sets + of its interface elements. +
  • + +
  • The type set of a method specification is the set of all non-interface types + whose method sets include that method. +
  • + +
  • The type set of a non-interface type term is the set consisting + of just that type. +
  • + +
  • The type set of a term of the form ~T + is the set of all types whose underlying type is T. +
  • + +
  • The type set of a union of terms + t1|t2|…|tn + is the union of the type sets of the terms. +
  • +
+ +

+The quantification "the set of all non-interface types" refers not just to all (non-interface) +types declared in the program at hand, but all possible types in all possible programs, and +hence is infinite. +Similarly, given the set of all non-interface types that implement a particular method, the +intersection of the method sets of those types will contain exactly that method, even if all +types in the program at hand always pair that method with another method. +

+ +

+By construction, an interface's type set never contains an interface type. +

+ +
+// An interface representing only the type int.
+interface {
+	int
+}
+
+// An interface representing all types with underlying type int.
+interface {
+	~int
+}
+
+// An interface representing all types with underlying type int that implement the String method.
+interface {
+	~int
+	String() string
+}
+
+// An interface representing an empty type set: there is no type that is both an int and a string.
+interface {
+	int
+	string
+}
+
+ +

+In a term of the form ~T, the underlying type of T +must be itself, and T cannot be an interface. +

+ +
+type MyInt int
+
+interface {
+	~[]byte  // the underlying type of []byte is itself
+	~MyInt   // illegal: the underlying type of MyInt is not MyInt
+	~error   // illegal: error is an interface
+}
+
+ +

+Union elements denote unions of type sets: +

+ +
+// The Float interface represents all floating-point types
+// (including any named types whose underlying types are
+// either float32 or float64).
+type Float interface {
+	~float32 | ~float64
+}
+
+ +

+The type T in a term of the form T or ~T cannot +be a type parameter, and the type sets of all +non-interface terms must be pairwise disjoint (the pairwise intersection of the type sets must be empty). +Given a type parameter P: +

+ +
+interface {
+	P                // illegal: P is a type parameter
+	int | ~P         // illegal: P is a type parameter
+	~int | MyInt     // illegal: the type sets for ~int and MyInt are not disjoint (~int includes MyInt)
+	float32 | Float  // overlapping type sets but Float is an interface
+}
+
+ +

+Implementation restriction: +A union (with more than one term) cannot contain the +predeclared identifier comparable +or interfaces that specify methods, or embed comparable or interfaces +that specify methods. +

+ +

+Interfaces that are not basic may only be used as type +constraints, or as elements of other interfaces used as constraints. +They cannot be the types of values or variables, or components of other, +non-interface types. +

+ +
+var x Float                     // illegal: Float is not a basic interface
+
+var x interface{} = Float(nil)  // illegal
+
+type Floatish struct {
+	f Float                 // illegal
+}
+
+ +

+An interface type T may not embed a type element +that is, contains, or embeds T, directly or indirectly. +

+ +
+// illegal: Bad may not embed itself
+type Bad interface {
+	Bad
+}
+
+// illegal: Bad1 may not embed itself using Bad2
+type Bad1 interface {
+	Bad2
+}
+type Bad2 interface {
+	Bad1
+}
+
+// illegal: Bad3 may not embed a union containing Bad3
+type Bad3 interface {
+	~int | ~string | Bad3
+}
+
+// illegal: Bad4 may not embed an array containing Bad4 as element type
+type Bad4 interface {
+	[10]Bad4
+}
+
+ +

Implementing an interface

+ +

+A type T implements an interface I if +

+ +
    +
  • + T is not an interface and is an element of the type set of I; or +
  • +
  • + T is an interface and the type set of T is a subset of the + type set of I. +
  • +
+ +

+A value of type T implements an interface if T +implements the interface. +

+ +

Map types

+ +

+A map is an unordered group of elements of one type, called the +element type, indexed by a set of unique keys of another type, +called the key type. +The value of an uninitialized map is nil. +

+ +
+MapType     = "map" "[" KeyType "]" ElementType .
+KeyType     = Type .
+
+ +

+The comparison operators +== and != must be fully defined +for operands of the key type; thus the key type must not be a function, map, or +slice. +If the key type is an interface type, these +comparison operators must be defined for the dynamic key values; +failure will cause a run-time panic. +

+ +
+map[string]int
+map[*T]struct{ x, y float64 }
+map[string]interface{}
+
+ +

+The number of map elements is called its length. +For a map m, it can be discovered using the +built-in function len +and may change during execution. Elements may be added during execution +using assignments and retrieved with +index expressions; they may be removed with the +delete and +clear built-in function. +

+ +

+A new, empty map value is made using the built-in +function make, +which takes the map type and an optional capacity hint as arguments: +

+ +
+make(map[string]int)
+make(map[string]int, 100)
+
+ +

+The initial capacity does not bound its size: +maps grow to accommodate the number of items +stored in them, with the exception of nil maps. +A nil map is equivalent to an empty map except that no elements +may be added. + +

Channel types

+ +

+A channel provides a mechanism for +concurrently executing functions +to communicate by +sending and +receiving +values of a specified element type. +The value of an uninitialized channel is nil. +

+ +
+ChannelType = ( "chan" | "chan" "<-" | "<-" "chan" ) ElementType .
+
+ +

+The optional <- operator specifies the channel direction, +send or receive. If a direction is given, the channel is directional, +otherwise it is bidirectional. +A channel may be constrained only to send or only to receive by +assignment or +explicit conversion. +

+ +
+chan T          // can be used to send and receive values of type T
+chan<- float64  // can only be used to send float64s
+<-chan int      // can only be used to receive ints
+
+ +

+The <- operator associates with the leftmost chan +possible: +

+ +
+chan<- chan int    // same as chan<- (chan int)
+chan<- <-chan int  // same as chan<- (<-chan int)
+<-chan <-chan int  // same as <-chan (<-chan int)
+chan (<-chan int)
+
+ +

+A new, initialized channel +value can be made using the built-in function +make, +which takes the channel type and an optional capacity as arguments: +

+ +
+make(chan int, 100)
+
+ +

+The capacity, in number of elements, sets the size of the buffer in the channel. +If the capacity is zero or absent, the channel is unbuffered and communication +succeeds only when both a sender and receiver are ready. Otherwise, the channel +is buffered and communication succeeds without blocking if the buffer +is not full (sends) or not empty (receives). +A nil channel is never ready for communication. +

+ +

+A channel may be closed with the built-in function +close. +The multi-valued assignment form of the +receive operator +reports whether a received value was sent before +the channel was closed. +

+ +

+A single channel may be used in +send statements, +receive operations, +and calls to the built-in functions +cap and +len +by any number of goroutines without further synchronization. +Channels act as first-in-first-out queues. +For example, if one goroutine sends values on a channel +and a second goroutine receives them, the values are +received in the order sent. +

+ +

Properties of types and values

+ +

Underlying types

+ +

+Each type T has an underlying type: If T +is one of the predeclared boolean, numeric, or string types, or a type literal, +the corresponding underlying type is T itself. +Otherwise, T's underlying type is the underlying type of the +type to which T refers in its declaration. +For a type parameter that is the underlying type of its +type constraint, which is always an interface. +

+ +
+type (
+	A1 = string
+	A2 = A1
+)
+
+type (
+	B1 string
+	B2 B1
+	B3 []B1
+	B4 B3
+)
+
+func f[P any](x P) { … }
+
+ +

+The underlying type of string, A1, A2, B1, +and B2 is string. +The underlying type of []B1, B3, and B4 is []B1. +The underlying type of P is interface{}. +

+ +

Core types

+ +

+Each non-interface type T has a core type, which is the same as the +underlying type of T. +

+ +

+An interface T has a core type if one of the following +conditions is satisfied: +

+ +
    +
  1. +There is a single type U which is the underlying type +of all types in the type set of T; or +
  2. +
  3. +the type set of T contains only channel types +with identical element type E, and all directional channels have the same +direction. +
  4. +
+ +

+No other interfaces have a core type. +

+ +

+The core type of an interface is, depending on the condition that is satisfied, either: +

+ +
    +
  1. +the type U; or +
  2. +
  3. +the type chan E if T contains only bidirectional +channels, or the type chan<- E or <-chan E +depending on the direction of the directional channels present. +
  4. +
+ +

+By definition, a core type is never a defined type, +type parameter, or +interface type. +

+ +

+Examples of interfaces with core types: +

+ +
+type Celsius float32
+type Kelvin  float32
+
+interface{ int }                          // int
+interface{ Celsius|Kelvin }               // float32
+interface{ ~chan int }                    // chan int
+interface{ ~chan int|~chan<- int }        // chan<- int
+interface{ ~[]*data; String() string }    // []*data
+
+ +

+Examples of interfaces without core types: +

+ +
+interface{}                               // no single underlying type
+interface{ Celsius|float64 }              // no single underlying type
+interface{ chan int | chan<- string }     // channels have different element types
+interface{ <-chan int | chan<- int }      // directional channels have different directions
+
+ +

+Some operations (slice expressions, +append and copy) +rely on a slightly more loose form of core types which accept byte slices and strings. +Specifically, if there are exactly two types, []byte and string, +which are the underlying types of all types in the type set of interface T, +the core type of T is called bytestring. +

+ +

+Examples of interfaces with bytestring core types: +

+ +
+interface{ int }                          // int (same as ordinary core type)
+interface{ []byte | string }              // bytestring
+interface{ ~[]byte | myString }           // bytestring
+
+ +

+Note that bytestring is not a real type; it cannot be used to declare +variables or compose other types. It exists solely to describe the behavior of some +operations that read from a sequence of bytes, which may be a byte slice or a string. +

+ +

Type identity

+ +

+Two types are either identical or different. +

+ +

+A named type is always different from any other type. +Otherwise, two types are identical if their underlying type literals are +structurally equivalent; that is, they have the same literal structure and corresponding +components have identical types. In detail: +

+ +
    +
  • Two array types are identical if they have identical element types and + the same array length.
  • + +
  • Two slice types are identical if they have identical element types.
  • + +
  • Two struct types are identical if they have the same sequence of fields, + and if corresponding fields have the same names, and identical types, + and identical tags. + Non-exported field names from different + packages are always different.
  • + +
  • Two pointer types are identical if they have identical base types.
  • + +
  • Two function types are identical if they have the same number of parameters + and result values, corresponding parameter and result types are + identical, and either both functions are variadic or neither is. + Parameter and result names are not required to match.
  • + +
  • Two interface types are identical if they define the same type set. +
  • + +
  • Two map types are identical if they have identical key and element types.
  • + +
  • Two channel types are identical if they have identical element types and + the same direction.
  • + +
  • Two instantiated types are identical if + their defined types and all type arguments are identical. +
  • +
+ +

+Given the declarations +

+ +
+type (
+	A0 = []string
+	A1 = A0
+	A2 = struct{ a, b int }
+	A3 = int
+	A4 = func(A3, float64) *A0
+	A5 = func(x int, _ float64) *[]string
+
+	B0 A0
+	B1 []string
+	B2 struct{ a, b int }
+	B3 struct{ a, c int }
+	B4 func(int, float64) *B0
+	B5 func(x int, y float64) *A1
+
+	C0 = B0
+	D0[P1, P2 any] struct{ x P1; y P2 }
+	E0 = D0[int, string]
+)
+
+ +

+these types are identical: +

+ +
+A0, A1, and []string
+A2 and struct{ a, b int }
+A3 and int
+A4, func(int, float64) *[]string, and A5
+
+B0 and C0
+D0[int, string] and E0
+[]int and []int
+struct{ a, b *B5 } and struct{ a, b *B5 }
+func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
+
+ +

+B0 and B1 are different because they are new types +created by distinct type definitions; +func(int, float64) *B0 and func(x int, y float64) *[]string +are different because B0 is different from []string; +and P1 and P2 are different because they are different +type parameters. +D0[int, string] and struct{ x int; y string } are +different because the former is an instantiated +defined type while the latter is a type literal +(but they are still assignable). +

+ +

Assignability

+ +

+A value x of type V is assignable to a variable of type T +("x is assignable to T") if one of the following conditions applies: +

+ +
    +
  • +V and T are identical. +
  • +
  • +V and T have identical +underlying types +but are not type parameters and at least one of V +or T is not a named type. +
  • +
  • +V and T are channel types with +identical element types, V is a bidirectional channel, +and at least one of V or T is not a named type. +
  • +
  • +T is an interface type, but not a type parameter, and +x implements T. +
  • +
  • +x is the predeclared identifier nil and T +is a pointer, function, slice, map, channel, or interface type, +but not a type parameter. +
  • +
  • +x is an untyped constant +representable +by a value of type T. +
  • +
+ +

+Additionally, if x's type V or T are type parameters, x +is assignable to a variable of type T if one of the following conditions applies: +

+ +
    +
  • +x is the predeclared identifier nil, T is +a type parameter, and x is assignable to each type in +T's type set. +
  • +
  • +V is not a named type, T is +a type parameter, and x is assignable to each type in +T's type set. +
  • +
  • +V is a type parameter and T is not a named type, +and values of each type in V's type set are assignable +to T. +
  • +
+ +

Representability

+ +

+A constant x is representable +by a value of type T, +where T is not a type parameter, +if one of the following conditions applies: +

+ +
    +
  • +x is in the set of values determined by T. +
  • + +
  • +T is a floating-point type and x can be rounded to T's +precision without overflow. Rounding uses IEEE 754 round-to-even rules but with an IEEE +negative zero further simplified to an unsigned zero. Note that constant values never result +in an IEEE negative zero, NaN, or infinity. +
  • + +
  • +T is a complex type, and x's +components real(x) and imag(x) +are representable by values of T's component type (float32 or +float64). +
  • +
+ +

+If T is a type parameter, +x is representable by a value of type T if x is representable +by a value of each type in T's type set. +

+ +
+x                   T           x is representable by a value of T because
+
+'a'                 byte        97 is in the set of byte values
+97                  rune        rune is an alias for int32, and 97 is in the set of 32-bit integers
+"foo"               string      "foo" is in the set of string values
+1024                int16       1024 is in the set of 16-bit integers
+42.0                byte        42 is in the set of unsigned 8-bit integers
+1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
+2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
+-1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
+0i                  int         0 is an integer value
+(42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
+
+ +
+x                   T           x is not representable by a value of T because
+
+0                   bool        0 is not in the set of boolean values
+'a'                 string      'a' is a rune, it is not in the set of string values
+1024                byte        1024 is not in the set of unsigned 8-bit integers
+-1                  uint16      -1 is not in the set of unsigned 16-bit integers
+1.1                 int         1.1 is not an integer value
+42i                 float32     (0 + 42i) is not in the set of float32 values
+1e1000              float64     1e1000 overflows to IEEE +Inf after rounding
+
+ +

Method sets

+ +

+The method set of a type determines the methods that can be +called on an operand of that type. +Every type has a (possibly empty) method set associated with it: +

+ +
    +
  • The method set of a defined type T consists of all +methods declared with receiver type T. +
  • + +
  • +The method set of a pointer to a defined type T +(where T is neither a pointer nor an interface) +is the set of all methods declared with receiver *T or T. +
  • + +
  • The method set of an interface type is the intersection +of the method sets of each type in the interface's type set +(the resulting method set is usually just the set of declared methods in the interface). +
  • +
+ +

+Further rules apply to structs (and pointer to structs) containing embedded fields, +as described in the section on struct types. +Any other type has an empty method set. +

+ +

+In a method set, each method must have a +unique +non-blank method name. +

+ +

Blocks

+ +

+A block is a possibly empty sequence of declarations and statements +within matching brace brackets. +

+ +
+Block = "{" StatementList "}" .
+StatementList = { Statement ";" } .
+
+ +

+In addition to explicit blocks in the source code, there are implicit blocks: +

+ +
    +
  1. The universe block encompasses all Go source text.
  2. + +
  3. Each package has a package block containing all + Go source text for that package.
  4. + +
  5. Each file has a file block containing all Go source text + in that file.
  6. + +
  7. Each "if", + "for", and + "switch" + statement is considered to be in its own implicit block.
  8. + +
  9. Each clause in a "switch" + or "select" statement + acts as an implicit block.
  10. +
+ +

+Blocks nest and influence scoping. +

+ + +

Declarations and scope

+ +

+A declaration binds a non-blank identifier to a +constant, +type, +type parameter, +variable, +function, +label, or +package. +Every identifier in a program must be declared. +No identifier may be declared twice in the same block, and +no identifier may be declared in both the file and package block. +

+ +

+The blank identifier may be used like any other identifier +in a declaration, but it does not introduce a binding and thus is not declared. +In the package block, the identifier init may only be used for +init function declarations, +and like the blank identifier it does not introduce a new binding. +

+ +
+Declaration   = ConstDecl | TypeDecl | VarDecl .
+TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .
+
+ +

+The scope of a declared identifier is the extent of source text in which +the identifier denotes the specified constant, type, variable, function, label, or package. +

+ +

+Go is lexically scoped using blocks: +

+ +
    +
  1. The scope of a predeclared identifier is the universe block.
  2. + +
  3. The scope of an identifier denoting a constant, type, variable, + or function (but not method) declared at top level (outside any + function) is the package block.
  4. + +
  5. The scope of the package name of an imported package is the file block + of the file containing the import declaration.
  6. + +
  7. The scope of an identifier denoting a method receiver, function parameter, + or result variable is the function body.
  8. + +
  9. The scope of an identifier denoting a type parameter of a function + or declared by a method receiver begins after the name of the function + and ends at the end of the function body.
  10. + +
  11. The scope of an identifier denoting a type parameter of a type + begins after the name of the type and ends at the end + of the TypeSpec.
  12. + +
  13. The scope of a constant or variable identifier declared + inside a function begins at the end of the ConstSpec or VarSpec + (ShortVarDecl for short variable declarations) + and ends at the end of the innermost containing block.
  14. + +
  15. The scope of a type identifier declared inside a function + begins at the identifier in the TypeSpec + and ends at the end of the innermost containing block.
  16. +
+ +

+An identifier declared in a block may be redeclared in an inner block. +While the identifier of the inner declaration is in scope, it denotes +the entity declared by the inner declaration. +

+ +

+The package clause is not a declaration; the package name +does not appear in any scope. Its purpose is to identify the files belonging +to the same package and to specify the default package name for import +declarations. +

+ + +

Label scopes

+ +

+Labels are declared by labeled statements and are +used in the "break", +"continue", and +"goto" statements. +It is illegal to define a label that is never used. +In contrast to other identifiers, labels are not block scoped and do +not conflict with identifiers that are not labels. The scope of a label +is the body of the function in which it is declared and excludes +the body of any nested function. +

+ + +

Blank identifier

+ +

+The blank identifier is represented by the underscore character _. +It serves as an anonymous placeholder instead of a regular (non-blank) +identifier and has special meaning in declarations, +as an operand, and in assignment statements. +

+ + +

Predeclared identifiers

+ +

+The following identifiers are implicitly declared in the +universe block +[Go 1.18] +[Go 1.21]: +

+
+Types:
+	any bool byte comparable
+	complex64 complex128 error float32 float64
+	int int8 int16 int32 int64 rune string
+	uint uint8 uint16 uint32 uint64 uintptr
+
+Constants:
+	true false iota
+
+Zero value:
+	nil
+
+Functions:
+	append cap clear close complex copy delete imag len
+	make max min new panic print println real recover
+
+ +

Exported identifiers

+ +

+An identifier may be exported to permit access to it from another package. +An identifier is exported if both: +

+
    +
  1. the first character of the identifier's name is a Unicode uppercase + letter (Unicode character category Lu); and
  2. +
  3. the identifier is declared in the package block + or it is a field name or + method name.
  4. +
+

+All other identifiers are not exported. +

+ +

Uniqueness of identifiers

+ +

+Given a set of identifiers, an identifier is called unique if it is +different from every other in the set. +Two identifiers are different if they are spelled differently, or if they +appear in different packages and are not +exported. Otherwise, they are the same. +

+ +

Constant declarations

+ +

+A constant declaration binds a list of identifiers (the names of +the constants) to the values of a list of constant expressions. +The number of identifiers must be equal +to the number of expressions, and the nth identifier on +the left is bound to the value of the nth expression on the +right. +

+ +
+ConstDecl      = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
+ConstSpec      = IdentifierList [ [ Type ] "=" ExpressionList ] .
+
+IdentifierList = identifier { "," identifier } .
+ExpressionList = Expression { "," Expression } .
+
+ +

+If the type is present, all constants take the type specified, and +the expressions must be assignable to that type, +which must not be a type parameter. +If the type is omitted, the constants take the +individual types of the corresponding expressions. +If the expression values are untyped constants, +the declared constants remain untyped and the constant identifiers +denote the constant values. For instance, if the expression is a +floating-point literal, the constant identifier denotes a floating-point +constant, even if the literal's fractional part is zero. +

+ +
+const Pi float64 = 3.14159265358979323846
+const zero = 0.0         // untyped floating-point constant
+const (
+	size int64 = 1024
+	eof        = -1  // untyped integer constant
+)
+const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
+const u, v float32 = 0, 3    // u = 0.0, v = 3.0
+
+ +

+Within a parenthesized const declaration list the +expression list may be omitted from any but the first ConstSpec. +Such an empty list is equivalent to the textual substitution of the +first preceding non-empty expression list and its type if any. +Omitting the list of expressions is therefore equivalent to +repeating the previous list. The number of identifiers must be equal +to the number of expressions in the previous list. +Together with the iota constant generator +this mechanism permits light-weight declaration of sequential values: +

+ +
+const (
+	Sunday = iota
+	Monday
+	Tuesday
+	Wednesday
+	Thursday
+	Friday
+	Partyday
+	numberOfDays  // this constant is not exported
+)
+
+ + +

Iota

+ +

+Within a constant declaration, the predeclared identifier +iota represents successive untyped integer +constants. Its value is the index of the respective ConstSpec +in that constant declaration, starting at zero. +It can be used to construct a set of related constants: +

+ +
+const (
+	c0 = iota  // c0 == 0
+	c1 = iota  // c1 == 1
+	c2 = iota  // c2 == 2
+)
+
+const (
+	a = 1 << iota  // a == 1  (iota == 0)
+	b = 1 << iota  // b == 2  (iota == 1)
+	c = 3          // c == 3  (iota == 2, unused)
+	d = 1 << iota  // d == 8  (iota == 3)
+)
+
+const (
+	u         = iota * 42  // u == 0     (untyped integer constant)
+	v float64 = iota * 42  // v == 42.0  (float64 constant)
+	w         = iota * 42  // w == 84    (untyped integer constant)
+)
+
+const x = iota  // x == 0
+const y = iota  // y == 0
+
+ +

+By definition, multiple uses of iota in the same ConstSpec all have the same value: +

+ +
+const (
+	bit0, mask0 = 1 << iota, 1<<iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
+	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
+	_, _                                  //                        (iota == 2, unused)
+	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
+)
+
+ +

+This last example exploits the implicit repetition +of the last non-empty expression list. +

+ + +

Type declarations

+ +

+A type declaration binds an identifier, the type name, to a type. +Type declarations come in two forms: alias declarations and type definitions. +

+ +
+TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
+TypeSpec = AliasDecl | TypeDef .
+
+ +

Alias declarations

+ +

+An alias declaration binds an identifier to the given type +[Go 1.9]. +

+ +
+AliasDecl = identifier "=" Type .
+
+ +

+Within the scope of +the identifier, it serves as an alias for the type. +

+ +
+type (
+	nodeList = []*Node  // nodeList and []*Node are identical types
+	Polar    = polar    // Polar and polar denote identical types
+)
+
+ + +

Type definitions

+ +

+A type definition creates a new, distinct type with the same +underlying type and operations as the given type +and binds an identifier, the type name, to it. +

+ +
+TypeDef = identifier [ TypeParameters ] Type .
+
+ +

+The new type is called a defined type. +It is different from any other type, +including the type it is created from. +

+ +
+type (
+	Point struct{ x, y float64 }  // Point and struct{ x, y float64 } are different types
+	polar Point                   // polar and Point denote different types
+)
+
+type TreeNode struct {
+	left, right *TreeNode
+	value any
+}
+
+type Block interface {
+	BlockSize() int
+	Encrypt(src, dst []byte)
+	Decrypt(src, dst []byte)
+}
+
+ +

+A defined type may have methods associated with it. +It does not inherit any methods bound to the given type, +but the method set +of an interface type or of elements of a composite type remains unchanged: +

+ +
+// A Mutex is a data type with two methods, Lock and Unlock.
+type Mutex struct         { /* Mutex fields */ }
+func (m *Mutex) Lock()    { /* Lock implementation */ }
+func (m *Mutex) Unlock()  { /* Unlock implementation */ }
+
+// NewMutex has the same composition as Mutex but its method set is empty.
+type NewMutex Mutex
+
+// The method set of PtrMutex's underlying type *Mutex remains unchanged,
+// but the method set of PtrMutex is empty.
+type PtrMutex *Mutex
+
+// The method set of *PrintableMutex contains the methods
+// Lock and Unlock bound to its embedded field Mutex.
+type PrintableMutex struct {
+	Mutex
+}
+
+// MyBlock is an interface type that has the same method set as Block.
+type MyBlock Block
+
+ +

+Type definitions may be used to define different boolean, numeric, +or string types and associate methods with them: +

+ +
+type TimeZone int
+
+const (
+	EST TimeZone = -(5 + iota)
+	CST
+	MST
+	PST
+)
+
+func (tz TimeZone) String() string {
+	return fmt.Sprintf("GMT%+dh", tz)
+}
+
+ +

+If the type definition specifies type parameters, +the type name denotes a generic type. +Generic types must be instantiated when they +are used. +

+ +
+type List[T any] struct {
+	next  *List[T]
+	value T
+}
+
+ +

+In a type definition the given type cannot be a type parameter. +

+ +
+type T[P any] P    // illegal: P is a type parameter
+
+func f[T any]() {
+	type L T   // illegal: T is a type parameter declared by the enclosing function
+}
+
+ +

+A generic type may also have methods associated with it. +In this case, the method receivers must declare the same number of type parameters as +present in the generic type definition. +

+ +
+// The method Len returns the number of elements in the linked list l.
+func (l *List[T]) Len() int  { … }
+
+ +

Type parameter declarations

+ +

+A type parameter list declares the type parameters of a generic function or type declaration. +The type parameter list looks like an ordinary function parameter list +except that the type parameter names must all be present and the list is enclosed +in square brackets rather than parentheses +[Go 1.18]. +

+ +
+TypeParameters  = "[" TypeParamList [ "," ] "]" .
+TypeParamList   = TypeParamDecl { "," TypeParamDecl } .
+TypeParamDecl   = IdentifierList TypeConstraint .
+
+ +

+All non-blank names in the list must be unique. +Each name declares a type parameter, which is a new and different named type +that acts as a placeholder for an (as of yet) unknown type in the declaration. +The type parameter is replaced with a type argument upon +instantiation of the generic function or type. +

+ +
+[P any]
+[S interface{ ~[]byte|string }]
+[S ~[]E, E any]
+[P Constraint[int]]
+[_ any]
+
+ +

+Just as each ordinary function parameter has a parameter type, each type parameter +has a corresponding (meta-)type which is called its +type constraint. +

+ +

+A parsing ambiguity arises when the type parameter list for a generic type +declares a single type parameter P with a constraint C +such that the text P C forms a valid expression: +

+ +
+type T[P *C] …
+type T[P (C)] …
+type T[P *C|Q] …
+…
+
+ +

+In these rare cases, the type parameter list is indistinguishable from an +expression and the type declaration is parsed as an array type declaration. +To resolve the ambiguity, embed the constraint in an +interface or use a trailing comma: +

+ +
+type T[P interface{*C}] …
+type T[P *C,] …
+
+ +

+Type parameters may also be declared by the receiver specification +of a method declaration associated +with a generic type. +

+ +

+Within a type parameter list of a generic type T, a type constraint +may not (directly, or indirectly through the type parameter list of another +generic type) refer to T. +

+ +
+type T1[P T1[P]] …                    // illegal: T1 refers to itself
+type T2[P interface{ T2[int] }] …     // illegal: T2 refers to itself
+type T3[P interface{ m(T3[int])}] …   // illegal: T3 refers to itself
+type T4[P T5[P]] …                    // illegal: T4 refers to T5 and
+type T5[P T4[P]] …                    //          T5 refers to T4
+
+type T6[P int] struct{ f *T6[P] }     // ok: reference to T6 is not in type parameter list
+
+ +

Type constraints

+ +

+A type constraint is an interface that defines the +set of permissible type arguments for the respective type parameter and controls the +operations supported by values of that type parameter +[Go 1.18]. +

+ +
+TypeConstraint = TypeElem .
+
+ +

+If the constraint is an interface literal of the form interface{E} where +E is an embedded type element (not a method), in a type parameter list +the enclosing interface{ … } may be omitted for convenience: +

+ +
+[T []P]                      // = [T interface{[]P}]
+[T ~int]                     // = [T interface{~int}]
+[T int|string]               // = [T interface{int|string}]
+type Constraint ~int         // illegal: ~int is not in a type parameter list
+
+ + + +

+The predeclared +interface type comparable +denotes the set of all non-interface types that are +strictly comparable +[Go 1.18]. +

+ +

+Even though interfaces that are not type parameters are comparable, +they are not strictly comparable and therefore they do not implement comparable. +However, they satisfy comparable. +

+ +
+int                          // implements comparable (int is strictly comparable)
+[]byte                       // does not implement comparable (slices cannot be compared)
+interface{}                  // does not implement comparable (see above)
+interface{ ~int | ~string }  // type parameter only: implements comparable (int, string types are strictly comparable)
+interface{ comparable }      // type parameter only: implements comparable (comparable implements itself)
+interface{ ~int | ~[]byte }  // type parameter only: does not implement comparable (slices are not comparable)
+interface{ ~struct{ any } }  // type parameter only: does not implement comparable (field any is not strictly comparable)
+
+ +

+The comparable interface and interfaces that (directly or indirectly) embed +comparable may only be used as type constraints. They cannot be the types of +values or variables, or components of other, non-interface types. +

+ +

Satisfying a type constraint

+ +

+A type argument T satisfies a type constraint C +if T is an element of the type set defined by C; i.e., +if T implements C. +As an exception, a strictly comparable +type constraint may also be satisfied by a comparable +(not necessarily strictly comparable) type argument +[Go 1.20]. +More precisely: +

+ +

+A type T satisfies a constraint C if +

+ + + +
+type argument      type constraint                // constraint satisfaction
+
+int                interface{ ~int }              // satisfied: int implements interface{ ~int }
+string             comparable                     // satisfied: string implements comparable (string is strictly comparable)
+[]byte             comparable                     // not satisfied: slices are not comparable
+any                interface{ comparable; int }   // not satisfied: any does not implement interface{ int }
+any                comparable                     // satisfied: any is comparable and implements the basic interface any
+struct{f any}      comparable                     // satisfied: struct{f any} is comparable and implements the basic interface any
+any                interface{ comparable; m() }   // not satisfied: any does not implement the basic interface interface{ m() }
+interface{ m() }   interface{ comparable; m() }   // satisfied: interface{ m() } is comparable and implements the basic interface interface{ m() }
+
+ +

+Because of the exception in the constraint satisfaction rule, comparing operands of type parameter type +may panic at run-time (even though comparable type parameters are always strictly comparable). +

+ +

Variable declarations

+ +

+A variable declaration creates one or more variables, +binds corresponding identifiers to them, and gives each a type and an initial value. +

+ +
+VarDecl     = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) .
+VarSpec     = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) .
+
+ +
+var i int
+var U, V, W float64
+var k = 0
+var x, y float32 = -1, -2
+var (
+	i       int
+	u, v, s = 2.0, 3.0, "bar"
+)
+var re, im = complexSqrt(-1)
+var _, found = entries[name]  // map lookup; only interested in "found"
+
+ +

+If a list of expressions is given, the variables are initialized +with the expressions following the rules for assignment statements. +Otherwise, each variable is initialized to its zero value. +

+ +

+If a type is present, each variable is given that type. +Otherwise, each variable is given the type of the corresponding +initialization value in the assignment. +If that value is an untyped constant, it is first implicitly +converted to its default type; +if it is an untyped boolean value, it is first implicitly converted to type bool. +The predeclared value nil cannot be used to initialize a variable +with no explicit type. +

+ +
+var d = math.Sin(0.5)  // d is float64
+var i = 42             // i is int
+var t, ok = x.(T)      // t is T, ok is bool
+var n = nil            // illegal
+
+ +

+Implementation restriction: A compiler may make it illegal to declare a variable +inside a function body if the variable is +never used. +

+ +

Short variable declarations

+ +

+A short variable declaration uses the syntax: +

+ +
+ShortVarDecl = IdentifierList ":=" ExpressionList .
+
+ +

+It is shorthand for a regular variable declaration +with initializer expressions but no types: +

+ +
+"var" IdentifierList "=" ExpressionList .
+
+ +
+i, j := 0, 10
+f := func() int { return 7 }
+ch := make(chan int)
+r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
+_, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
+
+ +

+Unlike regular variable declarations, a short variable declaration may redeclare +variables provided they were originally declared earlier in the same block +(or the parameter lists if the block is the function body) with the same type, +and at least one of the non-blank variables is new. +As a consequence, redeclaration can only appear in a multi-variable short declaration. +Redeclaration does not introduce a new variable; it just assigns a new value to the original. +The non-blank variable names on the left side of := +must be unique. +

+ +
+field1, offset := nextField(str, 0)
+field2, offset := nextField(str, offset)  // redeclares offset
+x, y, x := 1, 2, 3                        // illegal: x repeated on left side of :=
+
+ +

+Short variable declarations may appear only inside functions. +In some contexts such as the initializers for +"if", +"for", or +"switch" statements, +they can be used to declare local temporary variables. +

+ +

Function declarations

+ + + +

+A function declaration binds an identifier, the function name, +to a function. +

+ +
+FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] .
+FunctionName = identifier .
+FunctionBody = Block .
+
+ +

+If the function's signature declares +result parameters, the function body's statement list must end in +a terminating statement. +

+ +
+func IndexRune(s string, r rune) int {
+	for i, c := range s {
+		if c == r {
+			return i
+		}
+	}
+	// invalid: missing return statement
+}
+
+ +

+If the function declaration specifies type parameters, +the function name denotes a generic function. +A generic function must be instantiated before it can be +called or used as a value. +

+ +
+func min[T ~int|~float64](x, y T) T {
+	if x < y {
+		return x
+	}
+	return y
+}
+
+ +

+A function declaration without type parameters may omit the body. +Such a declaration provides the signature for a function implemented outside Go, +such as an assembly routine. +

+ +
+func flushICache(begin, end uintptr)  // implemented externally
+
+ +

Method declarations

+ +

+A method is a function with a receiver. +A method declaration binds an identifier, the method name, to a method, +and associates the method with the receiver's base type. +

+ +
+MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
+Receiver   = Parameters .
+
+ +

+The receiver is specified via an extra parameter section preceding the method +name. That parameter section must declare a single non-variadic parameter, the receiver. +Its type must be a defined type T or a +pointer to a defined type T, possibly followed by a list of type parameter +names [P1, P2, …] enclosed in square brackets. +T is called the receiver base type. A receiver base type cannot be +a pointer or interface type and it must be defined in the same package as the method. +The method is said to be bound to its receiver base type and the method name +is visible only within selectors for type T +or *T. +

+ +

+A non-blank receiver identifier must be +unique in the method signature. +If the receiver's value is not referenced inside the body of the method, +its identifier may be omitted in the declaration. The same applies in +general to parameters of functions and methods. +

+ +

+For a base type, the non-blank names of methods bound to it must be unique. +If the base type is a struct type, +the non-blank method and field names must be distinct. +

+ +

+Given defined type Point the declarations +

+ +
+func (p *Point) Length() float64 {
+	return math.Sqrt(p.x * p.x + p.y * p.y)
+}
+
+func (p *Point) Scale(factor float64) {
+	p.x *= factor
+	p.y *= factor
+}
+
+ +

+bind the methods Length and Scale, +with receiver type *Point, +to the base type Point. +

+ +

+If the receiver base type is a generic type, the +receiver specification must declare corresponding type parameters for the method +to use. This makes the receiver type parameters available to the method. +Syntactically, this type parameter declaration looks like an +instantiation of the receiver base type: the type +arguments must be identifiers denoting the type parameters being declared, one +for each type parameter of the receiver base type. +The type parameter names do not need to match their corresponding parameter names in the +receiver base type definition, and all non-blank parameter names must be unique in the +receiver parameter section and the method signature. +The receiver type parameter constraints are implied by the receiver base type definition: +corresponding type parameters have corresponding constraints. +

+ +
+type Pair[A, B any] struct {
+	a A
+	b B
+}
+
+func (p Pair[A, B]) Swap() Pair[B, A]  { … }  // receiver declares A, B
+func (p Pair[First, _]) First() First  { … }  // receiver declares First, corresponds to A in Pair
+
+ +

Expressions

+ +

+An expression specifies the computation of a value by applying +operators and functions to operands. +

+ +

Operands

+ +

+Operands denote the elementary values in an expression. An operand may be a +literal, a (possibly qualified) +non-blank identifier denoting a +constant, +variable, or +function, +or a parenthesized expression. +

+ +
+Operand     = Literal | OperandName [ TypeArgs ] | "(" Expression ")" .
+Literal     = BasicLit | CompositeLit | FunctionLit .
+BasicLit    = int_lit | float_lit | imaginary_lit | rune_lit | string_lit .
+OperandName = identifier | QualifiedIdent .
+
+ +

+An operand name denoting a generic function +may be followed by a list of type arguments; the +resulting operand is an instantiated function. +

+ +

+The blank identifier may appear as an +operand only on the left-hand side of an assignment statement. +

+ +

+Implementation restriction: A compiler need not report an error if an operand's +type is a type parameter with an empty +type set. Functions with such type parameters +cannot be instantiated; any attempt will lead +to an error at the instantiation site. +

+ +

Qualified identifiers

+ +

+A qualified identifier is an identifier qualified with a package name prefix. +Both the package name and the identifier must not be +blank. +

+ +
+QualifiedIdent = PackageName "." identifier .
+
+ +

+A qualified identifier accesses an identifier in a different package, which +must be imported. +The identifier must be exported and +declared in the package block of that package. +

+ +
+math.Sin // denotes the Sin function in package math
+
+ +

Composite literals

+ +

+Composite literals construct new composite values each time they are evaluated. +They consist of the type of the literal followed by a brace-bound list of elements. +Each element may optionally be preceded by a corresponding key. +

+ +
+CompositeLit  = LiteralType LiteralValue .
+LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
+                SliceType | MapType | TypeName [ TypeArgs ] .
+LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
+ElementList   = KeyedElement { "," KeyedElement } .
+KeyedElement  = [ Key ":" ] Element .
+Key           = FieldName | Expression | LiteralValue .
+FieldName     = identifier .
+Element       = Expression | LiteralValue .
+
+ +

+The LiteralType's core type T +must be a struct, array, slice, or map type +(the syntax enforces this constraint except when the type is given +as a TypeName). +The types of the elements and keys must be assignable +to the respective field, element, and key types of type T; +there is no additional conversion. +The key is interpreted as a field name for struct literals, +an index for array and slice literals, and a key for map literals. +For map literals, all elements must have a key. It is an error +to specify multiple elements with the same field name or +constant key value. For non-constant map keys, see the section on +evaluation order. +

+ +

+For struct literals the following rules apply: +

+
    +
  • A key must be a field name declared in the struct type. +
  • +
  • An element list that does not contain any keys must + list an element for each struct field in the + order in which the fields are declared. +
  • +
  • If any element has a key, every element must have a key. +
  • +
  • An element list that contains keys does not need to + have an element for each struct field. Omitted fields + get the zero value for that field. +
  • +
  • A literal may omit the element list; such a literal evaluates + to the zero value for its type. +
  • +
  • It is an error to specify an element for a non-exported + field of a struct belonging to a different package. +
  • +
+ +

+Given the declarations +

+
+type Point3D struct { x, y, z float64 }
+type Line struct { p, q Point3D }
+
+ +

+one may write +

+ +
+origin := Point3D{}                            // zero value for Point3D
+line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
+
+ +

+For array and slice literals the following rules apply: +

+
    +
  • Each element has an associated integer index marking + its position in the array. +
  • +
  • An element with a key uses the key as its index. The + key must be a non-negative constant + representable by + a value of type int; and if it is typed + it must be of integer type. +
  • +
  • An element without a key uses the previous element's index plus one. + If the first element has no key, its index is zero. +
  • +
+ +

+Taking the address of a composite literal +generates a pointer to a unique variable initialized +with the literal's value. +

+ +
+var pointer *Point3D = &Point3D{y: 1000}
+
+ +

+Note that the zero value for a slice or map +type is not the same as an initialized but empty value of the same type. +Consequently, taking the address of an empty slice or map composite literal +does not have the same effect as allocating a new slice or map value with +new. +

+ +
+p1 := &[]int{}    // p1 points to an initialized, empty slice with value []int{} and length 0
+p2 := new([]int)  // p2 points to an uninitialized slice with value nil and length 0
+
+ +

+The length of an array literal is the length specified in the literal type. +If fewer elements than the length are provided in the literal, the missing +elements are set to the zero value for the array element type. +It is an error to provide elements with index values outside the index range +of the array. The notation ... specifies an array length equal +to the maximum element index plus one. +

+ +
+buffer := [10]string{}             // len(buffer) == 10
+intSet := [6]int{1, 2, 3, 5}       // len(intSet) == 6
+days := [...]string{"Sat", "Sun"}  // len(days) == 2
+
+ +

+A slice literal describes the entire underlying array literal. +Thus the length and capacity of a slice literal are the maximum +element index plus one. A slice literal has the form +

+ +
+[]T{x1, x2, … xn}
+
+ +

+and is shorthand for a slice operation applied to an array: +

+ +
+tmp := [n]T{x1, x2, … xn}
+tmp[0 : n]
+
+ +

+Within a composite literal of array, slice, or map type T, +elements or map keys that are themselves composite literals may elide the respective +literal type if it is identical to the element or key type of T. +Similarly, elements or keys that are addresses of composite literals may elide +the &T when the element or key type is *T. +

+ +
+[...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
+[][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
+[][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
+map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
+map[Point]string{{0, 0}: "orig"}    // same as map[Point]string{Point{0, 0}: "orig"}
+
+type PPoint *Point
+[2]*Point{{1.5, -3.5}, {}}          // same as [2]*Point{&Point{1.5, -3.5}, &Point{}}
+[2]PPoint{{1.5, -3.5}, {}}          // same as [2]PPoint{PPoint(&Point{1.5, -3.5}), PPoint(&Point{})}
+
+ +

+A parsing ambiguity arises when a composite literal using the +TypeName form of the LiteralType appears as an operand between the +keyword and the opening brace of the block +of an "if", "for", or "switch" statement, and the composite literal +is not enclosed in parentheses, square brackets, or curly braces. +In this rare case, the opening brace of the literal is erroneously parsed +as the one introducing the block of statements. To resolve the ambiguity, +the composite literal must appear within parentheses. +

+ +
+if x == (T{a,b,c}[i]) { … }
+if (x == T{a,b,c}[i]) { … }
+
+ +

+Examples of valid array, slice, and map literals: +

+ +
+// list of prime numbers
+primes := []int{2, 3, 5, 7, 9, 2147483647}
+
+// vowels[ch] is true if ch is a vowel
+vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}
+
+// the array [10]float32{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1}
+filter := [10]float32{-1, 4: -0.1, -0.1, 9: -1}
+
+// frequencies in Hz for equal-tempered scale (A4 = 440Hz)
+noteFrequency := map[string]float32{
+	"C0": 16.35, "D0": 18.35, "E0": 20.60, "F0": 21.83,
+	"G0": 24.50, "A0": 27.50, "B0": 30.87,
+}
+
+ + +

Function literals

+ +

+A function literal represents an anonymous function. +Function literals cannot declare type parameters. +

+ +
+FunctionLit = "func" Signature FunctionBody .
+
+ +
+func(a, b int, z float64) bool { return a*b < int(z) }
+
+ +

+A function literal can be assigned to a variable or invoked directly. +

+ +
+f := func(x, y int) int { return x + y }
+func(ch chan int) { ch <- ACK }(replyChan)
+
+ +

+Function literals are closures: they may refer to variables +defined in a surrounding function. Those variables are then shared between +the surrounding function and the function literal, and they survive as long +as they are accessible. +

+ + +

Primary expressions

+ +

+Primary expressions are the operands for unary and binary expressions. +

+ +
+PrimaryExpr =
+	Operand |
+	Conversion |
+	MethodExpr |
+	PrimaryExpr Selector |
+	PrimaryExpr Index |
+	PrimaryExpr Slice |
+	PrimaryExpr TypeAssertion |
+	PrimaryExpr Arguments .
+
+Selector       = "." identifier .
+Index          = "[" Expression [ "," ] "]" .
+Slice          = "[" [ Expression ] ":" [ Expression ] "]" |
+                 "[" [ Expression ] ":" Expression ":" Expression "]" .
+TypeAssertion  = "." "(" Type ")" .
+Arguments      = "(" [ ( ExpressionList | Type [ "," ExpressionList ] ) [ "..." ] [ "," ] ] ")" .
+
+ + +
+x
+2
+(s + ".txt")
+f(3.1415, true)
+Point{1, 2}
+m["foo"]
+s[i : j + 1]
+obj.color
+f.p[i].x()
+
+ + +

Selectors

+ +

+For a primary expression x +that is not a package name, the +selector expression +

+ +
+x.f
+
+ +

+denotes the field or method f of the value x +(or sometimes *x; see below). +The identifier f is called the (field or method) selector; +it must not be the blank identifier. +The type of the selector expression is the type of f. +If x is a package name, see the section on +qualified identifiers. +

+ +

+A selector f may denote a field or method f of +a type T, or it may refer +to a field or method f of a nested +embedded field of T. +The number of embedded fields traversed +to reach f is called its depth in T. +The depth of a field or method f +declared in T is zero. +The depth of a field or method f declared in +an embedded field A in T is the +depth of f in A plus one. +

+ +

+The following rules apply to selectors: +

+ +
    +
  1. +For a value x of type T or *T +where T is not a pointer or interface type, +x.f denotes the field or method at the shallowest depth +in T where there is such an f. +If there is not exactly one f +with shallowest depth, the selector expression is illegal. +
  2. + +
  3. +For a value x of type I where I +is an interface type, x.f denotes the actual method with name +f of the dynamic value of x. +If there is no method with name f in the +method set of I, the selector +expression is illegal. +
  4. + +
  5. +As an exception, if the type of x is a defined +pointer type and (*x).f is a valid selector expression denoting a field +(but not a method), x.f is shorthand for (*x).f. +
  6. + +
  7. +In all other cases, x.f is illegal. +
  8. + +
  9. +If x is of pointer type and has the value +nil and x.f denotes a struct field, +assigning to or evaluating x.f +causes a run-time panic. +
  10. + +
  11. +If x is of interface type and has the value +nil, calling or +evaluating the method x.f +causes a run-time panic. +
  12. +
+ +

+For example, given the declarations: +

+ +
+type T0 struct {
+	x int
+}
+
+func (*T0) M0()
+
+type T1 struct {
+	y int
+}
+
+func (T1) M1()
+
+type T2 struct {
+	z int
+	T1
+	*T0
+}
+
+func (*T2) M2()
+
+type Q *T2
+
+var t T2     // with t.T0 != nil
+var p *T2    // with p != nil and (*p).T0 != nil
+var q Q = p
+
+ +

+one may write: +

+ +
+t.z          // t.z
+t.y          // t.T1.y
+t.x          // (*t.T0).x
+
+p.z          // (*p).z
+p.y          // (*p).T1.y
+p.x          // (*(*p).T0).x
+
+q.x          // (*(*q).T0).x        (*q).x is a valid field selector
+
+p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
+p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
+p.M2()       // p.M2()              M2 expects *T2 receiver
+t.M2()       // (&t).M2()           M2 expects *T2 receiver, see section on Calls
+
+ +

+but the following is invalid: +

+ +
+q.M0()       // (*q).M0 is valid but not a field selector
+
+ + +

Method expressions

+ +

+If M is in the method set of type T, +T.M is a function that is callable as a regular function +with the same arguments as M prefixed by an additional +argument that is the receiver of the method. +

+ +
+MethodExpr    = ReceiverType "." MethodName .
+ReceiverType  = Type .
+
+ +

+Consider a struct type T with two methods, +Mv, whose receiver is of type T, and +Mp, whose receiver is of type *T. +

+ +
+type T struct {
+	a int
+}
+func (tv  T) Mv(a int) int         { return 0 }  // value receiver
+func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
+
+var t T
+
+ +

+The expression +

+ +
+T.Mv
+
+ +

+yields a function equivalent to Mv but +with an explicit receiver as its first argument; it has signature +

+ +
+func(tv T, a int) int
+
+ +

+That function may be called normally with an explicit receiver, so +these five invocations are equivalent: +

+ +
+t.Mv(7)
+T.Mv(t, 7)
+(T).Mv(t, 7)
+f1 := T.Mv; f1(t, 7)
+f2 := (T).Mv; f2(t, 7)
+
+ +

+Similarly, the expression +

+ +
+(*T).Mp
+
+ +

+yields a function value representing Mp with signature +

+ +
+func(tp *T, f float32) float32
+
+ +

+For a method with a value receiver, one can derive a function +with an explicit pointer receiver, so +

+ +
+(*T).Mv
+
+ +

+yields a function value representing Mv with signature +

+ +
+func(tv *T, a int) int
+
+ +

+Such a function indirects through the receiver to create a value +to pass as the receiver to the underlying method; +the method does not overwrite the value whose address is passed in +the function call. +

+ +

+The final case, a value-receiver function for a pointer-receiver method, +is illegal because pointer-receiver methods are not in the method set +of the value type. +

+ +

+Function values derived from methods are called with function call syntax; +the receiver is provided as the first argument to the call. +That is, given f := T.Mv, f is invoked +as f(t, 7) not t.f(7). +To construct a function that binds the receiver, use a +function literal or +method value. +

+ +

+It is legal to derive a function value from a method of an interface type. +The resulting function takes an explicit receiver of that interface type. +

+ +

Method values

+ +

+If the expression x has static type T and +M is in the method set of type T, +x.M is called a method value. +The method value x.M is a function value that is callable +with the same arguments as a method call of x.M. +The expression x is evaluated and saved during the evaluation of the +method value; the saved copy is then used as the receiver in any calls, +which may be executed later. +

+ +
+type S struct { *T }
+type T int
+func (t T) M() { print(t) }
+
+t := new(T)
+s := S{T: t}
+f := t.M                    // receiver *t is evaluated and stored in f
+g := s.M                    // receiver *(s.T) is evaluated and stored in g
+*t = 42                     // does not affect stored receivers in f and g
+
+ +

+The type T may be an interface or non-interface type. +

+ +

+As in the discussion of method expressions above, +consider a struct type T with two methods, +Mv, whose receiver is of type T, and +Mp, whose receiver is of type *T. +

+ +
+type T struct {
+	a int
+}
+func (tv  T) Mv(a int) int         { return 0 }  // value receiver
+func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
+
+var t T
+var pt *T
+func makeT() T
+
+ +

+The expression +

+ +
+t.Mv
+
+ +

+yields a function value of type +

+ +
+func(int) int
+
+ +

+These two invocations are equivalent: +

+ +
+t.Mv(7)
+f := t.Mv; f(7)
+
+ +

+Similarly, the expression +

+ +
+pt.Mp
+
+ +

+yields a function value of type +

+ +
+func(float32) float32
+
+ +

+As with selectors, a reference to a non-interface method with a value receiver +using a pointer will automatically dereference that pointer: pt.Mv is equivalent to (*pt).Mv. +

+ +

+As with method calls, a reference to a non-interface method with a pointer receiver +using an addressable value will automatically take the address of that value: t.Mp is equivalent to (&t).Mp. +

+ +
+f := t.Mv; f(7)   // like t.Mv(7)
+f := pt.Mp; f(7)  // like pt.Mp(7)
+f := pt.Mv; f(7)  // like (*pt).Mv(7)
+f := t.Mp; f(7)   // like (&t).Mp(7)
+f := makeT().Mp   // invalid: result of makeT() is not addressable
+
+ +

+Although the examples above use non-interface types, it is also legal to create a method value +from a value of interface type. +

+ +
+var i interface { M(int) } = myVal
+f := i.M; f(7)  // like i.M(7)
+
+ + +

Index expressions

+ +

+A primary expression of the form +

+ +
+a[x]
+
+ +

+denotes the element of the array, pointer to array, slice, string or map a indexed by x. +The value x is called the index or map key, respectively. +The following rules apply: +

+ +

+If a is neither a map nor a type parameter: +

+
    +
  • the index x must be an untyped constant or its + core type must be an integer
  • +
  • a constant index must be non-negative and + representable by a value of type int
  • +
  • a constant index that is untyped is given type int
  • +
  • the index x is in range if 0 <= x < len(a), + otherwise it is out of range
  • +
+ +

+For a of array type A: +

+
    +
  • a constant index must be in range
  • +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the array element at index x and the type of + a[x] is the element type of A
  • +
+ +

+For a of pointer to array type: +

+
    +
  • a[x] is shorthand for (*a)[x]
  • +
+ +

+For a of slice type S: +

+
    +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the slice element at index x and the type of + a[x] is the element type of S
  • +
+ +

+For a of string type: +

+
    +
  • a constant index must be in range + if the string a is also constant
  • +
  • if x is out of range at run time, + a run-time panic occurs
  • +
  • a[x] is the non-constant byte value at index x and the type of + a[x] is byte
  • +
  • a[x] may not be assigned to
  • +
+ +

+For a of map type M: +

+
    +
  • x's type must be + assignable + to the key type of M
  • +
  • if the map contains an entry with key x, + a[x] is the map element with key x + and the type of a[x] is the element type of M
  • +
  • if the map is nil or does not contain such an entry, + a[x] is the zero value + for the element type of M
  • +
+ +

+For a of type parameter type P: +

+
    +
  • The index expression a[x] must be valid for values + of all types in P's type set.
  • +
  • The element types of all types in P's type set must be identical. + In this context, the element type of a string type is byte.
  • +
  • If there is a map type in the type set of P, + all types in that type set must be map types, and the respective key types + must be all identical.
  • +
  • a[x] is the array, slice, or string element at index x, + or the map element with key x of the type argument + that P is instantiated with, and the type of a[x] is + the type of the (identical) element types.
  • +
  • a[x] may not be assigned to if P's type set + includes string types.
  • +
+ +

+Otherwise a[x] is illegal. +

+ +

+An index expression on a map a of type map[K]V +used in an assignment statement or initialization of the special form +

+ +
+v, ok = a[x]
+v, ok := a[x]
+var v, ok = a[x]
+
+ +

+yields an additional untyped boolean value. The value of ok is +true if the key x is present in the map, and +false otherwise. +

+ +

+Assigning to an element of a nil map causes a +run-time panic. +

+ + +

Slice expressions

+ +

+Slice expressions construct a substring or slice from a string, array, pointer +to array, or slice. There are two variants: a simple form that specifies a low +and high bound, and a full form that also specifies a bound on the capacity. +

+ +

Simple slice expressions

+ +

+The primary expression +

+ +
+a[low : high]
+
+ +

+constructs a substring or slice. The core type of +a must be a string, array, pointer to array, slice, or a +bytestring. +The indices low and +high select which elements of operand a appear +in the result. The result has indices starting at 0 and length equal to +high - low. +After slicing the array a +

+ +
+a := [5]int{1, 2, 3, 4, 5}
+s := a[1:4]
+
+ +

+the slice s has type []int, length 3, capacity 4, and elements +

+ +
+s[0] == 2
+s[1] == 3
+s[2] == 4
+
+ +

+For convenience, any of the indices may be omitted. A missing low +index defaults to zero; a missing high index defaults to the length of the +sliced operand: +

+ +
+a[2:]  // same as a[2 : len(a)]
+a[:3]  // same as a[0 : 3]
+a[:]   // same as a[0 : len(a)]
+
+ +

+If a is a pointer to an array, a[low : high] is shorthand for +(*a)[low : high]. +

+ +

+For arrays or strings, the indices are in range if +0 <= low <= high <= len(a), +otherwise they are out of range. +For slices, the upper index bound is the slice capacity cap(a) rather than the length. +A constant index must be non-negative and +representable by a value of type +int; for arrays or constant strings, constant indices must also be in range. +If both indices are constant, they must satisfy low <= high. +If the indices are out of range at run time, a run-time panic occurs. +

+ +

+Except for untyped strings, if the sliced operand is a string or slice, +the result of the slice operation is a non-constant value of the same type as the operand. +For untyped string operands the result is a non-constant value of type string. +If the sliced operand is an array, it must be addressable +and the result of the slice operation is a slice with the same element type as the array. +

+ +

+If the sliced operand of a valid slice expression is a nil slice, the result +is a nil slice. Otherwise, if the result is a slice, it shares its underlying +array with the operand. +

+ +
+var a [10]int
+s1 := a[3:7]   // underlying array of s1 is array a; &s1[2] == &a[5]
+s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &s2[1] == &a[5]
+s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
+
+var s []int
+s3 := s[:0]    // s3 == nil
+
+ + +

Full slice expressions

+ +

+The primary expression +

+ +
+a[low : high : max]
+
+ +

+constructs a slice of the same type, and with the same length and elements as the simple slice +expression a[low : high]. Additionally, it controls the resulting slice's capacity +by setting it to max - low. Only the first index may be omitted; it defaults to 0. +The core type of a must be an array, pointer to array, +or slice (but not a string). +After slicing the array a +

+ +
+a := [5]int{1, 2, 3, 4, 5}
+t := a[1:3:5]
+
+ +

+the slice t has type []int, length 2, capacity 4, and elements +

+ +
+t[0] == 2
+t[1] == 3
+
+ +

+As for simple slice expressions, if a is a pointer to an array, +a[low : high : max] is shorthand for (*a)[low : high : max]. +If the sliced operand is an array, it must be addressable. +

+ +

+The indices are in range if 0 <= low <= high <= max <= cap(a), +otherwise they are out of range. +A constant index must be non-negative and +representable by a value of type +int; for arrays, constant indices must also be in range. +If multiple indices are constant, the constants that are present must be in range relative to each +other. +If the indices are out of range at run time, a run-time panic occurs. +

+ +

Type assertions

+ +

+For an expression x of interface type, +but not a type parameter, and a type T, +the primary expression +

+ +
+x.(T)
+
+ +

+asserts that x is not nil +and that the value stored in x is of type T. +The notation x.(T) is called a type assertion. +

+

+More precisely, if T is not an interface type, x.(T) asserts +that the dynamic type of x is identical +to the type T. +In this case, T must implement the (interface) type of x; +otherwise the type assertion is invalid since it is not possible for x +to store a value of type T. +If T is an interface type, x.(T) asserts that the dynamic type +of x implements the interface T. +

+

+If the type assertion holds, the value of the expression is the value +stored in x and its type is T. If the type assertion is false, +a run-time panic occurs. +In other words, even though the dynamic type of x +is known only at run time, the type of x.(T) is +known to be T in a correct program. +

+ +
+var x interface{} = 7          // x has dynamic type int and value 7
+i := x.(int)                   // i has type int and value 7
+
+type I interface { m() }
+
+func f(y I) {
+	s := y.(string)        // illegal: string does not implement I (missing method m)
+	r := y.(io.Reader)     // r has type io.Reader and the dynamic type of y must implement both I and io.Reader
+	…
+}
+
+ +

+A type assertion used in an assignment statement or initialization of the special form +

+ +
+v, ok = x.(T)
+v, ok := x.(T)
+var v, ok = x.(T)
+var v, ok interface{} = x.(T) // dynamic types of v and ok are T and bool
+
+ +

+yields an additional untyped boolean value. The value of ok is true +if the assertion holds. Otherwise it is false and the value of v is +the zero value for type T. +No run-time panic occurs in this case. +

+ + +

Calls

+ +

+Given an expression f with a core type +F of function type, +

+ +
+f(a1, a2, … an)
+
+ +

+calls f with arguments a1, a2, … an. +Except for one special case, arguments must be single-valued expressions +assignable to the parameter types of +F and are evaluated before the function is called. +The type of the expression is the result type +of F. +A method invocation is similar but the method itself +is specified as a selector upon a value of the receiver type for +the method. +

+ +
+math.Atan2(x, y)  // function call
+var pt *Point
+pt.Scale(3.5)     // method call with receiver pt
+
+ +

+If f denotes a generic function, it must be +instantiated before it can be called +or used as a function value. +

+ +

+In a function call, the function value and arguments are evaluated in +the usual order. +After they are evaluated, the parameters of the call are passed by value to the function +and the called function begins execution. +The return parameters of the function are passed by value +back to the caller when the function returns. +

+ +

+Calling a nil function value +causes a run-time panic. +

+ +

+As a special case, if the return values of a function or method +g are equal in number and individually +assignable to the parameters of another function or method +f, then the call f(g(parameters_of_g)) +will invoke f after binding the return values of +g to the parameters of f in order. The call +of f must contain no parameters other than the call of g, +and g must have at least one return value. +If f has a final ... parameter, it is +assigned the return values of g that remain after +assignment of regular parameters. +

+ +
+func Split(s string, pos int) (string, string) {
+	return s[0:pos], s[pos:]
+}
+
+func Join(s, t string) string {
+	return s + t
+}
+
+if Join(Split(value, len(value)/2)) != value {
+	log.Panic("test fails")
+}
+
+ +

+A method call x.m() is valid if the method set +of (the type of) x contains m and the +argument list can be assigned to the parameter list of m. +If x is addressable and &x's method +set contains m, x.m() is shorthand +for (&x).m(): +

+ +
+var p Point
+p.Scale(3.5)
+
+ +

+There is no distinct method type and there are no method literals. +

+ +

Passing arguments to ... parameters

+ +

+If f is variadic with a final +parameter p of type ...T, then within f +the type of p is equivalent to type []T. +If f is invoked with no actual arguments for p, +the value passed to p is nil. +Otherwise, the value passed is a new slice +of type []T with a new underlying array whose successive elements +are the actual arguments, which all must be assignable +to T. The length and capacity of the slice is therefore +the number of arguments bound to p and may differ for each +call site. +

+ +

+Given the function and calls +

+
+func Greeting(prefix string, who ...string)
+Greeting("nobody")
+Greeting("hello:", "Joe", "Anna", "Eileen")
+
+ +

+within Greeting, who will have the value +nil in the first call, and +[]string{"Joe", "Anna", "Eileen"} in the second. +

+ +

+If the final argument is assignable to a slice type []T and +is followed by ..., it is passed unchanged as the value +for a ...T parameter. In this case no new slice is created. +

+ +

+Given the slice s and call +

+ +
+s := []string{"James", "Jasmine"}
+Greeting("goodbye:", s...)
+
+ +

+within Greeting, who will have the same value as s +with the same underlying array. +

+ +

Instantiations

+ +

+A generic function or type is instantiated by substituting type arguments +for the type parameters [Go 1.18]. +Instantiation proceeds in two steps: +

+ +
    +
  1. +Each type argument is substituted for its corresponding type parameter in the generic +declaration. +This substitution happens across the entire function or type declaration, +including the type parameter list itself and any types in that list. +
  2. + +
  3. +After substitution, each type argument must satisfy +the constraint (instantiated, if necessary) +of the corresponding type parameter. Otherwise instantiation fails. +
  4. +
+ +

+Instantiating a type results in a new non-generic named type; +instantiating a function produces a new non-generic function. +

+ +
+type parameter list    type arguments    after substitution
+
+[P any]                int               int satisfies any
+[S ~[]E, E any]        []int, int        []int satisfies ~[]int, int satisfies any
+[P io.Writer]          string            illegal: string doesn't satisfy io.Writer
+[P comparable]         any               any satisfies (but does not implement) comparable
+
+ +

+When using a generic function, type arguments may be provided explicitly, +or they may be partially or completely inferred +from the context in which the function is used. +Provided that they can be inferred, type argument lists may be omitted entirely if the function is: +

+ + + +

+In all other cases, a (possibly partial) type argument list must be present. +If a type argument list is absent or partial, all missing type arguments +must be inferrable from the context in which the function is used. +

+ +
+// sum returns the sum (concatenation, for strings) of its arguments.
+func sum[T ~int | ~float64 | ~string](x... T) T { … }
+
+x := sum                       // illegal: the type of x is unknown
+intSum := sum[int]             // intSum has type func(x... int) int
+a := intSum(2, 3)              // a has value 5 of type int
+b := sum[float64](2.0, 3)      // b has value 5.0 of type float64
+c := sum(b, -1)                // c has value 4.0 of type float64
+
+type sumFunc func(x... string) string
+var f sumFunc = sum            // same as var f sumFunc = sum[string]
+f = sum                        // same as f = sum[string]
+
+ +

+A partial type argument list cannot be empty; at least the first argument must be present. +The list is a prefix of the full list of type arguments, leaving the remaining arguments +to be inferred. Loosely speaking, type arguments may be omitted from "right to left". +

+ +
+func apply[S ~[]E, E any](s S, f func(E) E) S { … }
+
+f0 := apply[]                  // illegal: type argument list cannot be empty
+f1 := apply[[]int]             // type argument for S explicitly provided, type argument for E inferred
+f2 := apply[[]string, string]  // both type arguments explicitly provided
+
+var bytes []byte
+r := apply(bytes, func(byte) byte { … })  // both type arguments inferred from the function arguments
+
+ +

+For a generic type, all type arguments must always be provided explicitly. +

+ +

Type inference

+ +

+A use of a generic function may omit some or all type arguments if they can be +inferred from the context within which the function is used, including +the constraints of the function's type parameters. +Type inference succeeds if it can infer the missing type arguments +and instantiation succeeds with the +inferred type arguments. +Otherwise, type inference fails and the program is invalid. +

+ +

+Type inference uses the type relationships between pairs of types for inference: +For instance, a function argument must be assignable +to its respective function parameter; this establishes a relationship between the +type of the argument and the type of the parameter. +If either of these two types contains type parameters, type inference looks for the +type arguments to substitute the type parameters with such that the assignability +relationship is satisfied. +Similarly, type inference uses the fact that a type argument must +satisfy the constraint of its respective +type parameter. +

+ +

+Each such pair of matched types corresponds to a type equation containing +one or multiple type parameters, from one or possibly multiple generic functions. +Inferring the missing type arguments means solving the resulting set of type +equations for the respective type parameters. +

+ +

+For example, given +

+ +
+// dedup returns a copy of the argument slice with any duplicate entries removed.
+func dedup[S ~[]E, E comparable](S) S { … }
+
+type Slice []int
+var s Slice
+s = dedup(s)   // same as s = dedup[Slice, int](s)
+
+ +

+the variable s of type Slice must be assignable to +the function parameter type S for the program to be valid. +To reduce complexity, type inference ignores the directionality of assignments, +so the type relationship between Slice and S can be +expressed via the (symmetric) type equation Slice ≡A S +(or S ≡A Slice for that matter), +where the A in A +indicates that the LHS and RHS types must match per assignability rules +(see the section on type unification for +details). +Similarly, the type parameter S must satisfy its constraint +~[]E. This can be expressed as S ≡C ~[]E +where X ≡C Y stands for +"X satisfies constraint Y". +These observations lead to a set of two equations +

+ +
+	Slice ≡A S      (1)
+	S     ≡C ~[]E   (2)
+
+ +

+which now can be solved for the type parameters S and E. +From (1) a compiler can infer that the type argument for S is Slice. +Similarly, because the underlying type of Slice is []int +and []int must match []E of the constraint, +a compiler can infer that E must be int. +Thus, for these two equations, type inference infers +

+ +
+	S ➞ Slice
+	E ➞ int
+
+ +

+Given a set of type equations, the type parameters to solve for are +the type parameters of the functions that need to be instantiated +and for which no explicit type arguments is provided. +These type parameters are called bound type parameters. +For instance, in the dedup example above, the type parameters +S and E are bound to dedup. +An argument to a generic function call may be a generic function itself. +The type parameters of that function are included in the set of bound +type parameters. +The types of function arguments may contain type parameters from other +functions (such as a generic function enclosing a function call). +Those type parameters may also appear in type equations but they are +not bound in that context. +Type equations are always solved for the bound type parameters only. +

+ +

+Type inference supports calls of generic functions and assignments +of generic functions to (explicitly function-typed) variables. +This includes passing generic functions as arguments to other +(possibly also generic) functions, and returning generic functions +as results. +Type inference operates on a set of equations specific to each of +these cases. +The equations are as follows (type argument lists are omitted for clarity): +

+ +
    +
  • +

    + For a function call f(a0, a1, …) where + f or a function argument ai is + a generic function: +
    + Each pair (ai, pi) of corresponding + function arguments and parameters where ai is not an + untyped constant yields an equation + typeof(pi) ≡A typeof(ai). +
    + If ai is an untyped constant cj, + and typeof(pi) is a bound type parameter Pk, + the pair (cj, Pk) is collected separately from + the type equations. +

    +
  • +
  • +

    + For an assignment v = f of a generic function f to a + (non-generic) variable v of function type: +
    + typeof(v) ≡A typeof(f). +

    +
  • +
  • +

    + For a return statement return …, f, … where f is a + generic function returned as a result to a (non-generic) result variable + r of function type: +
    + typeof(r) ≡A typeof(f). +

    +
  • +
+ +

+Additionally, each type parameter Pk and corresponding type constraint +Ck yields the type equation +PkC Ck. +

+ +

+Type inference gives precedence to type information obtained from typed operands +before considering untyped constants. +Therefore, inference proceeds in two phases: +

+ +
    +
  1. +

    + The type equations are solved for the bound + type parameters using type unification. + If unification fails, type inference fails. +

    +
  2. +
  3. +

    + For each bound type parameter Pk for which no type argument + has been inferred yet and for which one or more pairs + (cj, Pk) with that same type parameter + were collected, determine the constant kind + of the constants cj in all those pairs the same way as for + constant expressions. + The type argument for Pk is the + default type for the determined constant kind. + If a constant kind cannot be determined due to conflicting constant kinds, + type inference fails. +

    +
  4. +
+ +

+If not all type arguments have been found after these two phases, type inference fails. +

+ +

+If the two phases are successful, type inference determined a type argument for each +bound type parameter: +

+ +
+	Pk ➞ Ak
+
+ +

+A type argument Ak may be a composite type, +containing other bound type parameters Pk as element types +(or even be just another bound type parameter). +In a process of repeated simplification, the bound type parameters in each type +argument are substituted with the respective type arguments for those type +parameters until each type argument is free of bound type parameters. +

+ +

+If type arguments contain cyclic references to themselves +through bound type parameters, simplification and thus type +inference fails. +Otherwise, type inference succeeds. +

+ +

Type unification

+ +

+Type inference solves type equations through type unification. +Type unification recursively compares the LHS and RHS types of an +equation, where either or both types may be or contain bound type parameters, +and looks for type arguments for those type parameters such that the LHS +and RHS match (become identical or assignment-compatible, depending on +context). +To that effect, type inference maintains a map of bound type parameters +to inferred type arguments; this map is consulted and updated during type unification. +Initially, the bound type parameters are known but the map is empty. +During type unification, if a new type argument A is inferred, +the respective mapping P ➞ A from type parameter to argument +is added to the map. +Conversely, when comparing types, a known type argument +(a type argument for which a map entry already exists) +takes the place of its corresponding type parameter. +As type inference progresses, the map is populated more and more +until all equations have been considered, or until unification fails. +Type inference succeeds if no unification step fails and the map has +an entry for each type parameter. +

+ +

+For example, given the type equation with the bound type parameter +P +

+ +
+	[10]struct{ elem P, list []P } ≡A [10]struct{ elem string; list []string }
+
+ +

+type inference starts with an empty map. +Unification first compares the top-level structure of the LHS and RHS +types. +Both are arrays of the same length; they unify if the element types unify. +Both element types are structs; they unify if they have +the same number of fields with the same names and if the +field types unify. +The type argument for P is not known yet (there is no map entry), +so unifying P with string adds +the mapping P ➞ string to the map. +Unifying the types of the list field requires +unifying []P and []string and +thus P and string. +Since the type argument for P is known at this point +(there is a map entry for P), its type argument +string takes the place of P. +And since string is identical to string, +this unification step succeeds as well. +Unification of the LHS and RHS of the equation is now finished. +Type inference succeeds because there is only one type equation, +no unification step failed, and the map is fully populated. +

+ +

+Unification uses a combination of exact and loose +unification depending on whether two types have to be +identical, +assignment-compatible, or +only structurally equal. +The respective type unification rules +are spelled out in detail in the Appendix. +

+ +

+For an equation of the form X ≡A Y, +where X and Y are types involved +in an assignment (including parameter passing and return statements), +the top-level type structures may unify loosely but element types +must unify exactly, matching the rules for assignments. +

+ +

+For an equation of the form P ≡C C, +where P is a type parameter and C +its corresponding constraint, the unification rules are bit +more complicated: +

+ +
    +
  • + If C has a core type + core(C) + and P has a known type argument A, + core(C) and A must unify loosely. + If P does not have a known type argument + and C contains exactly one type term T + that is not an underlying (tilde) type, unification adds the + mapping P ➞ T to the map. +
  • +
  • + If C does not have a core type + and P has a known type argument A, + A must have all methods of C, if any, + and corresponding method types must unify exactly. +
  • +
+ +

+When solving type equations from type constraints, +solving one equation may infer additional type arguments, +which in turn may enable solving other equations that depend +on those type arguments. +Type inference repeats type unification as long as new type +arguments are inferred. +

+ +

Operators

+ +

+Operators combine operands into expressions. +

+ +
+Expression = UnaryExpr | Expression binary_op Expression .
+UnaryExpr  = PrimaryExpr | unary_op UnaryExpr .
+
+binary_op  = "||" | "&&" | rel_op | add_op | mul_op .
+rel_op     = "==" | "!=" | "<" | "<=" | ">" | ">=" .
+add_op     = "+" | "-" | "|" | "^" .
+mul_op     = "*" | "/" | "%" | "<<" | ">>" | "&" | "&^" .
+
+unary_op   = "+" | "-" | "!" | "^" | "*" | "&" | "<-" .
+
+ +

+Comparisons are discussed elsewhere. +For other binary operators, the operand types must be identical +unless the operation involves shifts or untyped constants. +For operations involving constants only, see the section on +constant expressions. +

+ +

+Except for shift operations, if one operand is an untyped constant +and the other operand is not, the constant is implicitly converted +to the type of the other operand. +

+ +

+The right operand in a shift expression must have integer type +[Go 1.13] +or be an untyped constant representable by a +value of type uint. +If the left operand of a non-constant shift expression is an untyped constant, +it is first implicitly converted to the type it would assume if the shift expression were +replaced by its left operand alone. +

+ +
+var a [1024]byte
+var s uint = 33
+
+// The results of the following examples are given for 64-bit ints.
+var i = 1<<s                   // 1 has type int
+var j int32 = 1<<s             // 1 has type int32; j == 0
+var k = uint64(1<<s)           // 1 has type uint64; k == 1<<33
+var m int = 1.0<<s             // 1.0 has type int; m == 1<<33
+var n = 1.0<<s == j            // 1.0 has type int32; n == true
+var o = 1<<s == 2<<s           // 1 and 2 have type int; o == false
+var p = 1<<s == 1<<33          // 1 has type int; p == true
+var u = 1.0<<s                 // illegal: 1.0 has type float64, cannot shift
+var u1 = 1.0<<s != 0           // illegal: 1.0 has type float64, cannot shift
+var u2 = 1<<s != 1.0           // illegal: 1 has type float64, cannot shift
+var v1 float32 = 1<<s          // illegal: 1 has type float32, cannot shift
+var v2 = string(1<<s)          // illegal: 1 is converted to a string, cannot shift
+var w int64 = 1.0<<33          // 1.0<<33 is a constant shift expression; w == 1<<33
+var x = a[1.0<<s]              // panics: 1.0 has type int, but 1<<33 overflows array bounds
+var b = make([]byte, 1.0<<s)   // 1.0 has type int; len(b) == 1<<33
+
+// The results of the following examples are given for 32-bit ints,
+// which means the shifts will overflow.
+var mm int = 1.0<<s            // 1.0 has type int; mm == 0
+var oo = 1<<s == 2<<s          // 1 and 2 have type int; oo == true
+var pp = 1<<s == 1<<33         // illegal: 1 has type int, but 1<<33 overflows int
+var xx = a[1.0<<s]             // 1.0 has type int; xx == a[0]
+var bb = make([]byte, 1.0<<s)  // 1.0 has type int; len(bb) == 0
+
+ +

Operator precedence

+

+Unary operators have the highest precedence. +As the ++ and -- operators form +statements, not expressions, they fall +outside the operator hierarchy. +As a consequence, statement *p++ is the same as (*p)++. +

+

+There are five precedence levels for binary operators. +Multiplication operators bind strongest, followed by addition +operators, comparison operators, && (logical AND), +and finally || (logical OR): +

+ +
+Precedence    Operator
+    5             *  /  %  <<  >>  &  &^
+    4             +  -  |  ^
+    3             ==  !=  <  <=  >  >=
+    2             &&
+    1             ||
+
+ +

+Binary operators of the same precedence associate from left to right. +For instance, x / y * z is the same as (x / y) * z. +

+ +
++x                         // x
+42 + a - b                 // (42 + a) - b
+23 + 3*x[i]                // 23 + (3 * x[i])
+x <= f()                   // x <= f()
+^a >> b                    // (^a) >> b
+f() || g()                 // f() || g()
+x == y+1 && <-chanInt > 0  // (x == (y+1)) && ((<-chanInt) > 0)
+
+ + +

Arithmetic operators

+

+Arithmetic operators apply to numeric values and yield a result of the same +type as the first operand. The four standard arithmetic operators (+, +-, *, /) apply to +integer, floating-point, and +complex types; + also applies to strings. +The bitwise logical and shift operators apply to integers only. +

+ +
++    sum                    integers, floats, complex values, strings
+-    difference             integers, floats, complex values
+*    product                integers, floats, complex values
+/    quotient               integers, floats, complex values
+%    remainder              integers
+
+&    bitwise AND            integers
+|    bitwise OR             integers
+^    bitwise XOR            integers
+&^   bit clear (AND NOT)    integers
+
+<<   left shift             integer << integer >= 0
+>>   right shift            integer >> integer >= 0
+
+ +

+If the operand type is a type parameter, +the operator must apply to each type in that type set. +The operands are represented as values of the type argument that the type parameter +is instantiated with, and the operation is computed +with the precision of that type argument. For example, given the function: +

+ +
+func dotProduct[F ~float32|~float64](v1, v2 []F) F {
+	var s F
+	for i, x := range v1 {
+		y := v2[i]
+		s += x * y
+	}
+	return s
+}
+
+ +

+the product x * y and the addition s += x * y +are computed with float32 or float64 precision, +respectively, depending on the type argument for F. +

+ +

Integer operators

+ +

+For two integer values x and y, the integer quotient +q = x / y and remainder r = x % y satisfy the following +relationships: +

+ +
+x = q*y + r  and  |r| < |y|
+
+ +

+with x / y truncated towards zero +("truncated division"). +

+ +
+ x     y     x / y     x % y
+ 5     3       1         2
+-5     3      -1        -2
+ 5    -3      -1         2
+-5    -3       1        -2
+
+ +

+The one exception to this rule is that if the dividend x is +the most negative value for the int type of x, the quotient +q = x / -1 is equal to x (and r = 0) +due to two's-complement integer overflow: +

+ +
+                         x, q
+int8                     -128
+int16                  -32768
+int32             -2147483648
+int64    -9223372036854775808
+
+ +

+If the divisor is a constant, it must not be zero. +If the divisor is zero at run time, a run-time panic occurs. +If the dividend is non-negative and the divisor is a constant power of 2, +the division may be replaced by a right shift, and computing the remainder may +be replaced by a bitwise AND operation: +

+ +
+ x     x / 4     x % 4     x >> 2     x & 3
+ 11      2         3         2          3
+-11     -2        -3        -3          1
+
+ +

+The shift operators shift the left operand by the shift count specified by the +right operand, which must be non-negative. If the shift count is negative at run time, +a run-time panic occurs. +The shift operators implement arithmetic shifts if the left operand is a signed +integer and logical shifts if it is an unsigned integer. +There is no upper limit on the shift count. Shifts behave +as if the left operand is shifted n times by 1 for a shift +count of n. +As a result, x << 1 is the same as x*2 +and x >> 1 is the same as +x/2 but truncated towards negative infinity. +

+ +

+For integer operands, the unary operators ++, -, and ^ are defined as +follows: +

+ +
++x                          is 0 + x
+-x    negation              is 0 - x
+^x    bitwise complement    is m ^ x  with m = "all bits set to 1" for unsigned x
+                                      and  m = -1 for signed x
+
+ + +

Integer overflow

+ +

+For unsigned integer values, the operations +, +-, *, and << are +computed modulo 2n, where n is the bit width of +the unsigned integer's type. +Loosely speaking, these unsigned integer operations +discard high bits upon overflow, and programs may rely on "wrap around". +

+ +

+For signed integers, the operations +, +-, *, /, and << may legally +overflow and the resulting value exists and is deterministically defined +by the signed integer representation, the operation, and its operands. +Overflow does not cause a run-time panic. +A compiler may not optimize code under the assumption that overflow does +not occur. For instance, it may not assume that x < x + 1 is always true. +

+ +

Floating-point operators

+ +

+For floating-point and complex numbers, ++x is the same as x, +while -x is the negation of x. +The result of a floating-point or complex division by zero is not specified beyond the +IEEE-754 standard; whether a run-time panic +occurs is implementation-specific. +

+ +

+An implementation may combine multiple floating-point operations into a single +fused operation, possibly across statements, and produce a result that differs +from the value obtained by executing and rounding the instructions individually. +An explicit floating-point type conversion rounds to +the precision of the target type, preventing fusion that would discard that rounding. +

+ +

+For instance, some architectures provide a "fused multiply and add" (FMA) instruction +that computes x*y + z without rounding the intermediate result x*y. +These examples show when a Go implementation can use that instruction: +

+ +
+// FMA allowed for computing r, because x*y is not explicitly rounded:
+r  = x*y + z
+r  = z;   r += x*y
+t  = x*y; r = t + z
+*p = x*y; r = *p + z
+r  = x*y + float64(z)
+
+// FMA disallowed for computing r, because it would omit rounding of x*y:
+r  = float64(x*y) + z
+r  = z; r += float64(x*y)
+t  = float64(x*y); r = t + z
+
+ +

String concatenation

+ +

+Strings can be concatenated using the + operator +or the += assignment operator: +

+ +
+s := "hi" + string(c)
+s += " and good bye"
+
+ +

+String addition creates a new string by concatenating the operands. +

+ +

Comparison operators

+ +

+Comparison operators compare two operands and yield an untyped boolean value. +

+ +
+==    equal
+!=    not equal
+<     less
+<=    less or equal
+>     greater
+>=    greater or equal
+
+ +

+In any comparison, the first operand +must be assignable +to the type of the second operand, or vice versa. +

+

+The equality operators == and != apply +to operands of comparable types. +The ordering operators <, <=, >, and >= +apply to operands of ordered types. +These terms and the result of the comparisons are defined as follows: +

+ +
    +
  • + Boolean types are comparable. + Two boolean values are equal if they are either both + true or both false. +
  • + +
  • + Integer types are comparable and ordered. + Two integer values are compared in the usual way. +
  • + +
  • + Floating-point types are comparable and ordered. + Two floating-point values are compared as defined by the IEEE-754 standard. +
  • + +
  • + Complex types are comparable. + Two complex values u and v are + equal if both real(u) == real(v) and + imag(u) == imag(v). +
  • + +
  • + String types are comparable and ordered. + Two string values are compared lexically byte-wise. +
  • + +
  • + Pointer types are comparable. + Two pointer values are equal if they point to the same variable or if both have value nil. + Pointers to distinct zero-size variables may or may not be equal. +
  • + +
  • + Channel types are comparable. + Two channel values are equal if they were created by the same call to + make + or if both have value nil. +
  • + +
  • + Interface types that are not type parameters are comparable. + Two interface values are equal if they have identical dynamic types + and equal dynamic values or if both have value nil. +
  • + +
  • + A value x of non-interface type X and + a value t of interface type T can be compared + if type X is comparable and + X implements T. + They are equal if t's dynamic type is identical to X + and t's dynamic value is equal to x. +
  • + +
  • + Struct types are comparable if all their field types are comparable. + Two struct values are equal if their corresponding + non-blank field values are equal. + The fields are compared in source order, and comparison stops as + soon as two field values differ (or all fields have been compared). +
  • + +
  • + Array types are comparable if their array element types are comparable. + Two array values are equal if their corresponding element values are equal. + The elements are compared in ascending index order, and comparison stops + as soon as two element values differ (or all elements have been compared). +
  • + +
  • + Type parameters are comparable if they are strictly comparable (see below). +
  • +
+ +

+A comparison of two interface values with identical dynamic types +causes a run-time panic if that type +is not comparable. This behavior applies not only to direct interface +value comparisons but also when comparing arrays of interface values +or structs with interface-valued fields. +

+ +

+Slice, map, and function types are not comparable. +However, as a special case, a slice, map, or function value may +be compared to the predeclared identifier nil. +Comparison of pointer, channel, and interface values to nil +is also allowed and follows from the general rules above. +

+ +
+const c = 3 < 4            // c is the untyped boolean constant true
+
+type MyBool bool
+var x, y int
+var (
+	// The result of a comparison is an untyped boolean.
+	// The usual assignment rules apply.
+	b3        = x == y // b3 has type bool
+	b4 bool   = x == y // b4 has type bool
+	b5 MyBool = x == y // b5 has type MyBool
+)
+
+ +

+A type is strictly comparable if it is comparable and not an interface +type nor composed of interface types. +Specifically: +

+ +
    +
  • + Boolean, numeric, string, pointer, and channel types are strictly comparable. +
  • + +
  • + Struct types are strictly comparable if all their field types are strictly comparable. +
  • + +
  • + Array types are strictly comparable if their array element types are strictly comparable. +
  • + +
  • + Type parameters are strictly comparable if all types in their type set are strictly comparable. +
  • +
+ +

Logical operators

+ +

+Logical operators apply to boolean values +and yield a result of the same type as the operands. +The left operand is evaluated, and then the right if the condition requires it. +

+ +
+&&    conditional AND    p && q  is  "if p then q else false"
+||    conditional OR     p || q  is  "if p then true else q"
+!     NOT                !p      is  "not p"
+
+ + +

Address operators

+ +

+For an operand x of type T, the address operation +&x generates a pointer of type *T to x. +The operand must be addressable, +that is, either a variable, pointer indirection, or slice indexing +operation; or a field selector of an addressable struct operand; +or an array indexing operation of an addressable array. +As an exception to the addressability requirement, x may also be a +(possibly parenthesized) +composite literal. +If the evaluation of x would cause a run-time panic, +then the evaluation of &x does too. +

+ +

+For an operand x of pointer type *T, the pointer +indirection *x denotes the variable of type T pointed +to by x. +If x is nil, an attempt to evaluate *x +will cause a run-time panic. +

+ +
+&x
+&a[f(2)]
+&Point{2, 3}
+*p
+*pf(x)
+
+var x *int = nil
+*x   // causes a run-time panic
+&*x  // causes a run-time panic
+
+ + +

Receive operator

+ +

+For an operand ch whose core type is a +channel, +the value of the receive operation <-ch is the value received +from the channel ch. The channel direction must permit receive operations, +and the type of the receive operation is the element type of the channel. +The expression blocks until a value is available. +Receiving from a nil channel blocks forever. +A receive operation on a closed channel can always proceed +immediately, yielding the element type's zero value +after any previously sent values have been received. +

+ +
+v1 := <-ch
+v2 = <-ch
+f(<-ch)
+<-strobe  // wait until clock pulse and discard received value
+
+ +

+A receive expression used in an assignment statement or initialization of the special form +

+ +
+x, ok = <-ch
+x, ok := <-ch
+var x, ok = <-ch
+var x, ok T = <-ch
+
+ +

+yields an additional untyped boolean result reporting whether the +communication succeeded. The value of ok is true +if the value received was delivered by a successful send operation to the +channel, or false if it is a zero value generated because the +channel is closed and empty. +

+ + +

Conversions

+ +

+A conversion changes the type of an expression +to the type specified by the conversion. +A conversion may appear literally in the source, or it may be implied +by the context in which an expression appears. +

+ +

+An explicit conversion is an expression of the form T(x) +where T is a type and x is an expression +that can be converted to type T. +

+ +
+Conversion = Type "(" Expression [ "," ] ")" .
+
+ +

+If the type starts with the operator * or <-, +or if the type starts with the keyword func +and has no result list, it must be parenthesized when +necessary to avoid ambiguity: +

+ +
+*Point(p)        // same as *(Point(p))
+(*Point)(p)      // p is converted to *Point
+<-chan int(c)    // same as <-(chan int(c))
+(<-chan int)(c)  // c is converted to <-chan int
+func()(x)        // function signature func() x
+(func())(x)      // x is converted to func()
+(func() int)(x)  // x is converted to func() int
+func() int(x)    // x is converted to func() int (unambiguous)
+
+ +

+A constant value x can be converted to +type T if x is representable +by a value of T. +As a special case, an integer constant x can be explicitly converted to a +string type using the +same rule +as for non-constant x. +

+ +

+Converting a constant to a type that is not a type parameter +yields a typed constant. +

+ +
+uint(iota)               // iota value of type uint
+float32(2.718281828)     // 2.718281828 of type float32
+complex128(1)            // 1.0 + 0.0i of type complex128
+float32(0.49999999)      // 0.5 of type float32
+float64(-1e-1000)        // 0.0 of type float64
+string('x')              // "x" of type string
+string(0x266c)           // "♬" of type string
+myString("foo" + "bar")  // "foobar" of type myString
+string([]byte{'a'})      // not a constant: []byte{'a'} is not a constant
+(*int)(nil)              // not a constant: nil is not a constant, *int is not a boolean, numeric, or string type
+int(1.2)                 // illegal: 1.2 cannot be represented as an int
+string(65.0)             // illegal: 65.0 is not an integer constant
+
+ +

+Converting a constant to a type parameter yields a non-constant value of that type, +with the value represented as a value of the type argument that the type parameter +is instantiated with. +For example, given the function: +

+ +
+func f[P ~float32|~float64]() {
+	… P(1.1) …
+}
+
+ +

+the conversion P(1.1) results in a non-constant value of type P +and the value 1.1 is represented as a float32 or a float64 +depending on the type argument for f. +Accordingly, if f is instantiated with a float32 type, +the numeric value of the expression P(1.1) + 1.2 will be computed +with the same precision as the corresponding non-constant float32 +addition. +

+ +

+A non-constant value x can be converted to type T +in any of these cases: +

+ +
    +
  • + x is assignable + to T. +
  • +
  • + ignoring struct tags (see below), + x's type and T are not + type parameters but have + identical underlying types. +
  • +
  • + ignoring struct tags (see below), + x's type and T are pointer types + that are not named types, + and their pointer base types are not type parameters but + have identical underlying types. +
  • +
  • + x's type and T are both integer or floating + point types. +
  • +
  • + x's type and T are both complex types. +
  • +
  • + x is an integer or a slice of bytes or runes + and T is a string type. +
  • +
  • + x is a string and T is a slice of bytes or runes. +
  • +
  • + x is a slice, T is an array [Go 1.20] + or a pointer to an array [Go 1.17], + and the slice and array types have identical element types. +
  • +
+ +

+Additionally, if T or x's type V are type +parameters, x +can also be converted to type T if one of the following conditions applies: +

+ +
    +
  • +Both V and T are type parameters and a value of each +type in V's type set can be converted to each type in T's +type set. +
  • +
  • +Only V is a type parameter and a value of each +type in V's type set can be converted to T. +
  • +
  • +Only T is a type parameter and x can be converted to each +type in T's type set. +
  • +
+ +

+Struct tags are ignored when comparing struct types +for identity for the purpose of conversion: +

+ +
+type Person struct {
+	Name    string
+	Address *struct {
+		Street string
+		City   string
+	}
+}
+
+var data *struct {
+	Name    string `json:"name"`
+	Address *struct {
+		Street string `json:"street"`
+		City   string `json:"city"`
+	} `json:"address"`
+}
+
+var person = (*Person)(data)  // ignoring tags, the underlying types are identical
+
+ +

+Specific rules apply to (non-constant) conversions between numeric types or +to and from a string type. +These conversions may change the representation of x +and incur a run-time cost. +All other conversions only change the type but not the representation +of x. +

+ +

+There is no linguistic mechanism to convert between pointers and integers. +The package unsafe +implements this functionality under restricted circumstances. +

+ +

Conversions between numeric types

+ +

+For the conversion of non-constant numeric values, the following rules apply: +

+ +
    +
  1. +When converting between integer types, if the value is a signed integer, it is +sign extended to implicit infinite precision; otherwise it is zero extended. +It is then truncated to fit in the result type's size. +For example, if v := uint16(0x10F0), then uint32(int8(v)) == 0xFFFFFFF0. +The conversion always yields a valid value; there is no indication of overflow. +
  2. +
  3. +When converting a floating-point number to an integer, the fraction is discarded +(truncation towards zero). +
  4. +
  5. +When converting an integer or floating-point number to a floating-point type, +or a complex number to another complex type, the result value is rounded +to the precision specified by the destination type. +For instance, the value of a variable x of type float32 +may be stored using additional precision beyond that of an IEEE-754 32-bit number, +but float32(x) represents the result of rounding x's value to +32-bit precision. Similarly, x + 0.1 may use more than 32 bits +of precision, but float32(x + 0.1) does not. +
  6. +
+ +

+In all non-constant conversions involving floating-point or complex values, +if the result type cannot represent the value the conversion +succeeds but the result value is implementation-dependent. +

+ +

Conversions to and from a string type

+ +
    +
  1. +Converting a slice of bytes to a string type yields +a string whose successive bytes are the elements of the slice. + +
    +string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'})   // "hellø"
    +string([]byte{})                                     // ""
    +string([]byte(nil))                                  // ""
    +
    +type bytes []byte
    +string(bytes{'h', 'e', 'l', 'l', '\xc3', '\xb8'})    // "hellø"
    +
    +type myByte byte
    +string([]myByte{'w', 'o', 'r', 'l', 'd', '!'})       // "world!"
    +myString([]myByte{'\xf0', '\x9f', '\x8c', '\x8d'})   // "🌍"
    +
    +
  2. + +
  3. +Converting a slice of runes to a string type yields +a string that is the concatenation of the individual rune values +converted to strings. + +
    +string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    +string([]rune{})                         // ""
    +string([]rune(nil))                      // ""
    +
    +type runes []rune
    +string(runes{0x767d, 0x9d6c, 0x7fd4})    // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    +
    +type myRune rune
    +string([]myRune{0x266b, 0x266c})         // "\u266b\u266c" == "♫♬"
    +myString([]myRune{0x1f30e})              // "\U0001f30e" == "🌎"
    +
    +
  4. + +
  5. +Converting a value of a string type to a slice of bytes type +yields a non-nil slice whose successive elements are the bytes of the string. + +
    +[]byte("hellø")             // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    +[]byte("")                  // []byte{}
    +
    +bytes("hellø")              // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    +
    +[]myByte("world!")          // []myByte{'w', 'o', 'r', 'l', 'd', '!'}
    +[]myByte(myString("🌏"))    // []myByte{'\xf0', '\x9f', '\x8c', '\x8f'}
    +
    +
  6. + +
  7. +Converting a value of a string type to a slice of runes type +yields a slice containing the individual Unicode code points of the string. + +
    +[]rune(myString("白鵬翔"))   // []rune{0x767d, 0x9d6c, 0x7fd4}
    +[]rune("")                  // []rune{}
    +
    +runes("白鵬翔")              // []rune{0x767d, 0x9d6c, 0x7fd4}
    +
    +[]myRune("♫♬")              // []myRune{0x266b, 0x266c}
    +[]myRune(myString("🌐"))    // []myRune{0x1f310}
    +
    +
  8. + +
  9. +Finally, for historical reasons, an integer value may be converted to a string type. +This form of conversion yields a string containing the (possibly multi-byte) UTF-8 +representation of the Unicode code point with the given integer value. +Values outside the range of valid Unicode code points are converted to "\uFFFD". + +
    +string('a')          // "a"
    +string(65)           // "A"
    +string('\xf8')       // "\u00f8" == "ø" == "\xc3\xb8"
    +string(-1)           // "\ufffd" == "\xef\xbf\xbd"
    +
    +type myString string
    +myString('\u65e5')   // "\u65e5" == "日" == "\xe6\x97\xa5"
    +
    + +Note: This form of conversion may eventually be removed from the language. +The go vet tool flags certain +integer-to-string conversions as potential errors. +Library functions such as +utf8.AppendRune or +utf8.EncodeRune +should be used instead. +
  10. +
+ +

Conversions from slice to array or array pointer

+ +

+Converting a slice to an array yields an array containing the elements of the underlying array of the slice. +Similarly, converting a slice to an array pointer yields a pointer to the underlying array of the slice. +In both cases, if the length of the slice is less than the length of the array, +a run-time panic occurs. +

+ +
+s := make([]byte, 2, 4)
+
+a0 := [0]byte(s)
+a1 := [1]byte(s[1:])     // a1[0] == s[1]
+a2 := [2]byte(s)         // a2[0] == s[0]
+a4 := [4]byte(s)         // panics: len([4]byte) > len(s)
+
+s0 := (*[0]byte)(s)      // s0 != nil
+s1 := (*[1]byte)(s[1:])  // &s1[0] == &s[1]
+s2 := (*[2]byte)(s)      // &s2[0] == &s[0]
+s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
+
+var t []string
+t0 := [0]string(t)       // ok for nil slice t
+t1 := (*[0]string)(t)    // t1 == nil
+t2 := (*[1]string)(t)    // panics: len([1]string) > len(t)
+
+u := make([]byte, 0)
+u0 := (*[0]byte)(u)      // u0 != nil
+
+ +

Constant expressions

+ +

+Constant expressions may contain only constant +operands and are evaluated at compile time. +

+ +

+Untyped boolean, numeric, and string constants may be used as operands +wherever it is legal to use an operand of boolean, numeric, or string type, +respectively. +

+ +

+A constant comparison always yields +an untyped boolean constant. If the left operand of a constant +shift expression is an untyped constant, the +result is an integer constant; otherwise it is a constant of the same +type as the left operand, which must be of +integer type. +

+ +

+Any other operation on untyped constants results in an untyped constant of the +same kind; that is, a boolean, integer, floating-point, complex, or string +constant. +If the untyped operands of a binary operation (other than a shift) are of +different kinds, the result is of the operand's kind that appears later in this +list: integer, rune, floating-point, complex. +For example, an untyped integer constant divided by an +untyped complex constant yields an untyped complex constant. +

+ +
+const a = 2 + 3.0          // a == 5.0   (untyped floating-point constant)
+const b = 15 / 4           // b == 3     (untyped integer constant)
+const c = 15 / 4.0         // c == 3.75  (untyped floating-point constant)
+const Θ float64 = 3/2      // Θ == 1.0   (type float64, 3/2 is integer division)
+const Π float64 = 3/2.     // Π == 1.5   (type float64, 3/2. is float division)
+const d = 1 << 3.0         // d == 8     (untyped integer constant)
+const e = 1.0 << 3         // e == 8     (untyped integer constant)
+const f = int32(1) << 33   // illegal    (constant 8589934592 overflows int32)
+const g = float64(2) >> 1  // illegal    (float64(2) is a typed floating-point constant)
+const h = "foo" > "bar"    // h == true  (untyped boolean constant)
+const j = true             // j == true  (untyped boolean constant)
+const k = 'w' + 1          // k == 'x'   (untyped rune constant)
+const l = "hi"             // l == "hi"  (untyped string constant)
+const m = string(k)        // m == "x"   (type string)
+const Σ = 1 - 0.707i       //            (untyped complex constant)
+const Δ = Σ + 2.0e-4       //            (untyped complex constant)
+const Φ = iota*1i - 1/1i   //            (untyped complex constant)
+
+ +

+Applying the built-in function complex to untyped +integer, rune, or floating-point constants yields +an untyped complex constant. +

+ +
+const ic = complex(0, c)   // ic == 3.75i  (untyped complex constant)
+const iΘ = complex(0, Θ)   // iΘ == 1i     (type complex128)
+
+ +

+Constant expressions are always evaluated exactly; intermediate values and the +constants themselves may require precision significantly larger than supported +by any predeclared type in the language. The following are legal declarations: +

+ +
+const Huge = 1 << 100         // Huge == 1267650600228229401496703205376  (untyped integer constant)
+const Four int8 = Huge >> 98  // Four == 4                                (type int8)
+
+ +

+The divisor of a constant division or remainder operation must not be zero: +

+ +
+3.14 / 0.0   // illegal: division by zero
+
+ +

+The values of typed constants must always be accurately +representable by values +of the constant type. The following constant expressions are illegal: +

+ +
+uint(-1)     // -1 cannot be represented as a uint
+int(3.14)    // 3.14 cannot be represented as an int
+int64(Huge)  // 1267650600228229401496703205376 cannot be represented as an int64
+Four * 300   // operand 300 cannot be represented as an int8 (type of Four)
+Four * 100   // product 400 cannot be represented as an int8 (type of Four)
+
+ +

+The mask used by the unary bitwise complement operator ^ matches +the rule for non-constants: the mask is all 1s for unsigned constants +and -1 for signed and untyped constants. +

+ +
+^1         // untyped integer constant, equal to -2
+uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
+^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
+int8(^1)   // same as int8(-2)
+^int8(1)   // same as -1 ^ int8(1) = -2
+
+ +

+Implementation restriction: A compiler may use rounding while +computing untyped floating-point or complex constant expressions; see +the implementation restriction in the section +on constants. This rounding may cause a +floating-point constant expression to be invalid in an integer +context, even if it would be integral when calculated using infinite +precision, and vice versa. +

+ + +

Order of evaluation

+ +

+At package level, initialization dependencies +determine the evaluation order of individual initialization expressions in +variable declarations. +Otherwise, when evaluating the operands of an +expression, assignment, or +return statement, +all function calls, method calls, +receive operations, +and binary logical operations +are evaluated in lexical left-to-right order. +

+ +

+For example, in the (function-local) assignment +

+
+y[f()], ok = g(z || h(), i()+x[j()], <-c), k()
+
+

+the function calls and communication happen in the order +f(), h() (if z +evaluates to false), i(), j(), +<-c, g(), and k(). +However, the order of those events compared to the evaluation +and indexing of x and the evaluation +of y and z is not specified, +except as required lexically. For instance, g +cannot be called before its arguments are evaluated. +

+ +
+a := 1
+f := func() int { a++; return a }
+x := []int{a, f()}            // x may be [1, 2] or [2, 2]: evaluation order between a and f() is not specified
+m := map[int]int{a: 1, a: 2}  // m may be {2: 1} or {2: 2}: evaluation order between the two map assignments is not specified
+n := map[int]int{a: f()}      // n may be {2: 3} or {3: 3}: evaluation order between the key and the value is not specified
+
+ +

+At package level, initialization dependencies override the left-to-right rule +for individual initialization expressions, but not for operands within each +expression: +

+ +
+var a, b, c = f() + v(), g(), sqr(u()) + v()
+
+func f() int        { return c }
+func g() int        { return a }
+func sqr(x int) int { return x*x }
+
+// functions u and v are independent of all other variables and functions
+
+ +

+The function calls happen in the order +u(), sqr(), v(), +f(), v(), and g(). +

+ +

+Floating-point operations within a single expression are evaluated according to +the associativity of the operators. Explicit parentheses affect the evaluation +by overriding the default associativity. +In the expression x + (y + z) the addition y + z +is performed before adding x. +

+ +

Statements

+ +

+Statements control execution. +

+ +
+Statement =
+	Declaration | LabeledStmt | SimpleStmt |
+	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
+	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
+	DeferStmt .
+
+SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
+
+ +

Terminating statements

+ +

+A terminating statement interrupts the regular flow of control in +a block. The following statements are terminating: +

+ +
    +
  1. + A "return" or + "goto" statement. + +
    +
  2. + +
  3. + A call to the built-in function + panic. + +
    +
  4. + +
  5. + A block in which the statement list ends in a terminating statement. + +
    +
  6. + +
  7. + An "if" statement in which: +
      +
    • the "else" branch is present, and
    • +
    • both branches are terminating statements.
    • +
    +
  8. + +
  9. + A "for" statement in which: +
      +
    • there are no "break" statements referring to the "for" statement, and
    • +
    • the loop condition is absent, and
    • +
    • the "for" statement does not use a range clause.
    • +
    +
  10. + +
  11. + A "switch" statement in which: +
      +
    • there are no "break" statements referring to the "switch" statement,
    • +
    • there is a default case, and
    • +
    • the statement lists in each case, including the default, end in a terminating + statement, or a possibly labeled "fallthrough" + statement.
    • +
    +
  12. + +
  13. + A "select" statement in which: +
      +
    • there are no "break" statements referring to the "select" statement, and
    • +
    • the statement lists in each case, including the default if present, + end in a terminating statement.
    • +
    +
  14. + +
  15. + A labeled statement labeling + a terminating statement. +
  16. +
+ +

+All other statements are not terminating. +

+ +

+A statement list ends in a terminating statement if the list +is not empty and its final non-empty statement is terminating. +

+ + +

Empty statements

+ +

+The empty statement does nothing. +

+ +
+EmptyStmt = .
+
+ + +

Labeled statements

+ +

+A labeled statement may be the target of a goto, +break or continue statement. +

+ +
+LabeledStmt = Label ":" Statement .
+Label       = identifier .
+
+ +
+Error: log.Panic("error encountered")
+
+ + +

Expression statements

+ +

+With the exception of specific built-in functions, +function and method calls and +receive operations +can appear in statement context. Such statements may be parenthesized. +

+ +
+ExpressionStmt = Expression .
+
+ +

+The following built-in functions are not permitted in statement context: +

+ +
+append cap complex imag len make new real
+unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice unsafe.SliceData unsafe.String unsafe.StringData
+
+ +
+h(x+y)
+f.Close()
+<-ch
+(<-ch)
+len("foo")  // illegal if len is the built-in function
+
+ + +

Send statements

+ +

+A send statement sends a value on a channel. +The channel expression's core type +must be a channel, +the channel direction must permit send operations, +and the type of the value to be sent must be assignable +to the channel's element type. +

+ +
+SendStmt = Channel "<-" Expression .
+Channel  = Expression .
+
+ +

+Both the channel and the value expression are evaluated before communication +begins. Communication blocks until the send can proceed. +A send on an unbuffered channel can proceed if a receiver is ready. +A send on a buffered channel can proceed if there is room in the buffer. +A send on a closed channel proceeds by causing a run-time panic. +A send on a nil channel blocks forever. +

+ +
+ch <- 3  // send value 3 to channel ch
+
+ + +

IncDec statements

+ +

+The "++" and "--" statements increment or decrement their operands +by the untyped constant 1. +As with an assignment, the operand must be addressable +or a map index expression. +

+ +
+IncDecStmt = Expression ( "++" | "--" ) .
+
+ +

+The following assignment statements are semantically +equivalent: +

+ +
+IncDec statement    Assignment
+x++                 x += 1
+x--                 x -= 1
+
+ + +

Assignment statements

+ +

+An assignment replaces the current value stored in a variable +with a new value specified by an expression. +An assignment statement may assign a single value to a single variable, or multiple values to a +matching number of variables. +

+ +
+Assignment = ExpressionList assign_op ExpressionList .
+
+assign_op = [ add_op | mul_op ] "=" .
+
+ +

+Each left-hand side operand must be addressable, +a map index expression, or (for = assignments only) the +blank identifier. +Operands may be parenthesized. +

+ +
+x = 1
+*p = f()
+a[i] = 23
+(k) = <-ch  // same as: k = <-ch
+
+ +

+An assignment operation x op= +y where op is a binary arithmetic operator +is equivalent to x = x op +(y) but evaluates x +only once. The op= construct is a single token. +In assignment operations, both the left- and right-hand expression lists +must contain exactly one single-valued expression, and the left-hand +expression must not be the blank identifier. +

+ +
+a[i] <<= 2
+i &^= 1<<n
+
+ +

+A tuple assignment assigns the individual elements of a multi-valued +operation to a list of variables. There are two forms. In the +first, the right hand operand is a single multi-valued expression +such as a function call, a channel or +map operation, or a type assertion. +The number of operands on the left +hand side must match the number of values. For instance, if +f is a function returning two values, +

+ +
+x, y = f()
+
+ +

+assigns the first value to x and the second to y. +In the second form, the number of operands on the left must equal the number +of expressions on the right, each of which must be single-valued, and the +nth expression on the right is assigned to the nth +operand on the left: +

+ +
+one, two, three = '一', '二', '三'
+
+ +

+The blank identifier provides a way to +ignore right-hand side values in an assignment: +

+ +
+_ = x       // evaluate x but ignore it
+x, _ = f()  // evaluate f() but ignore second result value
+
+ +

+The assignment proceeds in two phases. +First, the operands of index expressions +and pointer indirections +(including implicit pointer indirections in selectors) +on the left and the expressions on the right are all +evaluated in the usual order. +Second, the assignments are carried out in left-to-right order. +

+ +
+a, b = b, a  // exchange a and b
+
+x := []int{1, 2, 3}
+i := 0
+i, x[i] = 1, 2  // set i = 1, x[0] = 2
+
+i = 0
+x[i], i = 2, 1  // set x[0] = 2, i = 1
+
+x[0], x[0] = 1, 2  // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
+
+x[1], x[3] = 4, 5  // set x[1] = 4, then panic setting x[3] = 5.
+
+type Point struct { x, y int }
+var p *Point
+x[2], p.x = 6, 7  // set x[2] = 6, then panic setting p.x = 7
+
+i = 2
+x = []int{3, 5, 7}
+for i, x[i] = range x {  // set i, x[2] = 0, x[0]
+	break
+}
+// after this loop, i == 0 and x is []int{3, 5, 3}
+
+ +

+In assignments, each value must be assignable +to the type of the operand to which it is assigned, with the following special cases: +

+ +
    +
  1. + Any typed value may be assigned to the blank identifier. +
  2. + +
  3. + If an untyped constant + is assigned to a variable of interface type or the blank identifier, + the constant is first implicitly converted to its + default type. +
  4. + +
  5. + If an untyped boolean value is assigned to a variable of interface type or + the blank identifier, it is first implicitly converted to type bool. +
  6. +
+ +

If statements

+ +

+"If" statements specify the conditional execution of two branches +according to the value of a boolean expression. If the expression +evaluates to true, the "if" branch is executed, otherwise, if +present, the "else" branch is executed. +

+ +
+IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .
+
+ +
+if x > max {
+	x = max
+}
+
+ +

+The expression may be preceded by a simple statement, which +executes before the expression is evaluated. +

+ +
+if x := f(); x < y {
+	return x
+} else if x > z {
+	return z
+} else {
+	return y
+}
+
+ + +

Switch statements

+ +

+"Switch" statements provide multi-way execution. +An expression or type is compared to the "cases" +inside the "switch" to determine which branch +to execute. +

+ +
+SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
+
+ +

+There are two forms: expression switches and type switches. +In an expression switch, the cases contain expressions that are compared +against the value of the switch expression. +In a type switch, the cases contain types that are compared against the +type of a specially annotated switch expression. +The switch expression is evaluated exactly once in a switch statement. +

+ +

Expression switches

+ +

+In an expression switch, +the switch expression is evaluated and +the case expressions, which need not be constants, +are evaluated left-to-right and top-to-bottom; the first one that equals the +switch expression +triggers execution of the statements of the associated case; +the other cases are skipped. +If no case matches and there is a "default" case, +its statements are executed. +There can be at most one default case and it may appear anywhere in the +"switch" statement. +A missing switch expression is equivalent to the boolean value +true. +

+ +
+ExprSwitchStmt = "switch" [ SimpleStmt ";" ] [ Expression ] "{" { ExprCaseClause } "}" .
+ExprCaseClause = ExprSwitchCase ":" StatementList .
+ExprSwitchCase = "case" ExpressionList | "default" .
+
+ +

+If the switch expression evaluates to an untyped constant, it is first implicitly +converted to its default type. +The predeclared untyped value nil cannot be used as a switch expression. +The switch expression type must be comparable. +

+ +

+If a case expression is untyped, it is first implicitly converted +to the type of the switch expression. +For each (possibly converted) case expression x and the value t +of the switch expression, x == t must be a valid comparison. +

+ +

+In other words, the switch expression is treated as if it were used to declare and +initialize a temporary variable t without explicit type; it is that +value of t against which each case expression x is tested +for equality. +

+ +

+In a case or default clause, the last non-empty statement +may be a (possibly labeled) +"fallthrough" statement to +indicate that control should flow from the end of this clause to +the first statement of the next clause. +Otherwise control flows to the end of the "switch" statement. +A "fallthrough" statement may appear as the last statement of all +but the last clause of an expression switch. +

+ +

+The switch expression may be preceded by a simple statement, which +executes before the expression is evaluated. +

+ +
+switch tag {
+default: s3()
+case 0, 1, 2, 3: s1()
+case 4, 5, 6, 7: s2()
+}
+
+switch x := f(); {  // missing switch expression means "true"
+case x < 0: return -x
+default: return x
+}
+
+switch {
+case x < y: f1()
+case x < z: f2()
+case x == 4: f3()
+}
+
+ +

+Implementation restriction: A compiler may disallow multiple case +expressions evaluating to the same constant. +For instance, the current compilers disallow duplicate integer, +floating point, or string constants in case expressions. +

+ +

Type switches

+ +

+A type switch compares types rather than values. It is otherwise similar +to an expression switch. It is marked by a special switch expression that +has the form of a type assertion +using the keyword type rather than an actual type: +

+ +
+switch x.(type) {
+// cases
+}
+
+ +

+Cases then match actual types T against the dynamic type of the +expression x. As with type assertions, x must be of +interface type, but not a +type parameter, and each non-interface type +T listed in a case must implement the type of x. +The types listed in the cases of a type switch must all be +different. +

+ +
+TypeSwitchStmt  = "switch" [ SimpleStmt ";" ] TypeSwitchGuard "{" { TypeCaseClause } "}" .
+TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
+TypeCaseClause  = TypeSwitchCase ":" StatementList .
+TypeSwitchCase  = "case" TypeList | "default" .
+
+ +

+The TypeSwitchGuard may include a +short variable declaration. +When that form is used, the variable is declared at the end of the +TypeSwitchCase in the implicit block of each clause. +In clauses with a case listing exactly one type, the variable +has that type; otherwise, the variable has the type of the expression +in the TypeSwitchGuard. +

+ +

+Instead of a type, a case may use the predeclared identifier +nil; +that case is selected when the expression in the TypeSwitchGuard +is a nil interface value. +There may be at most one nil case. +

+ +

+Given an expression x of type interface{}, +the following type switch: +

+ +
+switch i := x.(type) {
+case nil:
+	printString("x is nil")                // type of i is type of x (interface{})
+case int:
+	printInt(i)                            // type of i is int
+case float64:
+	printFloat64(i)                        // type of i is float64
+case func(int) float64:
+	printFunction(i)                       // type of i is func(int) float64
+case bool, string:
+	printString("type is bool or string")  // type of i is type of x (interface{})
+default:
+	printString("don't know the type")     // type of i is type of x (interface{})
+}
+
+ +

+could be rewritten: +

+ +
+v := x  // x is evaluated exactly once
+if v == nil {
+	i := v                                 // type of i is type of x (interface{})
+	printString("x is nil")
+} else if i, isInt := v.(int); isInt {
+	printInt(i)                            // type of i is int
+} else if i, isFloat64 := v.(float64); isFloat64 {
+	printFloat64(i)                        // type of i is float64
+} else if i, isFunc := v.(func(int) float64); isFunc {
+	printFunction(i)                       // type of i is func(int) float64
+} else {
+	_, isBool := v.(bool)
+	_, isString := v.(string)
+	if isBool || isString {
+		i := v                         // type of i is type of x (interface{})
+		printString("type is bool or string")
+	} else {
+		i := v                         // type of i is type of x (interface{})
+		printString("don't know the type")
+	}
+}
+
+ +

+A type parameter or a generic type +may be used as a type in a case. If upon instantiation that type turns +out to duplicate another entry in the switch, the first matching case is chosen. +

+ +
+func f[P any](x any) int {
+	switch x.(type) {
+	case P:
+		return 0
+	case string:
+		return 1
+	case []P:
+		return 2
+	case []byte:
+		return 3
+	default:
+		return 4
+	}
+}
+
+var v1 = f[string]("foo")   // v1 == 0
+var v2 = f[byte]([]byte{})  // v2 == 2
+
+ +

+The type switch guard may be preceded by a simple statement, which +executes before the guard is evaluated. +

+ +

+The "fallthrough" statement is not permitted in a type switch. +

+ +

For statements

+ +

+A "for" statement specifies repeated execution of a block. There are three forms: +The iteration may be controlled by a single condition, a "for" clause, or a "range" clause. +

+ +
+ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
+Condition = Expression .
+
+ +

For statements with single condition

+ +

+In its simplest form, a "for" statement specifies the repeated execution of +a block as long as a boolean condition evaluates to true. +The condition is evaluated before each iteration. +If the condition is absent, it is equivalent to the boolean value +true. +

+ +
+for a < b {
+	a *= 2
+}
+
+ +

For statements with for clause

+ +

+A "for" statement with a ForClause is also controlled by its condition, but +additionally it may specify an init +and a post statement, such as an assignment, +an increment or decrement statement. The init statement may be a +short variable declaration, but the post statement must not. +

+ +
+ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] .
+InitStmt = SimpleStmt .
+PostStmt = SimpleStmt .
+
+ +
+for i := 0; i < 10; i++ {
+	f(i)
+}
+
+ +

+If non-empty, the init statement is executed once before evaluating the +condition for the first iteration; +the post statement is executed after each execution of the block (and +only if the block was executed). +Any element of the ForClause may be empty but the +semicolons are +required unless there is only a condition. +If the condition is absent, it is equivalent to the boolean value +true. +

+ +
+for cond { S() }    is the same as    for ; cond ; { S() }
+for      { S() }    is the same as    for true     { S() }
+
+ +

+Each iteration has its own separate declared variable (or variables) +[Go 1.22]. +The variable used by the first iteration is declared by the init statement. +The variable used by each subsequent iteration is declared implicitly before +executing the post statement and initialized to the value of the previous +iteration's variable at that moment. +

+ +
+var prints []func()
+for i := 0; i < 5; i++ {
+	prints = append(prints, func() { println(i) })
+	i++
+}
+for _, p := range prints {
+	p()
+}
+
+ +

+prints +

+ +
+1
+3
+5
+
+ +

+Prior to [Go 1.22], iterations share one set of variables +instead of having their own separate variables. +In that case, the example above prints +

+ +
+6
+6
+6
+
+ +

For statements with range clause

+ +

+A "for" statement with a "range" clause +iterates through all entries of an array, slice, string or map, values received on +a channel, or integer values from zero to an upper limit [Go 1.22]. +For each entry it assigns iteration values +to corresponding iteration variables if present and then executes the block. +

+ +
+RangeClause = [ ExpressionList "=" | IdentifierList ":=" ] "range" Expression .
+
+ +

+The expression on the right in the "range" clause is called the range expression, +its core type must be +an array, pointer to an array, slice, string, map, channel permitting +receive operations, or an integer. +As with an assignment, if present the operands on the left must be +addressable or map index expressions; they +denote the iteration variables. If the range expression is a channel or integer, +at most one iteration variable is permitted, otherwise there may be up to two. +If the last iteration variable is the blank identifier, +the range clause is equivalent to the same clause without that identifier. +

+ +

+The range expression x is evaluated once before beginning the loop, +with one exception: if at most one iteration variable is present and +len(x) is constant, +the range expression is not evaluated. +

+ +

+Function calls on the left are evaluated once per iteration. +For each iteration, iteration values are produced as follows +if the respective iteration variables are present: +

+ +
+Range expression                          1st value          2nd value
+
+array or slice  a  [n]E, *[n]E, or []E    index    i  int    a[i]       E
+string          s  string type            index    i  int    see below  rune
+map             m  map[K]V                key      k  K      m[k]       V
+channel         c  chan E, <-chan E       element  e  E
+integer         n  integer type           value    i  see below
+
+ +
    +
  1. +For an array, pointer to array, or slice value a, the index iteration +values are produced in increasing order, starting at element index 0. +If at most one iteration variable is present, the range loop produces +iteration values from 0 up to len(a)-1 and does not index into the array +or slice itself. For a nil slice, the number of iterations is 0. +
  2. + +
  3. +For a string value, the "range" clause iterates over the Unicode code points +in the string starting at byte index 0. On successive iterations, the index value will be the +index of the first byte of successive UTF-8-encoded code points in the string, +and the second value, of type rune, will be the value of +the corresponding code point. If the iteration encounters an invalid +UTF-8 sequence, the second value will be 0xFFFD, +the Unicode replacement character, and the next iteration will advance +a single byte in the string. +
  4. + +
  5. +The iteration order over maps is not specified +and is not guaranteed to be the same from one iteration to the next. +If a map entry that has not yet been reached is removed during iteration, +the corresponding iteration value will not be produced. If a map entry is +created during iteration, that entry may be produced during the iteration or +may be skipped. The choice may vary for each entry created and from one +iteration to the next. +If the map is nil, the number of iterations is 0. +
  6. + +
  7. +For channels, the iteration values produced are the successive values sent on +the channel until the channel is closed. If the channel +is nil, the range expression blocks forever. +
  8. + +
  9. +For an integer value n, the iteration values 0 through n-1 +are produced in increasing order. +If n <= 0, the loop does not run any iterations. +
  10. +
+ +

+The iteration variables may be declared by the "range" clause using a form of +short variable declaration +(:=). +In this case their scope is the block of the "for" statement +and each iteration has its own new variables [Go 1.22] +(see also "for" statements with a ForClause). +If the range expression is a (possibly untyped) integer expression n, +the variable has the same type as if it was +declared with initialization +expression n. +Otherwise, the variables have the types of their respective iteration values. +

+ +

+If the iteration variables are not explicitly declared by the "range" clause, +they must be preexisting. +In this case, the iteration values are assigned to the respective variables +as in an assignment statement. +If the range expression is a (possibly untyped) integer expression n, +n too must be assignable to the iteration variable; +if there is no iteration variable, n must be assignable to int. +

+ +
+var testdata *struct {
+	a *[7]int
+}
+for i, _ := range testdata.a {
+	// testdata.a is never evaluated; len(testdata.a) is constant
+	// i ranges from 0 to 6
+	f(i)
+}
+
+var a [10]string
+for i, s := range a {
+	// type of i is int
+	// type of s is string
+	// s == a[i]
+	g(i, s)
+}
+
+var key string
+var val interface{}  // element type of m is assignable to val
+m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6}
+for key, val = range m {
+	h(key, val)
+}
+// key == last map key encountered in iteration
+// val == map[key]
+
+var ch chan Work = producer()
+for w := range ch {
+	doWork(w)
+}
+
+// empty a channel
+for range ch {}
+
+// call f(0), f(1), ... f(9)
+for i := range 10 {
+	// type of i is int (default type for untyped constant 10)
+	f(i)
+}
+
+// invalid: 256 cannot be assigned to uint8
+var u uint8
+for u = range 256 {
+}
+
+ + +

Go statements

+ +

+A "go" statement starts the execution of a function call +as an independent concurrent thread of control, or goroutine, +within the same address space. +

+ +
+GoStmt = "go" Expression .
+
+ +

+The expression must be a function or method call; it cannot be parenthesized. +Calls of built-in functions are restricted as for +expression statements. +

+ +

+The function value and parameters are +evaluated as usual +in the calling goroutine, but +unlike with a regular call, program execution does not wait +for the invoked function to complete. +Instead, the function begins executing independently +in a new goroutine. +When the function terminates, its goroutine also terminates. +If the function has any return values, they are discarded when the +function completes. +

+ +
+go Server()
+go func(ch chan<- bool) { for { sleep(10); ch <- true }} (c)
+
+ + +

Select statements

+ +

+A "select" statement chooses which of a set of possible +send or +receive +operations will proceed. +It looks similar to a +"switch" statement but with the +cases all referring to communication operations. +

+ +
+SelectStmt = "select" "{" { CommClause } "}" .
+CommClause = CommCase ":" StatementList .
+CommCase   = "case" ( SendStmt | RecvStmt ) | "default" .
+RecvStmt   = [ ExpressionList "=" | IdentifierList ":=" ] RecvExpr .
+RecvExpr   = Expression .
+
+ +

+A case with a RecvStmt may assign the result of a RecvExpr to one or +two variables, which may be declared using a +short variable declaration. +The RecvExpr must be a (possibly parenthesized) receive operation. +There can be at most one default case and it may appear anywhere +in the list of cases. +

+ +

+Execution of a "select" statement proceeds in several steps: +

+ +
    +
  1. +For all the cases in the statement, the channel operands of receive operations +and the channel and right-hand-side expressions of send statements are +evaluated exactly once, in source order, upon entering the "select" statement. +The result is a set of channels to receive from or send to, +and the corresponding values to send. +Any side effects in that evaluation will occur irrespective of which (if any) +communication operation is selected to proceed. +Expressions on the left-hand side of a RecvStmt with a short variable declaration +or assignment are not yet evaluated. +
  2. + +
  3. +If one or more of the communications can proceed, +a single one that can proceed is chosen via a uniform pseudo-random selection. +Otherwise, if there is a default case, that case is chosen. +If there is no default case, the "select" statement blocks until +at least one of the communications can proceed. +
  4. + +
  5. +Unless the selected case is the default case, the respective communication +operation is executed. +
  6. + +
  7. +If the selected case is a RecvStmt with a short variable declaration or +an assignment, the left-hand side expressions are evaluated and the +received value (or values) are assigned. +
  8. + +
  9. +The statement list of the selected case is executed. +
  10. +
+ +

+Since communication on nil channels can never proceed, +a select with only nil channels and no default case blocks forever. +

+ +
+var a []int
+var c, c1, c2, c3, c4 chan int
+var i1, i2 int
+select {
+case i1 = <-c1:
+	print("received ", i1, " from c1\n")
+case c2 <- i2:
+	print("sent ", i2, " to c2\n")
+case i3, ok := (<-c3):  // same as: i3, ok := <-c3
+	if ok {
+		print("received ", i3, " from c3\n")
+	} else {
+		print("c3 is closed\n")
+	}
+case a[f()] = <-c4:
+	// same as:
+	// case t := <-c4
+	//	a[f()] = t
+default:
+	print("no communication\n")
+}
+
+for {  // send random sequence of bits to c
+	select {
+	case c <- 0:  // note: no statement, no fallthrough, no folding of cases
+	case c <- 1:
+	}
+}
+
+select {}  // block forever
+
+ + +

Return statements

+ +

+A "return" statement in a function F terminates the execution +of F, and optionally provides one or more result values. +Any functions deferred by F +are executed before F returns to its caller. +

+ +
+ReturnStmt = "return" [ ExpressionList ] .
+
+ +

+In a function without a result type, a "return" statement must not +specify any result values. +

+
+func noResult() {
+	return
+}
+
+ +

+There are three ways to return values from a function with a result +type: +

+ +
    +
  1. The return value or values may be explicitly listed + in the "return" statement. Each expression must be single-valued + and assignable + to the corresponding element of the function's result type. +
    +func simpleF() int {
    +	return 2
    +}
    +
    +func complexF1() (re float64, im float64) {
    +	return -7.0, -4.0
    +}
    +
    +
  2. +
  3. The expression list in the "return" statement may be a single + call to a multi-valued function. The effect is as if each value + returned from that function were assigned to a temporary + variable with the type of the respective value, followed by a + "return" statement listing these variables, at which point the + rules of the previous case apply. +
    +func complexF2() (re float64, im float64) {
    +	return complexF1()
    +}
    +
    +
  4. +
  5. The expression list may be empty if the function's result + type specifies names for its result parameters. + The result parameters act as ordinary local variables + and the function may assign values to them as necessary. + The "return" statement returns the values of these variables. +
    +func complexF3() (re float64, im float64) {
    +	re = 7.0
    +	im = 4.0
    +	return
    +}
    +
    +func (devnull) Write(p []byte) (n int, _ error) {
    +	n = len(p)
    +	return
    +}
    +
    +
  6. +
+ +

+Regardless of how they are declared, all the result values are initialized to +the zero values for their type upon entry to the +function. A "return" statement that specifies results sets the result parameters before +any deferred functions are executed. +

+ +

+Implementation restriction: A compiler may disallow an empty expression list +in a "return" statement if a different entity (constant, type, or variable) +with the same name as a result parameter is in +scope at the place of the return. +

+ +
+func f(n int) (res int, err error) {
+	if _, err := f(n-1); err != nil {
+		return  // invalid return statement: err is shadowed
+	}
+	return
+}
+
+ +

Break statements

+ +

+A "break" statement terminates execution of the innermost +"for", +"switch", or +"select" statement +within the same function. +

+ +
+BreakStmt = "break" [ Label ] .
+
+ +

+If there is a label, it must be that of an enclosing +"for", "switch", or "select" statement, +and that is the one whose execution terminates. +

+ +
+OuterLoop:
+	for i = 0; i < n; i++ {
+		for j = 0; j < m; j++ {
+			switch a[i][j] {
+			case nil:
+				state = Error
+				break OuterLoop
+			case item:
+				state = Found
+				break OuterLoop
+			}
+		}
+	}
+
+ +

Continue statements

+ +

+A "continue" statement begins the next iteration of the +innermost enclosing "for" loop +by advancing control to the end of the loop block. +The "for" loop must be within the same function. +

+ +
+ContinueStmt = "continue" [ Label ] .
+
+ +

+If there is a label, it must be that of an enclosing +"for" statement, and that is the one whose execution +advances. +

+ +
+RowLoop:
+	for y, row := range rows {
+		for x, data := range row {
+			if data == endOfRow {
+				continue RowLoop
+			}
+			row[x] = data + bias(x, y)
+		}
+	}
+
+ +

Goto statements

+ +

+A "goto" statement transfers control to the statement with the corresponding label +within the same function. +

+ +
+GotoStmt = "goto" Label .
+
+ +
+goto Error
+
+ +

+Executing the "goto" statement must not cause any variables to come into +scope that were not already in scope at the point of the goto. +For instance, this example: +

+ +
+	goto L  // BAD
+	v := 3
+L:
+
+ +

+is erroneous because the jump to label L skips +the creation of v. +

+ +

+A "goto" statement outside a block cannot jump to a label inside that block. +For instance, this example: +

+ +
+if n%2 == 1 {
+	goto L1
+}
+for n > 0 {
+	f()
+	n--
+L1:
+	f()
+	n--
+}
+
+ +

+is erroneous because the label L1 is inside +the "for" statement's block but the goto is not. +

+ +

Fallthrough statements

+ +

+A "fallthrough" statement transfers control to the first statement of the +next case clause in an expression "switch" statement. +It may be used only as the final non-empty statement in such a clause. +

+ +
+FallthroughStmt = "fallthrough" .
+
+ + +

Defer statements

+ +

+A "defer" statement invokes a function whose execution is deferred +to the moment the surrounding function returns, either because the +surrounding function executed a return statement, +reached the end of its function body, +or because the corresponding goroutine is panicking. +

+ +
+DeferStmt = "defer" Expression .
+
+ +

+The expression must be a function or method call; it cannot be parenthesized. +Calls of built-in functions are restricted as for +expression statements. +

+ +

+Each time a "defer" statement +executes, the function value and parameters to the call are +evaluated as usual +and saved anew but the actual function is not invoked. +Instead, deferred functions are invoked immediately before +the surrounding function returns, in the reverse order +they were deferred. That is, if the surrounding function +returns through an explicit return statement, +deferred functions are executed after any result parameters are set +by that return statement but before the function returns to its caller. +If a deferred function value evaluates +to nil, execution panics +when the function is invoked, not when the "defer" statement is executed. +

+ +

+For instance, if the deferred function is +a function literal and the surrounding +function has named result parameters that +are in scope within the literal, the deferred function may access and modify +the result parameters before they are returned. +If the deferred function has any return values, they are discarded when +the function completes. +(See also the section on handling panics.) +

+ +
+lock(l)
+defer unlock(l)  // unlocking happens before surrounding function returns
+
+// prints 3 2 1 0 before surrounding function returns
+for i := 0; i <= 3; i++ {
+	defer fmt.Print(i)
+}
+
+// f returns 42
+func f() (result int) {
+	defer func() {
+		// result is accessed after it was set to 6 by the return statement
+		result *= 7
+	}()
+	return 6
+}
+
+ +

Built-in functions

+ +

+Built-in functions are +predeclared. +They are called like any other function but some of them +accept a type instead of an expression as the first argument. +

+ +

+The built-in functions do not have standard Go types, +so they can only appear in call expressions; +they cannot be used as function values. +

+ + +

Appending to and copying slices

+ +

+The built-in functions append and copy assist in +common slice operations. +For both functions, the result is independent of whether the memory referenced +by the arguments overlaps. +

+ +

+The variadic function append +appends zero or more values x to a slice s +and returns the resulting slice of the same type as s. +The core type of s must be a slice +of type []E. +The values x are passed to a parameter of type ...E +and the respective parameter +passing rules apply. +As a special case, if the core type of s is []byte, +append also accepts a second argument with core type +bytestring followed by .... +This form appends the bytes of the byte slice or string. +

+ +
+append(s S, x ...E) S  // core type of S is []E
+
+ +

+If the capacity of s is not large enough to fit the additional +values, append allocates a new, sufficiently large underlying +array that fits both the existing slice elements and the additional values. +Otherwise, append re-uses the underlying array. +

+ +
+s0 := []int{0, 0}
+s1 := append(s0, 2)                // append a single element     s1 is []int{0, 0, 2}
+s2 := append(s1, 3, 5, 7)          // append multiple elements    s2 is []int{0, 0, 2, 3, 5, 7}
+s3 := append(s2, s0...)            // append a slice              s3 is []int{0, 0, 2, 3, 5, 7, 0, 0}
+s4 := append(s3[3:6], s3[2:]...)   // append overlapping slice    s4 is []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
+
+var t []interface{}
+t = append(t, 42, 3.1415, "foo")   //                             t is []interface{}{42, 3.1415, "foo"}
+
+var b []byte
+b = append(b, "bar"...)            // append string contents      b is []byte{'b', 'a', 'r' }
+
+ +

+The function copy copies slice elements from +a source src to a destination dst and returns the +number of elements copied. +The core types of both arguments must be slices +with identical element type. +The number of elements copied is the minimum of +len(src) and len(dst). +As a special case, if the destination's core type is []byte, +copy also accepts a source argument with core type + bytestring. +This form copies the bytes from the byte slice or string into the byte slice. +

+ +
+copy(dst, src []T) int
+copy(dst []byte, src string) int
+
+ +

+Examples: +

+ +
+var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
+var s = make([]int, 6)
+var b = make([]byte, 5)
+n1 := copy(s, a[0:])            // n1 == 6, s is []int{0, 1, 2, 3, 4, 5}
+n2 := copy(s, s[2:])            // n2 == 4, s is []int{2, 3, 4, 5, 4, 5}
+n3 := copy(b, "Hello, World!")  // n3 == 5, b is []byte("Hello")
+
+ + +

Clear

+ +

+The built-in function clear takes an argument of map, +slice, or type parameter type, +and deletes or zeroes out all elements +[Go 1.21]. +

+ +
+Call        Argument type     Result
+
+clear(m)    map[K]T           deletes all entries, resulting in an
+                              empty map (len(m) == 0)
+
+clear(s)    []T               sets all elements up to the length of
+                              s to the zero value of T
+
+clear(t)    type parameter    see below
+
+ +

+If the type of the argument to clear is a +type parameter, +all types in its type set must be maps or slices, and clear +performs the operation corresponding to the actual type argument. +

+ +

+If the map or slice is nil, clear is a no-op. +

+ + +

Close

+ +

+For an argument ch with a core type +that is a channel, the built-in function close +records that no more values will be sent on the channel. +It is an error if ch is a receive-only channel. +Sending to or closing a closed channel causes a run-time panic. +Closing the nil channel also causes a run-time panic. +After calling close, and after any previously +sent values have been received, receive operations will return +the zero value for the channel's type without blocking. +The multi-valued receive operation +returns a received value along with an indication of whether the channel is closed. +

+ + +

Manipulating complex numbers

+ +

+Three functions assemble and disassemble complex numbers. +The built-in function complex constructs a complex +value from a floating-point real and imaginary part, while +real and imag +extract the real and imaginary parts of a complex value. +

+ +
+complex(realPart, imaginaryPart floatT) complexT
+real(complexT) floatT
+imag(complexT) floatT
+
+ +

+The type of the arguments and return value correspond. +For complex, the two arguments must be of the same +floating-point type and the return type is the +complex type +with the corresponding floating-point constituents: +complex64 for float32 arguments, and +complex128 for float64 arguments. +If one of the arguments evaluates to an untyped constant, it is first implicitly +converted to the type of the other argument. +If both arguments evaluate to untyped constants, they must be non-complex +numbers or their imaginary parts must be zero, and the return value of +the function is an untyped complex constant. +

+ +

+For real and imag, the argument must be +of complex type, and the return type is the corresponding floating-point +type: float32 for a complex64 argument, and +float64 for a complex128 argument. +If the argument evaluates to an untyped constant, it must be a number, +and the return value of the function is an untyped floating-point constant. +

+ +

+The real and imag functions together form the inverse of +complex, so for a value z of a complex type Z, +z == Z(complex(real(z), imag(z))). +

+ +

+If the operands of these functions are all constants, the return +value is a constant. +

+ +
+var a = complex(2, -2)             // complex128
+const b = complex(1.0, -1.4)       // untyped complex constant 1 - 1.4i
+x := float32(math.Cos(math.Pi/2))  // float32
+var c64 = complex(5, -x)           // complex64
+var s int = complex(1, 0)          // untyped complex constant 1 + 0i can be converted to int
+_ = complex(1, 2<<s)               // illegal: 2 assumes floating-point type, cannot shift
+var rl = real(c64)                 // float32
+var im = imag(a)                   // float64
+const c = imag(b)                  // untyped constant -1.4
+_ = imag(3 << s)                   // illegal: 3 assumes complex type, cannot shift
+
+ +

+Arguments of type parameter type are not permitted. +

+ + +

Deletion of map elements

+ +

+The built-in function delete removes the element with key +k from a map m. The +value k must be assignable +to the key type of m. +

+ +
+delete(m, k)  // remove element m[k] from map m
+
+ +

+If the type of m is a type parameter, +all types in that type set must be maps, and they must all have identical key types. +

+ +

+If the map m is nil or the element m[k] +does not exist, delete is a no-op. +

+ + +

Length and capacity

+ +

+The built-in functions len and cap take arguments +of various types and return a result of type int. +The implementation guarantees that the result always fits into an int. +

+ +
+Call      Argument type    Result
+
+len(s)    string type      string length in bytes
+          [n]T, *[n]T      array length (== n)
+          []T              slice length
+          map[K]T          map length (number of defined keys)
+          chan T           number of elements queued in channel buffer
+          type parameter   see below
+
+cap(s)    [n]T, *[n]T      array length (== n)
+          []T              slice capacity
+          chan T           channel buffer capacity
+          type parameter   see below
+
+ +

+If the argument type is a type parameter P, +the call len(e) (or cap(e) respectively) must be valid for +each type in P's type set. +The result is the length (or capacity, respectively) of the argument whose type +corresponds to the type argument with which P was +instantiated. +

+ +

+The capacity of a slice is the number of elements for which there is +space allocated in the underlying array. +At any time the following relationship holds: +

+ +
+0 <= len(s) <= cap(s)
+
+ +

+The length of a nil slice, map or channel is 0. +The capacity of a nil slice or channel is 0. +

+ +

+The expression len(s) is constant if +s is a string constant. The expressions len(s) and +cap(s) are constants if the type of s is an array +or pointer to an array and the expression s does not contain +channel receives or (non-constant) +function calls; in this case s is not evaluated. +Otherwise, invocations of len and cap are not +constant and s is evaluated. +

+ +
+const (
+	c1 = imag(2i)                    // imag(2i) = 2.0 is a constant
+	c2 = len([10]float64{2})         // [10]float64{2} contains no function calls
+	c3 = len([10]float64{c1})        // [10]float64{c1} contains no function calls
+	c4 = len([10]float64{imag(2i)})  // imag(2i) is a constant and no function call is issued
+	c5 = len([10]float64{imag(z)})   // invalid: imag(z) is a (non-constant) function call
+)
+var z complex128
+
+ + +

Making slices, maps and channels

+ +

+The built-in function make takes a type T, +optionally followed by a type-specific list of expressions. +The core type of T must +be a slice, map or channel. +It returns a value of type T (not *T). +The memory is initialized as described in the section on +initial values. +

+ +
+Call             Core type    Result
+
+make(T, n)       slice        slice of type T with length n and capacity n
+make(T, n, m)    slice        slice of type T with length n and capacity m
+
+make(T)          map          map of type T
+make(T, n)       map          map of type T with initial space for approximately n elements
+
+make(T)          channel      unbuffered channel of type T
+make(T, n)       channel      buffered channel of type T, buffer size n
+
+ +

+Each of the size arguments n and m must be of integer type, +have a type set containing only integer types, +or be an untyped constant. +A constant size argument must be non-negative and representable +by a value of type int; if it is an untyped constant it is given type int. +If both n and m are provided and are constant, then +n must be no larger than m. +For slices and channels, if n is negative or larger than m at run time, +a run-time panic occurs. +

+ +
+s := make([]int, 10, 100)       // slice with len(s) == 10, cap(s) == 100
+s := make([]int, 1e3)           // slice with len(s) == cap(s) == 1000
+s := make([]int, 1<<63)         // illegal: len(s) is not representable by a value of type int
+s := make([]int, 10, 0)         // illegal: len(s) > cap(s)
+c := make(chan int, 10)         // channel with a buffer size of 10
+m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
+
+ +

+Calling make with a map type and size hint n will +create a map with initial space to hold n map elements. +The precise behavior is implementation-dependent. +

+ + +

Min and max

+ +

+The built-in functions min and max compute the +smallest—or largest, respectively—value of a fixed number of +arguments of ordered types. +There must be at least one argument +[Go 1.21]. +

+ +

+The same type rules as for operators apply: +for ordered arguments x and +y, min(x, y) is valid if x + y is valid, +and the type of min(x, y) is the type of x + y +(and similarly for max). +If all arguments are constant, the result is constant. +

+ +
+var x, y int
+m := min(x)                 // m == x
+m := min(x, y)              // m is the smaller of x and y
+m := max(x, y, 10)          // m is the larger of x and y but at least 10
+c := max(1, 2.0, 10)        // c == 10.0 (floating-point kind)
+f := max(0, float32(x))     // type of f is float32
+var s []string
+_ = min(s...)               // invalid: slice arguments are not permitted
+t := max("", "foo", "bar")  // t == "foo" (string kind)
+
+ +

+For numeric arguments, assuming all NaNs are equal, min and max are +commutative and associative: +

+ +
+min(x, y)    == min(y, x)
+min(x, y, z) == min(min(x, y), z) == min(x, min(y, z))
+
+ +

+For floating-point arguments negative zero, NaN, and infinity the following rules apply: +

+ +
+   x        y    min(x, y)    max(x, y)
+
+  -0.0    0.0         -0.0          0.0    // negative zero is smaller than (non-negative) zero
+  -Inf      y         -Inf            y    // negative infinity is smaller than any other number
+  +Inf      y            y         +Inf    // positive infinity is larger than any other number
+   NaN      y          NaN          NaN    // if any argument is a NaN, the result is a NaN
+
+ +

+For string arguments the result for min is the first argument +with the smallest (or for max, largest) value, +compared lexically byte-wise: +

+ +
+min(x, y)    == if x <= y then x else y
+min(x, y, z) == min(min(x, y), z)
+
+ +

Allocation

+ +

+The built-in function new takes a type T, +allocates storage for a variable of that type +at run time, and returns a value of type *T +pointing to it. +The variable is initialized as described in the section on +initial values. +

+ +
+new(T)
+
+ +

+For instance +

+ +
+type S struct { a int; b float64 }
+new(S)
+
+ +

+allocates storage for a variable of type S, +initializes it (a=0, b=0.0), +and returns a value of type *S containing the address +of the location. +

+ + +

Handling panics

+ +

Two built-in functions, panic and recover, +assist in reporting and handling run-time panics +and program-defined error conditions. +

+ +
+func panic(interface{})
+func recover() interface{}
+
+ +

+While executing a function F, +an explicit call to panic or a run-time panic +terminates the execution of F. +Any functions deferred by F +are then executed as usual. +Next, any deferred functions run by F's caller are run, +and so on up to any deferred by the top-level function in the executing goroutine. +At that point, the program is terminated and the error +condition is reported, including the value of the argument to panic. +This termination sequence is called panicking. +

+ +
+panic(42)
+panic("unreachable")
+panic(Error("cannot parse"))
+
+ +

+The recover function allows a program to manage behavior +of a panicking goroutine. +Suppose a function G defers a function D that calls +recover and a panic occurs in a function on the same goroutine in which G +is executing. +When the running of deferred functions reaches D, +the return value of D's call to recover will be the value passed to the call of panic. +If D returns normally, without starting a new +panic, the panicking sequence stops. In that case, +the state of functions called between G and the call to panic +is discarded, and normal execution resumes. +Any functions deferred by G before D are then run and G's +execution terminates by returning to its caller. +

+ +

+The return value of recover is nil when the +goroutine is not panicking or recover was not called directly by a deferred function. +Conversely, if a goroutine is panicking and recover was called directly by a deferred function, +the return value of recover is guaranteed not to be nil. +To ensure this, calling panic with a nil interface value (or an untyped nil) +causes a run-time panic. +

+ +

+The protect function in the example below invokes +the function argument g and protects callers from +run-time panics raised by g. +

+ +
+func protect(g func()) {
+	defer func() {
+		log.Println("done")  // Println executes normally even if there is a panic
+		if x := recover(); x != nil {
+			log.Printf("run time panic: %v", x)
+		}
+	}()
+	log.Println("start")
+	g()
+}
+
+ + +

Bootstrapping

+ +

+Current implementations provide several built-in functions useful during +bootstrapping. These functions are documented for completeness but are not +guaranteed to stay in the language. They do not return a result. +

+ +
+Function   Behavior
+
+print      prints all arguments; formatting of arguments is implementation-specific
+println    like print but prints spaces between arguments and a newline at the end
+
+ +

+Implementation restriction: print and println need not +accept arbitrary argument types, but printing of boolean, numeric, and string +types must be supported. +

+ + +

Packages

+ +

+Go programs are constructed by linking together packages. +A package in turn is constructed from one or more source files +that together declare constants, types, variables and functions +belonging to the package and which are accessible in all files +of the same package. Those elements may be +exported and used in another package. +

+ +

Source file organization

+ +

+Each source file consists of a package clause defining the package +to which it belongs, followed by a possibly empty set of import +declarations that declare packages whose contents it wishes to use, +followed by a possibly empty set of declarations of functions, +types, variables, and constants. +

+ +
+SourceFile       = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } .
+
+ +

Package clause

+ +

+A package clause begins each source file and defines the package +to which the file belongs. +

+ +
+PackageClause  = "package" PackageName .
+PackageName    = identifier .
+
+ +

+The PackageName must not be the blank identifier. +

+ +
+package math
+
+ +

+A set of files sharing the same PackageName form the implementation of a package. +An implementation may require that all source files for a package inhabit the same directory. +

+ +

Import declarations

+ +

+An import declaration states that the source file containing the declaration +depends on functionality of the imported package +(§Program initialization and execution) +and enables access to exported identifiers +of that package. +The import names an identifier (PackageName) to be used for access and an ImportPath +that specifies the package to be imported. +

+ +
+ImportDecl       = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) .
+ImportSpec       = [ "." | PackageName ] ImportPath .
+ImportPath       = string_lit .
+
+ +

+The PackageName is used in qualified identifiers +to access exported identifiers of the package within the importing source file. +It is declared in the file block. +If the PackageName is omitted, it defaults to the identifier specified in the +package clause of the imported package. +If an explicit period (.) appears instead of a name, all the +package's exported identifiers declared in that package's +package block will be declared in the importing source +file's file block and must be accessed without a qualifier. +

+ +

+The interpretation of the ImportPath is implementation-dependent but +it is typically a substring of the full file name of the compiled +package and may be relative to a repository of installed packages. +

+ +

+Implementation restriction: A compiler may restrict ImportPaths to +non-empty strings using only characters belonging to +Unicode's +L, M, N, P, and S general categories (the Graphic characters without +spaces) and may also exclude the characters +!"#$%&'()*,:;<=>?[\]^`{|} +and the Unicode replacement character U+FFFD. +

+ +

+Consider a compiled a package containing the package clause +package math, which exports function Sin, and +installed the compiled package in the file identified by +"lib/math". +This table illustrates how Sin is accessed in files +that import the package after the +various types of import declaration. +

+ +
+Import declaration          Local name of Sin
+
+import   "lib/math"         math.Sin
+import m "lib/math"         m.Sin
+import . "lib/math"         Sin
+
+ +

+An import declaration declares a dependency relation between +the importing and imported package. +It is illegal for a package to import itself, directly or indirectly, +or to directly import a package without +referring to any of its exported identifiers. To import a package solely for +its side-effects (initialization), use the blank +identifier as explicit package name: +

+ +
+import _ "lib/math"
+
+ + +

An example package

+ +

+Here is a complete Go package that implements a concurrent prime sieve. +

+ +
+package main
+
+import "fmt"
+
+// Send the sequence 2, 3, 4, … to channel 'ch'.
+func generate(ch chan<- int) {
+	for i := 2; ; i++ {
+		ch <- i  // Send 'i' to channel 'ch'.
+	}
+}
+
+// Copy the values from channel 'src' to channel 'dst',
+// removing those divisible by 'prime'.
+func filter(src <-chan int, dst chan<- int, prime int) {
+	for i := range src {  // Loop over values received from 'src'.
+		if i%prime != 0 {
+			dst <- i  // Send 'i' to channel 'dst'.
+		}
+	}
+}
+
+// The prime sieve: Daisy-chain filter processes together.
+func sieve() {
+	ch := make(chan int)  // Create a new channel.
+	go generate(ch)       // Start generate() as a subprocess.
+	for {
+		prime := <-ch
+		fmt.Print(prime, "\n")
+		ch1 := make(chan int)
+		go filter(ch, ch1, prime)
+		ch = ch1
+	}
+}
+
+func main() {
+	sieve()
+}
+
+ +

Program initialization and execution

+ +

The zero value

+

+When storage is allocated for a variable, +either through a declaration or a call of new, or when +a new value is created, either through a composite literal or a call +of make, +and no explicit initialization is provided, the variable or value is +given a default value. Each element of such a variable or value is +set to the zero value for its type: false for booleans, +0 for numeric types, "" +for strings, and nil for pointers, functions, interfaces, slices, channels, and maps. +This initialization is done recursively, so for instance each element of an +array of structs will have its fields zeroed if no value is specified. +

+

+These two simple declarations are equivalent: +

+ +
+var i int
+var i int = 0
+
+ +

+After +

+ +
+type T struct { i int; f float64; next *T }
+t := new(T)
+
+ +

+the following holds: +

+ +
+t.i == 0
+t.f == 0.0
+t.next == nil
+
+ +

+The same would also be true after +

+ +
+var t T
+
+ +

Package initialization

+ +

+Within a package, package-level variable initialization proceeds stepwise, +with each step selecting the variable earliest in declaration order +which has no dependencies on uninitialized variables. +

+ +

+More precisely, a package-level variable is considered ready for +initialization if it is not yet initialized and either has +no initialization expression or +its initialization expression has no dependencies on uninitialized variables. +Initialization proceeds by repeatedly initializing the next package-level +variable that is earliest in declaration order and ready for initialization, +until there are no variables ready for initialization. +

+ +

+If any variables are still uninitialized when this +process ends, those variables are part of one or more initialization cycles, +and the program is not valid. +

+ +

+Multiple variables on the left-hand side of a variable declaration initialized +by single (multi-valued) expression on the right-hand side are initialized +together: If any of the variables on the left-hand side is initialized, all +those variables are initialized in the same step. +

+ +
+var x = a
+var a, b = f() // a and b are initialized together, before x is initialized
+
+ +

+For the purpose of package initialization, blank +variables are treated like any other variables in declarations. +

+ +

+The declaration order of variables declared in multiple files is determined +by the order in which the files are presented to the compiler: Variables +declared in the first file are declared before any of the variables declared +in the second file, and so on. +To ensure reproducible initialization behavior, build systems are encouraged +to present multiple files belonging to the same package in lexical file name +order to a compiler. +

+ +

+Dependency analysis does not rely on the actual values of the +variables, only on lexical references to them in the source, +analyzed transitively. For instance, if a variable x's +initialization expression refers to a function whose body refers to +variable y then x depends on y. +Specifically: +

+ +
    +
  • +A reference to a variable or function is an identifier denoting that +variable or function. +
  • + +
  • +A reference to a method m is a +method value or +method expression of the form +t.m, where the (static) type of t is +not an interface type, and the method m is in the +method set of t. +It is immaterial whether the resulting function value +t.m is invoked. +
  • + +
  • +A variable, function, or method x depends on a variable +y if x's initialization expression or body +(for functions and methods) contains a reference to y +or to a function or method that depends on y. +
  • +
+ +

+For example, given the declarations +

+ +
+var (
+	a = c + b  // == 9
+	b = f()    // == 4
+	c = f()    // == 5
+	d = 3      // == 5 after initialization has finished
+)
+
+func f() int {
+	d++
+	return d
+}
+
+ +

+the initialization order is d, b, c, a. +Note that the order of subexpressions in initialization expressions is irrelevant: +a = c + b and a = b + c result in the same initialization +order in this example. +

+ +

+Dependency analysis is performed per package; only references referring +to variables, functions, and (non-interface) methods declared in the current +package are considered. If other, hidden, data dependencies exists between +variables, the initialization order between those variables is unspecified. +

+ +

+For instance, given the declarations +

+ +
+var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
+var _ = sideEffect()  // unrelated to x, a, or b
+var a = b
+var b = 42
+
+type I interface      { ab() []int }
+type T struct{}
+func (T) ab() []int   { return []int{a, b} }
+
+ +

+the variable a will be initialized after b but +whether x is initialized before b, between +b and a, or after a, and +thus also the moment at which sideEffect() is called (before +or after x is initialized) is not specified. +

+ +

+Variables may also be initialized using functions named init +declared in the package block, with no arguments and no result parameters. +

+ +
+func init() { … }
+
+ +

+Multiple such functions may be defined per package, even within a single +source file. In the package block, the init identifier can +be used only to declare init functions, yet the identifier +itself is not declared. Thus +init functions cannot be referred to from anywhere +in a program. +

+ +

+The entire package is initialized by assigning initial values +to all its package-level variables followed by calling +all init functions in the order they appear +in the source, possibly in multiple files, as presented +to the compiler. +

+ +

Program initialization

+ +

+The packages of a complete program are initialized stepwise, one package at a time. +If a package has imports, the imported packages are initialized +before initializing the package itself. If multiple packages import +a package, the imported package will be initialized only once. +The importing of packages, by construction, guarantees that there +can be no cyclic initialization dependencies. +More precisely: +

+ +

+Given the list of all packages, sorted by import path, in each step the first +uninitialized package in the list for which all imported packages (if any) are +already initialized is initialized. +This step is repeated until all packages are initialized. +

+ +

+Package initialization—variable initialization and the invocation of +init functions—happens in a single goroutine, +sequentially, one package at a time. +An init function may launch other goroutines, which can run +concurrently with the initialization code. However, initialization +always sequences +the init functions: it will not invoke the next one +until the previous one has returned. +

+ +

Program execution

+

+A complete program is created by linking a single, unimported package +called the main package with all the packages it imports, transitively. +The main package must +have package name main and +declare a function main that takes no +arguments and returns no value. +

+ +
+func main() { … }
+
+ +

+Program execution begins by initializing the program +and then invoking the function main in package main. +When that function invocation returns, the program exits. +It does not wait for other (non-main) goroutines to complete. +

+ +

Errors

+ +

+The predeclared type error is defined as +

+ +
+type error interface {
+	Error() string
+}
+
+ +

+It is the conventional interface for representing an error condition, +with the nil value representing no error. +For instance, a function to read data from a file might be defined: +

+ +
+func Read(f *File, b []byte) (n int, err error)
+
+ +

Run-time panics

+ +

+Execution errors such as attempting to index an array out +of bounds trigger a run-time panic equivalent to a call of +the built-in function panic +with a value of the implementation-defined interface type runtime.Error. +That type satisfies the predeclared interface type +error. +The exact error values that +represent distinct run-time error conditions are unspecified. +

+ +
+package runtime
+
+type Error interface {
+	error
+	// and perhaps other methods
+}
+
+ +

System considerations

+ +

Package unsafe

+ +

+The built-in package unsafe, known to the compiler +and accessible through the import path "unsafe", +provides facilities for low-level programming including operations +that violate the type system. A package using unsafe +must be vetted manually for type safety and may not be portable. +The package provides the following interface: +

+ +
+package unsafe
+
+type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type
+type Pointer *ArbitraryType
+
+func Alignof(variable ArbitraryType) uintptr
+func Offsetof(selector ArbitraryType) uintptr
+func Sizeof(variable ArbitraryType) uintptr
+
+type IntegerType int  // shorthand for an integer type; it is not a real type
+func Add(ptr Pointer, len IntegerType) Pointer
+func Slice(ptr *ArbitraryType, len IntegerType) []ArbitraryType
+func SliceData(slice []ArbitraryType) *ArbitraryType
+func String(ptr *byte, len IntegerType) string
+func StringData(str string) *byte
+
+ + + +

+A Pointer is a pointer type but a Pointer +value may not be dereferenced. +Any pointer or value of core type uintptr can be +converted to a type of core type Pointer and vice versa. +The effect of converting between Pointer and uintptr is implementation-defined. +

+ +
+var f float64
+bits = *(*uint64)(unsafe.Pointer(&f))
+
+type ptr unsafe.Pointer
+bits = *(*uint64)(ptr(&f))
+
+func f[P ~*B, B any](p P) uintptr {
+	return uintptr(unsafe.Pointer(p))
+}
+
+var p ptr = nil
+
+ +

+The functions Alignof and Sizeof take an expression x +of any type and return the alignment or size, respectively, of a hypothetical variable v +as if v was declared via var v = x. +

+

+The function Offsetof takes a (possibly parenthesized) selector +s.f, denoting a field f of the struct denoted by s +or *s, and returns the field offset in bytes relative to the struct's address. +If f is an embedded field, it must be reachable +without pointer indirections through fields of the struct. +For a struct s with field f: +

+ +
+uintptr(unsafe.Pointer(&s)) + unsafe.Offsetof(s.f) == uintptr(unsafe.Pointer(&s.f))
+
+ +

+Computer architectures may require memory addresses to be aligned; +that is, for addresses of a variable to be a multiple of a factor, +the variable's type's alignment. The function Alignof +takes an expression denoting a variable of any type and returns the +alignment of the (type of the) variable in bytes. For a variable +x: +

+ +
+uintptr(unsafe.Pointer(&x)) % unsafe.Alignof(x) == 0
+
+ +

+A (variable of) type T has variable size if T +is a type parameter, or if it is an +array or struct type containing elements +or fields of variable size. Otherwise the size is constant. +Calls to Alignof, Offsetof, and Sizeof +are compile-time constant expressions of +type uintptr if their arguments (or the struct s in +the selector expression s.f for Offsetof) are types +of constant size. +

+ +

+The function Add adds len to ptr +and returns the updated pointer unsafe.Pointer(uintptr(ptr) + uintptr(len)) +[Go 1.17]. +The len argument must be of integer type or an untyped constant. +A constant len argument must be representable by a value of type int; +if it is an untyped constant it is given type int. +The rules for valid uses of Pointer still apply. +

+ +

+The function Slice returns a slice whose underlying array starts at ptr +and whose length and capacity are len. +Slice(ptr, len) is equivalent to +

+ +
+(*[len]ArbitraryType)(unsafe.Pointer(ptr))[:]
+
+ +

+except that, as a special case, if ptr +is nil and len is zero, +Slice returns nil +[Go 1.17]. +

+ +

+The len argument must be of integer type or an untyped constant. +A constant len argument must be non-negative and representable by a value of type int; +if it is an untyped constant it is given type int. +At run time, if len is negative, +or if ptr is nil and len is not zero, +a run-time panic occurs +[Go 1.17]. +

+ +

+The function SliceData returns a pointer to the underlying array of the slice argument. +If the slice's capacity cap(slice) is not zero, that pointer is &slice[:1][0]. +If slice is nil, the result is nil. +Otherwise it is a non-nil pointer to an unspecified memory address +[Go 1.20]. +

+ +

+The function String returns a string value whose underlying bytes start at +ptr and whose length is len. +The same requirements apply to the ptr and len argument as in the function +Slice. If len is zero, the result is the empty string "". +Since Go strings are immutable, the bytes passed to String must not be modified afterwards. +[Go 1.20] +

+ +

+The function StringData returns a pointer to the underlying bytes of the str argument. +For an empty string the return value is unspecified, and may be nil. +Since Go strings are immutable, the bytes returned by StringData must not be modified +[Go 1.20]. +

+ +

Size and alignment guarantees

+ +

+For the numeric types, the following sizes are guaranteed: +

+ +
+type                                 size in bytes
+
+byte, uint8, int8                     1
+uint16, int16                         2
+uint32, int32, float32                4
+uint64, int64, float64, complex64     8
+complex128                           16
+
+ +

+The following minimal alignment properties are guaranteed: +

+
    +
  1. For a variable x of any type: unsafe.Alignof(x) is at least 1. +
  2. + +
  3. For a variable x of struct type: unsafe.Alignof(x) is the largest of + all the values unsafe.Alignof(x.f) for each field f of x, but at least 1. +
  4. + +
  5. For a variable x of array type: unsafe.Alignof(x) is the same as + the alignment of a variable of the array's element type. +
  6. +
+ +

+A struct or array type has size zero if it contains no fields (or elements, respectively) that have a size greater than zero. Two distinct zero-size variables may have the same address in memory. +

+ +

Appendix

+ +

Language versions

+ +

+The Go 1 compatibility guarantee ensures that +programs written to the Go 1 specification will continue to compile and run +correctly, unchanged, over the lifetime of that specification. +More generally, as adjustments are made and features added to the language, +the compatibility guarantee ensures that a Go program that works with a +specific Go language version will continue to work with any subsequent version. +

+ +

+For instance, the ability to use the prefix 0b for binary +integer literals was introduced with Go 1.13, indicated +by [Go 1.13] in the section on +integer literals. +Source code containing an integer literal such as 0b1011 +will be rejected if the implied or required language version used by +the compiler is older than Go 1.13. +

+ +

+The following table describes the minimum language version required for +features introduced after Go 1. +

+ +

Go 1.9

+ + +

Go 1.13

+
    +
  • +Integer literals may use the prefixes 0b, 0B, 0o, +and 0O for binary, and octal literals, respectively. +
  • +
  • +Hexadecimal floating-point literals may be written using the prefixes +0x and 0X. +
  • +
  • +The imaginary suffix i may be used with any (binary, decimal, hexadecimal) +integer or floating-point literal, not just decimal literals. +
  • +
  • +The digits of any number literal may be separated (grouped) +using underscores _. +
  • +
  • +The shift count in a shift operation may be a signed integer type. +
  • +
+ +

Go 1.14

+
    +
  • +Emdedding a method more than once through different embedded interfaces +is not an error. +
  • +
+ +

Go 1.17

+
    +
  • +A slice may be converted to an array pointer if the slice and array element +types match, and the array is not longer than the slice. +
  • +
  • +The built-in package unsafe includes the new functions +Add and Slice. +
  • +
+ +

Go 1.18

+

+The 1.18 release adds polymorphic functions and types ("generics") to the language. +Specifically: +

+ + +

Go 1.20

+
    +
  • +A slice may be converted to an array if the slice and array element +types match and the array is not longer than the slice. +
  • +
  • +The built-in package unsafe includes the new functions +SliceData, String, and StringData. +
  • +
  • +Comparable types (such as ordinary interfaces) may satisfy +comparable constraints, even if the type arguments are not strictly comparable. +
  • +
+ +

Go 1.21

+
    +
  • +The set of predeclared functions includes the new functions +min, max, and clear. +
  • +
  • +Type inference uses the types of interface methods for inference. +It also infers type arguments for generic functions assigned to variables or +passed as arguments to other (possibly generic) functions. +
  • +
+ +

Go 1.22

+
    +
  • +In a "for" statement, each iteration has its own set of iteration +variables rather than sharing the same variables in each iteration. +
  • +
  • +A "for" statement with "range" clause may iterate over +integer values from zero to an upper limit. +
  • +
+ +

Type unification rules

+ +

+The type unification rules describe if and how two types unify. +The precise details are relevant for Go implementations, +affect the specifics of error messages (such as whether +a compiler reports a type inference or other error), +and may explain why type inference fails in unusual code situations. +But by and large these rules can be ignored when writing Go code: +type inference is designed to mostly "work as expected", +and the unification rules are fine-tuned accordingly. +

+ +

+Type unification is controlled by a matching mode, which may +be exact or loose. +As unification recursively descends a composite type structure, +the matching mode used for elements of the type, the element matching mode, +remains the same as the matching mode except when two types are unified for +assignability (A): +in this case, the matching mode is loose at the top level but +then changes to exact for element types, reflecting the fact +that types don't have to be identical to be assignable. +

+ +

+Two types that are not bound type parameters unify exactly if any of +following conditions is true: +

+ +
    +
  • + Both types are identical. +
  • +
  • + Both types have identical structure and their element types + unify exactly. +
  • +
  • + Exactly one type is an unbound + type parameter with a core type, + and that core type unifies with the other type per the + unification rules for A + (loose unification at the top level and exact unification + for element types). +
  • +
+ +

+If both types are bound type parameters, they unify per the given +matching modes if: +

+ +
    +
  • + Both type parameters are identical. +
  • +
  • + At most one of the type parameters has a known type argument. + In this case, the type parameters are joined: + they both stand for the same type argument. + If neither type parameter has a known type argument yet, + a future type argument inferred for one the type parameters + is simultaneously inferred for both of them. +
  • +
  • + Both type parameters have a known type argument + and the type arguments unify per the given matching modes. +
  • +
+ +

+A single bound type parameter P and another type T unify +per the given matching modes if: +

+ +
    +
  • + P doesn't have a known type argument. + In this case, T is inferred as the type argument for P. +
  • +
  • + P does have a known type argument A, + A and T unify per the given matching modes, + and one of the following conditions is true: +
      +
    • + Both A and T are interface types: + In this case, if both A and T are + also defined types, + they must be identical. + Otherwise, if neither of them is a defined type, they must + have the same number of methods + (unification of A and T already + established that the methods match). +
    • +
    • + Neither A nor T are interface types: + In this case, if T is a defined type, T + replaces A as the inferred type argument for P. +
    • +
    +
  • +
+ +

+Finally, two types that are not bound type parameters unify loosely +(and per the element matching mode) if: +

+ +
    +
  • + Both types unify exactly. +
  • +
  • + One type is a defined type, + the other type is a type literal, but not an interface, + and their underlying types unify per the element matching mode. +
  • +
  • + Both types are interfaces (but not type parameters) with + identical type terms, + both or neither embed the predeclared type + comparable, + corresponding method types unify exactly, + and the method set of one of the interfaces is a subset of + the method set of the other interface. +
  • +
  • + Only one type is an interface (but not a type parameter), + corresponding methods of the two types unify per the element matching mode, + and the method set of the interface is a subset of + the method set of the other type. +
  • +
  • + Both types have the same structure and their element types + unify per the element matching mode. +
  • +
diff --git a/platform/dbops/binaries/go/go/doc/godebug.md b/platform/dbops/binaries/go/go/doc/godebug.md new file mode 100644 index 0000000000000000000000000000000000000000..fb3f32f44249077fc0ab19084306bff9deb16599 --- /dev/null +++ b/platform/dbops/binaries/go/go/doc/godebug.md @@ -0,0 +1,280 @@ +--- +title: "Go, Backwards Compatibility, and GODEBUG" +layout: article +--- + + + +## Introduction {#intro} + +Go's emphasis on backwards compatibility is one of its key strengths. +There are, however, times when we cannot maintain complete compatibility. +If code depends on buggy (including insecure) behavior, +then fixing the bug will break that code. +New features can also have similar impacts: +enabling the HTTP/2 use by the HTTP client broke programs +connecting to servers with buggy HTTP/2 implementations. +These kinds of changes are unavoidable and +[permitted by the Go 1 compatibility rules](/doc/go1compat). +Even so, Go provides a mechanism called GODEBUG to +reduce the impact such changes have on Go developers +using newer toolchains to compile old code. + +A GODEBUG setting is a `key=value` pair +that controls the execution of certain parts of a Go program. +The environment variable `GODEBUG` +can hold a comma-separated list of these settings. +For example, if a Go program is running in an environment that contains + + GODEBUG=http2client=0,http2server=0 + +then that Go program will disable the use of HTTP/2 by default in both +the HTTP client and the HTTP server. +It is also possible to set the default `GODEBUG` for a given program +(discussed below). + +When preparing any change that is permitted by Go 1 compatibility +but may nonetheless break some existing programs, +we first engineer the change to keep as many existing programs working as possible. +For the remaining programs, +we define a new GODEBUG setting that +allows individual programs to opt back in to the old behavior. +A GODEBUG setting may not be added if doing so is infeasible, +but that should be extremely rare. + +GODEBUG settings added for compatibility will be maintained +for a minimum of two years (four Go releases). +Some, such as `http2client` and `http2server`, +will be maintained much longer, even indefinitely. + +When possible, each GODEBUG setting has an associated +[runtime/metrics](/pkg/runtime/metrics/) counter +named `/godebug/non-default-behavior/:events` +that counts the number of times a particular program's +behavior has changed based on a non-default value +for that setting. +For example, when `GODEBUG=http2client=0` is set, +`/godebug/non-default-behavior/http2client:events` +counts the number of HTTP transports that the program +has configured without HTTP/2 support. + +## Default GODEBUG Values {#default} + +When a GODEBUG setting is not listed in the environment variable, +its value is derived from three sources: +the defaults for the Go toolchain used to build the program, +amended to match the Go version listed in `go.mod`, +and then overridden by explicit `//go:debug` lines in the program. + +The [GODEBUG History](#history) gives the exact defaults for each Go toolchain version. +For example, Go 1.21 introduces the `panicnil` setting, +controlling whether `panic(nil)` is allowed; +it defaults to `panicnil=0`, making `panic(nil)` a run-time error. +Using `panicnil=1` restores the behavior of Go 1.20 and earlier. + +When compiling a work module or workspace that declares +an older Go version, the Go toolchain amends its defaults +to match that older Go version as closely as possible. +For example, when a Go 1.21 toolchain compiles a program, +if the work module's `go.mod` or the workspace's `go.work` +says `go` `1.20`, then the program defaults to `panicnil=1`, +matching Go 1.20 instead of Go 1.21. + +Because this method of setting GODEBUG defaults was introduced only in Go 1.21, +programs listing versions of Go earlier than Go 1.20 are configured to match Go 1.20, +not the older version. + +To override these defaults, a main package's source files +can include one or more `//go:debug` directives at the top of the file +(preceding the `package` statement). +Continuing the `panicnil` example, if the module or workspace is updated +to say `go` `1.21`, the program can opt back into the old `panic(nil)` +behavior by including this directive: + + //go:debug panicnil=1 + +Starting in Go 1.21, the Go toolchain treats a `//go:debug` directive +with an unrecognized GODEBUG setting as an invalid program. +Programs with more than one `//go:debug` line for a given setting +are also treated as invalid. +(Older toolchains ignore `//go:debug` directives entirely.) + +The defaults that will be compiled into a main package +are reported by the command: + +{{raw ` + go list -f '{{.DefaultGODEBUG}}' my/main/package +`}} + +Only differences from the base Go toolchain defaults are reported. + +When testing a package, `//go:debug` lines in the `*_test.go` +files are treated as directives for the test's main package. +In any other context, `//go:debug` lines are ignored by the toolchain; +`go` `vet` reports such lines as misplaced. + +## GODEBUG History {#history} + +This section documents the GODEBUG settings introduced and removed in each major Go release +for compatibility reasons. +Packages or programs may define additional settings for internal debugging purposes; +for example, +see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables) +and the [go command documentation](/cmd/go#hdr-Build_and_test_caching). + +### Go 1.22 + +Go 1.22 adds a configurable limit to control the maximum acceptable RSA key size +that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake). +The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid +denial of service attacks, this setting and default was backported to Go +1.19.13, Go 1.20.8, and Go 1.21.1. + +Go 1.22 made it an error for a request or response read by a net/http +client or server to have an empty Content-Length header. +This behavior is controlled by the `httplaxcontentlength` setting. + +Go 1.22 changed the behavior of ServeMux to accept extended +patterns and unescape both patterns and request paths by segment. +This behavior can be controlled by the +[`httpmuxgo121` setting](/pkg/net/http/#ServeMux). + +Go 1.22 added the [Alias type](/pkg/go/types#Alias) to [go/types](/pkg/go/types) +for the explicit representation of [type aliases](/ref/spec#Type_declarations). +Whether the type checker produces `Alias` types or not is controlled by the +[`gotypesalias` setting](/pkg/go/types#Alias). +For Go 1.22 it defaults to `gotypesalias=0`. +For Go 1.23, `gotypealias=1` will become the default. +This setting will be removed in a future release, Go 1.24 at the earliest. + +Go 1.22 changed the default minimum TLS version supported by both servers +and clients to TLS 1.2. The default can be reverted to TLS 1.0 using the +[`tls10server` setting](/pkg/crypto/tls/#Config). + +Go 1.22 changed the default TLS cipher suites used by clients and servers when +not explicitly configured, removing the cipher suites which used RSA based key +exchange. The default can be revert using the [`tlsrsakex` setting](/pkg/crypto/tls/#Config). + +Go 1.22 disabled +[`ConnectionState.ExportKeyingMaterial`](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial) +when the connection supports neither TLS 1.3 nor Extended Master Secret +(implemented in Go 1.21). It can be reenabled with the [`tlsunsafeekm` +setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial). + +Go 1.22 changed how the runtime interacts with transparent huge pages on Linux. +In particular, a common default Linux kernel configuration can result in +significant memory overheads, and Go 1.22 no longer works around this default. +To work around this issue without adjusting kernel settings, transparent huge +pages can be disabled for Go memory with the +[`disablethp` setting](/pkg/runtime#hdr-Environment_Variable). +This behavior was backported to Go 1.21.1, but the setting is only available +starting with Go 1.21.6. +This setting may be removed in a future release, and users impacted by this issue +should adjust their Linux configuration according to the recommendations in the +[GC guide](/doc/gc-guide#Linux_transparent_huge_pages), or switch to a Linux +distribution that disables transparent huge pages altogether. + +Go 1.22 added contention on runtime-internal locks to the [`mutex` +profile](/pkg/runtime/pprof#Profile). Contention on these locks is always +reported at `runtime._LostContendedRuntimeLock`. Complete stack traces of +runtime locks can be enabled with the [`runtimecontentionstacks` +setting](/pkg/runtime#hdr-Environment_Variable). These stack traces have +non-standard semantics, see setting documentation for details. + +Go 1.22 added a new [`crypto/x509.Certificate`](/pkg/crypto/x509/#Certificate) +field, [`Policies`](/pkg/crypto/x509/#Certificate.Policies), which supports +certificate policy OIDs with components larger than 31 bits. By default this +field is only used during parsing, when it is populated with policy OIDs, but +not used during marshaling. It can be used to marshal these larger OIDs, instead +of the existing PolicyIdentifiers field, by using the +[`x509usepolicies` setting.](/pkg/crypto/x509/#CreateCertificate). + + +### Go 1.21 + +Go 1.21 made it a run-time error to call `panic` with a nil interface value, +controlled by the [`panicnil` setting](/pkg/builtin/#panic). + +Go 1.21 made it an error for html/template actions to appear inside of an ECMAScript 6 +template literal, controlled by the +[`jstmpllitinterp` setting](/pkg/html/template#hdr-Security_Model). +This behavior was backported to Go 1.19.8+ and Go 1.20.3+. + +Go 1.21 introduced a limit on the maximum number of MIME headers and multipart +forms, controlled by the +[`multipartmaxheaders` and `multipartmaxparts` settings](/pkg/mime/multipart#hdr-Limits) +respectively. +This behavior was backported to Go 1.19.8+ and Go 1.20.3+. + +Go 1.21 adds the support of Multipath TCP but it is only used if the application +explicitly asked for it. This behavior can be controlled by the +[`multipathtcp` setting](/pkg/net#Dialer.SetMultipathTCP). + +There is no plan to remove any of these settings. + +### Go 1.20 + +Go 1.20 introduced support for rejecting insecure paths in tar and zip archives, +controlled by the [`tarinsecurepath` setting](/pkg/archive/tar/#Reader.Next) +and the [`zipinsecurepath` setting](/pkg/archive/zip/#NewReader). +These default to `tarinsecurepath=1` and `zipinsecurepath=1`, +preserving the behavior of earlier versions of Go. +A future version of Go may change the defaults to +`tarinsecurepath=0` and `zipinsecurepath=0`. + +Go 1.20 introduced automatic seeding of the +[`math/rand`](/pkg/math/rand) global random number generator, +controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed). + +Go 1.20 introduced the concept of fallback roots for use during certificate verification, +controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots). + +Go 1.20 removed the preinstalled `.a` files for the standard library +from the Go distribution. +Installations now build and cache the standard library like +packages in other modules. +The [`installgoroot` setting](/cmd/go#hdr-Compile_and_install_packages_and_dependencies) +restores the installation and use of preinstalled `.a` files. + +There is no plan to remove any of these settings. + +### Go 1.19 + +Go 1.19 made it an error for path lookups to resolve to binaries in the current directory, +controlled by the [`execerrdot` setting](/pkg/os/exec#hdr-Executables_in_the_current_directory). +There is no plan to remove this setting. + +Go 1.19 started sending EDNS0 additional headers on DNS requests. +This can reportedly break the DNS server provided on some routers, +such as CenturyLink Zyxel C3000Z. +This can be changed by the [`netedns0` setting](/pkg/net#hdr-Name_Resolution). +This setting is available in Go 1.21.12, Go 1.22.5, Go 1.23, and later. +There is no plan to remove this setting. + +### Go 1.18 + +Go 1.18 removed support for SHA1 in most X.509 certificates, +controlled by the [`x509sha1` setting](/pkg/crypto/x509#InsecureAlgorithmError). +This setting will be removed in a future release, Go 1.22 at the earliest. + +### Go 1.10 + +Go 1.10 changed how build caching worked and added test caching, along +with the [`gocacheverify`, `gocachehash`, and `gocachetest` settings](/cmd/go/#hdr-Build_and_test_caching). +There is no plan to remove these settings. + +### Go 1.6 + +Go 1.6 introduced transparent support for HTTP/2, +controlled by the [`http2client`, `http2server`, and `http2debug` settings](/pkg/net/http/#hdr-HTTP_2). +There is no plan to remove these settings. + +### Go 1.5 + +Go 1.5 introduced a pure Go DNS resolver, +controlled by the [`netdns` setting](/pkg/net/#hdr-Name_Resolution). +There is no plan to remove this setting. diff --git a/platform/dbops/binaries/go/go/go.env b/platform/dbops/binaries/go/go/go.env new file mode 100644 index 0000000000000000000000000000000000000000..6ff2b921d464bc64266c9d84a67a33fb5505d216 --- /dev/null +++ b/platform/dbops/binaries/go/go/go.env @@ -0,0 +1,12 @@ +# This file contains the initial defaults for go command configuration. +# Values set by 'go env -w' and written to the user's go/env file override these. +# The environment overrides everything else. + +# Use the Go module mirror and checksum database by default. +# See https://proxy.golang.org for details. +GOPROXY=https://proxy.golang.org,direct +GOSUMDB=sum.golang.org + +# Automatically download newer toolchains as directed by go.mod files. +# See https://go.dev/doc/toolchain for details. +GOTOOLCHAIN=auto diff --git a/platform/dbops/binaries/go/go/misc/editors b/platform/dbops/binaries/go/go/misc/editors new file mode 100644 index 0000000000000000000000000000000000000000..3a0f73fd7a2cd2555a306d93da3e0af741b8224a --- /dev/null +++ b/platform/dbops/binaries/go/go/misc/editors @@ -0,0 +1,5 @@ +For information about plugins and other support for Go in editors and shells, +see this page on the Go Wiki: + +https://golang.org/wiki/IDEsAndTextEditorPlugins + diff --git a/platform/dbops/binaries/go/go/misc/go.mod b/platform/dbops/binaries/go/go/misc/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..ef9d188b1bc14139f531f8365a65b805c5a7f87b --- /dev/null +++ b/platform/dbops/binaries/go/go/misc/go.mod @@ -0,0 +1,6 @@ +// Module misc contains binaries that pertain to specific platforms +// (Android, iOS, and WebAssembly), as well as some miscellaneous +// tests and tools. +module misc + +go 1.22 diff --git a/platform/dbops/binaries/go/go/src/Make.dist b/platform/dbops/binaries/go/go/src/Make.dist new file mode 100644 index 0000000000000000000000000000000000000000..cae892de9cab2e118df8b03dc3ca83dcc16f39b4 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/Make.dist @@ -0,0 +1,19 @@ +# Copyright 2012 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. + +# Run go tool dist to install a command. +# The -v causes dist to print the name of each directory as it runs. +# The -vv causes dist to print each build command as it runs. +# go tool dist clean cleans all directories, not just this one, +# but it's as close as we can get. + +# Default target (first). +install: + go tool dist install -v + +verbose: + go tool dist install -vv + +clean: + go tool dist clean diff --git a/platform/dbops/binaries/go/go/src/README.vendor b/platform/dbops/binaries/go/go/src/README.vendor new file mode 100644 index 0000000000000000000000000000000000000000..43821b290079df775b53016defd496441ba51b76 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/README.vendor @@ -0,0 +1,51 @@ +Vendoring in std and cmd +======================== + +The Go command maintains copies of external packages needed by the +standard library in the src/vendor and src/cmd/vendor directories. + +There are two modules, std and cmd, defined in src/go.mod and +src/cmd/go.mod. When a package outside std or cmd is imported +by a package inside std or cmd, the import path is interpreted +as if it had a "vendor/" prefix. For example, within "crypto/tls", +an import of "golang.org/x/crypto/cryptobyte" resolves to +"vendor/golang.org/x/crypto/cryptobyte". When a package with the +same path is imported from a package outside std or cmd, it will +be resolved normally. Consequently, a binary may be built with two +copies of a package at different versions if the package is +imported normally and vendored by the standard library. + +Vendored packages are internally renamed with a "vendor/" prefix +to preserve the invariant that all packages have distinct paths. +This is necessary to avoid compiler and linker conflicts. Adding +a "vendor/" prefix also maintains the invariant that standard +library packages begin with a dotless path element. + +The module requirements of std and cmd do not influence version +selection in other modules. They are only considered when running +module commands like 'go get' and 'go mod vendor' from a directory +in GOROOT/src. + +Maintaining vendor directories +============================== + +Before updating vendor directories, ensure that module mode is enabled. +Make sure that GO111MODULE is not set in the environment, or that it is +set to 'on' or 'auto'. + +Requirements may be added, updated, and removed with 'go get'. +The vendor directory may be updated with 'go mod vendor'. +A typical sequence might be: + + cd src + go get golang.org/x/net@master + go mod tidy + go mod vendor + +Use caution when passing '-u' to 'go get'. The '-u' flag updates +modules providing all transitively imported packages, not only +the module providing the target package. + +Note that 'go mod vendor' only copies packages that are transitively +imported by packages in the current module. If a new package is needed, +it should be imported before running 'go mod vendor'. diff --git a/platform/dbops/binaries/go/go/src/all.bash b/platform/dbops/binaries/go/go/src/all.bash new file mode 100644 index 0000000000000000000000000000000000000000..5f8e8fec63dc43ff9ee0f34af900cd66844cc2d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/all.bash @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +# 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. + +set -e +if [ ! -f make.bash ]; then + echo 'all.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi +. ./make.bash "$@" --no-banner +bash run.bash --no-rebuild +$GOTOOLDIR/dist banner # print build info diff --git a/platform/dbops/binaries/go/go/src/all.bat b/platform/dbops/binaries/go/go/src/all.bat new file mode 100644 index 0000000000000000000000000000000000000000..d5abec141f31aa277ebdc151ef9830c1c20fd82e --- /dev/null +++ b/platform/dbops/binaries/go/go/src/all.bat @@ -0,0 +1,22 @@ +:: Copyright 2012 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. + +@echo off + +setlocal + +if exist make.bat goto ok +echo all.bat must be run from go\src +:: cannot exit: would kill parent command interpreter +goto end +:ok + +call .\make.bat --no-banner --no-local +if %GOBUILDFAIL%==1 goto end +call .\run.bat --no-rebuild --no-local +if %GOBUILDFAIL%==1 goto end +"%GOTOOLDIR%/dist" banner + +:end +if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL% diff --git a/platform/dbops/binaries/go/go/src/all.rc b/platform/dbops/binaries/go/go/src/all.rc new file mode 100644 index 0000000000000000000000000000000000000000..45b1261a2064a67c1e00816ed323898592d12cd2 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/all.rc @@ -0,0 +1,16 @@ +#!/bin/rc -e +# Copyright 2012 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. + +rfork n + +if(! test -f make.rc){ + echo 'all.rc must be run from $GOROOT/src' >[1=2] + exit wrongdir +} + +. ./make.rc --no-banner $* +bind -b $GOROOT/bin /bin +./run.rc --no-rebuild +$GOTOOLDIR/dist banner # print build info diff --git a/platform/dbops/binaries/go/go/src/bootstrap.bash b/platform/dbops/binaries/go/go/src/bootstrap.bash new file mode 100644 index 0000000000000000000000000000000000000000..5a97d52e5f98197f6d53b0df756b91df3de8a1b5 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/bootstrap.bash @@ -0,0 +1,85 @@ +#!/usr/bin/env bash +# Copyright 2015 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. + +# When run as (for example) +# +# GOOS=linux GOARCH=ppc64 bootstrap.bash +# +# this script cross-compiles a toolchain for that GOOS/GOARCH +# combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap. +# That tree can be copied to a machine of the given target type +# and used as $GOROOT_BOOTSTRAP to bootstrap a local build. +# +# Only changes that have been committed to Git (at least locally, +# not necessary reviewed and submitted to master) are included in the tree. +# +# See also golang.org/x/build/cmd/genbootstrap, which is used +# to generate bootstrap tgz files for builders. + +set -e + +if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then + echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash [-force]" >&2 + exit 2 +fi + +forceflag="" +if [ "$1" = "-force" ]; then + forceflag=-force + shift +fi + +targ="../../go-${GOOS}-${GOARCH}-bootstrap" +if [ -e $targ ]; then + echo "$targ already exists; remove before continuing" + exit 2 +fi + +unset GOROOT +src=$(cd .. && pwd) +echo "#### Copying to $targ" +cp -Rp "$src" "$targ" +cd "$targ" +echo +echo "#### Cleaning $targ" +chmod -R +w . +rm -f .gitignore +if [ -e .git ]; then + git clean -f -d +fi +echo +echo "#### Building $targ" +echo +cd src +./make.bash --no-banner $forceflag +gohostos="$(../bin/go env GOHOSTOS)" +gohostarch="$(../bin/go env GOHOSTARCH)" +goos="$(../bin/go env GOOS)" +goarch="$(../bin/go env GOARCH)" + +# NOTE: Cannot invoke go command after this point. +# We're about to delete all but the cross-compiled binaries. +cd .. +if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then + # cross-compile for local system. nothing to copy. + # useful if you've bootstrapped yourself but want to + # prepare a clean toolchain for others. + true +else + rm -f bin/go_${goos}_${goarch}_exec + mv bin/*_*/* bin + rmdir bin/*_* + rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}" +fi + +rm -rf pkg/bootstrap pkg/obj .git + +echo ---- +echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)". +echo Building tbz. +cd .. +tar cf - "go-${GOOS}-${GOARCH}-bootstrap" | bzip2 -9 >"go-${GOOS}-${GOARCH}-bootstrap.tbz" +ls -l "$(pwd)/go-${GOOS}-${GOARCH}-bootstrap.tbz" +exit 0 diff --git a/platform/dbops/binaries/go/go/src/buildall.bash b/platform/dbops/binaries/go/go/src/buildall.bash new file mode 100644 index 0000000000000000000000000000000000000000..3b8f6ee6f50ca8e86c91be0e32e35e7ba53b3f55 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/buildall.bash @@ -0,0 +1,92 @@ +#!/usr/bin/env bash +# Copyright 2015 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. + +# Usage: buildall.bash [-e] [pattern] +# +# buildall.bash builds the standard library for all Go-supported +# architectures. +# +# Originally the Go build system used it as a smoke test to quickly +# flag portability issues in builders named "misc-compile" or "all-compile". +# As of CL 464955, the build system uses make.bash -compile-only instead, +# so this script no longer runs in any automated fashion. +# +# Options: +# -e: stop at first failure + +if [ ! -f run.bash ]; then + echo 'buildall.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi + +sete=false +if [ "$1" = "-e" ]; then + sete=true + shift +fi + +if [ "$sete" = true ]; then + set -e +fi + +pattern="$1" +if [ "$pattern" = "" ]; then + pattern=. +fi + +./make.bash || exit 1 +GOROOT="$(cd .. && pwd)" + +gettargets() { + ../bin/go tool dist list | sed -e 's|/|-|' | + egrep -v '^(android|ios)' # need C toolchain even for cross-compiling + echo linux-arm-arm5 +} + +selectedtargets() { + gettargets | grep -E "$pattern" +} + +# put linux first in the target list to get all the architectures up front. +linux_targets() { + selectedtargets | grep 'linux' | sort +} + +non_linux_targets() { + selectedtargets | grep -v 'linux' | sort +} + +# Note words in $targets are separated by both newlines and spaces. +targets="$(linux_targets) $(non_linux_targets)" + +failed=false +for target in $targets +do + echo "" + echo "### Building $target" + export GOOS=$(echo $target | sed 's/-.*//') + export GOARCH=$(echo $target | sed 's/.*-//') + unset GOARM + if [ "$GOARCH" = "arm5" ]; then + export GOARCH=arm + export GOARM=5 + fi + + # Build and vet everything. + # cmd/go/internal/work/exec.go enables the same vet flags during go test of std cmd + # and should be kept in sync with any vet flag changes here. + if ! "$GOROOT/bin/go" build std cmd || ! "$GOROOT/bin/go" vet -unsafeptr=false std cmd; then + failed=true + if $sete; then + exit 1 + fi + fi +done + +if [ "$failed" = "true" ]; then + echo "" 1>&2 + echo "Build(s) failed." 1>&2 + exit 1 +fi diff --git a/platform/dbops/binaries/go/go/src/clean.bash b/platform/dbops/binaries/go/go/src/clean.bash new file mode 100644 index 0000000000000000000000000000000000000000..decfa462f9807f1d8880d98a82e85e44405dd79e --- /dev/null +++ b/platform/dbops/binaries/go/go/src/clean.bash @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +# 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. + +set -e + +if [ ! -f run.bash ]; then + echo 'clean.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi +export GOROOT="$(cd .. && pwd)" + +gobin="${GOROOT}"/bin +if ! "$gobin"/go help >/dev/null 2>&1; then + echo 'cannot find go command; nothing to clean' >&2 + exit 1 +fi + +"$gobin/go" clean -i std +"$gobin/go" tool dist clean +"$gobin/go" clean -i cmd diff --git a/platform/dbops/binaries/go/go/src/clean.bat b/platform/dbops/binaries/go/go/src/clean.bat new file mode 100644 index 0000000000000000000000000000000000000000..6688b41e5e2c9d416235659a73f2aa0345ce1131 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/clean.bat @@ -0,0 +1,32 @@ +:: Copyright 2012 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. + +@echo off + +setlocal + +set GOBUILDFAIL=0 + +go tool dist env -w -p >env.bat +if errorlevel 1 goto fail +call .\env.bat +del env.bat +echo. + +if exist %GOTOOLDIR%\dist.exe goto distok +echo cannot find %GOTOOLDIR%\dist; nothing to clean +goto fail +:distok + +"%GOBIN%\go" clean -i std +"%GOBIN%\go" tool dist clean +"%GOBIN%\go" clean -i cmd + +goto end + +:fail +set GOBUILDFAIL=1 + +:end +if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL% diff --git a/platform/dbops/binaries/go/go/src/clean.rc b/platform/dbops/binaries/go/go/src/clean.rc new file mode 100644 index 0000000000000000000000000000000000000000..23bbd6032683747f25ca9676cd47c3c203362170 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/clean.rc @@ -0,0 +1,15 @@ +#!/bin/rc -e +# Copyright 2012 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. + +eval `{go tool dist env -9} + +if(! test -x $GOTOOLDIR/dist){ + echo 'cannot find $GOTOOLDIR/dist; nothing to clean' >[1=2] + exit noclean +} + +$GOBIN/go clean -i std +$GOBIN/go tool dist clean +$GOBIN/go clean -i cmd diff --git a/platform/dbops/binaries/go/go/src/cmp.bash b/platform/dbops/binaries/go/go/src/cmp.bash new file mode 100644 index 0000000000000000000000000000000000000000..5bca266c404e4eb0dd8b88d56e569ff235e154ad --- /dev/null +++ b/platform/dbops/binaries/go/go/src/cmp.bash @@ -0,0 +1,61 @@ +#!/usr/bin/env bash + +# 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. + +# A simple script to compare differences between +# assembly listings for packages built with different +# compiler flags. It is useful to inspect the impact +# of a compiler change across all std lib packages. +# +# The script builds the std library (make.bash) once +# with FLAGS1 and once with FLAGS2 and compares the +# "go build " assembly output for each package +# and lists the packages with differences. +# +# For packages with differences it leaves files named +# old.txt and new.txt. + +FLAGS1="-newexport=0" +FLAGS2="-newexport=1" + +echo +echo +echo "1a) clean build using $FLAGS1" +(export GO_GCFLAGS="$FLAGS1"; sh make.bash) + +echo +echo +echo "1b) save go build output for all packages" +for pkg in `go list std`; do + echo $pkg + DIR=$GOROOT/src/$pkg + go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt +done + +echo +echo +echo "2a) clean build using $FLAGS2" +(export GO_GCFLAGS="$FLAGS2"; sh make.bash) + +echo +echo +echo "2b) save go build output for all packages" +for pkg in `go list std`; do + echo $pkg + DIR=$GOROOT/src/$pkg + go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt +done + +echo +echo +echo "3) compare assembly files" +for pkg in `go list std`; do + DIR=$GOROOT/src/$pkg + + if cmp $DIR/old.txt $DIR/new.txt &> /dev/null + then rm $DIR/old.txt $DIR/new.txt + else echo "==> $DIR" + fi +done diff --git a/platform/dbops/binaries/go/go/src/go.mod b/platform/dbops/binaries/go/go/src/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..737d78da5d9b40b497a748511f28f250c9619d71 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/go.mod @@ -0,0 +1,13 @@ +module std + +go 1.22 + +require ( + golang.org/x/crypto v0.16.1-0.20231129163542-152cdb1503eb + golang.org/x/net v0.19.1-0.20240412193750-db050b07227e +) + +require ( + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect +) diff --git a/platform/dbops/binaries/go/go/src/go.sum b/platform/dbops/binaries/go/go/src/go.sum new file mode 100644 index 0000000000000000000000000000000000000000..86d173c9e6ff99669cafb226c5851c13d843d862 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/go.sum @@ -0,0 +1,8 @@ +golang.org/x/crypto v0.16.1-0.20231129163542-152cdb1503eb h1:1ceSY7sk6sJuiDREHpfyrqDnDljsLfEP2GuTClhBBfI= +golang.org/x/crypto v0.16.1-0.20231129163542-152cdb1503eb/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/net v0.19.1-0.20240412193750-db050b07227e h1:oDnvqaqHo3ho8OChMtkQbQAyp9eqnm3J7JRtt0+Cabc= +golang.org/x/net v0.19.1-0.20240412193750-db050b07227e/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= diff --git a/platform/dbops/binaries/go/go/src/make.bash b/platform/dbops/binaries/go/go/src/make.bash new file mode 100644 index 0000000000000000000000000000000000000000..76ad51624ac6eefa927c467f1afaccf45a1124c7 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/make.bash @@ -0,0 +1,233 @@ +#!/usr/bin/env bash +# 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. + +# See golang.org/s/go15bootstrap for an overview of the build process. + +# Environment variables that control make.bash: +# +# GOROOT_FINAL: The expected final Go root, baked into binaries. +# The default is the location of the Go tree during the build. +# +# GOHOSTARCH: The architecture for host tools (compilers and +# binaries). Binaries of this type must be executable on the current +# system, so the only common reason to set this is to set +# GOHOSTARCH=386 on an amd64 machine. +# +# GOARCH: The target architecture for installed packages and tools. +# +# GOOS: The target operating system for installed packages and tools. +# +# GO_GCFLAGS: Additional go tool compile arguments to use when +# building the packages and commands. +# +# GO_LDFLAGS: Additional go tool link arguments to use when +# building the commands. +# +# CGO_ENABLED: Controls cgo usage during the build. Set it to 1 +# to include all cgo related files, .c and .go file with "cgo" +# build directive, in the build. Set it to 0 to ignore them. +# +# GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building +# packages that use cgo. Set to 0 to do all linking internally. This +# controls the default behavior of the linker's -linkmode option. The +# default value depends on the system. +# +# GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used +# by the internal linker. +# +# CC: Command line to run to compile C code for GOHOSTARCH. +# Default is "gcc". Also supported: "clang". +# +# CC_FOR_TARGET: Command line to run to compile C code for GOARCH. +# This is used by cgo. Default is CC. +# +# CC_FOR_${GOOS}_${GOARCH}: Command line to run to compile C code for specified ${GOOS} and ${GOARCH}. +# (for example, CC_FOR_linux_arm) +# If this is not set, the build will use CC_FOR_TARGET if appropriate, or CC. +# +# CXX_FOR_TARGET: Command line to run to compile C++ code for GOARCH. +# This is used by cgo. Default is CXX, or, if that is not set, +# "g++" or "clang++". +# +# CXX_FOR_${GOOS}_${GOARCH}: Command line to run to compile C++ code for specified ${GOOS} and ${GOARCH}. +# (for example, CXX_FOR_linux_arm) +# If this is not set, the build will use CXX_FOR_TARGET if appropriate, or CXX. +# +# FC: Command line to run to compile Fortran code for GOARCH. +# This is used by cgo. Default is "gfortran". +# +# PKG_CONFIG: Path to pkg-config tool. Default is "pkg-config". +# +# GO_DISTFLAGS: extra flags to provide to "dist bootstrap". +# (Or just pass them to the make.bash command line.) +# +# GOBUILDTIMELOGFILE: If set, make.bash and all.bash write +# timing information to this file. Useful for profiling where the +# time goes when these scripts run. +# +# GOROOT_BOOTSTRAP: A working Go tree >= Go 1.20.6 for bootstrap. +# If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is +# tried for all "go" in $PATH. By default, one of $HOME/go1.20.6, +# $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order. +# We still check $HOME/go1.4 to allow for build scripts that still hard-code +# that name even though they put newer Go toolchains there. + +bootgo=1.20.6 + +set -e + +if [[ ! -f run.bash ]]; then + echo 'make.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi + +if [[ "$GOBUILDTIMELOGFILE" != "" ]]; then + echo $(LC_TIME=C date) start make.bash >"$GOBUILDTIMELOGFILE" +fi + +# Test for Windows. +case "$(uname)" in +*MINGW* | *WIN32* | *CYGWIN*) + echo 'ERROR: Do not use make.bash to build on Windows.' + echo 'Use make.bat instead.' + echo + exit 1 + ;; +esac + +# Test for bad ld. +if ld --version 2>&1 | grep 'gold.* 2\.20' >/dev/null; then + echo 'ERROR: Your system has gold 2.20 installed.' + echo 'This version is shipped by Ubuntu even though' + echo 'it is known not to work on Ubuntu.' + echo 'Binaries built with this linker are likely to fail in mysterious ways.' + echo + echo 'Run sudo apt-get remove binutils-gold.' + echo + exit 1 +fi + +# Test for bad SELinux. +# On Fedora 16 the selinux filesystem is mounted at /sys/fs/selinux, +# so loop through the possible selinux mount points. +for se_mount in /selinux /sys/fs/selinux +do + if [[ -d $se_mount && -f $se_mount/booleans/allow_execstack && -x /usr/sbin/selinuxenabled ]] && /usr/sbin/selinuxenabled; then + if ! cat $se_mount/booleans/allow_execstack | grep -c '^1 1$' >> /dev/null ; then + echo "WARNING: the default SELinux policy on, at least, Fedora 12 breaks " + echo "Go. You can enable the features that Go needs via the following " + echo "command (as root):" + echo " # setsebool -P allow_execstack 1" + echo + echo "Note that this affects your system globally! " + echo + echo "The build will continue in five seconds in case we " + echo "misdiagnosed the issue..." + + sleep 5 + fi + fi +done + +# Test for debian/kFreeBSD. +# cmd/dist will detect kFreeBSD as freebsd/$GOARCH, but we need to +# disable cgo manually. +if [[ "$(uname -s)" == "GNU/kFreeBSD" ]]; then + export CGO_ENABLED=0 +fi + +# Clean old generated file that will cause problems in the build. +rm -f ./runtime/runtime_defs.go + +# Finally! Run the build. + +verbose=false +vflag="" +if [[ "$1" == "-v" ]]; then + verbose=true + vflag=-v + shift +fi + +goroot_bootstrap_set=${GOROOT_BOOTSTRAP+"true"} +if [[ -z "$GOROOT_BOOTSTRAP" ]]; then + GOROOT_BOOTSTRAP="$HOME/go1.4" + for d in sdk/go$bootgo go$bootgo; do + if [[ -d "$HOME/$d" ]]; then + GOROOT_BOOTSTRAP="$HOME/$d" + fi + done +fi +export GOROOT_BOOTSTRAP + +nogoenv() { + GO111MODULE=off GOENV=off GOOS= GOARCH= GOEXPERIMENT= GOFLAGS= "$@" +} + +export GOROOT="$(cd .. && pwd)" +IFS=$'\n'; for go_exe in $(type -ap go); do + if [[ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]]; then + goroot=$(GOROOT= nogoenv "$go_exe" env GOROOT) + if [[ "$goroot" != "$GOROOT" ]]; then + if [[ "$goroot_bootstrap_set" == "true" ]]; then + printf 'WARNING: %s does not exist, found %s from env\n' "$GOROOT_BOOTSTRAP/bin/go" "$go_exe" >&2 + printf 'WARNING: set %s as GOROOT_BOOTSTRAP\n' "$goroot" >&2 + fi + GOROOT_BOOTSTRAP="$goroot" + fi + fi +done; unset IFS +if [[ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]]; then + echo "ERROR: Cannot find $GOROOT_BOOTSTRAP/bin/go." >&2 + echo "Set \$GOROOT_BOOTSTRAP to a working Go tree >= Go $bootgo." >&2 + exit 1 +fi +# Get the exact bootstrap toolchain version to help with debugging. +# We clear GOOS and GOARCH to avoid an ominous but harmless warning if +# the bootstrap doesn't support them. +GOROOT_BOOTSTRAP_VERSION=$(nogoenv "$GOROOT_BOOTSTRAP/bin/go" version | sed 's/go version //') +echo "Building Go cmd/dist using $GOROOT_BOOTSTRAP. ($GOROOT_BOOTSTRAP_VERSION)" +if $verbose; then + echo cmd/dist +fi +if [[ "$GOROOT_BOOTSTRAP" == "$GOROOT" ]]; then + echo "ERROR: \$GOROOT_BOOTSTRAP must not be set to \$GOROOT" >&2 + echo "Set \$GOROOT_BOOTSTRAP to a working Go tree >= Go $bootgo." >&2 + exit 1 +fi +rm -f cmd/dist/dist +GOROOT="$GOROOT_BOOTSTRAP" nogoenv "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist + +# -e doesn't propagate out of eval, so check success by hand. +eval $(./cmd/dist/dist env -p || echo FAIL=true) +if [[ "$FAIL" == true ]]; then + exit 1 +fi + +if $verbose; then + echo +fi + +if [[ "$1" == "--dist-tool" ]]; then + # Stop after building dist tool. + mkdir -p "$GOTOOLDIR" + if [[ "$2" != "" ]]; then + cp cmd/dist/dist "$2" + fi + mv cmd/dist/dist "$GOTOOLDIR"/dist + exit 0 +fi + +# Run dist bootstrap to complete make.bash. +# Bootstrap installs a proper cmd/dist, built with the new toolchain. +# Throw ours, built with the bootstrap toolchain, away after bootstrap. +./cmd/dist/dist bootstrap -a $vflag $GO_DISTFLAGS "$@" +rm -f ./cmd/dist/dist + +# DO NOT ADD ANY NEW CODE HERE. +# The bootstrap+rm above are the final step of make.bash. +# If something must be added, add it to cmd/dist's cmdbootstrap, +# to avoid needing three copies in three different shell languages +# (make.bash, make.bat, make.rc). diff --git a/platform/dbops/binaries/go/go/src/make.bat b/platform/dbops/binaries/go/go/src/make.bat new file mode 100644 index 0000000000000000000000000000000000000000..d9f9b6cb6aa252e7d695a9e94c8efd529587641e --- /dev/null +++ b/platform/dbops/binaries/go/go/src/make.bat @@ -0,0 +1,187 @@ +:: Copyright 2012 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. + +:: Environment variables that control make.bat: +:: +:: GOROOT_FINAL: The expected final Go root, baked into binaries. +:: The default is the location of the Go tree during the build. +:: +:: GOHOSTARCH: The architecture for host tools (compilers and +:: binaries). Binaries of this type must be executable on the current +:: system, so the only common reason to set this is to set +:: GOHOSTARCH=386 on an amd64 machine. +:: +:: GOARCH: The target architecture for installed packages and tools. +:: +:: GOOS: The target operating system for installed packages and tools. +:: +:: GO_GCFLAGS: Additional go tool compile arguments to use when +:: building the packages and commands. +:: +:: GO_LDFLAGS: Additional go tool link arguments to use when +:: building the commands. +:: +:: CGO_ENABLED: Controls cgo usage during the build. Set it to 1 +:: to include all cgo related files, .c and .go file with "cgo" +:: build directive, in the build. Set it to 0 to ignore them. +:: +:: CC: Command line to run to compile C code for GOHOSTARCH. +:: Default is "gcc". +:: +:: CC_FOR_TARGET: Command line to run compile C code for GOARCH. +:: This is used by cgo. Default is CC. +:: +:: FC: Command line to run to compile Fortran code. +:: This is used by cgo. Default is "gfortran". + +@echo off + +:: Keep environment variables within this script +:: unless invoked with --no-local. +if x%1==x-no-local goto nolocal +if x%2==x-no-local goto nolocal +if x%3==x-no-local goto nolocal +if x%4==x-no-local goto nolocal +if x%1==x--no-local goto nolocal +if x%2==x--no-local goto nolocal +if x%3==x--no-local goto nolocal +if x%4==x--no-local goto nolocal +setlocal +:nolocal + +set GOBUILDFAIL=0 + +if exist make.bat goto ok +echo Must run make.bat from Go src directory. +goto fail +:ok + +:: Clean old generated file that will cause problems in the build. +del /F ".\pkg\runtime\runtime_defs.go" 2>NUL + +:: Set GOROOT for build. +cd .. +set GOROOT_TEMP=%CD% +set GOROOT= +cd src +set vflag= +if x%1==x-v set vflag=-v +if x%2==x-v set vflag=-v +if x%3==x-v set vflag=-v +if x%4==x-v set vflag=-v + +if not exist ..\bin\tool mkdir ..\bin\tool + +:: Calculating GOROOT_BOOTSTRAP +if not "x%GOROOT_BOOTSTRAP%"=="x" goto bootstrapset +for /f "tokens=*" %%g in ('where go 2^>nul') do ( + if "x%GOROOT_BOOTSTRAP%"=="x" ( + setlocal + call :nogoenv + for /f "tokens=*" %%i in ('"%%g" env GOROOT 2^>nul') do ( + endlocal + if /I not "%%i"=="%GOROOT_TEMP%" ( + set GOROOT_BOOTSTRAP=%%i + ) + ) + ) +) + +set bootgo=1.20.6 +if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\go%bootgo% +if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo% +if "x%GOROOT_BOOTSTRAP%"=="x" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\Go1.4 + +:bootstrapset +if not exist "%GOROOT_BOOTSTRAP%\bin\go.exe" goto bootstrapfail +set GOROOT=%GOROOT_TEMP% +set GOROOT_TEMP= + +setlocal +call :nogoenv +for /f "tokens=*" %%g IN ('"%GOROOT_BOOTSTRAP%\bin\go" version') do (set GOROOT_BOOTSTRAP_VERSION=%%g) +set GOROOT_BOOTSTRAP_VERSION=%GOROOT_BOOTSTRAP_VERSION:go version =% +echo Building Go cmd/dist using %GOROOT_BOOTSTRAP%. (%GOROOT_BOOTSTRAP_VERSION%) +if x%vflag==x-v echo cmd/dist +set GOROOT=%GOROOT_BOOTSTRAP% +set GOBIN= +"%GOROOT_BOOTSTRAP%\bin\go.exe" build -o cmd\dist\dist.exe .\cmd\dist +endlocal +if errorlevel 1 goto fail +.\cmd\dist\dist.exe env -w -p >env.bat +if errorlevel 1 goto fail +call .\env.bat +del env.bat +if x%vflag==x-v echo. + +if x%1==x-dist-tool goto copydist +if x%2==x-dist-tool goto copydist +if x%3==x-dist-tool goto copydist +if x%4==x-dist-tool goto copydist +if x%1==x--dist-tool goto copydist +if x%2==x--dist-tool goto copydist +if x%3==x--dist-tool goto copydist +if x%4==x--dist-tool goto copydist + +set bootstrapflags= +if x%1==x-no-clean set bootstrapflags=-no-clean +if x%2==x-no-clean set bootstrapflags=-no-clean +if x%3==x-no-clean set bootstrapflags=-no-clean +if x%4==x-no-clean set bootstrapflags=-no-clean +if x%1==x--no-clean set bootstrapflags=-no-clean +if x%2==x--no-clean set bootstrapflags=-no-clean +if x%3==x--no-clean set bootstrapflags=-no-clean +if x%4==x--no-clean set bootstrapflags=-no-clean +if x%1==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%2==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%3==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%4==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%1==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%2==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%3==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%4==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner +if x%1==x-distpack set bootstrapflags=%bootstrapflags% -distpack +if x%2==x-distpack set bootstrapflags=%bootstrapflags% -distpack +if x%3==x-distpack set bootstrapflags=%bootstrapflags% -distpack +if x%4==x-distpack set bootstrapflags=%bootstrapflags% -distpack +if x%1==x--distpack set bootstrapflags=%bootstrapflags% -distpack +if x%2==x--distpack set bootstrapflags=%bootstrapflags% -distpack +if x%3==x--distpack set bootstrapflags=%bootstrapflags% -distpack +if x%4==x--distpack set bootstrapflags=%bootstrapflags% -distpack + +:: Run dist bootstrap to complete make.bash. +:: Bootstrap installs a proper cmd/dist, built with the new toolchain. +:: Throw ours, built with the bootstrap toolchain, away after bootstrap. +.\cmd\dist\dist.exe bootstrap -a %vflag% %bootstrapflags% +if errorlevel 1 goto fail +del .\cmd\dist\dist.exe +goto :eof + +:: DO NOT ADD ANY NEW CODE HERE. +:: The bootstrap+del above are the final step of make.bat. +:: If something must be added, add it to cmd/dist's cmdbootstrap, +:: to avoid needing three copies in three different shell languages +:: (make.bash, make.bat, make.rc). + +:copydist +mkdir "%GOTOOLDIR%" 2>NUL +copy cmd\dist\dist.exe "%GOTOOLDIR%\" +goto :eof + +:nogoenv +set GO111MODULE=off +set GOENV=off +set GOOS= +set GOARCH= +set GOEXPERIMENT= +set GOFLAGS= +goto :eof + +:bootstrapfail +echo ERROR: Cannot find %GOROOT_BOOTSTRAP%\bin\go.exe +echo Set GOROOT_BOOTSTRAP to a working Go tree ^>= Go %bootgo%. + +:fail +set GOBUILDFAIL=1 +if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL% diff --git a/platform/dbops/binaries/go/go/src/make.rc b/platform/dbops/binaries/go/go/src/make.rc new file mode 100644 index 0000000000000000000000000000000000000000..b10be7dbd177c797102552436caf357278df8366 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/make.rc @@ -0,0 +1,121 @@ +#!/bin/rc -e +# Copyright 2012 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. + +# See golang.org/s/go15bootstrap for an overview of the build process. + +# Environment variables that control make.rc: +# +# GOROOT_FINAL: The expected final Go root, baked into binaries. +# The default is the location of the Go tree during the build. +# +# GOHOSTARCH: The architecture for host tools (compilers and +# binaries). Binaries of this type must be executable on the current +# system, so the only common reason to set this is to set +# GOHOSTARCH=386 on an amd64 machine. +# +# GOARCH: The target architecture for installed packages and tools. +# +# GOOS: The target operating system for installed packages and tools. +# +# GO_GCFLAGS: Additional go tool compile arguments to use when +# building the packages and commands. +# +# GO_LDFLAGS: Additional go tool link arguments to use when +# building the commands. +# +# CGO_ENABLED: Controls cgo usage during the build. Set it to 1 +# to include all cgo related files, .c and .go file with "cgo" +# build directive, in the build. Set it to 0 to ignore them. + +rfork e +if(! test -f run.rc){ + echo 'make.rc must be run from $GOROOT/src' >[1=2] + exit wrongdir +} + +# Clean old generated file that will cause problems in the build. +rm -f ./runtime/runtime_defs.go + +# Determine the host compiler toolchain. +eval `{grep '^(CC|LD|O)=' /$objtype/mkfile} + +vflag=() +if(~ $1 -v) { + vflag=(-v) + shift +} + +fn nogoenv { + GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $* +} + +bootgo = 1.20.6 +GOROOT = `{cd .. && pwd} +goroot_bootstrap_set = 'true' +if(! ~ $#GOROOT_BOOTSTRAP 1){ + goroot_bootstrap_set = 'false' + GOROOT_BOOTSTRAP = $home/go1.4 + for(d in sdk/go$bootgo go$bootgo) + if(test -d $home/$d) + GOROOT_BOOTSTRAP = $home/$d +} +for(p in $path){ + if(! test -x $GOROOT_BOOTSTRAP/bin/go){ + if(go_exe = `{path=$p whatis go}){ + goroot = `{GOROOT=() nogoenv $go_exe env GOROOT} + if(! ~ $goroot $GOROOT){ + if(~ $goroot_bootstrap_set 'true'){ + echo 'WARNING: '$GOROOT_BOOTSTRAP'/bin/go does not exist, found '$go_exe' from env' >[1=2] + echo 'WARNING: set '$goroot' as GOROOT_BOOTSTRAP' >[1=2] + } + GOROOT_BOOTSTRAP = $goroot + } + } + } +} +if(! test -x $GOROOT_BOOTSTRAP/bin/go){ + echo 'ERROR: Cannot find '$GOROOT_BOOTSTRAP'/bin/go.' >[1=2] + echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go '$bootgo'.' >[1=2] + exit bootstrap +} +if(~ $GOROOT_BOOTSTRAP $GOROOT){ + echo 'ERROR: $GOROOT_BOOTSTRAP must not be set to $GOROOT' >[1=2] + echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go '$bootgo'.' >[1=2] + exit bootstrap +} + +# Get the exact bootstrap toolchain version to help with debugging. +# We clear GOOS and GOARCH to avoid an ominous but harmless warning if +# the bootstrap doesn't support them. +GOROOT_BOOTSTRAP_VERSION=`{nogoenv $GOROOT_BOOTSTRAP/bin/go version | sed 's/go version //'} +echo 'Building Go cmd/dist using '$GOROOT_BOOTSTRAP'. ('$"GOROOT_BOOTSTRAP_VERSION')' +if(~ $#vflag 1) + echo cmd/dist +GOROOT=$GOROOT_BOOTSTRAP nogoenv $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist + +eval `{./cmd/dist/dist env -9} +if(~ $#vflag 1) + echo + +if(~ $1 --dist-tool){ + # Stop after building dist tool. + mkdir -p $GOTOOLDIR + if(! ~ $2 '') + cp cmd/dist/dist $2 + mv cmd/dist/dist $GOTOOLDIR/dist + exit +} + +# Run dist bootstrap to complete make.bash. +# Bootstrap installs a proper cmd/dist, built with the new toolchain. +# Throw ours, built with the bootstrap toolchain, away after bootstrap. +./cmd/dist/dist bootstrap -a $vflag $* +rm -f ./cmd/dist/dist + +# DO NOT ADD ANY NEW CODE HERE. +# The bootstrap+rm above are the final step of make.rc. +# If something must be added, add it to cmd/dist's cmdbootstrap, +# to avoid needing three copies in three different shell languages +# (make.bash, make.bat, make.rc). diff --git a/platform/dbops/binaries/go/go/src/race.bash b/platform/dbops/binaries/go/go/src/race.bash new file mode 100644 index 0000000000000000000000000000000000000000..f1a168bfbb73135b6b2f890344a93a265d3abe8a --- /dev/null +++ b/platform/dbops/binaries/go/go/src/race.bash @@ -0,0 +1,35 @@ +#!/usr/bin/env bash +# Copyright 2013 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. + +# race.bash tests the standard library under the race detector. +# https://golang.org/doc/articles/race_detector.html + +set -e + +function usage { + echo 'race detector is only supported on linux/amd64, linux/ppc64le, linux/arm64, linux/s390x, freebsd/amd64, netbsd/amd64, openbsd/amd64, darwin/amd64, and darwin/arm64' 1>&2 + exit 1 +} + +case $(uname -s -m) in + "Darwin x86_64") ;; + "Darwin arm64") ;; + "Linux x86_64") ;; + "Linux ppc64le") ;; + "Linux aarch64") ;; + "Linux s390x") ;; + "FreeBSD amd64") ;; + "NetBSD amd64") ;; + "OpenBSD amd64") ;; + *) usage ;; +esac + +if [ ! -f make.bash ]; then + echo 'race.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi +. ./make.bash --no-banner +go install -race std +go tool dist test -race diff --git a/platform/dbops/binaries/go/go/src/race.bat b/platform/dbops/binaries/go/go/src/race.bat new file mode 100644 index 0000000000000000000000000000000000000000..d395e19f9741ddc2f8343ef932cdaf9bd6a59312 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/race.bat @@ -0,0 +1,51 @@ +:: Copyright 2013 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. + +:: race.bash tests the standard library under the race detector. +:: https://golang.org/doc/articles/race_detector.html + +@echo off + +setlocal + +if exist make.bat goto ok +echo race.bat must be run from go\src +:: cannot exit: would kill parent command interpreter +goto end +:ok + +set GOROOT=%CD%\.. +call .\make.bat --dist-tool >NUL +if errorlevel 1 goto fail +.\cmd\dist\dist.exe env -w -p >env.bat +if errorlevel 1 goto fail +call .\env.bat +del env.bat + +if %GOHOSTARCH% == amd64 goto continue +echo Race detector is only supported on windows/amd64. +goto fail + +:continue +call .\make.bat --no-banner --no-local +if %GOBUILDFAIL%==1 goto end +echo # go install -race std +go install -race std +if errorlevel 1 goto fail + +go tool dist test -race + +if errorlevel 1 goto fail +goto succ + +:fail +set GOBUILDFAIL=1 +echo Fail. +goto end + +:succ +echo All tests passed. + +:end +if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL% diff --git a/platform/dbops/binaries/go/go/src/run.bash b/platform/dbops/binaries/go/go/src/run.bash new file mode 100644 index 0000000000000000000000000000000000000000..badb8c60e20f087462eb15b537150e0fee6d1656 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/run.bash @@ -0,0 +1,61 @@ +#!/usr/bin/env bash +# 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. + +# Environment variables that control run.bash: +# +# GO_TEST_SHARDS: number of "dist test" test shards that the +# $GOROOT/test directory will be sliced up into for parallel +# execution. Defaults to 1, unless GO_BUILDER_NAME is also specified, +# in which case it defaults to 10. +# +# GO_BUILDER_NAME: the name of the Go builder that's running the tests. +# Some tests are conditionally enabled or disabled based on the builder +# name or the builder name being non-empty. +# +# GO_TEST_SHORT: if set to a non-empty, false-ish string, run tests in "-short=false" mode. +# This environment variable is an internal implementation detail between the +# Go build system (x/build) and cmd/dist for the purpose of longtest builders, +# and will be removed if it stops being needed. See go.dev/issue/12508. +# +# GO_TEST_TIMEOUT_SCALE: a non-negative integer factor to scale test timeout by. +# Defaults to 1. + +set -e + +if [ ! -f ../bin/go ]; then + echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2 + exit 1 +fi + +export GOENV=off +eval $(../bin/go tool dist env) + +unset CDPATH # in case user has it set + +export GOHOSTOS +export CC + +# no core files, please +ulimit -c 0 + +# Raise soft limits to hard limits for NetBSD/OpenBSD. +# We need at least 256 files and ~300 MB of bss. +# On OS X ulimit -S -n rejects 'unlimited'. +# +# Note that ulimit -S -n may fail if ulimit -H -n is set higher than a +# non-root process is allowed to set the high limit. +# This is a system misconfiguration and should be fixed on the +# broken system, not "fixed" by ignoring the failure here. +# See longer discussion on golang.org/issue/7381. +[ "$(ulimit -H -n)" = "unlimited" ] || ulimit -S -n $(ulimit -H -n) +[ "$(ulimit -H -d)" = "unlimited" ] || ulimit -S -d $(ulimit -H -d) + +# Thread count limit on NetBSD 7. +if ulimit -T &> /dev/null; then + [ "$(ulimit -H -T)" = "unlimited" ] || ulimit -S -T $(ulimit -H -T) +fi + +export GOPATH=/nonexist-gopath +exec ../bin/go tool dist test -rebuild "$@" diff --git a/platform/dbops/binaries/go/go/src/run.bat b/platform/dbops/binaries/go/go/src/run.bat new file mode 100644 index 0000000000000000000000000000000000000000..35c8ead8cb22473e96605ceb9474cb661c705d34 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/run.bat @@ -0,0 +1,42 @@ +:: Copyright 2012 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. + +@echo off + +if exist ..\bin\go.exe goto ok +echo Must run run.bat from Go src directory after installing cmd/go. +goto fail +:ok + +:: Keep environment variables within this script +:: unless invoked with --no-local. +if x%1==x--no-local goto nolocal +if x%2==x--no-local goto nolocal +setlocal +:nolocal + +set GOBUILDFAIL=0 + +set GOENV=off +..\bin\go tool dist env > env.bat +if errorlevel 1 goto fail +call .\env.bat +del env.bat + +set GOPATH=c:\nonexist-gopath + +if x%1==x--no-rebuild goto norebuild +..\bin\go tool dist test --rebuild +if errorlevel 1 goto fail +goto end + +:norebuild +..\bin\go tool dist test +if errorlevel 1 goto fail +goto end + +:fail +set GOBUILDFAIL=1 + +:end diff --git a/platform/dbops/binaries/go/go/src/run.rc b/platform/dbops/binaries/go/go/src/run.rc new file mode 100644 index 0000000000000000000000000000000000000000..704290ca5ed1fdcc1a2016bf84e03155aa972741 --- /dev/null +++ b/platform/dbops/binaries/go/go/src/run.rc @@ -0,0 +1,17 @@ +#!/bin/rc -e +# Copyright 2012 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. + +rfork e + +if(! test -f ../bin/go){ + echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2] + exit wrongdir +} + +GOENV=off +eval `{../bin/go tool dist env} + +GOPATH=/nonexist-gopath +exec ../bin/go tool dist test -rebuild $* diff --git a/platform/dbops/binaries/go/go/test/235.go b/platform/dbops/binaries/go/go/test/235.go new file mode 100644 index 0000000000000000000000000000000000000000..6745dde41ab7d8560f32e1ee526c1d6efd63f611 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/235.go @@ -0,0 +1,75 @@ +// run + +// 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. + +// Solve the 2,3,5 problem (print all numbers with 2, 3, or 5 as factor) using channels. +// Test the solution, silently. + +package main + +type T chan uint64 + +func M(f uint64) (in, out T) { + in = make(T, 100) + out = make(T, 100) + go func(in, out T, f uint64) { + for { + out <- f*<-in + } + }(in, out, f) + return in, out +} + + +func min(xs []uint64) uint64 { + m := xs[0] + for i := 1; i < len(xs); i++ { + if xs[i] < m { + m = xs[i] + } + } + return m +} + + +func main() { + F := []uint64{2, 3, 5} + var n = len(F) + OUT := []uint64{ + 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27, 30, 32, 36, + 40, 45, 48, 50, 54, 60, 64, 72, 75, 80, 81, 90, 96, 100, 108, 120, 125, + 128, 135, 144, 150, 160, 162, 180, 192, 200, 216, 225, 240, 243, 250, + 256, 270, 288, 300, 320, 324, 360, 375, 384, 400, 405, 432, 450, 480, + 486, 500, 512, 540, 576, 600, 625, 640, 648, 675, 720, 729, 750, 768, + 800, 810, 864, 900, 960, 972, 1000, 1024, 1080, 1125, 1152, 1200, 1215, + 1250, 1280, 1296, 1350, 1440, 1458, 1500, 1536, 1600} + + x := uint64(1) + ins := make([]T, n) + outs := make([]T, n) + xs := make([]uint64, n) + for i := 0; i < n; i++ { + ins[i], outs[i] = M(F[i]) + xs[i] = x + } + + for i := 0; i < len(OUT); i++ { + for i := 0; i < n; i++ { + ins[i] <- x + } + + for i := 0; i < n; i++ { + if xs[i] == x { + xs[i] = <-outs[i] + } + } + + x = min(xs) + if x != OUT[i] { + println("bad: ", x, " should be ", OUT[i]) + panic("235") + } + } +} diff --git a/platform/dbops/binaries/go/go/test/64bit.go b/platform/dbops/binaries/go/go/test/64bit.go new file mode 100644 index 0000000000000000000000000000000000000000..d99d8e83f0d544dc195cb2bb53ba8434b1c04e36 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/64bit.go @@ -0,0 +1,728 @@ +// runoutput + +// 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. + +// Generate test of 64-bit arithmetic. +// Most synthesized routines have different cases for +// constants vs variables and even the generated code has +// different cases for large and small constants, +// so try a good range of inputs. + +package main + +import ( + "bufio" + "fmt" + "os" +) + +var bout *bufio.Writer + +// 64-bit math without using 64-bit numbers, +// so that we can generate the test program even +// if the compiler has buggy or missing 64-bit support. + +type Uint64 struct { + hi uint32 + lo uint32 +} + +type Int64 struct { + hi int32 + lo uint32 +} + +func (a Uint64) Int64() (c Int64) { + c.hi = int32(a.hi) + c.lo = a.lo + return +} + +func (a Uint64) Cmp(b Uint64) int { + switch { + case a.hi < b.hi: + return -1 + case a.hi > b.hi: + return 1 + case a.lo < b.lo: + return -1 + case a.lo > b.lo: + return 1 + } + return 0 +} + +func (a Uint64) LeftShift(b uint) (c Uint64) { + switch { + case b >= 64: + c.hi = 0 + c.lo = 0 + case b >= 32: + c.hi = a.lo << (b - 32) + c.lo = 0 + default: + c.hi = a.hi<>(32-b) + c.lo = a.lo << b + } + return +} + +func (a Uint64) RightShift(b uint) (c Uint64) { + switch { + case b >= 64: + c.hi = 0 + c.lo = a.hi + case b >= 32: + c.hi = 0 + c.lo = a.hi >> (b - 32) + default: + c.hi = a.hi >> b + c.lo = a.hi<<(32-b) | a.lo>>b + } + return +} + +func (a Uint64) LeftShift64(b Uint64) (c Uint64) { + if b.hi != 0 || b.lo >= 64 { + return + } + return a.LeftShift(uint(b.lo)) +} + +func (a Uint64) RightShift64(b Uint64) (c Uint64) { + if b.hi != 0 || b.lo >= 64 { + return + } + return a.RightShift(uint(b.lo)) +} + +func (a Uint64) Plus(b Uint64) (c Uint64) { + var carry uint32 + if c.lo = a.lo + b.lo; c.lo < a.lo { + carry = 1 + } + c.hi = a.hi + b.hi + carry + return +} + +func (a Uint64) Minus(b Uint64) (c Uint64) { + var borrow uint32 + if c.lo = a.lo - b.lo; c.lo > a.lo { + borrow = 1 + } + c.hi = a.hi - b.hi - borrow + return +} + +func (a Uint64) Neg() (c Uint64) { + var zero Uint64 + return zero.Minus(a) +} + +func (a Uint64) Com() (c Uint64) { + c.hi = ^a.hi + c.lo = ^a.lo + return +} + +func (a Uint64) Len() int { + switch { + case a.hi != 0: + for i := 31; i >= 0; i-- { + if a.hi&(1<= 0; i-- { + if a.lo&(1<= 64: + return false + case b >= 32: + return a.hi&(1<<(b-32)) != 0 + } + return a.lo&(1<= 0 { + b = b.LeftShift(uint(n)) + for i := 0; i <= n; i++ { + quo = quo.LeftShift(1) + if b.Cmp(a) <= 0 { // b <= a + quo.lo |= 1 + a = a.Minus(b) + } + b = b.RightShift(1) + } + } + rem = a + return +} + +func (a Uint64) And(b Uint64) (c Uint64) { + c.hi = a.hi & b.hi + c.lo = a.lo & b.lo + return +} + +func (a Uint64) AndNot(b Uint64) (c Uint64) { + c.hi = a.hi &^ b.hi + c.lo = a.lo &^ b.lo + return +} + +func (a Uint64) Or(b Uint64) (c Uint64) { + c.hi = a.hi | b.hi + c.lo = a.lo | b.lo + return +} + +func (a Uint64) Xor(b Uint64) (c Uint64) { + c.hi = a.hi ^ b.hi + c.lo = a.lo ^ b.lo + return +} + +func (a Uint64) String() string { return fmt.Sprintf("%#x%08x", a.hi, a.lo) } + +func (a Int64) Uint64() (c Uint64) { + c.hi = uint32(a.hi) + c.lo = a.lo + return +} + +func (a Int64) Cmp(b Int64) int { + // Same body as Uint64.Cmp, + // but behaves differently + // because hi is uint32 not int32. + switch { + case a.hi < b.hi: + return -1 + case a.hi > b.hi: + return 1 + case a.lo < b.lo: + return -1 + case a.lo > b.lo: + return 1 + } + return 0 +} + +func (a Int64) LeftShift(b uint) (c Int64) { return a.Uint64().LeftShift(b).Int64() } + +func (a Int64) RightShift(b uint) (c Int64) { + switch { + case b >= 64: + c.hi = a.hi >> 31 // sign extend + c.lo = uint32(c.hi) + case b >= 32: + c.hi = a.hi >> 31 // sign extend + c.lo = uint32(a.hi >> (b - 32)) + default: + c.hi = a.hi >> b + c.lo = uint32(a.hi<<(32-b)) | a.lo>>b + } + return +} + +func (a Int64) LeftShift64(b Uint64) (c Int64) { + if b.hi != 0 || b.lo >= 64 { + return + } + return a.LeftShift(uint(b.lo)) +} + +func (a Int64) RightShift64(b Uint64) (c Int64) { + if b.hi != 0 || b.lo >= 64 { + return a.RightShift(64) + } + return a.RightShift(uint(b.lo)) +} + +func (a Int64) Plus(b Int64) (c Int64) { return a.Uint64().Plus(b.Uint64()).Int64() } + +func (a Int64) Minus(b Int64) (c Int64) { return a.Uint64().Minus(b.Uint64()).Int64() } + +func (a Int64) Neg() (c Int64) { return a.Uint64().Neg().Int64() } + +func (a Int64) Com() (c Int64) { return a.Uint64().Com().Int64() } + +func (a Int64) Times(b Int64) (c Int64) { return a.Uint64().Times(b.Uint64()).Int64() } + +func (a Int64) DivMod(b Int64) (quo Int64, rem Int64) { + var zero Int64 + + quoSign := +1 + remSign := +1 + if a.Cmp(zero) < 0 { + quoSign = -1 + remSign = -1 + a = a.Neg() + } + if b.Cmp(zero) < 0 { + quoSign = -quoSign + b = b.Neg() + } + + q, r := a.Uint64().DivMod(b.Uint64()) + quo = q.Int64() + rem = r.Int64() + + if quoSign < 0 { + quo = quo.Neg() + } + if remSign < 0 { + rem = rem.Neg() + } + return +} + +func (a Int64) And(b Int64) (c Int64) { return a.Uint64().And(b.Uint64()).Int64() } + +func (a Int64) AndNot(b Int64) (c Int64) { return a.Uint64().AndNot(b.Uint64()).Int64() } + +func (a Int64) Or(b Int64) (c Int64) { return a.Uint64().Or(b.Uint64()).Int64() } + +func (a Int64) Xor(b Int64) (c Int64) { return a.Uint64().Xor(b.Uint64()).Int64() } + +func (a Int64) String() string { + if a.hi < 0 { + return fmt.Sprintf("-%s", a.Neg().Uint64()) + } + return a.Uint64().String() +} + +var int64Values = []Int64{ + Int64{0, 0}, + Int64{0, 1}, + Int64{0, 2}, + Int64{0, 3}, + Int64{0, 100}, + Int64{0, 10001}, + Int64{0, 1<<31 - 1}, + Int64{0, 1 << 31}, + Int64{0, 1<<31 + 1}, + Int64{0, 1<<32 - 1<<30}, + Int64{0, 1<<32 - 1}, + Int64{1, 0}, + Int64{1, 1}, + Int64{2, 0}, + Int64{1<<31 - 1, 1<<32 - 10000}, + Int64{1<<31 - 1, 1<<32 - 1}, + Int64{0x789abcde, 0xf0123456}, + + Int64{-1, 1<<32 - 1}, + Int64{-1, 1<<32 - 2}, + Int64{-1, 1<<32 - 3}, + Int64{-1, 1<<32 - 100}, + Int64{-1, 1<<32 - 10001}, + Int64{-1, 1<<32 - (1<<31 - 1)}, + Int64{-1, 1<<32 - 1<<31}, + Int64{-1, 1<<32 - (1<<31 + 1)}, + Int64{-1, 1<<32 - (1<<32 - 1<<30)}, + Int64{-1, 0}, + Int64{-1, 1}, + Int64{-2, 0}, + Int64{-(1 << 31), 10000}, + Int64{-(1 << 31), 1}, + Int64{-(1 << 31), 0}, + Int64{-0x789abcde, 0xf0123456}, +} + +var uint64Values = []Uint64{ + Uint64{0, 0}, + Uint64{0, 1}, + Uint64{0, 2}, + Uint64{0, 3}, + Uint64{0, 100}, + Uint64{0, 10001}, + Uint64{0, 1<<31 - 1}, + Uint64{0, 1 << 31}, + Uint64{0, 1<<31 + 1}, + Uint64{0, 1<<32 - 1<<30}, + Uint64{0, 1<<32 - 1}, + Uint64{1, 0}, + Uint64{1, 1}, + Uint64{2, 0}, + Uint64{1<<31 - 1, 1<<32 - 10000}, + Uint64{1<<31 - 1, 1<<32 - 1}, + Uint64{1<<32 - 1<<30, 0}, + Uint64{1<<32 - 1, 0}, + Uint64{1<<32 - 1, 1<<32 - 100}, + Uint64{1<<32 - 1, 1<<32 - 1}, + Uint64{0x789abcde, 0xf0123456}, + Uint64{0xfedcba98, 0x76543210}, +} + +var shiftValues = []Uint64{ + Uint64{0, 0}, + Uint64{0, 1}, + Uint64{0, 2}, + Uint64{0, 3}, + Uint64{0, 15}, + Uint64{0, 16}, + Uint64{0, 17}, + Uint64{0, 31}, + Uint64{0, 32}, + Uint64{0, 33}, + Uint64{0, 61}, + Uint64{0, 62}, + Uint64{0, 63}, + Uint64{0, 64}, + Uint64{0, 65}, + Uint64{0, 1<<32 - 1}, + Uint64{1, 0}, + Uint64{1, 1}, + Uint64{1 << 28, 0}, + Uint64{1 << 31, 0}, + Uint64{1<<32 - 1, 0}, + Uint64{1<<32 - 1, 1<<32 - 1}, +} + +var ntest = 0 + +// Part 1 is tests of variable operations; generic functions +// called by repetitive code. Could make a table but not worth it. + +const prolog = "\n" + + "package main\n" + + "\n" + + "import \"os\"\n" + + "\n" + + "var ok = true\n" + + "\n" + + "func testInt64Unary(a, plus, xor, minus int64) {\n" + + " if n, op, want := +a, `+`, plus; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" + + " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" + + " if n, op, want := -a, `-`, minus; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + + "func testInt64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot int64, dodiv bool) {\n" + + " if n, op, want := a + b, `+`, add; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if dodiv {\n" + + " if n, op, want := a / b, `/`, div; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a % b, `%`, mod; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " }\n" + + " if n, op, want := a & b, `&`, and; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a | b, `|`, or; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a &^ b, `&^`, andnot; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + + "func testInt64Shift(a int64, b uint64, left, right int64) {\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`int64`, a, op, `uint64`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`int64`, a, op, `uint64`, s, `=`, n, `should be`, want); }\n" + + " if uint64(uint(b)) == b {\n" + + " b := uint(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`int64`, a, op, `uint`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`int64`, a, op, `uint`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint32(b)) == b {\n" + + " b := uint32(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`int64`, a, op, `uint32`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`int64`, a, op, `uint32`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint16(b)) == b {\n" + + " b := uint16(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`int64`, a, op, `uint16`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`int64`, a, op, `uint16`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint8(b)) == b {\n" + + " b := uint8(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`int64`, a, op, `uint8`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`int64`, a, op, `uint8`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + "}\n" + + "\n" + + "func testUint64Unary(a, plus, xor, minus uint64) {\n" + + " if n, op, want := +a, `+`, plus; n != want { ok=false; println(`uint64`, op, a, `=`, n, `should be`, want); }\n" + + " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`uint64`, op, a, `=`, n, `should be`, want); }\n" + + " if n, op, want := -a, `-`, minus; n != want { ok=false; println(`uint64`, op, a, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + + "func testUint64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot uint64, dodiv bool) {\n" + + " if n, op, want := a + b, `+`, add; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if dodiv {\n" + + " if n, op, want := a / b, `/`, div; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a % b, `%`, mod; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " }\n" + + " if n, op, want := a & b, `&`, and; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a | b, `|`, or; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a &^ b, `&^`, andnot; n != want { ok=false; println(`uint64`, a, op, b, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + + "func testUint64Shift(a, b, left, right uint64) {\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`uint64`, a, op, `uint64`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`uint64`, a, op, `uint64`, s, `=`, n, `should be`, want); }\n" + + " if uint64(uint(b)) == b {\n" + + " b := uint(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`uint64`, a, op, `uint`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`uint64`, a, op, `uint`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint32(b)) == b {\n" + + " b := uint32(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`uint64`, a, op, `uint32`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`uint64`, a, op, `uint32`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint16(b)) == b {\n" + + " b := uint16(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`uint64`, a, op, `uint16`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`uint64`, a, op, `uint16`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + " if uint64(uint8(b)) == b {\n" + + " b := uint8(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(`uint64`, a, op, `uint8`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(`uint64`, a, op, `uint8`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + "}\n" + + "\n" + +func varTests() { + fmt.Fprint(bout, prolog) + for _, a := range int64Values { + fmt.Fprintf(bout, "func test%v() {\n", ntest) + ntest++ + fmt.Fprintf(bout, "\ttestInt64Unary(%v, %v, %v, %v);\n", a, a, a.Com(), a.Neg()) + for _, b := range int64Values { + var div, mod Int64 + dodiv := false + var zero Int64 + if b.Cmp(zero) != 0 { // b != 0 + // Can't divide by zero but also can't divide -0x8000...000 by -1. + var bigneg = Int64{-0x80000000, 0} + var minus1 = Int64{-1, ^uint32(0)} + if a.Cmp(bigneg) != 0 || b.Cmp(minus1) != 0 { // a != -1<<63 || b != -1 + div, mod = a.DivMod(b) + dodiv = true + } + } + fmt.Fprintf(bout, "\ttestInt64Binary(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + a, b, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + } + for _, b := range shiftValues { + fmt.Fprintf(bout, "\ttestInt64Shift(%v, %v, %v, %v);\n", + a, b, a.LeftShift64(b), a.RightShift64(b)) + } + fmt.Fprintf(bout, "}\n") + } + + for _, a := range uint64Values { + fmt.Fprintf(bout, "func test%v() {\n", ntest) + ntest++ + fmt.Fprintf(bout, "\ttestUint64Unary(%v, %v, %v, %v);\n", a, a, a.Com(), a.Neg()) + for _, b := range uint64Values { + var div, mod Uint64 + dodiv := false + var zero Uint64 + if b.Cmp(zero) != 0 { // b != 0 + div, mod = a.DivMod(b) + dodiv = true + } + fmt.Fprintf(bout, "\ttestUint64Binary(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + a, b, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + } + for _, b := range shiftValues { + fmt.Fprintf(bout, "\ttestUint64Shift(%v, %v, %v, %v);\n", + a, b, a.LeftShift64(b), a.RightShift64(b)) + } + fmt.Fprintf(bout, "}\n") + } +} + +// Part 2 is tests of operations involving one variable and one constant. + +const binaryConstL = "func test%vBinaryL%v(b, add, sub, mul, div, mod, and, or, xor, andnot %v, dodiv bool) {\n" + + " const a %v = %v;\n" + + " const typ = `%s`;\n" + + " if n, op, want := a + b, `+`, add; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if dodiv {\n" + + " if n, op, want := a / b, `/`, div; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a %% b, `%%`, mod; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " }\n" + + " if n, op, want := a & b, `&`, and; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a | b, `|`, or; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a &^ b, `&^`, andnot; n != want { ok=false; println(typ, `const`, a, op, `var`, b, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + +const binaryConstR = "func test%vBinaryR%v(a, add, sub, mul, div, mod, and, or, xor, andnot %v, dodiv bool) {\n" + + " const b %v = %v;\n" + + " const typ = `%s`;\n" + + " if n, op, want := a + b, `+`, add; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if dodiv {\n" + + " if n, op, want := a / b, `/`, div; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a %% b, `%%`, mod; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " }\n" + + " if n, op, want := a & b, `&`, and; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a | b, `|`, or; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a &^ b, `&^`, andnot; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + +const binaryConstR0 = "func test%vBinaryR%v(a, add, sub, mul, div, mod, and, or, xor, andnot %v, dodiv bool) {\n" + + " const b %v = %v;\n" + + " const typ = `%s`;\n" + + " if n, op, want := a + b, `+`, add; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a & b, `&`, and; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a | b, `|`, or; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a ^ b, `^`, xor; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + " if n, op, want := a &^ b, `&^`, andnot; n != want { ok=false; println(typ, `var`, a, op, `const`, b, `=`, n, `should be`, want); }\n" + + "}\n" + + "\n" + +const shiftConstL = "func test%vShiftL%v(b uint64, left, right %v) {\n" + + " const a %v = %v;\n" + + " const typ = `%s`;\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(typ, `const`, a, op, `var`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(typ, `const`, a, op, `var`, s, `=`, n, `should be`, want); }\n" + + " if uint64(uint32(b)) == b {\n" + + " b := uint32(b);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(typ, `const`, a, op, `var`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(typ, `const`, a, op, `var`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + "}\n" + +const shiftConstR = "func test%vShiftR%v(a, left, right %v) {\n" + + " const b uint64 = %v;\n" + + " const typ = `%s`;\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(typ, `var`, a, op, `const`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(typ, `var`, a, op, `const`, s, `=`, n, `should be`, want); }\n" + + " if b & 0xffffffff == b {\n" + + " const b = uint32(b & 0xffffffff);\n" + + " if n, op, s, want := a << b, `<<`, b, left; n != want { ok=false; println(typ, `var`, a, op, `const`, s, `=`, n, `should be`, want); }\n" + + " if n, op, s, want := a >> b, `>>`, b, right; n != want { ok=false; println(typ, `var`, a, op, `const`, s, `=`, n, `should be`, want); }\n" + + " }\n" + + "}\n" + +func constTests() { + for i, a := range int64Values { + fmt.Fprintf(bout, binaryConstL, "Int64", i, "int64", "int64", a, "int64") + if a.hi == 0 && a.lo == 0 { + fmt.Fprintf(bout, binaryConstR0, "Int64", i, "int64", "int64", a, "int64") + } else { + fmt.Fprintf(bout, binaryConstR, "Int64", i, "int64", "int64", a, "int64") + } + fmt.Fprintf(bout, shiftConstL, "Int64", i, "int64", "int64", a, "int64") + } + for i, a := range uint64Values { + fmt.Fprintf(bout, binaryConstL, "Uint64", i, "uint64", "uint64", a, "uint64") + if a.hi == 0 && a.lo == 0 { + fmt.Fprintf(bout, binaryConstR0, "Uint64", i, "uint64", "uint64", a, "uint64") + } else { + fmt.Fprintf(bout, binaryConstR, "Uint64", i, "uint64", "uint64", a, "uint64") + } + fmt.Fprintf(bout, shiftConstL, "Uint64", i, "uint64", "uint64", a, "uint64") + } + for i, a := range shiftValues { + fmt.Fprintf(bout, shiftConstR, "Int64", i, "int64", a, "int64") + fmt.Fprintf(bout, shiftConstR, "Uint64", i, "uint64", a, "uint64") + } + for i, a := range int64Values { + fmt.Fprintf(bout, "func test%v() {\n", ntest) + ntest++ + for j, b := range int64Values { + var div, mod Int64 + dodiv := false + var zero Int64 + if b.Cmp(zero) != 0 { // b != 0 + // Can't divide by zero but also can't divide -0x8000...000 by -1. + var bigneg = Int64{-0x80000000, 0} + var minus1 = Int64{-1, ^uint32(0)} + if a.Cmp(bigneg) != 0 || b.Cmp(minus1) != 0 { // a != -1<<63 || b != -1 + div, mod = a.DivMod(b) + dodiv = true + } + } + fmt.Fprintf(bout, "\ttestInt64BinaryL%v(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + i, b, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + fmt.Fprintf(bout, "\ttestInt64BinaryR%v(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + j, a, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + } + for j, b := range shiftValues { + fmt.Fprintf(bout, "\ttestInt64ShiftL%v(%v, %v, %v);\n", + i, b, a.LeftShift64(b), a.RightShift64(b)) + fmt.Fprintf(bout, "\ttestInt64ShiftR%v(%v, %v, %v);\n", + j, a, a.LeftShift64(b), a.RightShift64(b)) + } + fmt.Fprintf(bout, "}\n") + } + for i, a := range uint64Values { + fmt.Fprintf(bout, "func test%v() {\n", ntest) + ntest++ + for j, b := range uint64Values { + var div, mod Uint64 + dodiv := false + var zero Uint64 + if b.Cmp(zero) != 0 { // b != 0 + div, mod = a.DivMod(b) + dodiv = true + } + fmt.Fprintf(bout, "\ttestUint64BinaryL%v(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + i, b, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + fmt.Fprintf(bout, "\ttestUint64BinaryR%v(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n", + j, a, a.Plus(b), a.Minus(b), a.Times(b), div, mod, + a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv) + } + for j, b := range shiftValues { + fmt.Fprintf(bout, "\ttestUint64ShiftL%v(%v, %v, %v);\n", + i, b, a.LeftShift64(b), a.RightShift64(b)) + fmt.Fprintf(bout, "\ttestUint64ShiftR%v(%v, %v, %v);\n", + j, a, a.LeftShift64(b), a.RightShift64(b)) + } + fmt.Fprintf(bout, "}\n") + } +} + +func main() { + bout = bufio.NewWriter(os.Stdout) + varTests() + constTests() + + fmt.Fprintf(bout, "func main() {\n") + for i := 0; i < ntest; i++ { + fmt.Fprintf(bout, "\ttest%v();\n", i) + } + fmt.Fprintf(bout, "\tif !ok { os.Exit(1) }\n") + fmt.Fprintf(bout, "}\n") + bout.Flush() +} diff --git a/platform/dbops/binaries/go/go/test/README.md b/platform/dbops/binaries/go/go/test/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1d37f2d5ca9a82dfaecc63ce004773f653c85996 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/README.md @@ -0,0 +1,19 @@ +The test directory contains tests of the Go tool chain and runtime. +It includes black box tests, regression tests, and error output tests. +They are run as part of all.bash. + +To run just these tests, execute: + + ../bin/go test cmd/internal/testdir + +To run just tests from specified files in this directory, execute: + + ../bin/go test cmd/internal/testdir -run='Test/(file1.go|file2.go|...)' + +Standard library tests should be written as regular Go tests in the appropriate package. + +The tool chain and runtime also have regular Go tests in their packages. +The main reasons to add a new test to this directory are: + +* it is most naturally expressed using the test runner; or +* it is also applicable to `gccgo` and other Go tool chains. diff --git a/platform/dbops/binaries/go/go/test/alg.go b/platform/dbops/binaries/go/go/test/alg.go new file mode 100644 index 0000000000000000000000000000000000000000..7bb1b6bd6b45a87ac3a5245bdb30f5fbfe32d344 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/alg.go @@ -0,0 +1,46 @@ +// build + +// 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. + +// This file tests that required algs are generated, +// even when similar types have been marked elsewhere +// as not needing algs. See CLs 19769 and 19770. + +package main + +import "fmt" + +//go:noinline +func f(m map[[8]string]int) int { + var k [8]string + return m[k] +} + +//go:noinline +func g(m map[[8]interface{}]int) int { + var k [8]interface{} + return m[k] +} + +//go:noinline +func h(m map[[2]string]int) int { + var k [2]string + return m[k] +} + +type T map[string]interface{} + +func v(x ...string) string { + return x[0] + x[1] +} + +func main() { + fmt.Println( + f(map[[8]string]int{}), + g(map[[8]interface{}]int{}), + h(map[[2]string]int{}), + v("a", "b"), + ) +} diff --git a/platform/dbops/binaries/go/go/test/alias.go b/platform/dbops/binaries/go/go/test/alias.go new file mode 100644 index 0000000000000000000000000000000000000000..aabaef8f20e27e3216348e38ac7074bb7f07227f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/alias.go @@ -0,0 +1,33 @@ +// errorcheck + +// Copyright 2011 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. + +// Test that error messages say what the source file says +// (uint8 vs byte, int32 vs. rune). +// Does not compile. + +package main + +import ( + "fmt" + "unicode/utf8" +) + +func f(byte) {} +func g(uint8) {} + +func main() { + var x float64 + f(x) // ERROR "byte" + g(x) // ERROR "uint8" + + // Test across imports. + + var ff fmt.Formatter + var fs fmt.State + ff.Format(fs, x) // ERROR "rune" + + utf8.RuneStart(x) // ERROR "byte" +} diff --git a/platform/dbops/binaries/go/go/test/alias1.go b/platform/dbops/binaries/go/go/test/alias1.go new file mode 100644 index 0000000000000000000000000000000000000000..5707917d201227570aac0d34df8e52cdb0562973 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/alias1.go @@ -0,0 +1,54 @@ +// run + +// Copyright 2011 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. + +// Test that dynamic interface checks treat byte=uint8 +// and rune=int or rune=int32. + +package main + +func main() { + var x interface{} + + x = byte(1) + switch x.(type) { + case uint8: + // ok + default: + panic("byte != uint8") + } + + x = uint8(2) + switch x.(type) { + case byte: + // ok + default: + panic("uint8 != byte") + } + + rune32 := false + x = rune(3) + switch x.(type) { + case int: + // ok + case int32: + // must be new code + rune32 = true + default: + panic("rune != int and rune != int32") + } + + if rune32 { + x = int32(4) + } else { + x = int(5) + } + switch x.(type) { + case rune: + // ok + default: + panic("int (or int32) != rune") + } +} diff --git a/platform/dbops/binaries/go/go/test/alias2.go b/platform/dbops/binaries/go/go/test/alias2.go new file mode 100644 index 0000000000000000000000000000000000000000..2846e5dc31d21e8e455327eb789f9c202eb20053 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/alias2.go @@ -0,0 +1,104 @@ +// errorcheck + +// 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. + +// Test basic restrictions on type aliases. + +package p + +import ( + "reflect" + . "reflect" +) + +type T0 struct{} + +// Valid type alias declarations. + +type _ = T0 +type _ = int +type _ = struct{} +type _ = reflect.Value +type _ = Value + +type ( + A0 = T0 + A1 = int + A2 = struct{} + A3 = reflect.Value + A4 = Value + A5 = Value + + N0 A0 +) + +// Methods can be declared on the original named type and the alias. +func (T0) m1() {} // GCCGO_ERROR "previous" +func (*T0) m1() {} // ERROR "method redeclared: T0\.m1|T0\.m1 already declared|redefinition of .m1." +func (A0) m1() {} // ERROR "T0\.m1 already declared|redefinition of .m1." +func (A0) m1() {} // ERROR "T0\.m1 already declared|redefinition of .m1." +func (A0) m2() {} + +// Type aliases and the original type name can be used interchangeably. +var _ A0 = T0{} +var _ T0 = A0{} + +// But aliases and original types cannot be used with new types based on them. +var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration" +var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type T0\) as N0 value in variable declaration" + +var _ A5 = Value{} + +var _ interface { + m1() + m2() +} = T0{} + +var _ interface { + m1() + m2() +} = A0{} + +func _() { + type _ = T0 + type _ = int + type _ = struct{} + type _ = reflect.Value + type _ = Value + + type ( + A0 = T0 + A1 = int + A2 = struct{} + A3 = reflect.Value + A4 = Value + A5 Value + + N0 A0 + ) + + var _ A0 = T0{} + var _ T0 = A0{} + + var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration" + var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type T0\) as N0 value in variable declaration" + + var _ A5 = Value{} // ERROR "cannot use Value{} \(value of type reflect\.Value\) as A5 value in variable declaration" +} + +// Invalid type alias declarations. + +type _ = reflect.ValueOf // ERROR "reflect.ValueOf .*is not a type|expected type" + +func (A1) m() {} // ERROR "cannot define new methods on non-local type int|may not define methods on non-local type" +func (A2) m() {} // ERROR "invalid receiver type" +func (A3) m() {} // ERROR "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type" +func (A4) m() {} // ERROR "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type" + +type B1 = struct{} + +func (B1) m() {} // ERROR "invalid receiver type" + +// TODO(gri) expand diff --git a/platform/dbops/binaries/go/go/test/alias3.go b/platform/dbops/binaries/go/go/test/alias3.go new file mode 100644 index 0000000000000000000000000000000000000000..c3732c311b75f5a3b24749ddd578a8ddd5281651 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/alias3.go @@ -0,0 +1,7 @@ +// rundir + +// 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. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/align.go b/platform/dbops/binaries/go/go/test/align.go new file mode 100644 index 0000000000000000000000000000000000000000..61d07c49b86876ad9450dbeeceb33eda34555f9f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/align.go @@ -0,0 +1,29 @@ +// run + +// 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 main + +// On 32-bit archs, one of the f fields of a [2]T +// will be unaligned (address of 4 mod 8). +// Make sure we can access the f fields successfully, +// particularly for load-add combo instructions +// introduced by CL 102036. +type T struct { + pad uint32 + f float64 +} + +//go:noinline +func f(t, u *T) float64 { + return 3.0 + t.f + u.f +} + +func main() { + t := [2]T{{0, 1.0}, {0, 2.0}} + sink = f(&t[0], &t[1]) +} + +var sink float64 diff --git a/platform/dbops/binaries/go/go/test/append.go b/platform/dbops/binaries/go/go/test/append.go new file mode 100644 index 0000000000000000000000000000000000000000..3d160634060c87631652f8ac1c784e0cd947ef1c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/append.go @@ -0,0 +1,254 @@ +// run + +// Copyright 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. + +// Semi-exhaustive test for the append predeclared function. + +package main + +import ( + "fmt" + "reflect" +) + +func verify(name string, result, expected interface{}) { + if !reflect.DeepEqual(result, expected) { + panic(name) + } +} + +func main() { + for _, t := range tests { + verify(t.name, t.result, t.expected) + } + verifyStruct() + verifyInterface() + verifyType() +} + +var ( + zero int = 0 + one int = 1 +) + +var tests = []struct { + name string + result, expected interface{} +}{ + {"bool a", append([]bool{}), []bool{}}, + {"bool b", append([]bool{}, true), []bool{true}}, + {"bool c", append([]bool{}, true, false, true, true), []bool{true, false, true, true}}, + + {"bool d", append([]bool{true, false, true}), []bool{true, false, true}}, + {"bool e", append([]bool{true, false, true}, false), []bool{true, false, true, false}}, + {"bool f", append([]bool{true, false, true}, false, false, false), []bool{true, false, true, false, false, false}}, + + {"bool g", append([]bool{}, []bool{true}...), []bool{true}}, + {"bool h", append([]bool{}, []bool{true, false, true, false}...), []bool{true, false, true, false}}, + + {"bool i", append([]bool{true, false, true}, []bool{true}...), []bool{true, false, true, true}}, + {"bool j", append([]bool{true, false, true}, []bool{true, true, true}...), []bool{true, false, true, true, true, true}}, + + {"byte a", append([]byte{}), []byte{}}, + {"byte b", append([]byte{}, 0), []byte{0}}, + {"byte c", append([]byte{}, 0, 1, 2, 3), []byte{0, 1, 2, 3}}, + + {"byte d", append([]byte{0, 1, 2}), []byte{0, 1, 2}}, + {"byte e", append([]byte{0, 1, 2}, 3), []byte{0, 1, 2, 3}}, + {"byte f", append([]byte{0, 1, 2}, 3, 4, 5), []byte{0, 1, 2, 3, 4, 5}}, + + {"byte g", append([]byte{}, []byte{0}...), []byte{0}}, + {"byte h", append([]byte{}, []byte{0, 1, 2, 3}...), []byte{0, 1, 2, 3}}, + + {"byte i", append([]byte{0, 1, 2}, []byte{3}...), []byte{0, 1, 2, 3}}, + {"byte j", append([]byte{0, 1, 2}, []byte{3, 4, 5}...), []byte{0, 1, 2, 3, 4, 5}}, + + {"bytestr a", append([]byte{}, "0"...), []byte("0")}, + {"bytestr b", append([]byte{}, "0123"...), []byte("0123")}, + + {"bytestr c", append([]byte("012"), "3"...), []byte("0123")}, + {"bytestr d", append([]byte("012"), "345"...), []byte("012345")}, + + {"int16 a", append([]int16{}), []int16{}}, + {"int16 b", append([]int16{}, 0), []int16{0}}, + {"int16 c", append([]int16{}, 0, 1, 2, 3), []int16{0, 1, 2, 3}}, + + {"int16 d", append([]int16{0, 1, 2}), []int16{0, 1, 2}}, + {"int16 e", append([]int16{0, 1, 2}, 3), []int16{0, 1, 2, 3}}, + {"int16 f", append([]int16{0, 1, 2}, 3, 4, 5), []int16{0, 1, 2, 3, 4, 5}}, + + {"int16 g", append([]int16{}, []int16{0}...), []int16{0}}, + {"int16 h", append([]int16{}, []int16{0, 1, 2, 3}...), []int16{0, 1, 2, 3}}, + + {"int16 i", append([]int16{0, 1, 2}, []int16{3}...), []int16{0, 1, 2, 3}}, + {"int16 j", append([]int16{0, 1, 2}, []int16{3, 4, 5}...), []int16{0, 1, 2, 3, 4, 5}}, + + {"uint32 a", append([]uint32{}), []uint32{}}, + {"uint32 b", append([]uint32{}, 0), []uint32{0}}, + {"uint32 c", append([]uint32{}, 0, 1, 2, 3), []uint32{0, 1, 2, 3}}, + + {"uint32 d", append([]uint32{0, 1, 2}), []uint32{0, 1, 2}}, + {"uint32 e", append([]uint32{0, 1, 2}, 3), []uint32{0, 1, 2, 3}}, + {"uint32 f", append([]uint32{0, 1, 2}, 3, 4, 5), []uint32{0, 1, 2, 3, 4, 5}}, + + {"uint32 g", append([]uint32{}, []uint32{0}...), []uint32{0}}, + {"uint32 h", append([]uint32{}, []uint32{0, 1, 2, 3}...), []uint32{0, 1, 2, 3}}, + + {"uint32 i", append([]uint32{0, 1, 2}, []uint32{3}...), []uint32{0, 1, 2, 3}}, + {"uint32 j", append([]uint32{0, 1, 2}, []uint32{3, 4, 5}...), []uint32{0, 1, 2, 3, 4, 5}}, + + {"float64 a", append([]float64{}), []float64{}}, + {"float64 b", append([]float64{}, 0), []float64{0}}, + {"float64 c", append([]float64{}, 0, 1, 2, 3), []float64{0, 1, 2, 3}}, + + {"float64 d", append([]float64{0, 1, 2}), []float64{0, 1, 2}}, + {"float64 e", append([]float64{0, 1, 2}, 3), []float64{0, 1, 2, 3}}, + {"float64 f", append([]float64{0, 1, 2}, 3, 4, 5), []float64{0, 1, 2, 3, 4, 5}}, + + {"float64 g", append([]float64{}, []float64{0}...), []float64{0}}, + {"float64 h", append([]float64{}, []float64{0, 1, 2, 3}...), []float64{0, 1, 2, 3}}, + + {"float64 i", append([]float64{0, 1, 2}, []float64{3}...), []float64{0, 1, 2, 3}}, + {"float64 j", append([]float64{0, 1, 2}, []float64{3, 4, 5}...), []float64{0, 1, 2, 3, 4, 5}}, + + {"complex128 a", append([]complex128{}), []complex128{}}, + {"complex128 b", append([]complex128{}, 0), []complex128{0}}, + {"complex128 c", append([]complex128{}, 0, 1, 2, 3), []complex128{0, 1, 2, 3}}, + + {"complex128 d", append([]complex128{0, 1, 2}), []complex128{0, 1, 2}}, + {"complex128 e", append([]complex128{0, 1, 2}, 3), []complex128{0, 1, 2, 3}}, + {"complex128 f", append([]complex128{0, 1, 2}, 3, 4, 5), []complex128{0, 1, 2, 3, 4, 5}}, + + {"complex128 g", append([]complex128{}, []complex128{0}...), []complex128{0}}, + {"complex128 h", append([]complex128{}, []complex128{0, 1, 2, 3}...), []complex128{0, 1, 2, 3}}, + + {"complex128 i", append([]complex128{0, 1, 2}, []complex128{3}...), []complex128{0, 1, 2, 3}}, + {"complex128 j", append([]complex128{0, 1, 2}, []complex128{3, 4, 5}...), []complex128{0, 1, 2, 3, 4, 5}}, + + {"string a", append([]string{}), []string{}}, + {"string b", append([]string{}, "0"), []string{"0"}}, + {"string c", append([]string{}, "0", "1", "2", "3"), []string{"0", "1", "2", "3"}}, + + {"string d", append([]string{"0", "1", "2"}), []string{"0", "1", "2"}}, + {"string e", append([]string{"0", "1", "2"}, "3"), []string{"0", "1", "2", "3"}}, + {"string f", append([]string{"0", "1", "2"}, "3", "4", "5"), []string{"0", "1", "2", "3", "4", "5"}}, + + {"string g", append([]string{}, []string{"0"}...), []string{"0"}}, + {"string h", append([]string{}, []string{"0", "1", "2", "3"}...), []string{"0", "1", "2", "3"}}, + + {"string i", append([]string{"0", "1", "2"}, []string{"3"}...), []string{"0", "1", "2", "3"}}, + {"string j", append([]string{"0", "1", "2"}, []string{"3", "4", "5"}...), []string{"0", "1", "2", "3", "4", "5"}}, + + {"make a", append([]string{}, make([]string, 0)...), []string{}}, + {"make b", append([]string(nil), make([]string, 0)...), []string(nil)}, + + {"make c", append([]struct{}{}, make([]struct{}, 0)...), []struct{}{}}, + {"make d", append([]struct{}{}, make([]struct{}, 2)...), make([]struct{}, 2)}, + + {"make e", append([]int{0, 1}, make([]int, 0)...), []int{0, 1}}, + {"make f", append([]int{0, 1}, make([]int, 2)...), []int{0, 1, 0, 0}}, + + {"make g", append([]*int{&zero, &one}, make([]*int, 0)...), []*int{&zero, &one}}, + {"make h", append([]*int{&zero, &one}, make([]*int, 2)...), []*int{&zero, &one, nil, nil}}, +} + +func verifyStruct() { + type T struct { + a, b, c string + } + type S []T + e := make(S, 100) + for i := range e { + e[i] = T{"foo", fmt.Sprintf("%d", i), "bar"} + } + + verify("struct a", append(S{}), S{}) + verify("struct b", append(S{}, e[0]), e[0:1]) + verify("struct c", append(S{}, e[0], e[1], e[2]), e[0:3]) + + verify("struct d", append(e[0:1]), e[0:1]) + verify("struct e", append(e[0:1], e[1]), e[0:2]) + verify("struct f", append(e[0:1], e[1], e[2], e[3]), e[0:4]) + + verify("struct g", append(e[0:3]), e[0:3]) + verify("struct h", append(e[0:3], e[3]), e[0:4]) + verify("struct i", append(e[0:3], e[3], e[4], e[5], e[6]), e[0:7]) + + for i := range e { + verify("struct j", append(S{}, e[0:i]...), e[0:i]) + input := make(S, i) + copy(input, e[0:i]) + verify("struct k", append(input, e[i:]...), e) + verify("struct k - input modified", input, e[0:i]) + } + + s := make(S, 10, 20) + r := make(S, len(s)+len(e)) + for i, x := range e { + r[len(s)+i] = x + } + verify("struct l", append(s), s) + verify("struct m", append(s, e...), r) +} + +func verifyInterface() { + type T interface{} + type S []T + e := make(S, 100) + for i := range e { + switch i % 4 { + case 0: + e[i] = i + case 1: + e[i] = "foo" + case 2: + e[i] = fmt.Sprintf("%d", i) + case 3: + e[i] = float64(i) + } + } + + verify("interface a", append(S{}), S{}) + verify("interface b", append(S{}, e[0]), e[0:1]) + verify("interface c", append(S{}, e[0], e[1], e[2]), e[0:3]) + + verify("interface d", append(e[0:1]), e[0:1]) + verify("interface e", append(e[0:1], e[1]), e[0:2]) + verify("interface f", append(e[0:1], e[1], e[2], e[3]), e[0:4]) + + verify("interface g", append(e[0:3]), e[0:3]) + verify("interface h", append(e[0:3], e[3]), e[0:4]) + verify("interface i", append(e[0:3], e[3], e[4], e[5], e[6]), e[0:7]) + + for i := range e { + verify("interface j", append(S{}, e[0:i]...), e[0:i]) + input := make(S, i) + copy(input, e[0:i]) + verify("interface k", append(input, e[i:]...), e) + verify("interface k - input modified", input, e[0:i]) + } + + s := make(S, 10, 20) + r := make(S, len(s)+len(e)) + for i, x := range e { + r[len(s)+i] = x + } + verify("interface l", append(s), s) + verify("interface m", append(s, e...), r) +} + +type T1 []int +type T2 []int + +func verifyType() { + // The second argument to append has type []E where E is the + // element type of the first argument. Test that the compiler + // accepts two slice types that meet that requirement but are + // not assignment compatible. The return type of append is + // the type of the first argument. + t1 := T1{1} + t2 := T2{2} + verify("T1", append(t1, t2...), T1{1, 2}) +} diff --git a/platform/dbops/binaries/go/go/test/append1.go b/platform/dbops/binaries/go/go/test/append1.go new file mode 100644 index 0000000000000000000000000000000000000000..437e30ca236c0ffd960c03ed44d96095d68866a8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/append1.go @@ -0,0 +1,22 @@ +// errorcheck + +// 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. + +// Verify that append arguments requirements are enforced by the +// compiler. + +package main + +func main() { + + s := make([]int, 8) + + _ = append() // ERROR "missing arguments to append|not enough arguments for append" + _ = append(s...) // ERROR "cannot use ... on first argument|not enough arguments in call to append" + _ = append(s, 2, s...) // ERROR "too many arguments to append|too many arguments in call to append" + + _ = append(s, make([]int, 0)) // ERROR "cannot use make\(\[\]int, 0\) \(value of type \[\]int\) as int value in argument to append" + _ = append(s, make([]int, -1)...) // ERROR "negative len argument in make|index -1.* must not be negative" +} diff --git a/platform/dbops/binaries/go/go/test/args.go b/platform/dbops/binaries/go/go/test/args.go new file mode 100644 index 0000000000000000000000000000000000000000..0ffe8101e9d862cbf503becb362e28e4bbdf6cac --- /dev/null +++ b/platform/dbops/binaries/go/go/test/args.go @@ -0,0 +1,23 @@ +// run arg1 arg2 + +// 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. + +// Test os.Args. + +package main + +import "os" + +func main() { + if len(os.Args) != 3 { + panic("argc") + } + if os.Args[1] != "arg1" { + panic("arg1") + } + if os.Args[2] != "arg2" { + panic("arg2") + } +} diff --git a/platform/dbops/binaries/go/go/test/armimm.go b/platform/dbops/binaries/go/go/test/armimm.go new file mode 100644 index 0000000000000000000000000000000000000000..65124ad47a57d8ccfe61af834083b9ff2219d1fc --- /dev/null +++ b/platform/dbops/binaries/go/go/test/armimm.go @@ -0,0 +1,179 @@ +// run + +// 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. + +// This file tests the splitting of constants into +// multiple immediates on arm. + +package main + +import "fmt" + +const c32a = 0x00aa00dd +const c32s = 0x00ffff00 +const c64a = 0x00aa00dd55000066 +const c64s = 0x00ffff00004fff00 + +//go:noinline +func add32a(x uint32) uint32 { + return x + c32a +} + +//go:noinline +func add32s(x uint32) uint32 { + return x + c32s +} + +//go:noinline +func sub32a(x uint32) uint32 { + return x - c32a +} + +//go:noinline +func sub32s(x uint32) uint32 { + return x - c32s +} + +//go:noinline +func or32(x uint32) uint32 { + return x | c32a +} + +//go:noinline +func xor32(x uint32) uint32 { + return x ^ c32a +} + +//go:noinline +func subr32a(x uint32) uint32 { + return c32a - x +} + +//go:noinline +func subr32s(x uint32) uint32 { + return c32s - x +} + +//go:noinline +func bic32(x uint32) uint32 { + return x &^ c32a +} + +//go:noinline +func add64a(x uint64) uint64 { + return x + c64a +} + +//go:noinline +func add64s(x uint64) uint64 { + return x + c64s +} + +//go:noinline +func sub64a(x uint64) uint64 { + return x - c64a +} + +//go:noinline +func sub64s(x uint64) uint64 { + return x - c64s +} + +//go:noinline +func or64(x uint64) uint64 { + return x | c64a +} + +//go:noinline +func xor64(x uint64) uint64 { + return x ^ c64a +} + +//go:noinline +func subr64a(x uint64) uint64 { + return c64a - x +} + +//go:noinline +func subr64s(x uint64) uint64 { + return c64s - x +} + +//go:noinline +func bic64(x uint64) uint64 { + return x &^ c64a +} + +// Note: x-c gets rewritten to x+(-c), so SUB and SBC are not directly testable. +// I disabled that rewrite rule before running this test. + +func main() { + test32() + test64() +} + +func test32() { + var a uint32 = 0x11111111 + var want, got uint32 + if want, got = a+c32a, add32a(a); got != want { + panic(fmt.Sprintf("add32a(%x) = %x, want %x", a, got, want)) + } + if want, got = a+c32s, add32s(a); got != want { + panic(fmt.Sprintf("add32s(%x) = %x, want %x", a, got, want)) + } + if want, got = a-c32a, sub32a(a); got != want { + panic(fmt.Sprintf("sub32a(%x) = %x, want %x", a, got, want)) + } + if want, got = a-c32s, sub32s(a); got != want { + panic(fmt.Sprintf("sub32s(%x) = %x, want %x", a, got, want)) + } + if want, got = a|c32a, or32(a); got != want { + panic(fmt.Sprintf("or32(%x) = %x, want %x", a, got, want)) + } + if want, got = a^c32a, xor32(a); got != want { + panic(fmt.Sprintf("xor32(%x) = %x, want %x", a, got, want)) + } + if want, got = c32a-a, subr32a(a); got != want { + panic(fmt.Sprintf("subr32a(%x) = %x, want %x", a, got, want)) + } + if want, got = c32s-a, subr32s(a); got != want { + panic(fmt.Sprintf("subr32s(%x) = %x, want %x", a, got, want)) + } + if want, got = a&^c32a, bic32(a); got != want { + panic(fmt.Sprintf("bic32(%x) = %x, want %x", a, got, want)) + } +} + +func test64() { + var a uint64 = 0x1111111111111111 + var want, got uint64 + if want, got = a+c64a, add64a(a); got != want { + panic(fmt.Sprintf("add64a(%x) = %x, want %x", a, got, want)) + } + if want, got = a+c64s, add64s(a); got != want { + panic(fmt.Sprintf("add64s(%x) = %x, want %x", a, got, want)) + } + if want, got = a-c64a, sub64a(a); got != want { + panic(fmt.Sprintf("sub64a(%x) = %x, want %x", a, got, want)) + } + if want, got = a-c64s, sub64s(a); got != want { + panic(fmt.Sprintf("sub64s(%x) = %x, want %x", a, got, want)) + } + if want, got = a|c64a, or64(a); got != want { + panic(fmt.Sprintf("or64(%x) = %x, want %x", a, got, want)) + } + if want, got = a^c64a, xor64(a); got != want { + panic(fmt.Sprintf("xor64(%x) = %x, want %x", a, got, want)) + } + if want, got = c64a-a, subr64a(a); got != want { + panic(fmt.Sprintf("subr64a(%x) = %x, want %x", a, got, want)) + } + if want, got = c64s-a, subr64s(a); got != want { + panic(fmt.Sprintf("subr64s(%x) = %x, want %x", a, got, want)) + } + if want, got = a&^c64a, bic64(a); got != want { + panic(fmt.Sprintf("bic64(%x) = %x, want %x", a, got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/asmhdr.go b/platform/dbops/binaries/go/go/test/asmhdr.go new file mode 100644 index 0000000000000000000000000000000000000000..772f98e2cc6214f5d603ebc7f88f04410da7220b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/asmhdr.go @@ -0,0 +1,9 @@ +// buildrundir + +// 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. + +// Test the -asmhdr output of the compiler. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/assign.go b/platform/dbops/binaries/go/go/test/assign.go new file mode 100644 index 0000000000000000000000000000000000000000..bdec58b710f4210a7741a6973a5cd4ed0ce64211 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/assign.go @@ -0,0 +1,68 @@ +// errorcheck + +// 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. + +// Verify simple assignment errors are caught by the compiler. +// Does not compile. + +package main + +import "sync" + +type T struct { + int + sync.Mutex +} + +func main() { + { + var x, y sync.Mutex + x = y // ok + _ = x + } + { + var x, y T + x = y // ok + _ = x + } + { + var x, y [2]sync.Mutex + x = y // ok + _ = x + } + { + var x, y [2]T + x = y // ok + _ = x + } + { + x := sync.Mutex{0, 0} // ERROR "assignment.*Mutex" + _ = x + } + { + x := sync.Mutex{key: 0} // ERROR "(unknown|assignment).*Mutex" + _ = x + } + { + x := &sync.Mutex{} // ok + var y sync.Mutex // ok + y = *x // ok + *x = y // ok + _ = x + _ = y + } + { + var x = 1 + { + x, x := 2, 3 // ERROR ".*x.* repeated on left side of :=|x redeclared in this block" + _ = x + } + _ = x + } + { + a, a := 1, 2 // ERROR ".*a.* repeated on left side of :=|a redeclared in this block" + _ = a + } +} diff --git a/platform/dbops/binaries/go/go/test/assign1.go b/platform/dbops/binaries/go/go/test/assign1.go new file mode 100644 index 0000000000000000000000000000000000000000..b9e0325ce8c9757a7f0aabdc16b864f32fadd1d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/assign1.go @@ -0,0 +1,346 @@ +// errorcheck + +// 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. + +// Verify assignment rules are enforced by the compiler. +// Does not compile. + +package main + +type ( + A [10]int + B []int + C chan int + F func() int + I interface { + m() int + } + M map[int]int + P *int + S struct { + X int + } + + A1 [10]int + B1 []int + C1 chan int + F1 func() int + I1 interface { + m() int + } + M1 map[int]int + P1 *int + S1 struct { + X int + } +) + +var ( + a0 [10]int + b0 []int + c0 chan int + f0 func() int + i0 interface { + m() int + } + m0 map[int]int + p0 *int + s0 struct { + X int + } + + a A + b B + c C + f F + i I + m M + p P + s S + + a1 A1 + b1 B1 + c1 C1 + f1 F1 + i1 I1 + m1 M1 + p1 P1 + s1 S1 + + pa0 *[10]int + pb0 *[]int + pc0 *chan int + pf0 *func() int + pi0 *interface { + m() int + } + pm0 *map[int]int + pp0 **int + ps0 *struct { + X int + } + + pa *A + pb *B + pc *C + pf *F + pi *I + pm *M + pp *P + ps *S + + pa1 *A1 + pb1 *B1 + pc1 *C1 + pf1 *F1 + pi1 *I1 + pm1 *M1 + pp1 *P1 + ps1 *S1 +) + +func main() { + a0 = a + a0 = a1 + a = a0 + a = a1 // ERROR "cannot use" + a1 = a0 + a1 = a // ERROR "cannot use" + + b0 = b + b0 = b1 + b = b0 + b = b1 // ERROR "cannot use" + b1 = b0 + b1 = b // ERROR "cannot use" + + c0 = c + c0 = c1 + c = c0 + c = c1 // ERROR "cannot use" + c1 = c0 + c1 = c // ERROR "cannot use" + + f0 = f + f0 = f1 + f = f0 + f = f1 // ERROR "cannot use" + f1 = f0 + f1 = f // ERROR "cannot use" + + i0 = i + i0 = i1 + i = i0 + i = i1 + i1 = i0 + i1 = i + + m0 = m + m0 = m1 + m = m0 + m = m1 // ERROR "cannot use" + m1 = m0 + m1 = m // ERROR "cannot use" + + p0 = p + p0 = p1 + p = p0 + p = p1 // ERROR "cannot use" + p1 = p0 + p1 = p // ERROR "cannot use" + + s0 = s + s0 = s1 + s = s0 + s = s1 // ERROR "cannot use" + s1 = s0 + s1 = s // ERROR "cannot use" + + pa0 = pa // ERROR "cannot use|incompatible" + pa0 = pa1 // ERROR "cannot use|incompatible" + pa = pa0 // ERROR "cannot use|incompatible" + pa = pa1 // ERROR "cannot use|incompatible" + pa1 = pa0 // ERROR "cannot use|incompatible" + pa1 = pa // ERROR "cannot use|incompatible" + + pb0 = pb // ERROR "cannot use|incompatible" + pb0 = pb1 // ERROR "cannot use|incompatible" + pb = pb0 // ERROR "cannot use|incompatible" + pb = pb1 // ERROR "cannot use|incompatible" + pb1 = pb0 // ERROR "cannot use|incompatible" + pb1 = pb // ERROR "cannot use|incompatible" + + pc0 = pc // ERROR "cannot use|incompatible" + pc0 = pc1 // ERROR "cannot use|incompatible" + pc = pc0 // ERROR "cannot use|incompatible" + pc = pc1 // ERROR "cannot use|incompatible" + pc1 = pc0 // ERROR "cannot use|incompatible" + pc1 = pc // ERROR "cannot use|incompatible" + + pf0 = pf // ERROR "cannot use|incompatible" + pf0 = pf1 // ERROR "cannot use|incompatible" + pf = pf0 // ERROR "cannot use|incompatible" + pf = pf1 // ERROR "cannot use|incompatible" + pf1 = pf0 // ERROR "cannot use|incompatible" + pf1 = pf // ERROR "cannot use|incompatible" + + pi0 = pi // ERROR "cannot use|incompatible" + pi0 = pi1 // ERROR "cannot use|incompatible" + pi = pi0 // ERROR "cannot use|incompatible" + pi = pi1 // ERROR "cannot use|incompatible" + pi1 = pi0 // ERROR "cannot use|incompatible" + pi1 = pi // ERROR "cannot use|incompatible" + + pm0 = pm // ERROR "cannot use|incompatible" + pm0 = pm1 // ERROR "cannot use|incompatible" + pm = pm0 // ERROR "cannot use|incompatible" + pm = pm1 // ERROR "cannot use|incompatible" + pm1 = pm0 // ERROR "cannot use|incompatible" + pm1 = pm // ERROR "cannot use|incompatible" + + pp0 = pp // ERROR "cannot use|incompatible" + pp0 = pp1 // ERROR "cannot use|incompatible" + pp = pp0 // ERROR "cannot use|incompatible" + pp = pp1 // ERROR "cannot use|incompatible" + pp1 = pp0 // ERROR "cannot use|incompatible" + pp1 = pp // ERROR "cannot use|incompatible" + + ps0 = ps // ERROR "cannot use|incompatible" + ps0 = ps1 // ERROR "cannot use|incompatible" + ps = ps0 // ERROR "cannot use|incompatible" + ps = ps1 // ERROR "cannot use|incompatible" + ps1 = ps0 // ERROR "cannot use|incompatible" + ps1 = ps // ERROR "cannot use|incompatible" + + + a0 = [10]int(a) + a0 = [10]int(a1) + a = A(a0) + a = A(a1) + a1 = A1(a0) + a1 = A1(a) + + b0 = []int(b) + b0 = []int(b1) + b = B(b0) + b = B(b1) + b1 = B1(b0) + b1 = B1(b) + + c0 = chan int(c) + c0 = chan int(c1) + c = C(c0) + c = C(c1) + c1 = C1(c0) + c1 = C1(c) + + f0 = func() int(f) + f0 = func() int(f1) + f = F(f0) + f = F(f1) + f1 = F1(f0) + f1 = F1(f) + + i0 = interface { + m() int + }(i) + i0 = interface { + m() int + }(i1) + i = I(i0) + i = I(i1) + i1 = I1(i0) + i1 = I1(i) + + m0 = map[int]int(m) + m0 = map[int]int(m1) + m = M(m0) + m = M(m1) + m1 = M1(m0) + m1 = M1(m) + + p0 = (*int)(p) + p0 = (*int)(p1) + p = P(p0) + p = P(p1) + p1 = P1(p0) + p1 = P1(p) + + s0 = struct { + X int + }(s) + s0 = struct { + X int + }(s1) + s = S(s0) + s = S(s1) + s1 = S1(s0) + s1 = S1(s) + + pa0 = (*[10]int)(pa) + pa0 = (*[10]int)(pa1) + pa = (*A)(pa0) + pa = (*A)(pa1) + pa1 = (*A1)(pa0) + pa1 = (*A1)(pa) + + pb0 = (*[]int)(pb) + pb0 = (*[]int)(pb1) + pb = (*B)(pb0) + pb = (*B)(pb1) + pb1 = (*B1)(pb0) + pb1 = (*B1)(pb) + + pc0 = (*chan int)(pc) + pc0 = (*chan int)(pc1) + pc = (*C)(pc0) + pc = (*C)(pc1) + pc1 = (*C1)(pc0) + pc1 = (*C1)(pc) + + pf0 = (*func() int)(pf) + pf0 = (*func() int)(pf1) + pf = (*F)(pf0) + pf = (*F)(pf1) + pf1 = (*F1)(pf0) + pf1 = (*F1)(pf) + + pi0 = (*interface { + m() int + })(pi) + pi0 = (*interface { + m() int + })(pi1) + pi = (*I)(pi0) + pi = (*I)(pi1) + pi1 = (*I1)(pi0) + pi1 = (*I1)(pi) + + pm0 = (*map[int]int)(pm) + pm0 = (*map[int]int)(pm1) + pm = (*M)(pm0) + pm = (*M)(pm1) + pm1 = (*M1)(pm0) + pm1 = (*M1)(pm) + + pp0 = (**int)(pp) + pp0 = (**int)(pp1) + pp = (*P)(pp0) + pp = (*P)(pp1) + pp1 = (*P1)(pp0) + pp1 = (*P1)(pp) + + ps0 = (*struct { + X int + })(ps) + ps0 = (*struct { + X int + })(ps1) + ps = (*S)(ps0) + ps = (*S)(ps1) + ps1 = (*S1)(ps0) + ps1 = (*S1)(ps) + +} diff --git a/platform/dbops/binaries/go/go/test/atomicload.go b/platform/dbops/binaries/go/go/test/atomicload.go new file mode 100644 index 0000000000000000000000000000000000000000..76f1ad491e8832425e52385ced354631f401e693 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/atomicload.go @@ -0,0 +1,45 @@ +// run + +// 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. + +// Check that we do loads exactly once. The SSA backend +// once tried to do the load in f twice, once sign extended +// and once zero extended. This can cause problems in +// racy code, particularly sync/mutex. + +package main + +func f(p *byte) bool { + x := *p + a := int64(int8(x)) + b := int64(uint8(x)) + return a == b +} + +func main() { + var x byte + const N = 1000000 + c := make(chan struct{}) + go func() { + for i := 0; i < N; i++ { + x = 1 + } + c <- struct{}{} + }() + go func() { + for i := 0; i < N; i++ { + x = 2 + } + c <- struct{}{} + }() + + for i := 0; i < N; i++ { + if !f(&x) { + panic("non-atomic load!") + } + } + <-c + <-c +} diff --git a/platform/dbops/binaries/go/go/test/bigalg.go b/platform/dbops/binaries/go/go/test/bigalg.go new file mode 100644 index 0000000000000000000000000000000000000000..60e822942e2826367093350db4346f6556224c34 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/bigalg.go @@ -0,0 +1,130 @@ +// run + +// 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. + +// Test the internal "algorithms" for objects larger than a word: hashing, equality etc. + +package main + +type T struct { + a float64 + b int64 + c string + d byte +} + +var a = []int{1, 2, 3} +var NIL []int + +func arraycmptest() { + if NIL != nil { + println("fail1:", NIL, "!= nil") + panic("bigalg") + } + if nil != NIL { + println("fail2: nil !=", NIL) + panic("bigalg") + } + if a == nil || nil == a { + println("fail3:", a, "== nil") + panic("bigalg") + } +} + +func SameArray(a, b []int) bool { + if len(a) != len(b) || cap(a) != cap(b) { + return false + } + if len(a) > 0 && &a[0] != &b[0] { + return false + } + return true +} + +var t = T{1.5, 123, "hello", 255} +var mt = make(map[int]T) +var ma = make(map[int][]int) + +func maptest() { + mt[0] = t + t1 := mt[0] + if t1.a != t.a || t1.b != t.b || t1.c != t.c || t1.d != t.d { + println("fail: map val struct", t1.a, t1.b, t1.c, t1.d) + panic("bigalg") + } + + ma[1] = a + a1 := ma[1] + if !SameArray(a, a1) { + println("fail: map val array", a, a1) + panic("bigalg") + } +} + +var ct = make(chan T) +var ca = make(chan []int) + +func send() { + ct <- t + ca <- a +} + +func chantest() { + go send() + + t1 := <-ct + if t1.a != t.a || t1.b != t.b || t1.c != t.c || t1.d != t.d { + println("fail: map val struct", t1.a, t1.b, t1.c, t1.d) + panic("bigalg") + } + + a1 := <-ca + if !SameArray(a, a1) { + println("fail: map val array", a, a1) + panic("bigalg") + } +} + +type E struct{} + +var e E + +func interfacetest() { + var i interface{} + + i = a + a1 := i.([]int) + if !SameArray(a, a1) { + println("interface <-> []int", a, a1) + panic("bigalg") + } + pa := new([]int) + *pa = a + i = pa + a1 = *i.(*[]int) + if !SameArray(a, a1) { + println("interface <-> *[]int", a, a1) + panic("bigalg") + } + + i = t + t1 := i.(T) + if t1.a != t.a || t1.b != t.b || t1.c != t.c || t1.d != t.d { + println("interface <-> struct", t1.a, t1.b, t1.c, t1.d) + panic("bigalg") + } + + i = e + e1 := i.(E) + // nothing to check; just verify it doesn't crash + _ = e1 +} + +func main() { + arraycmptest() + maptest() + chantest() + interfacetest() +} diff --git a/platform/dbops/binaries/go/go/test/bigmap.go b/platform/dbops/binaries/go/go/test/bigmap.go new file mode 100644 index 0000000000000000000000000000000000000000..c5e4f91e11951964d5889363edcf002e7a3cdc46 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/bigmap.go @@ -0,0 +1,139 @@ +// run + +// 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. + +// Internally a map holds elements in up to 255 bytes of key+value. +// When key or value or both are too large, it uses pointers to key+value +// instead. Test all the combinations. + +package main + +func seq(x, y int) [1000]byte { + var r [1000]byte + for i := 0; i < len(r); i++ { + r[i] = byte(x + i*y) + } + return r +} + +func cmp(x, y [1000]byte) { + for i := 0; i < len(x); i++ { + if x[i] != y[i] { + panic("BUG mismatch") + } + } +} + +func main() { + m := make(map[int][1000]byte) + m[1] = seq(11, 13) + m[2] = seq(2, 9) + m[3] = seq(3, 17) + + cmp(m[1], seq(11, 13)) + cmp(m[2], seq(2, 9)) + cmp(m[3], seq(3, 17)) + + + { + type T [1]byte + type V [1]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [100]byte + type V [1]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [1]byte + type V [100]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [1000]byte + type V [1]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [1]byte + type V [1000]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [1000]byte + type V [1000]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [200]byte + type V [1]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [1]byte + type V [200]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } + { + type T [200]byte + type V [200]byte + m := make(map[T]V) + m[T{}] = V{1} + m[T{1}] = V{2} + if x, y := m[T{}][0], m[T{1}][0]; x != 1 || y != 2 { + println(x, y) + panic("bad map") + } + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor.go new file mode 100644 index 0000000000000000000000000000000000000000..8d793fec6901fcc78ca50d8fb02e48db0a2a14b6 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor.go @@ -0,0 +1,31 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package rank + +import ( + "github.com/tailor-inc/graphql/language/ast" +) + +func (p *ReRankerProvider) parseReRankerArguments(args []*ast.Argument) *Params { + out := &Params{} + + for _, arg := range args { + switch arg.Name.Value { + case "query": + out.Query = &arg.Value.(*ast.StringValue).Value + case "property": + out.Property = &arg.Value.(*ast.StringValue).Value + } + } + + return out +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor_test.go new file mode 100644 index 0000000000000000000000000000000000000000..80693b900e7ad25a897e530547b4b0a5fba5217f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_params_extractor_test.go @@ -0,0 +1,103 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package rank + +import ( + "reflect" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql/language/ast" +) + +func Test_parseCrossRankerArguments(t *testing.T) { + type args struct { + args []*ast.Argument + } + tests := []struct { + name string + args args + want *Params + }{ + { + name: "Should create with no params", + args: args{}, + want: &Params{}, + }, + { + name: "Should create with query param", + args: args{ + args: []*ast.Argument{ + createStringArg("query", "sample query"), + }, + }, + want: &Params{ + Query: strPtr("sample query"), + }, + }, + { + name: "Should create with property param", + args: args{ + args: []*ast.Argument{ + createStringArg("property", "sample property"), + }, + }, + want: &Params{ + Property: strPtr("sample property"), + }, + }, + { + name: "Should create with all params", + args: args{ + args: []*ast.Argument{ + createStringArg("query", "sample query"), + createStringArg("property", "sample property"), + }, + }, + want: &Params{ + Query: strPtr("sample query"), + Property: strPtr("sample property"), + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + p := &ReRankerProvider{} + if got := p.parseReRankerArguments(tt.args.args); !reflect.DeepEqual(got, tt.want) { + t.Errorf("parseReRankerArguments() = %v, want %v", got, tt.want) + } + actual := p.parseReRankerArguments(tt.args.args) + assert.Equal(t, tt.want, actual) + }) + } +} + +func createStringArg(name, value string) *ast.Argument { + n := ast.Name{ + Value: name, + } + val := ast.StringValue{ + Kind: "Kind", + Value: value, + } + arg := ast.Argument{ + Name: ast.NewName(&n), + Kind: "Kind", + Value: &val, + } + a := ast.NewArgument(&arg) + return a +} + +func strPtr(s string) *string { + return &s +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_result.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_result.go new file mode 100644 index 0000000000000000000000000000000000000000..f31699ef475e0e4ebae65142f09bac6e6f5e1867 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_result.go @@ -0,0 +1,86 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package rank + +import ( + "context" + "errors" + "fmt" + "sort" + + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/moduletools" + "github.com/weaviate/weaviate/entities/search" + rerankmodels "github.com/weaviate/weaviate/usecases/modulecomponents/additional/models" +) + +func (p *ReRankerProvider) getScore(ctx context.Context, cfg moduletools.ClassConfig, + in []search.Result, params *Params, +) ([]search.Result, error) { + if len(in) == 0 { + return nil, nil + } + if params == nil { + return nil, fmt.Errorf("no params provided") + } + + rankProperty := params.GetProperty() + query := params.GetQuery() + + // check if user parameter values are valid + if len(rankProperty) == 0 { + return in, errors.New("no properties provided") + } + + documents := make([]string, len(in)) + for i := range in { // for each result of the general GraphQL Query + // get text property + rankPropertyValue := "" + schema := in[i].Object().Properties.(map[string]interface{}) + for property, value := range schema { + if property == rankProperty { + if valueString, ok := value.(string); ok { + rankPropertyValue = valueString + } + } + } + documents[i] = rankPropertyValue + } + + // rank results + result, err := p.client.Rank(ctx, query, documents, cfg) + if err != nil { + return nil, fmt.Errorf("client rank: %w", err) + } + + // add scores to results + for i := range in { + if in[i].AdditionalProperties == nil { + in[i].AdditionalProperties = models.AdditionalProperties{} + } + in[i].AdditionalProperties["rerank"] = []*rerankmodels.RankResult{ + { + Score: &result.DocumentScores[i].Score, + }, + } + } + + // sort the list + sort.Slice(in, func(i, j int) bool { + apI := in[i].AdditionalProperties["rerank"].([]*rerankmodels.RankResult) + apJ := in[j].AdditionalProperties["rerank"].([]*rerankmodels.RankResult) + + // Sort in descending order, based on Score values + return *apI[0].Score > *apJ[0].Score + }) + return in, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_test.go new file mode 100644 index 0000000000000000000000000000000000000000..9aa20835e0e7a5fd38168d0c1c28391aebf09c69 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/additional/rank/rank_test.go @@ -0,0 +1,147 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package rank + +import ( + "context" + "errors" + "testing" + + "github.com/weaviate/weaviate/usecases/modulecomponents/additional/models" + "github.com/weaviate/weaviate/usecases/modulecomponents/ent" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/entities/moduletools" + "github.com/weaviate/weaviate/entities/search" +) + +func TestAdditionalAnswerProvider(t *testing.T) { + t.Run("should fail with empty content", func(t *testing.T) { + // given + rankClient := &fakeRankClient{} + rankProvider := New(rankClient) + in := []search.Result{ + { + ID: "some-uuid", + }, + } + fakeParams := &Params{} + limit := 1 + argumentModuleParams := map[string]interface{}{} + + // when + out, err := rankProvider.AdditionalPropertyFn(context.Background(), in, fakeParams, &limit, argumentModuleParams, nil) + + // then + require.NotNil(t, err) + require.NotEmpty(t, out) + assert.Error(t, err, "empty schema content") + }) + + t.Run("should fail with empty params", func(t *testing.T) { + // given + rankClient := &fakeRankClient{} + rankProvider := New(rankClient) + in := []search.Result{ + { + ID: "some-uuid", + Schema: map[string]interface{}{ + "content": "content", + }, + }, + } + fakeParams := &Params{} + limit := 1 + argumentModuleParams := map[string]interface{}{} + + // when + out, err := rankProvider.AdditionalPropertyFn(context.Background(), in, fakeParams, &limit, argumentModuleParams, nil) + + // then + require.NotNil(t, err) + require.NotEmpty(t, out) + assert.Error(t, err, "empty params") + }) + + t.Run("should fail on cohere error", func(t *testing.T) { + rankClient := &fakeRankClient{} + rankProvider := New(rankClient) + in := []search.Result{ + { + ID: "some-uuid", + Schema: map[string]interface{}{ + "content": "this is the content", + }, + }, + } + property := "content" + query := "unavailable" + fakeParams := &Params{Property: &property, Query: &query} + limit := 3 + argumentModuleParams := map[string]interface{}{} + + _, err := rankProvider.AdditionalPropertyFn(context.Background(), in, fakeParams, &limit, argumentModuleParams, nil) + require.EqualError(t, err, "client rank: unavailable") + }) + + t.Run("should rank", func(t *testing.T) { + rankClient := &fakeRankClient{} + rankProvider := New(rankClient) + in := []search.Result{ + { + ID: "some-uuid", + Schema: map[string]interface{}{ + "content": "this is the content", + }, + }, + } + property := "content" + query := "this is the query" + fakeParams := &Params{Property: &property, Query: &query} + limit := 1 + argumentModuleParams := map[string]interface{}{} + + // when + out, err := rankProvider.AdditionalPropertyFn(context.Background(), in, fakeParams, &limit, argumentModuleParams, nil) + // then + require.Nil(t, err) + require.NotEmpty(t, out) + assert.Equal(t, 1, len(in)) + answer, answerOK := in[0].AdditionalProperties["rerank"] + assert.True(t, answerOK) + assert.NotNil(t, answer) + answerAdditional, ok := answer.([]*models.RankResult) + require.True(t, ok) + require.Len(t, answerAdditional, 1) + assert.Equal(t, float64(0.15), *answerAdditional[0].Score) + }) +} + +type fakeRankClient struct{} + +func (c *fakeRankClient) Rank(ctx context.Context, query string, documents []string, cfg moduletools.ClassConfig) (result *ent.RankResult, err error) { + if query == "unavailable" { + return nil, errors.New("unavailable") + } + score := 0.15 + result = &ent.RankResult{ + DocumentScores: []ent.DocumentScore{ + { + Document: documents[0], + Score: score, + }, + }, + Query: query, + } + return result, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..2b8f0f65d90b3a986082d87cad8e497d0afe6dd3 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearAudioArgumentFn(classname string) *graphql.ArgumentConfig { + return nearAudioArgument("GetObjects", classname) +} + +func exploreNearAudioArgumentFn() *graphql.ArgumentConfig { + return nearAudioArgument("Explore", "") +} + +func aggregateNearAudioArgumentFn(classname string) *graphql.ArgumentConfig { + return nearAudioArgument("Aggregate", classname) +} + +func nearAudioArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Multi2VecBind%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearAudioInpObj", prefixName), + Fields: nearAudioFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearAudioFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "audio": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded audio file", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..e393205b0707dd89983e28c5d7b721ad834de7f0 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearAudioGraphQLArgument(t *testing.T) { + t.Run("should generate nearAudio argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearAudio := nearAudioArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearAudio: { + // audio: "base64;encoded,audio", + // distance: 0.9 + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearAudio) + assert.Equal(t, "Multi2VecBindPrefixClassNearAudioInpObj", nearAudio.Type.Name()) + nearAudioFields, ok := nearAudio.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, nearAudioFields) + assert.Equal(t, 4, len(nearAudioFields.Fields())) + fields := nearAudioFields.Fields() + audio := fields["audio"] + audioNonNull, audioNonNullOK := audio.Type.(*graphql.NonNull) + assert.True(t, audioNonNullOK) + assert.Equal(t, "String", audioNonNull.OfType.Name()) + assert.NotNil(t, audio) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..a5103ac76f2b0d5e92e4ae10233b3ed07f7956fb --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearAudioFn arguments, such as "audio" and "certainty" +func extractNearAudioFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearAudioParams + + audio, ok := source["audio"].(string) + if ok { + args.Audio = audio + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..24d719dc4027fba23cdfc8c38dd23e5a08124fd9 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_extract_test.go @@ -0,0 +1,110 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearAudioFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with distance and audio params set", + args: args{ + source: map[string]interface{}{ + "audio": "base64;encoded", + "distance": float64(0.9), + }, + }, + want: &NearAudioParams{ + Audio: "base64;encoded", + Distance: 0.9, + WithDistance: true, + }, + }, + { + name: "should extract properly with certainty and audio params set", + args: args{ + source: map[string]interface{}{ + "audio": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearAudioParams{ + Audio: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only audio set", + args: args{ + source: map[string]interface{}{ + "audio": "base64;encoded", + }, + }, + want: &NearAudioParams{ + Audio: "base64;encoded", + }, + }, + { + name: "should extract properly with audio and targetVectors set", + args: args{ + source: map[string]interface{}{ + "audio": "base64;encoded", + "targetVectors": []interface{}{"targetVector"}, + }, + }, + want: &NearAudioParams{ + Audio: "base64;encoded", + TargetVectors: []string{"targetVector"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with audio and targets set", + args: args{ + source: map[string]interface{}{ + "audio": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearAudioParams{ + Audio: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearAudioFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearAudioFn() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..6c1c59a2d59d3f112e78ccd70e3432ad15660d23 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearAudio" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearAudio() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearAudio() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearAudioArgumentFn, + AggregateArgumentsFunction: aggregateNearAudioArgumentFn, + ExploreArgumentsFunction: exploreNearAudioArgumentFn, + ExtractFunction: extractNearAudioFn, + ValidateFunction: validateNearAudioFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param.go new file mode 100644 index 0000000000000000000000000000000000000000..b81f2c61ddb4ec266351053552aa598c724d4cf2 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param.go @@ -0,0 +1,63 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "errors" +) + +type NearAudioParams struct { + Audio string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearAudioParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearAudioParams) GetDistance() float64 { + return n.Distance +} + +func (n NearAudioParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearAudioParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func validateNearAudioFn(param interface{}) error { + nearAudio, ok := param.(*NearAudioParams) + if !ok { + return errors.New("'nearAudio' invalid parameter") + } + + if len(nearAudio.Audio) == 0 { + return errors.New("'nearAudio.audio' needs to be defined") + } + + if nearAudio.Certainty != 0 && nearAudio.WithDistance { + return errors.New( + "nearAudio cannot provide both distance and certainty") + } + + if len(nearAudio.TargetVectors) > 1 { + return errors.New( + "nearAudio.targetVectors cannot provide more than 1 target vector value") + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..c9ce3aea7ed61c0946995d8b502082a489fb50dc --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/param_test.go @@ -0,0 +1,88 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import "testing" + +func Test_validateNearAudioFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearAudioParams{ + Audio: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty image", + args: args{ + param: &NearAudioParams{ + Audio: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil image", + args: args{ + param: &NearAudioParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearAudioParams{ + Audio: "image", + }, + }, + wantErr: true, + }, + { + name: "should not pass with certainty and distance", + args: args{ + param: NearAudioParams{ + Audio: "image", + Distance: 0.9, + WithDistance: true, + Certainty: 0.1, + }, + }, + wantErr: true, + }, + { + name: "should not pass with more then 1 targetVector set", + args: args{ + param: NearAudioParams{ + Audio: "image", + TargetVectors: []string{"targetVector1", "targetVector1"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := validateNearAudioFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("ValidateNearAudioFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..62d313a6ac23068b3b7e7ee93a1e44ba21d029e2 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearAudio/searcher.go @@ -0,0 +1,54 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearAudio + +import ( + "context" + "fmt" + + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer bindVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type bindVectorizer[T dto.Embedding] interface { + VectorizeAudio(ctx context.Context, audio string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearAudio"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + vector, err := v.vectorizer.VectorizeAudio(ctx, params.(*NearAudioParams).Audio, cfg) + if err != nil { + return nil, fmt.Errorf("vectorize audio: %w", err) + } + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..de538bdda1989c968b1486f88579bcffd50328ce --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearDepthArgumentFn(classname string) *graphql.ArgumentConfig { + return nearDepthArgument("GetObjects", classname) +} + +func exploreNearDepthArgumentFn() *graphql.ArgumentConfig { + return nearDepthArgument("Explore", "") +} + +func aggregateNearDepthArgumentFn(classname string) *graphql.ArgumentConfig { + return nearDepthArgument("Aggregate", classname) +} + +func nearDepthArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Multi2VecBind%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearDepthInpObj", prefixName), + Fields: nearDepthFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearDepthFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "depth": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded Depth data", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..e3e6aacca0fc46b022498ba22e7b5cc8599afb62 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearDepthGraphQLArgument(t *testing.T) { + t.Run("should generate nearDepth argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearDepth := nearDepthArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearDepth: { + // depth: "base64;encoded,depth_depth", + // distance: 0.9 + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearDepth) + assert.Equal(t, "Multi2VecBindPrefixClassNearDepthInpObj", nearDepth.Type.Name()) + answerFields, ok := nearDepth.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, answerFields) + assert.Equal(t, 4, len(answerFields.Fields())) + fields := answerFields.Fields() + depth := fields["depth"] + depthNonNull, depthNonNullOK := depth.Type.(*graphql.NonNull) + assert.True(t, depthNonNullOK) + assert.Equal(t, "String", depthNonNull.OfType.Name()) + assert.NotNil(t, depth) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..fff620e0fae70939a486f1c47d54abfae4085745 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearDepthFn arguments, such as "depth" and "certainty" +func extractNearDepthFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearDepthParams + + depth, ok := source["depth"].(string) + if ok { + args.Depth = depth + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..a44f8829ec7b78dffebc96990cd871166c6e8736 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_extract_test.go @@ -0,0 +1,110 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearDepthFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with distance and depth params set", + args: args{ + source: map[string]interface{}{ + "depth": "base64;encoded", + "distance": float64(0.9), + }, + }, + want: &NearDepthParams{ + Depth: "base64;encoded", + Distance: 0.9, + WithDistance: true, + }, + }, + { + name: "should extract properly with certainty and depth params set", + args: args{ + source: map[string]interface{}{ + "depth": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearDepthParams{ + Depth: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only depth set", + args: args{ + source: map[string]interface{}{ + "depth": "base64;encoded", + }, + }, + want: &NearDepthParams{ + Depth: "base64;encoded", + }, + }, + { + name: "should extract properly with depth and targetVectors set", + args: args{ + source: map[string]interface{}{ + "depth": "base64;encoded", + "targetVectors": []interface{}{"targetVector1"}, + }, + }, + want: &NearDepthParams{ + Depth: "base64;encoded", + TargetVectors: []string{"targetVector1"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with depth and targets set", + args: args{ + source: map[string]interface{}{ + "depth": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearDepthParams{ + Depth: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearDepthFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearDepthFn() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..8e791a7d53fd6f67e6d208e6886f190408212bca --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearDepth" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearDepth() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearDepth() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearDepthArgumentFn, + AggregateArgumentsFunction: aggregateNearDepthArgumentFn, + ExploreArgumentsFunction: exploreNearDepthArgumentFn, + ExtractFunction: extractNearDepthFn, + ValidateFunction: validateNearDepthFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param.go new file mode 100644 index 0000000000000000000000000000000000000000..c170191e3093378407d18d309374788a47070269 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param.go @@ -0,0 +1,63 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "errors" +) + +type NearDepthParams struct { + Depth string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearDepthParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearDepthParams) GetDistance() float64 { + return n.Distance +} + +func (n NearDepthParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearDepthParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func validateNearDepthFn(param interface{}) error { + nearDepth, ok := param.(*NearDepthParams) + if !ok { + return errors.New("'nearDepth' invalid parameter") + } + + if len(nearDepth.Depth) == 0 { + return errors.New("'nearDepth.depth' needs to be defined") + } + + if nearDepth.Certainty != 0 && nearDepth.WithDistance { + return errors.New( + "nearDepth cannot provide both distance and certainty") + } + + if len(nearDepth.TargetVectors) > 1 { + return errors.New( + "nearText.targetVectors cannot provide more than 1 target vector value") + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..4ca57e42a10b062d2041e488bc938e67b7a3479e --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/param_test.go @@ -0,0 +1,88 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import "testing" + +func Test_validateNearDepthFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearDepthParams{ + Depth: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty depth", + args: args{ + param: &NearDepthParams{ + Depth: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil depth", + args: args{ + param: &NearDepthParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearDepthParams{ + Depth: "depth", + }, + }, + wantErr: true, + }, + { + name: "should not pass with certainty and distance", + args: args{ + param: NearDepthParams{ + Depth: "depth", + Distance: 0.9, + WithDistance: true, + Certainty: 0.1, + }, + }, + wantErr: true, + }, + { + name: "should not pass with more then 1 target vector", + args: args{ + param: NearDepthParams{ + Depth: "depth", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := validateNearDepthFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("validateNearDepthFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..f7dee34f0e0b6b27eed47ac065c52a45348376c7 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearDepth/searcher.go @@ -0,0 +1,54 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearDepth + +import ( + "context" + + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer bindVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type bindVectorizer[T dto.Embedding] interface { + VectorizeDepth(ctx context.Context, thermal string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearDepth"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + vector, err := v.vectorizer.VectorizeDepth(ctx, params.(*NearDepthParams).Depth, cfg) + if err != nil { + return nil, errors.Errorf("vectorize thermal: %v", err) + } + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..6f900a752ec7a94f70f64b2c8518b3b55b3b2ee6 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearImageArgumentFn(classname string) *graphql.ArgumentConfig { + return nearImageArgument("GetObjects", classname) +} + +func exploreNearImageArgumentFn() *graphql.ArgumentConfig { + return nearImageArgument("Explore", "") +} + +func aggregateNearImageArgumentFn(classname string) *graphql.ArgumentConfig { + return nearImageArgument("Aggregate", classname) +} + +func nearImageArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Img2VecImage%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearImageInpObj", prefixName), + Fields: nearImageFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearImageFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "image": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded image", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..8fb3cd64c854d4aa9f7818196762afff3fc72908 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearImageGraphQLArgument(t *testing.T) { + t.Run("should generate nearImage argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearImage := nearImageArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearImage: { + // image: "base64;encoded,image", + // distance: 0.4, + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearImage) + assert.Equal(t, "Img2VecImagePrefixClassNearImageInpObj", nearImage.Type.Name()) + answerFields, ok := nearImage.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, answerFields) + assert.Equal(t, 4, len(answerFields.Fields())) + fields := answerFields.Fields() + image := fields["image"] + imageNonNull, imageNonNullOK := image.Type.(*graphql.NonNull) + assert.True(t, imageNonNullOK) + assert.Equal(t, "String", imageNonNull.OfType.Name()) + assert.NotNil(t, image) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..f8c785916694636135dba76fbadb9fecea534d86 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearImageFn arguments, such as "image" and "certainty" +func extractNearImageFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearImageParams + + image, ok := source["image"].(string) + if ok { + args.Image = image + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..ec72fccfe580461273dce283561f6174cd31cf35 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_extract_test.go @@ -0,0 +1,112 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearImageFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with image and certainty set", + args: args{ + source: map[string]interface{}{ + "image": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearImageParams{ + Image: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only image set", + args: args{ + source: map[string]interface{}{ + "image": "base64;encoded", + }, + }, + want: &NearImageParams{ + Image: "base64;encoded", + }, + }, + { + name: "should extract properly with image and distance set", + args: args{ + source: map[string]interface{}{ + "image": "base64;encoded", + "distance": 0.4, + }, + }, + want: &NearImageParams{ + Image: "base64;encoded", + Distance: 0.4, + WithDistance: true, + }, + }, + { + name: "should extract properly with image and certainty set and targetVectors set", + args: args{ + source: map[string]interface{}{ + "image": "base64;encoded", + "certainty": float64(0.9), + "targetVectors": []interface{}{"targetVector1"}, + }, + }, + want: &NearImageParams{ + Image: "base64;encoded", + Certainty: 0.9, + TargetVectors: []string{"targetVector1"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with image and targets set", + args: args{ + source: map[string]interface{}{ + "image": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearImageParams{ + Image: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearImageFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearImageFn() = %+v, want %+v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..3cc26a56bb583843726e98f959a3308fdd3afb17 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearImage" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearImage() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearImage() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearImageArgumentFn, + AggregateArgumentsFunction: aggregateNearImageArgumentFn, + ExploreArgumentsFunction: exploreNearImageArgumentFn, + ExtractFunction: extractNearImageFn, + ValidateFunction: ValidateNearImageFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param.go new file mode 100644 index 0000000000000000000000000000000000000000..3dee66dc29ddec0c4ef7b37d6da6cc6eb9d0da4a --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param.go @@ -0,0 +1,62 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "github.com/pkg/errors" +) + +type NearImageParams struct { + Image string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearImageParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearImageParams) GetDistance() float64 { + return n.Distance +} + +func (n NearImageParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearImageParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func ValidateNearImageFn(param interface{}) error { + nearImage, ok := param.(*NearImageParams) + if !ok { + return errors.New("'nearImage' invalid parameter") + } + + if len(nearImage.Image) == 0 { + return errors.Errorf("'nearImage.image' needs to be defined") + } + + if nearImage.Certainty != 0 && nearImage.WithDistance { + return errors.Errorf( + "nearImage cannot provide both distance and certainty") + } + + if len(nearImage.TargetVectors) > 1 { + return errors.Errorf( + "nearImage.targetVectors cannot provide more than 1 target vector value") + } + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..aabcf7f1eb869520a2a9e03454da99b14314c13c --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/param_test.go @@ -0,0 +1,97 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import "testing" + +func Test_validateNearImageFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearImageParams{ + Image: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty image", + args: args{ + param: &NearImageParams{ + Image: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil image", + args: args{ + param: &NearImageParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearImageParams{ + Image: "image", + }, + }, + wantErr: true, + }, + { + name: "should not pass with distance and certainty set", + args: args{ + param: &NearImageParams{ + Image: "image", + Distance: 0.4, + WithDistance: true, + Certainty: 0.7, + }, + }, + wantErr: true, + }, + { + name: "should pass with proper values and target vector", + args: args{ + param: &NearImageParams{ + Image: "base64;enncoded", + TargetVectors: []string{"targetVector"}, + }, + }, + }, + { + name: "should not pass with more then 1 target vector", + args: args{ + param: &NearImageParams{ + Image: "base64;enncoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := ValidateNearImageFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("ValidateNearImageFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..14e064afbe955a1e382c6ea5269ff87d126eed18 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImage/searcher.go @@ -0,0 +1,58 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImage + +import ( + "context" + "fmt" + "time" + + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer imgVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer imgVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type imgVectorizer[T dto.Embedding] interface { + VectorizeImage(ctx context.Context, + id, image string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearImage"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer imgVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + searchID := fmt.Sprintf("search_%v", time.Now().UnixNano()) + vector, err := v.vectorizer.VectorizeImage(ctx, searchID, params.(*NearImageParams).Image, cfg) + if err != nil { + return nil, errors.Errorf("vectorize image: %v", err) + } + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..4d8350954c8aef0d8a79218214c254be276322d0 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearIMUArgumentFn(classname string) *graphql.ArgumentConfig { + return nearIMUArgument("GetObjects", classname) +} + +func exploreNearIMUArgumentFn() *graphql.ArgumentConfig { + return nearIMUArgument("Explore", "") +} + +func aggregateNearIMUArgumentFn(classname string) *graphql.ArgumentConfig { + return nearIMUArgument("Aggregate", classname) +} + +func nearIMUArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Multi2VecBind%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearIMUInpObj", prefixName), + Fields: nearIMUFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearIMUFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "imu": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded IMU data", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..7ffe06e6fe0791acd350a8dc294ebb14a3ebdce3 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearIMUGraphQLArgument(t *testing.T) { + t.Run("should generate nearIMU argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearIMU := nearIMUArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearIMU: { + // imu: "base64;encoded,imu_data", + // distance: 0.9 + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearIMU) + assert.Equal(t, "Multi2VecBindPrefixClassNearIMUInpObj", nearIMU.Type.Name()) + answerFields, ok := nearIMU.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, answerFields) + assert.Equal(t, 4, len(answerFields.Fields())) + fields := answerFields.Fields() + imu := fields["imu"] + imuNonNull, imuNonNullOK := imu.Type.(*graphql.NonNull) + assert.True(t, imuNonNullOK) + assert.Equal(t, "String", imuNonNull.OfType.Name()) + assert.NotNil(t, imu) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..6bc4af44eca9c16ef11f87c8a1beb9bc18b17f9c --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearIMUFn arguments, such as "imu" and "certainty" +func extractNearIMUFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearIMUParams + + video, ok := source["imu"].(string) + if ok { + args.IMU = video + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..9361f2f0121cdc792ee7be0f1a8259851d55460f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_extract_test.go @@ -0,0 +1,110 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearIMUFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with distance and imu params set", + args: args{ + source: map[string]interface{}{ + "imu": "base64;encoded", + "distance": float64(0.9), + }, + }, + want: &NearIMUParams{ + IMU: "base64;encoded", + Distance: 0.9, + WithDistance: true, + }, + }, + { + name: "should extract properly with certainty and imu params set", + args: args{ + source: map[string]interface{}{ + "imu": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearIMUParams{ + IMU: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only imu set", + args: args{ + source: map[string]interface{}{ + "imu": "base64;encoded", + }, + }, + want: &NearIMUParams{ + IMU: "base64;encoded", + }, + }, + { + name: "should extract properly with imu and targetVectors set", + args: args{ + source: map[string]interface{}{ + "imu": "base64;encoded", + "targetVectors": []interface{}{"targetVector"}, + }, + }, + want: &NearIMUParams{ + IMU: "base64;encoded", + TargetVectors: []string{"targetVector"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with imu and targets set", + args: args{ + source: map[string]interface{}{ + "imu": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearIMUParams{ + IMU: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearIMUFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearIMUFn() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..5e943e9fb502cda7f29c897975f4787b28374ad9 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearIMU" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearIMU() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearIMU() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearIMUArgumentFn, + AggregateArgumentsFunction: aggregateNearIMUArgumentFn, + ExploreArgumentsFunction: exploreNearIMUArgumentFn, + ExtractFunction: extractNearIMUFn, + ValidateFunction: validateNearIMUFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param.go new file mode 100644 index 0000000000000000000000000000000000000000..b649d9b349bdc9ed28980337ca5b423e19bf06ed --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param.go @@ -0,0 +1,63 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "errors" +) + +type NearIMUParams struct { + IMU string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearIMUParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearIMUParams) GetDistance() float64 { + return n.Distance +} + +func (n NearIMUParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearIMUParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func validateNearIMUFn(param interface{}) error { + nearIMU, ok := param.(*NearIMUParams) + if !ok { + return errors.New("'nearIMU' invalid parameter") + } + + if len(nearIMU.IMU) == 0 { + return errors.New("'nearIMU.imu' needs to be defined") + } + + if nearIMU.Certainty != 0 && nearIMU.WithDistance { + return errors.New( + "nearIMU cannot provide both distance and certainty") + } + + if len(nearIMU.TargetVectors) > 1 { + return errors.New( + "nearIMU.targetVectors cannot provide more than 1 target vector value") + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..840753b8f78a035d036cb589923046d76cdeac13 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/param_test.go @@ -0,0 +1,97 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import "testing" + +func Test_validateNearImageFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearIMUParams{ + IMU: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty image", + args: args{ + param: &NearIMUParams{ + IMU: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil image", + args: args{ + param: &NearIMUParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearIMUParams{ + IMU: "image", + }, + }, + wantErr: true, + }, + { + name: "should not pass with certainty and distance", + args: args{ + param: NearIMUParams{ + IMU: "imu_data", + Distance: 0.9, + WithDistance: true, + Certainty: 0.1, + }, + }, + wantErr: true, + }, + { + name: "should pass with imu and target vector", + args: args{ + param: &NearIMUParams{ + IMU: "base64;enncoded", + TargetVectors: []string{"targetVector"}, + }, + }, + }, + { + name: "should not pass with more then 1 target vector", + args: args{ + param: NearIMUParams{ + IMU: "imu_data", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := validateNearIMUFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("validateNearIMUFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..73488c996a40f88e30af9fe73af66079b7318843 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearImu/searcher.go @@ -0,0 +1,55 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearImu + +import ( + "context" + + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer bindVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type bindVectorizer[T dto.Embedding] interface { + VectorizeIMU(ctx context.Context, video string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearIMU"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + // find vector for given search query + vector, err := v.vectorizer.VectorizeIMU(ctx, params.(*NearIMUParams).IMU, cfg) + if err != nil { + return nil, errors.Errorf("vectorize imu: %v", err) + } + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/fakes_for_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/fakes_for_test.go new file mode 100644 index 0000000000000000000000000000000000000000..de7d2a4201e6cfc40747074a35df61214b2f8bb0 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/fakes_for_test.go @@ -0,0 +1,26 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +type fakeTransformer struct{} + +func (t *fakeTransformer) Transform(in []string) ([]string, error) { + result := make([]string, len(in)) + for i, txt := range in { + if txt == "transform this" { + result[i] = "transformed text" + } else { + result[i] = txt + } + } + return result, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..229873f44c613fd901abfa9d42a9b4e9b6cc40bc --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument.go @@ -0,0 +1,127 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "fmt" + + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func (g *GraphQLArgumentsProvider) getNearTextArgumentFn(classname string) *graphql.ArgumentConfig { + return g.nearTextArgument("GetObjects", classname, true) +} + +func (g *GraphQLArgumentsProvider) aggregateNearTextArgumentFn(classname string) *graphql.ArgumentConfig { + return g.nearTextArgument("Aggregate", classname, false) +} + +func (g *GraphQLArgumentsProvider) exploreNearTextArgumentFn() *graphql.ArgumentConfig { + return g.nearTextArgument("Explore", "", false) +} + +func (g *GraphQLArgumentsProvider) nearTextArgument(prefix, className string, addTarget bool) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearTextInpObj", prefixName), + Fields: g.nearTextFields(prefixName, addTarget), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func (g *GraphQLArgumentsProvider) nearTextFields(prefix string, addTarget bool) graphql.InputObjectConfigFieldMap { + nearTextFields := graphql.InputObjectConfigFieldMap{ + "concepts": &graphql.InputObjectFieldConfig{ + // Description: descriptions.Concepts, + Type: graphql.NewNonNull(graphql.NewList(graphql.String)), + }, + "moveTo": &graphql.InputObjectFieldConfig{ + Description: descriptions.VectorMovement, + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sMoveTo", prefix), + Fields: g.movementInp(fmt.Sprintf("%sMoveTo", prefix)), + }), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "moveAwayFrom": &graphql.InputObjectFieldConfig{ + Description: descriptions.VectorMovement, + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sMoveAwayFrom", prefix), + Fields: g.movementInp(fmt.Sprintf("%sMoveAwayFrom", prefix)), + }), + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } + if g.nearTextTransformer != nil { + nearTextFields["autocorrect"] = &graphql.InputObjectFieldConfig{ + Description: "Autocorrect input text values", + Type: graphql.Boolean, + } + } + nearTextFields = common_filters.AddTargetArgument(nearTextFields, prefix+"nearText", addTarget) + return nearTextFields +} + +func (g *GraphQLArgumentsProvider) movementInp(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "concepts": &graphql.InputObjectFieldConfig{ + Description: descriptions.Keywords, + Type: graphql.NewList(graphql.String), + }, + "objects": &graphql.InputObjectFieldConfig{ + Description: "objects", + Type: graphql.NewList(g.objectsInpObj(prefix)), + }, + "force": &graphql.InputObjectFieldConfig{ + Description: descriptions.Force, + Type: graphql.NewNonNull(graphql.Float), + }, + } +} + +func (g *GraphQLArgumentsProvider) objectsInpObj(prefix string) *graphql.InputObject { + return graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sMovementObjectsInpObj", prefix), + Fields: graphql.InputObjectConfigFieldMap{ + "id": &graphql.InputObjectFieldConfig{ + Type: graphql.String, + Description: "id of an object", + }, + "beacon": &graphql.InputObjectFieldConfig{ + Type: graphql.String, + Description: descriptions.Beacon, + }, + }, + Description: "Movement Object", + }, + ) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..95a6ea54305221c51f4221a1e4a2662a02ad8794 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_argument_test.go @@ -0,0 +1,208 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearTextGraphQLArgument(t *testing.T) { + t.Run("should generate nearText argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearText := New(nil).nearTextArgument(prefix, classname, false) + + // then + // the built graphQL field needs to support this structure: + // { + // concepts: ["c1", "c2"], + // distance: 0.9, + // moveTo: { + // concepts: ["c1", "c2"], + // objects: [ + // { id: "some-uuid-value"}], + // { beacon: "some-beacon-value"} + // ], + // force: 0.8 + // } + // moveAwayFrom: { + // concepts: ["c1", "c2"], + // objects: [ + // { id: "some-uuid-value"}], + // { beacon: "some-beacon-value"} + // ], + // force: 0.8 + // }, + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearText) + assert.Equal(t, "PrefixClassNearTextInpObj", nearText.Type.Name()) + nearTextFields, ok := nearText.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, nearTextFields) + assert.Equal(t, 6, len(nearTextFields.Fields())) + fields := nearTextFields.Fields() + concepts := fields["concepts"] + conceptsNonNull, conceptsNonNullOK := concepts.Type.(*graphql.NonNull) + assert.True(t, conceptsNonNullOK) + conceptsNonNullList, conceptsNonNullListOK := conceptsNonNull.OfType.(*graphql.List) + assert.True(t, conceptsNonNullListOK) + assert.Equal(t, "String", conceptsNonNullList.OfType.Name()) + assert.NotNil(t, concepts) + conceptsType, conceptsTypeOK := concepts.Type.(*graphql.NonNull) + assert.True(t, conceptsTypeOK) + assert.NotNil(t, conceptsType) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + assert.NotNil(t, fields["moveTo"]) + moveTo, moveToOK := fields["moveTo"].Type.(*graphql.InputObject) + assert.True(t, moveToOK) + assert.Equal(t, 3, len(moveTo.Fields())) + assert.NotNil(t, moveTo.Fields()["concepts"]) + moveToConcepts, moveToConceptsOK := moveTo.Fields()["concepts"].Type.(*graphql.List) + assert.True(t, moveToConceptsOK) + assert.Equal(t, "String", moveToConcepts.OfType.Name()) + assert.NotNil(t, moveToConcepts) + assert.NotNil(t, moveTo.Fields()["objects"]) + moveToObjects, moveToObjectsOK := moveTo.Fields()["objects"].Type.(*graphql.List) + assert.True(t, moveToObjectsOK) + moveToObjectsObjects, moveToObjectsObjectsOK := moveToObjects.OfType.(*graphql.InputObject) + assert.True(t, moveToObjectsObjectsOK) + assert.Equal(t, 2, len(moveToObjectsObjects.Fields())) + assert.NotNil(t, moveToObjectsObjects.Fields()["id"]) + assert.NotNil(t, moveToObjectsObjects.Fields()["beacon"]) + assert.NotNil(t, moveTo.Fields()["force"]) + _, moveToForceOK := moveTo.Fields()["force"].Type.(*graphql.NonNull) + assert.True(t, moveToForceOK) + assert.NotNil(t, fields["moveAwayFrom"]) + moveAwayFrom, moveAwayFromOK := fields["moveAwayFrom"].Type.(*graphql.InputObject) + assert.True(t, moveAwayFromOK) + assert.NotNil(t, moveAwayFrom.Fields()["concepts"]) + assert.NotNil(t, moveAwayFrom.Fields()["objects"]) + moveAwayFromObjects, moveAwayFromObjectsOK := moveAwayFrom.Fields()["objects"].Type.(*graphql.List) + assert.True(t, moveAwayFromObjectsOK) + moveAwayFromObjectsObjects, moveAwayFromObjectsObjectsOK := moveAwayFromObjects.OfType.(*graphql.InputObject) + assert.Equal(t, 2, len(moveAwayFromObjectsObjects.Fields())) + assert.True(t, moveAwayFromObjectsObjectsOK) + assert.NotNil(t, moveAwayFromObjectsObjects.Fields()["id"]) + assert.NotNil(t, moveAwayFromObjectsObjects.Fields()["beacon"]) + assert.NotNil(t, moveAwayFrom.Fields()["force"]) + _, moveAwayFromForceOK := moveAwayFrom.Fields()["force"].Type.(*graphql.NonNull) + assert.True(t, moveAwayFromForceOK) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} + +func TestNearTextGraphQLArgumentWithAutocorrect(t *testing.T) { + t.Run("should generate nearText argument with autocorrect properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearText := New(&fakeTransformer{}).nearTextArgument(prefix, classname, false) + + // then + // the built graphQL field needs to support this structure: + // { + // concepts: ["c1", "c2"], + // certainty: 0.9, + // autocorrect: true, + // moveTo: { + // concepts: ["c1", "c2"], + // objects: [ + // { id: "some-uuid-value"}], + // { beacon: "some-beacon-value"} + // ], + // force: 0.8 + // } + // moveAwayFrom: { + // concepts: ["c1", "c2"], + // objects: [ + // { id: "some-uuid-value"}], + // { beacon: "some-beacon-value"} + // ], + // force: 0.8 + // }, + // targetVectors: ["targetVector"], + // } + assert.NotNil(t, nearText) + assert.Equal(t, "PrefixClassNearTextInpObj", nearText.Type.Name()) + nearTextFields, ok := nearText.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, nearTextFields) + assert.Equal(t, 7, len(nearTextFields.Fields())) + fields := nearTextFields.Fields() + concepts := fields["concepts"] + conceptsNonNull, conceptsNonNullOK := concepts.Type.(*graphql.NonNull) + assert.True(t, conceptsNonNullOK) + conceptsNonNullList, conceptsNonNullListOK := conceptsNonNull.OfType.(*graphql.List) + assert.True(t, conceptsNonNullListOK) + assert.Equal(t, "String", conceptsNonNullList.OfType.Name()) + assert.NotNil(t, concepts) + conceptsType, conceptsTypeOK := concepts.Type.(*graphql.NonNull) + assert.True(t, conceptsTypeOK) + assert.NotNil(t, conceptsType) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + assert.NotNil(t, fields["autocorrect"]) + assert.NotNil(t, fields["moveTo"]) + moveTo, moveToOK := fields["moveTo"].Type.(*graphql.InputObject) + assert.True(t, moveToOK) + assert.Equal(t, 3, len(moveTo.Fields())) + assert.NotNil(t, moveTo.Fields()["concepts"]) + moveToConcepts, moveToConceptsOK := moveTo.Fields()["concepts"].Type.(*graphql.List) + assert.True(t, moveToConceptsOK) + assert.Equal(t, "String", moveToConcepts.OfType.Name()) + assert.NotNil(t, moveToConcepts) + assert.NotNil(t, moveTo.Fields()["objects"]) + moveToObjects, moveToObjectsOK := moveTo.Fields()["objects"].Type.(*graphql.List) + assert.True(t, moveToObjectsOK) + moveToObjectsObjects, moveToObjectsObjectsOK := moveToObjects.OfType.(*graphql.InputObject) + assert.True(t, moveToObjectsObjectsOK) + assert.Equal(t, 2, len(moveToObjectsObjects.Fields())) + assert.NotNil(t, moveToObjectsObjects.Fields()["id"]) + assert.NotNil(t, moveToObjectsObjects.Fields()["beacon"]) + assert.NotNil(t, moveTo.Fields()["force"]) + _, moveToForceOK := moveTo.Fields()["force"].Type.(*graphql.NonNull) + assert.True(t, moveToForceOK) + assert.NotNil(t, fields["moveAwayFrom"]) + moveAwayFrom, moveAwayFromOK := fields["moveAwayFrom"].Type.(*graphql.InputObject) + assert.True(t, moveAwayFromOK) + assert.NotNil(t, moveAwayFrom.Fields()["concepts"]) + assert.NotNil(t, moveAwayFrom.Fields()["objects"]) + moveAwayFromObjects, moveAwayFromObjectsOK := moveAwayFrom.Fields()["objects"].Type.(*graphql.List) + assert.True(t, moveAwayFromObjectsOK) + moveAwayFromObjectsObjects, moveAwayFromObjectsObjectsOK := moveAwayFromObjects.OfType.(*graphql.InputObject) + assert.Equal(t, 2, len(moveAwayFromObjectsObjects.Fields())) + assert.True(t, moveAwayFromObjectsObjectsOK) + assert.NotNil(t, moveAwayFromObjectsObjects.Fields()["id"]) + assert.NotNil(t, moveAwayFromObjectsObjects.Fields()["beacon"]) + assert.NotNil(t, moveAwayFrom.Fields()["force"]) + _, moveAwayFromForceOK := moveAwayFrom.Fields()["force"].Type.(*graphql.NonNull) + assert.True(t, moveAwayFromForceOK) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.NotNil(t, targetVectorsList) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..42186cad1827befe9fa953d706d94845dcd4e453 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract.go @@ -0,0 +1,124 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// ExtractNearText arguments, such as "concepts", "moveTo", "moveAwayFrom", +// "limit", etc. +func (g *GraphQLArgumentsProvider) extractNearTextFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearTextParams + + // keywords is a required argument, so we don't need to check for its existing + keywords := source["concepts"].([]interface{}) + args.Values = make([]string, len(keywords)) + for i, value := range keywords { + args.Values[i] = value.(string) + } + + // autocorrect is an optional arg, so it could be nil + autocorrect, ok := source["autocorrect"] + if ok { + args.Autocorrect = autocorrect.(bool) + } + + // if there's text transformer present and autocorrect set to true + // perform text transformation operation + if args.Autocorrect && g.nearTextTransformer != nil { + if transformedValues, err := g.nearTextTransformer.Transform(args.Values); err == nil { + args.Values = transformedValues + } + } + + // limit is an optional arg, so it could be nil + limit, ok := source["limit"] + if ok { + // the type is fixed through gql config, no need to catch incorrect type + // assumption + args.Limit = limit.(int) + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + // moveTo is an optional arg, so it could be nil + moveTo, ok := source["moveTo"] + if ok { + args.MoveTo = extractMovement(moveTo) + } + + // network is an optional arg, so it could be nil + network, ok := source["network"] + if ok { + args.Network = network.(bool) + } + + // moveAwayFrom is an optional arg, so it could be nil + moveAwayFrom, ok := source["moveAwayFrom"] + if ok { + args.MoveAwayFrom = extractMovement(moveAwayFrom) + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} + +func extractMovement(input interface{}) ExploreMove { + // the type is fixed through gql config, no need to catch incorrect type + // assumption, all fields are required so we don't need to check for their + // presence + moveToMap := input.(map[string]interface{}) + res := ExploreMove{} + res.Force = float32(moveToMap["force"].(float64)) + + keywords, ok := moveToMap["concepts"].([]interface{}) + if ok { + res.Values = make([]string, len(keywords)) + for i, value := range keywords { + res.Values[i] = value.(string) + } + } + + objects, ok := moveToMap["objects"].([]interface{}) + if ok { + res.Objects = make([]ObjectMove, len(objects)) + for i, value := range objects { + v, ok := value.(map[string]interface{}) + if ok { + if v["id"] != nil { + res.Objects[i].ID = v["id"].(string) + } + if v["beacon"] != nil { + res.Objects[i].Beacon = v["beacon"].(string) + } + } + } + } + + return res +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..a6f6618efa4804be7ffb10a4dbcdcd74cb9bb24f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_extract_test.go @@ -0,0 +1,685 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearTextFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want *NearTextParams + wantTarget *dto.TargetCombination + }{ + { + "Extract with concepts", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + }, + nil, + }, + { + "Extract with concepts, distance, limit and network", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "distance": float64(0.4), + "limit": 100, + "network": true, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Distance: 0.4, + WithDistance: true, + Limit: 100, + Network: true, + }, + nil, + }, + { + "Extract with concepts, certainty, limit and network", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "certainty": float64(0.4), + "limit": 100, + "network": true, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Certainty: 0.4, + Limit: 100, + Network: true, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, and distance", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "distance": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Distance: 0.89, + WithDistance: true, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, and certainty", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "certainty": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Certainty: 0.89, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, distance (and objects)", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "distance": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveTo-uuid3", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Distance: 0.89, + WithDistance: true, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1"}, + {Beacon: "weaviate://localhost/moveTo-uuid2"}, + {Beacon: "weaviate://localhost/moveTo-uuid3"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, certainty (and objects)", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "certainty": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveTo-uuid3", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Certainty: 0.89, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1"}, + {Beacon: "weaviate://localhost/moveTo-uuid2"}, + {Beacon: "weaviate://localhost/moveTo-uuid3"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, distance (and doubled objects)", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "distance": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + "beacon": "weaviate://localhost/moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + "beacon": "weaviate://localhost/moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Distance: 0.89, + WithDistance: true, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1", Beacon: "weaviate://localhost/moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2", Beacon: "weaviate://localhost/moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, certainty (and doubled objects)", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "certainty": float64(0.89), + "limit": 500, + "network": false, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + "beacon": "weaviate://localhost/moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + "beacon": "weaviate://localhost/moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Certainty: 0.89, + Limit: 500, + Network: false, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1", Beacon: "weaviate://localhost/moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2", Beacon: "weaviate://localhost/moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with concepts and targetVectors", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "targetVectors": []interface{}{"targetVector"}, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + TargetVectors: []string{"targetVector"}, + }, + &dto.TargetCombination{Type: dto.Minimum}, + }, + } + + testsWithAutocorrect := []struct { + name string + args args + want *NearTextParams + wantTarget *dto.TargetCombination + }{ + { + "Extract with concepts", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "autocorrect": true, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + Autocorrect: true, + }, + nil, + }, + { + "Extract with concepts and perform autocorrect", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"transform this", "c2", "transform this"}, + "autocorrect": true, + }, + }, + &NearTextParams{ + Values: []string{"transformed text", "c2", "transformed text"}, + Autocorrect: true, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, distance (and doubled objects) and autocorrect", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"transform this", "c1", "c2", "c3", "transform this"}, + "distance": float64(0.89), + "limit": 500, + "network": false, + "autocorrect": true, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + "beacon": "weaviate://localhost/moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + "beacon": "weaviate://localhost/moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"transformed text", "c1", "c2", "c3", "transformed text"}, + Distance: 0.89, + WithDistance: true, + Limit: 500, + Network: false, + Autocorrect: true, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1", Beacon: "weaviate://localhost/moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2", Beacon: "weaviate://localhost/moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with moveTo, moveAwayFrom, certainty (and doubled objects) and autocorrect", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"transform this", "c1", "c2", "c3", "transform this"}, + "certainty": float64(0.89), + "limit": 500, + "network": false, + "autocorrect": true, + "moveTo": map[string]interface{}{ + "concepts": []interface{}{"positive"}, + "force": float64(0.5), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + map[string]interface{}{ + "id": "moveTo-uuid1", + "beacon": "weaviate://localhost/moveTo-uuid2", + }, + }, + }, + "moveAwayFrom": map[string]interface{}{ + "concepts": []interface{}{"epic"}, + "force": float64(0.25), + "objects": []interface{}{ + map[string]interface{}{ + "id": "moveAwayFrom-uuid1", + "beacon": "weaviate://localhost/moveAwayFrom-uuid1", + }, + map[string]interface{}{ + "id": "moveAwayFrom-uuid2", + "beacon": "weaviate://localhost/moveAwayFrom-uuid2", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid3", + }, + map[string]interface{}{ + "beacon": "weaviate://localhost/moveAwayFrom-uuid4", + }, + }, + }, + }, + }, + &NearTextParams{ + Values: []string{"transformed text", "c1", "c2", "c3", "transformed text"}, + Certainty: 0.89, + Limit: 500, + Network: false, + Autocorrect: true, + MoveTo: ExploreMove{ + Values: []string{"positive"}, + Force: 0.5, + Objects: []ObjectMove{ + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + {ID: "moveTo-uuid1", Beacon: "weaviate://localhost/moveTo-uuid2"}, + }, + }, + MoveAwayFrom: ExploreMove{ + Values: []string{"epic"}, + Force: 0.25, + Objects: []ObjectMove{ + {ID: "moveAwayFrom-uuid1", Beacon: "weaviate://localhost/moveAwayFrom-uuid1"}, + {ID: "moveAwayFrom-uuid2", Beacon: "weaviate://localhost/moveAwayFrom-uuid2"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid3"}, + {Beacon: "weaviate://localhost/moveAwayFrom-uuid4"}, + }, + }, + }, + nil, + }, + { + "Extract with concepts and targetVectors", + args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "targetVectors": []interface{}{"targetVector"}, + "autocorrect": true, + }, + }, + &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + TargetVectors: []string{"targetVector"}, + Autocorrect: true, + }, + &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with concepts and targets set", + args: args{ + source: map[string]interface{}{ + "concepts": []interface{}{"c1", "c2", "c3"}, + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearTextParams{ + Values: []string{"c1", "c2", "c3"}, + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + testsWithAutocorrect = append(testsWithAutocorrect, tests...) + + t.Run("should extract values", func(t *testing.T) { + provider := New(nil) + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := provider.extractNearTextFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearTextFn() = %v, want %v, %v with error %v", got, tt.want, tt.wantTarget, err) + } + }) + } + }) + t.Run("should extract values with transformer", func(t *testing.T) { + provider := New(&fakeTransformer{}) + for _, tt := range testsWithAutocorrect { + t.Run(tt.name, func(t *testing.T) { + got, target, err := provider.extractNearTextFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearTextFn() = %v, want %v, %v with error %v", got, tt.want, tt.wantTarget, err) + } + }) + } + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..385b968ea79ed410c75eb39357a732d7276a80c0 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/graphql_provider.go @@ -0,0 +1,42 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearText" + +type GraphQLArgumentsProvider struct { + nearTextTransformer modulecapabilities.TextTransform +} + +func New(nearTextTransformer modulecapabilities.TextTransform) *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{nearTextTransformer} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearText() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearText() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: g.getNearTextArgumentFn, + AggregateArgumentsFunction: g.aggregateNearTextArgumentFn, + ExploreArgumentsFunction: g.exploreNearTextArgumentFn, + ExtractFunction: g.extractNearTextFn, + ValidateFunction: g.validateNearTextFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param.go new file mode 100644 index 0000000000000000000000000000000000000000..804794380f46b1bed7428395158cc61d086aa138 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param.go @@ -0,0 +1,86 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "github.com/pkg/errors" +) + +type ObjectMove struct { + ID string + Beacon string +} + +// ExploreMove moves an existing Search Vector closer (or further away from) a specific other search term +type ExploreMove struct { + Values []string + Force float32 + Objects []ObjectMove +} + +type NearTextParams struct { + Values []string + Limit int + MoveTo ExploreMove + MoveAwayFrom ExploreMove + Certainty float64 + Distance float64 + WithDistance bool + Network bool + Autocorrect bool + TargetVectors []string +} + +func (n NearTextParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearTextParams) GetDistance() float64 { + return n.Distance +} + +func (n NearTextParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearTextParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func (n NearTextParams) Validate() error { + if n.MoveTo.Force > 0 && + n.MoveTo.Values == nil && n.MoveTo.Objects == nil { + return errors.Errorf("'nearText.moveTo' parameter " + + "needs to have defined either 'concepts' or 'objects' fields") + } + + if n.MoveAwayFrom.Force > 0 && + n.MoveAwayFrom.Values == nil && n.MoveAwayFrom.Objects == nil { + return errors.Errorf("'nearText.moveAwayFrom' parameter " + + "needs to have defined either 'concepts' or 'objects' fields") + } + + if n.Certainty != 0 && n.WithDistance { + return errors.Errorf( + "nearText cannot provide both distance and certainty") + } + + return nil +} + +func (g *GraphQLArgumentsProvider) validateNearTextFn(param interface{}) error { + text, ok := param.(*NearTextParams) + if !ok { + return errors.New("'nearText' invalid parameter") + } + return text.Validate() +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..decec5f1804bb17c8be8515c0a185731857c5a7a --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/param_test.go @@ -0,0 +1,235 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "testing" +) + +func Test_validateNearText(t *testing.T) { + tests := []struct { + name string + param NearTextParams + wantErr bool + }{ + { + "May be empty", + NearTextParams{}, + false, + }, + + { + "With just values", + NearTextParams{ + Values: []string{"foobar"}, + }, + false, + }, + { + "With values, distance, limit", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + }, + false, + }, + { + "With values, certainty, limit", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + }, + false, + }, + { + "With certainty and distance", + NearTextParams{ + Values: []string{"foobar"}, + Certainty: 0.9, + Distance: 0.1, + WithDistance: true, + }, + true, + }, + { + "When moveTo with force must also provide either values or objects (with distance)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + MoveTo: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo with force must also provide either values or objects (with certainty)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + MoveTo: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveAway with force must also provide either values or objects (with distance)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveAway with force must also provide either values or objects (with certainty)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo and moveAway with force must also provide either values or objects (with distance)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + MoveTo: ExploreMove{ + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo and moveAway with force must also provide either values or objects (with certainty)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + MoveTo: ExploreMove{ + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo or moveAway is with force must also provide either values or objects (with distance)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + MoveTo: ExploreMove{ + Values: []string{"move to"}, + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo or moveAway is with force must also provide either values or objects (with certainty)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + MoveTo: ExploreMove{ + Values: []string{"move to"}, + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Force: 0.9, + }, + }, + true, + }, + { + "When moveTo or moveAway is with force must provide values or objects (with distance)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Distance: 0.9, + WithDistance: true, + MoveTo: ExploreMove{ + Values: []string{"move to"}, + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Objects: []ObjectMove{ + {ID: "some-uuid"}, + }, + Force: 0.9, + }, + }, + false, + }, + { + "When moveTo or moveAway is with force must provide values or objects (with certainty)", + NearTextParams{ + Values: []string{"foobar"}, + Limit: 100, + Certainty: 0.9, + MoveTo: ExploreMove{ + Values: []string{"move to"}, + Force: 0.9, + }, + MoveAwayFrom: ExploreMove{ + Objects: []ObjectMove{ + {ID: "some-uuid"}, + }, + Force: 0.9, + }, + }, + false, + }, + { + "When more than one target vector is passed", + NearTextParams{ + Values: []string{"foobar"}, + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + false, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := tt.param.Validate(); (err != nil) != tt.wantErr { + t.Errorf("validateNearText() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..702e704664a9141d02d46de59fcf1e770697f9ee --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher.go @@ -0,0 +1,140 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" + "github.com/weaviate/weaviate/entities/schema/crossref" + libvectorizer "github.com/weaviate/weaviate/usecases/vectorizer" +) + +type Searcher[T dto.Embedding] struct { + vectorizer vectorizer[T] + movements *movements[T] +} + +func NewSearcher[T dto.Embedding](vectorizer vectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer, newMovements[T]()} +} + +type vectorizer[T dto.Embedding] interface { + Texts(ctx context.Context, input []string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearText"] = &vectorForParams[T]{s.vectorizer, s.movements} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer vectorizer[T] + movements *movements[T] +} + +func (s *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + return s.vectorFromNearTextParam(ctx, params.(*NearTextParams), className, findVectorFn, cfg) +} + +func (s *vectorForParams[T]) vectorFromNearTextParam(ctx context.Context, + params *NearTextParams, className string, findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + tenant := cfg.Tenant() + vector, err := s.vectorizer.Texts(ctx, params.Values, cfg) + if err != nil { + return nil, errors.Errorf("vectorize keywords: %v", err) + } + + moveTo := params.MoveTo + if moveTo.Force > 0 && (len(moveTo.Values) > 0 || len(moveTo.Objects) > 0) { + moveToVector, err := s.vectorFromValuesAndObjects(ctx, moveTo.Values, + moveTo.Objects, className, findVectorFn, cfg, tenant) + if err != nil { + return nil, errors.Errorf("vectorize move to: %v", err) + } + + afterMoveTo, err := s.movements.MoveTo(vector, moveToVector, moveTo.Force) + if err != nil { + return nil, err + } + vector = afterMoveTo + } + + moveAway := params.MoveAwayFrom + if moveAway.Force > 0 && (len(moveAway.Values) > 0 || len(moveAway.Objects) > 0) { + moveAwayVector, err := s.vectorFromValuesAndObjects(ctx, moveAway.Values, + moveAway.Objects, className, findVectorFn, cfg, tenant) + if err != nil { + return nil, errors.Errorf("vectorize move away from: %v", err) + } + + afterMoveFrom, err := s.movements.MoveAwayFrom(vector, moveAwayVector, moveAway.Force) + if err != nil { + return nil, err + } + vector = afterMoveFrom + } + + return vector, nil +} + +func (s *vectorForParams[T]) vectorFromValuesAndObjects(ctx context.Context, + values []string, objects []ObjectMove, + className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, tenant string, +) (T, error) { + var objectVectors []T + + if len(values) > 0 { + moveToVector, err := s.vectorizer.Texts(ctx, values, cfg) + if err != nil { + return nil, errors.Errorf("vectorize move to: %v", err) + } + objectVectors = append(objectVectors, moveToVector) + } + + if len(objects) > 0 { + var id strfmt.UUID + for _, obj := range objects { + if len(obj.ID) > 0 { + id = strfmt.UUID(obj.ID) + } + if len(obj.Beacon) > 0 { + ref, err := crossref.Parse(obj.Beacon) + if err != nil { + return nil, err + } + id = ref.TargetID + } + + vector, _, err := findVectorFn.FindVector(ctx, className, id, tenant, cfg.TargetVector()) + if err != nil { + return nil, err + } + + objectVectors = append(objectVectors, vector) + } + } + + return libvectorizer.CombineVectors(objectVectors), nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements.go new file mode 100644 index 0000000000000000000000000000000000000000..5447c2917dd82564bf5df39d0266cc99f32a1bf2 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements.go @@ -0,0 +1,99 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "errors" + "fmt" + + "github.com/weaviate/weaviate/entities/dto" +) + +type movements[T dto.Embedding] struct{} + +func newMovements[T dto.Embedding]() *movements[T] { + return &movements[T]{} +} + +var ( + ErrMultiVectorMoveTo = errors.New("move to operations are not applicable for multivector embeddings") + ErrMultiVectorMoveAway = errors.New("move away from operations are not applicable for multivector embeddings") +) + +// MoveTo moves one vector toward another +func (v *movements[T]) MoveTo(source T, target T, weight float32, +) (T, error) { + // the type of source/target should always be the same, but check both to be sure + if _, sourceOk := any(source).([][]float32); sourceOk { + return nil, ErrMultiVectorMoveTo + } + if _, targetOk := any(target).([][]float32); targetOk { + return nil, ErrMultiVectorMoveTo + } + + multiplier := float32(0.5) + + if len(source) != len(target) { + return nil, fmt.Errorf("movement: vector lengths don't match: got %d and %d", + len(source), len(target)) + } + + if weight < 0 || weight > 1 { + return nil, fmt.Errorf("movement: force must be between 0 and 1: got %f", + weight) + } + + switch any(source).(type) { + case []float32: + out := make([]float32, len(source)) + for i, sourceItem := range any(source).([]float32) { + out[i] = sourceItem*(1-weight*multiplier) + any(target).([]float32)[i]*(weight*multiplier) + } + return any(out).(T), nil + default: + return nil, errors.New("not implemented") + } +} + +// MoveAwayFrom moves one vector away from another +func (v *movements[T]) MoveAwayFrom(source T, target T, weight float32, +) (T, error) { + // the type of source/target should always be the same, but check both to be sure + if _, sourceOk := any(source).([][]float32); sourceOk { + return nil, ErrMultiVectorMoveAway + } + if _, targetOk := any(target).([][]float32); targetOk { + return nil, ErrMultiVectorMoveAway + } + + multiplier := float32(0.5) // so the movement is fair in comparison with moveTo + if len(source) != len(target) { + return nil, fmt.Errorf("movement (moveAwayFrom): vector lengths don't match: "+ + "got %d and %d", len(source), len(target)) + } + + if weight < 0 { + return nil, fmt.Errorf("movement (moveAwayFrom): force must be 0 or positive: "+ + "got %f", weight) + } + + switch any(source).(type) { + case []float32: + out := make([]float32, len(source)) + for i, sourceItem := range any(source).([]float32) { + out[i] = sourceItem + weight*multiplier*(sourceItem-any(target).([]float32)[i]) + } + return any(out).(T), nil + default: + return nil, errors.New("not implemented") + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements_test.go new file mode 100644 index 0000000000000000000000000000000000000000..8da1fb8fa54efbb2a03f81fca6e964c80de9e877 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearText/searcher_movements_test.go @@ -0,0 +1,175 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearText + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestMoveVectorToAnother(t *testing.T) { + t.Run("moving towards one another", func(t *testing.T) { + type testCase struct { + name string + source []float32 + target []float32 + weight float32 + expectedResult []float32 + expectedError error + } + + tests := []testCase{ + { + name: "no force", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0, 0}, + weight: 0, + expectedResult: []float32{0, 1, 2, 3, 4}, + expectedError: nil, + }, + { + name: "wrong vector sizes", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0}, + weight: 0, + expectedResult: nil, + expectedError: fmt.Errorf("movement: vector lengths don't match: got 5 and 4"), + }, + { + name: "force larger 1", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0, 0}, + weight: 1.5, + expectedResult: nil, + expectedError: fmt.Errorf("movement: force must be between 0 and 1: got 1.500000"), + }, + { + name: "force smaller 0", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0, 0}, + weight: -0.2, + expectedResult: nil, + expectedError: fmt.Errorf("movement: force must be between 0 and 1: got -0.200000"), + }, + { + name: "force equals 1", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{1, 1, 1, 1, 1}, + weight: 1, + expectedResult: []float32{0.5, 1, 1.5, 2, 2.5}, + expectedError: nil, + }, + { + name: "force equals 0.25", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{1, 1, 1, 1, 1}, + weight: 0.25, + expectedResult: []float32{0.125, 1, 1.875, 2.75, 3.625}, + expectedError: nil, + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + v := newMovements[[]float32]() + res, err := v.MoveTo(test.source, test.target, test.weight) + assert.Equal(t, test.expectedError, err) + assert.Equal(t, test.expectedResult, res) + }) + } + }) + + t.Run("moving away from one another", func(t *testing.T) { + type testCase struct { + name string + source []float32 + target []float32 + weight float32 + expectedResult []float32 + expectedError error + } + + tests := []testCase{ + { + name: "no force", + source: []float32{1, 2, 3, 4}, + target: []float32{0, 0, 0, 0}, + weight: 0, + expectedResult: []float32{1, 2, 3, 4}, + expectedError: nil, + }, + { + name: "wrong vector sizes", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0}, + weight: 0, + expectedResult: nil, + expectedError: fmt.Errorf("movement (moveAwayFrom): vector lengths don't match: got 5 and 4"), + }, + { + name: "force smaller 0", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{0, 0, 0, 0, 0}, + weight: -0.2, + expectedResult: nil, + expectedError: fmt.Errorf("movement (moveAwayFrom): force must be 0 or positive: got -0.200000"), + }, + { + name: "reproducing example from investigation period", + source: []float32{1.0, 1.0}, + target: []float32{1.2, 0.8}, + weight: 1, + expectedResult: []float32{0.9, 1.1}, + expectedError: nil, + }, + + { + name: "force equals 0.25", + source: []float32{0, 1, 2, 3, 4}, + target: []float32{1, 1, 1, 1, 1}, + weight: 0.25, + expectedResult: []float32{-0.125, 1, 2.125, 3.25, 4.375}, + expectedError: nil, + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + v := newMovements[[]float32]() + res, err := v.MoveAwayFrom(test.source, test.target, test.weight) + assert.Equal(t, test.expectedError, err) + for i := range test.expectedResult { + assert.InEpsilon(t, test.expectedResult[i], res[i], 0.01) + } + }) + } + }) + + t.Run("should error for multivectors", func(t *testing.T) { + source := [][]float32{{0, 1}, {2, 3}} + target := [][]float32{{0, 1}, {2, 3}} + + t.Run("multivectors moveTo", func(t *testing.T) { + v := newMovements[[][]float32]() + _, err := v.MoveTo(source, target, 0) + assert.Equal(t, err, fmt.Errorf("move to operations are not applicable for multivector embeddings")) + }) + + t.Run("multivectors moveAwayFrom", func(t *testing.T) { + v := newMovements[[][]float32]() + _, err := v.MoveAwayFrom(source, target, 0) + assert.Equal(t, err, fmt.Errorf("move away from operations are not applicable for multivector embeddings")) + }) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..020b0e05e0d4560cd52d570babb515ad339ae649 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearThermalArgumentFn(classname string) *graphql.ArgumentConfig { + return nearThermalArgument("GetObjects", classname) +} + +func exploreNearThermalArgumentFn() *graphql.ArgumentConfig { + return nearThermalArgument("Explore", "") +} + +func aggregateNearThermalArgumentFn(classname string) *graphql.ArgumentConfig { + return nearThermalArgument("Aggregate", classname) +} + +func nearThermalArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Multi2VecBind%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearThermalInpObj", prefixName), + Fields: nearThermalFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearThermalFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "thermal": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded thermal data", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..141f63974a4fb64cac0963faf44c2e9db3539275 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearThermalGraphQLArgument(t *testing.T) { + t.Run("should generate nearThermal argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearThermal := nearThermalArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearThermal: { + // thermal: "base64;encoded,thermal_image", + // distance: 0.9 + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearThermal) + assert.Equal(t, "Multi2VecBindPrefixClassNearThermalInpObj", nearThermal.Type.Name()) + answerFields, ok := nearThermal.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, answerFields) + assert.Equal(t, 4, len(answerFields.Fields())) + fields := answerFields.Fields() + thermal := fields["thermal"] + thermalNonNull, thermalNonNullOK := thermal.Type.(*graphql.NonNull) + assert.True(t, thermalNonNullOK) + assert.Equal(t, "String", thermalNonNull.OfType.Name()) + assert.NotNil(t, thermal) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..432071e40b8da787a85d8d3048ba6df10a115db2 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearThermalFn arguments, such as "thermal" and "certainty" +func extractNearThermalFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearThermalParams + + thermal, ok := source["thermal"].(string) + if ok { + args.Thermal = thermal + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..2b5cc5fba3f7aa0971cb9693e8b0d982c9d64ade --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_extract_test.go @@ -0,0 +1,110 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearThermalFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with distance and thermal params set", + args: args{ + source: map[string]interface{}{ + "thermal": "base64;encoded", + "distance": float64(0.9), + }, + }, + want: &NearThermalParams{ + Thermal: "base64;encoded", + Distance: 0.9, + WithDistance: true, + }, + }, + { + name: "should extract properly with certainty and thermal params set", + args: args{ + source: map[string]interface{}{ + "thermal": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearThermalParams{ + Thermal: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only thermal set", + args: args{ + source: map[string]interface{}{ + "thermal": "base64;encoded", + }, + }, + want: &NearThermalParams{ + Thermal: "base64;encoded", + }, + }, + { + name: "should extract properly with thermal and targetVectors set", + args: args{ + source: map[string]interface{}{ + "thermal": "base64;encoded", + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + }, + }, + want: &NearThermalParams{ + Thermal: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with thermal and targets set", + args: args{ + source: map[string]interface{}{ + "thermal": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearThermalParams{ + Thermal: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearThermalFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearThermalFn() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..59eb4f51f2559064bf514f6727e82e7f8fd56f16 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearThermal" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearThermal() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearThermal() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearThermalArgumentFn, + AggregateArgumentsFunction: aggregateNearThermalArgumentFn, + ExploreArgumentsFunction: exploreNearThermalArgumentFn, + ExtractFunction: extractNearThermalFn, + ValidateFunction: validateNearThermalFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param.go new file mode 100644 index 0000000000000000000000000000000000000000..99472aae1389cda2045685ecc72e59823fc297ea --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param.go @@ -0,0 +1,63 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "errors" +) + +type NearThermalParams struct { + Thermal string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearThermalParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearThermalParams) GetDistance() float64 { + return n.Distance +} + +func (n NearThermalParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearThermalParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func validateNearThermalFn(param interface{}) error { + nearThermal, ok := param.(*NearThermalParams) + if !ok { + return errors.New("'nearThermal' invalid parameter") + } + + if len(nearThermal.Thermal) == 0 { + return errors.New("'nearThermal.thermal' needs to be defined") + } + + if nearThermal.Certainty != 0 && nearThermal.WithDistance { + return errors.New( + "nearThermal cannot provide both distance and certainty") + } + + if len(nearThermal.TargetVectors) > 1 { + return errors.New( + "nearThermal.targetVectors cannot provide more than 1 target vector value") + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..178b160dfee17a580ccebe603ce58d4b24132bef --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/param_test.go @@ -0,0 +1,88 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import "testing" + +func Test_validateNearThermalFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearThermalParams{ + Thermal: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty thermal", + args: args{ + param: &NearThermalParams{ + Thermal: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil thermal", + args: args{ + param: &NearThermalParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearThermalParams{ + Thermal: "thermal", + }, + }, + wantErr: true, + }, + { + name: "should not pass with certainty and distance", + args: args{ + param: NearThermalParams{ + Thermal: "thermal", + Distance: 0.9, + WithDistance: true, + Certainty: 0.1, + }, + }, + wantErr: true, + }, + { + name: "should not pass with more then 1 target vector", + args: args{ + param: NearThermalParams{ + Thermal: "thermal", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := validateNearThermalFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("validateNearThermalFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..f39b471327818113374e57c6b9f9ed0613b0071f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearThermal/searcher.go @@ -0,0 +1,55 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearThermal + +import ( + "context" + + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer bindVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type bindVectorizer[T dto.Embedding] interface { + VectorizeThermal(ctx context.Context, thermal string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearThermal"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + // find vector for given search query + vector, err := v.vectorizer.VectorizeThermal(ctx, params.(*NearThermalParams).Thermal, cfg) + if err != nil { + return nil, errors.Errorf("vectorize thermal: %v", err) + } + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument.go new file mode 100644 index 0000000000000000000000000000000000000000..190fa349fb18ee169e4834e92570bda966048580 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument.go @@ -0,0 +1,65 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "fmt" + + "github.com/tailor-inc/graphql" + "github.com/weaviate/weaviate/adapters/handlers/graphql/descriptions" +) + +func getNearVideoArgumentFn(classname string) *graphql.ArgumentConfig { + return nearVideoArgument("GetObjects", classname) +} + +func exploreNearVideoArgumentFn() *graphql.ArgumentConfig { + return nearVideoArgument("Explore", "") +} + +func aggregateNearVideoArgumentFn(classname string) *graphql.ArgumentConfig { + return nearVideoArgument("Aggregate", classname) +} + +func nearVideoArgument(prefix, className string) *graphql.ArgumentConfig { + prefixName := fmt.Sprintf("Multi2VecBind%s%s", prefix, className) + return &graphql.ArgumentConfig{ + Type: graphql.NewInputObject( + graphql.InputObjectConfig{ + Name: fmt.Sprintf("%sNearVideoInpObj", prefixName), + Fields: nearVideoFields(prefixName), + Description: descriptions.GetWhereInpObj, + }, + ), + } +} + +func nearVideoFields(prefix string) graphql.InputObjectConfigFieldMap { + return graphql.InputObjectConfigFieldMap{ + "video": &graphql.InputObjectFieldConfig{ + Description: "Base64 encoded video", + Type: graphql.NewNonNull(graphql.String), + }, + "certainty": &graphql.InputObjectFieldConfig{ + Description: descriptions.Certainty, + Type: graphql.Float, + }, + "distance": &graphql.InputObjectFieldConfig{ + Description: descriptions.Distance, + Type: graphql.Float, + }, + "targetVectors": &graphql.InputObjectFieldConfig{ + Description: "Target vectors", + Type: graphql.NewList(graphql.String), + }, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument_test.go new file mode 100644 index 0000000000000000000000000000000000000000..4ce96c16828cfef632ed6f5d13ad61fc0e59b78e --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_argument_test.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/tailor-inc/graphql" +) + +func TestNearVideoGraphQLArgument(t *testing.T) { + t.Run("should generate nearVideo argument properly", func(t *testing.T) { + // given + prefix := "Prefix" + classname := "Class" + // when + nearVideo := nearVideoArgument(prefix, classname) + + // then + // the built graphQL field needs to support this structure: + // nearVideo: { + // video: "base64;encoded,video_file", + // distance: 0.9 + // targetVectors: ["targetVector"] + // } + assert.NotNil(t, nearVideo) + assert.Equal(t, "Multi2VecBindPrefixClassNearVideoInpObj", nearVideo.Type.Name()) + answerFields, ok := nearVideo.Type.(*graphql.InputObject) + assert.True(t, ok) + assert.NotNil(t, answerFields) + assert.Equal(t, 4, len(answerFields.Fields())) + fields := answerFields.Fields() + video := fields["video"] + videoNonNull, videoNonNullOK := video.Type.(*graphql.NonNull) + assert.True(t, videoNonNullOK) + assert.Equal(t, "String", videoNonNull.OfType.Name()) + assert.NotNil(t, video) + assert.NotNil(t, fields["certainty"]) + assert.NotNil(t, fields["distance"]) + targetVectors := fields["targetVectors"] + targetVectorsList, targetVectorsListOK := targetVectors.Type.(*graphql.List) + assert.True(t, targetVectorsListOK) + assert.Equal(t, "String", targetVectorsList.OfType.Name()) + assert.NotNil(t, targetVectors) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract.go new file mode 100644 index 0000000000000000000000000000000000000000..272408cd74917c05ff886a2d9fc5eb6dd10e7459 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract.go @@ -0,0 +1,46 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/dto" +) + +// extractNearVideoFn arguments, such as "video" and "certainty" +func extractNearVideoFn(source map[string]interface{}) (interface{}, *dto.TargetCombination, error) { + var args NearVideoParams + + video, ok := source["video"].(string) + if ok { + args.Video = video + } + + certainty, ok := source["certainty"] + if ok { + args.Certainty = certainty.(float64) + } + + distance, ok := source["distance"] + if ok { + args.Distance = distance.(float64) + args.WithDistance = true + } + + targetVectors, combination, err := common_filters.ExtractTargets(source) + if err != nil { + return nil, nil, err + } + args.TargetVectors = targetVectors + + return &args, combination, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract_test.go new file mode 100644 index 0000000000000000000000000000000000000000..d894737c02de5d2b8d72d1b76b5c6ed32e11bea2 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_extract_test.go @@ -0,0 +1,110 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "reflect" + "testing" + + "github.com/weaviate/weaviate/entities/dto" +) + +func Test_extractNearVideoFn(t *testing.T) { + type args struct { + source map[string]interface{} + } + tests := []struct { + name string + args args + want interface{} + wantTarget *dto.TargetCombination + }{ + { + name: "should extract properly with distance and video params set", + args: args{ + source: map[string]interface{}{ + "video": "base64;encoded", + "distance": float64(0.9), + }, + }, + want: &NearVideoParams{ + Video: "base64;encoded", + Distance: 0.9, + WithDistance: true, + }, + }, + { + name: "should extract properly with certainty and video params set", + args: args{ + source: map[string]interface{}{ + "video": "base64;encoded", + "certainty": float64(0.9), + }, + }, + want: &NearVideoParams{ + Video: "base64;encoded", + Certainty: 0.9, + }, + }, + { + name: "should extract properly with only video set", + args: args{ + source: map[string]interface{}{ + "video": "base64;encoded", + }, + }, + want: &NearVideoParams{ + Video: "base64;encoded", + }, + }, + { + name: "should extract properly with only video set", + args: args{ + source: map[string]interface{}{ + "video": "base64;encoded", + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + }, + }, + want: &NearVideoParams{ + Video: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.Minimum}, + }, + { + name: "should extract properly with video and targets set", + args: args{ + source: map[string]interface{}{ + "video": "base64;encoded", + "targets": map[string]interface{}{ + "targetVectors": []interface{}{"targetVector1", "targetVector2"}, + "combinationMethod": dto.ManualWeights, + "weights": map[string]interface{}{"targetVector1": 0.5, "targetVector2": 0.5}, + }, + }, + }, + want: &NearVideoParams{ + Video: "base64;encoded", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + wantTarget: &dto.TargetCombination{Type: dto.ManualWeights, Weights: []float32{0.5, 0.5}}, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + got, target, err := extractNearVideoFn(tt.args.source) + if !reflect.DeepEqual(got, tt.want) || !reflect.DeepEqual(target, tt.wantTarget) || err != nil { + t.Errorf("extractNearVideoFn() = %v, want %v", got, tt.want) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_provider.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_provider.go new file mode 100644 index 0000000000000000000000000000000000000000..2ca29eb0224aec162d79ab0a9bb4970c18f27246 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/graphql_provider.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "github.com/weaviate/weaviate/entities/modulecapabilities" +) + +const Name = "nearVideo" + +type GraphQLArgumentsProvider struct{} + +func New() *GraphQLArgumentsProvider { + return &GraphQLArgumentsProvider{} +} + +func (g *GraphQLArgumentsProvider) Arguments() map[string]modulecapabilities.GraphQLArgument { + arguments := map[string]modulecapabilities.GraphQLArgument{} + arguments[Name] = g.getNearVideo() + return arguments +} + +func (g *GraphQLArgumentsProvider) getNearVideo() modulecapabilities.GraphQLArgument { + return modulecapabilities.GraphQLArgument{ + GetArgumentsFunction: getNearVideoArgumentFn, + AggregateArgumentsFunction: aggregateNearVideoArgumentFn, + ExploreArgumentsFunction: exploreNearVideoArgumentFn, + ExtractFunction: extractNearVideoFn, + ValidateFunction: validateNearVideoFn, + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param.go new file mode 100644 index 0000000000000000000000000000000000000000..34f96e9d7228ff9c74fa03126de6bc56b7a4b667 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param.go @@ -0,0 +1,63 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "errors" +) + +type NearVideoParams struct { + Video string + Certainty float64 + Distance float64 + WithDistance bool + TargetVectors []string +} + +func (n NearVideoParams) GetCertainty() float64 { + return n.Certainty +} + +func (n NearVideoParams) GetDistance() float64 { + return n.Distance +} + +func (n NearVideoParams) SimilarityMetricProvided() bool { + return n.Certainty != 0 || n.WithDistance +} + +func (n NearVideoParams) GetTargetVectors() []string { + return n.TargetVectors +} + +func validateNearVideoFn(param interface{}) error { + nearVideo, ok := param.(*NearVideoParams) + if !ok { + return errors.New("'nearVideo' invalid parameter") + } + + if len(nearVideo.Video) == 0 { + return errors.New("'nearVideo.video' needs to be defined") + } + + if nearVideo.Certainty != 0 && nearVideo.WithDistance { + return errors.New( + "nearVideo cannot provide both distance and certainty") + } + + if len(nearVideo.TargetVectors) > 1 { + return errors.New( + "nearVideo.targetVectors cannot provide more than 1 target vector value") + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param_test.go new file mode 100644 index 0000000000000000000000000000000000000000..530b19f939e07bf999ca034dc4b7399ca1d16f90 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/param_test.go @@ -0,0 +1,88 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import "testing" + +func Test_validateNearVideoFn(t *testing.T) { + type args struct { + param interface{} + } + tests := []struct { + name string + args args + wantErr bool + }{ + { + name: "should pass with proper values", + args: args{ + param: &NearVideoParams{ + Video: "base64;enncoded", + }, + }, + }, + { + name: "should not pass with empty video", + args: args{ + param: &NearVideoParams{ + Video: "", + }, + }, + wantErr: true, + }, + { + name: "should not pass with nil video", + args: args{ + param: &NearVideoParams{}, + }, + wantErr: true, + }, + { + name: "should not pass with struct param, not a pointer to struct", + args: args{ + param: NearVideoParams{ + Video: "video", + }, + }, + wantErr: true, + }, + { + name: "should not pass with certainty and distance", + args: args{ + param: NearVideoParams{ + Video: "video", + Distance: 0.9, + WithDistance: true, + Certainty: 0.1, + }, + }, + wantErr: true, + }, + { + name: "should not pass with more then 1 target vector set", + args: args{ + param: NearVideoParams{ + Video: "video", + TargetVectors: []string{"targetVector1", "targetVector2"}, + }, + }, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if err := validateNearVideoFn(tt.args.param); (err != nil) != tt.wantErr { + t.Errorf("ValidateNearVideoFn() error = %v, wantErr %v", err, tt.wantErr) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..bc7f21d9a9964cfe907437eb87337a858ee2e048 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/arguments/nearVideo/searcher.go @@ -0,0 +1,56 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nearVideo + +import ( + "context" + + "github.com/pkg/errors" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/modulecapabilities" + "github.com/weaviate/weaviate/entities/moduletools" +) + +type Searcher[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func NewSearcher[T dto.Embedding](vectorizer bindVectorizer[T]) *Searcher[T] { + return &Searcher[T]{vectorizer} +} + +type bindVectorizer[T dto.Embedding] interface { + VectorizeVideo(ctx context.Context, video string, cfg moduletools.ClassConfig) (T, error) +} + +func (s *Searcher[T]) VectorSearches() map[string]modulecapabilities.VectorForParams[T] { + vectorSearches := map[string]modulecapabilities.VectorForParams[T]{} + vectorSearches["nearVideo"] = &vectorForParams[T]{s.vectorizer} + return vectorSearches +} + +type vectorForParams[T dto.Embedding] struct { + vectorizer bindVectorizer[T] +} + +func (v *vectorForParams[T]) VectorForParams(ctx context.Context, params interface{}, className string, + findVectorFn modulecapabilities.FindVectorFn[T], + cfg moduletools.ClassConfig, +) (T, error) { + // find vector for given search query + vector, err := v.vectorizer.VectorizeVideo(ctx, params.(*NearVideoParams).Video, cfg) + if err != nil { + return nil, errors.Errorf("vectorize video: %v", err) + } + + return vector, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere.go new file mode 100644 index 0000000000000000000000000000000000000000..c60fad2b84e14dd5ec22dc2e75337280a9085e23 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere.go @@ -0,0 +1,255 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package cohere + +import ( + "bytes" + "context" + "crypto/sha256" + "encoding/json" + "fmt" + "io" + "net/http" + "strings" + "time" + + "github.com/weaviate/weaviate/entities/moduletools" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" +) + +const ( + DefaultRPM = 10000 // from https://docs.cohere.com/docs/going-live#production-key-specifications default for production keys + DefaultTPM = 10000000 // no token limit used by cohere +) + +type embeddingsRequest struct { + Texts []string `json:"texts,omitempty"` + Images []string `json:"images,omitempty"` + Model string `json:"model,omitempty"` + InputType InputType `json:"input_type,omitempty"` + EmbeddingTypes []embeddingType `json:"embedding_types,omitempty"` + Truncate string `json:"truncate,omitempty"` +} + +type billedUnits struct { + InputTokens int `json:"input_tokens,omitempty"` + OutputTokens int `json:"output_tokens,omitempty"` + SearchUnits int `json:"search_units,omitempty"` + Classificatons int `json:"classifications,omitempty"` + Images int `json:"images,omitempty"` +} + +type meta struct { + BilledUnits billedUnits `json:"billed_units,omitempty"` + Warnings []string `json:"warnings,omitempty"` +} + +type embeddingsResponse struct { + ID string `json:"id"` + Embeddings embeddings `json:"embeddings,omitempty"` + Message string `json:"message,omitempty"` + Meta meta `json:"meta,omitempty"` +} + +type embeddings struct { + Float [][]float32 `json:"float,omitempty"` +} + +type Client struct { + apiKey string + httpClient *http.Client + urlBuilder *cohereUrlBuilder + logger logrus.FieldLogger +} + +type InputType string + +const ( + SearchDocument InputType = "search_document" + SearchQuery InputType = "search_query" + Image InputType = "image" +) + +type embeddingType string + +const float embeddingType = "float" + +type Settings struct { + Model string + Truncate string + BaseURL string + InputType InputType +} + +func New(apiKey string, timeout time.Duration, logger logrus.FieldLogger) *Client { + return &Client{ + apiKey: apiKey, + httpClient: &http.Client{ + Timeout: timeout, + }, + urlBuilder: newCohereUrlBuilder(), + logger: logger, + } +} + +func (c *Client) Vectorize(ctx context.Context, + inputs []string, settings Settings, +) (*modulecomponents.VectorizationResult[[]float32], error) { + body, err := json.Marshal(c.getEmbeddingRequest(inputs, settings)) + if err != nil { + return nil, errors.Wrapf(err, "marshal body") + } + + url := c.getCohereUrl(ctx, settings.BaseURL) + req, err := http.NewRequestWithContext(ctx, "POST", url, + bytes.NewReader(body)) + if err != nil { + return nil, errors.Wrap(err, "create POST request") + } + apiKey, err := c.getApiKey(ctx) + if err != nil { + return nil, errors.Wrapf(err, "Cohere API Key") + } + req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", apiKey)) + req.Header.Add("Accept", "application/json") + req.Header.Add("Content-Type", "application/json") + req.Header.Add("Request-Source", "unspecified:weaviate") + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send POST request") + } + defer res.Body.Close() + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read response body") + } + var resBody embeddingsResponse + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) + } + + if res.StatusCode != 200 { + errorMessage := c.getErrorMessage(res.StatusCode, resBody.Message) + return nil, errors.New(errorMessage) + } + + if len(resBody.Embeddings.Float) == 0 { + return nil, errors.Errorf("empty embeddings response") + } + + return &modulecomponents.VectorizationResult[[]float32]{ + Text: inputs, + Dimensions: len(resBody.Embeddings.Float[0]), + Vector: resBody.Embeddings.Float, + }, nil +} + +func (c *Client) getEmbeddingRequest(inputs []string, settings Settings) embeddingsRequest { + switch settings.InputType { + case Image: + images := make([]string, len(inputs)) + for i := range inputs { + if !strings.HasPrefix(inputs[i], "data:") { + images[i] = fmt.Sprintf("data:image/png;base64,%s", inputs[i]) + } else { + images[i] = inputs[i] + } + } + return embeddingsRequest{ + Images: images, + Model: settings.Model, + InputType: settings.InputType, + EmbeddingTypes: []embeddingType{float}, + } + default: + return embeddingsRequest{ + Texts: inputs, + Model: settings.Model, + Truncate: settings.Truncate, + InputType: settings.InputType, + EmbeddingTypes: []embeddingType{float}, + } + } +} + +func (c *Client) getCohereUrl(ctx context.Context, baseURL string) string { + passedBaseURL := baseURL + if headerBaseURL := modulecomponents.GetValueFromContext(ctx, "X-Cohere-Baseurl"); headerBaseURL != "" { + passedBaseURL = headerBaseURL + } + return c.urlBuilder.url(passedBaseURL) +} + +func (c *Client) GetApiKeyHash(ctx context.Context, config moduletools.ClassConfig) [32]byte { + key, err := c.getApiKey(ctx) + if err != nil { + return [32]byte{} + } + return sha256.Sum256([]byte(key)) +} + +func (c *Client) GetVectorizerRateLimit(ctx context.Context, cfg moduletools.ClassConfig) *modulecomponents.RateLimits { + rpm, _ := modulecomponents.GetRateLimitFromContext(ctx, "Cohere", DefaultRPM, 0) + + execAfterRequestFunction := func(limits *modulecomponents.RateLimits, tokensUsed int, deductRequest bool) { + // refresh is after 60 seconds but leave a bit of room for errors. Otherwise, we only deduct the request that just happened + if limits.LastOverwrite.Add(61 * time.Second).After(time.Now()) { + if deductRequest { + limits.RemainingRequests -= 1 + } + return + } + + limits.RemainingRequests = rpm + limits.ResetRequests = time.Now().Add(time.Duration(61) * time.Second) + limits.LimitRequests = rpm + limits.LastOverwrite = time.Now() + + // high dummy values + limits.RemainingTokens = DefaultTPM + limits.LimitTokens = DefaultTPM + limits.ResetTokens = time.Now().Add(time.Duration(1) * time.Second) + } + + initialRL := &modulecomponents.RateLimits{AfterRequestFunction: execAfterRequestFunction, LastOverwrite: time.Now().Add(-61 * time.Minute)} + initialRL.ResetAfterRequestFunction(0) // set initial values + + return initialRL +} + +func (c *Client) getErrorMessage(statusCode int, resBodyError string) string { + if resBodyError != "" { + return fmt.Sprintf("connection to Cohere failed with status: %d error: %v", statusCode, resBodyError) + } + return fmt.Sprintf("connection to Cohere failed with status: %d", statusCode) +} + +func (c *Client) getApiKey(ctx context.Context) (string, error) { + if apiKey := modulecomponents.GetValueFromContext(ctx, "X-Cohere-Api-Key"); apiKey != "" { + return apiKey, nil + } + if c.apiKey != "" { + return c.apiKey, nil + } + return "", errors.New("no api key found " + + "neither in request header: X-Cohere-Api-Key " + + "nor in environment variable under COHERE_APIKEY") +} + +func (c *Client) HasTokenLimit() bool { return false } + +func (c *Client) ReturnsRateLimit() bool { return false } diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere_test.go new file mode 100644 index 0000000000000000000000000000000000000000..2ba21ecc304624ffe9c3060ed42a07ec00aeab37 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/cohere_test.go @@ -0,0 +1,413 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package cohere + +import ( + "context" + "encoding/json" + "io" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestClient(t *testing.T) { + t.Run("when all is fine", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + res, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when the context is expired", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, err := c.Vectorize(ctx, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "context deadline exceeded") + }) + + t.Run("when the server returns an error", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{ + t: t, + serverError: errors.Errorf("nope, not gonna happen"), + }) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + _, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "connection to Cohere failed with status: 500 error: nope, not gonna happen") + }) + + t.Run("when Cohere key is passed using X-Cohere-Api-Key header", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + ctxWithValue := context.WithValue(context.Background(), + "X-Cohere-Api-Key", []string{"some-key"}) + + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + res, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when Cohere key is empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, err := c.Vectorize(ctx, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "Cohere API Key: no api key found "+ + "neither in request header: X-Cohere-Api-Key "+ + "nor in environment variable under COHERE_APIKEY") + }) + + t.Run("when X-Cohere-Api-Key header is passed but empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctxWithValue := context.WithValue(context.Background(), + "X-Cohere-Api-Key", []string{""}) + + _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "Cohere API Key: no api key found "+ + "neither in request header: X-Cohere-Api-Key "+ + "nor in environment variable under COHERE_APIKEY") + }) + + t.Run("when X-Cohere-BaseURL header is passed", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + + baseURL := "http://default-url.com" + ctxWithValue := context.WithValue(context.Background(), + "X-Cohere-Baseurl", []string{"http://base-url-passed-in-header.com"}) + + buildURL := c.getCohereUrl(ctxWithValue, baseURL) + assert.Equal(t, "http://base-url-passed-in-header.com/v2/embed", buildURL) + + buildURL = c.getCohereUrl(context.TODO(), baseURL) + assert.Equal(t, "http://default-url.com/v2/embed", buildURL) + }) + + t.Run("pass rate limit headers requests", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &cohereUrlBuilder{ + origin: server.URL, + pathMask: "/v2/embed", + }, + logger: nullLogger(), + } + + ctxWithValue := context.WithValue(context.Background(), + "X-Cohere-Ratelimit-RequestPM-Embedding", []string{"50"}) + + rl := c.GetVectorizerRateLimit(ctxWithValue, fakeClassConfig{classConfig: map[string]interface{}{}}) + assert.Equal(t, 50, rl.LimitRequests) + assert.Equal(t, 50, rl.RemainingRequests) + }) +} + +func TestParse(t *testing.T) { + t.Run("request", func(t *testing.T) { + t.Run("text", func(t *testing.T) { + c := New("apiKey", time.Second, nil) + request := c.getEmbeddingRequest([]string{"hello", "goodbye"}, Settings{ + Model: "embed-english-v3.0", + InputType: SearchDocument, + Truncate: "END", + BaseURL: "some-base-url", + }) + check := `{ + "model": "embed-english-v3.0", + "texts": ["hello", "goodbye"], + "input_type": "search_document", + "embedding_types": ["float"], + "truncate": "END" + }` + var checkRequest embeddingsRequest + err := json.Unmarshal([]byte(check), &checkRequest) + require.NoError(t, err) + assert.Equal(t, checkRequest.Model, request.Model) + assert.Equal(t, checkRequest.Texts, request.Texts) + assert.Equal(t, checkRequest.Images, request.Images) + assert.Equal(t, checkRequest.InputType, request.InputType) + assert.Equal(t, checkRequest.EmbeddingTypes, request.EmbeddingTypes) + assert.Equal(t, checkRequest.Truncate, request.Truncate) + }) + t.Run("image", func(t *testing.T) { + c := New("apiKey", time.Second, nil) + request := c.getEmbeddingRequest([]string{"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD//gAfQ29tcHJlc3NlZ"}, Settings{ + Model: "embed-english-v3.0", + InputType: Image, + Truncate: "END", + BaseURL: "some-base-url", + }) + check := `{ + "model": "embed-english-v3.0", + "input_type": "image", + "embedding_types": ["float"], + "images": ["data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD//gAfQ29tcHJlc3NlZ"] + }` + var checkRequest embeddingsRequest + err := json.Unmarshal([]byte(check), &checkRequest) + require.NoError(t, err) + assert.Equal(t, checkRequest.Model, request.Model) + assert.Equal(t, checkRequest.Texts, request.Texts) + assert.Equal(t, checkRequest.Images, request.Images) + assert.Equal(t, checkRequest.InputType, request.InputType) + assert.Equal(t, checkRequest.EmbeddingTypes, request.EmbeddingTypes) + assert.Equal(t, checkRequest.Truncate, request.Truncate) + }) + }) + t.Run("response", func(t *testing.T) { + t.Run("text", func(t *testing.T) { + response := `{ + "id": "da6e531f-54c6-4a73-bf92-f60566d8d753", + "embeddings": { + "float": [ + [0.016296387,-0.008354187,-0.04699707], + [0.1,-0.2,-0.3] + ] + }, + "texts": [ + "hello", + "goodbye" + ], + "meta": { + "api_version": { + "version": "2", + "is_experimental": true + }, + "billed_units": { + "input_tokens": 2 + }, + "warnings": [ + "You are using an experimental version, for more information please refer to https://docs.cohere.com/versioning-reference" + ] + } + }` + var resp embeddingsResponse + err := json.Unmarshal([]byte(response), &resp) + require.NoError(t, err) + assert.Equal(t, "da6e531f-54c6-4a73-bf92-f60566d8d753", resp.ID) + require.Len(t, resp.Embeddings.Float, 2) + assert.Equal(t, []float32{0.016296387, -0.008354187, -0.04699707}, resp.Embeddings.Float[0]) + assert.Equal(t, []float32{0.1, -0.2, -0.3}, resp.Embeddings.Float[1]) + assert.Equal(t, 2, resp.Meta.BilledUnits.InputTokens) + }) + t.Run("image", func(t *testing.T) { + response := `{ + "id": "5807ee2e-0cda-445a-9ec8-864c60a06606", + "embeddings": { + "float": [ + [-0.007247925, -0.041229248] + ] + }, + "texts": [], + "images": [ + { + "width": 400, + "height": 400, + "format": "jpeg", + "bit_depth": 24 + } + ], + "meta": { + "api_version": { + "version": "2" + }, + "billed_units": { + "images": 1 + } + } + }` + var resp embeddingsResponse + err := json.Unmarshal([]byte(response), &resp) + require.NoError(t, err) + assert.Equal(t, "5807ee2e-0cda-445a-9ec8-864c60a06606", resp.ID) + require.Len(t, resp.Embeddings.Float, 1) + assert.Equal(t, []float32{-0.007247925, -0.041229248}, resp.Embeddings.Float[0]) + assert.Equal(t, 1, resp.Meta.BilledUnits.Images) + }) + }) +} + +type fakeHandler struct { + t *testing.T + serverError error +} + +func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + assert.Equal(f.t, http.MethodPost, r.Method) + + if f.serverError != nil { + embeddingError := map[string]interface{}{ + "message": f.serverError.Error(), + "type": "invalid_request_error", + } + embeddingResponse := map[string]interface{}{ + "message": embeddingError["message"], + } + outBytes, err := json.Marshal(embeddingResponse) + require.Nil(f.t, err) + + w.WriteHeader(http.StatusInternalServerError) + w.Write(outBytes) + return + } + + bodyBytes, err := io.ReadAll(r.Body) + require.Nil(f.t, err) + defer r.Body.Close() + + var b map[string]interface{} + require.Nil(f.t, json.Unmarshal(bodyBytes, &b)) + + textInput := b["texts"].([]interface{}) + assert.Greater(f.t, len(textInput), 0) + + embeddingResponse := map[string]interface{}{ + "embeddings": map[string]interface{}{ + "float": [][]float32{{0.1, 0.2, 0.3}}, + }, + } + outBytes, err := json.Marshal(embeddingResponse) + require.Nil(f.t, err) + + w.Write(outBytes) +} + +func nullLogger() logrus.FieldLogger { + l, _ := test.NewNullLogger() + return l +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/fakes_for_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/fakes_for_test.go new file mode 100644 index 0000000000000000000000000000000000000000..d30943cec45afa666924433230e133892aea14a5 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/fakes_for_test.go @@ -0,0 +1,67 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package cohere + +import ( + "github.com/weaviate/weaviate/entities/schema" + "github.com/weaviate/weaviate/usecases/config" +) + +type fakeClassConfig struct { + classConfig map[string]interface{} + vectorizePropertyName bool + skippedProperty string + excludedProperty string +} + +func (f fakeClassConfig) Class() map[string]interface{} { + return f.classConfig +} + +func (f fakeClassConfig) ClassByModuleName(moduleName string) map[string]interface{} { + return f.classConfig +} + +func (f fakeClassConfig) Property(propName string) map[string]interface{} { + if propName == f.skippedProperty { + return map[string]interface{}{ + "skip": true, + } + } + if propName == f.excludedProperty { + return map[string]interface{}{ + "vectorizePropertyName": false, + } + } + if f.vectorizePropertyName { + return map[string]interface{}{ + "vectorizePropertyName": true, + } + } + return nil +} + +func (f fakeClassConfig) Tenant() string { + return "" +} + +func (f fakeClassConfig) TargetVector() string { + return "" +} + +func (f fakeClassConfig) PropertiesDataTypes() map[string]schema.DataType { + return nil +} + +func (f fakeClassConfig) Config() *config.Config { + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/url.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/url.go new file mode 100644 index 0000000000000000000000000000000000000000..a26e72fb2d1afea8bb53ff76b93e110634ebcd9f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/cohere/url.go @@ -0,0 +1,33 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package cohere + +import "fmt" + +type cohereUrlBuilder struct { + origin string + pathMask string +} + +func newCohereUrlBuilder() *cohereUrlBuilder { + return &cohereUrlBuilder{ + origin: "https://api.cohere.ai", + pathMask: "/v2/embed", + } +} + +func (c *cohereUrlBuilder) url(baseURL string) string { + if baseURL != "" { + return fmt.Sprintf("%s%s", baseURL, c.pathMask) + } + return fmt.Sprintf("%s%s", c.origin, c.pathMask) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai.go new file mode 100644 index 0000000000000000000000000000000000000000..b8e5cfa48bb3cfc0431451cce1e5e0b319c553d5 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai.go @@ -0,0 +1,342 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package jinaai + +import ( + "bytes" + "context" + "crypto/sha256" + "encoding/json" + "fmt" + "io" + "net/http" + "net/url" + "strings" + "time" + + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/moduletools" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" +) + +type ( + Task string + embeddingType string +) + +const ( + // taskType + RetrievalQuery Task = "retrieval.query" + RetrievalPassage Task = "retrieval.passage" + // embeddingType + embeddingTypeFloat embeddingType = "float" + embeddingTypeBase64 embeddingType = "base64" + embeddingTypeBinary embeddingType = "binary" + embeddingTypeUbinary embeddingType = "ubinary" +) + +type MultiModalInput struct { + Text string `json:"text,omitempty"` + Image string `json:"image,omitempty"` +} + +type embeddingsRequest[T []string | []MultiModalInput] struct { + Input T `json:"input"` + Model string `json:"model,omitempty"` + EmbeddingType embeddingType `json:"embedding_type,omitempty"` + Normalized *bool `json:"normalized,omitempty"` + Task *Task `json:"task,omitempty"` + Dimensions *int64 `json:"dimensions,omitempty"` + ReturnMultivector *bool `json:"return_multivector,omitempty"` +} + +type jinaErrorDetail struct { + Detail string `json:"detail,omitempty"` // in case of error detail holds the error message +} + +type embedding[T dto.Embedding] struct { + jinaErrorDetail + Object string `json:"object"` + Data []embeddingData[T] `json:"data,omitempty"` + Usage *modulecomponents.Usage `json:"usage,omitempty"` +} + +type embeddingData[T dto.Embedding] struct { + Object string `json:"object"` + Index int `json:"index"` + Embedding T `json:"embedding"` + Embeddings T `json:"embeddings"` +} + +func (ed embeddingData[T]) getEmbedding() T { + if len(ed.Embedding) > 0 { + return ed.Embedding + } + return ed.Embeddings +} + +type Settings struct { + Task Task + Model string + BaseURL string + Dimensions *int64 + Normalized bool + ReturnMultivector bool +} + +type Client[T dto.Embedding] struct { + jinaAIApiKey string + httpClient *http.Client + buildUrlFn func(settings Settings) (string, error) + defaultRPM int + defaultTPM int + logger logrus.FieldLogger +} + +func EmbeddingsBuildUrlFn(settings Settings) (string, error) { + host := settings.BaseURL + path := "/v1/embeddings" + return url.JoinPath(host, path) +} + +func MultiVectorBuildUrlFn(settings Settings) (string, error) { + host := settings.BaseURL + path := "/v1/multi-vector" + return url.JoinPath(host, path) +} + +func New[T dto.Embedding](jinaAIApiKey string, + timeout time.Duration, + defaultRPM, defaultTPM int, + buildUrlFn func(settings Settings) (string, error), + logger logrus.FieldLogger, +) *Client[T] { + return &Client[T]{ + jinaAIApiKey: jinaAIApiKey, + httpClient: &http.Client{ + Timeout: timeout, + }, + buildUrlFn: buildUrlFn, + defaultRPM: defaultRPM, + defaultTPM: defaultTPM, + logger: logger, + } +} + +func (c *Client[T]) Vectorize(ctx context.Context, input []string, + settings Settings, +) (*modulecomponents.VectorizationResult[T], *modulecomponents.RateLimits, int, error) { + embeddingRequest := c.getTextEmbeddingsRequest(input, settings) + resBody, err := c.vectorize(ctx, embeddingRequest, settings) + if err != nil { + return nil, nil, 0, err + } + + texts := make([]string, len(resBody.Data)) + embeddings := make([]T, len(resBody.Data)) + for i := range resBody.Data { + index := resBody.Data[i].Index + texts[index] = resBody.Data[i].Object + if resBody.Data[i].Embedding != nil { + embeddings[index] = resBody.Data[i].Embedding + } else if resBody.Data[i].Embeddings != nil { + embeddings[index] = resBody.Data[i].Embeddings + } + } + + res := &modulecomponents.VectorizationResult[T]{ + Text: texts, + Dimensions: len(resBody.Data[0].Embedding), + Vector: embeddings, + } + + return res, nil, modulecomponents.GetTotalTokens(resBody.Usage), nil +} + +func (c *Client[T]) VectorizeMultiModal(ctx context.Context, texts, images []string, + settings Settings, +) (*modulecomponents.VectorizationCLIPResult[T], error) { + embeddingRequest := c.getMultiModalEmbeddingsRequest(texts, images, settings) + resBody, err := c.vectorize(ctx, embeddingRequest, settings) + if err != nil { + return nil, err + } + + var textVectors, imageVectors []T + for i := range resBody.Data { + if i < len(texts) { + textVectors = append(textVectors, resBody.Data[i].getEmbedding()) + } else { + imageVectors = append(imageVectors, resBody.Data[i].getEmbedding()) + } + } + + res := &modulecomponents.VectorizationCLIPResult[T]{ + TextVectors: textVectors, + ImageVectors: imageVectors, + } + return res, nil +} + +func (c *Client[T]) vectorize(ctx context.Context, + embeddingRequest interface{}, settings Settings, +) (*embedding[T], error) { + body, err := json.Marshal(embeddingRequest) + if err != nil { + return nil, errors.Wrap(err, "marshal body") + } + + endpoint, err := c.buildUrlFn(settings) + if err != nil { + return nil, errors.Wrap(err, "join jinaAI API host and path") + } + + req, err := http.NewRequestWithContext(ctx, "POST", endpoint, + bytes.NewReader(body)) + if err != nil { + return nil, errors.Wrap(err, "create POST request") + } + apiKey, err := c.getApiKey(ctx) + if err != nil { + return nil, errors.Wrap(err, "API Key") + } + req.Header.Add(c.getApiKeyHeaderAndValue(apiKey)) + req.Header.Add("Content-Type", "application/json") + req.Header.Add("x-header-vectordb-source", "Weaviate") + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send POST request") + } + defer res.Body.Close() + + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read response body") + } + + var resBody embedding[T] + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) + } + + if res.StatusCode != 200 { + return nil, c.getError(res.StatusCode, resBody.Detail) + } + + return &resBody, nil +} + +func (c *Client[T]) getError(statusCode int, errorMessage string) error { + endpoint := "JinaAI API" + if errorMessage != "" { + return fmt.Errorf("connection to: %s failed with status: %d error: %v", endpoint, statusCode, errorMessage) + } + return fmt.Errorf("connection to: %s failed with status: %d", endpoint, statusCode) +} + +func (c *Client[T]) getTextEmbeddingsRequest(input []string, settings Settings) embeddingsRequest[[]string] { + req := embeddingsRequest[[]string]{ + Input: input, + Model: settings.Model, + EmbeddingType: embeddingTypeFloat, + Dimensions: settings.Dimensions, + } + if strings.Contains(settings.Model, "v3") || strings.Contains(settings.Model, "clip") { + // v3 models require taskType and dimensions params + req.Task = &settings.Task + req.Normalized = &settings.Normalized + } + if settings.ReturnMultivector { + req.ReturnMultivector = &settings.ReturnMultivector + } + return req +} + +func (c *Client[T]) getMultiModalEmbeddingsRequest(texts, images []string, settings Settings) embeddingsRequest[[]MultiModalInput] { + input := make([]MultiModalInput, len(texts)+len(images)) + for i := range texts { + input[i] = MultiModalInput{Text: texts[i]} + } + offset := len(texts) + for i := range images { + input[offset+i] = MultiModalInput{Image: images[i]} + } + req := embeddingsRequest[[]MultiModalInput]{ + Input: input, + Model: settings.Model, + EmbeddingType: embeddingTypeFloat, + Dimensions: settings.Dimensions, + } + if settings.ReturnMultivector { + req.ReturnMultivector = &settings.ReturnMultivector + } + return req +} + +func (c *Client[T]) getApiKeyHeaderAndValue(apiKey string) (string, string) { + return "Authorization", fmt.Sprintf("Bearer %s", apiKey) +} + +func (c *Client[T]) getApiKey(ctx context.Context) (string, error) { + return c.getApiKeyFromContext(ctx, "X-Jinaai-Api-Key", "JINAAI_APIKEY") +} + +func (c *Client[T]) getApiKeyFromContext(ctx context.Context, apiKey, envVar string) (string, error) { + if apiKeyValue := modulecomponents.GetValueFromContext(ctx, apiKey); apiKeyValue != "" { + return apiKeyValue, nil + } + if c.jinaAIApiKey != "" { + return c.jinaAIApiKey, nil + } + return "", fmt.Errorf("no api key found neither in request header: %s nor in environment variable under %s", apiKey, envVar) +} + +func (c *Client[T]) GetApiKeyHash(ctx context.Context, config moduletools.ClassConfig) [32]byte { + key, err := c.getApiKey(ctx) + if err != nil { + return [32]byte{} + } + return sha256.Sum256([]byte(key)) +} + +func (c *Client[T]) GetVectorizerRateLimit(ctx context.Context, cfg moduletools.ClassConfig) *modulecomponents.RateLimits { + rpm, _ := modulecomponents.GetRateLimitFromContext(ctx, "Jinaai", c.defaultRPM, 0) + + execAfterRequestFunction := func(limits *modulecomponents.RateLimits, tokensUsed int, deductRequest bool) { + // refresh is after 60 seconds but leave a bit of room for errors. Otherwise, we only deduct the request that just happened + if limits.LastOverwrite.Add(61 * time.Second).After(time.Now()) { + if deductRequest { + limits.RemainingRequests -= 1 + } + return + } + + limits.RemainingRequests = rpm + limits.ResetRequests = time.Now().Add(time.Duration(61) * time.Second) + limits.LimitRequests = rpm + limits.LastOverwrite = time.Now() + + limits.RemainingTokens = c.defaultTPM + limits.LimitTokens = c.defaultTPM + limits.ResetTokens = time.Now().Add(time.Duration(61) * time.Second) + } + + initialRL := &modulecomponents.RateLimits{AfterRequestFunction: execAfterRequestFunction, LastOverwrite: time.Now().Add(-61 * time.Minute)} + initialRL.ResetAfterRequestFunction(0) // set initial values + + return initialRL +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai_test.go new file mode 100644 index 0000000000000000000000000000000000000000..6719e88d53d83c5b4a22228fa86791f1583d4ba5 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/jinaai/jinaai_test.go @@ -0,0 +1,271 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package jinaai + +import ( + "context" + "encoding/json" + "io" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +var defaultSettings = Settings{ + BaseURL: "https://api.jina.ai", + Model: "jina-embeddings-v2-base-en", +} + +func TestBuildUrlFn(t *testing.T) { + t.Run("buildUrlFn returns default Jina AI URL", func(t *testing.T) { + settings := Settings{ + Model: "", + BaseURL: "https://api.jina.ai", + } + url, err := EmbeddingsBuildUrlFn(settings) + assert.Nil(t, err) + assert.Equal(t, "https://api.jina.ai/v1/embeddings", url) + }) + + t.Run("buildUrlFn loads from BaseURL", func(t *testing.T) { + settings := Settings{ + Model: "", + BaseURL: "https://foobar.some.proxy", + } + url, err := EmbeddingsBuildUrlFn(settings) + assert.Nil(t, err) + assert.Equal(t, "https://foobar.some.proxy/v1/embeddings", url) + }) +} + +func TestClient(t *testing.T) { + t.Run("when all is fine", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("apiKey", 0, 0, 0, buildUrlFn, nullLogger()) + + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + BaseURL: server.URL, + Model: "jina-embedding-v2", + } + res, _, _, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when all is fine for ColBERT", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[][]float32]("apiKey", 0, 0, 0, buildUrlFn, nullLogger()) + + expected := &modulecomponents.VectorizationResult[[][]float32]{ + Text: []string{"This is my text"}, + Vector: [][][]float32{{{0.1, 0.2, 0.3}, {0.11, 0.22, 0.33}, {0.111, 0.222, 0.333}}}, + Dimensions: 3, + } + settings := Settings{ + BaseURL: server.URL, + Model: "jina-colbert-v2", + } + res, _, _, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when the context is expired", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("apiKey", 0, 0, 0, buildUrlFn, nullLogger()) + + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, _, _, err := c.Vectorize(ctx, []string{"This is my text"}, defaultSettings) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "context deadline exceeded") + }) + + t.Run("when the server returns an error", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{ + t: t, + serverError: errors.Errorf("nope, not gonna happen"), + }) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("apiKey", 0, 0, 0, buildUrlFn, nullLogger()) + + _, _, _, err := c.Vectorize(context.Background(), []string{"This is my text"}, defaultSettings) + + require.NotNil(t, err) + assert.EqualError(t, err, "connection to: JinaAI API failed with status: 500 error: nope, not gonna happen") + }) + + t.Run("when JinaAI key is passed using X-Jinaai-Api-Key header", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("", 0, 0, 0, buildUrlFn, nullLogger()) + + ctxWithValue := context.WithValue(context.Background(), + "X-Jinaai-Api-Key", []string{"some-key"}) + + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + Model: "jina-embedding-v2", + } + res, _, _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when JinaAI key is empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("", 0, 0, 0, buildUrlFn, nullLogger()) + + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, _, _, err := c.Vectorize(ctx, []string{"This is my text"}, Settings{}) + + require.NotNil(t, err) + assert.EqualError(t, err, "API Key: no api key found "+ + "neither in request header: X-Jinaai-Api-Key "+ + "nor in environment variable under JINAAI_APIKEY") + }) + + t.Run("when X-Jinaai-Api-Key header is passed but empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + + buildUrlFn := func(settings Settings) (string, error) { + return server.URL, nil + } + c := New[[]float32]("", 0, 0, 0, buildUrlFn, nullLogger()) + + ctxWithValue := context.WithValue(context.Background(), + "X-Jinaai-Api-Key", []string{""}) + + settings := Settings{ + Model: "jina-embedding-v2", + } + _, _, _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.EqualError(t, err, "API Key: no api key found "+ + "neither in request header: X-Jinaai-Api-Key "+ + "nor in environment variable under JINAAI_APIKEY") + }) +} + +type fakeHandler struct { + t *testing.T + serverError error +} + +func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + assert.Equal(f.t, http.MethodPost, r.Method) + + if f.serverError != nil { + embedding := map[string]interface{}{ + "detail": f.serverError.Error(), + } + outBytes, err := json.Marshal(embedding) + require.Nil(f.t, err) + + w.WriteHeader(http.StatusInternalServerError) + w.Write(outBytes) + return + } + + bodyBytes, err := io.ReadAll(r.Body) + require.Nil(f.t, err) + defer r.Body.Close() + + var b map[string]interface{} + require.Nil(f.t, json.Unmarshal(bodyBytes, &b)) + + textInputArray := b["input"].([]interface{}) + textInput := textInputArray[0].(string) + assert.Greater(f.t, len(textInput), 0) + + var vector interface{} + vector = []float32{0.1, 0.2, 0.3} + model := b["model"].(string) + if model == "jina-colbert-v2" { + vector = [][]float32{{0.1, 0.2, 0.3}, {0.11, 0.22, 0.33}, {0.111, 0.222, 0.333}} + } + + embeddingData := map[string]interface{}{ + "object": textInput, + "index": 0, + "embedding": vector, + } + embedding := map[string]interface{}{ + "object": "list", + "data": []interface{}{embeddingData}, + } + + outBytes, err := json.Marshal(embedding) + require.Nil(f.t, err) + + w.Write(outBytes) +} + +func nullLogger() logrus.FieldLogger { + l, _ := test.NewNullLogger() + return l +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/fakes_for_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/fakes_for_test.go new file mode 100644 index 0000000000000000000000000000000000000000..f3b4d5290cddb38890456681a92bbc5f438e3619 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/fakes_for_test.go @@ -0,0 +1,67 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nvidia + +import ( + "github.com/weaviate/weaviate/entities/schema" + "github.com/weaviate/weaviate/usecases/config" +) + +type fakeClassConfig struct { + classConfig map[string]interface{} + vectorizePropertyName bool + skippedProperty string + excludedProperty string +} + +func (f fakeClassConfig) Class() map[string]interface{} { + return f.classConfig +} + +func (f fakeClassConfig) ClassByModuleName(moduleName string) map[string]interface{} { + return f.classConfig +} + +func (f fakeClassConfig) Property(propName string) map[string]interface{} { + if propName == f.skippedProperty { + return map[string]interface{}{ + "skip": true, + } + } + if propName == f.excludedProperty { + return map[string]interface{}{ + "vectorizePropertyName": false, + } + } + if f.vectorizePropertyName { + return map[string]interface{}{ + "vectorizePropertyName": true, + } + } + return nil +} + +func (f fakeClassConfig) Tenant() string { + return "" +} + +func (f fakeClassConfig) TargetVector() string { + return "" +} + +func (f fakeClassConfig) PropertiesDataTypes() map[string]schema.DataType { + return nil +} + +func (f fakeClassConfig) Config() *config.Config { + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia.go new file mode 100644 index 0000000000000000000000000000000000000000..c34f5f84fe67aef144f876311b2d0626149c4b62 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia.go @@ -0,0 +1,234 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nvidia + +import ( + "bytes" + "context" + "crypto/sha256" + "encoding/json" + "fmt" + "io" + "net/http" + "time" + + "github.com/weaviate/weaviate/entities/moduletools" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" +) + +type ( + InputType string + encodingFormat string +) + +const ( + // inputType + encodingFormatFloat encodingFormat = "float" +) + +var ( + // inputType + Query InputType = "query" + Passage InputType = "passage" +) + +type embeddingsRequest struct { + Input []string `json:"input,omitempty"` + Model string `json:"model,omitempty"` + EncodingFormat encodingFormat `json:"encoding_format,omitempty"` + InputType *InputType `json:"input_type,omitempty"` + Truncate *string `json:"truncate,omitempty"` +} + +type embeddingsResponse struct { + ID string `json:"id"` + Model string `json:"model,omitempty"` + Data []embeddingsData `json:"data,omitempty"` + Usage *usage `json:"usage,omitempty"` +} + +type embeddingsData struct { + Object string `json:"object,omitempty"` + Index int64 `json:"index,omitempty"` + Embedding []float32 `json:"embedding,omitempty"` +} + +type usage struct { + PromptTokens int64 `json:"prompt_tokens,omitempty"` + TotalTokens int64 `json:"total_tokens,omitempty"` +} + +type embeddingsErrorResponse struct { + Object string `json:"object,omitempty"` + Message string `json:"message,omitempty"` + Title string `json:"title,omitempty"` + Detail string `json:"detail,omitempty"` +} + +type Client struct { + apiKey string + httpClient *http.Client + logger logrus.FieldLogger +} + +type Settings struct { + BaseURL string + Model string + InputType *InputType + Truncate *string +} + +func New(apiKey string, timeout time.Duration, logger logrus.FieldLogger) *Client { + return &Client{ + apiKey: apiKey, + httpClient: &http.Client{ + Timeout: timeout, + }, + logger: logger, + } +} + +func (c *Client) Vectorize(ctx context.Context, + inputs []string, settings Settings, +) (*modulecomponents.VectorizationResult[[]float32], error) { + body, err := json.Marshal(c.getEmbeddingRequest(inputs, settings)) + if err != nil { + return nil, errors.Wrapf(err, "marshal body") + } + + url := c.getNvidiaUrl(ctx, settings.BaseURL) + req, err := http.NewRequestWithContext(ctx, "POST", url, + bytes.NewReader(body)) + if err != nil { + return nil, errors.Wrap(err, "create POST request") + } + apiKey, err := c.getApiKey(ctx) + if err != nil { + return nil, errors.Wrapf(err, "Nvidia API Key") + } + req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", apiKey)) + req.Header.Add("Accept", "application/json") + req.Header.Add("Content-Type", "application/json") + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send POST request") + } + defer res.Body.Close() + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read response body") + } + + if res.StatusCode != 200 { + return nil, c.getResponseError(res.StatusCode, bodyBytes) + } + + var resBody embeddingsResponse + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) + } + + if len(resBody.Data) == 0 { + return nil, errors.Errorf("empty embeddings response") + } + + vectors := make([][]float32, len(resBody.Data)) + for i := range resBody.Data { + vectors[i] = resBody.Data[i].Embedding + } + + return &modulecomponents.VectorizationResult[[]float32]{ + Text: inputs, + Dimensions: len(vectors[0]), + Vector: vectors, + }, nil +} + +func (c *Client) getEmbeddingRequest(inputs []string, settings Settings) embeddingsRequest { + return embeddingsRequest{ + Input: inputs, + Model: settings.Model, + InputType: settings.InputType, + Truncate: settings.Truncate, + EncodingFormat: encodingFormatFloat, + } +} + +func (c *Client) getNvidiaUrl(ctx context.Context, baseURL string) string { + passedBaseURL := baseURL + if headerBaseURL := modulecomponents.GetValueFromContext(ctx, "X-Nvidia-Baseurl"); headerBaseURL != "" { + passedBaseURL = headerBaseURL + } + return fmt.Sprintf("%s/v1/embeddings", passedBaseURL) +} + +func (c *Client) GetApiKeyHash(ctx context.Context, config moduletools.ClassConfig) [32]byte { + key, err := c.getApiKey(ctx) + if err != nil { + return [32]byte{} + } + return sha256.Sum256([]byte(key)) +} + +func (c *Client) GetVectorizerRateLimit(ctx context.Context, cfg moduletools.ClassConfig) *modulecomponents.RateLimits { + return &modulecomponents.RateLimits{ + LimitRequests: 100, + LimitTokens: 1000000, + RemainingRequests: 100, + RemainingTokens: 1000000, + ResetRequests: time.Now(), + ResetTokens: time.Now(), + AfterRequestFunction: func(limits *modulecomponents.RateLimits, tokensUsed int, deductRequest bool) {}, + } +} + +func (c *Client) getResponseError(statusCode int, bodyBytes []byte) error { + switch statusCode { + case 400, 402, 422, 500: + var resBody embeddingsErrorResponse + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return fmt.Errorf("connection to NVIDIA API failed with status: %d: unmarshal response body: %w: got: %v", + statusCode, err, string(bodyBytes)) + } + switch statusCode { + case 400: + return fmt.Errorf("connection to NVIDIA API failed with status: %d error: %s", statusCode, resBody.Message) + case 402: + return fmt.Errorf("connection to NVIDIA API failed with status: %d error: %s", statusCode, resBody.Detail) + default: + return fmt.Errorf("connection to NVIDIA API failed with status: %d error: %s", statusCode, resBody.Title) + } + default: + return fmt.Errorf("connection to NVIDIA API failed with status: %d", statusCode) + } +} + +func (c *Client) getApiKey(ctx context.Context) (string, error) { + if apiKey := modulecomponents.GetValueFromContext(ctx, "X-Nvidia-Api-Key"); apiKey != "" { + return apiKey, nil + } + if c.apiKey != "" { + return c.apiKey, nil + } + return "", errors.New("no api key found " + + "neither in request header: X-Nvidia-Api-Key " + + "nor in environment variable under NVIDIA_APIKEY") +} + +func (c *Client) HasTokenLimit() bool { return false } + +func (c *Client) ReturnsRateLimit() bool { return false } diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia_test.go new file mode 100644 index 0000000000000000000000000000000000000000..bf0672003fb9b86d3bdbec002286f81c52f9da7a --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/nvidia/nvidia_test.go @@ -0,0 +1,261 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package nvidia + +import ( + "context" + "encoding/json" + "io" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestClient(t *testing.T) { + t.Run("when all is fine", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + logger: nullLogger(), + } + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + res, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when the context is expired", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, err := c.Vectorize(ctx, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "context deadline exceeded") + }) + + t.Run("when the server returns an error", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{ + t: t, + serverError: errors.Errorf("nope, not gonna happen"), + }) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + _, err := c.Vectorize(context.Background(), []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "connection to NVIDIA API failed with status: 400 error: nope, not gonna happen") + }) + + t.Run("when Nvidia key is passed using X-Nvidia-Api-Key header", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + logger: nullLogger(), + } + ctxWithValue := context.WithValue(context.Background(), + "X-Nvidia-Api-Key", []string{"some-key"}) + + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + res, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when Nvidia key is empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, err := c.Vectorize(ctx, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "Nvidia API Key: no api key found "+ + "neither in request header: X-Nvidia-Api-Key "+ + "nor in environment variable under NVIDIA_APIKEY") + }) + + t.Run("when X-Nvidia-Api-Key header is passed but empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + logger: nullLogger(), + } + settings := Settings{ + Model: "large", + BaseURL: server.URL, + } + ctxWithValue := context.WithValue(context.Background(), + "X-Nvidia-Api-Key", []string{""}) + + _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, settings) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "Nvidia API Key: no api key found "+ + "neither in request header: X-Nvidia-Api-Key "+ + "nor in environment variable under NVIDIA_APIKEY") + }) + + t.Run("when X-Nvidia-BaseURL header is passed", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + logger: nullLogger(), + } + + baseURL := "http://default-url.com" + ctxWithValue := context.WithValue(context.Background(), + "X-Nvidia-Baseurl", []string{"http://base-url-passed-in-header.com"}) + + buildURL := c.getNvidiaUrl(ctxWithValue, baseURL) + assert.Equal(t, "http://base-url-passed-in-header.com/v1/embeddings", buildURL) + + buildURL = c.getNvidiaUrl(context.TODO(), baseURL) + assert.Equal(t, "http://default-url.com/v1/embeddings", buildURL) + }) + + t.Run("pass rate limit headers requests", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + logger: nullLogger(), + } + + ctxWithValue := context.WithValue(context.Background(), + "X-Nvidia-Ratelimit-RequestPM-Embedding", []string{"50"}) + + rl := c.GetVectorizerRateLimit(ctxWithValue, fakeClassConfig{classConfig: map[string]interface{}{}}) + assert.Equal(t, 100, rl.LimitRequests) + assert.Equal(t, 100, rl.RemainingRequests) + }) +} + +type fakeHandler struct { + t *testing.T + serverError error +} + +func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + assert.Equal(f.t, http.MethodPost, r.Method) + + if f.serverError != nil { + embeddingError := map[string]interface{}{ + "message": f.serverError.Error(), + } + embeddingResponse := map[string]interface{}{ + "message": embeddingError["message"], + } + outBytes, err := json.Marshal(embeddingResponse) + require.Nil(f.t, err) + + w.WriteHeader(http.StatusBadRequest) + w.Write(outBytes) + return + } + + bodyBytes, err := io.ReadAll(r.Body) + require.Nil(f.t, err) + defer r.Body.Close() + + var b map[string]interface{} + require.Nil(f.t, json.Unmarshal(bodyBytes, &b)) + + textInput := b["input"].([]interface{}) + assert.Greater(f.t, len(textInput), 0) + + embeddingResponse := map[string]interface{}{ + "object": "list", + "data": []interface{}{ + map[string]interface{}{ + "index": 0, + "object": "embedding", + "embedding": []float32{0.1, 0.2, 0.3}, + }, + }, + } + + outBytes, err := json.Marshal(embeddingResponse) + require.Nil(f.t, err) + + w.Write(outBytes) +} + +func nullLogger() logrus.FieldLogger { + l, _ := test.NewNullLogger() + return l +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers.go new file mode 100644 index 0000000000000000000000000000000000000000..536065d67072fc4f993a68c4fbd248f23ccc8e94 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers.go @@ -0,0 +1,220 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package transformers + +import ( + "bytes" + "context" + "encoding/json" + "fmt" + "io" + "net/http" + "time" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" +) + +type taskType string + +const ( + query taskType = "query" + passage taskType = "passage" +) + +type VectorizationConfig struct { + PoolingStrategy string + InferenceURL string + PassageInferenceURL, QueryInferenceURL string + Dimensions *int64 +} + +type VectorizationResult struct { + Text string + Dimensions int + Vector []float32 +} + +type vecRequest struct { + Text string `json:"text"` + Dims int `json:"dims"` + Vector []float32 `json:"vector"` + Error string `json:"error"` + Config vecRequestConfig `json:"config"` +} + +type vecRequestConfig struct { + PoolingStrategy string `json:"pooling_strategy,omitempty"` + TaskType taskType `json:"task_type,omitempty"` + Dimensions *int64 `json:"dimensions,omitempty"` +} + +type URLBuilder struct { + originPassage, originQuery string +} + +func NewURLBuilder(originPassage, originQuery string) *URLBuilder { + return &URLBuilder{originPassage: originPassage, originQuery: originQuery} +} + +func (b *URLBuilder) GetPassageURL(path string, config VectorizationConfig) string { + baseURL := b.originPassage + if config.PassageInferenceURL != "" { + baseURL = config.PassageInferenceURL + } + if config.InferenceURL != "" { + baseURL = config.InferenceURL + } + return fmt.Sprintf("%s%s", baseURL, path) +} + +func (b *URLBuilder) GetQueryURL(path string, config VectorizationConfig) string { + baseURL := b.originQuery + if config.QueryInferenceURL != "" { + baseURL = config.QueryInferenceURL + } + if config.InferenceURL != "" { + baseURL = config.InferenceURL + } + return fmt.Sprintf("%s%s", baseURL, path) +} + +type Client struct { + httpClient *http.Client + urlBuilder *URLBuilder + logger logrus.FieldLogger +} + +func New(urlBuilder *URLBuilder, timeout time.Duration, logger logrus.FieldLogger) *Client { + return &Client{ + httpClient: &http.Client{ + Timeout: timeout, + }, + urlBuilder: urlBuilder, + logger: logger, + } +} + +func (c *Client) VectorizeObject(ctx context.Context, input string, + config VectorizationConfig, +) (*VectorizationResult, error) { + return c.vectorize(ctx, input, config, c.urlBuilder.GetPassageURL, passage) +} + +func (c *Client) VectorizeQuery(ctx context.Context, input string, + config VectorizationConfig, +) (*VectorizationResult, error) { + return c.vectorize(ctx, input, config, c.urlBuilder.GetQueryURL, query) +} + +func (c *Client) vectorize(ctx context.Context, input string, + config VectorizationConfig, url func(string, VectorizationConfig) string, + task taskType, +) (*VectorizationResult, error) { + body, err := json.Marshal(vecRequest{ + Text: input, + Config: vecRequestConfig{ + PoolingStrategy: config.PoolingStrategy, + TaskType: task, + Dimensions: config.Dimensions, + }, + }) + if err != nil { + return nil, errors.Wrapf(err, "marshal body") + } + + req, err := http.NewRequestWithContext(ctx, "POST", url("/vectors", config), + bytes.NewReader(body)) + if err != nil { + return nil, errors.Wrap(err, "create POST request") + } + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send POST request") + } + defer res.Body.Close() + + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read response body") + } + + var resBody vecRequest + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("unmarshal response body. Got: %v", string(bodyBytes))) + } + + if res.StatusCode != 200 { + return nil, errors.Errorf("fail with status %d: %s", res.StatusCode, + resBody.Error) + } + + return &VectorizationResult{ + Text: resBody.Text, + Dimensions: resBody.Dims, + Vector: resBody.Vector, + }, nil +} + +func (c *Client) CheckReady(ctx context.Context, endpoint string) error { + // spawn a new context (derived on the overall context) which is used to + // consider an individual request timed out + // due to parent timeout being superior over request's one, request can be cancelled by parent timeout + // resulting in "send check ready request" even if service is responding with non 2xx http code + requestCtx, cancel := context.WithTimeout(ctx, 500*time.Millisecond) + defer cancel() + + req, err := http.NewRequestWithContext(requestCtx, http.MethodGet, endpoint, nil) + if err != nil { + return errors.Wrap(err, "create check ready request") + } + + res, err := c.httpClient.Do(req) + if err != nil { + return errors.Wrap(err, "send check ready request") + } + + defer res.Body.Close() + if res.StatusCode > 299 { + return errors.Errorf("not ready: status %d", res.StatusCode) + } + + return nil +} + +func (c *Client) MetaInfo(endpoint string) (map[string]any, error) { + req, err := http.NewRequestWithContext(context.Background(), "GET", endpoint, nil) + if err != nil { + return nil, errors.Wrap(err, "create GET meta request") + } + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send GET meta request") + } + defer res.Body.Close() + if !(res.StatusCode >= http.StatusOK && res.StatusCode < http.StatusMultipleChoices) { + return nil, errors.Errorf("unexpected status code '%d' of meta request", res.StatusCode) + } + + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read meta response body") + } + + var resBody map[string]any + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrap(err, "unmarshal meta response body") + } + return resBody, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers_test.go new file mode 100644 index 0000000000000000000000000000000000000000..bb52265ed02452dd1f92e06518ddc684e6e94012 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/transformers/transformers_test.go @@ -0,0 +1,120 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package transformers + +import ( + "context" + "encoding/json" + "fmt" + "io" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestClient(t *testing.T) { + t.Run("when all is fine", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := New(NewURLBuilder(server.URL, server.URL), 0, nullLogger()) + expected := &VectorizationResult{ + Text: "This is my text", + Vector: []float32{0.1, 0.2, 0.3}, + Dimensions: 3, + } + res, err := c.VectorizeObject(context.Background(), "This is my text", + VectorizationConfig{ + PoolingStrategy: "masked_mean", + }) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when the context is expired", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := New(NewURLBuilder(server.URL, server.URL), 0, nullLogger()) + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, err := c.VectorizeObject(ctx, "This is my text", VectorizationConfig{}) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "context deadline exceeded") + }) + + t.Run("when the server returns an error", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{ + t: t, + serverError: errors.Errorf("nope, not gonna happen"), + }) + defer server.Close() + c := New(NewURLBuilder(server.URL, server.URL), 0, nullLogger()) + _, err := c.VectorizeObject(context.Background(), "This is my text", + VectorizationConfig{}) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "nope, not gonna happen") + }) +} + +type fakeHandler struct { + t *testing.T + serverError error +} + +func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + assert.Equal(f.t, "/vectors", r.URL.String()) + assert.Equal(f.t, http.MethodPost, r.Method) + + if f.serverError != nil { + w.WriteHeader(http.StatusInternalServerError) + w.Write([]byte(fmt.Sprintf(`{"error":"%s"}`, f.serverError.Error()))) + return + } + + bodyBytes, err := io.ReadAll(r.Body) + require.Nil(f.t, err) + defer r.Body.Close() + + var b map[string]interface{} + require.Nil(f.t, json.Unmarshal(bodyBytes, &b)) + + textInput := b["text"].(string) + assert.Greater(f.t, len(textInput), 0) + + pooling := b["config"].(map[string]interface{})["pooling_strategy"].(string) + assert.Equal(f.t, "masked_mean", pooling) + + out := map[string]interface{}{ + "text": textInput, + "dims": 3, + "vector": []float32{0.1, 0.2, 0.3}, + } + outBytes, err := json.Marshal(out) + require.Nil(f.t, err) + + w.Write(outBytes) +} + +func nullLogger() logrus.FieldLogger { + l, _ := test.NewNullLogger() + return l +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai.go new file mode 100644 index 0000000000000000000000000000000000000000..46c637bf9c2eccc03bafdef45918a94a92b85e9d --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai.go @@ -0,0 +1,308 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package voyageai + +import ( + "bytes" + "context" + "crypto/sha256" + "encoding/json" + "fmt" + "io" + "net/http" + "strings" + "time" + + "github.com/weaviate/weaviate/entities/moduletools" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" +) + +type multimodalType string + +const ( + text multimodalType = "text" + imageBase64 multimodalType = "image_base64" +) + +type multimodalInput struct { + Content []multimodalContent `json:"content,omitempty"` +} + +type multimodalContent struct { + MultimodalType multimodalType `json:"type,omitempty"` + Text string `json:"text,omitempty"` + ImageBase64 string `json:"image_base64,omitempty"` +} + +type embeddingsRequest struct { + Input []string `json:"input,omitempty"` + Inputs []multimodalInput `json:"inputs,omitempty"` + Model string `json:"model"` + Truncation bool `json:"truncation,omitempty"` + InputType InputType `json:"input_type,omitempty"` +} + +type embeddingsDataResponse struct { + Embedding []float32 `json:"embedding"` +} + +type embeddingsResponse struct { + Data []embeddingsDataResponse `json:"data,omitempty"` + Model string `json:"model,omitempty"` + Detail string `json:"detail,omitempty"` + Usage *modulecomponents.Usage `json:"usage,omitempty"` +} + +type UrlBuilder interface { + URL(baseURL string) string +} + +type Client struct { + apiKey string + httpClient *http.Client + urlBuilder UrlBuilder + logger logrus.FieldLogger +} + +type InputType string + +const ( + Document InputType = "document" + Query InputType = "query" +) + +type Settings struct { + BaseURL string + Model string + Truncate bool + InputType InputType +} + +type VoyageRLModel struct { + TokenLimit int + RequestLimit int +} + +func New(apiKey string, timeout time.Duration, urlBuilder UrlBuilder, logger logrus.FieldLogger) *Client { + return &Client{ + apiKey: apiKey, + httpClient: &http.Client{ + Timeout: timeout, + }, + urlBuilder: urlBuilder, + logger: logger, + } +} + +func (c *Client) Vectorize(ctx context.Context, input []string, settings Settings, +) (*modulecomponents.VectorizationResult[[]float32], *modulecomponents.RateLimits, int, error) { + resBody, err := c.vectorize(ctx, settings.BaseURL, embeddingsRequest{ + Input: input, + Model: settings.Model, + Truncation: settings.Truncate, + InputType: Document, + }) + if err != nil { + return nil, nil, 0, err + } + res, usage, err := c.getVectorizationResult(input, resBody) + return res, nil, usage, err +} + +func (c *Client) VectorizeQuery(ctx context.Context, input []string, settings Settings, +) (*modulecomponents.VectorizationResult[[]float32], error) { + resBody, err := c.vectorize(ctx, settings.BaseURL, embeddingsRequest{ + Input: input, + Model: settings.Model, + Truncation: settings.Truncate, + InputType: Query, + }) + if err != nil { + return nil, err + } + res, _, err := c.getVectorizationResult(input, resBody) + return res, err +} + +func (c *Client) VectorizeMultiModal(ctx context.Context, texts, images []string, + settings Settings, +) (*modulecomponents.VectorizationCLIPResult[[]float32], error) { + request := c.getMultiModalEmbeddingsRequest(texts, images, settings) + resBody, err := c.vectorize(ctx, settings.BaseURL, request) + if err != nil { + return nil, err + } + + var textVectors, imageVectors [][]float32 + for i := range resBody.Data { + if i < len(texts) { + textVectors = append(textVectors, resBody.Data[i].Embedding) + } else { + imageVectors = append(imageVectors, resBody.Data[i].Embedding) + } + } + + res := &modulecomponents.VectorizationCLIPResult[[]float32]{ + TextVectors: textVectors, + ImageVectors: imageVectors, + } + return res, nil +} + +func (c *Client) getMultiModalEmbeddingsRequest(texts, images []string, settings Settings, +) embeddingsRequest { + inputs := make([]multimodalInput, len(texts)+len(images)) + for i := range texts { + inputs[i] = multimodalInput{Content: []multimodalContent{{Text: texts[i], MultimodalType: text}}} + } + offset := len(texts) + for i := range images { + if !strings.HasPrefix(images[i], "data:") { + inputs[offset+i] = multimodalInput{Content: []multimodalContent{{ImageBase64: fmt.Sprintf("data:image/png;base64,%s", images[i]), MultimodalType: imageBase64}}} + } else { + inputs[offset+i] = multimodalInput{Content: []multimodalContent{{ImageBase64: images[i], MultimodalType: imageBase64}}} + } + } + return embeddingsRequest{ + Inputs: inputs, + Model: settings.Model, + Truncation: settings.Truncate, + InputType: settings.InputType, + } +} + +func (c *Client) vectorize(ctx context.Context, baseURL string, request interface{}, +) (*embeddingsResponse, error) { + body, err := json.Marshal(request) + if err != nil { + return nil, errors.Wrap(err, "marshal body") + } + + url := c.getVoyageAIUrl(ctx, baseURL) + req, err := http.NewRequestWithContext(ctx, "POST", url, + bytes.NewReader(body)) + if err != nil { + return nil, errors.Wrap(err, "create POST request") + } + + apiKey, err := c.getApiKey(ctx) + if err != nil { + return nil, errors.Wrap(err, "VoyageAI API Key") + } + req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", apiKey)) + req.Header.Add("Content-Type", "application/json") + + res, err := c.httpClient.Do(req) + if err != nil { + return nil, errors.Wrap(err, "send POST request") + } + defer res.Body.Close() + bodyBytes, err := io.ReadAll(res.Body) + if err != nil { + return nil, errors.Wrap(err, "read response body") + } + var resBody embeddingsResponse + if err := json.Unmarshal(bodyBytes, &resBody); err != nil { + return nil, errors.Wrapf(err, "unmarshal response body. got: %v", string(bodyBytes)) + } + + if res.StatusCode != 200 { + return nil, errors.New(c.getErrorMessage(res.StatusCode, resBody.Detail)) + } + + if len(resBody.Data) == 0 || len(resBody.Data[0].Embedding) == 0 { + return nil, errors.New("empty embeddings response") + } + + return &resBody, nil +} + +func (c *Client) getVectorizationResult(input []string, resBody *embeddingsResponse, +) (*modulecomponents.VectorizationResult[[]float32], int, error) { + vectors := make([][]float32, len(resBody.Data)) + for i, data := range resBody.Data { + vectors[i] = data.Embedding + } + + return &modulecomponents.VectorizationResult[[]float32]{ + Text: input, + Dimensions: len(resBody.Data[0].Embedding), + Vector: vectors, + }, modulecomponents.GetTotalTokens(resBody.Usage), nil +} + +func (c *Client) getVoyageAIUrl(ctx context.Context, baseURL string) string { + passedBaseURL := baseURL + if headerBaseURL := modulecomponents.GetValueFromContext(ctx, "X-Voyageai-Baseurl"); headerBaseURL != "" { + passedBaseURL = headerBaseURL + } + return c.urlBuilder.URL(passedBaseURL) +} + +func (c *Client) getErrorMessage(statusCode int, resBodyError string) string { + if resBodyError != "" { + return fmt.Sprintf("connection to VoyageAI failed with status: %d error: %v", statusCode, resBodyError) + } + return fmt.Sprintf("connection to VoyageAI failed with status: %d", statusCode) +} + +func (c *Client) getApiKey(ctx context.Context) (string, error) { + if apiKey := modulecomponents.GetValueFromContext(ctx, "X-Voyageai-Api-Key"); apiKey != "" { + return apiKey, nil + } + if c.apiKey != "" { + return c.apiKey, nil + } + return "", errors.New("no api key found " + + "neither in request header: X-VoyageAI-Api-Key " + + "nor in environment variable under VOYAGEAI_APIKEY") +} + +func (c *Client) GetApiKeyHash(ctx context.Context, cfg moduletools.ClassConfig) [32]byte { + key, err := c.getApiKey(ctx) + if err != nil { + return [32]byte{} + } + return sha256.Sum256([]byte(key)) +} + +func (c *Client) GetVectorizerRateLimit(ctx context.Context, modelRL VoyageRLModel) *modulecomponents.RateLimits { + rpm, tpm := modulecomponents.GetRateLimitFromContext(ctx, "Voyageai", modelRL.RequestLimit, modelRL.TokenLimit) + execAfterRequestFunction := func(limits *modulecomponents.RateLimits, tokensUsed int, deductRequest bool) { + // refresh is after 60 seconds but leave a bit of room for errors. Otherwise, we only deduct the request that just happened + if limits.LastOverwrite.Add(61 * time.Second).After(time.Now()) { + if deductRequest { + limits.RemainingRequests -= 1 + } + limits.RemainingTokens -= tokensUsed + return + } + + limits.RemainingRequests = rpm + limits.ResetRequests = time.Now().Add(time.Duration(61) * time.Second) + limits.LimitRequests = rpm + limits.LastOverwrite = time.Now() + + limits.RemainingTokens = tpm + limits.LimitTokens = tpm + limits.ResetTokens = time.Now().Add(time.Duration(61) * time.Second) + } + + initialRL := &modulecomponents.RateLimits{AfterRequestFunction: execAfterRequestFunction, LastOverwrite: time.Now().Add(-61 * time.Minute)} + initialRL.ResetAfterRequestFunction(0) // set initial values + + return initialRL +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai_test.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai_test.go new file mode 100644 index 0000000000000000000000000000000000000000..127b9f9051b57bcfeee76872fde98572ef30d047 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/clients/voyageai/voyageai_test.go @@ -0,0 +1,250 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package voyageai + +import ( + "context" + "encoding/json" + "fmt" + "io" + "net/http" + "net/http/httptest" + "testing" + "time" + + "github.com/weaviate/weaviate/usecases/modulecomponents" + + "github.com/pkg/errors" + "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestClient(t *testing.T) { + t.Run("when all is fine", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + res, _, _, err := c.Vectorize(context.Background(), []string{"This is my text"}, Settings{Model: "voyage-2", BaseURL: server.URL}) + + assert.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when the context is expired", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, _, _, err := c.Vectorize(ctx, []string{"This is my text"}, Settings{Model: "voyage-2"}) + + require.NotNil(t, err) + assert.Contains(t, err.Error(), "context deadline exceeded") + }) + + t.Run("when the server returns an error", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{ + t: t, + serverError: errors.Errorf("nope, not gonna happen"), + }) + defer server.Close() + c := &Client{ + apiKey: "apiKey", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + _, _, _, err := c.Vectorize(context.Background(), []string{"This is my text"}, Settings{Model: "voyage-2", BaseURL: server.URL}) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "connection to VoyageAI failed with status: 500 error: nope, not gonna happen") + }) + + t.Run("when VoyageAI key is passed using VoyageAIre-Api-Key header", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + ctxWithValue := context.WithValue(context.Background(), + "X-Voyageai-Api-Key", []string{"some-key"}) + + expected := &modulecomponents.VectorizationResult[[]float32]{ + Text: []string{"This is my text"}, + Vector: [][]float32{{0.1, 0.2, 0.3}}, + Dimensions: 3, + } + res, _, _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, Settings{Model: "voyage-2", BaseURL: server.URL}) + + require.Nil(t, err) + assert.Equal(t, expected, res) + }) + + t.Run("when VoyageAI key is empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + ctx, cancel := context.WithDeadline(context.Background(), time.Now()) + defer cancel() + + _, _, _, err := c.Vectorize(ctx, []string{"This is my text"}, Settings{Model: "voyage-2"}) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "VoyageAI API Key: no api key found "+ + "neither in request header: X-VoyageAI-Api-Key "+ + "nor in environment variable under VOYAGEAI_APIKEY") + }) + + t.Run("when X-VoyageAI-Api-Key header is passed but empty", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + ctxWithValue := context.WithValue(context.Background(), + "X-VoyageAI-Api-Key", []string{""}) + + _, _, _, err := c.Vectorize(ctxWithValue, []string{"This is my text"}, Settings{Model: "voyage-2"}) + + require.NotNil(t, err) + assert.Equal(t, err.Error(), "VoyageAI API Key: no api key found "+ + "neither in request header: X-VoyageAI-Api-Key "+ + "nor in environment variable under VOYAGEAI_APIKEY") + }) + + t.Run("when X-VoyageAI-BaseURL header is passed", func(t *testing.T) { + server := httptest.NewServer(&fakeHandler{t: t}) + defer server.Close() + c := &Client{ + apiKey: "", + httpClient: &http.Client{}, + urlBuilder: &fakeVoyageaiUrlBuilder{ + origin: server.URL, + pathMask: "/embeddings", + }, + logger: nullLogger(), + } + + baseURL := "http://default-url.com" + ctxWithValue := context.WithValue(context.Background(), + "X-Voyageai-Baseurl", []string{"http://base-url-passed-in-header.com"}) + + buildURL := c.getVoyageAIUrl(ctxWithValue, baseURL) + assert.Equal(t, "http://base-url-passed-in-header.com/embeddings", buildURL) + + buildURL = c.getVoyageAIUrl(context.TODO(), baseURL) + assert.Equal(t, "http://default-url.com/embeddings", buildURL) + }) +} + +type fakeHandler struct { + t *testing.T + serverError error +} + +func (f *fakeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { + assert.Equal(f.t, http.MethodPost, r.Method) + + if f.serverError != nil { + resp := embeddingsResponse{ + Detail: "nope, not gonna happen", + } + outBytes, err := json.Marshal(resp) + require.Nil(f.t, err) + + w.WriteHeader(http.StatusInternalServerError) + w.Write(outBytes) + return + } + + bodyBytes, err := io.ReadAll(r.Body) + require.Nil(f.t, err) + defer r.Body.Close() + + var req embeddingsRequest + require.Nil(f.t, json.Unmarshal(bodyBytes, &req)) + + assert.NotNil(f.t, req) + assert.NotEmpty(f.t, req.Input) + + resp := embeddingsResponse{ + Data: []embeddingsDataResponse{{Embedding: []float32{0.1, 0.2, 0.3}}}, + } + outBytes, err := json.Marshal(resp) + require.Nil(f.t, err) + + w.Write(outBytes) +} + +func nullLogger() logrus.FieldLogger { + l, _ := test.NewNullLogger() + return l +} + +type fakeVoyageaiUrlBuilder struct { + origin string + pathMask string +} + +func (c *fakeVoyageaiUrlBuilder) URL(baseURL string) string { + if baseURL != "" { + return fmt.Sprintf("%s%s", baseURL, c.pathMask) + } + return fmt.Sprintf("%s%s", c.origin, c.pathMask) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/usage/types/types.go b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/usage/types/types.go new file mode 100644 index 0000000000000000000000000000000000000000..3bd040c74b501f7dd5626fd3c41f78994eee6337 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/modulecomponents/usage/types/types.go @@ -0,0 +1,32 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package types + +import ( + "time" + + "github.com/weaviate/weaviate/usecases/config/runtime" +) + +// UsageConfig holds configuration for usage data collection and upload +type UsageConfig struct { + GCSBucket *runtime.DynamicValue[string] `json:"usage_gcs_bucket" yaml:"usage_gcs_bucket"` + GCSPrefix *runtime.DynamicValue[string] `json:"usage_gcs_prefix" yaml:"usage_gcs_prefix"` + + S3Bucket *runtime.DynamicValue[string] `json:"usage_s3_bucket" yaml:"usage_s3_bucket"` + S3Prefix *runtime.DynamicValue[string] `json:"usage_s3_prefix" yaml:"usage_s3_prefix"` + + ScrapeInterval *runtime.DynamicValue[time.Duration] `json:"usage_scrape_interval" yaml:"usage_scrape_interval"` + ShardJitterInterval *runtime.DynamicValue[time.Duration] `json:"usage_shard_jitter_interval" yaml:"usage_shard_jitter_interval"` + PolicyVersion *runtime.DynamicValue[string] `json:"usage_policy_version" yaml:"usage_policy_version"` + VerifyPermissions *runtime.DynamicValue[bool] `json:"usage_verify_permissions" yaml:"usage_verify_permissions"` +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/alias/alias.go b/platform/dbops/binaries/weaviate-src/usecases/objects/alias/alias.go new file mode 100644 index 0000000000000000000000000000000000000000..545b39e0f9b4623c25a83bd13f5e7c0b39758e8f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/alias/alias.go @@ -0,0 +1,39 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package alias + +import "github.com/weaviate/weaviate/entities/models" + +type schemaManager interface { + ResolveAlias(alias string) string +} + +func ResolveAlias(schemaManager schemaManager, aliasName string) (string, string) { + if cls := schemaManager.ResolveAlias(aliasName); cls != "" { + return cls, aliasName + } + return aliasName, "" +} + +func ClassNameToAlias(obj *models.Object, alias string) *models.Object { + if obj != nil { + obj.Class = alias + } + return obj +} + +func ClassNamesToAliases(objs []*models.Object, alias string) []*models.Object { + for i := range objs { + objs[i].Class = alias + } + return objs +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/fakes_for_test.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/fakes_for_test.go new file mode 100644 index 0000000000000000000000000000000000000000..0f54e5b562cc5f080f8c77bb05610c5a1be5b213 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/fakes_for_test.go @@ -0,0 +1,48 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/weaviate/weaviate/entities/additional" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema" +) + +func testSchema() schema.Schema { + return schema.Schema{ + Objects: &models.Schema{ + Classes: []*models.Class{ + { + Class: "Person", + Properties: []*models.Property{ + { + Name: "name", + DataType: schema.DataTypeText.PropString(), + Tokenization: models.PropertyTokenizationWhitespace, + }, + { + Name: "phone", + DataType: []string{"phoneNumber"}, + }, + }, + }, + }, + }, + } +} + +func fakeExists(context.Context, string, strfmt.UUID, *additional.ReplicationProperties, string) (bool, error) { + return true, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation.go new file mode 100644 index 0000000000000000000000000000000000000000..b9b6c45e09a3bf9b8a86fdca30bebca74e34310d --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation.go @@ -0,0 +1,152 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "errors" + "fmt" + "strings" + + "github.com/go-openapi/strfmt" + "github.com/weaviate/weaviate/entities/additional" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema/crossref" + "github.com/weaviate/weaviate/usecases/config" +) + +type exists func(_ context.Context, class string, _ strfmt.UUID, _ *additional.ReplicationProperties, _ string) (bool, error) + +const ( + // ErrorMissingActionObjects message + ErrorMissingActionObjects string = "no objects, object and subject, are added. Add 'objects' by using the 'objects' key in the root of the JSON" + // ErrorMissingActionObjectsObject message + ErrorMissingActionObjectsObject string = "no object-thing is added. Add the 'object' inside the 'objects' part of the JSON" + // ErrorMissingActionObjectsSubject message + ErrorMissingActionObjectsSubject string = "no subject-thing is added. Add the 'subject' inside the 'objects' part of the JSON" + // ErrorMissingActionObjectsObjectLocation message + ErrorMissingActionObjectsObjectLocation string = "no 'locationURL' is found in the object-thing. Add the 'locationURL' inside the 'object-thing' part of the JSON" + // ErrorMissingActionObjectsObjectType message + ErrorMissingActionObjectsObjectType string = "no 'type' is found in the object-thing. Add the 'type' inside the 'object-thing' part of the JSON" + // ErrorInvalidActionObjectsObjectType message + ErrorInvalidActionObjectsObjectType string = "object-thing requires one of the following values in 'type': '%s', '%s' or '%s'" + // ErrorMissingActionObjectsSubjectLocation message + ErrorMissingActionObjectsSubjectLocation string = "no 'locationURL' is found in the subject-thing. Add the 'locationURL' inside the 'subject-thing' part of the JSON" + // ErrorMissingActionObjectsSubjectType message + ErrorMissingActionObjectsSubjectType string = "no 'type' is found in the subject-thing. Add the 'type' inside the 'subject-thing' part of the JSON" + // ErrorInvalidActionObjectsSubjectType message + ErrorInvalidActionObjectsSubjectType string = "subject-thing requires one of the following values in 'type': '%s', '%s' or '%s'" + // ErrorMisingObject message + ErrorMissingObject = "the given object is empty" + // ErrorMissingClass message + ErrorMissingClass string = "the given class is empty" + // ErrorMissingContext message + ErrorMissingContext string = "the given context is empty" + // ErrorNoExternalCredentials message + ErrorNoExternalCredentials string = "no credentials available for the Weaviate instance for %s given in the %s" + // ErrorExternalNotFound message + ErrorExternalNotFound string = "given statuscode of '%s' is '%d', but 200 was expected for LocationURL given in the %s" + // ErrorInvalidCRefType message + ErrorInvalidCRefType string = "'cref' type '%s' does not exists" + // ErrorNotFoundInDatabase message + ErrorNotFoundInDatabase string = "%s: no object with id %s found" + // ErrorInvalidProperties message + ErrorInvalidProperties string = "properties of object %v must be of type map[string]interface" +) + +type Validator struct { + exists exists + config *config.WeaviateConfig + replicationProps *additional.ReplicationProperties +} + +func New(exists exists, config *config.WeaviateConfig, + repl *additional.ReplicationProperties, +) *Validator { + return &Validator{ + exists: exists, + config: config, + replicationProps: repl, + } +} + +func (v *Validator) Object(ctx context.Context, class *models.Class, + incoming *models.Object, existing *models.Object, +) error { + if incoming.Class == "" { + return errors.New(ErrorMissingClass) + } + + if err := v.vector(ctx, class, incoming); err != nil { + return err + } + + return v.properties(ctx, class, incoming, existing) +} + +// ValidateSingleRef validates a single ref based on location URL and existence of the object in the database +func (v *Validator) ValidateSingleRef(cref *models.SingleRef) (*crossref.Ref, error) { + ref, err := crossref.ParseSingleRef(cref) + if err != nil { + return nil, fmt.Errorf("invalid reference: %w", err) + } + + // target id must be lowercase + ref.TargetID = strfmt.UUID(strings.ToLower(ref.TargetID.String())) + + if !ref.Local { + return nil, fmt.Errorf("unrecognized cross-ref ref format") + } + + return ref, nil +} + +func (v *Validator) ValidateExistence(ctx context.Context, ref *crossref.Ref, errorVal string, tenant string) error { + // locally check for object existence + ok, err := v.exists(ctx, ref.Class, ref.TargetID, v.replicationProps, tenant) + if err != nil { + if tenant == "" { + return err + } + // since refs can be created to non-MT classes, check again if non-MT object exists + // (use empty tenant, if previously was given) + ok2, err2 := v.exists(ctx, ref.Class, ref.TargetID, v.replicationProps, "") + if err2 != nil { + // return orig error + return err + } + ok = ok2 + } + if !ok { + return fmt.Errorf(ErrorNotFoundInDatabase, errorVal, ref.TargetID) + } + + return nil +} + +func (v *Validator) ValidateMultipleRef(refs models.MultipleRef) ([]*crossref.Ref, error) { + parsedRefs := make([]*crossref.Ref, len(refs)) + + if refs == nil { + return parsedRefs, nil + } + + for i, ref := range refs { + parsedRef, err := v.ValidateSingleRef(ref) + if err != nil { + return nil, err + } + parsedRefs[i] = parsedRef + + } + return parsedRefs, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation_test.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation_test.go new file mode 100644 index 0000000000000000000000000000000000000000..715bc7f0ec3c69ad6d4e9539c81d3b405f2b8790 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/model_validation_test.go @@ -0,0 +1,64 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "strings" + "testing" + + "github.com/go-openapi/strfmt" + + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/usecases/config" +) + +const BEACON = "weaviate://localhost/" + +var ( + UuidUpper = "4E5CD755-4F43-44C5-B23C-0C7D6F6C21E6" + UuidLower = strings.ToLower(UuidUpper) +) + +func TestValidationReferencesInObject(t *testing.T) { + validator := New(fakeExists, &config.WeaviateConfig{}, nil) + + class := &models.Class{ + Class: "From", + Properties: []*models.Property{ + {Name: "ref", DataType: []string{"To"}}, + }, + } + + obj := &models.Object{ + Class: "From", + Properties: map[string]interface{}{ + "ref": []interface{}{ + map[string]interface{}{"beacon": BEACON + "To/" + UuidUpper}, + }, + }, + } + + err := validator.properties(context.Background(), class, obj, nil) + require.Nil(t, err) + require.Equal(t, obj.Properties.(map[string]interface{})["ref"].(models.MultipleRef)[0].Beacon.String(), BEACON+"To/"+UuidLower) +} + +func TestValidationReference(t *testing.T) { + validator := New(fakeExists, &config.WeaviateConfig{}, nil) + + cref := &models.SingleRef{Beacon: strfmt.URI(BEACON + "To/" + UuidUpper)} + ref, err := validator.ValidateSingleRef(cref) + require.Nil(t, err) + require.Equal(t, ref.TargetID.String(), UuidLower) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers.go new file mode 100644 index 0000000000000000000000000000000000000000..23c50233a52a7a958a4024941f3ce3c713a0a926 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers.go @@ -0,0 +1,45 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "errors" + "fmt" + "strings" + + "github.com/nyaruka/phonenumbers" + + "github.com/weaviate/weaviate/entities/models" +) + +func parsePhoneNumber(input, defaultCountry string) (*models.PhoneNumber, error) { + defaultCountry = strings.ToUpper(defaultCountry) + num, err := phonenumbers.Parse(input, defaultCountry) + if err != nil { + switch { + case errors.Is(err, phonenumbers.ErrInvalidCountryCode): + return nil, fmt.Errorf("invalid phone number: invalid or missing defaultCountry - this field is optional if the specified number is in the international format, but required if the number is in national format, use ISO 3166-1 alpha-2") + default: + return nil, fmt.Errorf("invalid phone number: %w", err) + } + } + + return &models.PhoneNumber{ + National: num.GetNationalNumber(), + NationalFormatted: phonenumbers.Format(num, phonenumbers.NATIONAL), + InternationalFormatted: phonenumbers.Format(num, phonenumbers.INTERNATIONAL), + CountryCode: uint64(num.GetCountryCode()), + DefaultCountry: defaultCountry, + Input: input, + Valid: phonenumbers.IsValidNumber(num), + }, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers_test.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers_test.go new file mode 100644 index 0000000000000000000000000000000000000000..a4bc0d03bd1570b7eb7e728cd29cf18939b3ba14 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/phone_numbers_test.go @@ -0,0 +1,188 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "errors" + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/usecases/config" +) + +func TestPropertyOfTypePhoneNumberValidation(t *testing.T) { + type test struct { + name string + phone interface{} // "phone" property in schema + expectedErr error + expectedResult *models.PhoneNumber + } + + tests := []test{ + { + name: "phone of wrong type", + phone: "how about a string", + expectedErr: errors.New("invalid phoneNumber property 'phone' on class 'Person': " + + "phoneNumber must be a map, but got: string"), + }, + { + name: "phone map missing all keys", + phone: map[string]interface{}{}, + expectedErr: errors.New("invalid phoneNumber property 'phone' on class 'Person': " + + "phoneNumber is missing required field 'input'"), + }, + { + name: "input is not a string", + phone: map[string]interface{}{ + "input": 1234, + }, + expectedErr: errors.New("invalid phoneNumber property 'phone' on class 'Person': " + + "phoneNumber.input must be a string"), + }, + { + name: "default country is not a string", + phone: map[string]interface{}{ + "input": "1234", + "defaultCountry": 7, + }, + expectedErr: errors.New("invalid phoneNumber property 'phone' on class 'Person': " + + "phoneNumber.defaultCountry must be a string"), + }, + { + name: "with only input set", + phone: map[string]interface{}{ + "input": "+491711234567", + }, + expectedErr: nil, + expectedResult: &models.PhoneNumber{ + Valid: true, + Input: "+491711234567", + InternationalFormatted: "+49 171 1234567", + CountryCode: 49, + National: 1711234567, + NationalFormatted: "0171 1234567", + }, + }, + { + name: "with national number and country uppercased", + phone: map[string]interface{}{ + "input": "01711234567", + "defaultCountry": "DE", + }, + expectedErr: nil, + expectedResult: &models.PhoneNumber{ + Valid: true, + DefaultCountry: "DE", + Input: "01711234567", + InternationalFormatted: "+49 171 1234567", + CountryCode: 49, + National: 1711234567, + NationalFormatted: "0171 1234567", + }, + }, + { + name: "with national number, but missing defaultCountry", + phone: map[string]interface{}{ + "input": "01711234567", + }, + expectedErr: fmt.Errorf("invalid phoneNumber property 'phone' on class 'Person': " + + "invalid phone number: invalid or missing defaultCountry - " + + "this field is optional if the specified number is in the international format, " + + "but required if the number is in national format, use ISO 3166-1 alpha-2"), + }, + { + name: "with national number and country uppercased", + phone: map[string]interface{}{ + "input": "01711234567", + "defaultCountry": "de", + }, + expectedErr: nil, + expectedResult: &models.PhoneNumber{ + Valid: true, + DefaultCountry: "DE", + Input: "01711234567", + InternationalFormatted: "+49 171 1234567", + CountryCode: 49, + National: 1711234567, + NationalFormatted: "0171 1234567", + }, + }, + { + name: "with national number and various special characters", + phone: map[string]interface{}{ + "input": "(0)171-123 456 7", + "defaultCountry": "de", + }, + expectedErr: nil, + expectedResult: &models.PhoneNumber{ + Valid: true, + DefaultCountry: "DE", + Input: "(0)171-123 456 7", + InternationalFormatted: "+49 171 1234567", + CountryCode: 49, + National: 1711234567, + NationalFormatted: "0171 1234567", + }, + }, + { + name: "with international number and optional zero after country code", + phone: map[string]interface{}{ + "input": "+49 (0) 171 123 456 7", + "defaultCountry": "de", + }, + expectedErr: nil, + expectedResult: &models.PhoneNumber{ + Valid: true, + DefaultCountry: "DE", + Input: "+49 (0) 171 123 456 7", + InternationalFormatted: "+49 171 1234567", + CountryCode: 49, + National: 1711234567, + NationalFormatted: "0171 1234567", + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + config := &config.WeaviateConfig{} + validator := New(fakeExists, config, nil) + + obj := &models.Object{ + Class: "Person", + Properties: map[string]interface{}{ + "phone": test.phone, + }, + } + schema := testSchema() + err := validator.properties(context.Background(), schema.Objects.Classes[0], obj, nil) + + if test.expectedErr != nil { + assert.Equal(t, test.expectedErr.Error(), err.Error()) + } else { + assert.Equal(t, test.expectedErr, err) + } + + if err != nil { + return + } + phone, ok := obj.Properties.(map[string]interface{})["phone"] + require.True(t, ok) + assert.Equal(t, test.expectedResult, phone) + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation.go new file mode 100644 index 0000000000000000000000000000000000000000..04efbfc64722431a8890278a1a56c125d040f809 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation.go @@ -0,0 +1,774 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "encoding/json" + "fmt" + "regexp" + "time" + + "github.com/google/uuid" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema" + "github.com/weaviate/weaviate/entities/schema/crossref" +) + +const ( + // ErrorInvalidSingleRef message + ErrorInvalidSingleRef string = "only direct references supported at the moment, concept references not supported yet: class '%s' with property '%s' requires exactly 1 arguments: 'beacon'. Check your input schema, got: %#v" + // ErrorMissingSingleRefCRef message + ErrorMissingSingleRefCRef string = "only direct references supported at the moment, concept references not supported yet: class '%s' with property '%s' requires exactly 1 argument: 'beacon' is missing, check your input schema" + // ErrorCrefInvalidURI message + ErrorCrefInvalidURI string = "class '%s' with property '%s' is not a valid URI: %s" + // ErrorCrefInvalidURIPath message + ErrorCrefInvalidURIPath string = "class '%s' with property '%s' does not contain a valid path, must have 2 segments: //" + // ErrorMissingSingleRefLocationURL message + ErrorMissingSingleRefLocationURL string = "class '%s' with property '%s' requires exactly 3 arguments: 'beacon', 'locationUrl' and 'type'. 'locationUrl' is missing, check your input schema" + // ErrorMissingSingleRefType message + ErrorMissingSingleRefType string = "class '%s' with property '%s' requires exactly 3 arguments: 'beacon', 'locationUrl' and 'type'. 'type' is missing, check your input schema" +) + +func (v *Validator) properties(ctx context.Context, class *models.Class, + incomingObject *models.Object, existingObject *models.Object, +) error { + className := incomingObject.Class + isp := incomingObject.Properties + vectorWeights := incomingObject.VectorWeights + tenant := incomingObject.Tenant + + if existingObject != nil && tenant != existingObject.Tenant { + return fmt.Errorf("tenant mismatch, expected %s but got %s", existingObject.Tenant, tenant) + } + + if vectorWeights != nil { + res, err := v.validateVectorWeights(vectorWeights) + if err != nil { + return fmt.Errorf("vector weights: %w", err) + } + + vectorWeights = res + } + + if isp == nil { + // no properties means nothing to validate + return nil + } + + inputSchema, ok := isp.(map[string]interface{}) + if !ok { + return fmt.Errorf("could not recognize object's properties: %v", isp) + } + returnSchema := map[string]interface{}{} + + for propertyKey, propertyValue := range inputSchema { + if propertyValue == nil { + continue // nil values are removed and filtered out + } + + // properties in the class are saved with lower case first letter + propertyKeyLowerCase := schema.LowercaseFirstLetter(propertyKey) + property, err := schema.GetPropertyByName(class, propertyKeyLowerCase) + if err != nil { + return err + } + dataType, err := schema.GetPropertyDataType(class, propertyKeyLowerCase) + if err != nil { + return err + } + + // autodetect to_class in references + if dataType.String() == schema.DataTypeCRef.String() { + propertyValueSlice, ok := propertyValue.([]interface{}) + if !ok { + return fmt.Errorf("reference property is not a slice %v", propertyValue) + } + for i := range propertyValueSlice { + propertyValueMap, ok := propertyValueSlice[i].(map[string]interface{}) + if !ok { + return fmt.Errorf("reference property is not a map: %T", propertyValueMap) + } + beacon, ok := propertyValueMap["beacon"].(string) + if !ok { + return fmt.Errorf("beacon property is not a string: %T", propertyValueMap["beacon"]) + } + + beaconParsed, err := crossref.Parse(beacon) + if err != nil { + return err + } + + if beaconParsed.Class == "" { + prop, err := schema.GetPropertyByName(class, schema.LowercaseFirstLetter(propertyKey)) + if err != nil { + return err + } + if len(prop.DataType) > 1 { + continue + } + toClass := prop.DataType[0] // datatype is the name of the class that is referenced + toBeacon := crossref.NewLocalhost(toClass, beaconParsed.TargetID).String() + propertyValueMap["beacon"] = toBeacon + } + } + } + + var data interface{} + if schema.IsNested(*dataType) { + data, err = v.extractAndValidateNestedProperty(ctx, propertyKeyLowerCase, propertyValue, className, + dataType, property.NestedProperties) + } else { + data, err = v.extractAndValidateProperty(ctx, propertyKeyLowerCase, propertyValue, className, dataType, tenant) + } + if err != nil { + return err + } + + returnSchema[propertyKeyLowerCase] = data + } + + incomingObject.Properties = returnSchema + incomingObject.VectorWeights = vectorWeights + + return nil +} + +func nestedPropertiesToMap(nestedProperties []*models.NestedProperty) map[string]*models.NestedProperty { + nestedPropertiesMap := map[string]*models.NestedProperty{} + for _, nestedProperty := range nestedProperties { + nestedPropertiesMap[nestedProperty.Name] = nestedProperty + } + return nestedPropertiesMap +} + +// TODO nested +// refactor/simplify + improve recurring error msgs on nested properties +func (v *Validator) extractAndValidateNestedProperty(ctx context.Context, propertyName string, + val interface{}, className string, dataType *schema.DataType, nestedProperties []*models.NestedProperty, +) (interface{}, error) { + var data interface{} + var err error + + switch *dataType { + case schema.DataTypeObject: + data, err = objectVal(ctx, v, val, propertyName, className, nestedPropertiesToMap(nestedProperties)) + if err != nil { + return nil, fmt.Errorf("invalid object property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeObjectArray: + data, err = objectArrayVal(ctx, v, val, propertyName, className, nestedPropertiesToMap(nestedProperties)) + if err != nil { + return nil, fmt.Errorf("invalid object[] property '%s' on class '%s': %w", propertyName, className, err) + } + default: + return nil, fmt.Errorf("unrecognized data type '%s'", *dataType) + } + + return data, nil +} + +func objectVal(ctx context.Context, v *Validator, val interface{}, propertyPrefix string, + className string, nestedPropertiesMap map[string]*models.NestedProperty, +) (map[string]interface{}, error) { + typed, ok := val.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("object must be a map, but got: %T", val) + } + + for nestedKey, nestedValue := range typed { + propertyName := propertyPrefix + "." + nestedKey + nestedProperty, ok := nestedPropertiesMap[nestedKey] + if !ok { + return nil, fmt.Errorf("unknown property '%s'", propertyName) + } + + nestedDataType, err := schema.GetValueDataTypeFromString(nestedProperty.DataType[0]) + if err != nil { + return nil, fmt.Errorf("property '%s': %w", propertyName, err) + } + + if nestedValue == nil { + continue + } + + var data interface{} + if schema.IsNested(*nestedDataType) { + data, err = v.extractAndValidateNestedProperty(ctx, propertyName, nestedValue, + className, nestedDataType, nestedProperty.NestedProperties) + } else { + data, err = v.extractAndValidateProperty(ctx, propertyName, nestedValue, + className, nestedDataType, "") + // tenant isn't relevant for nested properties since crossrefs are not allowed + } + if err != nil { + return nil, fmt.Errorf("property '%s': %w", propertyName, err) + } + typed[nestedKey] = data + } + + return typed, nil +} + +func objectArrayVal(ctx context.Context, v *Validator, val interface{}, propertyPrefix string, + className string, nestedPropertiesMap map[string]*models.NestedProperty, +) (interface{}, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not an object array, but %T", val) + } + + for i := range typed { + data, err := objectVal(ctx, v, typed[i], propertyPrefix, className, nestedPropertiesMap) + if err != nil { + return nil, fmt.Errorf("invalid object '%d' in array: %w", i, err) + } + typed[i] = data + } + + return typed, nil +} + +func (v *Validator) extractAndValidateProperty(ctx context.Context, propertyName string, pv interface{}, + className string, dataType *schema.DataType, tenant string, +) (interface{}, error) { + var ( + data interface{} + err error + ) + + switch *dataType { + case schema.DataTypeCRef: + data, err = v.cRef(ctx, propertyName, pv, className, tenant) + if err != nil { + return nil, fmt.Errorf("invalid cref: %w", err) + } + case schema.DataTypeText: + data, err = stringVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid text property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeUUID: + data, err = uuidVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid uuid property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeInt: + data, err = intVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid integer property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeNumber: + data, err = numberVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid number property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeBoolean: + data, err = boolVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid boolean property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeDate: + data, err = dateVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid date property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeGeoCoordinates: + data, err = geoCoordinates(pv) + if err != nil { + return nil, fmt.Errorf("invalid geoCoordinates property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypePhoneNumber: + data, err = phoneNumber(pv) + if err != nil { + return nil, fmt.Errorf("invalid phoneNumber property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeBlob: + data, err = blobVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid blob property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeTextArray: + data, err = stringArrayVal(pv, "text") + if err != nil { + return nil, fmt.Errorf("invalid text array property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeIntArray: + data, err = intArrayVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid integer array property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeNumberArray: + data, err = numberArrayVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid number array property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeBooleanArray: + data, err = boolArrayVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid boolean array property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeDateArray: + data, err = dateArrayVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid date array property '%s' on class '%s': %w", propertyName, className, err) + } + case schema.DataTypeUUIDArray: + data, err = uuidArrayVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid uuid array property '%s' on class '%s': %w", propertyName, className, err) + } + // deprecated string + case schema.DataTypeString: + data, err = stringVal(pv) + if err != nil { + return nil, fmt.Errorf("invalid string property '%s' on class '%s': %w", propertyName, className, err) + } + // deprecated string + case schema.DataTypeStringArray: + data, err = stringArrayVal(pv, "string") + if err != nil { + return nil, fmt.Errorf("invalid string array property '%s' on class '%s': %w", propertyName, className, err) + } + + default: + return nil, fmt.Errorf("unrecognized data type '%s'", *dataType) + } + + return data, nil +} + +func (v *Validator) cRef(ctx context.Context, propertyName string, pv interface{}, + className, tenant string, +) (interface{}, error) { + switch refValue := pv.(type) { + case map[string]interface{}: + return nil, fmt.Errorf("reference must be an array, but got a map: %#v", refValue) + case []interface{}: + crefs := models.MultipleRef{} + for _, ref := range refValue { + refTyped, ok := ref.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("multiple references in %s.%s should be a list of maps, but we got: %T", + className, propertyName, ref) + } + + cref, err := v.parseAndValidateSingleRef(ctx, propertyName, refTyped, className, tenant) + if err != nil { + return nil, err + } + + crefs = append(crefs, cref) + } + + return crefs, nil + default: + return nil, fmt.Errorf("invalid ref type. Needs to be []map, got %T", pv) + } +} + +func stringVal(val interface{}) (string, error) { + typed, ok := val.(string) + if !ok { + return "", fmt.Errorf("not a string, but %T", val) + } + + return typed, nil +} + +func boolVal(val interface{}) (bool, error) { + typed, ok := val.(bool) + if !ok { + return false, fmt.Errorf("not a bool, but %T", val) + } + + return typed, nil +} + +func dateVal(val interface{}) (time.Time, error) { + if dateStr, ok := val.(string); ok { + if date, err := time.Parse(time.RFC3339, dateStr); err == nil { + return date, nil + } + } + + errorInvalidDate := "requires a string with a RFC3339 formatted date, but the given value is '%v'" + return time.Time{}, fmt.Errorf(errorInvalidDate, val) +} + +func uuidVal(val interface{}) (uuid.UUID, error) { + if uuidStr, ok := val.(string); ok { + if uuid, err := uuid.Parse(uuidStr); err == nil { + return uuid, nil + } + } + + errorInvalidUuid := "requires a string of UUID format, but the given value is '%v'" + return uuid.UUID{}, fmt.Errorf(errorInvalidUuid, val) +} + +func intVal(val interface{}) (float64, error) { + errInvalidInteger := "requires an integer, the given value is '%v'" + errInvalidIntegerConvertion := "the JSON number '%v' could not be converted to an int" + + switch typed := val.(type) { + case json.Number: + asInt, err := typed.Int64() + if err != nil { + // return err when the input can not be converted to an int + return 0, fmt.Errorf(errInvalidIntegerConvertion, val) + } + return float64(asInt), nil + + case int64: + return float64(typed), nil + + case float64: + if typed != float64(int64(typed)) { + // return err when float contains a decimal + return 0, fmt.Errorf(errInvalidInteger, val) + } + return typed, nil + + default: + return 0, fmt.Errorf(errInvalidInteger, val) + } +} + +func numberVal(val interface{}) (float64, error) { + errInvalidFloat := "requires a float, the given value is '%v'" + errInvalidFloatConvertion := "the JSON number '%v' could not be converted to a float." + + switch typed := val.(type) { + case json.Number: + asFloat, err := typed.Float64() + if err != nil { + // return err when the input can not be converted to an int + return 0, fmt.Errorf(errInvalidFloatConvertion, val) + } + return asFloat, nil + + case int64: + return float64(typed), nil + + case float64: + return typed, nil + + default: + return 0, fmt.Errorf(errInvalidFloat, val) + } +} + +func geoCoordinates(input interface{}) (*models.GeoCoordinates, error) { + inputMap, ok := input.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("geoCoordinates must be a map, but got: %T", input) + } + + lon, ok := inputMap["longitude"] + if !ok { + return nil, fmt.Errorf("geoCoordinates is missing required field 'longitude'") + } + + lat, ok := inputMap["latitude"] + if !ok { + return nil, fmt.Errorf("geoCoordinates is missing required field 'latitude'") + } + + lonFloat, err := parseCoordinate(lon) + if err != nil { + return nil, fmt.Errorf("invalid longitude: %w", err) + } + + latFloat, err := parseCoordinate(lat) + if err != nil { + return nil, fmt.Errorf("invalid latitude: %w", err) + } + + return &models.GeoCoordinates{ + Longitude: ptFloat32(float32(lonFloat)), + Latitude: ptFloat32(float32(latFloat)), + }, nil +} + +func ptFloat32(in float32) *float32 { + return &in +} + +func phoneNumber(data interface{}) (*models.PhoneNumber, error) { + dataMap, ok := data.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("phoneNumber must be a map, but got: %T", data) + } + + input, ok := dataMap["input"] + if !ok { + return nil, fmt.Errorf("phoneNumber is missing required field 'input'") + } + + inputString, ok := input.(string) + if !ok { + return nil, fmt.Errorf("phoneNumber.input must be a string") + } + + var defaultCountryString string + defaultCountry, ok := dataMap["defaultCountry"] + if !ok { + defaultCountryString = "" + } else { + defaultCountryString, ok = defaultCountry.(string) + if !ok { + return nil, fmt.Errorf("phoneNumber.defaultCountry must be a string") + } + } + + return parsePhoneNumber(inputString, defaultCountryString) +} + +func parseCoordinate(raw interface{}) (float64, error) { + switch v := raw.(type) { + case json.Number: + asFloat, err := v.Float64() + if err != nil { + return 0, fmt.Errorf("cannot interpret as float: %w", err) + } + return asFloat, nil + case float64: + return v, nil + default: + return 0, fmt.Errorf("must be json.Number or float, but got %T", raw) + } +} + +func blobVal(val interface{}) (string, error) { + typed, ok := val.(string) + if !ok { + return "", fmt.Errorf("not a blob base64 string, but %T", val) + } + + base64Regex := regexp.MustCompile(`^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$`) + ok = base64Regex.MatchString(typed) + if !ok { + return "", fmt.Errorf("not a valid blob base64 string") + } + + return typed, nil +} + +func (v *Validator) parseAndValidateSingleRef(ctx context.Context, propertyName string, + pvcr map[string]interface{}, className, tenant string, +) (*models.SingleRef, error) { + delete(pvcr, "href") + + // Return different types of errors for cref input + if len(pvcr) != 1 { + // Give an error if the cref is not filled with correct number of properties + return nil, fmt.Errorf( + ErrorInvalidSingleRef, + className, + propertyName, + pvcr, + ) + } else if _, ok := pvcr["beacon"]; !ok { + // Give an error if the cref is not filled with correct properties (beacon) + return nil, fmt.Errorf( + ErrorMissingSingleRefCRef, + className, + propertyName, + ) + } + + ref, err := crossref.Parse(pvcr["beacon"].(string)) + if err != nil { + return nil, fmt.Errorf("invalid reference: %w", err) + } + errVal := fmt.Sprintf("'cref' %s:%s", className, propertyName) + ref, err = v.ValidateSingleRef(ref.SingleRef()) + if err != nil { + return nil, err + } + + if err = v.ValidateExistence(ctx, ref, errVal, tenant); err != nil { + return nil, err + } + + // Validate whether reference exists based on given Type + return ref.SingleRef(), nil +} + +// vectorWeights are passed as a non-typed interface{}, this is due to a +// limitation in go-swagger which itself is coming from swagger 2.0 which does +// not have support for arbitrary key/value objects +// +// we must thus validate that it's a map and they keys are strings +// NOTE: We are not validating the semantic correctness of the equations +// themselves, as they are in the contextinoary's responsibility +func (v *Validator) validateVectorWeights(in interface{}) (map[string]string, error) { + asMap, ok := in.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("must be key/value object with strings as keys and values, got %#v", in) + } + + out := make(map[string]string, len(asMap)) + for key, value := range asMap { + asString, ok := value.(string) + if !ok { + return nil, fmt.Errorf("key '%s': incorrect datatype: must be string, got %T", key, value) + } + + out[key] = asString + } + + return out, nil +} + +func stringArrayVal(val interface{}, typeName string) ([]string, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not a %s array, but %T", typeName, val) + } + + data := make([]string, len(typed)) + for i := range typed { + sval, err := stringVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid %s array value: %s", typeName, val) + } + data[i] = sval + } + + return data, nil +} + +func intArrayVal(val interface{}) ([]float64, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not an integer array, but %T", val) + } + + data := make([]float64, len(typed)) + for i := range typed { + ival, err := intVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid integer array value: %s", val) + } + data[i] = ival + } + + return data, nil +} + +func numberArrayVal(val interface{}) ([]float64, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not an integer array, but %T", val) + } + + data := make([]float64, len(typed)) + for i := range typed { + nval, err := numberVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid integer array value: %s", val) + } + data[i] = nval + } + + return data, nil +} + +func boolArrayVal(val interface{}) ([]bool, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not a boolean array, but %T", val) + } + + data := make([]bool, len(typed)) + for i := range typed { + bval, err := boolVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid boolean array value: %s", val) + } + data[i] = bval + } + + return data, nil +} + +func dateArrayVal(val interface{}) ([]time.Time, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not a date array, but %T", val) + } + + data := make([]time.Time, len(typed)) + for i := range typed { + dval, err := dateVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid date array value: %s", val) + } + data[i] = dval + } + + return data, nil +} + +func uuidArrayVal(val interface{}) ([]uuid.UUID, error) { + typed, ok := val.([]interface{}) + if !ok { + return nil, fmt.Errorf("not a uuid array, but %T", val) + } + + data := make([]uuid.UUID, len(typed)) + for i := range typed { + uval, err := uuidVal(typed[i]) + if err != nil { + return nil, fmt.Errorf("invalid uuid array value: %s", val) + } + data[i] = uval + } + + return data, nil +} + +func ParseUUIDArray(in any) ([]uuid.UUID, error) { + var err error + + if parsed, ok := in.([]uuid.UUID); ok { + return parsed, nil + } + + asSlice, ok := in.([]any) + if !ok { + return nil, fmt.Errorf("not a slice type: %T", in) + } + + d := make([]uuid.UUID, len(asSlice)) + for i, elem := range asSlice { + asUUID, ok := elem.(uuid.UUID) + if ok { + d[i] = asUUID + continue + } + + asStr, ok := elem.(string) + if !ok { + return nil, fmt.Errorf("array element neither uuid.UUID nor str, but: %T", elem) + } + + d[i], err = uuid.Parse(asStr) + if err != nil { + return nil, fmt.Errorf("at pos %d: %w", i, err) + } + } + + return d, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation_test.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation_test.go new file mode 100644 index 0000000000000000000000000000000000000000..8a6843e70dc08d6e460afbf36aa0a556c28f2f6a --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/properties_validation_test.go @@ -0,0 +1,721 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "encoding/json" + "fmt" + "reflect" + "testing" + "time" + + "github.com/go-openapi/strfmt" + "github.com/google/uuid" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/entities/additional" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema" + "github.com/weaviate/weaviate/usecases/config" +) + +func TestValidator_extractAndValidateProperty(t *testing.T) { + type fields struct { + schema schema.Schema + exists exists + config *config.WeaviateConfig + } + type args struct { + ctx context.Context + propertyName string + pv interface{} + className string + dataType *schema.DataType + } + validatorFields := fields{ + schema: schema.Schema{ + Objects: &models.Schema{ + Classes: []*models.Class{ + { + Class: "BlobClass", + Properties: []*models.Property{ + { + DataType: []string{"blob"}, + Name: "blobProperty", + }, + }, + }, + }, + }, + }, + } + tests := []struct { + name string + fields fields + args args + want interface{} + wantErr bool + }{ + { + name: "Validate blob - empty base64 encoded image string", + fields: validatorFields, + args: args{ + ctx: context.Background(), + propertyName: "blobProperty", + pv: "", + className: "BlobClass", + dataType: getDataType(schema.DataTypeBlob), + }, + want: nil, + wantErr: true, + }, + { + name: "Validate blob - invalid base64 encoded image string", + fields: validatorFields, + args: args{ + ctx: context.Background(), + propertyName: "blobProperty", + pv: "image", + className: "BlobClass", + dataType: getDataType(schema.DataTypeBlob), + }, + want: nil, + wantErr: true, + }, + { + name: "Validate blob - valid base64 encoded string but with type definition before image string", + fields: validatorFields, + args: args{ + ctx: context.Background(), + propertyName: "blobProperty", + pv: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAAA/CAYAAAAfQM0aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCRjQ5NEM3RDI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCRjQ5NEM3RTI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkJGNDk0QzdCMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJGNDk0QzdDMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+WeGRxAAAB2hJREFUeNrUXFtslUUQ3hJCoQVEKy0k1qQgrRg0vaAJaq1tvJSgaLy8mKDF2IvxBY2Bgm8+iIoxvhB72tTUmKgPigbFKCEtxeKD9hZjAi3GJrYJtqRai7TQB+pMz/zwU/5zzsxe2u4kXwiwZ+bb/Xb/s7v/zEmrra1VTFsFeBRQCtgEuBWwkv5vHPAn4DdAB+B7wBjXcUNDQ8o2dXV1SmDzyhUtLS3tBPyxC9CdrN1ihi/swKuA7YD0BG1uJhQDngdcAnwDeJ86Ole2kLii+J2AFsA+wF9RjRalmEUHaZY8m6RDUYZtn6HPHiRfLm2hck0D7AScAdRH8UokwD2AnwA7UoiUyhaRD/S12dHg+8B1OWA/4BTgqVQCPEJL8haLBNDXEfJt03ziipYH+BJwHFAYJcAWwCeAZQ6CLyPfWyz584nrbCuj74eHwgKsddih2R1ba+jHJ65R1k6PuWNhAd4DZM/BTiWbdhwm5hPXsA0AngY8COgNP4JwSTyu4zE/P18VFhZKP7aNYuouXxFX5Ic8Nc2Ea2D/AfYCNgIORZ0DdusOfnFxcXDwUD09PZKP76alKDUR16KiIlVQUHDl7/39/Uozpg7Xac45YB0dGrQHHw07KVwJpRRbYiKuyCc8+MhXcyXocP2RnvMvJhr8QIBK08EPbGJiQuqq0mX7KD4GIohi4xVPTU0N6/BRamPwu7u7dZb3/RozkW3IB3lZEkGHayeI8FFVVdWaZAIUcD2Wl5fbHHy024XtC6QBkomA/XHIFb8X0Xamp6efASHqt27dGnkVkcNxVlFRoXJycmwOvuLGNmifVATsD/bLZezgKgKE2J+bm3sKHk3XXUWs4Mz87Oxs24OvOLEN26cUAfvFXAkrlKGBCDNXEbAajldXV1+5ijjP+KCrg855x+3nk2uy8SwDdIIIM1cRI6k+0NraqkZGRmzuKAIbFrYf0Q2UaPOA/Wpra3PBNfHhYHq6HbC5qanpGB7ETgPWc0TApTr7eyDolOaj6LRG+/W2Bn94eJg7+DpcowZ+AGb+642NjYfC3wEdXAdI1uK2Du2ksH2HrcHHfggGX4frNVcRMPh7BwcHN8ZiseuuIr4DvKXib29YX2bhmW+wEqYptsREXC2eWXS44oyfuYqYmpra19LSEnkaRgEG6Nj8gGRHESVCRkaG9Kg+IOyTiGtmZqatnZsOV/zMLnjcsF7KH5AIECVCX1+f6u3tlbg4oLmc2VyDy8HgPshg2yzmCo8aFsdAALzpw9dw23REwJkvHPwjSu92UcwVRcAnAd4LaQ6+CVe2AGivAe5WwhcdGp0aoVgmJuIqnBy2uSa18Buxs4AXAJMO401SjLOGfnziyhYg2GrtcNSxSfJ90pI/n7iyBUA7quKv/IYsxhmiZ/ZRy/x94soWAO1nwL0qnhVw2cD/ZfKBvjod9cEnrmwB0DBh9RUVfxHxhYrnUHLtEn2mlHyMOe6HT1wT7oISGSas4ntNzJmsVFczjnMBN1CbfwGD1BYPID8A/lFzbz5xZQsQnmWfExa6ecNVIsBKWuIlgA0qnjG2PLhsou0aZgF3qfil2fg89ssbrhwBNtB+GN/dLUnQ5kbCHYAnAFMAvGpsoY7OlS0krmOhxx7WLHwAeBLwVahN2uIUswgrPB5T8rRv7DxWqDwM+JaCjzue8b5wZe2C7gJ8quKVJqY599vJ1yZHffCJK0uA+wAfAtZYjIO+Gsi3TfOJK0sAfFP/jpKV+HBtKfkutOTPJ64sAVYD3qXgrmwpxVht6McnrmwBMAP4pjlYdRij3tCHT1xZAuDdermOA836gDKKqWNirob1ASZc2eeAl3QH36A+AGP+ohFWxNVSfYAuV9YKyKUTo/bgo2nUB5RQbImJuFqsD9DhyhbAuDgjMI36gFKX7S3XB5S6egSV2Bh8zYyDYjr4SGYi2yzmMIm5YnFGkFOLSQGNjY3X/BtaLBabWQF5XKcO6gOkZT950gAW6wPWuXoEZXEaOqoPyHLcPqkIwvqALFcCZHJmvqP6gEzH7VOKIKgPyHQlwIVUjRzWB1xw3H4+ubIFGE3VyGF9wKjj9ik3D4L6gFFXArCSTlEEzKe3LMIfwvYDNgcf+4P9csSVLUAXt7GD+oBuYfsuW4OvUR/Q7UoA/G2zaRvbOqEI0xRbYiKulusDTrgSYEg6sxKJIKwP6FLyjDYRV4v1ATpc2QKgNZtu6zTqA5o1ObM/h5eDyMvCtrlZObLgNhRv+jAHvkwqQjDzhYPfrvRvF0VcLdQHaHGNxWKrZv0d//hahcqr8Ccww1kRbwPuVMIXHRqd+ptimZiIq0F9gA2urEcQ2jkVf/tz0WG8ixTjnKEfn7iyBQi2WnuULLlV0qE9FrdzPnFlC4CGRQkvqyQ/MqRh6KtO2S948IkrWwC0XwHPAQ4r85z7w+TL1U8Y+8Q14S4oyjA9703AZ4AqFX8RvoTpN8i3/Bi/p+egHz5xZQsQGCasvqGuZhzj76DdpuIZx8FPuOAviWDG8e8qXl0yXxnHPnGdsf8FGAByGwC02iMZswAAAABJRU5ErkJggg==", + className: "BlobClass", + dataType: getDataType(schema.DataTypeBlob), + }, + want: nil, + wantErr: true, + }, + { + name: "Validate blob - valid base64 encoded string", + fields: validatorFields, + args: args{ + ctx: context.Background(), + propertyName: "blobProperty", + pv: "iVBORw0KGgoAAAANSUhEUgAAAGAAAAA/CAYAAAAfQM0aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCRjQ5NEM3RDI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCRjQ5NEM3RTI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkJGNDk0QzdCMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJGNDk0QzdDMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+WeGRxAAAB2hJREFUeNrUXFtslUUQ3hJCoQVEKy0k1qQgrRg0vaAJaq1tvJSgaLy8mKDF2IvxBY2Bgm8+iIoxvhB72tTUmKgPigbFKCEtxeKD9hZjAi3GJrYJtqRai7TQB+pMz/zwU/5zzsxe2u4kXwiwZ+bb/Xb/s7v/zEmrra1VTFsFeBRQCtgEuBWwkv5vHPAn4DdAB+B7wBjXcUNDQ8o2dXV1SmDzyhUtLS3tBPyxC9CdrN1ihi/swKuA7YD0BG1uJhQDngdcAnwDeJ86Ole2kLii+J2AFsA+wF9RjRalmEUHaZY8m6RDUYZtn6HPHiRfLm2hck0D7AScAdRH8UokwD2AnwA7UoiUyhaRD/S12dHg+8B1OWA/4BTgqVQCPEJL8haLBNDXEfJt03ziipYH+BJwHFAYJcAWwCeAZQ6CLyPfWyz584nrbCuj74eHwgKsddih2R1ba+jHJ65R1k6PuWNhAd4DZM/BTiWbdhwm5hPXsA0AngY8COgNP4JwSTyu4zE/P18VFhZKP7aNYuouXxFX5Ic8Nc2Ea2D/AfYCNgIORZ0DdusOfnFxcXDwUD09PZKP76alKDUR16KiIlVQUHDl7/39/Uozpg7Xac45YB0dGrQHHw07KVwJpRRbYiKuyCc8+MhXcyXocP2RnvMvJhr8QIBK08EPbGJiQuqq0mX7KD4GIohi4xVPTU0N6/BRamPwu7u7dZb3/RozkW3IB3lZEkGHayeI8FFVVdWaZAIUcD2Wl5fbHHy024XtC6QBkomA/XHIFb8X0Xamp6efASHqt27dGnkVkcNxVlFRoXJycmwOvuLGNmifVATsD/bLZezgKgKE2J+bm3sKHk3XXUWs4Mz87Oxs24OvOLEN26cUAfvFXAkrlKGBCDNXEbAajldXV1+5ijjP+KCrg855x+3nk2uy8SwDdIIIM1cRI6k+0NraqkZGRmzuKAIbFrYf0Q2UaPOA/Wpra3PBNfHhYHq6HbC5qanpGB7ETgPWc0TApTr7eyDolOaj6LRG+/W2Bn94eJg7+DpcowZ+AGb+642NjYfC3wEdXAdI1uK2Du2ksH2HrcHHfggGX4frNVcRMPh7BwcHN8ZiseuuIr4DvKXib29YX2bhmW+wEqYptsREXC2eWXS44oyfuYqYmpra19LSEnkaRgEG6Nj8gGRHESVCRkaG9Kg+IOyTiGtmZqatnZsOV/zMLnjcsF7KH5AIECVCX1+f6u3tlbg4oLmc2VyDy8HgPshg2yzmCo8aFsdAALzpw9dw23REwJkvHPwjSu92UcwVRcAnAd4LaQ6+CVe2AGivAe5WwhcdGp0aoVgmJuIqnBy2uSa18Buxs4AXAJMO401SjLOGfnziyhYg2GrtcNSxSfJ90pI/n7iyBUA7quKv/IYsxhmiZ/ZRy/x94soWAO1nwL0qnhVw2cD/ZfKBvjod9cEnrmwB0DBh9RUVfxHxhYrnUHLtEn2mlHyMOe6HT1wT7oISGSas4ntNzJmsVFczjnMBN1CbfwGD1BYPID8A/lFzbz5xZQsQnmWfExa6ecNVIsBKWuIlgA0qnjG2PLhsou0aZgF3qfil2fg89ssbrhwBNtB+GN/dLUnQ5kbCHYAnAFMAvGpsoY7OlS0krmOhxx7WLHwAeBLwVahN2uIUswgrPB5T8rRv7DxWqDwM+JaCjzue8b5wZe2C7gJ8quKVJqY599vJ1yZHffCJK0uA+wAfAtZYjIO+Gsi3TfOJK0sAfFP/jpKV+HBtKfkutOTPJ64sAVYD3qXgrmwpxVht6McnrmwBMAP4pjlYdRij3tCHT1xZAuDdermOA836gDKKqWNirob1ASZc2eeAl3QH36A+AGP+ohFWxNVSfYAuV9YKyKUTo/bgo2nUB5RQbImJuFqsD9DhyhbAuDgjMI36gFKX7S3XB5S6egSV2Bh8zYyDYjr4SGYi2yzmMIm5YnFGkFOLSQGNjY3X/BtaLBabWQF5XKcO6gOkZT950gAW6wPWuXoEZXEaOqoPyHLcPqkIwvqALFcCZHJmvqP6gEzH7VOKIKgPyHQlwIVUjRzWB1xw3H4+ubIFGE3VyGF9wKjj9ik3D4L6gFFXArCSTlEEzKe3LMIfwvYDNgcf+4P9csSVLUAXt7GD+oBuYfsuW4OvUR/Q7UoA/G2zaRvbOqEI0xRbYiKulusDTrgSYEg6sxKJIKwP6FLyjDYRV4v1ATpc2QKgNZtu6zTqA5o1ObM/h5eDyMvCtrlZObLgNhRv+jAHvkwqQjDzhYPfrvRvF0VcLdQHaHGNxWKrZv0d//hahcqr8Ccww1kRbwPuVMIXHRqd+ptimZiIq0F9gA2urEcQ2jkVf/tz0WG8ixTjnKEfn7iyBQi2WnuULLlV0qE9FrdzPnFlC4CGRQkvqyQ/MqRh6KtO2S948IkrWwC0XwHPAQ4r85z7w+TL1U8Y+8Q14S4oyjA9703AZ4AqFX8RvoTpN8i3/Bi/p+egHz5xZQsQGCasvqGuZhzj76DdpuIZx8FPuOAviWDG8e8qXl0yXxnHPnGdsf8FGAByGwC02iMZswAAAABJRU5ErkJggg==", + className: "BlobClass", + dataType: getDataType(schema.DataTypeBlob), + }, + want: "iVBORw0KGgoAAAANSUhEUgAAAGAAAAA/CAYAAAAfQM0aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCRjQ5NEM3RDI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCRjQ5NEM3RTI5QTkxMUUyOTc1NENCMzI4N0QwNDNCOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkJGNDk0QzdCMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJGNDk0QzdDMjlBOTExRTI5NzU0Q0IzMjg3RDA0M0I5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+WeGRxAAAB2hJREFUeNrUXFtslUUQ3hJCoQVEKy0k1qQgrRg0vaAJaq1tvJSgaLy8mKDF2IvxBY2Bgm8+iIoxvhB72tTUmKgPigbFKCEtxeKD9hZjAi3GJrYJtqRai7TQB+pMz/zwU/5zzsxe2u4kXwiwZ+bb/Xb/s7v/zEmrra1VTFsFeBRQCtgEuBWwkv5vHPAn4DdAB+B7wBjXcUNDQ8o2dXV1SmDzyhUtLS3tBPyxC9CdrN1ihi/swKuA7YD0BG1uJhQDngdcAnwDeJ86Ole2kLii+J2AFsA+wF9RjRalmEUHaZY8m6RDUYZtn6HPHiRfLm2hck0D7AScAdRH8UokwD2AnwA7UoiUyhaRD/S12dHg+8B1OWA/4BTgqVQCPEJL8haLBNDXEfJt03ziipYH+BJwHFAYJcAWwCeAZQ6CLyPfWyz584nrbCuj74eHwgKsddih2R1ba+jHJ65R1k6PuWNhAd4DZM/BTiWbdhwm5hPXsA0AngY8COgNP4JwSTyu4zE/P18VFhZKP7aNYuouXxFX5Ic8Nc2Ea2D/AfYCNgIORZ0DdusOfnFxcXDwUD09PZKP76alKDUR16KiIlVQUHDl7/39/Uozpg7Xac45YB0dGrQHHw07KVwJpRRbYiKuyCc8+MhXcyXocP2RnvMvJhr8QIBK08EPbGJiQuqq0mX7KD4GIohi4xVPTU0N6/BRamPwu7u7dZb3/RozkW3IB3lZEkGHayeI8FFVVdWaZAIUcD2Wl5fbHHy024XtC6QBkomA/XHIFb8X0Xamp6efASHqt27dGnkVkcNxVlFRoXJycmwOvuLGNmifVATsD/bLZezgKgKE2J+bm3sKHk3XXUWs4Mz87Oxs24OvOLEN26cUAfvFXAkrlKGBCDNXEbAajldXV1+5ijjP+KCrg855x+3nk2uy8SwDdIIIM1cRI6k+0NraqkZGRmzuKAIbFrYf0Q2UaPOA/Wpra3PBNfHhYHq6HbC5qanpGB7ETgPWc0TApTr7eyDolOaj6LRG+/W2Bn94eJg7+DpcowZ+AGb+642NjYfC3wEdXAdI1uK2Du2ksH2HrcHHfggGX4frNVcRMPh7BwcHN8ZiseuuIr4DvKXib29YX2bhmW+wEqYptsREXC2eWXS44oyfuYqYmpra19LSEnkaRgEG6Nj8gGRHESVCRkaG9Kg+IOyTiGtmZqatnZsOV/zMLnjcsF7KH5AIECVCX1+f6u3tlbg4oLmc2VyDy8HgPshg2yzmCo8aFsdAALzpw9dw23REwJkvHPwjSu92UcwVRcAnAd4LaQ6+CVe2AGivAe5WwhcdGp0aoVgmJuIqnBy2uSa18Buxs4AXAJMO401SjLOGfnziyhYg2GrtcNSxSfJ90pI/n7iyBUA7quKv/IYsxhmiZ/ZRy/x94soWAO1nwL0qnhVw2cD/ZfKBvjod9cEnrmwB0DBh9RUVfxHxhYrnUHLtEn2mlHyMOe6HT1wT7oISGSas4ntNzJmsVFczjnMBN1CbfwGD1BYPID8A/lFzbz5xZQsQnmWfExa6ecNVIsBKWuIlgA0qnjG2PLhsou0aZgF3qfil2fg89ssbrhwBNtB+GN/dLUnQ5kbCHYAnAFMAvGpsoY7OlS0krmOhxx7WLHwAeBLwVahN2uIUswgrPB5T8rRv7DxWqDwM+JaCjzue8b5wZe2C7gJ8quKVJqY599vJ1yZHffCJK0uA+wAfAtZYjIO+Gsi3TfOJK0sAfFP/jpKV+HBtKfkutOTPJ64sAVYD3qXgrmwpxVht6McnrmwBMAP4pjlYdRij3tCHT1xZAuDdermOA836gDKKqWNirob1ASZc2eeAl3QH36A+AGP+ohFWxNVSfYAuV9YKyKUTo/bgo2nUB5RQbImJuFqsD9DhyhbAuDgjMI36gFKX7S3XB5S6egSV2Bh8zYyDYjr4SGYi2yzmMIm5YnFGkFOLSQGNjY3X/BtaLBabWQF5XKcO6gOkZT950gAW6wPWuXoEZXEaOqoPyHLcPqkIwvqALFcCZHJmvqP6gEzH7VOKIKgPyHQlwIVUjRzWB1xw3H4+ubIFGE3VyGF9wKjj9ik3D4L6gFFXArCSTlEEzKe3LMIfwvYDNgcf+4P9csSVLUAXt7GD+oBuYfsuW4OvUR/Q7UoA/G2zaRvbOqEI0xRbYiKulusDTrgSYEg6sxKJIKwP6FLyjDYRV4v1ATpc2QKgNZtu6zTqA5o1ObM/h5eDyMvCtrlZObLgNhRv+jAHvkwqQjDzhYPfrvRvF0VcLdQHaHGNxWKrZv0d//hahcqr8Ccww1kRbwPuVMIXHRqd+ptimZiIq0F9gA2urEcQ2jkVf/tz0WG8ixTjnKEfn7iyBQi2WnuULLlV0qE9FrdzPnFlC4CGRQkvqyQ/MqRh6KtO2S948IkrWwC0XwHPAQ4r85z7w+TL1U8Y+8Q14S4oyjA9703AZ4AqFX8RvoTpN8i3/Bi/p+egHz5xZQsQGCasvqGuZhzj76DdpuIZx8FPuOAviWDG8e8qXl0yXxnHPnGdsf8FGAByGwC02iMZswAAAABJRU5ErkJggg==", + wantErr: false, + }, + { + name: "Validate blob - nil entry", + fields: validatorFields, + args: args{ + ctx: context.Background(), + propertyName: "blobProperty", + pv: nil, + className: "BlobClass", + dataType: getDataType(schema.DataTypeBlob), + }, + want: nil, + wantErr: true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + v := &Validator{ + exists: tt.fields.exists, + config: tt.fields.config, + } + got, err := v.extractAndValidateProperty(tt.args.ctx, tt.args.propertyName, tt.args.pv, tt.args.className, tt.args.dataType, "") + if (err != nil) != tt.wantErr { + t.Errorf("Validator.extractAndValidateProperty() error = %v, wantErr %v", err, tt.wantErr) + return + } + if !reflect.DeepEqual(got, tt.want) { + t.Errorf("Validator.extractAndValidateProperty() = %v, want %v", got, tt.want) + } + }) + } +} + +func getDataType(dataType schema.DataType) *schema.DataType { + return &dataType +} + +func TestProperties(t *testing.T) { + const myBeacon = "weaviate://localhost/things/8e555f0d-8590-48c2-a9a6-70772ed14c0a" + myJournalClass := &models.Class{ + Properties: []*models.Property{ + {Name: "inJournal", DataType: []string{"Journal"}}, + { + Name: "nested", + DataType: schema.DataTypeObject.PropString(), + NestedProperties: []*models.NestedProperty{{Name: "nested2", DataType: schema.DataTypeObject.PropString()}}, + }, + }, + } + specs := map[string]struct { + class *models.Class + obj *models.Object + expErr bool + expBeacon strfmt.URI + }{ + "incorrect cref body - example from issue #1253": { + class: myJournalClass, + obj: &models.Object{ + Properties: map[string]any{"inJournal": []any{map[string]any{ + "beacon": map[string]any{"beacon": myBeacon}, + }}}, + }, + expErr: true, + }, + "complete beacon": { + class: myJournalClass, + obj: &models.Object{ + Properties: map[string]any{"inJournal": []any{map[string]any{ + "beacon": myBeacon, + }}}, + }, + expBeacon: myBeacon, + }, + "beacon without class": { + class: myJournalClass, + obj: &models.Object{ + Properties: map[string]any{"inJournal": []any{map[string]any{ + "beacon": "weaviate://foo/8e555f0d-8590-48c2-a9a6-70772ed14c0a", + }}}, + }, + expBeacon: "weaviate://localhost/Journal/8e555f0d-8590-48c2-a9a6-70772ed14c0a", + }, + "nested with nil": { + class: myJournalClass, + obj: &models.Object{ + Properties: map[string]interface{}{"nested": map[string]interface{}{ + "nested2": nil, + }}, + }, + }, + } + for name, spec := range specs { + t.Run(name, func(t *testing.T) { + validator := &Validator{exists: func(_ context.Context, class string, _ strfmt.UUID, _ *additional.ReplicationProperties, _ string) (bool, error) { + return true, nil + }} + gotErr := validator.properties(context.Background(), spec.class, spec.obj, nil) + if spec.expErr { + require.Error(t, gotErr) + return + } + require.NoError(t, gotErr) + props := spec.obj.Properties + if spec.expBeacon != "" { + gotBeacon := extractBeacon(t, props) + assert.Equal(t, spec.expBeacon, gotBeacon) + + } + }) + } +} + +func extractBeacon(t *testing.T, props models.PropertySchema) strfmt.URI { + require.IsType(t, map[string]any{}, props) + require.Contains(t, props.(map[string]any), "inJournal") + journalProp := props.(map[string]any)["inJournal"] + require.IsType(t, models.MultipleRef{}, journalProp) + require.Len(t, journalProp.(models.MultipleRef), 1) + gotBeacon := journalProp.(models.MultipleRef)[0].Beacon + return gotBeacon +} + +func TestValidator_ValuesCasting(t *testing.T) { + t.Run("int(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue float64 + expectedErr bool + } + + testCases := []testCase{ + { + value: json.Number("123"), + expectedValue: float64(123), + expectedErr: false, + }, + { + value: int64(123), + expectedValue: float64(123), + expectedErr: false, + }, + { + value: float64(123), + expectedValue: float64(123), + expectedErr: false, + }, + + { + value: json.Number("123.5"), + expectedValue: float64(0), + expectedErr: true, + }, + { + value: float64(123.5), + expectedValue: float64(0), + expectedErr: true, + }, + { + value: "123.5", + expectedValue: float64(0), + expectedErr: true, + }, + { + value: "something", + expectedValue: float64(0), + expectedErr: true, + }, + { + value: true, + expectedValue: float64(0), + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("int #%d", i), func(t *testing.T) { + value, err := intVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("ints (single) #%d", i), func(t *testing.T) { + value, err := intArrayVal(tc.value) + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("ints (array) #%d", i), func(t *testing.T) { + value, err := intArrayVal([]interface{}{tc.value}) + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []float64{tc.expectedValue}, value) + } + }) + } + }) + + t.Run("number(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue float64 + expectedErr bool + } + + testCases := []testCase{ + { + value: json.Number("123"), + expectedValue: float64(123), + expectedErr: false, + }, + { + value: int64(123), + expectedValue: float64(123), + expectedErr: false, + }, + { + value: float64(123), + expectedValue: float64(123), + expectedErr: false, + }, + { + value: json.Number("123.5"), + expectedValue: float64(123.5), + expectedErr: false, + }, + { + value: float64(123.5), + expectedValue: float64(123.5), + expectedErr: false, + }, + + { + value: "123.5", + expectedValue: float64(0), + expectedErr: true, + }, + { + value: "something", + expectedValue: float64(0), + expectedErr: true, + }, + { + value: true, + expectedValue: float64(0), + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("number #%d", i), func(t *testing.T) { + value, err := numberVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("numbers (single) #%d", i), func(t *testing.T) { + value, err := numberArrayVal(tc.value) + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("numbers (array) #%d", i), func(t *testing.T) { + value, err := numberArrayVal([]interface{}{tc.value}) + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []float64{tc.expectedValue}, value) + } + }) + } + }) + + t.Run("string(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue string + expectedErr bool + } + + testCases := []testCase{ + { + value: "123.5", + expectedValue: "123.5", + expectedErr: false, + }, + { + value: "something", + expectedValue: "something", + expectedErr: false, + }, + + { + value: json.Number("123"), + expectedValue: "", + expectedErr: true, + }, + { + value: int64(123), + expectedValue: "", + expectedErr: true, + }, + { + value: float64(123), + expectedValue: "", + expectedErr: true, + }, + { + value: []byte("something"), + expectedValue: "", + expectedErr: true, + }, + { + value: true, + expectedValue: "", + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("string #%d", i), func(t *testing.T) { + value, err := stringVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("strings (single) #%d", i), func(t *testing.T) { + value, err := stringArrayVal(tc.value, "text") + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("strings (array) #%d", i), func(t *testing.T) { + value, err := stringArrayVal([]interface{}{tc.value}, "text") + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []string{tc.expectedValue}, value) + } + }) + } + }) + + t.Run("bool(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue bool + expectedErr bool + } + + testCases := []testCase{ + { + value: true, + expectedValue: true, + expectedErr: false, + }, + { + value: false, + expectedValue: false, + expectedErr: false, + }, + + { + value: float64(1), + expectedValue: false, + expectedErr: true, + }, + { + value: int64(1), + expectedValue: false, + expectedErr: true, + }, + { + value: "1", + expectedValue: false, + expectedErr: true, + }, + { + value: "true", + expectedValue: false, + expectedErr: true, + }, + { + value: "something", + expectedValue: false, + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("bool #%d", i), func(t *testing.T) { + value, err := boolVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("bools (single) #%d", i), func(t *testing.T) { + value, err := boolArrayVal(tc.value) + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("bools (array) #%d", i), func(t *testing.T) { + value, err := boolArrayVal([]interface{}{tc.value}) + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []bool{tc.expectedValue}, value) + } + }) + } + }) + + t.Run("uuid(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue uuid.UUID + expectedErr bool + } + + testCases := []testCase{ + { + value: "e780b0a4-8d0e-4c09-898e-19d6b81e1e63", + expectedValue: uuid.MustParse("e780b0a4-8d0e-4c09-898e-19d6b81e1e63"), + expectedErr: false, + }, + { + value: "e780b0a48d0e4c09898e19d6b81e1e63", + expectedValue: uuid.MustParse("e780b0a4-8d0e-4c09-898e-19d6b81e1e63"), + expectedErr: false, + }, + + { + value: float64(123), + expectedValue: [16]byte{}, + expectedErr: true, + }, + { + value: int64(123), + expectedValue: [16]byte{}, + expectedErr: true, + }, + { + value: "123", + expectedValue: [16]byte{}, + expectedErr: true, + }, + { + value: "something", + expectedValue: [16]byte{}, + expectedErr: true, + }, + { + value: true, + expectedValue: [16]byte{}, + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("uuid #%d", i), func(t *testing.T) { + value, err := uuidVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("uuids (single) #%d", i), func(t *testing.T) { + value, err := uuidArrayVal(tc.value) + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("uuids (array) #%d", i), func(t *testing.T) { + value, err := uuidArrayVal([]interface{}{tc.value}) + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []uuid.UUID{tc.expectedValue}, value) + } + }) + } + }) + + t.Run("date(s)", func(t *testing.T) { + type testCase struct { + value interface{} + expectedValue time.Time + expectedErr bool + } + + testCases := []testCase{ + { + value: "2024-01-02T03:04:05.00Z", + expectedValue: time.Unix(1704164645, 0).UTC(), + expectedErr: false, + }, + + { + value: float64(123), + expectedValue: time.Time{}, + expectedErr: true, + }, + { + value: int64(123), + expectedValue: time.Time{}, + expectedErr: true, + }, + { + value: "123", + expectedValue: time.Time{}, + expectedErr: true, + }, + { + value: "something", + expectedValue: time.Time{}, + expectedErr: true, + }, + { + value: true, + expectedValue: time.Time{}, + expectedErr: true, + }, + } + + for i, tc := range testCases { + t.Run(fmt.Sprintf("date #%d", i), func(t *testing.T) { + value, err := dateVal(tc.value) + + if tc.expectedErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } + assert.Equal(t, tc.expectedValue, value) + }) + } + for i, tc := range testCases { + t.Run(fmt.Sprintf("dates (single) #%d", i), func(t *testing.T) { + value, err := dateArrayVal(tc.value) + + assert.Error(t, err) + assert.Nil(t, value) + }) + t.Run(fmt.Sprintf("dates (array) #%d", i), func(t *testing.T) { + value, err := dateArrayVal([]interface{}{tc.value}) + + if tc.expectedErr { + assert.Error(t, err) + assert.Nil(t, value) + } else { + assert.NoError(t, err) + assert.Equal(t, []time.Time{tc.expectedValue}, value) + } + }) + } + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation.go new file mode 100644 index 0000000000000000000000000000000000000000..f7953736b206a9b824dc616e100929bd9b75953f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation.go @@ -0,0 +1,71 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "fmt" + + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/modelsext" +) + +func (v *Validator) vector(ctx context.Context, class *models.Class, + incomingObject *models.Object, +) error { + // In case the schema has a legacy vector index, we need to check if there is a default named vector which + // is used to transport legacy vector via the named vector API. + if defaultVec, ok := incomingObject.Vectors[modelsext.DefaultNamedVectorName]; ok && modelsext.ClassHasLegacyVectorIndex(class) { + vec, ok := defaultVec.([]float32) + if !ok { + return fmt.Errorf("vector %s has to be a float32 array", modelsext.DefaultNamedVectorName) + } + incomingObject.Vector = vec + delete(incomingObject.Vectors, modelsext.DefaultNamedVectorName) + } + + if !modelsext.ClassHasLegacyVectorIndex(class) && len(incomingObject.Vector) > 0 { + // if there is only one named vector we can assume that the single vector + if len(class.VectorConfig) == 1 { + namedVectorName := "" + for key := range class.VectorConfig { + namedVectorName = key + } + var vector []float32 + if len(incomingObject.Vector) > 0 { + vector = make([]float32, len(incomingObject.Vector)) + copy(vector, incomingObject.Vector) + } + incomingObject.Vectors = map[string]models.Vector{namedVectorName: models.Vector(vector)} + incomingObject.Vector = nil + return nil + } + + return fmt.Errorf("collection %v configuration does not have single vector index", class.Class) + } + + var incomingTargetVectors []string + for name := range incomingObject.Vectors { + _, ok := class.VectorConfig[name] + if !ok { + return fmt.Errorf("collection %v does not have configuration for vector %s", class.Class, name) + } + + incomingTargetVectors = append(incomingTargetVectors, name) + } + + if len(class.VectorConfig) == 0 && len(incomingTargetVectors) > 0 { + return fmt.Errorf("collection %v is configured without multiple named vectors, but received named vectors: %v", class.Class, incomingTargetVectors) + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation_test.go b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation_test.go new file mode 100644 index 0000000000000000000000000000000000000000..dd823c9dad4a9bac75e2cc7db87d56aa250a3c3c --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/objects/validation/vector_validation_test.go @@ -0,0 +1,132 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package validation + +import ( + "context" + "testing" + + "github.com/go-openapi/strfmt" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/entities/additional" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/modelsext" +) + +func TestVectors(t *testing.T) { + specs := map[string]struct { + class *models.Class + obj *models.Object + objNew *models.Object + expErr bool + }{ + "multiple named vectors with 'old' vector": { + class: &models.Class{ + VectorConfig: map[string]models.VectorConfig{"first": {}, "second": {}, "third": {}}, // content does not matter + }, + obj: &models.Object{Vector: []float32{1, 2, 3}}, + expErr: true, + }, + "multiple named vectors with vectors": { + class: &models.Class{ + VectorConfig: map[string]models.VectorConfig{"first": {}, "second": {}, "third": {}}, // content does not matter + }, + obj: &models.Object{ + Vectors: models.Vectors{"first": []float32{1, 2, 3}}, + }, + expErr: false, + }, + "single named vectors with vector": { + class: &models.Class{ + VectorConfig: map[string]models.VectorConfig{"first": {}}, // content does not matter + }, + obj: &models.Object{Vector: []float32{1, 2, 3}}, + objNew: &models.Object{ + Vectors: models.Vectors{"first": []float32{1, 2, 3}}, + }, + expErr: false, + }, + "old vector with named vectors": { + class: &models.Class{ + VectorIndexConfig: models.VectorConfig{}, // content does not matter + }, + obj: &models.Object{ + Vectors: models.Vectors{"first": []float32{1, 2, 3}}, + }, + expErr: true, + }, + "non existent named vectors": { + class: &models.Class{ + VectorConfig: map[string]models.VectorConfig{"first": {}, "second": {}}, + }, + obj: &models.Object{ + Vectors: models.Vectors{"third": []float32{1, 2, 3}}, + }, + expErr: true, + }, + "mixed vectors": { + class: &models.Class{ + Vectorizer: "legacy", + VectorIndexType: "hnsw", + VectorConfig: map[string]models.VectorConfig{"first": {}, "second": {}}, + }, + obj: &models.Object{ + Vector: []float32{1, 2, 3}, + Vectors: models.Vectors{"first": []float32{1, 2, 3}, "second": []float32{4, 5, 6}}, + }, + expErr: false, + }, + "default vector set to legacy in mixed vector class": { + class: &models.Class{ + Vectorizer: "legacy", + VectorIndexType: "hnsw", + VectorConfig: map[string]models.VectorConfig{"first": {}, "second": {}}, + }, + obj: &models.Object{ + Vectors: models.Vectors{"first": []float32{1, 2, 3}, "second": []float32{4, 5, 6}, modelsext.DefaultNamedVectorName: []float32{7, 8, 9}}, + }, + objNew: &models.Object{ + Vectors: models.Vectors{"first": []float32{1, 2, 3}, "second": []float32{4, 5, 6}}, + Vector: []float32{7, 8, 9}, + }, + }, + "default vector not touched in named vector class": { + class: &models.Class{ + VectorConfig: map[string]models.VectorConfig{modelsext.DefaultNamedVectorName: {}}, + }, + obj: &models.Object{ + Vectors: models.Vectors{modelsext.DefaultNamedVectorName: []float32{1, 2, 3}}, + }, + objNew: &models.Object{ + Vectors: models.Vectors{modelsext.DefaultNamedVectorName: []float32{1, 2, 3}}, + }, + }, + } + for name, spec := range specs { + t.Run(name, func(t *testing.T) { + validator := &Validator{exists: func(_ context.Context, class string, _ strfmt.UUID, _ *additional.ReplicationProperties, _ string) (bool, error) { + return true, nil + }} + gotErr := validator.vector(context.Background(), spec.class, spec.obj) + + if spec.objNew != nil { + require.Equal(t, spec.objNew, spec.obj) + } + + if spec.expErr { + require.Error(t, gotErr) + return + } + require.NoError(t, gotErr) + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/aggregated_hashtree.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/aggregated_hashtree.go new file mode 100644 index 0000000000000000000000000000000000000000..79ac32edf9a97b639455a0573dcdef60a0546dd9 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/aggregated_hashtree.go @@ -0,0 +1,72 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import "io" + +type AggregatedHashTree interface { + Height() int + AggregateLeafWith(i uint64, val []byte) error + Sync() + Root() Digest + Level(level int, discriminant *Bitset, digests []Digest) (n int, err error) + Reset() + Clone() AggregatedHashTree + + Diff(ht AggregatedHashTree) (discriminant *Bitset, err error) + DiffUsing(ht AggregatedHashTree, discriminant *Bitset, digests1, digests2 []Digest) error + + NewRangeReader(discriminant *Bitset) AggregatedHashTreeRangeReader + + Serialize(w io.Writer) (n int64, err error) +} + +type AggregatedHashTreeRangeReader interface { + Next() (uint64, uint64, error) +} + +func LevelDiff(l int, discriminant *Bitset, digests1, digests2 []Digest) (levelDiffCount int) { + offset := InnerNodesCount(l) + + n := 0 + + for j := 0; j < nodesAtLevel(l); j++ { + node := offset + j + + if !discriminant.IsSet(node) { + continue + } + + if digests1[n] == digests2[n] { + n++ + discriminant.Unset(node) + continue + } else { + levelDiffCount++ + } + + n++ + + leftChild := 2*node + 1 + rightChild := 2*node + 2 + + if discriminant.Size() <= rightChild { + // node is a leaf + continue + } + + discriminant.Set(leftChild) + discriminant.Set(rightChild) + } + + return levelDiffCount +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset.go new file mode 100644 index 0000000000000000000000000000000000000000..ba1d03375344c6aac3f13893e9d25c1fb71112cc --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset.go @@ -0,0 +1,144 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "encoding/binary" + "fmt" +) + +type Bitset struct { + size int + bits []int64 + setCount int +} + +func NewBitset(size int) *Bitset { + return &Bitset{ + size: size, + bits: make([]int64, (size+63)/64), + } +} + +func (bset *Bitset) Size() int { + return bset.size +} + +func (bset *Bitset) Set(i int) *Bitset { + if bset.IsSet(i) { + return bset + } + + bset.bits[i/64] |= 1 << (i % 64) + bset.setCount++ + + return bset +} + +func (bset *Bitset) Unset(i int) *Bitset { + if !bset.IsSet(i) { + return bset + } + + bset.bits[i/64] &= ^(1 << (i % 64)) + bset.setCount-- + + return bset +} + +func (bset *Bitset) IsSet(i int) bool { + if bset.size <= i { + panic("index out of range") + } + + return bset.bits[i/64]&(1<<(i%64)) != 0 +} + +func (bset *Bitset) AllSet() bool { + return bset.SetCount() == bset.size +} + +func (bset *Bitset) SetCount() int { + return bset.setCount +} + +func (bset *Bitset) SetAll() *Bitset { + for i := 0; i < len(bset.bits); i++ { + bset.bits[i] = -1 + } + + bset.setCount = bset.size + + return bset +} + +func (bset *Bitset) Reset() *Bitset { + for i := 0; i < len(bset.bits); i++ { + bset.bits[i] = 0 + } + + bset.setCount = 0 + + return bset +} + +func (bset *Bitset) Marshal() ([]byte, error) { + b := make([]byte, 8+8*len(bset.bits)) + + binary.BigEndian.PutUint32(b, uint32(bset.size)) + binary.BigEndian.PutUint32(b[4:], uint32(bset.setCount)) + + off := 8 + for _, n := range bset.bits { + binary.BigEndian.PutUint64(b[off:], uint64(n)) + off += 8 + } + + return b, nil +} + +func (bset *Bitset) Unmarshal(b []byte) error { + if len(b) < 8 { + return fmt.Errorf("invalid bset serialization") + } + + bset.size = int(binary.BigEndian.Uint32(b)) + bset.setCount = int(binary.BigEndian.Uint32(b[4:])) + + n := (bset.size + 63) / 64 + + if len(b) != 8+n*8 { + return fmt.Errorf("invalid bset serialization") + } + + bset.bits = make([]int64, n) + + off := 8 + for i := 0; i < n; i++ { + bset.bits[i] = int64(binary.BigEndian.Uint64(b[off:])) + off += 8 + } + + return nil +} + +func (bset *Bitset) Clone() *Bitset { + clone := &Bitset{ + size: bset.size, + bits: make([]int64, len(bset.bits)), + setCount: bset.setCount, + } + + copy(clone.bits, bset.bits) + + return clone +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset_test.go new file mode 100644 index 0000000000000000000000000000000000000000..9650b714a81a3b58e472ab19cdfdae775a38b82b --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/bitset_test.go @@ -0,0 +1,55 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "testing" + + "github.com/stretchr/testify/require" +) + +func TestBitSet(t *testing.T) { + bsetSize := 2 << 15 + + bset := NewBitset(bsetSize) + + require.Zero(t, bset.SetCount()) + + for i := 0; i < bsetSize; i++ { + require.False(t, bset.IsSet(i)) + } + + require.False(t, bset.AllSet()) + + for i := 0; i < bsetSize; i++ { + bset.Set(i) + require.True(t, bset.IsSet(i)) + } + + require.True(t, bset.AllSet()) + require.Equal(t, bsetSize, bset.SetCount()) + + bset.Reset() + require.Zero(t, bset.SetCount()) + + require.Panics(t, func() { + bset.IsSet(bsetSize) + }) + + require.Panics(t, func() { + bset.Set(bsetSize) + }) + + require.Panics(t, func() { + bset.Unset(bsetSize) + }) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree.go new file mode 100644 index 0000000000000000000000000000000000000000..b643e92ab6184f5a416e5fa942f715fbb02d7e94 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree.go @@ -0,0 +1,155 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import "fmt" + +var _ AggregatedHashTree = (*CompactHashTree)(nil) + +type CompactHashTree struct { + capacity uint64 + hashtree AggregatedHashTree + + // derived values from capacity and hashtree height + // kept here just to avoid recalculation + leavesCount int + groupSize uint64 + extendedGroupSize uint64 + extendedGroupsCount int + leavesCountInExtendedGroups uint64 +} + +func NewCompactHashTree(capacity uint64, maxHeight int) (*CompactHashTree, error) { + height := requiredHeight(capacity) + + if height > maxHeight { + height = maxHeight + } + + ht, err := NewHashTree(height) + if err != nil { + return nil, err + } + + return newCompactHashTree(capacity, ht) +} + +func newCompactHashTree(capacity uint64, underlyingHashTree AggregatedHashTree) (*CompactHashTree, error) { + if capacity < 1 { + return nil, fmt.Errorf("%w: illegal capacity", ErrIllegalArguments) + } + + if underlyingHashTree == nil { + return nil, fmt.Errorf("%w: illegal underlying hashtree", ErrIllegalArguments) + } + + requiredHeight := requiredHeight(capacity) + if requiredHeight < underlyingHashTree.Height() { + return nil, fmt.Errorf("%w: underlying hashtree height is bigger than required", ErrIllegalArguments) + } + + leavesCount := LeavesCount(underlyingHashTree.Height()) + groupSize := capacity / uint64(leavesCount) + extendedGroupSize := groupSize + 1 + extendedGroupsCount := int(capacity % uint64(leavesCount)) + leavesCountInExtendedGroups := uint64(extendedGroupsCount) * extendedGroupSize + + return &CompactHashTree{ + capacity: capacity, + hashtree: underlyingHashTree, + + leavesCount: leavesCount, + groupSize: groupSize, + extendedGroupSize: extendedGroupSize, + extendedGroupsCount: extendedGroupsCount, + leavesCountInExtendedGroups: leavesCountInExtendedGroups, + }, nil +} + +func (ht *CompactHashTree) Capacity() uint64 { + return ht.capacity +} + +func (ht *CompactHashTree) Height() int { + return ht.hashtree.Height() +} + +// AggregateLeafWith aggregates a new value into a shared leaf +// Each compacted leaf is shared by a number of consecutive leaves +func (ht *CompactHashTree) AggregateLeafWith(i uint64, val []byte) error { + return ht.hashtree.AggregateLeafWith(ht.mapLeaf(i), val) +} + +func (ht *CompactHashTree) mapLeaf(i uint64) uint64 { + if i >= ht.capacity { + panic("out of capacity") + } + + if i < ht.leavesCountInExtendedGroups { + return i / ht.extendedGroupSize + } else { + return (i - uint64(ht.extendedGroupsCount)) / ht.groupSize + } +} + +func (ht *CompactHashTree) unmapLeaf(mappedLeaf uint64) uint64 { + if mappedLeaf < uint64(ht.extendedGroupsCount) { + return mappedLeaf * ht.extendedGroupSize + } + + return mappedLeaf*ht.groupSize + uint64(ht.extendedGroupsCount) +} + +func (ht *CompactHashTree) Sync() { + ht.hashtree.Sync() +} + +func (ht *CompactHashTree) Root() Digest { + return ht.hashtree.Root() +} + +func (ht *CompactHashTree) Level(level int, discriminant *Bitset, digests []Digest) (n int, err error) { + return ht.hashtree.Level(level, discriminant, digests) +} + +func (ht *CompactHashTree) Reset() { + ht.hashtree.Reset() +} + +func (ht *CompactHashTree) Clone() AggregatedHashTree { + clone := &CompactHashTree{ + capacity: ht.capacity, + hashtree: ht.hashtree.Clone(), + + leavesCount: ht.leavesCount, + groupSize: ht.groupSize, + extendedGroupSize: ht.extendedGroupSize, + extendedGroupsCount: ht.extendedGroupsCount, + leavesCountInExtendedGroups: ht.leavesCountInExtendedGroups, + } + + return clone +} + +func requiredHeight(n uint64) int { + if n == 1 { + return 0 + } + + h := 1 + + for n = n - 1; n > 0; h++ { + n = n >> 1 + } + + return h +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_diff.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_diff.go new file mode 100644 index 0000000000000000000000000000000000000000..a558a42e4356b1fab5ef09feec6e491d60cd0b8f --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_diff.go @@ -0,0 +1,32 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +func (ht *CompactHashTree) Diff(ht2 AggregatedHashTree) (discriminant *Bitset, err error) { + cht2, isCompactHashTree := ht2.(*CompactHashTree) + + if ht2 == nil || !isCompactHashTree { + return nil, ErrIllegalArguments + } + + return ht.hashtree.Diff(cht2.hashtree) +} + +func (ht *CompactHashTree) DiffUsing(ht2 AggregatedHashTree, discriminant *Bitset, digests1, digests2 []Digest) error { + cht2, isCompactHashTree := ht2.(*CompactHashTree) + + if ht2 == nil || !isCompactHashTree { + return ErrIllegalArguments + } + + return ht.hashtree.DiffUsing(cht2.hashtree, discriminant, digests1, digests2) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_range_reader.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_range_reader.go new file mode 100644 index 0000000000000000000000000000000000000000..8fa43019ffe2b70badbcdfe3ed5930f988ba9100 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_range_reader.go @@ -0,0 +1,41 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +type CompactHashTreeDiffReader struct { + ht *CompactHashTree + rangeReader AggregatedHashTreeRangeReader +} + +func (ht *CompactHashTree) NewRangeReader(discriminant *Bitset) AggregatedHashTreeRangeReader { + return &CompactHashTreeDiffReader{ + ht: ht, + rangeReader: ht.hashtree.NewRangeReader(discriminant), + } +} + +func (r *CompactHashTreeDiffReader) Next() (uint64, uint64, error) { + mappedLeaf0, mappedLeaf1, err := r.rangeReader.Next() + if err != nil { + return 0, 0, err + } + + var groupSize uint64 + + if mappedLeaf1 < uint64(r.ht.extendedGroupsCount) { + groupSize = r.ht.extendedGroupSize + } else { + groupSize = r.ht.groupSize + } + + return r.ht.unmapLeaf(mappedLeaf0), r.ht.unmapLeaf(mappedLeaf1) + groupSize - 1, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization.go new file mode 100644 index 0000000000000000000000000000000000000000..3cba714f1cecf37f1a4a61c75f2fa408a8468f00 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization.go @@ -0,0 +1,100 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "bytes" + "encoding/binary" + "fmt" + "io" + + "github.com/spaolacci/murmur3" +) + +const ( + compactHashTreeMagicNumber uint32 = 0xD2D2D2D2 + compactHashtreeVersion byte = 1 + + // magicnumber version capacity checksum + compactHashtreeHeaderLength int = 4 + 1 + 8 + DigestLength +) + +func (ht *CompactHashTree) Serialize(w io.Writer) (n int64, err error) { + var hdr [compactHashtreeHeaderLength]byte + + hdrOff := 0 + + binary.BigEndian.PutUint32(hdr[hdrOff:], compactHashTreeMagicNumber) + hdrOff += 4 + + hdr[hdrOff] = compactHashtreeVersion + hdrOff++ + + binary.BigEndian.PutUint64(hdr[hdrOff:], uint64(ht.capacity)) + hdrOff += 8 + + checksum := murmur3.New128().Sum(hdr[:hdrOff]) + copy(hdr[hdrOff:hdrOff+DigestLength], checksum) + + n1, err := w.Write(hdr[:]) + if err != nil { + return int64(n1), err + } + + n = int64(n1) + + n2, err := ht.hashtree.Serialize(w) + if err != nil { + return n + n2, err + } + + n += n2 + + return n, nil +} + +func DeserializeCompactHashTree(r io.Reader) (*CompactHashTree, error) { + var hdr [compactHashtreeHeaderLength]byte + + _, err := io.ReadFull(r, hdr[:]) + if err != nil { + return nil, err + } + + hdrOff := 0 + + magicNumber := binary.BigEndian.Uint32(hdr[hdrOff:]) + if magicNumber != compactHashTreeMagicNumber { + return nil, fmt.Errorf("compact hashtree magic number mismatch") + } + hdrOff += 4 + + if hdr[hdrOff] != compactHashtreeVersion { + return nil, fmt.Errorf("unsupported version %d, expected version %d", hdr[0], compactHashtreeVersion) + } + hdrOff++ + + capacity := binary.BigEndian.Uint64(hdr[hdrOff:]) + hdrOff += 8 + + checksum := murmur3.New128().Sum(hdr[:hdrOff]) + if bytes.Equal(hdr[:hdrOff], checksum) { + return nil, fmt.Errorf("header checksum mismatch") + } + + hashtree, err := DeserializeHashTree(r) + if err != nil { + return nil, err + } + + return newCompactHashTree(capacity, hashtree) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization_test.go new file mode 100644 index 0000000000000000000000000000000000000000..b890b19ba39672280f74520f9ff26bb79e129783 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_serialization_test.go @@ -0,0 +1,53 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "bytes" + "fmt" + "math" + "testing" + + "github.com/stretchr/testify/require" +) + +func TestCompactHashTreeSerialization(t *testing.T) { + capacity := uint64(math.MaxUint64) + + for h := 0; h < 10; h++ { + ht, err := NewCompactHashTree(capacity, h) + require.NoError(t, err) + + require.Equal(t, h, ht.Height()) + + leavesCount := LeavesCount(ht.Height()) + valuePrefix := "somevalue" + + for i := 0; i < leavesCount; i++ { + err = ht.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("%s%d", valuePrefix, i))) + require.NoError(t, err) + } + + var buf bytes.Buffer + + _, err = ht.Serialize(&buf) + require.NoError(t, err) + + readBuf := bytes.NewBuffer(buf.Bytes()) + + ht1, err := DeserializeCompactHashTree(readBuf) + require.NoError(t, err) + require.Equal(t, ht.Capacity(), ht1.Capacity()) + require.Equal(t, ht.Height(), ht1.Height()) + require.Equal(t, ht.Root(), ht1.Root()) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_test.go new file mode 100644 index 0000000000000000000000000000000000000000..fc36dcddbaa34519ed351ef9af4a9af3e57221fa --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/compact_hashtree_test.go @@ -0,0 +1,297 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "errors" + "fmt" + "math" + "math/rand" + "testing" + + "github.com/spaolacci/murmur3" + "github.com/stretchr/testify/require" +) + +func TestCompactHashTree(t *testing.T) { + capacity := uint64(1) + maxHeight := 2 + expectedHeight := 0 + + ht, err := NewCompactHashTree(capacity, maxHeight) + require.NoError(t, err) + + require.Equal(t, expectedHeight, ht.Height()) + + someValue := []byte("somevalue") + + err = ht.AggregateLeafWith(0, someValue) + require.NoError(t, err) + + var rootLevel [1]Digest + + n, err := ht.Level(0, NewBitset(NodesCount(ht.Height())).Set(0), rootLevel[:]) + require.NoError(t, err) + require.Equal(t, 1, n) + + h := murmur3.New128() + h.Write(someValue) + expectedRootH1, expectedRootH2 := h.Sum128() + expectedRoot := Digest{expectedRootH1, expectedRootH2} + + require.Equal(t, expectedRoot, rootLevel[0]) +} + +func TestCompactedHashTree(t *testing.T) { + capacity := 1024 + maxHeight := 6 + expectedHeight := 6 + + ht, err := NewCompactHashTree(uint64(capacity), maxHeight) + require.NoError(t, err) + + require.Equal(t, expectedHeight, ht.Height()) + + valuePrefix := "somevalue" + + for i := 0; i < capacity; i++ { + err = ht.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("%s%d", valuePrefix, i))) + require.NoError(t, err) + } +} + +func TestCompactBigHashTree(t *testing.T) { + capacity := uint64(math.MaxUint64 / 128) + maxHeight := 10 + expectedHeight := 10 + + ht, err := NewCompactHashTree(capacity, maxHeight) + require.NoError(t, err) + + require.Equal(t, expectedHeight, ht.Height()) + + actualNumberOfElements := 10_000 + + valuePrefix := "somevalue" + + for i := 0; i < actualNumberOfElements; i++ { + err = ht.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("%s%d", valuePrefix, i))) + require.NoError(t, err) + } + + var rootLevel [1]Digest + + n, err := ht.Level(0, NewBitset(ht.Height()).Set(0), rootLevel[:]) + require.NoError(t, err) + require.Equal(t, 1, n) +} + +func TestCompactHashTreeComparisonHeight1(t *testing.T) { + capacity := uint64(math.MaxUint64 / 128) + maxHeight := 12 + + ht1, err := NewCompactHashTree(capacity, maxHeight) + require.NoError(t, err) + + ht2, err := NewCompactHashTree(capacity, maxHeight) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) + + err = ht1.AggregateLeafWith(16, []byte("val1")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + diff1, diff2, err := rangeReader.Next() + require.NoError(t, err) + require.EqualValues(t, 0, diff1) + require.EqualValues(t, capacity/uint64(LeavesCount(ht1.Height())), diff2) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) + + err = ht2.AggregateLeafWith(0, []byte("val1")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) +} + +func TestCompactHashTreeLeafMapping(t *testing.T) { + capacity := uint64(10_000) + maxHeight := 11 + + ht, err := NewCompactHashTree(capacity, maxHeight) + require.NoError(t, err) + + require.True(t, ht.Height() <= maxHeight) + require.Equal(t, LeavesCount(ht.Height()), ht.leavesCount) + require.True(t, uint64(ht.leavesCount) <= capacity) + + var prevMappedLeaf uint64 + + for l := uint64(0); l < capacity; l++ { + ml := ht.mapLeaf(l) + require.True(t, uint64(ml) <= l) + require.True(t, ml <= uint64(ht.leavesCount)) + + if l > 0 { + require.True(t, prevMappedLeaf <= ml) + } + + uml := ht.unmapLeaf(ml) + require.True(t, uml <= capacity) + require.True(t, uml <= l) + + var groupSize uint64 + + if l < ht.leavesCountInExtendedGroups { + groupSize = ht.extendedGroupSize + } else { + groupSize = ht.groupSize + } + + require.True(t, l <= uml+groupSize) + + for i := uml; i < l; i++ { + // i should be mapped to the same leaf + require.Equal(t, ml, ht.mapLeaf(i)) + } + + for i := l; i < uml+groupSize; i++ { + // i should be mapped to the same leaf + require.Equal(t, ml, ht.mapLeaf(i)) + } + + if uml+groupSize < capacity { + // uml+groupSize should be assigned to the next leaf + nextLeaf := ht.mapLeaf(uml + groupSize) + require.Equal(t, ml+1, nextLeaf) + } + + prevMappedLeaf = ml + } +} + +func TestCompactHashTreeComparisonIncrementalConciliation(t *testing.T) { + capacity := 1_000 + maxHeight := 7 + + ht1, err := NewCompactHashTree(uint64(capacity), maxHeight) + require.NoError(t, err) + + ht2, err := NewCompactHashTree(uint64(capacity), maxHeight) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found + + for i := 0; i < capacity; i++ { + err = ht1.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("val1_%d", i))) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("val2_%d", i))) + require.NoError(t, err) + } + + conciliated := make(map[int]struct{}) + concilliationOrder := rand.Perm(capacity) + + var prevDiffCount int + var diffCount int + + for _, i := range concilliationOrder { + _, ok := conciliated[i] + require.False(t, ok) + + err = ht1.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("val2_%d", i))) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("val1_%d", i))) + require.NoError(t, err) + + conciliated[i] = struct{}{} + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader := ht1.NewRangeReader(diff) + + diffCount = 0 + + var prevDiff uint64 + + for { + diff0, diff1, err := rangeReader.Next() + if errors.Is(err, ErrNoMoreRanges) { + break + } + require.NoError(t, err) + require.LessOrEqual(t, diff0, diff1) + require.LessOrEqual(t, prevDiff, diff1) + + if prevDiff > 0 { + require.Less(t, prevDiff, diff0) + + for d := prevDiff + 1; d < diff0; d++ { + _, ok := conciliated[int(d)] + require.True(t, ok) + } + } + + var diffFound bool + + for d := diff0; d <= diff1; d++ { + _, ok := conciliated[int(d)] + if !ok { + diffCount++ + diffFound = true + } + } + + require.True(t, diffFound) + + prevDiff = diff1 + } + + // pending differences + if prevDiffCount > 0 { + require.Less(t, diffCount, prevDiffCount) + } + + prevDiffCount = diffCount + } + + require.Zero(t, diffCount) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest.go new file mode 100644 index 0000000000000000000000000000000000000000..1c07d4e3800dbd65f0ee9c1ac0ebaa74d1f961b3 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest.go @@ -0,0 +1,62 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "encoding/binary" + "encoding/json" + "fmt" +) + +const DigestLength int = 16 + +type Digest [2]uint64 + +func (d *Digest) MarshalBinary() ([]byte, error) { + var bs [DigestLength]byte + + binary.BigEndian.PutUint64(bs[:], d[0]) + binary.BigEndian.PutUint64(bs[8:], d[1]) + + return bs[:], nil +} + +func (d *Digest) UnmarshalBinary(bs []byte) error { + if len(bs) != DigestLength { + return fmt.Errorf("invalid Digest serialization") + } + + d[0] = binary.BigEndian.Uint64(bs[:]) + d[1] = binary.BigEndian.Uint64(bs[8:]) + + return nil +} + +func (d *Digest) MarshalJSON() ([]byte, error) { + b, err := d.MarshalBinary() + if err != nil { + return nil, err + } + + return json.Marshal(b) +} + +func (d *Digest) UnmarshalJSON(b []byte) error { + var bs []byte + + err := json.Unmarshal(b, &bs) + if err != nil { + return err + } + + return d.UnmarshalBinary(bs) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest_test.go new file mode 100644 index 0000000000000000000000000000000000000000..f96e380584d37edda1ccaabd348a592925345cfc --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/digest_test.go @@ -0,0 +1,40 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "testing" + + "github.com/spaolacci/murmur3" + "github.com/stretchr/testify/require" +) + +func TestDigestMarshallingUnmarshalling(t *testing.T) { + var d1 Digest + + hash := murmur3.New128() + + _, err := hash.Write([]byte("hashtree")) + require.NoError(t, err) + + d1[0], d1[1] = hash.Sum128() + + var d2 Digest + + b, err := d1.MarshalJSON() + require.NoError(t, err) + + err = d2.UnmarshalJSON(b) + require.NoError(t, err) + + require.Equal(t, d1, d2) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree.go new file mode 100644 index 0000000000000000000000000000000000000000..b80026a285ab2f575b703796c1b91253fa82c0c0 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree.go @@ -0,0 +1,242 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + "sync" + + "github.com/spaolacci/murmur3" +) + +var ( + ErrIllegalArguments = errors.New("illegal arguments") + ErrIllegalState = errors.New("illegal state") +) + +var _ AggregatedHashTree = (*HashTree)(nil) + +// HashTree is a fixed-size hash tree with leaf aggregation and partial root recalculation. +type HashTree struct { + height int + + nodes []Digest + + // syncState is a bit-tree of the same height as the associated hash tree + // a zeroed bit in the associated node means the current value has changed since + // previous root computation and thus, its parent node must be re-åcalculated + syncState *Bitset + + hash murmur3.Hash128 + + // pre-calculated value + innerNodesCount int + + mux sync.Mutex +} + +func NewHashTree(height int) (*HashTree, error) { + if height < 0 { + return nil, fmt.Errorf("%w: illegal height", ErrIllegalArguments) + } + + nodesCount := NodesCount(height) + innerNodesCount := InnerNodesCount(height) + + return &HashTree{ + height: height, + nodes: make([]Digest, nodesCount), + syncState: NewBitset(nodesCount), + hash: murmur3.New128(), + innerNodesCount: innerNodesCount, + }, nil +} + +func NodesCount(height int) int { + return (1 << (height + 1)) - 1 +} + +func InnerNodesCount(height int) int { + return 1<= len(ht.nodes) { + return fmt.Errorf("leaf out of bounds") + } + + // XOR with current leaf digest + ht.nodes[leaf][0] ^= valh1 + ht.nodes[leaf][1] ^= valh2 + + ht.syncState.Unset(leaf) // sync required + ht.syncState.Unset(0) // used to quickly determine if some sync required + + return nil +} + +func (ht *HashTree) Reset() { + ht.mux.Lock() + defer ht.mux.Unlock() + + for i := 0; i < len(ht.nodes); i++ { + ht.nodes[i][0] = 0 + ht.nodes[i][1] = 0 + } + + ht.syncState.Reset() +} + +func (ht *HashTree) syncRequired(node int) bool { + return !ht.syncState.IsSet(node) +} + +func writeDigest(w io.Writer, d Digest) { + var b [16]byte + binary.BigEndian.PutUint64(b[:], d[0]) + binary.BigEndian.PutUint64(b[8:], d[1]) + w.Write(b[:]) +} + +func (ht *HashTree) Sync() { + ht.mux.Lock() + defer ht.mux.Unlock() + + ht.sync() +} + +func (ht *HashTree) sync() { + if !ht.syncRequired(0) { + return + } + + // calculate the hash tree up to the root + + for l := ht.height - 1; l >= 0; l-- { + firstNode := InnerNodesCount(l) + + // iterate over the nodes at level l + for i := 0; i < nodesAtLevel(l); i++ { + node := firstNode + i + leftChild := node*2 + 1 + rightChild := node*2 + 2 + + if !ht.syncRequired(leftChild) && !ht.syncRequired(rightChild) { + // none of its children has been updated since last synchronization + continue + } + + ht.hash.Reset() + writeDigest(ht.hash, ht.nodes[leftChild]) + writeDigest(ht.hash, ht.nodes[rightChild]) + leftH, rightH := ht.hash.Sum128() + + ht.nodes[node][0] = leftH + ht.nodes[node][1] = rightH + + ht.syncState.Set(leftChild) + ht.syncState.Set(rightChild) + + ht.syncState.Unset(node) + } + } + + ht.syncState.Set(0) // no sync is required +} + +func (ht *HashTree) Root() Digest { + ht.mux.Lock() + defer ht.mux.Unlock() + + return ht.root() +} + +func (ht *HashTree) root() Digest { + ht.sync() + return ht.nodes[0] +} + +func (ht *HashTree) Level(level int, discriminant *Bitset, digests []Digest) (n int, err error) { + ht.mux.Lock() + defer ht.mux.Unlock() + + if level < 0 { + return 0, fmt.Errorf("%w: invalid level(%d)", ErrIllegalArguments, level) + } + + if level > ht.Height() { + return 0, fmt.Errorf("%w: level(%d) is too high for current height(%d)", ErrIllegalState, level, ht.height) + } + + if discriminant == nil { + return 0, fmt.Errorf("%w: nil discriminant provided", ErrIllegalArguments) + } + + if len(digests) < nodesAtLevel(level) { + return 0, fmt.Errorf("%w: output buffer has not enough capacity", ErrIllegalArguments) + } + + ht.sync() + + offset := InnerNodesCount(level) + + // TODO(jeroiraz): it may be more performant to iterate over the set positions in the discriminant + for i := 0; i < nodesAtLevel(level); i++ { + if discriminant.IsSet(offset + i) { + digests[n] = ht.nodes[offset+i] + n++ + } + } + + return n, nil +} + +func (ht *HashTree) Clone() AggregatedHashTree { + ht.mux.Lock() + defer ht.mux.Unlock() + + clone := &HashTree{ + height: ht.height, + nodes: make([]Digest, len(ht.nodes)), + syncState: ht.syncState.Clone(), + hash: murmur3.New128(), + innerNodesCount: ht.innerNodesCount, + } + + copy(clone.nodes, ht.nodes) + + return clone +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_diff.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_diff.go new file mode 100644 index 0000000000000000000000000000000000000000..6ca51ce4fe4a1c2712319e34b4d94120fef5c5b6 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_diff.go @@ -0,0 +1,83 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import "fmt" + +func (ht *HashTree) Diff(ht2 AggregatedHashTree) (discriminant *Bitset, err error) { + _, isHashTree := ht2.(*HashTree) + + if ht2 == nil || !isHashTree { + return nil, ErrIllegalArguments + } + + if ht.Height() != ht2.Height() { + return nil, fmt.Errorf("%w: hash trees of different heights are non-comparable", ErrIllegalArguments) + } + + // init for comparison + discriminant = NewBitset(NodesCount(ht.Height())) + + leavesCount := LeavesCount(ht.Height()) + digests1 := make([]Digest, leavesCount) + digests2 := make([]Digest, leavesCount) + + err = ht.DiffUsing(ht2, discriminant, digests1, digests2) + if err != nil { + return nil, err + } + + return discriminant, nil +} + +func (ht *HashTree) DiffUsing(ht2 AggregatedHashTree, discriminant *Bitset, digests1, digests2 []Digest) error { + _, isHashTree := ht2.(*HashTree) + + if ht2 == nil || !isHashTree { + return ErrIllegalArguments + } + + if discriminant == nil { + return ErrIllegalArguments + } + + if ht.Height() != ht2.Height() { + return fmt.Errorf("%w: hash trees of different heights are non-comparable", ErrIllegalArguments) + } + + if discriminant.Size() != NodesCount(ht.Height()) { + return fmt.Errorf("%w: diff bitset size should mismatch", ErrIllegalArguments) + } + + discriminant.Reset().Set(0) // init comparison at root level + + for l := 0; l <= ht.Height(); l++ { + _, err := ht.Level(l, discriminant, digests1) + if err != nil { + return err + } + + _, err = ht2.Level(l, discriminant, digests2) + if err != nil { + return err + } + + LevelDiff(l, discriminant, digests1, digests2) + + if discriminant.SetCount() == 0 { + // no difference found + break + } + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_range_reader.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_range_reader.go new file mode 100644 index 0000000000000000000000000000000000000000..5ca509bdf56e6bbeadaa768919adf04ca17e336c --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_range_reader.go @@ -0,0 +1,52 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import "errors" + +var ErrNoMoreRanges = errors.New("no more ranges") + +type HashTreeDiffReader struct { + discriminant *Bitset + firstLeafPos int + pos int +} + +func (ht *HashTree) NewRangeReader(discriminant *Bitset) AggregatedHashTreeRangeReader { + if discriminant == nil || discriminant.Size() != NodesCount(ht.Height()) { + panic("illegal discriminant") + } + + firstLeafPos := NodesCount(ht.Height() - 1) + + return &HashTreeDiffReader{ + discriminant: discriminant, + firstLeafPos: firstLeafPos, + pos: firstLeafPos, + } +} + +func (r *HashTreeDiffReader) Next() (uint64, uint64, error) { + for ; r.pos < r.discriminant.Size() && !r.discriminant.IsSet(r.pos); r.pos++ { + } + + if r.pos == r.discriminant.Size() { + return 0, 0, ErrNoMoreRanges + } + + pos0 := r.pos + + for ; r.pos < r.discriminant.Size() && r.discriminant.IsSet(r.pos); r.pos++ { + } + + return uint64(pos0 - r.firstLeafPos), uint64(r.pos - 1 - r.firstLeafPos), nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization.go new file mode 100644 index 0000000000000000000000000000000000000000..213b42e6f839099d13078b0daf3ac0a5cc8c4b67 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization.go @@ -0,0 +1,142 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "bytes" + "encoding/binary" + "fmt" + "io" + + "github.com/spaolacci/murmur3" +) + +const ( + hashTreeMagicNumber uint32 = 0xD1D1D1D1 + hashTreeVersion byte = 1 + + // magicnumber version height root checksum + hashTreeHeaderLength int = 4 + 1 + 4 + DigestLength + DigestLength +) + +func (ht *HashTree) Serialize(w io.Writer) (n int64, err error) { + ht.mux.Lock() + defer ht.mux.Unlock() + + var hdr [hashTreeHeaderLength]byte + + hdrOff := 0 + + binary.BigEndian.PutUint32(hdr[hdrOff:], hashTreeMagicNumber) + hdrOff += 4 + + hdr[hdrOff] = hashTreeVersion + hdrOff++ + + binary.BigEndian.PutUint32(hdr[hdrOff:], uint32(ht.height)) + hdrOff += 4 + + root := ht.root() + rootBs, err := root.MarshalBinary() + if err != nil { + return 0, err + } + copy(hdr[hdrOff:hdrOff+DigestLength], rootBs) + hdrOff += DigestLength + + checksum := murmur3.New128().Sum(hdr[:hdrOff]) + copy(hdr[hdrOff:hdrOff+DigestLength], checksum) + + n1, err := w.Write(hdr[:]) + if err != nil { + return int64(n1), err + } + + n = int64(n1) + + // Write leaves + for i := ht.innerNodesCount; i < len(ht.nodes); i++ { + nodeBs, err := ht.nodes[i].MarshalBinary() + if err != nil { + return n, err + } + + ni, err := w.Write(nodeBs) + if err != nil { + return n + int64(ni), err + } + + n += int64(ni) + } + + return n, nil +} + +func DeserializeHashTree(r io.Reader) (*HashTree, error) { + var hdr [hashTreeHeaderLength]byte + + _, err := io.ReadFull(r, hdr[:]) + if err != nil { + return nil, err + } + + hdrOff := 0 + + magicNumber := binary.BigEndian.Uint32(hdr[hdrOff:]) + if magicNumber != hashTreeMagicNumber { + return nil, fmt.Errorf("hashtree magic number mismatch") + } + hdrOff += 4 + + if hdr[hdrOff] != hashTreeVersion { + return nil, fmt.Errorf("unsupported version %d, expected version %d", hdr[0], hashTreeVersion) + } + hdrOff++ + + height := int(binary.BigEndian.Uint32(hdr[hdrOff:])) + hdrOff += 4 + + var root Digest + root.UnmarshalBinary(hdr[hdrOff : hdrOff+DigestLength]) + hdrOff += DigestLength + + checksum := murmur3.New128().Sum(hdr[:hdrOff]) + if bytes.Equal(hdr[:hdrOff], checksum) { + return nil, fmt.Errorf("header checksum mismatch") + } + + ht, err := NewHashTree(height) + if err != nil { + return nil, err + } + + for i := 0; i < LeavesCount(ht.Height()); i++ { + var leafBs [DigestLength]byte + + _, err := io.ReadFull(r, leafBs[:]) + if err != nil { + return nil, fmt.Errorf("reading leaf %d: %w", i, err) + } + + leafPos := ht.innerNodesCount + i + err = ht.nodes[leafPos].UnmarshalBinary(leafBs[:]) + if err != nil { + return nil, fmt.Errorf("unmarshalling leaf %d: %w", i, err) + } + } + + if root != ht.root() { + return nil, fmt.Errorf("root digest mismatch") + } + + return ht, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization_test.go new file mode 100644 index 0000000000000000000000000000000000000000..7b0f4fa40a771bf84b4ebeee4972d44c11c48568 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_serialization_test.go @@ -0,0 +1,49 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "bytes" + "fmt" + "testing" + + "github.com/stretchr/testify/require" +) + +func TestHashTreeSerialization(t *testing.T) { + for h := 1; h < 10; h++ { + ht, err := NewHashTree(h) + require.NoError(t, err) + + require.Equal(t, h, ht.Height()) + + leavesCount := LeavesCount(ht.Height()) + valuePrefix := "somevalue" + + for i := 0; i < leavesCount; i++ { + err = ht.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("%s%d", valuePrefix, i))) + require.NoError(t, err) + } + + var buf bytes.Buffer + + _, err = ht.Serialize(&buf) + require.NoError(t, err) + + readBuf := bytes.NewBuffer(buf.Bytes()) + + ht1, err := DeserializeHashTree(readBuf) + require.NoError(t, err) + require.Equal(t, ht.Height(), ht1.Height()) + require.Equal(t, ht.Root(), ht1.Root()) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_test.go b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_test.go new file mode 100644 index 0000000000000000000000000000000000000000..0226f931d1f98f46f8084751e3699f6d44f23775 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/replica/hashtree/hashtree_test.go @@ -0,0 +1,493 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hashtree + +import ( + "errors" + "fmt" + "math/rand" + "sync" + "testing" + + "github.com/spaolacci/murmur3" + "github.com/stretchr/testify/require" +) + +func TestIllegalHashTree(t *testing.T) { + _, err := NewHashTree(-1) + require.ErrorIs(t, err, ErrIllegalArguments) +} + +func TestSmallestHashTree(t *testing.T) { + height := 0 + + ht, err := NewHashTree(height) + require.NoError(t, err) + + require.Equal(t, height, ht.Height()) + + someValue := []byte("somevalue") + + err = ht.AggregateLeafWith(0, someValue) + require.NoError(t, err) + + var rootLevel [1]Digest + + n, err := ht.Level(0, NewBitset(NodesCount(height)).SetAll(), rootLevel[:]) + require.NoError(t, err) + require.Equal(t, 1, n) + + h := murmur3.New128() + h.Write(someValue) + expectedRootH1, expectedRootH2 := h.Sum128() + expectedRoot := Digest{expectedRootH1, expectedRootH2} + + require.Equal(t, expectedRoot, rootLevel[0]) +} + +func TestHashTree(t *testing.T) { + height := 1 + + ht, err := NewHashTree(height) + require.NoError(t, err) + + require.Equal(t, height, ht.Height()) + + leavesCount := LeavesCount(ht.Height()) + + someValues := [][]byte{ + []byte("somevalue1"), + []byte("somevalue2"), + } + + err = ht.AggregateLeafWith(0, someValues[0]) + require.NoError(t, err) + + err = ht.AggregateLeafWith(1, someValues[1]) + require.NoError(t, err) + + discriminant := NewBitset(NodesCount(height)).SetAll() + + digests := make([]Digest, leavesCount) + + n, err := ht.Level(1, discriminant, digests) + require.NoError(t, err) + require.Equal(t, 2, n) + + for i := 0; i < leavesCount; i++ { + h := murmur3.New128() + h.Write(someValues[i]) + expectedDigestH1, expectedDigestH2 := h.Sum128() + expectedDigest := Digest{expectedDigestH1, expectedDigestH2} + require.Equal(t, expectedDigest, digests[i]) + } + + h := murmur3.New128() + for i := 0; i < leavesCount; i++ { + writeDigest(h, digests[i]) + } + expectedRootH1, expectedRootH2 := h.Sum128() + expectedRoot := Digest{expectedRootH1, expectedRootH2} + + discriminant.Reset().Set(0) + + n, err = ht.Level(0, discriminant, digests) + require.NoError(t, err) + require.Equal(t, 1, n) + require.Equal(t, expectedRoot, digests[0]) +} + +func TestBigHashTree(t *testing.T) { + height := 10 + + ht, err := NewHashTree(height) + require.NoError(t, err) + + require.Equal(t, height, ht.Height()) + + leavesCount := LeavesCount(ht.Height()) + valuePrefix := "somevalue" + + for i := 0; i < leavesCount; i++ { + err := ht.AggregateLeafWith(uint64(i), []byte(fmt.Sprintf("%s%d", valuePrefix, i))) + require.NoError(t, err) + } + + var rootDigests [1]Digest + + n, err := ht.Level(0, NewBitset(NodesCount(height)).SetAll(), rootDigests[:]) + require.NoError(t, err) + require.Equal(t, 1, n) +} + +func TestHashTreeComparisonOneLeafAtATime(t *testing.T) { + height := 0 + + ht1, err := NewHashTree(height) + require.NoError(t, err) + + ht2, err := NewHashTree(height) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found + + for l := 0; l < LeavesCount(height); l++ { + err = ht1.AggregateLeafWith(uint64(l), []byte("val1")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(l), []byte("val2")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader := ht1.NewRangeReader(diff) + + diff0, diff1, err := rangeReader.Next() + require.NoError(t, err) + require.EqualValues(t, l, diff0) // leaf should differ + require.EqualValues(t, l, diff1) // leaf should differ + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no more differences should be found + + err = ht1.AggregateLeafWith(uint64(l), []byte("val2")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(l), []byte("val1")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found + } +} + +func TestHashTreeAllDiffInSingleIteration(t *testing.T) { + height := 8 + + ht1, err := NewHashTree(height) + require.NoError(t, err) + + ht2, err := NewHashTree(height) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) + + leavesCount := LeavesCount(height) + + for l := range leavesCount { + if l%2 == 0 { + err = ht1.AggregateLeafWith(uint64(l), fmt.Appendf(nil, "val_%d", l)) + require.NoError(t, err) + } else { + err = ht2.AggregateLeafWith(uint64(l), fmt.Appendf(nil, "val_%d", l)) + require.NoError(t, err) + } + } + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader = ht1.NewRangeReader(diff) + + i, j, err := rangeReader.Next() + require.NoError(t, err) + + require.Zero(t, i, 0) + require.EqualValues(t, leavesCount-1, j) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) +} + +func TestHashTreeComparisonIncrementalConciliation(t *testing.T) { + height := 7 + + ht1, err := NewHashTree(height) + require.NoError(t, err) + + ht2, err := NewHashTree(height) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found + + leavesCount := LeavesCount(height) + + for l := 0; l < leavesCount; l++ { + err = ht1.AggregateLeafWith(uint64(l), []byte("val1")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(l), []byte("val2")) + require.NoError(t, err) + } + + conciliated := make(map[int]struct{}) + concilliationOrder := rand.Perm(leavesCount) + + for _, l := range concilliationOrder { + _, ok := conciliated[l] + require.False(t, ok) + + err = ht1.AggregateLeafWith(uint64(l), []byte("val2")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(uint64(l), []byte("val1")) + require.NoError(t, err) + + conciliated[l] = struct{}{} + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader := ht1.NewRangeReader(diff) + + diffCount := 0 + + prevDiff := uint64(0) + + for { + diff0, diff1, err := rangeReader.Next() + if errors.Is(err, ErrNoMoreRanges) { + break + } + require.NoError(t, err) + require.LessOrEqual(t, diff0, diff1) + require.LessOrEqual(t, prevDiff, diff1) + + if prevDiff > 0 { + require.Less(t, prevDiff, diff0) + + for d := prevDiff + 1; d < diff0; d++ { + _, ok := conciliated[int(d)] + require.True(t, ok) + } + } + + for d := diff0; d <= diff1; d++ { + _, ok := conciliated[int(d)] + require.False(t, ok) + + diffCount++ + } + + prevDiff = diff1 + } + + // pending differences + require.Equal(t, leavesCount-len(conciliated), diffCount) + } +} + +func TestHashTreeComparisonHeight2(t *testing.T) { + height := 2 + + ht1, err := NewHashTree(height) + require.NoError(t, err) + + ht2, err := NewHashTree(height) + require.NoError(t, err) + + diff, err := ht1.Diff(ht2) + require.NoError(t, err) + require.NotNil(t, diff) + + rangeReader := ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found + + err = ht1.AggregateLeafWith(0, []byte("val11")) + require.NoError(t, err) + + err = ht1.AggregateLeafWith(1, []byte("val12")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(0, []byte("val21")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(1, []byte("val22")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + diff0, diff1, err := rangeReader.Next() + require.NoError(t, err) + require.EqualValues(t, 0, diff0) // leaf0 should differ + require.EqualValues(t, 1, diff1) // leaf1 should differ + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no more differences should be found + + err = ht1.AggregateLeafWith(0, []byte("val21")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(0, []byte("val11")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + diff0, diff1, err = rangeReader.Next() + require.NoError(t, err) + require.EqualValues(t, 1, diff0) // leaf1 should differ + require.EqualValues(t, 1, diff1) // leaf1 should differ + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no more differences should be found + + err = ht1.AggregateLeafWith(1, []byte("val22")) + require.NoError(t, err) + + err = ht2.AggregateLeafWith(1, []byte("val12")) + require.NoError(t, err) + + diff, err = ht1.Diff(ht2) + require.NoError(t, err) + + rangeReader = ht1.NewRangeReader(diff) + + _, _, err = rangeReader.Next() + require.ErrorIs(t, err, ErrNoMoreRanges) // no differences should be found +} + +func TestHashTreeRandomAggregationOrder(t *testing.T) { + maxHeight := 10 + + for h := 1; h < maxHeight; h++ { + var prevRoot Digest + + leavesCount := LeavesCount(h) + + insertionCount := 7 * leavesCount + + insertionAtLeaves := make([]int, insertionCount) + for i := 0; i < len(insertionAtLeaves); i++ { + insertionAtLeaves[i] = rand.Int() % leavesCount + } + + for it := 0; it < 3; it++ { + ht, err := NewHashTree(h) + require.NoError(t, err) + + valuePrefix := "somevalue" + + leavesUpdates := make([]int, leavesCount) + + for _, l := range rand.Perm(insertionCount) { + leaf := insertionAtLeaves[l] + + err := ht.AggregateLeafWith(uint64(leaf), []byte(fmt.Sprintf("%s%d", valuePrefix, leavesUpdates[leaf]))) + require.NoError(t, err) + + leavesUpdates[leaf]++ + } + + var rootDigests [1]Digest + + n, err := ht.Level(0, NewBitset(NodesCount(h)).SetAll(), rootDigests[:]) + require.NoError(t, err) + require.Equal(t, 1, n) + + if it == 0 { + prevRoot = rootDigests[0] + } + + require.Equal(t, prevRoot, rootDigests[0]) + } + + } +} + +func TestHashTreeConcurrentInsertions(t *testing.T) { + height := 9 + + leavesCount := LeavesCount(height) + + insertionAtLeaves := rand.Perm(leavesCount) + var prevRoot Digest + + ht, err := NewHashTree(height) + require.NoError(t, err) + + for it := 0; it < 3; it++ { + valuePrefix := "somevalue" + + insertionCh := make(chan int) + + var workersDone sync.WaitGroup + workersCount := 10 + workersDone.Add(workersCount) + + for w := 0; w < workersCount; w++ { + go func() { + for leaf := range insertionCh { + err := ht.AggregateLeafWith(uint64(leaf), []byte(fmt.Sprintf("%s%d", valuePrefix, leaf))) + require.NoError(t, err) + } + workersDone.Done() + }() + } + + for _, l := range insertionAtLeaves { + insertionCh <- insertionAtLeaves[l] + } + + close(insertionCh) + workersDone.Wait() + + var rootDigests [1]Digest + + n, err := ht.Level(0, NewBitset(height).SetAll(), rootDigests[:]) + require.NoError(t, err) + require.Equal(t, 1, n) + + if it == 0 { + prevRoot = rootDigests[0] + } + + require.Equal(t, prevRoot, rootDigests[0]) + + ht.Reset() + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/schema/migrate/fs/file_structure_migration.go b/platform/dbops/binaries/weaviate-src/usecases/schema/migrate/fs/file_structure_migration.go new file mode 100644 index 0000000000000000000000000000000000000000..c5c6b19c4e74757993450de40c20601c1b618083 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/schema/migrate/fs/file_structure_migration.go @@ -0,0 +1,288 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package fs + +import ( + "fmt" + "os" + "path" + "path/filepath" + "strings" + + "github.com/weaviate/weaviate/entities/models" + + "github.com/weaviate/weaviate/adapters/repos/db/helpers" + entschema "github.com/weaviate/weaviate/entities/schema" +) + +const vectorIndexCommitLog = `hnsw.commitlog.d` + +func MigrateToHierarchicalFS(rootPath string, s schemaReader) error { + root, err := os.ReadDir(rootPath) + if err != nil { + return fmt.Errorf("read source path %q: %w", rootPath, err) + } + fm, err := newFileMatcher(s, rootPath) + if err != nil { + return fmt.Errorf("error while migrating to hierarchical fs: %w", err) + } + plan, err := assembleFSMigrationPlan(root, rootPath, fm) + if err != nil { + return err + } + + for newRoot, parts := range plan.partsByShard { + for _, part := range parts { + newPath := path.Join(newRoot, part.newRelPath) + absDir, _ := filepath.Split(newPath) + if err := os.MkdirAll(absDir, os.ModePerm); err != nil { + return fmt.Errorf("mkdir %q: %w", absDir, err) + } + if err = os.Rename(part.oldAbsPath, newPath); err != nil { + return fmt.Errorf("mv %s %s: %w", part.oldAbsPath, newPath, err) + } + } + } + + return nil +} + +type migrationPart struct { + oldAbsPath string + newRelPath string +} + +type shardRoot = string + +type migrationPlan struct { + rootPath string + partsByShard map[shardRoot][]migrationPart +} + +func newMigrationPlan(rootPath string) *migrationPlan { + return &migrationPlan{rootPath: rootPath, partsByShard: make(map[string][]migrationPart)} +} + +func (p *migrationPlan) append(class, shard, oldRootRelPath, newShardRelPath string) { + shardRoot := path.Join(p.rootPath, strings.ToLower(class), shard) + p.partsByShard[shardRoot] = append(p.partsByShard[shardRoot], migrationPart{ + oldAbsPath: path.Join(p.rootPath, oldRootRelPath), + newRelPath: newShardRelPath, + }) +} + +func (p *migrationPlan) prepend(class, shard, oldRootRelPath, newShardRelPath string) { + shardRoot := path.Join(p.rootPath, strings.ToLower(class), shard) + p.partsByShard[shardRoot] = append([]migrationPart{{ + oldAbsPath: path.Join(p.rootPath, oldRootRelPath), + newRelPath: newShardRelPath, + }}, p.partsByShard[shardRoot]...) +} + +func assembleFSMigrationPlan(entries []os.DirEntry, rootPath string, fm *fileMatcher) (*migrationPlan, error) { + plan := newMigrationPlan(rootPath) + + for _, entry := range entries { + if ok, cs := fm.isShardLsmDir(entry); ok { + // make sure lsm dir is moved first, otherwise os.Rename may fail + // if directory already exists (created by other files/dirs moved before) + plan.prepend(cs.class, cs.shard, + entry.Name(), + "lsm") + } else if ok, cs, suffix := fm.isShardFile(entry); ok { + plan.append(cs.class, cs.shard, + entry.Name(), + suffix) + } else if ok, cs := fm.isShardCommitLogDir(entry); ok { + plan.append(cs.class, cs.shard, + entry.Name(), + fmt.Sprintf("main.%s", vectorIndexCommitLog)) + } else if ok, csp := fm.isShardGeoCommitLogDir(entry); ok { + plan.append(csp.class, csp.shard, + entry.Name(), + fmt.Sprintf("geo.%s.%s", csp.geoProp, vectorIndexCommitLog)) + } else if ok, css := fm.isPqDir(entry); ok { + for _, cs := range css { + plan.append(cs.class, cs.shard, + path.Join(strings.ToLower(entry.Name()), cs.shard, "compressed_objects"), + path.Join("lsm", helpers.VectorsCompressedBucketLSM)) + } + + // explicitly rename Class directory starting with uppercase to lowercase + // as MkdirAll will not create lowercased dir if uppercased one exists + oldClassRoot := path.Join(rootPath, entry.Name()) + newClassRoot := path.Join(rootPath, strings.ToLower(entry.Name())) + if err := os.Rename(oldClassRoot, newClassRoot); err != nil { + return nil, fmt.Errorf( + "rename pq index dir to avoid collision, old: %q, new: %q, err: %w", + oldClassRoot, newClassRoot, err) + } + } + } + return plan, nil +} + +type classShard struct { + class string + shard string +} + +type classShardGeoProp struct { + class string + shard string + geoProp string +} + +type fileMatcher struct { + rootPath string + shardLsmDirs map[string]*classShard + shardFilePrefixes map[string]*classShard + shardGeoDirPrefixes map[string]*classShardGeoProp + classes map[string][]*classShard +} + +type schemaReader interface { + Shards(class string) ([]string, error) + ReadOnlySchema() models.Schema +} + +func newFileMatcher(schemaReader schemaReader, rootPath string) (*fileMatcher, error) { + shardLsmDirs := make(map[string]*classShard) + shardFilePrefixes := make(map[string]*classShard) + shardGeoDirPrefixes := make(map[string]*classShardGeoProp) + classes := make(map[string][]*classShard) + + schema := schemaReader.ReadOnlySchema() + for _, class := range schema.Classes { + className := class.Class + shards, err := schemaReader.Shards(className) + if err != nil { + return nil, fmt.Errorf("unable to retrieve shards for class %s", className) + } + lowercasedClass := strings.ToLower(class.Class) + + var geoProps []string + for _, prop := range class.Properties { + if dt, ok := entschema.AsPrimitive(prop.DataType); ok && dt == entschema.DataTypeGeoCoordinates { + geoProps = append(geoProps, prop.Name) + } + } + + classes[class.Class] = make([]*classShard, 0, len(shards)) + for _, shard := range shards { + cs := &classShard{class: class.Class, shard: shard} + shardLsmDirs[fmt.Sprintf("%s_%s_lsm", lowercasedClass, shard)] = cs + shardFilePrefixes[fmt.Sprintf("%s_%s", lowercasedClass, shard)] = cs + classes[class.Class] = append(classes[class.Class], cs) + + for _, geoProp := range geoProps { + csp := &classShardGeoProp{class: class.Class, shard: shard, geoProp: geoProp} + shardGeoDirPrefixes[fmt.Sprintf("%s_%s_%s", lowercasedClass, shard, geoProp)] = csp + } + } + } + + return &fileMatcher{ + rootPath: rootPath, + shardLsmDirs: shardLsmDirs, + shardFilePrefixes: shardFilePrefixes, + shardGeoDirPrefixes: shardGeoDirPrefixes, + classes: classes, + }, nil +} + +// Checks if entry is directory with name (class is lowercased): +// class_shard_lsm +func (fm *fileMatcher) isShardLsmDir(entry os.DirEntry) (bool, *classShard) { + if !entry.IsDir() { + return false, nil + } + if cs, ok := fm.shardLsmDirs[entry.Name()]; ok { + return true, cs + } + return false, nil +} + +// Checks if entry is file with name (class is lowercased): +// class_shard.* +// (e.g. class_shard.version, class_shard.indexcount) +func (fm *fileMatcher) isShardFile(entry os.DirEntry) (bool, *classShard, string) { + if !entry.Type().IsRegular() { + return false, nil, "" + } + parts := strings.SplitN(entry.Name(), ".", 2) + if len(parts) != 2 { + return false, nil, "" + } + if cs, ok := fm.shardFilePrefixes[parts[0]]; ok { + return true, cs, parts[1] + } + return false, nil, "" +} + +// Checks if entry is directory with name (class is lowercased): +// class_shard.hnsw.commitlog.d +func (fm *fileMatcher) isShardCommitLogDir(entry os.DirEntry) (bool, *classShard) { + if !entry.IsDir() { + return false, nil + } + parts := strings.SplitN(entry.Name(), ".", 2) + if len(parts) != 2 { + return false, nil + } + if parts[1] != vectorIndexCommitLog { + return false, nil + } + if cs, ok := fm.shardFilePrefixes[parts[0]]; ok { + return true, cs + } + return false, nil +} + +// Checks if entry is directory with name (class is lowercased): +// class_shard_prop.hnsw.commitlog.d +func (fm *fileMatcher) isShardGeoCommitLogDir(entry os.DirEntry) (bool, *classShardGeoProp) { + if !entry.IsDir() { + return false, nil + } + parts := strings.SplitN(entry.Name(), ".", 2) + if len(parts) != 2 { + return false, nil + } + if parts[1] != vectorIndexCommitLog { + return false, nil + } + if csp, ok := fm.shardGeoDirPrefixes[parts[0]]; ok { + return true, csp + } + return false, nil +} + +// Checks if entry is directory containing PQ index: +// Class/shard/compressed_object +func (fm *fileMatcher) isPqDir(entry os.DirEntry) (bool, []*classShard) { + if !entry.IsDir() { + return false, nil + } + + resultcss := []*classShard{} + if css, ok := fm.classes[entry.Name()]; ok { + for _, cs := range css { + pqDir := path.Join(fm.rootPath, cs.class, cs.shard, "compressed_objects") + if info, err := os.Stat(pqDir); err == nil && info.IsDir() { + resultcss = append(resultcss, cs) + } + } + return true, resultcss + } + return false, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config.go b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config.go new file mode 100644 index 0000000000000000000000000000000000000000..122714726bd6c789744ff68d546468e611f1dc66 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config.go @@ -0,0 +1,192 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package config + +import ( + "encoding/json" + "fmt" + + "github.com/pkg/errors" +) + +const ( + DefaultVirtualPerPhysical = 128 + DefaultKey = "_id" + DefaultStrategy = "hash" + DefaultFunction = "murmur3" +) + +type Config struct { + VirtualPerPhysical int `json:"virtualPerPhysical"` + DesiredCount int `json:"desiredCount"` + ActualCount int `json:"actualCount"` + DesiredVirtualCount int `json:"desiredVirtualCount"` + ActualVirtualCount int `json:"actualVirtualCount"` + Key string `json:"key"` + Strategy string `json:"strategy"` + Function string `json:"function"` +} + +func (c *Config) setDefaults(nodeCount int) { + c.VirtualPerPhysical = DefaultVirtualPerPhysical + c.DesiredCount = nodeCount + c.DesiredVirtualCount = c.DesiredCount * c.VirtualPerPhysical + c.Function = DefaultFunction + c.Key = DefaultKey + c.Strategy = DefaultStrategy + + // these will only differ once there is an async component through replication + // or dynamic scaling. For now they have to be the same + c.ActualCount = c.DesiredCount + c.ActualVirtualCount = c.DesiredVirtualCount +} + +func (c *Config) validate() error { + if c.Key != "_id" { + return errors.Errorf("sharding only supported on key '_id' for now, "+ + "got: %s", c.Key) + } + + if c.Strategy != "hash" { + return errors.Errorf("sharding only supported with strategy 'hash' for now, "+ + "got: %s", c.Strategy) + } + + if c.Function != "murmur3" { + return errors.Errorf("sharding only supported with function 'murmur3' for now, "+ + "got: %s", c.Function) + } + + return nil +} + +func (c Config) DeepCopy() Config { + return Config{ + VirtualPerPhysical: c.VirtualPerPhysical, + DesiredCount: c.DesiredCount, + ActualCount: c.ActualCount, + DesiredVirtualCount: c.DesiredVirtualCount, + ActualVirtualCount: c.ActualVirtualCount, + Key: c.Key, + Strategy: c.Strategy, + Function: c.Function, + } +} + +func ParseConfig(input interface{}, nodeCount int) (Config, error) { + out := Config{} + out.setDefaults(nodeCount) + + if input == nil { + return out, nil + } + + asMap, ok := input.(map[string]interface{}) + if !ok || asMap == nil { + return out, fmt.Errorf("input %T-%v must be a non-nil", input, ok) + } + + if err := optionalIntFromMap(asMap, "virtualPerPhysical", func(v int) { + out.VirtualPerPhysical = v + }); err != nil { + return out, err + } + + if err := optionalIntFromMap(asMap, "desiredCount", func(v int) { + out.DesiredCount = v + }); err != nil { + return out, err + } + + out.DesiredVirtualCount = out.DesiredCount * out.VirtualPerPhysical + + if err := optionalIntFromMap(asMap, "desiredCount", func(v int) { + out.DesiredCount = v + }); err != nil { + return out, err + } + + if err := optionalStringFromMap(asMap, "key", func(v string) { + out.Key = v + }); err != nil { + return out, err + } + + if err := optionalStringFromMap(asMap, "strategy", func(v string) { + out.Strategy = v + }); err != nil { + return out, err + } + + if err := optionalStringFromMap(asMap, "function", func(v string) { + out.Function = v + }); err != nil { + return out, err + } + + // these will only differ once there is an async component through replication + // or dynamic scaling. For now they have to be the same + out.ActualCount = out.DesiredCount + out.ActualVirtualCount = out.DesiredVirtualCount + + if err := out.validate(); err != nil { + return out, err + } + + return out, nil +} + +func optionalIntFromMap(in map[string]interface{}, name string, + setFn func(v int), +) error { + value, ok := in[name] + if !ok { + return nil + } + + var asInt64 int64 + var err error + + // depending on whether we get the results from disk or from the REST API, + // numbers may be represented slightly differently + switch typed := value.(type) { + case json.Number: + asInt64, err = typed.Int64() + case int: + asInt64 = int64(typed) + case float64: + asInt64 = int64(typed) + } + if err != nil { + return errors.Wrapf(err, "%s", name) + } + + setFn(int(asInt64)) + return nil +} + +func optionalStringFromMap(in map[string]interface{}, name string, + setFn func(v string), +) error { + value, ok := in[name] + if !ok { + return nil + } + + asString, ok := value.(string) + if !ok { + return errors.Errorf("field %q must be of type string, got: %T", name, value) + } + + setFn(asString) + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_test.go b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_test.go new file mode 100644 index 0000000000000000000000000000000000000000..832d8d516db648e177dc704b8ac68321d92be7dd --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_test.go @@ -0,0 +1,140 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package config + +import ( + "encoding/json" + "errors" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func Test_Config(t *testing.T) { + type test struct { + name string + input interface{} + expected Config + expectedErr error + } + + tests := []test{ + { + name: "nothing specified, all defaults", + input: nil, + expected: Config{ + VirtualPerPhysical: DefaultVirtualPerPhysical, + DesiredCount: 7, // cluster size + DesiredVirtualCount: DefaultVirtualPerPhysical * 7, + ActualCount: 7, // cluster size + ActualVirtualCount: DefaultVirtualPerPhysical * 7, + Key: DefaultKey, + Strategy: DefaultStrategy, + Function: DefaultFunction, + }, + }, + + { + name: "everything specified, everything legal", + input: map[string]interface{}{ + "virtualPerPhysical": json.Number("64"), + "desiredCount": json.Number("3"), + "desiredVirtualCount": json.Number("192"), + "replicas": json.Number("3"), + "key": "_id", + "strategy": "hash", + "function": "murmur3", + }, + expected: Config{ + VirtualPerPhysical: 64, + DesiredCount: 3, + DesiredVirtualCount: 192, + ActualCount: 3, + ActualVirtualCount: 192, + Key: "_id", + Strategy: "hash", + Function: "murmur3", + }, + }, + + { + name: "everything specified, everything legal, from disk using floats for numbers", + input: map[string]interface{}{ + "virtualPerPhysical": float64(64), + "desiredCount": float64(3), + "desiredVirtualCount": float64(192), + "replicas": float64(4), + "key": "_id", + "strategy": "hash", + "function": "murmur3", + }, + expected: Config{ + VirtualPerPhysical: 64, + DesiredCount: 3, + DesiredVirtualCount: 192, + ActualCount: 3, + ActualVirtualCount: 192, + Key: "_id", + Strategy: "hash", + Function: "murmur3", + }, + }, + + { + name: "unsupported sharding key", + input: map[string]interface{}{ + "key": "myCustomField", + "strategy": "hash", + "function": "murmur3", + }, + expectedErr: errors.New("sharding only supported on key '_id' " + + "for now, got: myCustomField"), + }, + + { + name: "unsupported sharding strategy", + input: map[string]interface{}{ + "key": "_id", + "strategy": "range", + "function": "murmur3", + }, + expectedErr: errors.New("sharding only supported with strategy 'hash' " + + "for now, got: range"), + }, + + { + name: "unsupported sharding function", + input: map[string]interface{}{ + "key": "_id", + "strategy": "hash", + "function": "md5", + }, + expectedErr: errors.New("sharding only supported with function 'murmur3' " + + "for now, got: md5"), + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + cfg, err := ParseConfig(test.input, 7) // pretend cluster size is 7 + + if test.expectedErr == nil { + assert.Nil(t, err) + assert.Equal(t, test.expected, cfg) + } else { + require.NotNil(t, err, "should have error'd") + assert.Equal(t, test.expectedErr.Error(), err.Error()) + } + }) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update.go b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update.go new file mode 100644 index 0000000000000000000000000000000000000000..18937e3196a165f340c096e8fbea940e8c9f235e --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update.go @@ -0,0 +1,36 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package config + +import ( + "fmt" +) + +type nodeCounter interface { + NodeCount() int +} + +func ValidateConfigUpdate(old, updated Config, nodeCounter nodeCounter) error { + if old.DesiredCount != updated.DesiredCount { + return fmt.Errorf("re-sharding not supported yet: shard count is immutable: "+ + "attempted change from \"%d\" to \"%d\"", old.DesiredCount, + updated.DesiredCount) + } + + if old.VirtualPerPhysical != updated.VirtualPerPhysical { + return fmt.Errorf("virtual shards per physical is immutable: "+ + "attempted change from \"%d\" to \"%d\"", old.VirtualPerPhysical, + updated.VirtualPerPhysical) + } + + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update_test.go b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update_test.go new file mode 100644 index 0000000000000000000000000000000000000000..db048cf816da5818c24c91e58537880e73cf3754 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/sharding/config/config_update_test.go @@ -0,0 +1,68 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package config + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestConfigUpdates(t *testing.T) { + t.Run("various immutable and mutable fields", func(t *testing.T) { + type test struct { + name string + initial Config + update Config + expectedError error + } + + tests := []test{ + { + name: "attempting to shard count", + initial: Config{DesiredCount: 7}, + update: Config{DesiredCount: 8}, + expectedError: fmt.Errorf( + "re-sharding not supported yet: shard count is immutable: " + + "attempted change from \"7\" to \"8\""), + }, + { + name: "attempting to shard count", + initial: Config{VirtualPerPhysical: 128}, + update: Config{VirtualPerPhysical: 256}, + expectedError: fmt.Errorf( + "virtual shards per physical is immutable: " + + "attempted change from \"128\" to \"256\""), + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + err := ValidateConfigUpdate(test.initial, test.update, &fakeNodeCounter{3}) + if test.expectedError == nil { + assert.Nil(t, err) + } else { + require.NotNil(t, err, "update validation must error") + assert.Equal(t, test.expectedError.Error(), err.Error()) + } + }) + } + }) +} + +type fakeNodeCounter struct{ count int } + +func (f *fakeNodeCounter) NodeCount() int { + return f.count +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper.go new file mode 100644 index 0000000000000000000000000000000000000000..8e62938e3015fac6eea3c3fe06af888c5ae111fb --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper.go @@ -0,0 +1,143 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package grouper + +import ( + "fmt" + + "github.com/sirupsen/logrus" + "github.com/weaviate/weaviate/entities/search" + "github.com/weaviate/weaviate/usecases/vectorizer" +) + +// Grouper groups or merges search results by how related they are +type Grouper struct { + logger logrus.FieldLogger +} + +// NewGrouper creates a Grouper UC from the specified configuration +func New(logger logrus.FieldLogger) *Grouper { + return &Grouper{logger: logger} +} + +// Group using the applied strategy and force +func (g *Grouper) Group(in []search.Result, strategy string, + force float32, +) ([]search.Result, error) { + groups := groups{logger: g.logger} + + for _, current := range in { + pos, ok := groups.hasMatch(current.Vector, force) + if !ok { + groups.new(current) + } else { + groups.Elements[pos].add(current) + } + } + + return groups.flatten(strategy) +} + +type group struct { + Elements []search.Result `json:"elements"` +} + +func (g *group) add(item search.Result) { + g.Elements = append(g.Elements, item) +} + +func (g group) matches(vector []float32, force float32) bool { + // iterate over all group Elements and consider it a match if any matches + for _, elem := range g.Elements { + dist, err := vectorizer.NormalizedDistance(vector, elem.Vector) + if err != nil { + // TODO: log error + // we don't expect to ever see this error, so we don't need to handle it + // explicitly, however, let's still log it in case that the above + // assumption is wrong + continue + } + + if dist < force { + return true + } + } + + return false +} + +type groups struct { + Elements []group `json:"elements"` + logger logrus.FieldLogger +} + +func (gs groups) hasMatch(vector []float32, force float32) (int, bool) { + for pos, group := range gs.Elements { + if group.matches(vector, force) { + return pos, true + } + } + return -1, false +} + +func (gs *groups) new(item search.Result) { + gs.Elements = append(gs.Elements, group{Elements: []search.Result{item}}) +} + +func (gs groups) flatten(strategy string) (out []search.Result, err error) { + gs.logger.WithField("object", "grouping_before_flatten"). + WithField("strategy", strategy). + WithField("groups", gs.Elements). + Debug("group before flattening") + + switch strategy { + case "closest": + out, err = gs.flattenClosest() + case "merge": + out, err = gs.flattenMerge() + default: + return nil, fmt.Errorf("unrecognized grouping strategy '%s'", strategy) + } + if err != nil { + return + } + + gs.logger.WithField("object", "grouping_after_flatten"). + WithField("strategy", strategy). + WithField("groups", gs.Elements). + Debug("group after flattening") + + return out, nil +} + +func (gs groups) flattenClosest() ([]search.Result, error) { + out := make([]search.Result, len(gs.Elements)) + for i, group := range gs.Elements { + out[i] = group.Elements[0] // hard-code "closest" strategy for now + } + + return out, nil +} + +func (gs groups) flattenMerge() ([]search.Result, error) { + out := make([]search.Result, len(gs.Elements)) + for i, group := range gs.Elements { + merged, err := group.flattenMerge() + if err != nil { + return nil, fmt.Errorf("group %d: %w", i, err) + } + + out[i] = merged + } + + return out, nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper_test.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper_test.go new file mode 100644 index 0000000000000000000000000000000000000000..3350608030103c42a87360956cee6502b6177c51 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/grouper_test.go @@ -0,0 +1,438 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package grouper + +import ( + "testing" + + "github.com/go-openapi/strfmt" + "github.com/weaviate/weaviate/entities/schema/crossref" + + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/search" +) + +func TestGrouper_ModeClosest(t *testing.T) { + in := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.98}, + Schema: map[string]interface{}{ + "name": "A1", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.96}, + Schema: map[string]interface{}{ + "name": "A2", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.93}, + Schema: map[string]interface{}{ + "name": "A3", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.98, 0.1}, + Schema: map[string]interface{}{ + "name": "B1", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.93, 0.1}, + Schema: map[string]interface{}{ + "name": "B2", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.92, 0.1}, + Schema: map[string]interface{}{ + "name": "B3", + }, + }, + } + + expectedOut := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.98}, + Schema: map[string]interface{}{ + "name": "A1", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.98, 0.1}, + Schema: map[string]interface{}{ + "name": "B1", + }, + }, + } + + log, _ := test.NewNullLogger() + res, err := New(log).Group(in, "closest", 0.2) + require.Nil(t, err) + assert.Equal(t, expectedOut, res) + for i := range res { + assert.Equal(t, expectedOut[i].ClassName, res[i].ClassName) + } +} + +func TestGrouper_ModeMerge(t *testing.T) { + in := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.98}, + Schema: map[string]interface{}{ + "name": "A1", + "count": 10.0, + "illegal": true, + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(20), + Longitude: ptFloat32(20), + }, + "relatedTo": []interface{}{ + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("1"), + "foo": "bar1", + }, + }, + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("2"), + "foo": "bar2", + }, + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.96}, + Schema: map[string]interface{}{ + "name": "A2", + "count": 11.0, + "illegal": true, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.96}, + Schema: map[string]interface{}{ + "name": "A2", + "count": 11.0, + "illegal": true, + "relatedTo": []interface{}{ + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("3"), + "foo": "bar3", + }, + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.93}, + Schema: map[string]interface{}{ + "name": "A3", + "count": 12.0, + "illegal": false, + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(22), + Longitude: ptFloat32(18), + }, + "relatedTo": []interface{}{ + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("2"), + "foo": "bar2", + }, + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.98, 0.1}, + Schema: map[string]interface{}{ + "name": "B1", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.93, 0.1}, + Schema: map[string]interface{}{ + "name": "B2", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.92, 0.1}, + Schema: map[string]interface{}{ + "name": "B3", + }, + }, + } + + expectedOut := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.95750004}, // centroid position of all inputs + Schema: map[string]interface{}{ + "name": "A1 (A2, A3)", // note that A2 is only contained once, even though its twice in the input set + "count": 11.0, // mean of all inputs + "illegal": true, // the most common input value, with a bias towards true on equal count + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(21), + Longitude: ptFloat32(19), + }, + "relatedTo": []interface{}{ + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("1"), + "foo": "bar1", + }, + }, + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("2"), + "foo": "bar2", + }, + }, + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": strfmt.UUID("3"), + "foo": "bar3", + }, + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.9433334, 0.1}, + Schema: map[string]interface{}{ + "name": "B1 (B2, B3)", + }, + }, + } + + log, _ := test.NewNullLogger() + res, err := New(log).Group(in, "merge", 0.2) + require.Nil(t, err) + assert.Equal(t, expectedOut, res) + for i := range res { + assert.Equal(t, expectedOut[i].ClassName, res[i].ClassName) + } +} + +// Since reference properties can be represented both as models.MultipleRef +// and []interface{}, we need to test for both cases. TestGrouper_ModeMerge +// above tests the case of []interface{}, so this test handles the other case. +// see https://github.com/weaviate/weaviate/pull/2320 for more info +func Test_Grouper_ModeMerge_MultipleRef(t *testing.T) { + in := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.98}, + Schema: map[string]interface{}{ + "name": "A1", + "count": 10.0, + "illegal": true, + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(20), + Longitude: ptFloat32(20), + }, + "relatedTo": models.MultipleRef{ + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "3dc4417d-1508-4914-9929-8add49684b9f").String()), + Class: "Foo", + }, + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "f1d6df98-33a7-40bb-bcb4-57c1f35d31ab").String()), + Class: "Foo", + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.96}, + Schema: map[string]interface{}{ + "name": "A2", + "count": 11.0, + "illegal": true, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.96}, + Schema: map[string]interface{}{ + "name": "A2", + "count": 11.0, + "illegal": true, + "relatedTo": models.MultipleRef{ + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "f280a7f7-7fab-46ed-b895-1490512660ae").String()), + Class: "Foo", + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.93}, + Schema: map[string]interface{}{ + "name": "A3", + "count": 12.0, + "illegal": false, + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(22), + Longitude: ptFloat32(18), + }, + "relatedTo": models.MultipleRef{ + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "f1d6df98-33a7-40bb-bcb4-57c1f35d31ab").String()), + Class: "Foo", + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.98, 0.1}, + Schema: map[string]interface{}{ + "name": "B1", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.93, 0.1}, + Schema: map[string]interface{}{ + "name": "B2", + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.92, 0.1}, + Schema: map[string]interface{}{ + "name": "B3", + }, + }, + } + + expectedOut := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.95750004}, // centroid position of all inputs + Schema: map[string]interface{}{ + "name": "A1 (A2, A3)", // note that A2 is only contained once, even though its twice in the input set + "count": 11.0, // mean of all inputs + "illegal": true, // the most common input value, with a bias towards true on equal count + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(21), + Longitude: ptFloat32(19), + }, + "relatedTo": []interface{}{ + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "3dc4417d-1508-4914-9929-8add49684b9f").String()), + Class: "Foo", + }, + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "f1d6df98-33a7-40bb-bcb4-57c1f35d31ab").String()), + Class: "Foo", + }, + &models.SingleRef{ + Beacon: strfmt.URI(crossref.NewLocalhost("Foo", "f280a7f7-7fab-46ed-b895-1490512660ae").String()), + Class: "Foo", + }, + }, + }, + }, + { + ClassName: "Foo", + Vector: []float32{0.1, 0.9433334, 0.1}, + Schema: map[string]interface{}{ + "name": "B1 (B2, B3)", + }, + }, + } + + log, _ := test.NewNullLogger() + res, err := New(log).Group(in, "merge", 0.2) + require.Nil(t, err) + assert.Equal(t, expectedOut, res) + for i := range res { + assert.Equal(t, expectedOut[i].ClassName, res[i].ClassName) + } +} + +func TestGrouper_ModeMergeFailWithIDTypeOtherThenUUID(t *testing.T) { + in := []search.Result{ + { + ClassName: "Foo", + Vector: []float32{0.1, 0.1, 0.98}, + Schema: map[string]interface{}{ + "name": "A1", + "count": 10.0, + "illegal": true, + "location": &models.GeoCoordinates{ + Latitude: ptFloat32(20), + Longitude: ptFloat32(20), + }, + "relatedTo": []interface{}{ + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": "1", + "foo": "bar1", + }, + }, + search.LocalRef{ + Class: "Foo", + Fields: map[string]interface{}{ + "id": "2", + "foo": "bar2", + }, + }, + }, + }, + }, + } + + log, _ := test.NewNullLogger() + res, err := New(log).Group(in, "merge", 0.2) + require.NotNil(t, err) + assert.Nil(t, res) + assert.EqualError(t, err, + "group 0: merge values: prop 'relatedTo': element 0: "+ + "found a search.LocalRef, 'id' field type expected to be strfmt.UUID but got string") +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/merge_group.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/merge_group.go new file mode 100644 index 0000000000000000000000000000000000000000..c48c21ef41297dad0e6917570796690a21287134 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/grouper/merge_group.go @@ -0,0 +1,355 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package grouper + +import ( + "fmt" + "strings" + + "github.com/go-openapi/strfmt" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema/crossref" + "github.com/weaviate/weaviate/entities/search" +) + +type valueType int + +const ( + numerical valueType = iota + textual + boolean + reference + geo + unknown +) + +type valueGroup struct { + values []interface{} + valueType valueType + name string +} + +func (g group) flattenMerge() (search.Result, error) { + values := g.makeValueGroups() + merged, err := mergeValueGroups(values) + if err != nil { + return search.Result{}, fmt.Errorf("merge values: %w", err) + } + + vector, err := g.mergeVectors() + if err != nil { + return search.Result{}, fmt.Errorf("merge vectors: %w", err) + } + + className := g.mergeGetClassName() + + return search.Result{ + ClassName: className, + Schema: merged, + Vector: vector, + }, nil +} + +func (g group) mergeGetClassName() string { + if len(g.Elements) > 0 { + return g.Elements[0].ClassName + } + return "" +} + +func (g group) makeValueGroups() map[string]valueGroup { + values := map[string]valueGroup{} + + for _, elem := range g.Elements { + if elem.Schema == nil { + continue + } + + for propName, propValue := range elem.Schema.(map[string]interface{}) { + current, ok := values[propName] + if !ok { + current = valueGroup{ + values: []interface{}{propValue}, + valueType: valueTypeOf(propValue), + name: propName, + } + values[propName] = current + continue + } + + current.values = append(current.values, propValue) + values[propName] = current + } + } + + return values +} + +func (g group) mergeVectors() ([]float32, error) { + amount := len(g.Elements) + if amount == 0 { + return nil, nil + } + + if amount == 1 { + return g.Elements[0].Vector, nil + } + + dimensions := len(g.Elements[0].Vector) + out := make([]float32, dimensions) + + // sum up + for _, groupElement := range g.Elements { + if len(groupElement.Vector) != dimensions { + return nil, fmt.Errorf("vectors have different dimensions") + } + + for i, vectorElement := range groupElement.Vector { + out[i] = out[i] + vectorElement + } + } + + // divide by amount of vectors + for i := range out { + out[i] = out[i] / float32(amount) + } + + return out, nil +} + +func mergeValueGroups(props map[string]valueGroup) (map[string]interface{}, error) { + mergedProps := map[string]interface{}{} + + for propName, group := range props { + var ( + res interface{} + err error + ) + switch group.valueType { + case textual: + res, err = mergeTextualProps(group.values) + case numerical: + res, err = mergeNumericalProps(group.values) + case boolean: + res, err = mergeBooleanProps(group.values) + case geo: + res, err = mergeGeoProps(group.values) + case reference: + res, err = mergeReferenceProps(group.values) + case unknown: + continue + default: + err = fmt.Errorf("unrecognized value type") + } + if err != nil { + return nil, fmt.Errorf("prop '%s': %w", propName, err) + } + + mergedProps[propName] = res + } + + return mergedProps, nil +} + +func valueTypeOf(in interface{}) valueType { + switch in.(type) { + case string: + return textual + case float64: + return numerical + case bool: + return boolean + case *models.GeoCoordinates: + return geo + // reference properties can be represented as either of these types. + // see https://github.com/weaviate/weaviate/pull/2320 + case models.MultipleRef, []interface{}: + return reference + default: + return unknown + } +} + +func mergeTextualProps(in []interface{}) (string, error) { + var values []string + seen := make(map[string]struct{}, len(in)) + for i, elem := range in { + asString, ok := elem.(string) + if !ok { + return "", fmt.Errorf("element %d: expected textual element to be string, but got %T", i, elem) + } + + if _, ok := seen[asString]; ok { + // this is a duplicate, don't append it again + continue + } + + seen[asString] = struct{}{} + values = append(values, asString) + } + + if len(values) == 1 { + return values[0], nil + } + + return fmt.Sprintf("%s (%s)", values[0], strings.Join(values[1:], ", ")), nil +} + +func mergeNumericalProps(in []interface{}) (float64, error) { + var sum float64 + for i, elem := range in { + asFloat, ok := elem.(float64) + if !ok { + return 0, fmt.Errorf("element %d: expected numerical element to be float64, but got %T", i, elem) + } + + sum += asFloat + } + + return sum / float64(len(in)), nil +} + +func mergeBooleanProps(in []interface{}) (bool, error) { + var countTrue uint + var countFalse uint + for i, elem := range in { + asBool, ok := elem.(bool) + if !ok { + return false, fmt.Errorf("element %d: expected boolean element to be bool, but got %T", i, elem) + } + + if asBool { + countTrue++ + } else { + countFalse++ + } + } + + return countTrue >= countFalse, nil +} + +func mergeGeoProps(in []interface{}) (*models.GeoCoordinates, error) { + var sumLat float32 + var sumLon float32 + + for i, elem := range in { + asGeo, ok := elem.(*models.GeoCoordinates) + if !ok { + return nil, fmt.Errorf("element %d: expected geo element to be *models.GeoCoordinates, but got %T", i, elem) + } + + if asGeo.Latitude != nil { + sumLat += *asGeo.Latitude + } + if asGeo.Longitude != nil { + sumLon += *asGeo.Longitude + } + } + + return &models.GeoCoordinates{ + Latitude: ptFloat32(sumLat / float32(len(in))), + Longitude: ptFloat32(sumLon / float32(len(in))), + }, nil +} + +func ptFloat32(in float32) *float32 { + return &in +} + +func mergeReferenceProps(in []interface{}) ([]interface{}, error) { + var out []interface{} + seenID := map[string]struct{}{} + + for i, elem := range in { + // because reference properties can be represented both as + // models.MultipleRef and []interface{}, we have to handle + // parsing both cases accordingly. + // see https://github.com/weaviate/weaviate/pull/2320 + if asMultiRef, ok := elem.(models.MultipleRef); ok { + if err := parseRefTypeMultipleRef(asMultiRef, &out, seenID); err != nil { + return nil, fmt.Errorf("element %d: %w", i, err) + } + } else { + asSlice, ok := elem.([]interface{}) + if !ok { + return nil, fmt.Errorf( + "element %d: expected reference values to be slice, but got %T", i, elem) + } + + if err := parseRefTypeInterfaceSlice(asSlice, &out, seenID); err != nil { + return nil, fmt.Errorf("element %d: %w", i, err) + } + } + } + + return out, nil +} + +func parseRefTypeMultipleRef(refs models.MultipleRef, + returnRefs *[]interface{}, seenIDs map[string]struct{}, +) error { + for _, singleRef := range refs { + parsed, err := crossref.Parse(singleRef.Beacon.String()) + if err != nil { + return fmt.Errorf("failed to parse beacon %q: %w", singleRef.Beacon.String(), err) + } + idString := parsed.TargetID.String() + if _, ok := seenIDs[idString]; ok { + // duplicate + continue + } + + *returnRefs = append(*returnRefs, singleRef) + seenIDs[idString] = struct{}{} // make sure we skip this next time + } + return nil +} + +func parseRefTypeInterfaceSlice(refs []interface{}, + returnRefs *[]interface{}, seenIDs map[string]struct{}, +) error { + for _, singleRef := range refs { + asRef, ok := singleRef.(search.LocalRef) + if !ok { + // don't know what to do with this type, ignore + continue + } + + id, ok := asRef.Fields["id"] + if !ok { + return fmt.Errorf("found a search.LocalRef, but 'id' field is missing: %#v", asRef) + } + + idString, err := getIDString(id) + if err != nil { + return err + } + + if _, ok := seenIDs[idString]; ok { + // duplicate + continue + } + + *returnRefs = append(*returnRefs, asRef) + seenIDs[idString] = struct{}{} // make sure we skip this next time + } + return nil +} + +func getIDString(id interface{}) (string, error) { + switch v := id.(type) { + case strfmt.UUID: + return v.String(), nil + default: + return "", fmt.Errorf("found a search.LocalRef, 'id' field type expected to be strfmt.UUID but got %T", v) + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fakes_for_test.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fakes_for_test.go new file mode 100644 index 0000000000000000000000000000000000000000..6667cf223a8aea307c881a2d028b4cdc2d9c7128 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fakes_for_test.go @@ -0,0 +1,107 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "context" + + "github.com/weaviate/weaviate/entities/backup" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema" +) + +func newFakeTargetVectorParamHelper() *fakeTargetVectorParamHelper { + return &fakeTargetVectorParamHelper{} +} + +func newFakeSchemaManager() *fakeSchemaManager { + return &fakeSchemaManager{ + schema: schema.Schema{Objects: &models.Schema{}}, + } +} + +type fakeTargetVectorParamHelper struct{} + +func (*fakeTargetVectorParamHelper) GetTargetVectorOrDefault(sch schema.Schema, className string, targetVector []string) ([]string, error) { + return targetVector, nil +} + +type fakeSchemaManager struct { + schema schema.Schema +} + +func (f *fakeSchemaManager) GetSchemaSkipAuth() schema.Schema { + return f.schema +} + +func (f *fakeSchemaManager) ReadOnlyClass(class string) *models.Class { + return f.schema.GetClass(class) +} + +func (f *fakeSchemaManager) ShardOwner(class, shard string) (string, error) { + return "", nil +} + +func (f *fakeSchemaManager) ShardReplicas(class, shard string) ([]string, error) { + return []string{}, nil +} + +func (f *fakeSchemaManager) RestoreClass(ctx context.Context, d *backup.ClassDescriptor, nodeMapping map[string]string) error { + return nil +} + +func (f *fakeSchemaManager) Nodes() []string { + return []string{"NOT SET"} +} + +func (f *fakeSchemaManager) NodeName() string { + return "" +} + +func (f *fakeSchemaManager) ClusterHealthScore() int { + return 0 +} + +func (f *fakeSchemaManager) Statistics() map[string]any { + return nil +} + +func (f *fakeSchemaManager) StorageCandidates() []string { + return []string{} +} + +func (f *fakeSchemaManager) ResolveParentNodes(_ string, shard string, +) (map[string]string, error) { + return nil, nil +} + +func (f *fakeSchemaManager) ShardFromUUID(class string, uuid []byte) string { + return "" +} + +func (f *fakeSchemaManager) TenantsShards(_ context.Context, class string, tenants ...string) (map[string]string, error) { + return nil, nil +} + +func (f *fakeSchemaManager) OptimisticTenantStatus(_ context.Context, class string, tenant string) (map[string]string, error) { + res := map[string]string{} + res[tenant] = models.TenantActivityStatusHOT + return res, nil +} + +func (f *fakeSchemaManager) ResolveAlias(string) string { + return "" +} + +func (f *fakeSchemaManager) GetAliasesForClass(string) []*models.Alias { + return nil +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fusion_test.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fusion_test.go new file mode 100644 index 0000000000000000000000000000000000000000..50c4e52228c7f231c3d0e3e3d5bfea67b52bd1da --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/fusion_test.go @@ -0,0 +1,145 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/go-openapi/strfmt" + "github.com/stretchr/testify/assert" + "github.com/weaviate/weaviate/entities/search" +) + +func TestFusionRelativeScore(t *testing.T) { + cases := []struct { + weights []float64 + inputScores [][]float32 + expectedScores []float32 + expectedOrder []uint64 + }{ + {weights: []float64{0.5, 0.5}, inputScores: [][]float32{{1, 2, 3}, {0, 1, 2}}, expectedScores: []float32{1, 0.5, 0}, expectedOrder: []uint64{2, 1, 0}}, + {weights: []float64{0.5, 0.5}, inputScores: [][]float32{{0, 2, 0.1}, {0, 0.2, 2}}, expectedScores: []float32{0.55, 0.525, 0}, expectedOrder: []uint64{1, 2, 0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{0.5, 0.5, 0}, {0, 0.01, 0.001}}, expectedScores: []float32{1, 0.75, 0.025}, expectedOrder: []uint64{1, 0, 2}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{}, {}}, expectedScores: []float32{}, expectedOrder: []uint64{}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{1}, {}}, expectedScores: []float32{0.75}, expectedOrder: []uint64{0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{}, {1}}, expectedScores: []float32{0.25}, expectedOrder: []uint64{0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{1, 2}, {}}, expectedScores: []float32{0.75, 0}, expectedOrder: []uint64{1, 0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{}, {1, 2}}, expectedScores: []float32{0.25, 0}, expectedOrder: []uint64{1, 0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{1, 1}, {1, 2}}, expectedScores: []float32{1, 0.75}, expectedOrder: []uint64{1, 0}}, + {weights: []float64{1}, inputScores: [][]float32{{1, 2, 3}}, expectedScores: []float32{1, 0.5, 0}, expectedOrder: []uint64{2, 1, 0}}, + {weights: []float64{0.75, 0.25}, inputScores: [][]float32{{1, 2, 3, 4}, {1, 2, 3}}, expectedScores: []float32{0.75, 0.75, 0.375, 0}, expectedOrder: []uint64{3, 2, 1, 0}}, + {weights: []float64{0.75, 0.25, 0.1}, inputScores: [][]float32{{1, 2, 3, 4}, {1, 2, 3}, {4, 5}}, expectedScores: []float32{0.75, 0.75, 0.475, 0}, expectedOrder: []uint64{3, 2, 1, 0}}, + } + for _, tt := range cases { + t.Run("hybrid fusion", func(t *testing.T) { + var results [][]*search.Result + for i := range tt.inputScores { + var result []*search.Result + for j, score := range tt.inputScores[i] { + docId := uint64(j) + result = append(result, &search.Result{SecondarySortValue: score, DocID: &docId, ID: strfmt.UUID(fmt.Sprint(j))}) + } + results = append(results, result) + } + fused := FusionRelativeScore(tt.weights, results, []string{"set1", "set2", "set2"}, true) + fusedScores := []float32{} // don't use nil slice declaration, should be explicitly empty + fusedOrder := []uint64{} + + for _, score := range fused { + fusedScores = append(fusedScores, score.Score) + fusedOrder = append(fusedOrder, *score.DocID) + } + + assert.InDeltaSlice(t, tt.expectedScores, fusedScores, 0.0001) + assert.Equal(t, tt.expectedOrder, fusedOrder) + }) + } +} + +func TestFusionRelativeScoreExplain(t *testing.T) { + docId1 := uint64(1) + docId2 := uint64(2) + result1 := []*search.Result{ + {DocID: &docId1, SecondarySortValue: 0.5, ID: strfmt.UUID(fmt.Sprint(1))}, + {DocID: &docId2, SecondarySortValue: 0.1, ID: strfmt.UUID(fmt.Sprint(2))}, + } + + result2 := []*search.Result{ + {DocID: &docId1, SecondarySortValue: 2, ID: strfmt.UUID(fmt.Sprint(1))}, + {DocID: &docId2, SecondarySortValue: 1, ID: strfmt.UUID(fmt.Sprint(2))}, + } + results := [][]*search.Result{result1, result2} + fused := FusionRelativeScore([]float64{0.5, 0.5}, results, []string{"keyword", "vector"}, true) + require.Contains(t, fused[0].ExplainScore, "(Result Set keyword) Document 1: original score 0.5, normalized score: 0.5") + require.Contains(t, fused[0].ExplainScore, "(Result Set vector) Document 1: original score 2, normalized score: 0.5") +} + +func TestFusionOrderRelative(t *testing.T) { + docId1 := uint64(1) + docId2 := uint64(2) + + result1 := []*search.Result{ + {DocID: &docId1, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(1))}, + {DocID: &docId2, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(2))}, + } + + result2 := []*search.Result{ + {DocID: &docId1, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(1))}, + {DocID: &docId2, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(2))}, + } + + results := [][]*search.Result{result1, result2} + + for _, desc := range []bool{true, false} { + t.Run(fmt.Sprintf("descending %v", desc), func(t *testing.T) { + fused1 := FusionRelativeScore([]float64{0.5, 0.5}, results, []string{"keyword", "vector"}, desc) + + // repeat multiple times to ensure order does not flip + for i := 0; i < 10; i++ { + fused2 := FusionRelativeScore([]float64{0.5, 0.5}, results, []string{"keyword", "vector"}, desc) + for j := range fused1 { + assert.Equal(t, fused1[j], fused2[j]) + } + } + }) + } +} + +func TestFusionOrderRanked(t *testing.T) { + docId1 := uint64(1) + docId2 := uint64(2) + + result1 := []*search.Result{ + {DocID: &docId1, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(1))}, + {DocID: &docId2, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(2))}, + } + + result2 := []*search.Result{ + {DocID: &docId2, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(2))}, + {DocID: &docId1, SecondarySortValue: 0.5, Score: 0.5, ID: strfmt.UUID(fmt.Sprint(1))}, + } + + results := [][]*search.Result{result1, result2} + + fused1 := FusionRanked([]float64{0.5, 0.5}, results, []string{"keyword", "vector"}) + + // repeat multiple times to ensure order does not flip + for i := 0; i < 10; i++ { + fused2 := FusionRanked([]float64{0.5, 0.5}, results, []string{"keyword", "vector"}) + for j := range fused1 { + assert.Equal(t, fused1[j], fused2[j]) + } + } +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/hybrid_fusion.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/hybrid_fusion.go new file mode 100644 index 0000000000000000000000000000000000000000..629337b56ade0dd5eb105a8bae4d79f88bb97d52 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/hybrid_fusion.go @@ -0,0 +1,182 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "fmt" + "sort" + + "github.com/go-openapi/strfmt" + "github.com/weaviate/weaviate/entities/search" +) + +func FusionRanked(weights []float64, resultSets [][]*search.Result, setNames []string) []*search.Result { + combinedResults := map[strfmt.UUID]*search.Result{} + for resultSetIndex, resultSet := range resultSets { + for i, res := range resultSet { + if res.DocID == nil { + panic("doc id is nil") + } + tempResult := res + docId := tempResult.ID + score := float32(weights[resultSetIndex] / float64(i+60)) // TODO replace 60 with a class configured variable in the schema + + if tempResult.AdditionalProperties == nil { + tempResult.AdditionalProperties = map[string]interface{}{} + } + + // Get previous results from the map, if any + previousResult, ok := combinedResults[docId] + if ok { + tempResult.AdditionalProperties["explainScore"] = fmt.Sprintf( + "%v\nHybrid (Result Set %v) Document %v contributed %v to the score", + previousResult.AdditionalProperties["explainScore"], setNames[resultSetIndex], tempResult.ID, score) + score += previousResult.Score + } else { + tempResult.AdditionalProperties["explainScore"] = fmt.Sprintf( + "%v\nHybrid (Result Set %v) Document %v contributed %v to the score", + tempResult.ExplainScore, setNames[resultSetIndex], tempResult.ID, score) + } + tempResult.AdditionalProperties["rank_score"] = score + tempResult.AdditionalProperties["score"] = score + + tempResult.Score = float32(score) + combinedResults[docId] = tempResult + } + } + + // Sort the results + var ( + sortList = make([]*search.Result, len(combinedResults)) + i = 0 + ) + for _, res := range combinedResults { + res.ExplainScore = res.AdditionalProperties["explainScore"].(string) + sortList[i] = res + i++ + } + + sort.Slice(sortList, func(i, j int) bool { + a_b := float64(sortList[j].Score - sortList[i].Score) + if a_b*a_b < 1e-14 { + a_b2 := float64(sortList[j].SecondarySortValue - sortList[i].SecondarySortValue) + if a_b2*a_b2 < 1e-14 { + return sortList[i].ID > sortList[j].ID + } else { + return sortList[i].SecondarySortValue > sortList[j].SecondarySortValue + } + } + return float64(sortList[i].Score) > float64(sortList[j].Score) + }) + return sortList +} + +// FusionRelativeScore uses the relative differences in the scores from keyword and vector search to combine the +// results. This method retains more information than ranked fusion and should result in better results. +// +// The scores from each result are normalized between 0 and 1, e.g. the maximum score becomes 1 and the minimum 0 and the +// other scores are in between, keeping their relative distance to the other scores. +// Example: +// +// Input score = [1, 8, 6, 11] => [0, 0.7, 0.5, 1] +// +// The normalized scores are then combined using their respective weight and the combined scores are sorted +func FusionRelativeScore(weights []float64, resultSets [][]*search.Result, names []string, descending bool) []*search.Result { + if len(resultSets) == 0 || len(resultSets[0]) == 0 && (len(resultSets) == 1 || len(resultSets[1]) == 0) { + return []*search.Result{} + } + + var maximum []float32 + var minimum []float32 + + for i := range resultSets { + if len(resultSets[i]) > 0 { + maximum = append(maximum, resultSets[i][0].SecondarySortValue) + minimum = append(minimum, resultSets[i][0].SecondarySortValue) + } else { // dummy values so the indices match + maximum = append(maximum, 0) + minimum = append(minimum, 0) + } + for _, res := range resultSets[i] { + if res.SecondarySortValue > maximum[i] { + maximum[i] = res.SecondarySortValue + } + + if res.SecondarySortValue < minimum[i] { + minimum[i] = res.SecondarySortValue + } + } + } + + // normalize scores between 0 and 1 and sum up the normalized scores from different sources + // pre-allocate map, at this stage we do not know how many total, combined results there are, but it is at least the + // length of the longer input list + numResults := len(resultSets[0]) + if len(resultSets) > 1 && len(resultSets[1]) > numResults { + numResults = len(resultSets[1]) + } + mapResults := make(map[strfmt.UUID]*search.Result, numResults) + for i := range resultSets { + weight := float32(weights[i]) + for _, res := range resultSets[i] { + // If all scores are identical min and max are the same => just set score to the weight. + score := weight + if maximum[i] != minimum[i] { + score *= (res.SecondarySortValue - minimum[i]) / (maximum[i] - minimum[i]) + } + + previousResult, ok := mapResults[res.ID] + explainScore := fmt.Sprintf("Hybrid (Result Set %v) Document %v: original score %v, normalized score: %v", names[i], res.ID, res.SecondarySortValue, score) + if ok { + score += previousResult.Score + explainScore += " - " + previousResult.ExplainScore + } + res.Score = score + res.ExplainScore = res.ExplainScore + "\n" + explainScore + + mapResults[res.ID] = res + } + } + + concat := make([]*search.Result, 0, len(mapResults)) + for _, res := range mapResults { + concat = append(concat, res) + } + if descending { + sort.Slice(concat, func(i, j int) bool { + a_b := float64(concat[j].Score - concat[i].Score) + if a_b*a_b < 1e-14 { + a_b2 := float64(concat[j].SecondarySortValue - concat[i].SecondarySortValue) + if a_b2*a_b2 < 1e-14 { + return concat[i].ID > concat[j].ID + } else { + return concat[i].SecondarySortValue > concat[j].SecondarySortValue + } + } + return float64(concat[i].Score) > float64(concat[j].Score) + }) + } else { + sort.Slice(concat, func(i, j int) bool { + a_b := float64(concat[j].Score - concat[i].Score) + if a_b*a_b < 1e-14 { + a_b2 := float64(concat[j].SecondarySortValue - concat[i].SecondarySortValue) + if a_b2*a_b2 < 1e-14 { + return concat[i].ID > concat[j].ID + } else { + return concat[i].SecondarySortValue < concat[j].SecondarySortValue + } + } + return float64(concat[i].Score) < float64(concat[j].Score) + }) + } + return concat +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher.go new file mode 100644 index 0000000000000000000000000000000000000000..a8bdb663e92a15912806757f724a9d478a703dbe --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher.go @@ -0,0 +1,326 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "context" + "fmt" + + "github.com/go-openapi/strfmt" + + "github.com/sirupsen/logrus" + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/additional" + "github.com/weaviate/weaviate/entities/autocut" + "github.com/weaviate/weaviate/entities/dto" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/schema" + "github.com/weaviate/weaviate/entities/search" + "github.com/weaviate/weaviate/entities/searchparams" + "github.com/weaviate/weaviate/entities/storobj" + uc "github.com/weaviate/weaviate/usecases/schema" +) + +type Params struct { + *searchparams.HybridSearch + Keyword *searchparams.KeywordRanking + Class string + Autocut int +} + +// Result facilitates the pairing of a search result with its internal doc id. +// +// This type is key in generalising hybrid search across different use cases. +// Some use cases require a full search result (Get{} queries) and others need +// only a doc id (Aggregate{}) which the search.Result type does not contain. +// It does now + +type Results []*search.Result + +// sparseSearchFunc is the signature of a closure which performs sparse search. +// Any package which wishes use hybrid search must provide this. The weights are +// used in calculating the final scores of the result set. +type sparseSearchFunc func() (results []*storobj.Object, weights []float32, err error) + +// denseSearchFunc is the signature of a closure which performs dense search. +// A search vector argument is required to pass along to the vector index. +// Any package which wishes use hybrid search must provide this The weights are +// used in calculating the final scores of the result set. +type denseSearchFunc func(searchVector models.Vector) (results []*storobj.Object, weights []float32, err error) + +// postProcFunc takes the results of the hybrid search and applies some transformation. +// This is optionally provided, and allows the caller to somehow change the nature of +// the result set. For example, Get{} queries sometimes require resolving references, +// which is implemented by doing the reference resolution within a postProcFunc closure. +type postProcFunc func(hybridResults []*search.Result) (postProcResults []search.Result, err error) + +type modulesProvider interface { + VectorFromInput(ctx context.Context, + className, input, targetVector string) ([]float32, error) + MultiVectorFromInput(ctx context.Context, + className, input, targetVector string) ([][]float32, error) + IsTargetVectorMultiVector(className, targetVector string) (bool, error) +} + +type targetVectorParamHelper interface { + GetTargetVectorOrDefault(sch schema.Schema, className string, targetVector []string) ([]string, error) +} + +// Search executes sparse and dense searches and combines the result sets using Reciprocal Rank Fusion +func Search(ctx context.Context, params *Params, logger logrus.FieldLogger, sparseSearch sparseSearchFunc, denseSearch denseSearchFunc, postProc postProcFunc, modules modulesProvider, schemaGetter uc.SchemaGetter, targetVectorParamHelper targetVectorParamHelper) ([]*search.Result, error) { + var ( + found [][]*search.Result + weights []float64 + names []string + ) + + alpha := params.Alpha + var belowCutoffSet map[strfmt.UUID]struct{} + if alpha < 1 { + if params.Query != "" { + res, err := processSparseSearch(sparseSearch()) + if err != nil { + return nil, err + } + + found = append(found, res) + weights = append(weights, 1-alpha) + names = append(names, "keyword") + } + } + + if alpha > 0 { + res, err := processDenseSearch(ctx, denseSearch, params, modules, schemaGetter, targetVectorParamHelper) + if err != nil { + return nil, err + } + if params.WithDistance { + belowCutoffSet = map[strfmt.UUID]struct{}{} + // index starts with 0, use one less so we do not get any results in case nothing is above the limit + maxFound := -1 + for i := range res { + if res[i].Dist <= params.HybridSearch.Distance { + belowCutoffSet[res[i].ID] = struct{}{} + maxFound = i + } else { + break + } + } + // sorted by distance, so just remove everything after the first entry we found + res = res[:maxFound+1] + } + + found = append(found, res) + weights = append(weights, alpha) + names = append(names, "vector") + } + + // remove results with a vector distance above the cutoff from the BM25 results + if alpha < 1 && belowCutoffSet != nil { + newResults := make([]*search.Result, 0, len(found[0])) + for i := range found[0] { + if _, ok := belowCutoffSet[found[0][i].ID]; ok { + newResults = append(newResults, found[0][i]) + } + } + found[0] = newResults + } + + if len(weights) != len(found) { + return nil, fmt.Errorf("length of weights and results do not match for hybrid search %v vs. %v", len(weights), len(found)) + } + + var fused []*search.Result + if params.FusionAlgorithm == common_filters.HybridRankedFusion { + fused = FusionRanked(weights, found, names) + } else if params.FusionAlgorithm == common_filters.HybridRelativeScoreFusion { + fused = FusionRelativeScore(weights, found, names, true) + } else { + return nil, fmt.Errorf("unknown ranking algorithm %v for hybrid search", params.FusionAlgorithm) + } + + if postProc != nil { + sr, err := postProc(fused) + if err != nil { + return nil, fmt.Errorf("hybrid search post-processing: %w", err) + } + newResults := make([]*search.Result, len(sr)) + for i := range sr { + newResults[i] = &sr[i] + } + fused = newResults + } + if params.Autocut > 0 { + scores := make([]float32, len(fused)) + for i := range fused { + scores[i] = fused[i].Score + } + cutOff := autocut.Autocut(scores, params.Autocut) + fused = fused[:cutOff] + } + return fused, nil +} + +// Search combines the result sets using Reciprocal Rank Fusion or Relative Score Fusion +func HybridCombiner(ctx context.Context, params *Params, resultSet [][]*search.Result, weights []float64, names []string, logger logrus.FieldLogger, postProc postProcFunc) ([]*search.Result, error) { + if params.Vector != nil && params.NearVectorParams != nil { + return nil, fmt.Errorf("hybrid search: cannot have both vector and nearVectorParams") + } + if params.Vector != nil && params.NearTextParams != nil { + return nil, fmt.Errorf("hybrid search: cannot have both vector and nearTextParams") + } + if params.NearTextParams != nil && params.NearVectorParams != nil { + return nil, fmt.Errorf("hybrid search: cannot have both nearTextParams and nearVectorParams") + } + + if len(weights) != len(resultSet) { + return nil, fmt.Errorf("length of weights and results do not match for hybrid search %v vs. %v", len(weights), len(resultSet)) + } + if len(weights) != len(names) { + return nil, fmt.Errorf("length of weights and names do not match for hybrid search %v vs. %v", len(weights), len(names)) + } + + var fused []*search.Result + if params.FusionAlgorithm == common_filters.HybridRankedFusion { + fused = FusionRanked(weights, resultSet, names) + } else if params.FusionAlgorithm == common_filters.HybridRelativeScoreFusion { + fused = FusionRelativeScore(weights, resultSet, names, true) + } else { + return nil, fmt.Errorf("unknown ranking algorithm %v for hybrid search", params.FusionAlgorithm) + } + + if postProc != nil { + sr, err := postProc(fused) + if err != nil { + return nil, fmt.Errorf("hybrid search post-processing: %w", err) + } + newResults := make([]*search.Result, len(sr)) + for i := range sr { + newResults[i] = &sr[i] + } + fused = newResults + } + + if params.Autocut > 0 { + scores := make([]float32, len(fused)) + for i := range fused { + scores[i] = fused[i].Score + } + cutOff := autocut.Autocut(scores, params.Autocut) + fused = fused[:cutOff] + } + return fused, nil +} + +func processSparseSearch(results []*storobj.Object, scores []float32, err error) ([]*search.Result, error) { + if err != nil { + return nil, fmt.Errorf("sparse search: %w", err) + } + + out := make([]*search.Result, len(results)) + for i, obj := range results { + sr := obj.SearchResultWithScore(additional.Properties{}, scores[i]) + sr.SecondarySortValue = sr.Score + out[i] = &sr + } + return out, nil +} + +func processDenseSearch(ctx context.Context, + denseSearch denseSearchFunc, params *Params, modules modulesProvider, + schemaGetter uc.SchemaGetter, targetVectorParamHelper targetVectorParamHelper, +) ([]*search.Result, error) { + query := params.Query + vector := params.Vector + if params.HybridSearch.NearTextParams != nil { + params.NearTextParams = params.HybridSearch.NearTextParams + query = params.HybridSearch.NearTextParams.Values[0] + } + + if params.HybridSearch.NearVectorParams == nil { + var err error + vector, err = decideSearchVector(ctx, params.Class, query, params.TargetVectors, vector, modules, schemaGetter, targetVectorParamHelper) + if err != nil { + return nil, err + } + } else { + vector = params.HybridSearch.NearVectorParams.Vectors[0] + } + + res, dists, err := denseSearch(vector) + if err != nil { + return nil, fmt.Errorf("dense search: %w", err) + } + + out := make([]*search.Result, len(res)) + for i, obj := range res { + sr := obj.SearchResultWithDist(additional.Properties{}, dists[i]) + sr.SecondarySortValue = 1 - sr.Dist + out[i] = &sr + } + return out, nil +} + +func decideSearchVector(ctx context.Context, + class, query string, targetVectors []string, vector models.Vector, modules modulesProvider, + schemaGetter uc.SchemaGetter, targetVectorParamHelper targetVectorParamHelper, +) (models.Vector, error) { + isVectorEmpty, err := dto.IsVectorEmpty(vector) + if err != nil { + return nil, fmt.Errorf("decide search vector: is vector empty: %w", err) + } + if !isVectorEmpty { + return vector, nil + } else { + if modules != nil && schemaGetter != nil && targetVectorParamHelper != nil { + targetVectors, err := targetVectorParamHelper.GetTargetVectorOrDefault(schemaGetter.GetSchemaSkipAuth(), + class, targetVectors) + targetVector := getTargetVector(targetVectors) + if err != nil { + return nil, err + } + vector, err := vectorFromModuleInput(ctx, class, query, targetVector, modules) + if err != nil { + return nil, err + } + return vector, nil + } else { + return nil, fmt.Errorf("no vector or modules provided for hybrid search") + } + } +} + +func vectorFromModuleInput(ctx context.Context, class, input, targetVector string, modules modulesProvider) (models.Vector, error) { + isMultiVector, err := modules.IsTargetVectorMultiVector(class, targetVector) + if err != nil { + return nil, fmt.Errorf("get vector input from modules provider: is target vector multi vector: %w", err) + } + if isMultiVector { + vector, err := modules.MultiVectorFromInput(ctx, class, input, targetVector) + if err != nil { + return nil, fmt.Errorf("get multi vector input from modules provider: %w", err) + } + return vector, nil + } + vector, err := modules.VectorFromInput(ctx, class, input, targetVector) + if err != nil { + return nil, fmt.Errorf("get vector input from modules provider: %w", err) + } + return vector, nil +} + +func getTargetVector(targetVectors []string) string { + if len(targetVectors) == 1 { + return targetVectors[0] + } + return "" +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_score_fusion_test.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_score_fusion_test.go new file mode 100644 index 0000000000000000000000000000000000000000..f2c03877ea47eb1e1b63344f7b99a0308563b060 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_score_fusion_test.go @@ -0,0 +1,385 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "context" + "testing" + + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/searchparams" + "github.com/weaviate/weaviate/entities/storobj" +) + +func TestScoreFusionSearchWithModuleProvider(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0.5, + Query: "some query", + TargetVectors: []string{"default"}, + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { return nil, nil, nil } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + _, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) +} + +func TestScoreFusionSearchWithSparseSearchOnly(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0, + Query: "some query", + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + VectorLen: 3, + DocID: 1, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { return nil, nil, nil } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set keyword) Document") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.000)) + assert.Equal(t, float32(1), res[0].Score) +} + +func TestScoreFusionSearchWithDenseSearchOnly(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 1, + Query: "some query", + Vector: []float32{1, 2, 3}, + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + VectorLen: 3, + DocID: 1, + }, + }, []float32{0.008}, nil + } + + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.008)) + assert.Equal(t, float32(1), res[0].Score) +} + +func TestScoreFusionCombinedHybridSearch(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0.5, + Query: "some query", + Vector: []float32{1, 2, 3}, + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + VectorLen: 3, + DocID: 1, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "79a636c2-3314-442e-a4d1-e94d7c0afc3a", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{4, 5, 6}, + }, + Vector: []float32{4, 5, 6}, + VectorLen: 3, + DocID: 2, + }, + }, []float32{0.008}, nil + } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 2) + assert.NotNil(t, res[0]) + assert.NotNil(t, res[1]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document") + assert.Contains(t, res[0].ExplainScore, "79a636c2-3314-442e-a4d1-e94d7c0afc3a") + assert.Equal(t, res[0].Vector, []float32{4, 5, 6}) + assert.Equal(t, res[0].Dist, float32(0.008)) + assert.Equal(t, float32(0.5), res[0].Score) + assert.Contains(t, res[1].ExplainScore, "(Result Set keyword) Document") + assert.Contains(t, res[1].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[1].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[1].Dist, float32(0.000)) + assert.Equal(t, float32(0.5), res[1].Score) +} + +func TestScoreFusionWithSparseSubsearchFilter(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + Alpha: 0.0, + Properties: []string{"propA", "propB"}, + Query: "some query", + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { return nil, nil, nil } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set keyword) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].SecondarySortValue, float32(0.008)) +} + +func TestScoreFusionWithNearTextSubsearchFilter(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + TargetVectors: []string{"default"}, + Type: "hybrid", + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + NearTextParams: &searchparams.NearTextParams{ + Values: []string{"some query"}, + Certainty: 0.8, + }, + Alpha: 1.0, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + res, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.008)) +} + +func TestScoreFusionWithNearVectorSubsearchFilter(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + TargetVectors: []string{"default"}, + Type: "hybrid", + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + NearVectorParams: &searchparams.NearVector{ + Vectors: []models.Vector{[]float32{1, 2, 3}}, + Certainty: 0.8, + }, + Alpha: 1.0, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + res, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, float32(0.992), res[0].SecondarySortValue) +} + +func TestScoreFusionWithAllSubsearchFilters(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + TargetVectors: []string{"default"}, + Type: "hybrid", + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + NearVectorParams: &searchparams.NearVector{ + Vectors: []models.Vector{[]float32{1, 2, 3}}, + Certainty: 0.8, + }, + Alpha: 0.5, + Query: "some query", + Properties: []string{"propA", "propB"}, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "79a636c2-3314-442e-a4d1-e94d7c0afc3a", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{4, 5, 6}, + Additional: map[string]interface{}{"score": float32(0.8)}, + }, + Vector: []float32{4, 5, 6}, + }, + }, []float32{0.008}, nil + } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + res, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + assert.Len(t, res, 2) + assert.NotNil(t, res[0]) + assert.NotNil(t, res[1]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document 79a636c2-3314-442e-a4d1-e94d7c0afc3a") + assert.Contains(t, res[0].ExplainScore, "79a636c2-3314-442e-a4d1-e94d7c0afc3a") + assert.Equal(t, res[0].Vector, []float32{4, 5, 6}) + assert.Equal(t, float32(0.992), res[0].SecondarySortValue) + assert.Contains(t, res[1].ExplainScore, "(Result Set keyword) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[1].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[1].Vector, []float32{1, 2, 3}) + assert.Equal(t, float32(0.008), res[1].SecondarySortValue) +} diff --git a/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_test.go b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_test.go new file mode 100644 index 0000000000000000000000000000000000000000..71738a995c9326356d6dfa4088bdfbe938136626 --- /dev/null +++ b/platform/dbops/binaries/weaviate-src/usecases/traverser/hybrid/searcher_test.go @@ -0,0 +1,388 @@ +// _ _ +// __ _____ __ ___ ___ __ _| |_ ___ +// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ +// \ V V / __/ (_| |\ V /| | (_| | || __/ +// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| +// +// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved. +// +// CONTACT: hello@weaviate.io +// + +package hybrid + +import ( + "context" + "testing" + + "github.com/sirupsen/logrus/hooks/test" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/weaviate/weaviate/adapters/handlers/graphql/local/common_filters" + "github.com/weaviate/weaviate/entities/models" + "github.com/weaviate/weaviate/entities/searchparams" + "github.com/weaviate/weaviate/entities/storobj" +) + +func TestSearcher(t *testing.T) { + ctx := context.Background() + logger, _ := test.NewNullLogger() + class := "HybridClass" + + tests := []struct { + name string + f func(t *testing.T) + }{ + { + name: "with module provider", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0.5, + Query: "some query", + TargetVectors: []string{"default"}, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { return nil, nil, nil } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + _, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + }, + }, + { + name: "with sparse search only", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0, + Query: "some query", + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { return nil, nil, nil } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set keyword) Document") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.000)) + }, + }, + { + name: "with dense search only", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 1, + Query: "some query", + Vector: []float32{1, 2, 3}, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { return nil, nil, nil } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.008)) + }, + }, + { + name: "combined hybrid search", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0.5, + Query: "some query", + Vector: []float32{1, 2, 3}, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "79a636c2-3314-442e-a4d1-e94d7c0afc3a", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{4, 5, 6}, + }, + Vector: []float32{4, 5, 6}, + }, + }, []float32{0.008}, nil + } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 2) + assert.NotNil(t, res[0]) + assert.NotNil(t, res[1]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document") + assert.Contains(t, res[0].ExplainScore, "79a636c2-3314-442e-a4d1-e94d7c0afc3a") + assert.Equal(t, res[0].Vector, []float32{4, 5, 6}) + assert.Equal(t, res[0].Dist, float32(0.008)) + assert.Contains(t, res[1].ExplainScore, "(Result Set keyword) Document") + assert.Contains(t, res[1].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[1].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[1].Dist, float32(0.000)) + assert.Equal(t, float32(0.008333334), res[0].Score) + }, + }, + + { + name: "combined hybrid search", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Alpha: 0.5, + Query: "some query", + Vector: []float32{1, 2, 3}, + FusionAlgorithm: common_filters.HybridRelativeScoreFusion, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "79a636c2-3314-442e-a4d1-e94d7c0afc3a", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{4, 5, 6}, + }, + Vector: []float32{4, 5, 6}, + }, + }, []float32{0.008}, nil + } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 2) + assert.NotNil(t, res[0]) + assert.NotNil(t, res[1]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document") + assert.Contains(t, res[0].ExplainScore, "79a636c2-3314-442e-a4d1-e94d7c0afc3a") + assert.Equal(t, res[0].Vector, []float32{4, 5, 6}) + assert.Equal(t, res[0].Dist, float32(0.008)) + assert.Contains(t, res[1].ExplainScore, "(Result Set keyword) Document") + assert.Contains(t, res[1].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[1].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[1].Dist, float32(0.000)) + assert.Equal(t, float32(0.5), res[0].Score) + }, + }, + { + name: "with sparse subsearch filter", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + Type: "hybrid", + Properties: []string{"propA", "propB"}, + Query: "some query", + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return nil, nil, nil + } + res, err := Search(ctx, params, logger, sparse, dense, nil, nil, nil, nil) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set keyword) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, float32(0.008), res[0].SecondarySortValue) + }, + }, + { + name: "with nearText subsearch filter", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + TargetVectors: []string{"default"}, + Type: "hybrid", + Alpha: 1.0, + NearTextParams: &searchparams.NearTextParams{ + Values: []string{"some query"}, + Certainty: 0.8, + }, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return nil, nil, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + res, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, float32(0.992), res[0].SecondarySortValue) + }, + }, + { + name: "with nearVector subsearch filter", + f: func(t *testing.T) { + params := &Params{ + HybridSearch: &searchparams.HybridSearch{ + TargetVectors: []string{"default"}, + Type: "hybrid", + Alpha: 1.0, + NearVectorParams: &searchparams.NearVector{ + Vectors: []models.Vector{[]float32{1, 2, 3}}, + Certainty: 0.8, + }, + }, + Class: class, + } + sparse := func() ([]*storobj.Object, []float32, error) { + return nil, nil, nil + } + dense := func(models.Vector) ([]*storobj.Object, []float32, error) { + return []*storobj.Object{ + { + Object: models.Object{ + Class: class, + ID: "1889a225-3b28-477d-b8fc-5f6071bb4731", + Properties: map[string]any{"prop": "val"}, + Vector: []float32{1, 2, 3}, + Additional: map[string]interface{}{"score": float32(0.008)}, + }, + Vector: []float32{1, 2, 3}, + }, + }, []float32{0.008}, nil + } + provider := &fakeModuleProvider{} + schemaGetter := newFakeSchemaManager() + targetVectorParamHelper := newFakeTargetVectorParamHelper() + res, err := Search(ctx, params, logger, sparse, dense, nil, provider, schemaGetter, targetVectorParamHelper) + require.Nil(t, err) + assert.Len(t, res, 1) + assert.NotNil(t, res[0]) + assert.Contains(t, res[0].ExplainScore, "(Result Set vector) Document 1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Contains(t, res[0].ExplainScore, "1889a225-3b28-477d-b8fc-5f6071bb4731") + assert.Equal(t, res[0].Vector, []float32{1, 2, 3}) + assert.Equal(t, res[0].Dist, float32(0.008)) + }, + }, + } + + for _, test := range tests { + t.Run(test.name, test.f) + } +} + +type fakeModuleProvider struct { + vector []float32 +} + +func (f *fakeModuleProvider) VectorFromInput(ctx context.Context, className, input, targetVector string) ([]float32, error) { + return f.vector, nil +} + +func (f *fakeModuleProvider) MultiVectorFromInput(ctx context.Context, className, input, targetVector string) ([][]float32, error) { + panic("not implemented") +} + +func (f *fakeModuleProvider) IsTargetVectorMultiVector(className, targetVector string) (bool, error) { + return false, nil +}